From ee180245b9f32cb80676492d784fe932664bd862 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Tue, 9 Jul 2024 14:05:02 +0600 Subject: [PATCH 01/42] Filterable Gallery: randomizing issue on cache is fixed --- .../front-end/js/view/filterable-gallery.js | 2 +- .../js/view/filterable-gallery.min.js | 2 +- includes/Elements/Filterable_Gallery.php | 5 +--- src/js/view/filterable-gallery.js | 29 +++++++++++++++++-- 4 files changed, 29 insertions(+), 9 deletions(-) diff --git a/assets/front-end/js/view/filterable-gallery.js b/assets/front-end/js/view/filterable-gallery.js index ef3e42d02..0dd4a4017 100644 --- a/assets/front-end/js/view/filterable-gallery.js +++ b/assets/front-end/js/view/filterable-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\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 $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\");\n fg_items.splice(0, $init_show_setting), isRTL = $('body').hasClass('rtl');\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = item.el.attr('title');\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n if (LoadMoreShow || fg_items.length < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
' + $nomore_text + \"
\");\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n ea.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (ea.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); +eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\n function shuffleGalleryItems(items) {\n for (var i = 0; i < items.length - 1; i++) {\n var j = i + Math.floor(Math.random() * (items.length - i));\n var temp = items[j];\n items[j] = items[i];\n items[i] = temp;\n }\n return items;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\n });\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\"),\n $is_randomize = $gallery.data(\"is-randomize\");\n isRTL = $('body').hasClass('rtl');\n if ('yes' === $is_randomize) {\n fg_items = shuffleGalleryItems(fg_items);\n $gallery.empty();\n for (var i = 0; i < $init_show_setting; i++) {\n $gallery.append(fg_items[i]);\n }\n }\n fg_items.splice(0, $init_show_setting);\n\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = item.el.attr('title');\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n if (LoadMoreShow || fg_items.length < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
' + $nomore_text + \"
\");\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n ea.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (ea.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); /***/ }) diff --git a/assets/front-end/js/view/filterable-gallery.min.js b/assets/front-end/js/view/filterable-gallery.min.js index 938e530a1..2e6e9d464 100644 --- a/assets/front-end/js/view/filterable-gallery.min.js +++ b/assets/front-end/js/view/filterable-gallery.min.js @@ -1 +1 @@ -!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,i,o,l=[],s=!0,f=!1;try{if(i=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;s=!1}else for(;!(s=(r=i.call(a)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){f=!0,n=e}finally{try{if(!s&&null!=a.return&&(o=a.return(),Object(o)!==o))return}finally{if(f)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},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 o,l=!0,s=!1;return{s:function(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){s=!0,o=e},f:function(){try{l||null==a.return||a.return()}finally{if(s)throw o}}}}function n(e,t){if(e){if("string"==typeof e)return i(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?i(e,t):void 0}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=a.el.attr("title"))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove()}),100)}}}),e.on("click",".control",(function(){var n=t(this);i=t(this).attr("data-filter");var o=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+i,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var s=parseInt(n.data("first-init"));if(!s){n.data("first-init",1);var f=o,u=$items=[];if("string"==typeof w&&(w=k),f=w)break}}catch(e){d.e(e)}finally{d.f()}}u.length>0&&(y=y.filter((function(e,t){return!u.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e);h||y.length<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!s&&$items.length>0?(x.isotope(),g.append($items),x.isotope("appended",$items),x.imagesLoaded().progress((function(){x.isotope("layout")}))):x.isotope(),n.hasClass("all-control")?t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active"):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(i+" .eael-magnific-link").addClass("active"))}));var C=!1;u.on("input",(function(){var i=t(this),l=[];if(!C&&"yes"===g.data("search-all")){var s,f=r(y.entries());try{for(f.s();!(s=f.n()).done;){var u=a(s.value,2),c=(u[0],u[1]);l.push(t(c)[0])}}catch(e){f.e(e)}finally{f.f()}x.isotope(),g.append(l),x.isotope("appended",l),x.imagesLoaded().progress((function(){x.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),C=!0}clearTimeout(o),o=setTimeout((function(){n=new RegExp(i.val(),"gi"),x.isotope()}),600)})),x.imagesLoaded().progress((function(){x.isotope("layout")})),x.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),x.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){x.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var i=t(this),o=g.data("nomore-item-text"),s=(t(".eael-filter-gallery-control",e).length,[]),f=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(f=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===f&&(f="*");var u,c=0,d=[],p=r(y.entries());try{for(p.s();!(u=p.n()).done;){var m=a(u.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(f)&&(++c,s.push(t(h)[0]),d.push(v)),""!==f&&"*"!==f&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),i.hide()),c===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(i.html('
'+o+"
"),setTimeout((function(){i.fadeOut("slow")}),600)),g.append(s),x.isotope("appended",s),x.imagesLoaded().progress((function(){x.isotope("layout")}))})),t(document).on("mouseup",(function(e){s.is(e.target)||0!==s.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var S=function(e){x.imagesLoaded().progress((function(){x.isotope("layout")}))};ea.hooks.addAction("ea-toggle-triggered","ea",S),ea.hooks.addAction("ea-lightbox-triggered","ea",S),ea.hooks.addAction("ea-advanced-tabs-triggered","ea",S),ea.hooks.addAction("ea-advanced-accordion-triggered","ea",S)}}))}))}}); \ No newline at end of file +!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,o,i,l=[],f=!0,s=!1;try{if(o=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;f=!1}else for(;!(f=(r=o.call(a)).done)&&(l.push(r.value),l.length!==t);f=!0);}catch(e){s=!0,n=e}finally{try{if(!f&&null!=a.return&&(i=a.return(),Object(i)!==i))return}finally{if(s)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){f=!0,i=e},f:function(){try{l||null==a.return||a.return()}finally{if(f)throw i}}}}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=a.el.attr("title"))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove()}),100)}}}),e.on("click",".control",(function(){var n=t(this);o=t(this).attr("data-filter");var i=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+o,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var f=parseInt(n.data("first-init"));if(!f){n.data("first-init",1);var s=i,u=$items=[];if("string"==typeof w&&(w=k),s=w)break}}catch(e){d.e(e)}finally{d.f()}}u.length>0&&(y=y.filter((function(e,t){return!u.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e);h||y.length<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!f&&$items.length>0?(S.isotope(),g.append($items),S.isotope("appended",$items),S.imagesLoaded().progress((function(){S.isotope("layout")}))):S.isotope(),n.hasClass("all-control")?t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active"):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(o+" .eael-magnific-link").addClass("active"))}));var j=!1;u.on("input",(function(){var o=t(this),l=[];if(!j&&"yes"===g.data("search-all")){var f,s=r(y.entries());try{for(s.s();!(f=s.n()).done;){var u=a(f.value,2),c=(u[0],u[1]);l.push(t(c)[0])}}catch(e){s.e(e)}finally{s.f()}S.isotope(),g.append(l),S.isotope("appended",l),S.imagesLoaded().progress((function(){S.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),j=!0}clearTimeout(i),i=setTimeout((function(){n=new RegExp(o.val(),"gi"),S.isotope()}),600)})),S.imagesLoaded().progress((function(){S.isotope("layout")})),S.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),S.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){S.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var o=t(this),i=g.data("nomore-item-text"),f=(t(".eael-filter-gallery-control",e).length,[]),s=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(s=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===s&&(s="*");var u,c=0,d=[],p=r(y.entries());try{for(p.s();!(u=p.n()).done;){var m=a(u.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(s)&&(++c,f.push(t(h)[0]),d.push(v)),""!==s&&"*"!==s&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),o.hide()),c===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(o.html('
'+i+"
"),setTimeout((function(){o.fadeOut("slow")}),600)),g.append(f),S.isotope("appended",f),S.imagesLoaded().progress((function(){S.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var A=function(e){S.imagesLoaded().progress((function(){S.isotope("layout")}))};ea.hooks.addAction("ea-toggle-triggered","ea",A),ea.hooks.addAction("ea-lightbox-triggered","ea",A),ea.hooks.addAction("ea-advanced-tabs-triggered","ea",A),ea.hooks.addAction("ea-advanced-accordion-triggered","ea",A)}}))}))}}); \ No newline at end of file diff --git a/includes/Elements/Filterable_Gallery.php b/includes/Elements/Filterable_Gallery.php index 2cb6485eb..7a794724a 100644 --- a/includes/Elements/Filterable_Gallery.php +++ b/includes/Elements/Filterable_Gallery.php @@ -3886,10 +3886,6 @@ protected function render() { $gallery_items = $items = $this->render_gallery_items(); } - if ( $settings['eael_item_randomize'] === 'yes' ){ - shuffle($gallery_items); - } - $this->add_render_attribute('gallery-items-wrap', [ 'class' => [ 'eael-filter-gallery-container', @@ -3898,6 +3894,7 @@ protected function render() { 'data-images-per-page' => $settings['images_per_page'], 'data-total-gallery-items' => count($settings['eael_fg_gallery_items']), 'data-nomore-item-text' => $no_more_items_text, + 'data-is-randomize' => 'yes' === $settings['eael_item_randomize'] ? 'yes' : 'no', ]); $this->add_render_attribute('gallery-items-wrap', 'data-settings', wp_json_encode($gallery_settings)); diff --git a/src/js/view/filterable-gallery.js b/src/js/view/filterable-gallery.js index 460bf67fc..b0edb5150 100644 --- a/src/js/view/filterable-gallery.js +++ b/src/js/view/filterable-gallery.js @@ -12,6 +12,19 @@ jQuery(window).on("elementor/frontend/init", function () { return null; } + + function shuffleGalleryItems( items ) { + for (var i = 0; i < items.length - 1; i++) { + var j = i + Math.floor(Math.random() * (items.length - i)); + + var temp = items[j]; + items[j] = items[i]; + items[i] = temp; + } + + return items; + } + var filterableGalleryHandler = function ($scope, $) { var filterControls = $scope.find(".fg-layout-3-filter-controls").eq(0), filterTrigger = $scope.find("#fg-filter-trigger"), @@ -79,13 +92,23 @@ jQuery(window).on("elementor/frontend/init", function () { if (!isEditMode) { var $gallery = $(".eael-filter-gallery-container", $scope), $settings = $gallery.data("settings"), - fg_items = $gallery_items = $gallery.data("gallery-items"), + fg_items = $gallery.data("gallery-items"), $layout_mode = $settings.grid_style === "masonry" ? "masonry" : "fitRows", $gallery_enabled = ($settings.gallery_enabled === "yes"), $images_per_page = $gallery.data("images-per-page"), - $init_show_setting = $gallery.data("init-show"); - fg_items.splice(0, $init_show_setting), + $init_show_setting = $gallery.data("init-show"), + $is_randomize = $gallery.data("is-randomize"); isRTL = $('body').hasClass('rtl'); + + if( 'yes' === $is_randomize ){ + fg_items = shuffleGalleryItems( fg_items ); + $gallery.empty(); + for (let i = 0; i < $init_show_setting; i++) { + $gallery.append(fg_items[i]); + } + } + fg_items.splice(0, $init_show_setting); + // init isotope let gwrap = $(".eael-filter-gallery-wrapper"); var layoutMode = gwrap.data("layout-mode"); From e61ae76150424e98b8934511999420d31bfa012f Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 10 Jul 2024 12:08:54 +0600 Subject: [PATCH 02/42] commented code removed --- .../front-end/js/edit/advanced-data-table.js | 2 +- includes/Elements/Dual_Color_Header.php | 25 - includes/Traits/Controls.php | 17 - .../essential-addons-for-elementor-lite.pot | 104 ++-- src/css/view/interactive-circle.scss | 580 ------------------ src/css/view/product-grid.scss | 555 +---------------- src/css/view/woo-product-carousel.scss | 68 +- src/css/view/woo-product-gallery.scss | 12 - src/js/edit/advanced-data-table.js | 9 - 9 files changed, 55 insertions(+), 1317 deletions(-) diff --git a/assets/front-end/js/edit/advanced-data-table.js b/assets/front-end/js/edit/advanced-data-table.js index 0a344c4c6..3226eeff0 100644 --- a/assets/front-end/js/edit/advanced-data-table.js +++ b/assets/front-end/js/edit/advanced-data-table.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\"); }\nfunction _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }\nfunction _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", { writable: !1 }), e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar advancedDataTableEdit = /*#__PURE__*/function () {\n function advancedDataTableEdit() {\n _classCallCheck(this, advancedDataTableEdit);\n // class props\n this.panel = null;\n this.model = null;\n this.view = null;\n this.table = null;\n this.tableInnerHTML = null;\n this.timeout = null;\n this.activeCell = null;\n this.dragStartX = null;\n this.dragStartWidth = null;\n this.dragEl = null;\n this.dragging = false;\n\n // register hooks\n ea.hooks.addFilter(\"advancedDataTable.getClassProps\", \"ea\", this.getClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.setClassProps\", \"ea\", this.setClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.parseHTML\", \"ea\", this.parseHTML);\n ea.hooks.addAction(\"advancedDataTable.initEditor\", \"ea\", this.initEditor.bind(this));\n ea.hooks.addAction(\"advancedDataTable.updateFromView\", \"ea\", this.updateFromView.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initInlineEdit\", \"ea\", this.initInlineEdit.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initPanelAction\", \"ea\", this.initPanelAction.bind(this));\n ea.hooks.addAction(\"advancedDataTable.triggerTextChange\", \"ea\", this.triggerTextChange.bind(this));\n elementor.hooks.addFilter(\"elements/widget/contextMenuGroups\", this.initContextMenu);\n elementor.hooks.addAction(\"panel/open_editor/widget/eael-advanced-data-table\", this.initPanel.bind(this));\n }\n\n // update model from view\n return _createClass(advancedDataTableEdit, [{\n key: \"updateFromView\",\n value: function updateFromView(view, value) {\n var refresh = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var model = view.model;\n\n // disable elementor remote server render\n model.remoteRender = refresh;\n if (elementor.config.version > \"2.7.6\") {\n var container = view.getContainer();\n var settings = view.getContainer().settings.attributes;\n Object.keys(value).forEach(function (key) {\n settings[key] = value[key];\n });\n parent.window.$e.run(\"document/elements/settings\", {\n container: container,\n settings: settings,\n options: {\n external: refresh\n }\n });\n } else {\n // update backbone model\n Object.keys(value).forEach(function (key) {\n model.setSetting(key, value[key]);\n });\n }\n\n // enable elementor remote server render just after elementor throttle\n // ignore multiple assign\n this.timeout = setTimeout(function () {\n model.remoteRender = true;\n }, 1001);\n }\n\n // get class properties\n }, {\n key: \"getClassProps\",\n value: function getClassProps() {\n return {\n view: this.view,\n model: this.model,\n table: this.table,\n activeCell: this.activeCell\n };\n }\n\n // get class properties\n }, {\n key: \"setClassProps\",\n value: function setClassProps(props) {\n var _this = this;\n Object.keys(props).forEach(function (key) {\n _this[key] = props[key];\n });\n }\n\n // parse table html\n }, {\n key: \"parseHTML\",\n value: function parseHTML(tableHTML) {\n tableHTML.querySelectorAll(\"th, td\").forEach(function (el) {\n if (el.querySelector(\".inline-editor\") !== null) {\n el.innerHTML = decodeURI(el.dataset.quill || \"\");\n delete el.dataset.quill;\n }\n });\n return tableHTML;\n }\n\n // init editor\n }, {\n key: \"initEditor\",\n value: function initEditor(cell) {\n var _this2 = this;\n // init value\n cell.dataset.quill = encodeURI(cell.innerHTML);\n\n // insert editor dom\n cell.innerHTML = \"
\".concat(cell.innerHTML, \"
\");\n\n // init quill\n var quill = new Quill(cell.querySelector(\".inline-editor\"), {\n theme: \"bubble\",\n modules: {\n toolbar: [\"bold\", \"italic\", \"underline\", \"strike\", \"link\", {\n list: \"ordered\"\n }, {\n list: \"bullet\"\n }]\n }\n });\n\n // bind change\n quill.on(\"text-change\", function (delta, oldDelta, source) {\n clearTimeout(_this2.timeout);\n\n // update data\n cell.dataset.quill = encodeURI(quill.root.innerHTML);\n\n // parse table html\n var origTable = _this2.parseHTML(_this2.table.cloneNode(true));\n _this2.tableInnerHTML = origTable.innerHTML;\n // update table\n _this2.updateFromView(_this2.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n });\n }\n\n // init inline editing features\n }, {\n key: \"initInlineEdit\",\n value: function initInlineEdit() {\n var _this3 = this;\n var interval = setInterval(function () {\n if (_this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n // init table\n if (_this3.table !== _this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n _this3.table = _this3.view.el.querySelector(\".ea-advanced-data-table\");\n\n // iniline editor\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n _this3.table.querySelectorAll(\"th, td\").forEach(function (cell) {\n _this3.initEditor(cell);\n });\n }\n\n // mousedown\n _this3.table.addEventListener(\"mousedown\", function (e) {\n e.stopPropagation();\n if (e.target.tagName.toLowerCase() === \"th\") {\n _this3.dragging = true;\n _this3.dragEl = e.target;\n _this3.dragStartX = e.pageX;\n _this3.dragStartWidth = e.target.offsetWidth;\n }\n if (e.target.tagName.toLowerCase() === \"th\" || e.target.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target;\n } else if (e.target.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode;\n } else if (e.target.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode;\n } else if (e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode.parentNode;\n }\n });\n\n // mousemove\n _this3.table.addEventListener(\"mousemove\", function (e) {\n if (_this3.dragging) {\n _this3.dragEl.style.width = \"\".concat(_this3.dragStartWidth + (event.pageX - _this3.dragStartX), \"px\");\n }\n });\n\n // mouseup\n _this3.table.addEventListener(\"mouseup\", function (e) {\n if (_this3.dragging) {\n _this3.dragging = false;\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n\n // clear style\n _this3.table.addEventListener(\"dblclick\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n e.stopPropagation();\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n }\n clearInterval(interval);\n }\n }, 500);\n }\n\n // panel action\n }, {\n key: \"initPanelAction\",\n value: function initPanelAction() {\n var _this4 = this;\n this.panel.content.el.onclick = function (event) {\n if (event.target.dataset.event == \"ea:advTable:export\") {\n // export\n var rows = _this4.table.querySelectorAll(\"table tr\");\n var csv = [];\n\n // generate csv\n for (var i = 0; i < rows.length; i++) {\n var row = [];\n var cols = rows[i].querySelectorAll(\"th, td\");\n if (_this4.table.classList.contains(\"ea-advanced-data-table-static\")) {\n for (var j = 0; j < cols.length; j++) {\n var encodedText = decodeURI(cols[j].dataset.quill);\n var modifiedString = encodedText.replace(/\"/g, '\"\"');\n modifiedString = \"\\\"\".concat(modifiedString, \"\\\"\");\n row.push(modifiedString);\n }\n } else {\n for (var _j = 0; _j < cols.length; _j++) {\n row.push(JSON.stringify(cols[_j].innerHTML.replace(/,\"\"\"([^\"]+)\"\"\",/g, ',\"$1\",').trim()));\n }\n }\n csv.push(row.join(\",\"));\n }\n\n // download\n var csv_file = new Blob([csv.join(\"\\n\")], {\n type: \"text/csv\"\n });\n var downloadLink = parent.document.createElement(\"a\");\n downloadLink.classList.add(\"ea-adv-data-table-download-\".concat(_this4.model.attributes.id));\n downloadLink.download = \"ea-adv-data-table-\".concat(_this4.model.attributes.id, \".csv\");\n downloadLink.href = window.URL.createObjectURL(csv_file);\n downloadLink.style.display = \"none\";\n parent.document.body.appendChild(downloadLink);\n downloadLink.click();\n parent.document.querySelector(\".ea-adv-data-table-download-\".concat(_this4.model.attributes.id)).remove();\n } else if (event.target.dataset.event == \"ea:advTable:import\") {\n // import\n var textarea = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string\");\n var enableHeader = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string_table\").checked;\n var csletr = textarea.value.split(\"\\n\");\n var header = \"\";\n var body = \"\";\n if (textarea.value.length > 0) {\n body += \"\";\n csletr.forEach(function (row, index) {\n var result = [];\n var field = '';\n var inQuotes = false;\n var i = 0;\n while (i < row.length) {\n var _char = row[i];\n if (_char === '\"') {\n if (inQuotes && row[i + 1] === '\"') {\n //Handle escaped double quote\n field += '\"';\n i++;\n } else {\n inQuotes = !inQuotes; //Toggle inQuotes\n }\n } else if (_char === ',' && !inQuotes) {\n //End of field\n result.push(field);\n field = '';\n } else {\n field += _char; //Regular character\n }\n i++;\n }\n result.push(field);\n\n //Generate HTML table\n if (result.length > 0) {\n if (enableHeader && index == 0) {\n header += \"\";\n result.forEach(function (col) {\n header += \"\".concat(col, \"\");\n });\n header += \"\";\n } else {\n body += \"\";\n result.forEach(function (col) {\n body += \"\".concat(col, \"\");\n });\n body += \"\";\n }\n }\n });\n body += \"\";\n if (header.length > 0 || body.length > 0) {\n _this4.tableInnerHTML = header + body;\n _this4.updateFromView(_this4.view, {\n ea_adv_data_table_static_html: header + body\n }, true);\n\n // init inline edit\n var interval = setInterval(function () {\n if (_this4.view.el.querySelector(\".ea-advanced-data-table\").innerHTML == header + body) {\n clearInterval(interval);\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n }\n }, 500);\n }\n }\n textarea.value = \"\";\n }\n ea.hooks.doAction(\"advancedDataTable.panelAction\", _this4.panel, _this4.model, _this4.view, event);\n };\n }\n\n // init panel\n }, {\n key: \"initPanel\",\n value: function initPanel(panel, model, view) {\n var _this5 = this;\n this.panel = panel;\n this.model = model;\n this.view = view;\n var elClass = \".ea-advanced-data-table-\".concat(this.view.container.args.id);\n var eaTable = this.view.el.querySelector(\".ea-advanced-data-table\" + elClass);\n // init inline edit\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n\n // init panel action\n ea.hooks.doAction(\"advancedDataTable.initPanelAction\");\n\n // after panel init hook\n ea.hooks.doAction(\"advancedDataTable.afterInitPanel\", panel, model, view);\n model.once(\"editor:close\", function () {\n if (!eaTable) {\n return false;\n }\n // parse table html\n var origTable = _this5.parseHTML(eaTable.cloneNode(true));\n _this5.tableInnerHTML = origTable.innerHTML;\n\n // update table\n // this.updateFromView(\n // \tthis.view,\n // \t{\n // \t\tea_adv_data_table_static_html: this.tableInnerHTML,\n // \t},\n // \ttrue\n // );\n });\n }\n\n // context menu\n }, {\n key: \"initContextMenu\",\n value: function initContextMenu(groups, element) {\n if (element.options.model.attributes.widgetType == \"eael-advanced-data-table\" && element.options.model.attributes.settings.attributes.ea_adv_data_table_source == \"static\") {\n groups.push({\n name: \"ea_advanced_data_table\",\n actions: [{\n name: \"add_row_above\",\n title: \"Add Row Above\",\n callback: function callback() {\n var _ea$hooks$applyFilter = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter.view,\n table = _ea$hooks$applyFilter.table,\n activeCell = _ea$hooks$applyFilter.activeCell;\n // remove blank tr if any\n jQuery(table).find('tr:empty').each(function () {\n if (jQuery(this).find('td').length == 0) {\n this.remove();\n }\n });\n if (activeCell !== null && activeCell.tagName.toLowerCase() != \"th\" && activeCell.parentNode.rowIndex) {\n var index = activeCell.parentNode.rowIndex;\n var row = table.insertRow(index);\n // insert cells in row\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_row_below\",\n title: \"Add Row Below\",\n callback: function callback() {\n var _ea$hooks$applyFilter2 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter2.view,\n table = _ea$hooks$applyFilter2.table,\n activeCell = _ea$hooks$applyFilter2.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex + 1;\n var row = table.insertRow(index);\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_left\",\n title: \"Add Column Left\",\n callback: function callback() {\n var _ea$hooks$applyFilter3 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter3.view,\n table = _ea$hooks$applyFilter3.table,\n activeCell = _ea$hooks$applyFilter3.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_right\",\n title: \"Add Column Right\",\n callback: function callback() {\n var _ea$hooks$applyFilter4 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter4.view,\n table = _ea$hooks$applyFilter4.table,\n activeCell = _ea$hooks$applyFilter4.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex + 1;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell2 = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell2);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_row\",\n title: \"Delete Row\",\n callback: function callback() {\n var _ea$hooks$applyFilter5 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter5.view,\n table = _ea$hooks$applyFilter5.table,\n activeCell = _ea$hooks$applyFilter5.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex;\n\n // delete row\n table.deleteRow(index);\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_column\",\n title: \"Delete Column\",\n callback: function callback() {\n var _ea$hooks$applyFilter6 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter6.view,\n table = _ea$hooks$applyFilter6.table,\n activeCell = _ea$hooks$applyFilter6.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n\n // delete columns\n for (var i = 0; i < table.rows.length; i++) {\n table.rows[i].deleteCell(index);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }]\n });\n }\n return groups;\n }\n }, {\n key: \"triggerTextChange\",\n value: function triggerTextChange(table) {\n if (table.classList.contains(\"ea-advanced-data-table-static\")) {\n var cellSelector = jQuery('thead tr:first-child th:first-child .ql-editor p', table),\n cellSelector = cellSelector.length ? cellSelector : jQuery('tbody tr:first-child td:first-child .ql-editor p', table),\n cellData = cellSelector.html();\n cellSelector.html(cellData + ' ');\n setTimeout(function () {\n cellSelector.html(cellData);\n }, 1100);\n }\n }\n }]);\n}();\nea.hooks.addAction(\"editMode.init\", \"ea\", function () {\n new advancedDataTableEdit();\n});\n\n//# sourceURL=webpack:///./src/js/edit/advanced-data-table.js?"); +eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\"); }\nfunction _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }\nfunction _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", { writable: !1 }), e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar advancedDataTableEdit = /*#__PURE__*/function () {\n function advancedDataTableEdit() {\n _classCallCheck(this, advancedDataTableEdit);\n // class props\n this.panel = null;\n this.model = null;\n this.view = null;\n this.table = null;\n this.tableInnerHTML = null;\n this.timeout = null;\n this.activeCell = null;\n this.dragStartX = null;\n this.dragStartWidth = null;\n this.dragEl = null;\n this.dragging = false;\n\n // register hooks\n ea.hooks.addFilter(\"advancedDataTable.getClassProps\", \"ea\", this.getClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.setClassProps\", \"ea\", this.setClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.parseHTML\", \"ea\", this.parseHTML);\n ea.hooks.addAction(\"advancedDataTable.initEditor\", \"ea\", this.initEditor.bind(this));\n ea.hooks.addAction(\"advancedDataTable.updateFromView\", \"ea\", this.updateFromView.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initInlineEdit\", \"ea\", this.initInlineEdit.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initPanelAction\", \"ea\", this.initPanelAction.bind(this));\n ea.hooks.addAction(\"advancedDataTable.triggerTextChange\", \"ea\", this.triggerTextChange.bind(this));\n elementor.hooks.addFilter(\"elements/widget/contextMenuGroups\", this.initContextMenu);\n elementor.hooks.addAction(\"panel/open_editor/widget/eael-advanced-data-table\", this.initPanel.bind(this));\n }\n\n // update model from view\n return _createClass(advancedDataTableEdit, [{\n key: \"updateFromView\",\n value: function updateFromView(view, value) {\n var refresh = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var model = view.model;\n\n // disable elementor remote server render\n model.remoteRender = refresh;\n if (elementor.config.version > \"2.7.6\") {\n var container = view.getContainer();\n var settings = view.getContainer().settings.attributes;\n Object.keys(value).forEach(function (key) {\n settings[key] = value[key];\n });\n parent.window.$e.run(\"document/elements/settings\", {\n container: container,\n settings: settings,\n options: {\n external: refresh\n }\n });\n } else {\n // update backbone model\n Object.keys(value).forEach(function (key) {\n model.setSetting(key, value[key]);\n });\n }\n\n // enable elementor remote server render just after elementor throttle\n // ignore multiple assign\n this.timeout = setTimeout(function () {\n model.remoteRender = true;\n }, 1001);\n }\n\n // get class properties\n }, {\n key: \"getClassProps\",\n value: function getClassProps() {\n return {\n view: this.view,\n model: this.model,\n table: this.table,\n activeCell: this.activeCell\n };\n }\n\n // get class properties\n }, {\n key: \"setClassProps\",\n value: function setClassProps(props) {\n var _this = this;\n Object.keys(props).forEach(function (key) {\n _this[key] = props[key];\n });\n }\n\n // parse table html\n }, {\n key: \"parseHTML\",\n value: function parseHTML(tableHTML) {\n tableHTML.querySelectorAll(\"th, td\").forEach(function (el) {\n if (el.querySelector(\".inline-editor\") !== null) {\n el.innerHTML = decodeURI(el.dataset.quill || \"\");\n delete el.dataset.quill;\n }\n });\n return tableHTML;\n }\n\n // init editor\n }, {\n key: \"initEditor\",\n value: function initEditor(cell) {\n var _this2 = this;\n // init value\n cell.dataset.quill = encodeURI(cell.innerHTML);\n\n // insert editor dom\n cell.innerHTML = \"
\".concat(cell.innerHTML, \"
\");\n\n // init quill\n var quill = new Quill(cell.querySelector(\".inline-editor\"), {\n theme: \"bubble\",\n modules: {\n toolbar: [\"bold\", \"italic\", \"underline\", \"strike\", \"link\", {\n list: \"ordered\"\n }, {\n list: \"bullet\"\n }]\n }\n });\n\n // bind change\n quill.on(\"text-change\", function (delta, oldDelta, source) {\n clearTimeout(_this2.timeout);\n\n // update data\n cell.dataset.quill = encodeURI(quill.root.innerHTML);\n\n // parse table html\n var origTable = _this2.parseHTML(_this2.table.cloneNode(true));\n _this2.tableInnerHTML = origTable.innerHTML;\n // update table\n _this2.updateFromView(_this2.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n });\n }\n\n // init inline editing features\n }, {\n key: \"initInlineEdit\",\n value: function initInlineEdit() {\n var _this3 = this;\n var interval = setInterval(function () {\n if (_this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n // init table\n if (_this3.table !== _this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n _this3.table = _this3.view.el.querySelector(\".ea-advanced-data-table\");\n\n // iniline editor\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n _this3.table.querySelectorAll(\"th, td\").forEach(function (cell) {\n _this3.initEditor(cell);\n });\n }\n\n // mousedown\n _this3.table.addEventListener(\"mousedown\", function (e) {\n e.stopPropagation();\n if (e.target.tagName.toLowerCase() === \"th\") {\n _this3.dragging = true;\n _this3.dragEl = e.target;\n _this3.dragStartX = e.pageX;\n _this3.dragStartWidth = e.target.offsetWidth;\n }\n if (e.target.tagName.toLowerCase() === \"th\" || e.target.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target;\n } else if (e.target.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode;\n } else if (e.target.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode;\n } else if (e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode.parentNode;\n }\n });\n\n // mousemove\n _this3.table.addEventListener(\"mousemove\", function (e) {\n if (_this3.dragging) {\n _this3.dragEl.style.width = \"\".concat(_this3.dragStartWidth + (event.pageX - _this3.dragStartX), \"px\");\n }\n });\n\n // mouseup\n _this3.table.addEventListener(\"mouseup\", function (e) {\n if (_this3.dragging) {\n _this3.dragging = false;\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n\n // clear style\n _this3.table.addEventListener(\"dblclick\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n e.stopPropagation();\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n }\n clearInterval(interval);\n }\n }, 500);\n }\n\n // panel action\n }, {\n key: \"initPanelAction\",\n value: function initPanelAction() {\n var _this4 = this;\n this.panel.content.el.onclick = function (event) {\n if (event.target.dataset.event == \"ea:advTable:export\") {\n // export\n var rows = _this4.table.querySelectorAll(\"table tr\");\n var csv = [];\n\n // generate csv\n for (var i = 0; i < rows.length; i++) {\n var row = [];\n var cols = rows[i].querySelectorAll(\"th, td\");\n if (_this4.table.classList.contains(\"ea-advanced-data-table-static\")) {\n for (var j = 0; j < cols.length; j++) {\n var encodedText = decodeURI(cols[j].dataset.quill);\n var modifiedString = encodedText.replace(/\"/g, '\"\"');\n modifiedString = \"\\\"\".concat(modifiedString, \"\\\"\");\n row.push(modifiedString);\n }\n } else {\n for (var _j = 0; _j < cols.length; _j++) {\n row.push(JSON.stringify(cols[_j].innerHTML.replace(/,\"\"\"([^\"]+)\"\"\",/g, ',\"$1\",').trim()));\n }\n }\n csv.push(row.join(\",\"));\n }\n\n // download\n var csv_file = new Blob([csv.join(\"\\n\")], {\n type: \"text/csv\"\n });\n var downloadLink = parent.document.createElement(\"a\");\n downloadLink.classList.add(\"ea-adv-data-table-download-\".concat(_this4.model.attributes.id));\n downloadLink.download = \"ea-adv-data-table-\".concat(_this4.model.attributes.id, \".csv\");\n downloadLink.href = window.URL.createObjectURL(csv_file);\n downloadLink.style.display = \"none\";\n parent.document.body.appendChild(downloadLink);\n downloadLink.click();\n parent.document.querySelector(\".ea-adv-data-table-download-\".concat(_this4.model.attributes.id)).remove();\n } else if (event.target.dataset.event == \"ea:advTable:import\") {\n // import\n var textarea = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string\");\n var enableHeader = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string_table\").checked;\n var csletr = textarea.value.split(\"\\n\");\n var header = \"\";\n var body = \"\";\n if (textarea.value.length > 0) {\n body += \"\";\n csletr.forEach(function (row, index) {\n var result = [];\n var field = '';\n var inQuotes = false;\n var i = 0;\n while (i < row.length) {\n var _char = row[i];\n if (_char === '\"') {\n if (inQuotes && row[i + 1] === '\"') {\n //Handle escaped double quote\n field += '\"';\n i++;\n } else {\n inQuotes = !inQuotes; //Toggle inQuotes\n }\n } else if (_char === ',' && !inQuotes) {\n //End of field\n result.push(field);\n field = '';\n } else {\n field += _char; //Regular character\n }\n i++;\n }\n result.push(field);\n\n //Generate HTML table\n if (result.length > 0) {\n if (enableHeader && index == 0) {\n header += \"\";\n result.forEach(function (col) {\n header += \"\".concat(col, \"\");\n });\n header += \"\";\n } else {\n body += \"\";\n result.forEach(function (col) {\n body += \"\".concat(col, \"\");\n });\n body += \"\";\n }\n }\n });\n body += \"\";\n if (header.length > 0 || body.length > 0) {\n _this4.tableInnerHTML = header + body;\n _this4.updateFromView(_this4.view, {\n ea_adv_data_table_static_html: header + body\n }, true);\n\n // init inline edit\n var interval = setInterval(function () {\n if (_this4.view.el.querySelector(\".ea-advanced-data-table\").innerHTML == header + body) {\n clearInterval(interval);\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n }\n }, 500);\n }\n }\n textarea.value = \"\";\n }\n ea.hooks.doAction(\"advancedDataTable.panelAction\", _this4.panel, _this4.model, _this4.view, event);\n };\n }\n\n // init panel\n }, {\n key: \"initPanel\",\n value: function initPanel(panel, model, view) {\n var _this5 = this;\n this.panel = panel;\n this.model = model;\n this.view = view;\n var elClass = \".ea-advanced-data-table-\".concat(this.view.container.args.id);\n var eaTable = this.view.el.querySelector(\".ea-advanced-data-table\" + elClass);\n // init inline edit\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n\n // init panel action\n ea.hooks.doAction(\"advancedDataTable.initPanelAction\");\n\n // after panel init hook\n ea.hooks.doAction(\"advancedDataTable.afterInitPanel\", panel, model, view);\n model.once(\"editor:close\", function () {\n if (!eaTable) {\n return false;\n }\n // parse table html\n var origTable = _this5.parseHTML(eaTable.cloneNode(true));\n _this5.tableInnerHTML = origTable.innerHTML;\n });\n }\n\n // context menu\n }, {\n key: \"initContextMenu\",\n value: function initContextMenu(groups, element) {\n if (element.options.model.attributes.widgetType == \"eael-advanced-data-table\" && element.options.model.attributes.settings.attributes.ea_adv_data_table_source == \"static\") {\n groups.push({\n name: \"ea_advanced_data_table\",\n actions: [{\n name: \"add_row_above\",\n title: \"Add Row Above\",\n callback: function callback() {\n var _ea$hooks$applyFilter = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter.view,\n table = _ea$hooks$applyFilter.table,\n activeCell = _ea$hooks$applyFilter.activeCell;\n // remove blank tr if any\n jQuery(table).find('tr:empty').each(function () {\n if (jQuery(this).find('td').length == 0) {\n this.remove();\n }\n });\n if (activeCell !== null && activeCell.tagName.toLowerCase() != \"th\" && activeCell.parentNode.rowIndex) {\n var index = activeCell.parentNode.rowIndex;\n var row = table.insertRow(index);\n // insert cells in row\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_row_below\",\n title: \"Add Row Below\",\n callback: function callback() {\n var _ea$hooks$applyFilter2 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter2.view,\n table = _ea$hooks$applyFilter2.table,\n activeCell = _ea$hooks$applyFilter2.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex + 1;\n var row = table.insertRow(index);\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_left\",\n title: \"Add Column Left\",\n callback: function callback() {\n var _ea$hooks$applyFilter3 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter3.view,\n table = _ea$hooks$applyFilter3.table,\n activeCell = _ea$hooks$applyFilter3.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_right\",\n title: \"Add Column Right\",\n callback: function callback() {\n var _ea$hooks$applyFilter4 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter4.view,\n table = _ea$hooks$applyFilter4.table,\n activeCell = _ea$hooks$applyFilter4.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex + 1;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell2 = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell2);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_row\",\n title: \"Delete Row\",\n callback: function callback() {\n var _ea$hooks$applyFilter5 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter5.view,\n table = _ea$hooks$applyFilter5.table,\n activeCell = _ea$hooks$applyFilter5.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex;\n\n // delete row\n table.deleteRow(index);\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_column\",\n title: \"Delete Column\",\n callback: function callback() {\n var _ea$hooks$applyFilter6 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter6.view,\n table = _ea$hooks$applyFilter6.table,\n activeCell = _ea$hooks$applyFilter6.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n\n // delete columns\n for (var i = 0; i < table.rows.length; i++) {\n table.rows[i].deleteCell(index);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }]\n });\n }\n return groups;\n }\n }, {\n key: \"triggerTextChange\",\n value: function triggerTextChange(table) {\n if (table.classList.contains(\"ea-advanced-data-table-static\")) {\n var cellSelector = jQuery('thead tr:first-child th:first-child .ql-editor p', table),\n cellSelector = cellSelector.length ? cellSelector : jQuery('tbody tr:first-child td:first-child .ql-editor p', table),\n cellData = cellSelector.html();\n cellSelector.html(cellData + ' ');\n setTimeout(function () {\n cellSelector.html(cellData);\n }, 1100);\n }\n }\n }]);\n}();\nea.hooks.addAction(\"editMode.init\", \"ea\", function () {\n new advancedDataTableEdit();\n});\n\n//# sourceURL=webpack:///./src/js/edit/advanced-data-table.js?"); /***/ }) diff --git a/includes/Elements/Dual_Color_Header.php b/includes/Elements/Dual_Color_Header.php index f88a719a4..81f305be4 100644 --- a/includes/Elements/Dual_Color_Header.php +++ b/includes/Elements/Dual_Color_Header.php @@ -529,31 +529,6 @@ protected function register_controls() ] ); - // $this->add_group_control( - // Group_Control_Background::get_type(), - // [ - // 'name' => 'eael_dch_dual_title_color_gradient', - // 'types' => ['gradient'], - // 'fields_options' => [ - // 'background' => [ - // 'label' => _x( 'Gradient Color', 'Text Shadow Control', 'elementor' ), - // 'toggle' => false, - // 'default' => 'gradient', - // ], - // 'color' => [ - // 'default' => '#062ACA', - // ], - // 'color_b' => [ - // 'default' => '#9401D9', - // ] - // ], - // 'selector' => '{{WRAPPER}} .eael-dual-header .title span.lead', - // 'condition' => [ - // 'eael_dch_dual_color_selector' => 'gradient-color' - // ], - // ] - // ); - $this->add_group_control( Group_Control_Typography::get_type(), [ diff --git a/includes/Traits/Controls.php b/includes/Traits/Controls.php index 6209234b7..d6e550c51 100644 --- a/includes/Traits/Controls.php +++ b/includes/Traits/Controls.php @@ -1588,23 +1588,6 @@ public static function layout($wb) ] ); - // $wb->add_control( - // 'eael_show_avatar_three', - // [ - // 'label' => __('Show Avatar', 'essential-addons-for-elementor-lite'), - // 'type' => Controls_Manager::SWITCHER, - // 'label_on' => __('Show', 'essential-addons-for-elementor-lite'), - // 'label_off' => __('Hide', 'essential-addons-for-elementor-lite'), - // 'return_value' => 'yes', - // 'default' => '', - // 'condition' => [ - // 'eael_show_meta' => 'yes', - // 'meta_position' => 'meta-entry-footer', - // 'eael_post_grid_preset_style' => 'three', - // ], - // ] - // ); - $wb->add_control( 'eael_show_author_two', [ diff --git a/languages/essential-addons-for-elementor-lite.pot b/languages/essential-addons-for-elementor-lite.pot index 3bd7d4f10..55f9d624f 100755 --- a/languages/essential-addons-for-elementor-lite.pot +++ b/languages/essential-addons-for-elementor-lite.pot @@ -193,7 +193,7 @@ msgstr "" msgid "Next" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Classes/WPDeveloper_Setup_Wizard.php:163, ../includes/Elements/Advanced_Data_Table.php:443, ../includes/Elements/Advanced_Data_Table.php:562, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1137, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:778, ../includes/Elements/Betterdocs_Category_Grid.php:1524, ../includes/Elements/Betterdocs_Category_Grid.php:1549, ../includes/Elements/Business_Reviews.php:1070, ../includes/Elements/Business_Reviews.php:2083, ../includes/Elements/Caldera_Forms.php:244, ../includes/Elements/Caldera_Forms.php:428, ../includes/Elements/Caldera_Forms.php:574, ../includes/Elements/Caldera_Forms.php:1149, ../includes/Elements/Contact_Form_7.php:342, ../includes/Elements/Contact_Form_7.php:457, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1143, ../includes/Elements/Creative_Button.php:461, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Cta_Box.php:211, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:807, ../includes/Elements/Data_Table.php:1056, ../includes/Elements/Dual_Color_Header.php:206, ../includes/Elements/Event_Calendar.php:982, ../includes/Elements/Event_Calendar.php:1292, ../includes/Elements/Event_Calendar.php:2306, ../includes/Elements/Event_Calendar.php:2442, ../includes/Elements/Fancy_Text.php:197, ../includes/Elements/Feature_List.php:332, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1531, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2783, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Flip_Box.php:630, ../includes/Elements/FluentForm.php:278, ../includes/Elements/FluentForm.php:475, ../includes/Elements/FluentForm.php:621, ../includes/Elements/FluentForm.php:1254, ../includes/Elements/FluentForm.php:1499, ../includes/Elements/Formstack.php:345, ../includes/Elements/Formstack.php:460, ../includes/Elements/Formstack.php:776, ../includes/Elements/Formstack.php:1385, ../includes/Elements/GravityForms.php:358, ../includes/Elements/GravityForms.php:495, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:780, ../includes/Elements/GravityForms.php:907, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2456, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:324, ../includes/Elements/Login_Register.php:1350, ../includes/Elements/Login_Register.php:3715, ../includes/Elements/Login_Register.php:4955, ../includes/Elements/Login_Register.php:5304, ../includes/Elements/NFT_Gallery.php:738, ../includes/Elements/NFT_Gallery.php:1906, ../includes/Elements/NinjaForms.php:293, ../includes/Elements/NinjaForms.php:432, ../includes/Elements/NinjaForms.php:616, ../includes/Elements/NinjaForms.php:1311, ../includes/Elements/Post_Grid.php:476, ../includes/Elements/Post_Grid.php:636, ../includes/Elements/Post_Grid.php:706, ../includes/Elements/Post_Grid.php:803, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:143, ../includes/Elements/Pricing_Table.php:290, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Pricing_Table.php:734, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Pricing_Table.php:905, ../includes/Elements/Product_Grid.php:858, ../includes/Elements/Product_Grid.php:1177, ../includes/Elements/Product_Grid.php:1867, ../includes/Elements/Product_Grid.php:2384, ../includes/Elements/Progress_Bar.php:372, ../includes/Elements/Progress_Bar.php:641, ../includes/Elements/Simple_Menu.php:200, ../includes/Elements/Simple_Menu.php:378, ../includes/Elements/Simple_Menu.php:785, ../includes/Elements/Simple_Menu.php:811, ../includes/Elements/Simple_Menu.php:836, ../includes/Elements/Simple_Menu.php:1227, ../includes/Elements/SVG_Draw.php:196, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Testimonial.php:331, ../includes/Elements/Tooltip.php:223, ../includes/Elements/Tooltip.php:295, ../includes/Elements/Tooltip.php:398, ../includes/Elements/Twitter_Feed.php:568, ../includes/Elements/TypeForm.php:207, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:280, ../includes/Elements/Woo_Cart.php:504, ../includes/Elements/Woo_Cart.php:603, ../includes/Elements/Woo_Cart.php:677, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:1710, ../includes/Elements/Woo_Cart.php:2353, ../includes/Elements/Woo_Product_Carousel.php:772, ../includes/Elements/Woo_Product_Carousel.php:930, ../includes/Elements/Woo_Product_Carousel.php:989, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:629, ../includes/Elements/Woo_Product_Gallery.php:1603, ../includes/Elements/Woo_Product_List.php:570, ../includes/Elements/Woo_Product_List.php:723, ../includes/Elements/WpForms.php:282, ../includes/Elements/WpForms.php:399, ../includes/Elements/WpForms.php:587, ../includes/Elements/WpForms.php:1154, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:556, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:1744, ../includes/Traits/Controls.php:1805, ../includes/Traits/Controls.php:2202, ../includes/Traits/Controls.php:2245, ../includes/Traits/Controls.php:2246, ../includes/Traits/Controls.php:2576 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Classes/WPDeveloper_Setup_Wizard.php:163, ../includes/Elements/Advanced_Data_Table.php:443, ../includes/Elements/Advanced_Data_Table.php:562, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1137, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:778, ../includes/Elements/Betterdocs_Category_Grid.php:1524, ../includes/Elements/Betterdocs_Category_Grid.php:1549, ../includes/Elements/Business_Reviews.php:1070, ../includes/Elements/Business_Reviews.php:2083, ../includes/Elements/Caldera_Forms.php:244, ../includes/Elements/Caldera_Forms.php:428, ../includes/Elements/Caldera_Forms.php:574, ../includes/Elements/Caldera_Forms.php:1149, ../includes/Elements/Contact_Form_7.php:342, ../includes/Elements/Contact_Form_7.php:457, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1143, ../includes/Elements/Creative_Button.php:461, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Cta_Box.php:211, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:807, ../includes/Elements/Data_Table.php:1056, ../includes/Elements/Dual_Color_Header.php:206, ../includes/Elements/Event_Calendar.php:982, ../includes/Elements/Event_Calendar.php:1292, ../includes/Elements/Event_Calendar.php:2306, ../includes/Elements/Event_Calendar.php:2442, ../includes/Elements/Fancy_Text.php:197, ../includes/Elements/Feature_List.php:332, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1531, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2783, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Flip_Box.php:630, ../includes/Elements/FluentForm.php:278, ../includes/Elements/FluentForm.php:475, ../includes/Elements/FluentForm.php:621, ../includes/Elements/FluentForm.php:1254, ../includes/Elements/FluentForm.php:1499, ../includes/Elements/Formstack.php:345, ../includes/Elements/Formstack.php:460, ../includes/Elements/Formstack.php:776, ../includes/Elements/Formstack.php:1385, ../includes/Elements/GravityForms.php:358, ../includes/Elements/GravityForms.php:495, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:780, ../includes/Elements/GravityForms.php:907, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2456, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:324, ../includes/Elements/Login_Register.php:1350, ../includes/Elements/Login_Register.php:3715, ../includes/Elements/Login_Register.php:4955, ../includes/Elements/Login_Register.php:5304, ../includes/Elements/NFT_Gallery.php:738, ../includes/Elements/NFT_Gallery.php:1906, ../includes/Elements/NinjaForms.php:293, ../includes/Elements/NinjaForms.php:432, ../includes/Elements/NinjaForms.php:616, ../includes/Elements/NinjaForms.php:1311, ../includes/Elements/Post_Grid.php:476, ../includes/Elements/Post_Grid.php:636, ../includes/Elements/Post_Grid.php:706, ../includes/Elements/Post_Grid.php:803, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:143, ../includes/Elements/Pricing_Table.php:290, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Pricing_Table.php:734, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Pricing_Table.php:905, ../includes/Elements/Product_Grid.php:858, ../includes/Elements/Product_Grid.php:1177, ../includes/Elements/Product_Grid.php:1867, ../includes/Elements/Product_Grid.php:2384, ../includes/Elements/Progress_Bar.php:372, ../includes/Elements/Progress_Bar.php:641, ../includes/Elements/Simple_Menu.php:200, ../includes/Elements/Simple_Menu.php:378, ../includes/Elements/Simple_Menu.php:785, ../includes/Elements/Simple_Menu.php:811, ../includes/Elements/Simple_Menu.php:836, ../includes/Elements/Simple_Menu.php:1227, ../includes/Elements/SVG_Draw.php:196, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Testimonial.php:331, ../includes/Elements/Tooltip.php:223, ../includes/Elements/Tooltip.php:295, ../includes/Elements/Tooltip.php:398, ../includes/Elements/Twitter_Feed.php:568, ../includes/Elements/TypeForm.php:207, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:280, ../includes/Elements/Woo_Cart.php:504, ../includes/Elements/Woo_Cart.php:603, ../includes/Elements/Woo_Cart.php:677, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:1710, ../includes/Elements/Woo_Cart.php:2353, ../includes/Elements/Woo_Product_Carousel.php:772, ../includes/Elements/Woo_Product_Carousel.php:930, ../includes/Elements/Woo_Product_Carousel.php:989, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:629, ../includes/Elements/Woo_Product_Gallery.php:1603, ../includes/Elements/Woo_Product_List.php:570, ../includes/Elements/Woo_Product_List.php:723, ../includes/Elements/WpForms.php:282, ../includes/Elements/WpForms.php:399, ../includes/Elements/WpForms.php:587, ../includes/Elements/WpForms.php:1154, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:556, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:1727, ../includes/Traits/Controls.php:1788, ../includes/Traits/Controls.php:2185, ../includes/Traits/Controls.php:2228, ../includes/Traits/Controls.php:2229, ../includes/Traits/Controls.php:2559 msgid "Right" msgstr "" @@ -850,15 +850,15 @@ msgstr "" msgid "Table" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2140, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:475, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:1188, ../includes/Elements/Dual_Color_Header.php:755, ../includes/Elements/Dual_Color_Header.php:835, ../includes/Elements/Event_Calendar.php:1354, ../includes/Elements/Filterable_Gallery.php:2456, ../includes/Elements/Filterable_Gallery.php:2619, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:599, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:399, ../includes/Elements/Sticky_Video.php:487, ../includes/Elements/Sticky_Video.php:571, ../includes/Elements/SVG_Draw.php:137, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1433, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Carousel.php:2466, ../includes/Elements/Woo_Product_Carousel.php:2546, ../includes/Elements/Woo_Product_Gallery.php:1243, ../includes/Elements/Woo_Product_List.php:1337, ../includes/Elements/Woo_Product_List.php:1434, ../includes/Elements/WpForms.php:1172, ../includes/Elements/WpForms.php:1186, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 +#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2140, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:475, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:1188, ../includes/Elements/Dual_Color_Header.php:730, ../includes/Elements/Dual_Color_Header.php:810, ../includes/Elements/Event_Calendar.php:1354, ../includes/Elements/Filterable_Gallery.php:2456, ../includes/Elements/Filterable_Gallery.php:2619, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:599, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:399, ../includes/Elements/Sticky_Video.php:487, ../includes/Elements/Sticky_Video.php:571, ../includes/Elements/SVG_Draw.php:137, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1433, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Carousel.php:2466, ../includes/Elements/Woo_Product_Carousel.php:2546, ../includes/Elements/Woo_Product_Gallery.php:1243, ../includes/Elements/Woo_Product_List.php:1337, ../includes/Elements/Woo_Product_List.php:1434, ../includes/Elements/WpForms.php:1172, ../includes/Elements/WpForms.php:1186, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 msgid "Width" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:703, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Accordion.php:826, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Accordion.php:1033, ../includes/Elements/Adv_Accordion.php:1080, ../includes/Elements/Adv_Accordion.php:1127, ../includes/Elements/Adv_Tabs.php:449, ../includes/Elements/Adv_Tabs.php:647, ../includes/Elements/Adv_Tabs.php:714, ../includes/Elements/Adv_Tabs.php:783, ../includes/Elements/Adv_Tabs.php:877, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2272, ../includes/Elements/Business_Reviews.php:2434, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:720, ../includes/Elements/Cta_Box.php:645, ../includes/Elements/Cta_Box.php:974, ../includes/Elements/Cta_Box.php:1337, ../includes/Elements/Data_Table.php:673, ../includes/Elements/Data_Table.php:712, ../includes/Elements/Data_Table.php:904, ../includes/Elements/Data_Table.php:1255, ../includes/Elements/Dual_Color_Header.php:354, ../includes/Elements/Event_Calendar.php:2098, ../includes/Elements/Event_Calendar.php:2165, ../includes/Elements/Event_Calendar.php:2219, ../includes/Elements/Event_Calendar.php:2923, ../includes/Elements/Event_Calendar.php:2994, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1089, ../includes/Elements/Filterable_Gallery.php:1202, ../includes/Elements/Filterable_Gallery.php:1268, ../includes/Elements/Filterable_Gallery.php:1348, ../includes/Elements/Filterable_Gallery.php:1501, ../includes/Elements/Filterable_Gallery.php:1558, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2129, ../includes/Elements/Filterable_Gallery.php:2190, ../includes/Elements/Filterable_Gallery.php:2715, ../includes/Elements/Filterable_Gallery.php:2844, ../includes/Elements/Filterable_Gallery.php:2962, ../includes/Elements/Flip_Box.php:1016, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:363, ../includes/Elements/Image_Accordion.php:474, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:833, ../includes/Elements/Info_Box.php:913, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1147, ../includes/Elements/Interactive_Circle.php:525, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Interactive_Circle.php:950, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:281, ../includes/Elements/Pricing_Table.php:1854, ../includes/Elements/Pricing_Table.php:2022, ../includes/Elements/Product_Grid.php:2460, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:445, ../includes/Elements/Team_Member.php:533, ../includes/Elements/Testimonial.php:444, ../includes/Elements/Tooltip.php:453, ../includes/Elements/Tooltip.php:497, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2157, ../includes/Elements/Woo_Product_Carousel.php:2371, ../includes/Elements/Woo_Product_Carousel.php:2805, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:823, ../includes/Elements/WpForms.php:1242, ../includes/Extensions/Table_of_Content.php:638, ../includes/Traits/Controls.php:1862, ../includes/Traits/Controls.php:1974, ../includes/Traits/Controls.php:1923, ../includes/Traits/Controls.php:2105 +#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:703, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Accordion.php:826, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Accordion.php:1033, ../includes/Elements/Adv_Accordion.php:1080, ../includes/Elements/Adv_Accordion.php:1127, ../includes/Elements/Adv_Tabs.php:449, ../includes/Elements/Adv_Tabs.php:647, ../includes/Elements/Adv_Tabs.php:714, ../includes/Elements/Adv_Tabs.php:783, ../includes/Elements/Adv_Tabs.php:877, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2272, ../includes/Elements/Business_Reviews.php:2434, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:720, ../includes/Elements/Cta_Box.php:645, ../includes/Elements/Cta_Box.php:974, ../includes/Elements/Cta_Box.php:1337, ../includes/Elements/Data_Table.php:673, ../includes/Elements/Data_Table.php:712, ../includes/Elements/Data_Table.php:904, ../includes/Elements/Data_Table.php:1255, ../includes/Elements/Dual_Color_Header.php:354, ../includes/Elements/Event_Calendar.php:2098, ../includes/Elements/Event_Calendar.php:2165, ../includes/Elements/Event_Calendar.php:2219, ../includes/Elements/Event_Calendar.php:2923, ../includes/Elements/Event_Calendar.php:2994, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1089, ../includes/Elements/Filterable_Gallery.php:1202, ../includes/Elements/Filterable_Gallery.php:1268, ../includes/Elements/Filterable_Gallery.php:1348, ../includes/Elements/Filterable_Gallery.php:1501, ../includes/Elements/Filterable_Gallery.php:1558, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2129, ../includes/Elements/Filterable_Gallery.php:2190, ../includes/Elements/Filterable_Gallery.php:2715, ../includes/Elements/Filterable_Gallery.php:2844, ../includes/Elements/Filterable_Gallery.php:2962, ../includes/Elements/Flip_Box.php:1016, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:363, ../includes/Elements/Image_Accordion.php:474, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:833, ../includes/Elements/Info_Box.php:913, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1147, ../includes/Elements/Interactive_Circle.php:525, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Interactive_Circle.php:950, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:281, ../includes/Elements/Pricing_Table.php:1854, ../includes/Elements/Pricing_Table.php:2022, ../includes/Elements/Product_Grid.php:2460, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:445, ../includes/Elements/Team_Member.php:533, ../includes/Elements/Testimonial.php:444, ../includes/Elements/Tooltip.php:453, ../includes/Elements/Tooltip.php:497, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2157, ../includes/Elements/Woo_Product_Carousel.php:2371, ../includes/Elements/Woo_Product_Carousel.php:2805, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:823, ../includes/Elements/WpForms.php:1242, ../includes/Extensions/Table_of_Content.php:638, ../includes/Traits/Controls.php:1845, ../includes/Traits/Controls.php:1957, ../includes/Traits/Controls.php:1906, ../includes/Traits/Controls.php:2088 msgid "Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:519, ../includes/Elements/Adv_Accordion.php:710, ../includes/Elements/Adv_Accordion.php:771, ../includes/Elements/Adv_Accordion.php:833, ../includes/Elements/Adv_Tabs.php:457, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:721, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Adv_Tabs.php:884, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:836, ../includes/Elements/Business_Reviews.php:966, ../includes/Elements/Business_Reviews.php:1452, ../includes/Elements/Business_Reviews.php:1580, ../includes/Elements/Business_Reviews.php:2282, ../includes/Elements/Business_Reviews.php:2444, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:728, ../includes/Elements/Creative_Button.php:341, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:1007, ../includes/Elements/Cta_Box.php:1345, ../includes/Elements/Dual_Color_Header.php:362, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1748, ../includes/Elements/Event_Calendar.php:2106, ../includes/Elements/Event_Calendar.php:2173, ../includes/Elements/Event_Calendar.php:2227, ../includes/Elements/Event_Calendar.php:2469, ../includes/Elements/Event_Calendar.php:2640, ../includes/Elements/Event_Calendar.php:2931, ../includes/Elements/Event_Calendar.php:3002, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:531, ../includes/Elements/Feature_List.php:725, ../includes/Elements/Filterable_Gallery.php:1097, ../includes/Elements/Filterable_Gallery.php:1210, ../includes/Elements/Filterable_Gallery.php:1276, ../includes/Elements/Filterable_Gallery.php:1356, ../includes/Elements/Filterable_Gallery.php:1566, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2198, ../includes/Elements/Filterable_Gallery.php:2368, ../includes/Elements/Filterable_Gallery.php:2499, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Filterable_Gallery.php:2737, ../includes/Elements/Filterable_Gallery.php:2852, ../includes/Elements/Filterable_Gallery.php:2976, ../includes/Elements/Flip_Box.php:853, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:1039, ../includes/Elements/Flip_Box.php:1153, ../includes/Elements/Flip_Box.php:1414, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:371, ../includes/Elements/Image_Accordion.php:462, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:289, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:570, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/Pricing_Table.php:1625, ../includes/Elements/Pricing_Table.php:1877, ../includes/Elements/Pricing_Table.php:2030, ../includes/Elements/Product_Grid.php:1099, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2567, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:3106, ../includes/Elements/Product_Grid.php:3138, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:637, ../includes/Elements/SVG_Draw.php:444, ../includes/Elements/Team_Member.php:453, ../includes/Elements/Team_Member.php:552, ../includes/Elements/Team_Member.php:803, ../includes/Elements/Testimonial.php:463, ../includes/Elements/Tooltip.php:514, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:903, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1250, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:1888, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2505, ../includes/Elements/Woo_Checkout.php:2685, ../includes/Elements/Woo_Checkout.php:2965, ../includes/Elements/Woo_Product_Carousel.php:1120, ../includes/Elements/Woo_Product_Carousel.php:1540, ../includes/Elements/Woo_Product_Carousel.php:1943, ../includes/Elements/Woo_Product_Carousel.php:2139, ../includes/Elements/Woo_Product_Carousel.php:2171, ../includes/Elements/Woo_Product_Carousel.php:2381, ../includes/Elements/Woo_Product_Carousel.php:2504, ../includes/Elements/Woo_Product_Carousel.php:2628, ../includes/Elements/Woo_Product_Carousel.php:2815, ../includes/Elements/Woo_Product_Gallery.php:744, ../includes/Elements/Woo_Product_Gallery.php:1778, ../includes/Elements/Woo_Product_Gallery.php:2179, ../includes/Elements/Woo_Product_Gallery.php:2378, ../includes/Elements/Woo_Product_Gallery.php:2410, ../includes/Elements/Woo_Product_List.php:1160, ../includes/Elements/Woo_Product_List.php:1273, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1686, ../includes/Elements/Woo_Product_List.php:1748, ../includes/Elements/Woo_Product_List.php:1813, ../includes/Elements/Woo_Product_List.php:1884, ../includes/Elements/Woo_Product_List.php:3016, ../includes/Elements/Woo_Product_List.php:3214, ../includes/Elements/Woo_Product_List.php:3246, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1056, ../includes/Elements/WpForms.php:1082, ../includes/Elements/WpForms.php:1252, ../includes/Extensions/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:661, ../includes/Extensions/Table_of_Content.php:878, ../includes/Traits/Controls.php:1870, ../includes/Traits/Controls.php:1982, ../includes/Traits/Controls.php:1934, ../includes/Traits/Controls.php:2113, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 +#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:519, ../includes/Elements/Adv_Accordion.php:710, ../includes/Elements/Adv_Accordion.php:771, ../includes/Elements/Adv_Accordion.php:833, ../includes/Elements/Adv_Tabs.php:457, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:721, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Adv_Tabs.php:884, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:836, ../includes/Elements/Business_Reviews.php:966, ../includes/Elements/Business_Reviews.php:1452, ../includes/Elements/Business_Reviews.php:1580, ../includes/Elements/Business_Reviews.php:2282, ../includes/Elements/Business_Reviews.php:2444, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:728, ../includes/Elements/Creative_Button.php:341, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:1007, ../includes/Elements/Cta_Box.php:1345, ../includes/Elements/Dual_Color_Header.php:362, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1748, ../includes/Elements/Event_Calendar.php:2106, ../includes/Elements/Event_Calendar.php:2173, ../includes/Elements/Event_Calendar.php:2227, ../includes/Elements/Event_Calendar.php:2469, ../includes/Elements/Event_Calendar.php:2640, ../includes/Elements/Event_Calendar.php:2931, ../includes/Elements/Event_Calendar.php:3002, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:531, ../includes/Elements/Feature_List.php:725, ../includes/Elements/Filterable_Gallery.php:1097, ../includes/Elements/Filterable_Gallery.php:1210, ../includes/Elements/Filterable_Gallery.php:1276, ../includes/Elements/Filterable_Gallery.php:1356, ../includes/Elements/Filterable_Gallery.php:1566, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2198, ../includes/Elements/Filterable_Gallery.php:2368, ../includes/Elements/Filterable_Gallery.php:2499, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Filterable_Gallery.php:2737, ../includes/Elements/Filterable_Gallery.php:2852, ../includes/Elements/Filterable_Gallery.php:2976, ../includes/Elements/Flip_Box.php:853, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:1039, ../includes/Elements/Flip_Box.php:1153, ../includes/Elements/Flip_Box.php:1414, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:371, ../includes/Elements/Image_Accordion.php:462, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:289, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:570, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/Pricing_Table.php:1625, ../includes/Elements/Pricing_Table.php:1877, ../includes/Elements/Pricing_Table.php:2030, ../includes/Elements/Product_Grid.php:1099, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2567, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:3106, ../includes/Elements/Product_Grid.php:3138, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:637, ../includes/Elements/SVG_Draw.php:444, ../includes/Elements/Team_Member.php:453, ../includes/Elements/Team_Member.php:552, ../includes/Elements/Team_Member.php:803, ../includes/Elements/Testimonial.php:463, ../includes/Elements/Tooltip.php:514, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:903, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1250, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:1888, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2505, ../includes/Elements/Woo_Checkout.php:2685, ../includes/Elements/Woo_Checkout.php:2965, ../includes/Elements/Woo_Product_Carousel.php:1120, ../includes/Elements/Woo_Product_Carousel.php:1540, ../includes/Elements/Woo_Product_Carousel.php:1943, ../includes/Elements/Woo_Product_Carousel.php:2139, ../includes/Elements/Woo_Product_Carousel.php:2171, ../includes/Elements/Woo_Product_Carousel.php:2381, ../includes/Elements/Woo_Product_Carousel.php:2504, ../includes/Elements/Woo_Product_Carousel.php:2628, ../includes/Elements/Woo_Product_Carousel.php:2815, ../includes/Elements/Woo_Product_Gallery.php:744, ../includes/Elements/Woo_Product_Gallery.php:1778, ../includes/Elements/Woo_Product_Gallery.php:2179, ../includes/Elements/Woo_Product_Gallery.php:2378, ../includes/Elements/Woo_Product_Gallery.php:2410, ../includes/Elements/Woo_Product_List.php:1160, ../includes/Elements/Woo_Product_List.php:1273, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1686, ../includes/Elements/Woo_Product_List.php:1748, ../includes/Elements/Woo_Product_List.php:1813, ../includes/Elements/Woo_Product_List.php:1884, ../includes/Elements/Woo_Product_List.php:3016, ../includes/Elements/Woo_Product_List.php:3214, ../includes/Elements/Woo_Product_List.php:3246, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1056, ../includes/Elements/WpForms.php:1082, ../includes/Elements/WpForms.php:1252, ../includes/Extensions/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:661, ../includes/Extensions/Table_of_Content.php:878, ../includes/Traits/Controls.php:1853, ../includes/Traits/Controls.php:1965, ../includes/Traits/Controls.php:1917, ../includes/Traits/Controls.php:2096, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 msgid "Border Radius" msgstr "" @@ -870,7 +870,7 @@ msgstr "" msgid "Head" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2027, ../includes/Elements/Event_Calendar.php:2057, ../includes/Elements/Event_Calendar.php:2274, ../includes/Elements/Event_Calendar.php:2352, ../includes/Elements/Event_Calendar.php:2386, ../includes/Elements/Event_Calendar.php:2632, ../includes/Elements/Event_Calendar.php:2686, ../includes/Elements/Event_Calendar.php:2716, ../includes/Elements/Event_Calendar.php:2745, ../includes/Elements/Event_Calendar.php:2813, ../includes/Elements/Event_Calendar.php:2973, ../includes/Elements/Filterable_Gallery.php:2264, ../includes/Elements/Filterable_Gallery.php:2311, ../includes/Elements/Filterable_Gallery.php:2347, ../includes/Elements/Filterable_Gallery.php:2404, ../includes/Elements/Filterable_Gallery.php:2703, ../includes/Elements/Filterable_Gallery.php:2993, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:370, ../includes/Elements/Post_Grid.php:492, ../includes/Elements/Post_Grid.php:506, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:550, ../includes/Elements/Product_Grid.php:2627, ../includes/Elements/Product_Grid.php:2658, ../includes/Elements/Product_Grid.php:2700, ../includes/Elements/Product_Grid.php:2766, ../includes/Elements/Product_Grid.php:2807, ../includes/Elements/Product_Grid.php:2864, ../includes/Elements/Product_Grid.php:2981, ../includes/Elements/Progress_Bar.php:773, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1627, ../includes/Elements/Woo_Checkout.php:1998, ../includes/Elements/Woo_Product_Carousel.php:1651, ../includes/Elements/Woo_Product_Carousel.php:1681, ../includes/Elements/Woo_Product_Carousel.php:1723, ../includes/Elements/Woo_Product_Carousel.php:1802, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:1899, ../includes/Elements/Woo_Product_Carousel.php:2018, ../includes/Elements/Woo_Product_Gallery.php:1859, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1931, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2038, ../includes/Elements/Woo_Product_Gallery.php:2079, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:3089, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:872, ../includes/Elements/WpForms.php:1296, ../includes/Traits/Controls.php:1724, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 +#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2027, ../includes/Elements/Event_Calendar.php:2057, ../includes/Elements/Event_Calendar.php:2274, ../includes/Elements/Event_Calendar.php:2352, ../includes/Elements/Event_Calendar.php:2386, ../includes/Elements/Event_Calendar.php:2632, ../includes/Elements/Event_Calendar.php:2686, ../includes/Elements/Event_Calendar.php:2716, ../includes/Elements/Event_Calendar.php:2745, ../includes/Elements/Event_Calendar.php:2813, ../includes/Elements/Event_Calendar.php:2973, ../includes/Elements/Filterable_Gallery.php:2264, ../includes/Elements/Filterable_Gallery.php:2311, ../includes/Elements/Filterable_Gallery.php:2347, ../includes/Elements/Filterable_Gallery.php:2404, ../includes/Elements/Filterable_Gallery.php:2703, ../includes/Elements/Filterable_Gallery.php:2993, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:370, ../includes/Elements/Post_Grid.php:492, ../includes/Elements/Post_Grid.php:506, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:550, ../includes/Elements/Product_Grid.php:2627, ../includes/Elements/Product_Grid.php:2658, ../includes/Elements/Product_Grid.php:2700, ../includes/Elements/Product_Grid.php:2766, ../includes/Elements/Product_Grid.php:2807, ../includes/Elements/Product_Grid.php:2864, ../includes/Elements/Product_Grid.php:2981, ../includes/Elements/Progress_Bar.php:773, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1627, ../includes/Elements/Woo_Checkout.php:1998, ../includes/Elements/Woo_Product_Carousel.php:1651, ../includes/Elements/Woo_Product_Carousel.php:1681, ../includes/Elements/Woo_Product_Carousel.php:1723, ../includes/Elements/Woo_Product_Carousel.php:1802, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:1899, ../includes/Elements/Woo_Product_Carousel.php:2018, ../includes/Elements/Woo_Product_Gallery.php:1859, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1931, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2038, ../includes/Elements/Woo_Product_Gallery.php:2079, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:3089, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:872, ../includes/Elements/WpForms.php:1296, ../includes/Traits/Controls.php:1707, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 msgid "Typography" msgstr "" @@ -878,19 +878,19 @@ msgstr "" msgid "Text Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1062, ../includes/Elements/Business_Reviews.php:2075, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1135, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:574, ../includes/Elements/Data_Table.php:799, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:198, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1284, ../includes/Elements/Event_Calendar.php:2298, ../includes/Elements/Event_Calendar.php:2434, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1523, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/Flip_Box.php:382, ../includes/Elements/Flip_Box.php:622, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:316, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:468, ../includes/Elements/Post_Grid.php:628, ../includes/Elements/Post_Grid.php:698, ../includes/Elements/Post_Grid.php:795, ../includes/Elements/Post_Grid.php:880, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:380, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:289, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Pricing_Table.php:730, ../includes/Elements/Pricing_Table.php:872, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Product_Grid.php:850, ../includes/Elements/Product_Grid.php:1169, ../includes/Elements/Product_Grid.php:1863, ../includes/Elements/Product_Grid.php:2376, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Testimonial.php:323, ../includes/Elements/Tooltip.php:215, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Tooltip.php:390, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:771, ../includes/Elements/Woo_Product_Carousel.php:926, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:621, ../includes/Elements/Woo_Product_Gallery.php:1599, ../includes/Elements/Woo_Product_List.php:566, ../includes/Elements/Woo_Product_List.php:719, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1146, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:658, ../includes/Traits/Controls.php:1736, ../includes/Traits/Controls.php:1797, ../includes/Traits/Controls.php:2194, ../includes/Traits/Controls.php:2245, ../includes/Traits/Controls.php:2246, ../includes/Traits/Controls.php:2568 +#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1062, ../includes/Elements/Business_Reviews.php:2075, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1135, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:574, ../includes/Elements/Data_Table.php:799, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:198, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1284, ../includes/Elements/Event_Calendar.php:2298, ../includes/Elements/Event_Calendar.php:2434, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1523, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/Flip_Box.php:382, ../includes/Elements/Flip_Box.php:622, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:316, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:468, ../includes/Elements/Post_Grid.php:628, ../includes/Elements/Post_Grid.php:698, ../includes/Elements/Post_Grid.php:795, ../includes/Elements/Post_Grid.php:880, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:380, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:289, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Pricing_Table.php:730, ../includes/Elements/Pricing_Table.php:872, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Product_Grid.php:850, ../includes/Elements/Product_Grid.php:1169, ../includes/Elements/Product_Grid.php:1863, ../includes/Elements/Product_Grid.php:2376, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Testimonial.php:323, ../includes/Elements/Tooltip.php:215, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Tooltip.php:390, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:771, ../includes/Elements/Woo_Product_Carousel.php:926, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:621, ../includes/Elements/Woo_Product_Gallery.php:1599, ../includes/Elements/Woo_Product_List.php:566, ../includes/Elements/Woo_Product_List.php:719, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1146, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:658, ../includes/Traits/Controls.php:1719, ../includes/Traits/Controls.php:1780, ../includes/Traits/Controls.php:2177, ../includes/Traits/Controls.php:2228, ../includes/Traits/Controls.php:2229, ../includes/Traits/Controls.php:2551 msgid "Left" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1066, ../includes/Elements/Business_Reviews.php:2079, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Cta_Box.php:212, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Dual_Color_Header.php:665, ../includes/Elements/Event_Calendar.php:978, ../includes/Elements/Event_Calendar.php:1288, ../includes/Elements/Event_Calendar.php:2302, ../includes/Elements/Event_Calendar.php:2438, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:472, ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Grid.php:702, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:876, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Product_Grid.php:854, ../includes/Elements/Product_Grid.php:1173, ../includes/Elements/Product_Grid.php:2380, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:416, ../includes/Elements/Testimonial.php:327, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:985, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:625, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1150, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:674, ../includes/Traits/Controls.php:1740, ../includes/Traits/Controls.php:1801, ../includes/Traits/Controls.php:2198, ../includes/Traits/Controls.php:2572 +#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1066, ../includes/Elements/Business_Reviews.php:2079, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Cta_Box.php:212, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Dual_Color_Header.php:640, ../includes/Elements/Event_Calendar.php:978, ../includes/Elements/Event_Calendar.php:1288, ../includes/Elements/Event_Calendar.php:2302, ../includes/Elements/Event_Calendar.php:2438, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:472, ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Grid.php:702, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:876, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Product_Grid.php:854, ../includes/Elements/Product_Grid.php:1173, ../includes/Elements/Product_Grid.php:2380, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:416, ../includes/Elements/Testimonial.php:327, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:985, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:625, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1150, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:674, ../includes/Traits/Controls.php:1723, ../includes/Traits/Controls.php:1784, ../includes/Traits/Controls.php:2181, ../includes/Traits/Controls.php:2555 msgid "Center" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:678, ../includes/Elements/Adv_Accordion.php:739, ../includes/Elements/Adv_Accordion.php:800, ../includes/Elements/Adv_Accordion.php:868, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:687, ../includes/Elements/Adv_Tabs.php:754, ../includes/Elements/Adv_Tabs.php:836, ../includes/Elements/Business_Reviews.php:1193, ../includes/Elements/Business_Reviews.php:1261, ../includes/Elements/Business_Reviews.php:1368, ../includes/Elements/Business_Reviews.php:1759, ../includes/Elements/Business_Reviews.php:1827, ../includes/Elements/Business_Reviews.php:1896, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1216, ../includes/Elements/Creative_Button.php:283, ../includes/Elements/Creative_Button.php:375, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Cta_Box.php:914, ../includes/Elements/Cta_Box.php:1086, ../includes/Elements/Cta_Box.php:1101, ../includes/Elements/Cta_Box.php:1297, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Cta_Box.php:1366, ../includes/Elements/Cta_Box.php:1381, ../includes/Elements/Data_Table.php:1010, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Event_Calendar.php:1606, ../includes/Elements/Event_Calendar.php:1639, ../includes/Elements/Event_Calendar.php:1774, ../includes/Elements/Event_Calendar.php:1820, ../includes/Elements/Event_Calendar.php:1865, ../includes/Elements/Event_Calendar.php:2550, ../includes/Elements/Event_Calendar.php:2581, ../includes/Elements/Filterable_Gallery.php:1177, ../includes/Elements/Filterable_Gallery.php:1243, ../includes/Elements/Filterable_Gallery.php:2945, ../includes/Elements/Filterable_Gallery.php:3140, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1252, ../includes/Elements/Info_Box.php:1299, ../includes/Elements/Interactive_Circle.php:656, ../includes/Elements/Interactive_Circle.php:716, ../includes/Elements/Interactive_Circle.php:784, ../includes/Elements/Interactive_Circle.php:869, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Pricing_Table.php:2051, ../includes/Elements/Product_Grid.php:2433, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:475, ../includes/Elements/Tooltip.php:649, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:860, ../includes/Elements/WpForms.php:916, ../includes/Elements/WpForms.php:1229, ../includes/Elements/WpForms.php:1338, ../includes/Elements/WpForms.php:1383, ../includes/Extensions/Table_of_Content.php:719, ../includes/Extensions/Table_of_Content.php:1038, ../includes/Extensions/Table_of_Content.php:1061, ../includes/Extensions/Table_of_Content.php:1087, ../includes/Traits/Controls.php:1836, ../includes/Traits/Controls.php:1949, ../includes/Traits/Controls.php:1892, ../includes/Traits/Controls.php:2080, ../includes/Traits/Controls.php:2142, ../includes/Traits/Controls.php:2525 +#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:678, ../includes/Elements/Adv_Accordion.php:739, ../includes/Elements/Adv_Accordion.php:800, ../includes/Elements/Adv_Accordion.php:868, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:687, ../includes/Elements/Adv_Tabs.php:754, ../includes/Elements/Adv_Tabs.php:836, ../includes/Elements/Business_Reviews.php:1193, ../includes/Elements/Business_Reviews.php:1261, ../includes/Elements/Business_Reviews.php:1368, ../includes/Elements/Business_Reviews.php:1759, ../includes/Elements/Business_Reviews.php:1827, ../includes/Elements/Business_Reviews.php:1896, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1216, ../includes/Elements/Creative_Button.php:283, ../includes/Elements/Creative_Button.php:375, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Cta_Box.php:914, ../includes/Elements/Cta_Box.php:1086, ../includes/Elements/Cta_Box.php:1101, ../includes/Elements/Cta_Box.php:1297, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Cta_Box.php:1366, ../includes/Elements/Cta_Box.php:1381, ../includes/Elements/Data_Table.php:1010, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Event_Calendar.php:1606, ../includes/Elements/Event_Calendar.php:1639, ../includes/Elements/Event_Calendar.php:1774, ../includes/Elements/Event_Calendar.php:1820, ../includes/Elements/Event_Calendar.php:1865, ../includes/Elements/Event_Calendar.php:2550, ../includes/Elements/Event_Calendar.php:2581, ../includes/Elements/Filterable_Gallery.php:1177, ../includes/Elements/Filterable_Gallery.php:1243, ../includes/Elements/Filterable_Gallery.php:2945, ../includes/Elements/Filterable_Gallery.php:3140, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1252, ../includes/Elements/Info_Box.php:1299, ../includes/Elements/Interactive_Circle.php:656, ../includes/Elements/Interactive_Circle.php:716, ../includes/Elements/Interactive_Circle.php:784, ../includes/Elements/Interactive_Circle.php:869, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Pricing_Table.php:2051, ../includes/Elements/Product_Grid.php:2433, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:475, ../includes/Elements/Tooltip.php:649, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:860, ../includes/Elements/WpForms.php:916, ../includes/Elements/WpForms.php:1229, ../includes/Elements/WpForms.php:1338, ../includes/Elements/WpForms.php:1383, ../includes/Extensions/Table_of_Content.php:719, ../includes/Extensions/Table_of_Content.php:1038, ../includes/Extensions/Table_of_Content.php:1061, ../includes/Extensions/Table_of_Content.php:1087, ../includes/Traits/Controls.php:1819, ../includes/Traits/Controls.php:1932, ../includes/Traits/Controls.php:1875, ../includes/Traits/Controls.php:2063, ../includes/Traits/Controls.php:2125, ../includes/Traits/Controls.php:2508 msgid "Text Color" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1019, ../includes/Elements/Adv_Accordion.php:1066, ../includes/Elements/Adv_Accordion.php:1113, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:817, ../includes/Elements/Business_Reviews.php:861, ../includes/Elements/Business_Reviews.php:894, ../includes/Elements/Business_Reviews.php:992, ../includes/Elements/Business_Reviews.php:1026, ../includes/Elements/Business_Reviews.php:1477, ../includes/Elements/Business_Reviews.php:1510, ../includes/Elements/Business_Reviews.php:1605, ../includes/Elements/Business_Reviews.php:1640, ../includes/Elements/Business_Reviews.php:2247, ../includes/Elements/Business_Reviews.php:2303, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:838, ../includes/Elements/Countdown.php:850, ../includes/Elements/Countdown.php:910, ../includes/Elements/Countdown.php:922, ../includes/Elements/Countdown.php:982, ../includes/Elements/Countdown.php:994, ../includes/Elements/Countdown.php:1054, ../includes/Elements/Countdown.php:1066, ../includes/Elements/Creative_Button.php:296, ../includes/Elements/Creative_Button.php:389, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:567, ../includes/Elements/Cta_Box.php:606, ../includes/Elements/Cta_Box.php:928, ../includes/Elements/Cta_Box.php:944, ../includes/Elements/Cta_Box.php:1115, ../includes/Elements/Cta_Box.php:1134, ../includes/Elements/Data_Table.php:660, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1228, ../includes/Elements/Dual_Color_Header.php:317, ../includes/Elements/Event_Calendar.php:2561, ../includes/Elements/Filterable_Gallery.php:1052, ../includes/Elements/Filterable_Gallery.php:1189, ../includes/Elements/Filterable_Gallery.php:1255, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1603, ../includes/Elements/Filterable_Gallery.php:1641, ../includes/Elements/Filterable_Gallery.php:1809, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:2027, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2929, ../includes/Elements/Filterable_Gallery.php:3124, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:326, ../includes/Elements/Info_Box.php:559, ../includes/Elements/Info_Box.php:800, ../includes/Elements/Info_Box.php:879, ../includes/Elements/Info_Box.php:1050, ../includes/Elements/Info_Box.php:1113, ../includes/Elements/Info_Box.php:1265, ../includes/Elements/Info_Box.php:1312, ../includes/Elements/Interactive_Circle.php:645, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Interactive_Circle.php:770, ../includes/Elements/Interactive_Circle.php:852, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:954, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:791, ../includes/Elements/Pricing_Table.php:953, ../includes/Elements/Pricing_Table.php:1484, ../includes/Elements/Pricing_Table.php:1561, ../includes/Elements/Pricing_Table.php:1727, ../includes/Elements/Pricing_Table.php:1994, ../includes/Elements/Pricing_Table.php:2064, ../includes/Elements/Product_Grid.php:2018, ../includes/Elements/Product_Grid.php:2126, ../includes/Elements/Product_Grid.php:2234, ../includes/Elements/Product_Grid.php:2446, ../includes/Elements/Product_Grid.php:2487, ../includes/Elements/Product_Grid.php:2534, ../includes/Elements/Product_Grid.php:2784, ../includes/Elements/Product_Grid.php:2827, ../includes/Elements/Product_Grid.php:2888, ../includes/Elements/Product_Grid.php:2939, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:287, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Tooltip.php:638, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:873, ../includes/Elements/Woo_Checkout.php:988, ../includes/Elements/Woo_Checkout.php:1110, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:1683, ../includes/Elements/Woo_Checkout.php:2014, ../includes/Elements/Woo_Checkout.php:2054, ../includes/Elements/Woo_Checkout.php:2644, ../includes/Elements/Woo_Checkout.php:2774, ../includes/Elements/Woo_Checkout.php:2884, ../includes/Elements/Woo_Checkout.php:2924, ../includes/Elements/Woo_Product_Carousel.php:1007, ../includes/Elements/Woo_Product_Carousel.php:1518, ../includes/Elements/Woo_Product_Carousel.php:1600, ../includes/Elements/Woo_Product_Carousel.php:1819, ../includes/Elements/Woo_Product_Carousel.php:1862, ../includes/Elements/Woo_Product_Carousel.php:1924, ../includes/Elements/Woo_Product_Carousel.php:1976, ../includes/Elements/Woo_Product_Carousel.php:2780, ../includes/Elements/Woo_Product_Carousel.php:2836, ../includes/Elements/Woo_Product_Gallery.php:1766, ../includes/Elements/Woo_Product_Gallery.php:1816, ../includes/Elements/Woo_Product_Gallery.php:2015, ../includes/Elements/Woo_Product_Gallery.php:2056, ../includes/Elements/Woo_Product_Gallery.php:2099, ../includes/Elements/Woo_Product_Gallery.php:2160, ../includes/Elements/Woo_Product_Gallery.php:2211, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Elements/Woo_Product_List.php:1289, ../includes/Elements/Woo_Product_List.php:2912, ../includes/Elements/Woo_Product_List.php:2964, ../includes/Elements/Woo_Product_List.php:2979, ../includes/Elements/Woo_Product_List.php:2994, ../includes/Elements/Woo_Product_List.php:3047, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1217, ../includes/Elements/WpForms.php:1326, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:403, ../includes/Extensions/Table_of_Content.php:706, ../includes/Extensions/Table_of_Content.php:854, ../includes/Extensions/Table_of_Content.php:918, ../includes/Traits/Controls.php:2092, ../includes/Traits/Controls.php:2154, ../includes/Traits/Controls.php:2535, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 +#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1019, ../includes/Elements/Adv_Accordion.php:1066, ../includes/Elements/Adv_Accordion.php:1113, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:817, ../includes/Elements/Business_Reviews.php:861, ../includes/Elements/Business_Reviews.php:894, ../includes/Elements/Business_Reviews.php:992, ../includes/Elements/Business_Reviews.php:1026, ../includes/Elements/Business_Reviews.php:1477, ../includes/Elements/Business_Reviews.php:1510, ../includes/Elements/Business_Reviews.php:1605, ../includes/Elements/Business_Reviews.php:1640, ../includes/Elements/Business_Reviews.php:2247, ../includes/Elements/Business_Reviews.php:2303, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:838, ../includes/Elements/Countdown.php:850, ../includes/Elements/Countdown.php:910, ../includes/Elements/Countdown.php:922, ../includes/Elements/Countdown.php:982, ../includes/Elements/Countdown.php:994, ../includes/Elements/Countdown.php:1054, ../includes/Elements/Countdown.php:1066, ../includes/Elements/Creative_Button.php:296, ../includes/Elements/Creative_Button.php:389, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:567, ../includes/Elements/Cta_Box.php:606, ../includes/Elements/Cta_Box.php:928, ../includes/Elements/Cta_Box.php:944, ../includes/Elements/Cta_Box.php:1115, ../includes/Elements/Cta_Box.php:1134, ../includes/Elements/Data_Table.php:660, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1228, ../includes/Elements/Dual_Color_Header.php:317, ../includes/Elements/Event_Calendar.php:2561, ../includes/Elements/Filterable_Gallery.php:1052, ../includes/Elements/Filterable_Gallery.php:1189, ../includes/Elements/Filterable_Gallery.php:1255, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1603, ../includes/Elements/Filterable_Gallery.php:1641, ../includes/Elements/Filterable_Gallery.php:1809, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:2027, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2929, ../includes/Elements/Filterable_Gallery.php:3124, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:326, ../includes/Elements/Info_Box.php:559, ../includes/Elements/Info_Box.php:800, ../includes/Elements/Info_Box.php:879, ../includes/Elements/Info_Box.php:1050, ../includes/Elements/Info_Box.php:1113, ../includes/Elements/Info_Box.php:1265, ../includes/Elements/Info_Box.php:1312, ../includes/Elements/Interactive_Circle.php:645, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Interactive_Circle.php:770, ../includes/Elements/Interactive_Circle.php:852, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:954, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:791, ../includes/Elements/Pricing_Table.php:953, ../includes/Elements/Pricing_Table.php:1484, ../includes/Elements/Pricing_Table.php:1561, ../includes/Elements/Pricing_Table.php:1727, ../includes/Elements/Pricing_Table.php:1994, ../includes/Elements/Pricing_Table.php:2064, ../includes/Elements/Product_Grid.php:2018, ../includes/Elements/Product_Grid.php:2126, ../includes/Elements/Product_Grid.php:2234, ../includes/Elements/Product_Grid.php:2446, ../includes/Elements/Product_Grid.php:2487, ../includes/Elements/Product_Grid.php:2534, ../includes/Elements/Product_Grid.php:2784, ../includes/Elements/Product_Grid.php:2827, ../includes/Elements/Product_Grid.php:2888, ../includes/Elements/Product_Grid.php:2939, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:287, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Tooltip.php:638, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:873, ../includes/Elements/Woo_Checkout.php:988, ../includes/Elements/Woo_Checkout.php:1110, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:1683, ../includes/Elements/Woo_Checkout.php:2014, ../includes/Elements/Woo_Checkout.php:2054, ../includes/Elements/Woo_Checkout.php:2644, ../includes/Elements/Woo_Checkout.php:2774, ../includes/Elements/Woo_Checkout.php:2884, ../includes/Elements/Woo_Checkout.php:2924, ../includes/Elements/Woo_Product_Carousel.php:1007, ../includes/Elements/Woo_Product_Carousel.php:1518, ../includes/Elements/Woo_Product_Carousel.php:1600, ../includes/Elements/Woo_Product_Carousel.php:1819, ../includes/Elements/Woo_Product_Carousel.php:1862, ../includes/Elements/Woo_Product_Carousel.php:1924, ../includes/Elements/Woo_Product_Carousel.php:1976, ../includes/Elements/Woo_Product_Carousel.php:2780, ../includes/Elements/Woo_Product_Carousel.php:2836, ../includes/Elements/Woo_Product_Gallery.php:1766, ../includes/Elements/Woo_Product_Gallery.php:1816, ../includes/Elements/Woo_Product_Gallery.php:2015, ../includes/Elements/Woo_Product_Gallery.php:2056, ../includes/Elements/Woo_Product_Gallery.php:2099, ../includes/Elements/Woo_Product_Gallery.php:2160, ../includes/Elements/Woo_Product_Gallery.php:2211, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Elements/Woo_Product_List.php:1289, ../includes/Elements/Woo_Product_List.php:2912, ../includes/Elements/Woo_Product_List.php:2964, ../includes/Elements/Woo_Product_List.php:2979, ../includes/Elements/Woo_Product_List.php:2994, ../includes/Elements/Woo_Product_List.php:3047, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1217, ../includes/Elements/WpForms.php:1326, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:403, ../includes/Extensions/Table_of_Content.php:706, ../includes/Extensions/Table_of_Content.php:854, ../includes/Extensions/Table_of_Content.php:918, ../includes/Traits/Controls.php:2075, ../includes/Traits/Controls.php:2137, ../includes/Traits/Controls.php:2518, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 msgid "Background Color" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "Cell Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:643, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Tabs.php:426, ../includes/Elements/Adv_Tabs.php:575, ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:823, ../includes/Elements/Business_Reviews.php:953, ../includes/Elements/Business_Reviews.php:1155, ../includes/Elements/Business_Reviews.php:1223, ../includes/Elements/Business_Reviews.php:1330, ../includes/Elements/Business_Reviews.php:1398, ../includes/Elements/Business_Reviews.php:1440, ../includes/Elements/Business_Reviews.php:1568, ../includes/Elements/Business_Reviews.php:1698, ../includes/Elements/Business_Reviews.php:1789, ../includes/Elements/Business_Reviews.php:1858, ../includes/Elements/Business_Reviews.php:1926, ../includes/Elements/Business_Reviews.php:2056, ../includes/Elements/Business_Reviews.php:2493, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:707, ../includes/Elements/Countdown.php:1245, ../includes/Elements/Cta_Box.php:620, ../includes/Elements/Cta_Box.php:833, ../includes/Elements/Cta_Box.php:1261, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:329, ../includes/Elements/Event_Calendar.php:1429, ../includes/Elements/Event_Calendar.php:1537, ../includes/Elements/Event_Calendar.php:1665, ../includes/Elements/Event_Calendar.php:1904, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:496, ../includes/Elements/Feature_List.php:682, ../includes/Elements/Filterable_Gallery.php:1064, ../includes/Elements/Filterable_Gallery.php:1141, ../includes/Elements/Filterable_Gallery.php:1323, ../includes/Elements/Filterable_Gallery.php:1419, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2819, ../includes/Elements/Filterable_Gallery.php:3048, ../includes/Elements/Flip_Box.php:1027, ../includes/Elements/Flip_Box.php:1141, ../includes/Elements/Flip_Box.php:1377, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:338, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:571, ../includes/Elements/Interactive_Circle.php:502, ../includes/Elements/Interactive_Circle.php:927, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:558, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1603, ../includes/Elements/Pricing_Table.php:1911, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1213, ../includes/Elements/Product_Grid.php:1628, ../includes/Elements/Progress_Bar.php:830, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:456, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Testimonial.php:430, ../includes/Elements/Tooltip.php:362, ../includes/Elements/Tooltip.php:616, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:884, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1546, ../includes/Elements/Woo_Checkout.php:1744, ../includes/Elements/Woo_Checkout.php:1915, ../includes/Elements/Woo_Checkout.php:1943, ../includes/Elements/Woo_Checkout.php:2115, ../includes/Elements/Woo_Checkout.php:2330, ../includes/Elements/Woo_Checkout.php:2666, ../includes/Elements/Woo_Checkout.php:2997, ../includes/Elements/Woo_Product_Carousel.php:1146, ../includes/Elements/Woo_Product_Carousel.php:2393, ../includes/Elements/Woo_Product_Gallery.php:659, ../includes/Elements/Woo_Product_Gallery.php:763, ../includes/Elements/Woo_Product_Gallery.php:1042, ../includes/Elements/Woo_Product_Gallery.php:1298, ../includes/Elements/Woo_Product_Gallery.php:1360, ../includes/Elements/Woo_Product_List.php:1148, ../includes/Elements/Woo_Product_List.php:1250, ../includes/Elements/Woo_Product_List.php:1365, ../includes/Elements/Woo_Product_List.php:1451, ../includes/Elements/Woo_Product_List.php:1508, ../includes/Elements/Woo_Product_List.php:1556, ../includes/Elements/Woo_Product_List.php:1595, ../includes/Elements/Woo_Product_List.php:1631, ../includes/Elements/Woo_Product_List.php:1736, ../includes/Elements/Woo_Product_List.php:1801, ../includes/Elements/Woo_Product_List.php:1871, ../includes/Elements/WpForms.php:759, ../includes/Elements/WpForms.php:1264, ../includes/Extensions/Table_of_Content.php:743, ../includes/Extensions/Table_of_Content.php:931, ../includes/Traits/Controls.php:1999, ../includes/Traits/Controls.php:2044, ../includes/Traits/Controls.php:2545, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 +#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:643, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Tabs.php:426, ../includes/Elements/Adv_Tabs.php:575, ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:823, ../includes/Elements/Business_Reviews.php:953, ../includes/Elements/Business_Reviews.php:1155, ../includes/Elements/Business_Reviews.php:1223, ../includes/Elements/Business_Reviews.php:1330, ../includes/Elements/Business_Reviews.php:1398, ../includes/Elements/Business_Reviews.php:1440, ../includes/Elements/Business_Reviews.php:1568, ../includes/Elements/Business_Reviews.php:1698, ../includes/Elements/Business_Reviews.php:1789, ../includes/Elements/Business_Reviews.php:1858, ../includes/Elements/Business_Reviews.php:1926, ../includes/Elements/Business_Reviews.php:2056, ../includes/Elements/Business_Reviews.php:2493, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:707, ../includes/Elements/Countdown.php:1245, ../includes/Elements/Cta_Box.php:620, ../includes/Elements/Cta_Box.php:833, ../includes/Elements/Cta_Box.php:1261, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:329, ../includes/Elements/Event_Calendar.php:1429, ../includes/Elements/Event_Calendar.php:1537, ../includes/Elements/Event_Calendar.php:1665, ../includes/Elements/Event_Calendar.php:1904, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:496, ../includes/Elements/Feature_List.php:682, ../includes/Elements/Filterable_Gallery.php:1064, ../includes/Elements/Filterable_Gallery.php:1141, ../includes/Elements/Filterable_Gallery.php:1323, ../includes/Elements/Filterable_Gallery.php:1419, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2819, ../includes/Elements/Filterable_Gallery.php:3048, ../includes/Elements/Flip_Box.php:1027, ../includes/Elements/Flip_Box.php:1141, ../includes/Elements/Flip_Box.php:1377, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:338, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:571, ../includes/Elements/Interactive_Circle.php:502, ../includes/Elements/Interactive_Circle.php:927, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:558, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1603, ../includes/Elements/Pricing_Table.php:1911, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1213, ../includes/Elements/Product_Grid.php:1628, ../includes/Elements/Progress_Bar.php:830, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:456, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Testimonial.php:430, ../includes/Elements/Tooltip.php:362, ../includes/Elements/Tooltip.php:616, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:884, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1546, ../includes/Elements/Woo_Checkout.php:1744, ../includes/Elements/Woo_Checkout.php:1915, ../includes/Elements/Woo_Checkout.php:1943, ../includes/Elements/Woo_Checkout.php:2115, ../includes/Elements/Woo_Checkout.php:2330, ../includes/Elements/Woo_Checkout.php:2666, ../includes/Elements/Woo_Checkout.php:2997, ../includes/Elements/Woo_Product_Carousel.php:1146, ../includes/Elements/Woo_Product_Carousel.php:2393, ../includes/Elements/Woo_Product_Gallery.php:659, ../includes/Elements/Woo_Product_Gallery.php:763, ../includes/Elements/Woo_Product_Gallery.php:1042, ../includes/Elements/Woo_Product_Gallery.php:1298, ../includes/Elements/Woo_Product_Gallery.php:1360, ../includes/Elements/Woo_Product_List.php:1148, ../includes/Elements/Woo_Product_List.php:1250, ../includes/Elements/Woo_Product_List.php:1365, ../includes/Elements/Woo_Product_List.php:1451, ../includes/Elements/Woo_Product_List.php:1508, ../includes/Elements/Woo_Product_List.php:1556, ../includes/Elements/Woo_Product_List.php:1595, ../includes/Elements/Woo_Product_List.php:1631, ../includes/Elements/Woo_Product_List.php:1736, ../includes/Elements/Woo_Product_List.php:1801, ../includes/Elements/Woo_Product_List.php:1871, ../includes/Elements/WpForms.php:759, ../includes/Elements/WpForms.php:1264, ../includes/Extensions/Table_of_Content.php:743, ../includes/Extensions/Table_of_Content.php:931, ../includes/Traits/Controls.php:1982, ../includes/Traits/Controls.php:2027, ../includes/Traits/Controls.php:2528, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 msgid "Padding" msgstr "" @@ -946,7 +946,7 @@ msgstr "" msgid "Odd Row" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1969, ../includes/Elements/Business_Reviews.php:2160, ../includes/Elements/Dual_Color_Header.php:781, ../includes/Elements/Dual_Color_Header.php:861, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:310, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:427, ../includes/Elements/Progress_Bar.php:453, ../includes/Elements/Progress_Bar.php:508, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Sticky_Video.php:505, ../includes/Elements/SVG_Draw.php:161, ../includes/Elements/Team_Member.php:327, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1452, ../includes/Elements/Woo_Product_Carousel.php:2285, ../includes/Elements/Woo_Product_Carousel.php:2485, ../includes/Elements/Woo_Product_Carousel.php:2573, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 +#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1969, ../includes/Elements/Business_Reviews.php:2160, ../includes/Elements/Dual_Color_Header.php:756, ../includes/Elements/Dual_Color_Header.php:836, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:310, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:427, ../includes/Elements/Progress_Bar.php:453, ../includes/Elements/Progress_Bar.php:508, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Sticky_Video.php:505, ../includes/Elements/SVG_Draw.php:161, ../includes/Elements/Team_Member.php:327, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1452, ../includes/Elements/Woo_Product_Carousel.php:2285, ../includes/Elements/Woo_Product_Carousel.php:2485, ../includes/Elements/Woo_Product_Carousel.php:2573, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 msgid "Height" msgstr "" @@ -954,23 +954,23 @@ msgstr "" msgid "Margin Bottom" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1058, ../includes/Elements/Business_Reviews.php:2071, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:568, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:657, ../includes/Elements/Event_Calendar.php:970, ../includes/Elements/Event_Calendar.php:1280, ../includes/Elements/Event_Calendar.php:2294, ../includes/Elements/Event_Calendar.php:2430, ../includes/Elements/Fancy_Text.php:185, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:2771, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:464, ../includes/Elements/Post_Grid.php:791, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:484, ../includes/Elements/Product_Grid.php:846, ../includes/Elements/Product_Grid.php:1165, ../includes/Elements/Product_Grid.php:1859, ../includes/Elements/Product_Grid.php:2372, ../includes/Elements/Progress_Bar.php:360, ../includes/Elements/Progress_Bar.php:629, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:184, ../includes/Elements/Tooltip.php:210, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:922, ../includes/Elements/Woo_Product_Carousel.php:977, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1595, ../includes/Elements/Woo_Product_List.php:562, ../includes/Elements/Woo_Product_List.php:715, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1142, ../includes/Traits/Controls.php:1732, ../includes/Traits/Controls.php:1793, ../includes/Traits/Controls.php:2564 +#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1058, ../includes/Elements/Business_Reviews.php:2071, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:568, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:632, ../includes/Elements/Event_Calendar.php:970, ../includes/Elements/Event_Calendar.php:1280, ../includes/Elements/Event_Calendar.php:2294, ../includes/Elements/Event_Calendar.php:2430, ../includes/Elements/Fancy_Text.php:185, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:2771, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:464, ../includes/Elements/Post_Grid.php:791, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:484, ../includes/Elements/Product_Grid.php:846, ../includes/Elements/Product_Grid.php:1165, ../includes/Elements/Product_Grid.php:1859, ../includes/Elements/Product_Grid.php:2372, ../includes/Elements/Progress_Bar.php:360, ../includes/Elements/Progress_Bar.php:629, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:184, ../includes/Elements/Tooltip.php:210, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:922, ../includes/Elements/Woo_Product_Carousel.php:977, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1595, ../includes/Elements/Woo_Product_List.php:562, ../includes/Elements/Woo_Product_List.php:715, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1142, ../includes/Traits/Controls.php:1715, ../includes/Traits/Controls.php:1776, ../includes/Traits/Controls.php:2547 msgid "Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:897, ../includes/Elements/Adv_Tabs.php:437, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:865, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:811, ../includes/Elements/Business_Reviews.php:940, ../includes/Elements/Business_Reviews.php:1140, ../includes/Elements/Business_Reviews.php:1208, ../includes/Elements/Business_Reviews.php:1315, ../includes/Elements/Business_Reviews.php:1383, ../includes/Elements/Business_Reviews.php:1428, ../includes/Elements/Business_Reviews.php:1556, ../includes/Elements/Business_Reviews.php:1683, ../includes/Elements/Business_Reviews.php:1774, ../includes/Elements/Business_Reviews.php:1843, ../includes/Elements/Business_Reviews.php:1911, ../includes/Elements/Business_Reviews.php:2041, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1195, ../includes/Elements/Cta_Box.php:632, ../includes/Elements/Cta_Box.php:845, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Dual_Color_Header.php:341, ../includes/Elements/Dual_Color_Header.php:709, ../includes/Elements/Event_Calendar.php:1441, ../includes/Elements/Event_Calendar.php:1478, ../includes/Elements/Event_Calendar.php:1918, ../includes/Elements/Fancy_Text.php:508, ../includes/Elements/Filterable_Gallery.php:1076, ../includes/Elements/Filterable_Gallery.php:1153, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2831, ../includes/Elements/Filterable_Gallery.php:3089, ../includes/Elements/Flip_Box.php:1365, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:350, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:704, ../includes/Elements/Info_Box.php:766, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1393, ../includes/Elements/Interactive_Circle.php:513, ../includes/Elements/Interactive_Circle.php:938, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:520, ../includes/Elements/Post_Grid.php:535, ../includes/Elements/Post_Grid.php:661, ../includes/Elements/Post_Grid.php:751, ../includes/Elements/Post_Grid.php:829, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Pricing_Table.php:1143, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1923, ../includes/Elements/SVG_Draw.php:468, ../includes/Elements/Team_Member.php:507, ../includes/Elements/Testimonial.php:418, ../includes/Elements/Testimonial.php:516, ../includes/Elements/Testimonial.php:557, ../includes/Elements/Testimonial.php:598, ../includes/Elements/Testimonial.php:659, ../includes/Elements/Tooltip.php:373, ../includes/Elements/Tooltip.php:627, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1565, ../includes/Elements/Woo_Checkout.php:1962, ../includes/Elements/Woo_Product_Carousel.php:1036, ../includes/Elements/Woo_Product_Gallery.php:1286, ../includes/Elements/Woo_Product_Gallery.php:1348, ../includes/Elements/Woo_Product_List.php:1136, ../includes/Elements/Woo_Product_List.php:1220, ../includes/Elements/Woo_Product_List.php:1493, ../includes/Elements/Woo_Product_List.php:1541, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/Woo_Product_List.php:1619, ../includes/Elements/Woo_Product_List.php:1724, ../includes/Elements/Woo_Product_List.php:1789, ../includes/Elements/Woo_Product_List.php:1858, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:2011, ../includes/Traits/Controls.php:2056, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 +#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:897, ../includes/Elements/Adv_Tabs.php:437, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:865, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:811, ../includes/Elements/Business_Reviews.php:940, ../includes/Elements/Business_Reviews.php:1140, ../includes/Elements/Business_Reviews.php:1208, ../includes/Elements/Business_Reviews.php:1315, ../includes/Elements/Business_Reviews.php:1383, ../includes/Elements/Business_Reviews.php:1428, ../includes/Elements/Business_Reviews.php:1556, ../includes/Elements/Business_Reviews.php:1683, ../includes/Elements/Business_Reviews.php:1774, ../includes/Elements/Business_Reviews.php:1843, ../includes/Elements/Business_Reviews.php:1911, ../includes/Elements/Business_Reviews.php:2041, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1195, ../includes/Elements/Cta_Box.php:632, ../includes/Elements/Cta_Box.php:845, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Dual_Color_Header.php:341, ../includes/Elements/Dual_Color_Header.php:684, ../includes/Elements/Event_Calendar.php:1441, ../includes/Elements/Event_Calendar.php:1478, ../includes/Elements/Event_Calendar.php:1918, ../includes/Elements/Fancy_Text.php:508, ../includes/Elements/Filterable_Gallery.php:1076, ../includes/Elements/Filterable_Gallery.php:1153, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2831, ../includes/Elements/Filterable_Gallery.php:3089, ../includes/Elements/Flip_Box.php:1365, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:350, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:704, ../includes/Elements/Info_Box.php:766, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1393, ../includes/Elements/Interactive_Circle.php:513, ../includes/Elements/Interactive_Circle.php:938, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:520, ../includes/Elements/Post_Grid.php:535, ../includes/Elements/Post_Grid.php:661, ../includes/Elements/Post_Grid.php:751, ../includes/Elements/Post_Grid.php:829, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Pricing_Table.php:1143, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1923, ../includes/Elements/SVG_Draw.php:468, ../includes/Elements/Team_Member.php:507, ../includes/Elements/Testimonial.php:418, ../includes/Elements/Testimonial.php:516, ../includes/Elements/Testimonial.php:557, ../includes/Elements/Testimonial.php:598, ../includes/Elements/Testimonial.php:659, ../includes/Elements/Tooltip.php:373, ../includes/Elements/Tooltip.php:627, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1565, ../includes/Elements/Woo_Checkout.php:1962, ../includes/Elements/Woo_Product_Carousel.php:1036, ../includes/Elements/Woo_Product_Gallery.php:1286, ../includes/Elements/Woo_Product_Gallery.php:1348, ../includes/Elements/Woo_Product_List.php:1136, ../includes/Elements/Woo_Product_List.php:1220, ../includes/Elements/Woo_Product_List.php:1493, ../includes/Elements/Woo_Product_List.php:1541, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/Woo_Product_List.php:1619, ../includes/Elements/Woo_Product_List.php:1724, ../includes/Elements/Woo_Product_List.php:1789, ../includes/Elements/Woo_Product_List.php:1858, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:1994, ../includes/Traits/Controls.php:2039, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 msgid "Margin" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:665, ../includes/Elements/Adv_Accordion.php:997, ../includes/Elements/Adv_Tabs.php:597, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:855, ../includes/Elements/Business_Reviews.php:986, ../includes/Elements/Business_Reviews.php:1471, ../includes/Elements/Business_Reviews.php:1599, ../includes/Elements/Business_Reviews.php:2240, ../includes/Elements/Business_Reviews.php:2402, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:266, ../includes/Elements/Cta_Box.php:894, ../includes/Elements/Cta_Box.php:1292, ../includes/Elements/Data_Table.php:640, ../includes/Elements/Data_Table.php:833, ../includes/Elements/Data_Table.php:1005, ../includes/Elements/Data_Table.php:1106, ../includes/Elements/Event_Calendar.php:1768, ../includes/Elements/Event_Calendar.php:2068, ../includes/Elements/Filterable_Gallery.php:1172, ../includes/Elements/Filterable_Gallery.php:2020, ../includes/Elements/Filterable_Gallery.php:2918, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:552, ../includes/Elements/Info_Box.php:780, ../includes/Elements/Info_Box.php:1012, ../includes/Elements/Info_Box.php:1246, ../includes/Elements/Info_Box.php:1359, ../includes/Elements/Interactive_Circle.php:641, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:1669, ../includes/Elements/Product_Grid.php:2108, ../includes/Elements/Product_Grid.php:2428, ../includes/Elements/Product_Grid.php:2871, ../includes/Elements/Team_Member.php:749, ../includes/Elements/Tooltip.php:416, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1158, ../includes/Elements/Woo_Checkout.php:1201, ../includes/Elements/Woo_Checkout.php:1344, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:2007, ../includes/Elements/Woo_Checkout.php:2467, ../includes/Elements/Woo_Checkout.php:2723, ../includes/Elements/Woo_Checkout.php:2877, ../includes/Elements/Woo_Product_Carousel.php:1048, ../includes/Elements/Woo_Product_Carousel.php:1502, ../includes/Elements/Woo_Product_Carousel.php:1907, ../includes/Elements/Woo_Product_Carousel.php:2351, ../includes/Elements/Woo_Product_Carousel.php:2773, ../includes/Elements/Woo_Product_Gallery.php:673, ../includes/Elements/Woo_Product_Gallery.php:1079, ../includes/Elements/Woo_Product_Gallery.php:1383, ../includes/Elements/Woo_Product_Gallery.php:1749, ../includes/Elements/Woo_Product_Gallery.php:2143, ../includes/Elements/Woo_Product_List.php:2229, ../includes/Elements/Woo_Product_List.php:2556, ../includes/Elements/Woo_Product_List.php:2677, ../includes/Elements/Woo_Product_List.php:2788, ../includes/Elements/Woo_Product_List.php:2947, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:983, ../includes/Elements/WpForms.php:1210, ../includes/Extensions/Table_of_Content.php:1031, ../includes/Traits/Controls.php:1829, ../includes/Traits/Controls.php:2075, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 +#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:665, ../includes/Elements/Adv_Accordion.php:997, ../includes/Elements/Adv_Tabs.php:597, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:855, ../includes/Elements/Business_Reviews.php:986, ../includes/Elements/Business_Reviews.php:1471, ../includes/Elements/Business_Reviews.php:1599, ../includes/Elements/Business_Reviews.php:2240, ../includes/Elements/Business_Reviews.php:2402, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:266, ../includes/Elements/Cta_Box.php:894, ../includes/Elements/Cta_Box.php:1292, ../includes/Elements/Data_Table.php:640, ../includes/Elements/Data_Table.php:833, ../includes/Elements/Data_Table.php:1005, ../includes/Elements/Data_Table.php:1106, ../includes/Elements/Event_Calendar.php:1768, ../includes/Elements/Event_Calendar.php:2068, ../includes/Elements/Filterable_Gallery.php:1172, ../includes/Elements/Filterable_Gallery.php:2020, ../includes/Elements/Filterable_Gallery.php:2918, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:552, ../includes/Elements/Info_Box.php:780, ../includes/Elements/Info_Box.php:1012, ../includes/Elements/Info_Box.php:1246, ../includes/Elements/Info_Box.php:1359, ../includes/Elements/Interactive_Circle.php:641, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:1669, ../includes/Elements/Product_Grid.php:2108, ../includes/Elements/Product_Grid.php:2428, ../includes/Elements/Product_Grid.php:2871, ../includes/Elements/Team_Member.php:749, ../includes/Elements/Tooltip.php:416, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1158, ../includes/Elements/Woo_Checkout.php:1201, ../includes/Elements/Woo_Checkout.php:1344, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:2007, ../includes/Elements/Woo_Checkout.php:2467, ../includes/Elements/Woo_Checkout.php:2723, ../includes/Elements/Woo_Checkout.php:2877, ../includes/Elements/Woo_Product_Carousel.php:1048, ../includes/Elements/Woo_Product_Carousel.php:1502, ../includes/Elements/Woo_Product_Carousel.php:1907, ../includes/Elements/Woo_Product_Carousel.php:2351, ../includes/Elements/Woo_Product_Carousel.php:2773, ../includes/Elements/Woo_Product_Gallery.php:673, ../includes/Elements/Woo_Product_Gallery.php:1079, ../includes/Elements/Woo_Product_Gallery.php:1383, ../includes/Elements/Woo_Product_Gallery.php:1749, ../includes/Elements/Woo_Product_Gallery.php:2143, ../includes/Elements/Woo_Product_List.php:2229, ../includes/Elements/Woo_Product_List.php:2556, ../includes/Elements/Woo_Product_List.php:2677, ../includes/Elements/Woo_Product_List.php:2788, ../includes/Elements/Woo_Product_List.php:2947, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:983, ../includes/Elements/WpForms.php:1210, ../includes/Extensions/Table_of_Content.php:1031, ../includes/Traits/Controls.php:1812, ../includes/Traits/Controls.php:2058, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 msgid "Normal" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Accordion.php:1045, ../includes/Elements/Adv_Tabs.php:664, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:888, ../includes/Elements/Business_Reviews.php:1020, ../includes/Elements/Business_Reviews.php:1504, ../includes/Elements/Business_Reviews.php:1634, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:358, ../includes/Elements/Cta_Box.php:1081, ../includes/Elements/Cta_Box.php:1361, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:924, ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Data_Table.php:1124, ../includes/Elements/Event_Calendar.php:1814, ../includes/Elements/Event_Calendar.php:2135, ../includes/Elements/Filterable_Gallery.php:2158, ../includes/Elements/Filterable_Gallery.php:3113, ../includes/Elements/Flip_Box.php:1466, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:613, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Info_Box.php:1293, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Interactive_Circle.php:386, ../includes/Elements/Interactive_Circle.php:698, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:448, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1067, ../includes/Elements/Product_Grid.php:1749, ../includes/Elements/Product_Grid.php:2217, ../includes/Elements/Product_Grid.php:2469, ../includes/Elements/Product_Grid.php:2922, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:827, ../includes/Elements/Tooltip.php:460, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1174, ../includes/Elements/Woo_Checkout.php:1218, ../includes/Elements/Woo_Checkout.php:1360, ../includes/Elements/Woo_Checkout.php:1676, ../includes/Elements/Woo_Checkout.php:2047, ../includes/Elements/Woo_Checkout.php:2483, ../includes/Elements/Woo_Checkout.php:2917, ../includes/Elements/Woo_Product_Carousel.php:1088, ../includes/Elements/Woo_Product_Carousel.php:1584, ../includes/Elements/Woo_Product_Carousel.php:1959, ../includes/Elements/Woo_Product_Carousel.php:2414, ../includes/Elements/Woo_Product_Carousel.php:2829, ../includes/Elements/Woo_Product_Gallery.php:712, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1417, ../includes/Elements/Woo_Product_Gallery.php:1799, ../includes/Elements/Woo_Product_Gallery.php:2194, ../includes/Elements/Woo_Product_List.php:2257, ../includes/Elements/Woo_Product_List.php:2602, ../includes/Elements/Woo_Product_List.php:2720, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:3031, ../includes/Elements/WpForms.php:1319, ../includes/Extensions/Table_of_Content.php:1054, ../includes/Traits/Controls.php:1884, ../includes/Traits/Controls.php:2137, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 +#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Accordion.php:1045, ../includes/Elements/Adv_Tabs.php:664, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:888, ../includes/Elements/Business_Reviews.php:1020, ../includes/Elements/Business_Reviews.php:1504, ../includes/Elements/Business_Reviews.php:1634, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:358, ../includes/Elements/Cta_Box.php:1081, ../includes/Elements/Cta_Box.php:1361, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:924, ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Data_Table.php:1124, ../includes/Elements/Event_Calendar.php:1814, ../includes/Elements/Event_Calendar.php:2135, ../includes/Elements/Filterable_Gallery.php:2158, ../includes/Elements/Filterable_Gallery.php:3113, ../includes/Elements/Flip_Box.php:1466, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:613, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Info_Box.php:1293, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Interactive_Circle.php:386, ../includes/Elements/Interactive_Circle.php:698, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:448, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1067, ../includes/Elements/Product_Grid.php:1749, ../includes/Elements/Product_Grid.php:2217, ../includes/Elements/Product_Grid.php:2469, ../includes/Elements/Product_Grid.php:2922, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:827, ../includes/Elements/Tooltip.php:460, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1174, ../includes/Elements/Woo_Checkout.php:1218, ../includes/Elements/Woo_Checkout.php:1360, ../includes/Elements/Woo_Checkout.php:1676, ../includes/Elements/Woo_Checkout.php:2047, ../includes/Elements/Woo_Checkout.php:2483, ../includes/Elements/Woo_Checkout.php:2917, ../includes/Elements/Woo_Product_Carousel.php:1088, ../includes/Elements/Woo_Product_Carousel.php:1584, ../includes/Elements/Woo_Product_Carousel.php:1959, ../includes/Elements/Woo_Product_Carousel.php:2414, ../includes/Elements/Woo_Product_Carousel.php:2829, ../includes/Elements/Woo_Product_Gallery.php:712, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1417, ../includes/Elements/Woo_Product_Gallery.php:1799, ../includes/Elements/Woo_Product_Gallery.php:2194, ../includes/Elements/Woo_Product_List.php:2257, ../includes/Elements/Woo_Product_List.php:2602, ../includes/Elements/Woo_Product_List.php:2720, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:3031, ../includes/Elements/WpForms.php:1319, ../includes/Extensions/Table_of_Content.php:1054, ../includes/Traits/Controls.php:1867, ../includes/Traits/Controls.php:2120, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 msgid "Hover" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1124, ../includes/Elements/Business_Reviews.php:2259, ../includes/Elements/Business_Reviews.php:2315, ../includes/Elements/Business_Reviews.php:2409, ../includes/Elements/Business_Reviews.php:2465, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:700, ../includes/Elements/Cta_Box.php:741, ../includes/Elements/Cta_Box.php:783, ../includes/Elements/Cta_Box.php:1470, ../includes/Elements/Cta_Box.php:1486, ../includes/Elements/Data_Table.php:645, ../includes/Elements/Data_Table.php:685, ../includes/Elements/Data_Table.php:1213, ../includes/Elements/Dual_Color_Header.php:480, ../includes/Elements/Dual_Color_Header.php:577, ../includes/Elements/Dual_Color_Header.php:720, ../includes/Elements/Event_Calendar.php:1703, ../includes/Elements/Event_Calendar.php:2035, ../includes/Elements/Event_Calendar.php:2075, ../includes/Elements/Event_Calendar.php:2142, ../includes/Elements/Event_Calendar.php:2196, ../includes/Elements/Event_Calendar.php:2282, ../includes/Elements/Event_Calendar.php:2360, ../includes/Elements/Event_Calendar.php:2394, ../includes/Elements/Event_Calendar.php:2503, ../includes/Elements/Event_Calendar.php:2895, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:360, ../includes/Elements/Feature_List.php:626, ../includes/Elements/Feature_List.php:848, ../includes/Elements/Feature_List.php:883, ../includes/Elements/Filterable_Gallery.php:1440, ../includes/Elements/Filterable_Gallery.php:1480, ../includes/Elements/Filterable_Gallery.php:1879, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:1939, ../includes/Elements/Filterable_Gallery.php:1954, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2252, ../includes/Elements/Filterable_Gallery.php:2288, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2476, ../includes/Elements/Filterable_Gallery.php:2668, ../includes/Elements/Filterable_Gallery.php:2807, ../includes/Elements/Flip_Box.php:972, ../includes/Elements/Flip_Box.php:1086, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Flip_Box.php:1315, ../includes/Elements/Flip_Box.php:1389, ../includes/Elements/Flip_Box.php:1472, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:506, ../includes/Elements/Image_Accordion.php:535, ../includes/Elements/Info_Box.php:1373, ../includes/Elements/Info_Box.php:1449, ../includes/Elements/Interactive_Circle.php:555, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:358, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:855, ../includes/Elements/Pricing_Table.php:940, ../includes/Elements/Pricing_Table.php:1004, ../includes/Elements/Pricing_Table.php:1095, ../includes/Elements/Pricing_Table.php:1124, ../includes/Elements/Pricing_Table.php:1165, ../includes/Elements/Pricing_Table.php:1194, ../includes/Elements/Pricing_Table.php:1234, ../includes/Elements/Pricing_Table.php:1269, ../includes/Elements/Pricing_Table.php:1451, ../includes/Elements/Pricing_Table.php:1591, ../includes/Elements/Product_Grid.php:1487, ../includes/Elements/Product_Grid.php:2113, ../includes/Elements/Product_Grid.php:2222, ../includes/Elements/Product_Grid.php:2593, ../includes/Elements/Product_Grid.php:2774, ../includes/Elements/Product_Grid.php:2815, ../includes/Elements/Product_Grid.php:2876, ../includes/Elements/Product_Grid.php:2927, ../includes/Elements/Product_Grid.php:3084, ../includes/Elements/Progress_Bar.php:479, ../includes/Elements/Progress_Bar.php:568, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:393, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:828, ../includes/Elements/Woo_Checkout.php:1002, ../includes/Elements/Woo_Checkout.php:1016, ../includes/Elements/Woo_Checkout.php:1124, ../includes/Elements/Woo_Checkout.php:1139, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1365, ../includes/Elements/Woo_Checkout.php:1433, ../includes/Elements/Woo_Checkout.php:1605, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:1695, ../includes/Elements/Woo_Checkout.php:1792, ../includes/Elements/Woo_Checkout.php:2026, ../includes/Elements/Woo_Checkout.php:2066, ../includes/Elements/Woo_Checkout.php:2184, ../includes/Elements/Woo_Checkout.php:2228, ../includes/Elements/Woo_Checkout.php:2272, ../includes/Elements/Woo_Checkout.php:2378, ../includes/Elements/Woo_Checkout.php:2417, ../includes/Elements/Woo_Checkout.php:2457, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:2751, ../includes/Elements/Woo_Checkout.php:2786, ../includes/Elements/Woo_Checkout.php:2807, ../includes/Elements/Woo_Checkout.php:2896, ../includes/Elements/Woo_Checkout.php:2936, ../includes/Elements/Woo_Product_Carousel.php:1312, ../includes/Elements/Woo_Product_Carousel.php:1507, ../includes/Elements/Woo_Product_Carousel.php:1589, ../includes/Elements/Woo_Product_Carousel.php:1809, ../includes/Elements/Woo_Product_Carousel.php:1850, ../includes/Elements/Woo_Product_Carousel.php:1912, ../includes/Elements/Woo_Product_Carousel.php:1964, ../includes/Elements/Woo_Product_Carousel.php:2117, ../includes/Elements/Woo_Product_Carousel.php:2358, ../includes/Elements/Woo_Product_Carousel.php:2421, ../includes/Elements/Woo_Product_Carousel.php:2454, ../includes/Elements/Woo_Product_Carousel.php:2792, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/Woo_Product_Gallery.php:1388, ../includes/Elements/Woo_Product_Gallery.php:1422, ../includes/Elements/Woo_Product_Gallery.php:1460, ../includes/Elements/Woo_Product_Gallery.php:1754, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:2005, ../includes/Elements/Woo_Product_Gallery.php:2046, ../includes/Elements/Woo_Product_Gallery.php:2087, ../includes/Elements/Woo_Product_Gallery.php:2148, ../includes/Elements/Woo_Product_Gallery.php:2199, ../includes/Elements/Woo_Product_Gallery.php:2356, ../includes/Elements/Woo_Product_List.php:1964, ../includes/Elements/Woo_Product_List.php:2022, ../includes/Elements/Woo_Product_List.php:2144, ../includes/Elements/Woo_Product_List.php:2181, ../includes/Elements/Woo_Product_List.php:2239, ../includes/Elements/Woo_Product_List.php:2268, ../includes/Elements/Woo_Product_List.php:2309, ../includes/Elements/Woo_Product_List.php:2347, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2567, ../includes/Elements/Woo_Product_List.php:2613, ../includes/Elements/Woo_Product_List.php:2688, ../includes/Elements/Woo_Product_List.php:2731, ../includes/Elements/Woo_Product_List.php:2796, ../includes/Elements/Woo_Product_List.php:2831, ../includes/Elements/Woo_Product_List.php:2900, ../includes/Elements/Woo_Product_List.php:2952, ../includes/Elements/Woo_Product_List.php:3036, ../includes/Elements/Woo_Product_List.php:3192, ../includes/Elements/WpForms.php:993, ../includes/Elements/WpForms.php:1109, ../includes/Extensions/Table_of_Content.php:1190, ../includes/Traits/Controls.php:1711, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 +#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1124, ../includes/Elements/Business_Reviews.php:2259, ../includes/Elements/Business_Reviews.php:2315, ../includes/Elements/Business_Reviews.php:2409, ../includes/Elements/Business_Reviews.php:2465, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:700, ../includes/Elements/Cta_Box.php:741, ../includes/Elements/Cta_Box.php:783, ../includes/Elements/Cta_Box.php:1470, ../includes/Elements/Cta_Box.php:1486, ../includes/Elements/Data_Table.php:645, ../includes/Elements/Data_Table.php:685, ../includes/Elements/Data_Table.php:1213, ../includes/Elements/Dual_Color_Header.php:480, ../includes/Elements/Dual_Color_Header.php:552, ../includes/Elements/Dual_Color_Header.php:695, ../includes/Elements/Event_Calendar.php:1703, ../includes/Elements/Event_Calendar.php:2035, ../includes/Elements/Event_Calendar.php:2075, ../includes/Elements/Event_Calendar.php:2142, ../includes/Elements/Event_Calendar.php:2196, ../includes/Elements/Event_Calendar.php:2282, ../includes/Elements/Event_Calendar.php:2360, ../includes/Elements/Event_Calendar.php:2394, ../includes/Elements/Event_Calendar.php:2503, ../includes/Elements/Event_Calendar.php:2895, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:360, ../includes/Elements/Feature_List.php:626, ../includes/Elements/Feature_List.php:848, ../includes/Elements/Feature_List.php:883, ../includes/Elements/Filterable_Gallery.php:1440, ../includes/Elements/Filterable_Gallery.php:1480, ../includes/Elements/Filterable_Gallery.php:1879, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:1939, ../includes/Elements/Filterable_Gallery.php:1954, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2252, ../includes/Elements/Filterable_Gallery.php:2288, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2476, ../includes/Elements/Filterable_Gallery.php:2668, ../includes/Elements/Filterable_Gallery.php:2807, ../includes/Elements/Flip_Box.php:972, ../includes/Elements/Flip_Box.php:1086, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Flip_Box.php:1315, ../includes/Elements/Flip_Box.php:1389, ../includes/Elements/Flip_Box.php:1472, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:506, ../includes/Elements/Image_Accordion.php:535, ../includes/Elements/Info_Box.php:1373, ../includes/Elements/Info_Box.php:1449, ../includes/Elements/Interactive_Circle.php:555, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:358, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:855, ../includes/Elements/Pricing_Table.php:940, ../includes/Elements/Pricing_Table.php:1004, ../includes/Elements/Pricing_Table.php:1095, ../includes/Elements/Pricing_Table.php:1124, ../includes/Elements/Pricing_Table.php:1165, ../includes/Elements/Pricing_Table.php:1194, ../includes/Elements/Pricing_Table.php:1234, ../includes/Elements/Pricing_Table.php:1269, ../includes/Elements/Pricing_Table.php:1451, ../includes/Elements/Pricing_Table.php:1591, ../includes/Elements/Product_Grid.php:1487, ../includes/Elements/Product_Grid.php:2113, ../includes/Elements/Product_Grid.php:2222, ../includes/Elements/Product_Grid.php:2593, ../includes/Elements/Product_Grid.php:2774, ../includes/Elements/Product_Grid.php:2815, ../includes/Elements/Product_Grid.php:2876, ../includes/Elements/Product_Grid.php:2927, ../includes/Elements/Product_Grid.php:3084, ../includes/Elements/Progress_Bar.php:479, ../includes/Elements/Progress_Bar.php:568, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:393, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:828, ../includes/Elements/Woo_Checkout.php:1002, ../includes/Elements/Woo_Checkout.php:1016, ../includes/Elements/Woo_Checkout.php:1124, ../includes/Elements/Woo_Checkout.php:1139, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1365, ../includes/Elements/Woo_Checkout.php:1433, ../includes/Elements/Woo_Checkout.php:1605, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:1695, ../includes/Elements/Woo_Checkout.php:1792, ../includes/Elements/Woo_Checkout.php:2026, ../includes/Elements/Woo_Checkout.php:2066, ../includes/Elements/Woo_Checkout.php:2184, ../includes/Elements/Woo_Checkout.php:2228, ../includes/Elements/Woo_Checkout.php:2272, ../includes/Elements/Woo_Checkout.php:2378, ../includes/Elements/Woo_Checkout.php:2417, ../includes/Elements/Woo_Checkout.php:2457, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:2751, ../includes/Elements/Woo_Checkout.php:2786, ../includes/Elements/Woo_Checkout.php:2807, ../includes/Elements/Woo_Checkout.php:2896, ../includes/Elements/Woo_Checkout.php:2936, ../includes/Elements/Woo_Product_Carousel.php:1312, ../includes/Elements/Woo_Product_Carousel.php:1507, ../includes/Elements/Woo_Product_Carousel.php:1589, ../includes/Elements/Woo_Product_Carousel.php:1809, ../includes/Elements/Woo_Product_Carousel.php:1850, ../includes/Elements/Woo_Product_Carousel.php:1912, ../includes/Elements/Woo_Product_Carousel.php:1964, ../includes/Elements/Woo_Product_Carousel.php:2117, ../includes/Elements/Woo_Product_Carousel.php:2358, ../includes/Elements/Woo_Product_Carousel.php:2421, ../includes/Elements/Woo_Product_Carousel.php:2454, ../includes/Elements/Woo_Product_Carousel.php:2792, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/Woo_Product_Gallery.php:1388, ../includes/Elements/Woo_Product_Gallery.php:1422, ../includes/Elements/Woo_Product_Gallery.php:1460, ../includes/Elements/Woo_Product_Gallery.php:1754, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:2005, ../includes/Elements/Woo_Product_Gallery.php:2046, ../includes/Elements/Woo_Product_Gallery.php:2087, ../includes/Elements/Woo_Product_Gallery.php:2148, ../includes/Elements/Woo_Product_Gallery.php:2199, ../includes/Elements/Woo_Product_Gallery.php:2356, ../includes/Elements/Woo_Product_List.php:1964, ../includes/Elements/Woo_Product_List.php:2022, ../includes/Elements/Woo_Product_List.php:2144, ../includes/Elements/Woo_Product_List.php:2181, ../includes/Elements/Woo_Product_List.php:2239, ../includes/Elements/Woo_Product_List.php:2268, ../includes/Elements/Woo_Product_List.php:2309, ../includes/Elements/Woo_Product_List.php:2347, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2567, ../includes/Elements/Woo_Product_List.php:2613, ../includes/Elements/Woo_Product_List.php:2688, ../includes/Elements/Woo_Product_List.php:2731, ../includes/Elements/Woo_Product_List.php:2796, ../includes/Elements/Woo_Product_List.php:2831, ../includes/Elements/Woo_Product_List.php:2900, ../includes/Elements/Woo_Product_List.php:2952, ../includes/Elements/Woo_Product_List.php:3036, ../includes/Elements/Woo_Product_List.php:3192, ../includes/Elements/WpForms.php:993, ../includes/Elements/WpForms.php:1109, ../includes/Extensions/Table_of_Content.php:1190, ../includes/Traits/Controls.php:1694, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 msgid "Color" msgstr "" @@ -1154,7 +1154,7 @@ msgstr "" msgid "Tab Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:556, ../includes/Elements/Adv_Accordion.php:937, ../includes/Elements/Adv_Tabs.php:526, ../includes/Elements/Creative_Button.php:509, ../includes/Elements/Cta_Box.php:875, ../includes/Elements/Data_Table.php:732, ../includes/Elements/Data_Table.php:1083, ../includes/Elements/Dual_Color_Header.php:404, ../includes/Elements/Dual_Color_Header.php:615, ../includes/Elements/Event_Calendar.php:2774, ../includes/Elements/Event_Calendar.php:2843, ../includes/Elements/Feature_List.php:660, ../includes/Elements/Filterable_Gallery.php:2075, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:3008, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1102, ../includes/Elements/Flip_Box.php:1441, ../includes/Elements/Info_Box.php:951, ../includes/Elements/Info_Box.php:1193, ../includes/Elements/Interactive_Circle.php:618, ../includes/Elements/Interactive_Circle.php:888, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1293, ../includes/Elements/Pricing_Table.php:1761, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Product_Grid.php:1437, ../includes/Elements/Product_Grid.php:3032, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:677, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1817, ../includes/Elements/Woo_Product_Carousel.php:1279, ../includes/Elements/Woo_Product_Carousel.php:2065, ../includes/Elements/Woo_Product_Carousel.php:2713, ../includes/Elements/Woo_Product_Gallery.php:913, ../includes/Elements/Woo_Product_Gallery.php:2304, ../includes/Elements/Woo_Product_List.php:2109, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:800, ../includes/Traits/Woo_Product_Comparable.php:1345 +#: ../includes/Elements/Adv_Accordion.php:556, ../includes/Elements/Adv_Accordion.php:937, ../includes/Elements/Adv_Tabs.php:526, ../includes/Elements/Creative_Button.php:509, ../includes/Elements/Cta_Box.php:875, ../includes/Elements/Data_Table.php:732, ../includes/Elements/Data_Table.php:1083, ../includes/Elements/Dual_Color_Header.php:404, ../includes/Elements/Dual_Color_Header.php:590, ../includes/Elements/Event_Calendar.php:2774, ../includes/Elements/Event_Calendar.php:2843, ../includes/Elements/Feature_List.php:660, ../includes/Elements/Filterable_Gallery.php:2075, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:3008, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1102, ../includes/Elements/Flip_Box.php:1441, ../includes/Elements/Info_Box.php:951, ../includes/Elements/Info_Box.php:1193, ../includes/Elements/Interactive_Circle.php:618, ../includes/Elements/Interactive_Circle.php:888, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1293, ../includes/Elements/Pricing_Table.php:1761, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Product_Grid.php:1437, ../includes/Elements/Product_Grid.php:3032, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:677, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1817, ../includes/Elements/Woo_Product_Carousel.php:1279, ../includes/Elements/Woo_Product_Carousel.php:2065, ../includes/Elements/Woo_Product_Carousel.php:2713, ../includes/Elements/Woo_Product_Gallery.php:913, ../includes/Elements/Woo_Product_Gallery.php:2304, ../includes/Elements/Woo_Product_List.php:2109, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:800, ../includes/Traits/Woo_Product_Comparable.php:1345 msgid "Icon Size" msgstr "" @@ -1166,7 +1166,7 @@ msgstr "" msgid "Distance" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Accordion.php:750, ../includes/Elements/Adv_Accordion.php:812, ../includes/Elements/Adv_Tabs.php:631, ../includes/Elements/Adv_Tabs.php:698, ../includes/Elements/Adv_Tabs.php:765, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1064, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Data_Table.php:1129, ../includes/Elements/Dual_Color_Header.php:428, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:2792, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:787, ../includes/Elements/Info_Box.php:866, ../includes/Elements/Info_Box.php:1019, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Interactive_Circle.php:667, ../includes/Elements/Interactive_Circle.php:729, ../includes/Elements/Interactive_Circle.php:795, ../includes/Elements/Interactive_Circle.php:912, ../includes/Elements/Post_Grid.php:978, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:1826, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:754, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1446, ../includes/Elements/Woo_Checkout.php:1805, ../includes/Extensions/Scroll_to_Top.php:387 +#: ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Accordion.php:750, ../includes/Elements/Adv_Accordion.php:812, ../includes/Elements/Adv_Tabs.php:631, ../includes/Elements/Adv_Tabs.php:698, ../includes/Elements/Adv_Tabs.php:765, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1064, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Data_Table.php:1129, ../includes/Elements/Dual_Color_Header.php:428, ../includes/Elements/Dual_Color_Header.php:616, ../includes/Elements/Event_Calendar.php:2792, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:787, ../includes/Elements/Info_Box.php:866, ../includes/Elements/Info_Box.php:1019, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Interactive_Circle.php:667, ../includes/Elements/Interactive_Circle.php:729, ../includes/Elements/Interactive_Circle.php:795, ../includes/Elements/Interactive_Circle.php:912, ../includes/Elements/Post_Grid.php:978, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:1826, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:754, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1446, ../includes/Elements/Woo_Checkout.php:1805, ../includes/Extensions/Scroll_to_Top.php:387 msgid "Icon Color" msgstr "" @@ -1330,11 +1330,11 @@ msgstr "" msgid "Show Icon" msgstr "" -#: ../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:1306, ../includes/Elements/Business_Reviews.php:513, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:563, ../includes/Elements/Business_Reviews.php:587, ../includes/Elements/Business_Reviews.php:613, ../includes/Elements/Business_Reviews.php:640, ../includes/Elements/Business_Reviews.php:661, ../includes/Elements/Business_Reviews.php:673, ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Business_Reviews.php:698, ../includes/Elements/Business_Reviews.php:734, ../includes/Elements/Business_Reviews.php:746, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:604, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Cta_Box.php:440, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Event_Calendar.php:945, ../includes/Elements/Event_Calendar.php:1002, ../includes/Elements/Event_Calendar.php:1062, ../includes/Elements/Event_Calendar.php:1132, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:413, ../includes/Elements/Filterable_Gallery.php:324, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:559, ../includes/Elements/Pricing_Table.php:1715, ../includes/Elements/Product_Grid.php:329, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:811, ../includes/Elements/Product_Grid.php:1661, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Testimonial.php:279, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:467, ../includes/Elements/Woo_Product_Carousel.php:231, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:694, ../includes/Elements/Woo_Product_Carousel.php:753, ../includes/Elements/Woo_Product_Gallery.php:583, ../includes/Elements/Woo_Product_Gallery.php:1071, ../includes/Elements/Woo_Product_List.php:235, ../includes/Elements/Woo_Product_List.php:253, ../includes/Elements/Woo_Product_List.php:262, ../includes/Elements/Woo_Product_List.php:271, ../includes/Elements/Woo_Product_List.php:280, ../includes/Elements/Woo_Product_List.php:298, ../includes/Elements/Woo_Product_List.php:307, ../includes/Elements/Woo_Product_List.php:316, ../includes/Elements/Woo_Product_List.php:334, ../includes/Elements/Woo_Product_List.php:346, ../includes/Elements/Woo_Product_List.php:358, ../includes/Elements/Woo_Product_List.php:367, ../includes/Elements/Woo_Product_List.php:376, ../includes/Elements/Woo_Product_List.php:874, ../includes/Elements/Woo_Product_List.php:926, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Traits/Controls.php:620, ../includes/Traits/Controls.php:723, ../includes/Traits/Controls.php:753, ../includes/Traits/Controls.php:1036, ../includes/Traits/Controls.php:1066, ../includes/Traits/Controls.php:1115, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1230, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1365, ../includes/Traits/Controls.php:1498, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1547, ../includes/Traits/Controls.php:1563, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1613, ../includes/Traits/Controls.php:1629, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1664, ../includes/Traits/Controls.php:1680 +#: ../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:1306, ../includes/Elements/Business_Reviews.php:513, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:563, ../includes/Elements/Business_Reviews.php:587, ../includes/Elements/Business_Reviews.php:613, ../includes/Elements/Business_Reviews.php:640, ../includes/Elements/Business_Reviews.php:661, ../includes/Elements/Business_Reviews.php:673, ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Business_Reviews.php:698, ../includes/Elements/Business_Reviews.php:734, ../includes/Elements/Business_Reviews.php:746, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:604, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Cta_Box.php:440, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Event_Calendar.php:945, ../includes/Elements/Event_Calendar.php:1002, ../includes/Elements/Event_Calendar.php:1062, ../includes/Elements/Event_Calendar.php:1132, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:413, ../includes/Elements/Filterable_Gallery.php:324, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:559, ../includes/Elements/Pricing_Table.php:1715, ../includes/Elements/Product_Grid.php:329, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:811, ../includes/Elements/Product_Grid.php:1661, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Testimonial.php:279, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:467, ../includes/Elements/Woo_Product_Carousel.php:231, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:694, ../includes/Elements/Woo_Product_Carousel.php:753, ../includes/Elements/Woo_Product_Gallery.php:583, ../includes/Elements/Woo_Product_Gallery.php:1071, ../includes/Elements/Woo_Product_List.php:235, ../includes/Elements/Woo_Product_List.php:253, ../includes/Elements/Woo_Product_List.php:262, ../includes/Elements/Woo_Product_List.php:271, ../includes/Elements/Woo_Product_List.php:280, ../includes/Elements/Woo_Product_List.php:298, ../includes/Elements/Woo_Product_List.php:307, ../includes/Elements/Woo_Product_List.php:316, ../includes/Elements/Woo_Product_List.php:334, ../includes/Elements/Woo_Product_List.php:346, ../includes/Elements/Woo_Product_List.php:358, ../includes/Elements/Woo_Product_List.php:367, ../includes/Elements/Woo_Product_List.php:376, ../includes/Elements/Woo_Product_List.php:874, ../includes/Elements/Woo_Product_List.php:926, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Traits/Controls.php:620, ../includes/Traits/Controls.php:723, ../includes/Traits/Controls.php:753, ../includes/Traits/Controls.php:1036, ../includes/Traits/Controls.php:1066, ../includes/Traits/Controls.php:1115, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1230, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1365, ../includes/Traits/Controls.php:1498, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1547, ../includes/Traits/Controls.php:1563, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1596, ../includes/Traits/Controls.php:1612, ../includes/Traits/Controls.php:1631, ../includes/Traits/Controls.php:1647, ../includes/Traits/Controls.php:1663 msgid "Show" msgstr "" -#: ../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:1307, ../includes/Elements/Business_Reviews.php:514, ../includes/Elements/Business_Reviews.php:529, ../includes/Elements/Business_Reviews.php:564, ../includes/Elements/Business_Reviews.php:588, ../includes/Elements/Business_Reviews.php:614, ../includes/Elements/Business_Reviews.php:641, ../includes/Elements/Business_Reviews.php:662, ../includes/Elements/Business_Reviews.php:674, ../includes/Elements/Business_Reviews.php:686, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:735, ../includes/Elements/Business_Reviews.php:747, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:605, ../includes/Elements/Creative_Button.php:259, ../includes/Elements/Cta_Box.php:248, ../includes/Elements/Cta_Box.php:441, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Dual_Color_Header.php:107, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:325, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:560, ../includes/Elements/Pricing_Table.php:1716, ../includes/Elements/Product_Grid.php:330, ../includes/Elements/Product_Grid.php:687, ../includes/Elements/Product_Grid.php:812, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Testimonial.php:280, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:362, ../includes/Elements/Woo_Checkout.php:468, ../includes/Elements/Woo_Product_Carousel.php:232, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:695, ../includes/Elements/Woo_Product_Carousel.php:754, ../includes/Elements/Woo_Product_Gallery.php:584, ../includes/Elements/Woo_Product_Gallery.php:1072, ../includes/Elements/Woo_Product_List.php:236, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:263, ../includes/Elements/Woo_Product_List.php:272, ../includes/Elements/Woo_Product_List.php:281, ../includes/Elements/Woo_Product_List.php:299, ../includes/Elements/Woo_Product_List.php:308, ../includes/Elements/Woo_Product_List.php:317, ../includes/Elements/Woo_Product_List.php:335, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:359, ../includes/Elements/Woo_Product_List.php:368, ../includes/Elements/Woo_Product_List.php:377, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:927, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Traits/Controls.php:621, ../includes/Traits/Controls.php:724, ../includes/Traits/Controls.php:754, ../includes/Traits/Controls.php:1037, ../includes/Traits/Controls.php:1067, ../includes/Traits/Controls.php:1116, ../includes/Traits/Controls.php:1161, ../includes/Traits/Controls.php:1231, ../includes/Traits/Controls.php:1325, ../includes/Traits/Controls.php:1366, ../includes/Traits/Controls.php:1499, ../includes/Traits/Controls.php:1519, ../includes/Traits/Controls.php:1548, ../includes/Traits/Controls.php:1564, ../includes/Traits/Controls.php:1581, ../includes/Traits/Controls.php:1614, ../includes/Traits/Controls.php:1630, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1665, ../includes/Traits/Controls.php:1681 +#: ../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:1307, ../includes/Elements/Business_Reviews.php:514, ../includes/Elements/Business_Reviews.php:529, ../includes/Elements/Business_Reviews.php:564, ../includes/Elements/Business_Reviews.php:588, ../includes/Elements/Business_Reviews.php:614, ../includes/Elements/Business_Reviews.php:641, ../includes/Elements/Business_Reviews.php:662, ../includes/Elements/Business_Reviews.php:674, ../includes/Elements/Business_Reviews.php:686, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:735, ../includes/Elements/Business_Reviews.php:747, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:605, ../includes/Elements/Creative_Button.php:259, ../includes/Elements/Cta_Box.php:248, ../includes/Elements/Cta_Box.php:441, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Dual_Color_Header.php:107, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:325, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:560, ../includes/Elements/Pricing_Table.php:1716, ../includes/Elements/Product_Grid.php:330, ../includes/Elements/Product_Grid.php:687, ../includes/Elements/Product_Grid.php:812, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Testimonial.php:280, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:362, ../includes/Elements/Woo_Checkout.php:468, ../includes/Elements/Woo_Product_Carousel.php:232, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:695, ../includes/Elements/Woo_Product_Carousel.php:754, ../includes/Elements/Woo_Product_Gallery.php:584, ../includes/Elements/Woo_Product_Gallery.php:1072, ../includes/Elements/Woo_Product_List.php:236, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:263, ../includes/Elements/Woo_Product_List.php:272, ../includes/Elements/Woo_Product_List.php:281, ../includes/Elements/Woo_Product_List.php:299, ../includes/Elements/Woo_Product_List.php:308, ../includes/Elements/Woo_Product_List.php:317, ../includes/Elements/Woo_Product_List.php:335, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:359, ../includes/Elements/Woo_Product_List.php:368, ../includes/Elements/Woo_Product_List.php:377, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:927, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Traits/Controls.php:621, ../includes/Traits/Controls.php:724, ../includes/Traits/Controls.php:754, ../includes/Traits/Controls.php:1037, ../includes/Traits/Controls.php:1067, ../includes/Traits/Controls.php:1116, ../includes/Traits/Controls.php:1161, ../includes/Traits/Controls.php:1231, ../includes/Traits/Controls.php:1325, ../includes/Traits/Controls.php:1366, ../includes/Traits/Controls.php:1499, ../includes/Traits/Controls.php:1519, ../includes/Traits/Controls.php:1548, ../includes/Traits/Controls.php:1564, ../includes/Traits/Controls.php:1581, ../includes/Traits/Controls.php:1597, ../includes/Traits/Controls.php:1613, ../includes/Traits/Controls.php:1632, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1664 msgid "Hide" msgstr "" @@ -1386,7 +1386,7 @@ msgstr "" msgid "Size" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2381, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:741, ../includes/Elements/Filterable_Gallery.php:2724, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2389, ../includes/Elements/Woo_Product_Carousel.php:2330, ../includes/Elements/WpForms.php:772, ../includes/Elements/WpForms.php:880, ../includes/Traits/Controls.php:1757 +#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2381, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:741, ../includes/Elements/Filterable_Gallery.php:2724, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2389, ../includes/Elements/Woo_Product_Carousel.php:2330, ../includes/Elements/WpForms.php:772, ../includes/Elements/WpForms.php:880, ../includes/Traits/Controls.php:1740 msgid "Spacing" msgstr "" @@ -1498,7 +1498,7 @@ msgstr "" msgid "Area Spacing" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Pricing_Table.php:892, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2190 +#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Pricing_Table.php:892, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2173 msgid "Button Alignment" msgstr "" @@ -1534,7 +1534,7 @@ msgstr "" msgid "Close Icon" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2327, ../includes/Elements/Business_Reviews.php:2477, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1105, ../includes/Elements/Creative_Button.php:428, ../includes/Elements/Cta_Box.php:1166, ../includes/Elements/Cta_Box.php:1405, ../includes/Elements/Event_Calendar.php:1796, ../includes/Elements/Event_Calendar.php:1841, ../includes/Elements/Event_Calendar.php:1886, ../includes/Elements/Event_Calendar.php:1966, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3156, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:534, ../includes/Elements/Interactive_Circle.php:744, ../includes/Elements/Interactive_Circle.php:814, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2091, ../includes/Elements/Product_Grid.php:932, ../includes/Elements/Product_Grid.php:1072, ../includes/Elements/Product_Grid.php:1804, ../includes/Elements/Product_Grid.php:2079, ../includes/Elements/Product_Grid.php:2261, ../includes/Elements/Product_Grid.php:2500, ../includes/Elements/Product_Grid.php:2547, ../includes/Elements/Product_Grid.php:2743, ../includes/Elements/Product_Grid.php:2839, ../includes/Elements/Product_Grid.php:2951, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:625, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1030, ../includes/Elements/Woo_Checkout.php:1239, ../includes/Elements/Woo_Checkout.php:1707, ../includes/Elements/Woo_Checkout.php:2078, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2239, ../includes/Elements/Woo_Checkout.php:2283, ../includes/Elements/Woo_Checkout.php:2472, ../includes/Elements/Woo_Checkout.php:2488, ../includes/Elements/Woo_Checkout.php:2836, ../includes/Elements/Woo_Checkout.php:2948, ../includes/Elements/Woo_Product_Carousel.php:1093, ../includes/Elements/Woo_Product_Carousel.php:1487, ../includes/Elements/Woo_Product_Carousel.php:1611, ../includes/Elements/Woo_Product_Carousel.php:1779, ../includes/Elements/Woo_Product_Carousel.php:1874, ../includes/Elements/Woo_Product_Carousel.php:1988, ../includes/Elements/Woo_Product_Carousel.php:2433, ../includes/Elements/Woo_Product_Carousel.php:2860, ../includes/Elements/Woo_Product_Gallery.php:717, ../includes/Elements/Woo_Product_Gallery.php:1201, ../includes/Elements/Woo_Product_Gallery.php:1444, ../includes/Elements/Woo_Product_Gallery.php:1482, ../includes/Elements/Woo_Product_Gallery.php:1974, ../includes/Elements/Woo_Product_Gallery.php:2111, ../includes/Elements/Woo_Product_Gallery.php:2223, ../includes/Elements/Woo_Product_List.php:2924, ../includes/Elements/Woo_Product_List.php:3059, ../includes/Elements/WpForms.php:1030, ../includes/Elements/WpForms.php:1350, ../includes/Traits/Controls.php:2166, ../includes/Traits/Woo_Product_Comparable.php:1724 +#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2327, ../includes/Elements/Business_Reviews.php:2477, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1105, ../includes/Elements/Creative_Button.php:428, ../includes/Elements/Cta_Box.php:1166, ../includes/Elements/Cta_Box.php:1405, ../includes/Elements/Event_Calendar.php:1796, ../includes/Elements/Event_Calendar.php:1841, ../includes/Elements/Event_Calendar.php:1886, ../includes/Elements/Event_Calendar.php:1966, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3156, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:534, ../includes/Elements/Interactive_Circle.php:744, ../includes/Elements/Interactive_Circle.php:814, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2091, ../includes/Elements/Product_Grid.php:932, ../includes/Elements/Product_Grid.php:1072, ../includes/Elements/Product_Grid.php:1804, ../includes/Elements/Product_Grid.php:2079, ../includes/Elements/Product_Grid.php:2261, ../includes/Elements/Product_Grid.php:2500, ../includes/Elements/Product_Grid.php:2547, ../includes/Elements/Product_Grid.php:2743, ../includes/Elements/Product_Grid.php:2839, ../includes/Elements/Product_Grid.php:2951, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:625, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1030, ../includes/Elements/Woo_Checkout.php:1239, ../includes/Elements/Woo_Checkout.php:1707, ../includes/Elements/Woo_Checkout.php:2078, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2239, ../includes/Elements/Woo_Checkout.php:2283, ../includes/Elements/Woo_Checkout.php:2472, ../includes/Elements/Woo_Checkout.php:2488, ../includes/Elements/Woo_Checkout.php:2836, ../includes/Elements/Woo_Checkout.php:2948, ../includes/Elements/Woo_Product_Carousel.php:1093, ../includes/Elements/Woo_Product_Carousel.php:1487, ../includes/Elements/Woo_Product_Carousel.php:1611, ../includes/Elements/Woo_Product_Carousel.php:1779, ../includes/Elements/Woo_Product_Carousel.php:1874, ../includes/Elements/Woo_Product_Carousel.php:1988, ../includes/Elements/Woo_Product_Carousel.php:2433, ../includes/Elements/Woo_Product_Carousel.php:2860, ../includes/Elements/Woo_Product_Gallery.php:717, ../includes/Elements/Woo_Product_Gallery.php:1201, ../includes/Elements/Woo_Product_Gallery.php:1444, ../includes/Elements/Woo_Product_Gallery.php:1482, ../includes/Elements/Woo_Product_Gallery.php:1974, ../includes/Elements/Woo_Product_Gallery.php:2111, ../includes/Elements/Woo_Product_Gallery.php:2223, ../includes/Elements/Woo_Product_List.php:2924, ../includes/Elements/Woo_Product_List.php:3059, ../includes/Elements/WpForms.php:1030, ../includes/Elements/WpForms.php:1350, ../includes/Traits/Controls.php:2149, ../includes/Traits/Woo_Product_Comparable.php:1724 msgid "Border Color" msgstr "" @@ -1994,7 +1994,7 @@ msgstr "" msgid "Form Alignment" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:173, ../includes/Elements/Cta_Box.php:823, ../includes/Elements/Cta_Box.php:1251, ../includes/Elements/Dual_Color_Header.php:82, ../includes/Elements/Event_Calendar.php:872, ../includes/Elements/Event_Calendar.php:884, ../includes/Elements/Flip_Box.php:899, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Product_Grid.php:251, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:395, ../includes/Elements/Team_Member.php:408, ../includes/Elements/Testimonial.php:262, ../includes/Elements/Testimonial.php:319, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:133, ../includes/Elements/WpForms.php:270, ../includes/Traits/Controls.php:609, ../includes/Traits/Controls.php:2236, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 +#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:173, ../includes/Elements/Cta_Box.php:823, ../includes/Elements/Cta_Box.php:1251, ../includes/Elements/Dual_Color_Header.php:82, ../includes/Elements/Event_Calendar.php:872, ../includes/Elements/Event_Calendar.php:884, ../includes/Elements/Flip_Box.php:899, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Product_Grid.php:251, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:395, ../includes/Elements/Team_Member.php:408, ../includes/Elements/Testimonial.php:262, ../includes/Elements/Testimonial.php:319, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:133, ../includes/Elements/WpForms.php:270, ../includes/Traits/Controls.php:609, ../includes/Traits/Controls.php:2219, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 msgid "Default" msgstr "" @@ -2134,7 +2134,7 @@ msgstr "" msgid "Contact Form 7 is not installed/activated on your site. Please install and activate Contact Form 7 first." msgstr "" -#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:960, ../includes/Elements/Cta_Box.php:1154, ../includes/Elements/Cta_Box.php:1327, ../includes/Elements/Cta_Box.php:1396, ../includes/Elements/Dual_Color_Header.php:819, ../includes/Elements/Dual_Color_Header.php:899, ../includes/Elements/Event_Calendar.php:1955, ../includes/Elements/Event_Calendar.php:2086, ../includes/Elements/Event_Calendar.php:2153, ../includes/Elements/Event_Calendar.php:2207, ../includes/Elements/Event_Calendar.php:2322, ../includes/Elements/Event_Calendar.php:2417, ../includes/Elements/Event_Calendar.php:2515, ../includes/Elements/Event_Calendar.php:2907, ../includes/Elements/Event_Calendar.php:3016, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:379, ../includes/Elements/Filterable_Gallery.php:2359, ../includes/Elements/Filterable_Gallery.php:2580, ../includes/Elements/Flip_Box.php:1402, ../includes/Elements/Flip_Box.php:1486, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:350, ../includes/Elements/Pricing_Table.php:1031, ../includes/Elements/Pricing_Table.php:2009, ../includes/Elements/Pricing_Table.php:2079, ../includes/Elements/Product_Grid.php:1691, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:1770, ../includes/Elements/Product_Grid.php:1785, ../includes/Elements/Product_Grid.php:3095, ../includes/Elements/Product_Grid.php:3152, ../includes/Elements/Progress_Bar.php:388, ../includes/Elements/Team_Member.php:782, ../includes/Elements/Team_Member.php:860, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2173, ../includes/Elements/Woo_Checkout.php:2217, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Product_Carousel.php:2128, ../includes/Elements/Woo_Product_Carousel.php:2185, ../includes/Elements/Woo_Product_Gallery.php:1099, ../includes/Elements/Woo_Product_Gallery.php:1113, ../includes/Elements/Woo_Product_Gallery.php:1171, ../includes/Elements/Woo_Product_Gallery.php:1184, ../includes/Elements/Woo_Product_Gallery.php:1232, ../includes/Elements/Woo_Product_Gallery.php:1399, ../includes/Elements/Woo_Product_Gallery.php:1433, ../includes/Elements/Woo_Product_Gallery.php:1471, ../includes/Elements/Woo_Product_Gallery.php:2367, ../includes/Elements/Woo_Product_Gallery.php:2424, ../includes/Elements/Woo_Product_List.php:1354, ../includes/Elements/Woo_Product_List.php:1979, ../includes/Elements/Woo_Product_List.php:2036, ../includes/Elements/Woo_Product_List.php:2584, ../includes/Elements/Woo_Product_List.php:2630, ../includes/Elements/Woo_Product_List.php:2703, ../includes/Elements/Woo_Product_List.php:2746, ../includes/Elements/Woo_Product_List.php:2808, ../includes/Elements/Woo_Product_List.php:2843, ../includes/Elements/Woo_Product_List.php:3203, ../includes/Elements/Woo_Product_List.php:3260, ../includes/Traits/Controls.php:1849, ../includes/Traits/Controls.php:1961, ../includes/Traits/Controls.php:1907, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 +#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:960, ../includes/Elements/Cta_Box.php:1154, ../includes/Elements/Cta_Box.php:1327, ../includes/Elements/Cta_Box.php:1396, ../includes/Elements/Dual_Color_Header.php:794, ../includes/Elements/Dual_Color_Header.php:874, ../includes/Elements/Event_Calendar.php:1955, ../includes/Elements/Event_Calendar.php:2086, ../includes/Elements/Event_Calendar.php:2153, ../includes/Elements/Event_Calendar.php:2207, ../includes/Elements/Event_Calendar.php:2322, ../includes/Elements/Event_Calendar.php:2417, ../includes/Elements/Event_Calendar.php:2515, ../includes/Elements/Event_Calendar.php:2907, ../includes/Elements/Event_Calendar.php:3016, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:379, ../includes/Elements/Filterable_Gallery.php:2359, ../includes/Elements/Filterable_Gallery.php:2580, ../includes/Elements/Flip_Box.php:1402, ../includes/Elements/Flip_Box.php:1486, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:350, ../includes/Elements/Pricing_Table.php:1031, ../includes/Elements/Pricing_Table.php:2009, ../includes/Elements/Pricing_Table.php:2079, ../includes/Elements/Product_Grid.php:1691, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:1770, ../includes/Elements/Product_Grid.php:1785, ../includes/Elements/Product_Grid.php:3095, ../includes/Elements/Product_Grid.php:3152, ../includes/Elements/Progress_Bar.php:388, ../includes/Elements/Team_Member.php:782, ../includes/Elements/Team_Member.php:860, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2173, ../includes/Elements/Woo_Checkout.php:2217, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Product_Carousel.php:2128, ../includes/Elements/Woo_Product_Carousel.php:2185, ../includes/Elements/Woo_Product_Gallery.php:1099, ../includes/Elements/Woo_Product_Gallery.php:1113, ../includes/Elements/Woo_Product_Gallery.php:1171, ../includes/Elements/Woo_Product_Gallery.php:1184, ../includes/Elements/Woo_Product_Gallery.php:1232, ../includes/Elements/Woo_Product_Gallery.php:1399, ../includes/Elements/Woo_Product_Gallery.php:1433, ../includes/Elements/Woo_Product_Gallery.php:1471, ../includes/Elements/Woo_Product_Gallery.php:2367, ../includes/Elements/Woo_Product_Gallery.php:2424, ../includes/Elements/Woo_Product_List.php:1354, ../includes/Elements/Woo_Product_List.php:1979, ../includes/Elements/Woo_Product_List.php:2036, ../includes/Elements/Woo_Product_List.php:2584, ../includes/Elements/Woo_Product_List.php:2630, ../includes/Elements/Woo_Product_List.php:2703, ../includes/Elements/Woo_Product_List.php:2746, ../includes/Elements/Woo_Product_List.php:2808, ../includes/Elements/Woo_Product_List.php:2843, ../includes/Elements/Woo_Product_List.php:3203, ../includes/Elements/Woo_Product_List.php:3260, ../includes/Traits/Controls.php:1832, ../includes/Traits/Controls.php:1944, ../includes/Traits/Controls.php:1890, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 msgid "Background" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "After Submit Feedback" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:807, ../includes/Elements/Dual_Color_Header.php:887, ../includes/Elements/Flip_Box.php:898, ../includes/Elements/Info_Box.php:599, ../includes/Elements/Info_Box.php:654, ../includes/Elements/Info_Box.php:822, ../includes/Elements/Info_Box.php:902, ../includes/Elements/Info_Box.php:1040, ../includes/Elements/Info_Box.php:1136, ../includes/Elements/Post_Grid.php:322, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Woo_Product_Gallery.php:1056, ../includes/Elements/Woo_Product_Gallery.php:1310, ../includes/Elements/Woo_Product_Gallery.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1629 +#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:782, ../includes/Elements/Dual_Color_Header.php:862, ../includes/Elements/Flip_Box.php:898, ../includes/Elements/Info_Box.php:599, ../includes/Elements/Info_Box.php:654, ../includes/Elements/Info_Box.php:822, ../includes/Elements/Info_Box.php:902, ../includes/Elements/Info_Box.php:1040, ../includes/Elements/Info_Box.php:1136, ../includes/Elements/Post_Grid.php:322, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Woo_Product_Gallery.php:1056, ../includes/Elements/Woo_Product_Gallery.php:1310, ../includes/Elements/Woo_Product_Gallery.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1629 msgid "Radius" msgstr "" @@ -2678,15 +2678,15 @@ msgstr "" msgid "Round" msgstr "" -#: ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2239, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Elements/Woo_Product_List.php:620, ../includes/Elements/Woo_Product_List.php:637, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:669, ../includes/Traits/Controls.php:2232, ../includes/Traits/Woo_Product_Comparable.php:1473 +#: ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2239, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Elements/Woo_Product_List.php:620, ../includes/Elements/Woo_Product_List.php:637, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:669, ../includes/Traits/Controls.php:2215, ../includes/Traits/Woo_Product_Comparable.php:1473 msgid "Position" msgstr "" -#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Feature_List.php:352, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:488, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Tooltip.php:296, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:673, ../includes/Traits/Controls.php:2360 +#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Feature_List.php:352, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:488, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Tooltip.php:296, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:673, ../includes/Traits/Controls.php:2343 msgid "Top" msgstr "" -#: ../includes/Elements/Cta_Box.php:213, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:496, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Tooltip.php:297, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:675, ../includes/Traits/Controls.php:2364 +#: ../includes/Elements/Cta_Box.php:213, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:496, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Tooltip.php:297, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:675, ../includes/Traits/Controls.php:2347 msgid "Bottom" msgstr "" @@ -2998,7 +2998,7 @@ msgstr "" msgid "Insert a meaningful line to evaluate the headline." msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:252, ../includes/Elements/Dual_Color_Header.php:604, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Extensions/Table_of_Content.php:1163 +#: ../includes/Elements/Dual_Color_Header.php:252, ../includes/Elements/Dual_Color_Header.php:579, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Extensions/Table_of_Content.php:1163 msgid "Separator" msgstr "" @@ -3050,27 +3050,27 @@ msgstr "" msgid "Second Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:568 +#: ../includes/Elements/Dual_Color_Header.php:543 msgid "Sub-title Style " msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:661 +#: ../includes/Elements/Dual_Color_Header.php:636 msgid "Flex Start" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:669 +#: ../includes/Elements/Dual_Color_Header.php:644 msgid "Flex End" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:683 +#: ../includes/Elements/Dual_Color_Header.php:658 msgid "Distance Between Lines" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:747 +#: ../includes/Elements/Dual_Color_Header.php:722 msgid "Left Line" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:829 +#: ../includes/Elements/Dual_Color_Header.php:804 msgid "Right Line" msgstr "" @@ -4226,7 +4226,7 @@ msgstr "" msgid "Gallery Link Button?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:2885, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224, ../includes/Traits/Controls.php:2033 +#: ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:2885, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224, ../includes/Traits/Controls.php:2016 msgid "Load More Button" msgstr "" @@ -6509,7 +6509,7 @@ msgstr "" msgid "Target Blank" msgstr "" -#: ../includes/Elements/Post_Grid.php:203, ../includes/Elements/Product_Grid.php:764, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/Woo_Product_List.php:1008, ../includes/Traits/Controls.php:1247, ../includes/Traits/Controls.php:1338, ../includes/Traits/Controls.php:1781, ../includes/Traits/Twitter_Feed.php:264 +#: ../includes/Elements/Post_Grid.php:203, ../includes/Elements/Product_Grid.php:764, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/Woo_Product_List.php:1008, ../includes/Traits/Controls.php:1247, ../includes/Traits/Controls.php:1338, ../includes/Traits/Controls.php:1764, ../includes/Traits/Twitter_Feed.php:264 msgid "Read More" msgstr "" @@ -6581,7 +6581,7 @@ msgstr "" msgid "Meta Typography" msgstr "" -#: ../includes/Elements/Post_Grid.php:843, ../includes/Traits/Controls.php:1700 +#: ../includes/Elements/Post_Grid.php:843, ../includes/Traits/Controls.php:1683 msgid "Terms" msgstr "" @@ -7081,7 +7081,7 @@ msgstr "" msgid "Products Count" msgstr "" -#: ../includes/Elements/Product_Grid.php:457, ../includes/Elements/Woo_Product_Carousel.php:836, ../includes/Elements/Woo_Product_Gallery.php:446, ../includes/Elements/Woo_Product_List.php:470, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:331, ../includes/Traits/Controls.php:2276, ../includes/Traits/Controls.php:2315, ../includes/Traits/Controls.php:2378, ../includes/Traits/Controls.php:2416 +#: ../includes/Elements/Product_Grid.php:457, ../includes/Elements/Woo_Product_Carousel.php:836, ../includes/Elements/Woo_Product_Gallery.php:446, ../includes/Elements/Woo_Product_List.php:470, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:331, ../includes/Traits/Controls.php:2259, ../includes/Traits/Controls.php:2298, ../includes/Traits/Controls.php:2361, ../includes/Traits/Controls.php:2399 msgid "Offset" msgstr "" @@ -8246,11 +8246,11 @@ msgstr "" msgid "Card Settings" msgstr "" -#: ../includes/Elements/Twitter_Feed.php:329, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1578, ../includes/Traits/Controls.php:1646 +#: ../includes/Elements/Twitter_Feed.php:329, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1578, ../includes/Traits/Controls.php:1629 msgid "Show Avatar" msgstr "" -#: ../includes/Elements/Twitter_Feed.php:341, ../includes/Traits/Controls.php:1678 +#: ../includes/Elements/Twitter_Feed.php:341, ../includes/Traits/Controls.php:1661 msgid "Show Date" msgstr "" @@ -8898,7 +8898,7 @@ msgstr "" msgid "Title Clickable?" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:478, ../includes/Traits/Controls.php:2504 +#: ../includes/Elements/Woo_Product_Carousel.php:478, ../includes/Traits/Controls.php:2487 msgid "Not Found Message" msgstr "" @@ -9882,39 +9882,39 @@ msgstr "" msgid "Entry Footer" msgstr "" -#: ../includes/Traits/Controls.php:1561, ../includes/Traits/Controls.php:1611, ../includes/Traits/Controls.php:1627, ../includes/Traits/Controls.php:1662 +#: ../includes/Traits/Controls.php:1561, ../includes/Traits/Controls.php:1594, ../includes/Traits/Controls.php:1610, ../includes/Traits/Controls.php:1645 msgid "Show Author Name" msgstr "" -#: ../includes/Traits/Controls.php:2237 +#: ../includes/Traits/Controls.php:2220 msgid "Absolute" msgstr "" -#: ../includes/Traits/Controls.php:2251 +#: ../includes/Traits/Controls.php:2234 msgid "Horizontal Orientation" msgstr "" -#: ../includes/Traits/Controls.php:2354 +#: ../includes/Traits/Controls.php:2337 msgid "Vertical Orientation" msgstr "" -#: ../includes/Traits/Controls.php:2473 +#: ../includes/Traits/Controls.php:2456 msgid "Ninja Tables is not installed/activated on your site. Please install and activate Ninja Tables first." msgstr "" -#: ../includes/Traits/Controls.php:2460 +#: ../includes/Traits/Controls.php:2443 msgid "Table ID" msgstr "" -#: ../includes/Traits/Controls.php:2494 +#: ../includes/Traits/Controls.php:2477 msgid "EventON (Pro) " msgstr "" -#: ../includes/Traits/Controls.php:2492 +#: ../includes/Traits/Controls.php:2475 msgid "EventON" msgstr "" -#: ../includes/Traits/Controls.php:2511 +#: ../includes/Traits/Controls.php:2494 msgid "Style the message when no posts are found." msgstr "" diff --git a/src/css/view/interactive-circle.scss b/src/css/view/interactive-circle.scss index b7a2768e6..2e06a7ea8 100755 --- a/src/css/view/interactive-circle.scss +++ b/src/css/view/interactive-circle.scss @@ -2283,17 +2283,6 @@ top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 81.89% 82.54% at 48.96% 49.88%, - // // #0956c6 3.76%, - // // #07a9f0 55.38%, - // // #93dcfc 100% - // //); - // svg { - // fill: #07a9f0; - // } - //} } } } @@ -2303,35 +2292,11 @@ top: 40%; left: 10%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 81.89% 82.54% at 48.96% 49.88%, - // // #0956c6 3.76%, - // // #07a9f0 55.38%, - // // #93dcfc 100% - // //); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 40%; left: 90%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 73.69% 72.33% at 51.12% 47.67%, - // // #2b3894 3.76%, - // // #364099 14.18%, - // // #5356a8 32.43%, - // // #8078bf 55.38%, - // // #d2a8d1 100% - // //); - // svg { - // fill: #364099; - // } - //} } } } @@ -2341,46 +2306,16 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 81.89% 82.54% at 48.96% 49.88%, - // // #0956c6 3.76%, - // // #07a9f0 55.38%, - // // #93dcfc 100% - // //); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 65.76% 66.29% at 48.95% 49.57%, - // // #b40042 3.76%, - // // #c50048 48.92%, - // // #ff5e93 100% - // //); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-3 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -2390,61 +2325,21 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 81.89% 82.54% at 48.96% 49.88%, - // // #0956c6 3.76%, - // // #07a9f0 55.38%, - // // #93dcfc 100% - // //); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 10.6%; left: 27.6%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 101.16% 101.7% at 47.77% 50.74%, - // // #ff9100 3.76%, - // // #ffb655 56.99%, - // // #fff04a 100% - // //); - // svg { - // fill: #ffb655; - // } - //} } #eael-circle-item-3 { top: 10.6%; left: 72.4%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // //background: radial-gradient( - // // 94.25% 92.56% at 48.86% 49.71%, - // // #199a8e 3.76%, - // // #7af4ab 55.38% - // //); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-4 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -2454,77 +2349,26 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 81.89% 82.54% at 48.96% 49.88%, - // #0956c6 3.76%, - // #07a9f0 55.38%, - // #93dcfc 100% - // ); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 20%; left: 20%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - // svg { - // fill: #ffb655; - // } - //} } #eael-circle-item-3 { top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-4 { top: 20%; left: 80%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-5 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -2534,92 +2378,31 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 81.89% 82.54% at 48.96% 49.88%, - // #0956c6 3.76%, - // #07a9f0 55.38%, - // #93dcfc 100% - // ); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 28.4%; left: 15%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - // svg { - // fill: #ffb655; - // } - //} } #eael-circle-item-3 { top: 3.6%; left: 36.6%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-4 { top: 3.6%; left: 63.4%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-5 { top: 28.4%; left: 85%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-6 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -2629,111 +2412,36 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 81.89% 82.54% at 48.96% 49.88%, - // #0956c6 3.76%, - // #07a9f0 55.38%, - // #93dcfc 100% - // ); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 37.5%; left: 11%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - // svg { - // fill: #ffb655; - // } - //} } #eael-circle-item-3 { top: 10.9%; left: 27.3%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-4 { top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-5 { top: 10.9%; left: 72.7%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-6 { top: 37.5%; left: 89%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - // svg { - // fill: #364099; - // } - //} } #eael-circle-item-7 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -2743,129 +2451,41 @@ top: 72%; left: 2%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 81.89% 82.54% at 48.96% 49.88%, - // #0956c6 3.76%, - // #07a9f0 55.38%, - // #93dcfc 100% - // ); - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-2 { top: 40%; left: 10%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 64.96% 65.32% at 52.18% 47.01%, - // #6f00ff 3.76%, - // #533fff 55.38%, - // #b9aaff 100% - // ); - // svg { - // fill: #715eff; - // } - //} } #eael-circle-item-3 { top: 16%; left: 22.9%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - // svg { - // fill: #ffb655; - // } - //} } #eael-circle-item-4 { top: 1.9%; left: 40.6%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} } #eael-circle-item-5 { top: 1.9%; left: 59.4%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - // svg { - // fill: #364099; - // } - //} } #eael-circle-item-6 { top: 16%; left: 77.1%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} } #eael-circle-item-7 { top: 40%; left: 90%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - // svg { - // fill: #364099; - // } - //} } #eael-circle-item-8 { top: 72%; left: 98%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} } } } @@ -5760,17 +5380,6 @@ top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 81.89% 82.54% at 48.96% 49.88%, - // #0956c6 3.76%, - // #07a9f0 55.38%, - // #93dcfc 100% - // ); - // svg { - // fill: #07a9f0; - // } - //} .eael-circle-icon-shapes { transform: rotate(45deg); } @@ -5779,17 +5388,6 @@ top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 64.96% 65.32% at 52.18% 47.01%, - // #6f00ff 3.76%, - // #533fff 55.38%, - // #b9aaff 100% - // ); - // svg { - // fill: #715eff; - // } - //} .eael-circle-icon-shapes { transform: rotate(135deg); } @@ -5798,17 +5396,6 @@ top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - // svg { - // fill: #ffb655; - // } - //} .eael-circle-icon-shapes { transform: rotate(-45deg); } @@ -5817,17 +5404,6 @@ top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - // svg { - // fill: #c50048; - // } - //} .eael-circle-icon-shapes { transform: rotate(-135deg); } @@ -5836,34 +5412,11 @@ top: 50%; left: 0%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - // svg { - // fill: #364099; - // } - //} } #eael-circle-item-6 { top: 50%; left: 100%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - // svg { - // fill: #7af4ab; - // } - //} .eael-circle-icon-shapes { transform: rotate(180deg); } @@ -5872,19 +5425,6 @@ top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-btn-icon { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - // svg { - // fill: #364099; - // } - //} .eael-circle-icon-shapes { transform: rotate(90deg); } @@ -5893,14 +5433,6 @@ top: 100%; left: 50%; transform: translate(-50%, -50%); - //background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - //); - //svg { - // fill: #199a8e; - //} .eael-circle-icon-shapes { transform: rotate(-90deg); } @@ -6933,153 +6465,41 @@ top: 50%; left: 0%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(-45deg); - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #199a8e; - // } - //} } #eael-circle-item-2 { top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(-90deg); - // background: linear-gradient( - // 144.3deg, - // #476df8 15.07%, - // #6a8aff 97.18% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #07a9f0; - // } - //} } #eael-circle-item-3 { top: 100%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(-135deg); - // background: radial-gradient( - // 64.96% 65.32% at 52.18% 47.01%, - // #6f00ff 3.76%, - // #533fff 55.38%, - // #b9aaff 100% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #715eff; - // } - //} } #eael-circle-item-4 { top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(-180deg); - // background: radial-gradient( - // 101.16% 101.7% at 47.77% 50.74%, - // #ff9100 3.76%, - // #ffb655 56.99%, - // #fff04a 100% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #ffae42; - // } - //} } #eael-circle-item-5 { top: 50%; left: 100%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(135deg); - // background: radial-gradient( - // 65.76% 66.29% at 48.95% 49.57%, - // #b40042 3.76%, - // #c50048 48.92%, - // #ff5e93 100% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #b40042; - // } - //} } #eael-circle-item-6 { top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(90deg); - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #2b3894; - // } - //} } #eael-circle-item-7 { top: 0%; left: 50%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // transform: rotate(45deg); - // background: radial-gradient( - // 94.25% 92.56% at 48.86% 49.71%, - // #199a8e 3.76%, - // #7af4ab 55.38% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #199a8e; - // } - //} } #eael-circle-item-8 { top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); - //.eael-circle-icon-shapes { - // background: radial-gradient( - // 73.69% 72.33% at 51.12% 47.67%, - // #2b3894 3.76%, - // #364099 14.18%, - // #5356a8 32.43%, - // #8078bf 55.38%, - // #d2a8d1 100% - // ); - //} - //.eael-circle-btn-icon { - // svg { - // fill: #2b3894; - // } - //} } } } diff --git a/src/css/view/product-grid.scss b/src/css/view/product-grid.scss index a64b36152..9fedaac3c 100644 --- a/src/css/view/product-grid.scss +++ b/src/css/view/product-grid.scss @@ -177,11 +177,7 @@ content: "\f00c"; } } - //&.product_type_external { - // &:before { - // content: "\f00c"; - // } - //} + &:focus { outline: none; } @@ -439,11 +435,6 @@ content: "\f00c"; } } - //&.product_type_external { - // &:after { - // content: "\f00c"; - // } - //} &.loading { &:before { @@ -931,11 +922,6 @@ content: "\f00c"; } } - //&.product_type_external { - // &:before { - // content: "\f00c"; - // } - //} } &.button.product_type_external { @@ -1188,527 +1174,6 @@ } } } -// popup -//.eael-product-popup { -// position: fixed; -// left: 0; -// top: 0; -// width: 100%; -// height: 100%; -// display: -webkit-box; -// display: -ms-flexbox; -// display: flex; -// -webkit-box-align: center; -// -ms-flex-align: center; -// align-items: center; -// -webkit-box-pack: center; -// -ms-flex-pack: center; -// justify-content: center; -// z-index: -1; -// -// -// &.eael-product-popup-ready { -// z-index: 999; -// opacity: 1 !important; -// } -// -// &.eael-product-zoom-in { -// opacity: 0; -// transition: all 0.3s ease-out; -// -// .eael-product-popup-details { -// opacity: 0; -// transition: all 0.3s ease-in-out; -// transform: scale(0.5); -// } -// } -// -// &.eael-product-zoom-in.eael-product-popup-ready { -// .eael-product-popup-details { -// opacity: 1; -// transform: scale(0.9); -// } -// -// .eael-product-modal-bg { -// opacity: 0.7; -// } -// } -// -// &.eael-product-zoom-in.eael-product-modal-removing { -// .eael-product-modal-bg { -// opacity: 0; -// } -// -// .eael-product-popup-details { -// transform: scale(0.5); -// opacity: 0; -// } -// } -// -// .eael-product-modal-bg { -// position: absolute; -// left: 0; -// top: 0; -// height: 100%; -// width: 100%; -// background: #000000; -// opacity: 0; -// transition: all 0.3s ease-out; -// } -// -// .eael-product-popup-details { -// position: relative; -// margin: 5vh auto; -// padding: 20px; -// border: 1px solid #888; -// max-width: 900px; -// box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); -// background-color: #fefefe; -// width: 100%; -// border-radius: 10px; -// height: auto; -// max-height: fit-content; -// -// .single_add_to_cart_button { -// position: relative; -// } -// -// .single_add_to_cart_button.eael-addtocart-added:after { -// font-family: 'Font Awesome 5 Free'; -// content: "\f00c"; -// font-weight: 900; -// display: inline-block; -// position: absolute; -// right: 12px; -// } -// -// .single_add_to_cart_button.eael-addtocart-loading:after { -// font-family: 'Font Awesome 5 Free'; -// content: '\f110'; -// font-weight: 900; -// position: absolute; -// right: 12px; -// animation: spin 2s linear infinite; -// } -// -// } -// -// -// &.woocommerce div.product { -// display: flex; -// height: 100%; -// overflow-y: auto; -// background: transparent; -// position: relative; -// -// &.ast-article-single, .ast-article-single { -// background: transparent; -// } -// -// @media (max-width: 767px) { -// display: block; -// } -// -// div.images { -// width: 100%; -// margin-bottom: 0; -// -// &.woocommerce-product-gallery .flex-viewport { -// transform-style: preserve-3d; -// margin-bottom: 1em; -// } -// .flex-control-thumbs { -// li:nth-child(4n) { -// margin-right: 0; -// } -// } -// } -// -// div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li { -// width: calc(25% - .75em); -// margin-right: 1em; -// margin-bottom: 1em; -// -// &:last-child { -// margin-right: 0; -// } -// } -// -// .product_title { -// font-size: 28px; -// line-height: 1.2em; -// font-weight: 700; -// margin-bottom: 10px; -// letter-spacing: normal; -// text-transform: capitalize; -// -// &:before { -// content: none; -// } -// } -// -// .price { -// font-size: 25px; -// line-height: 1.2em; -// margin: 0 0 15px; -// text-align: left !important; -// } -// -// .woocommerce-product-details__short-description { -// font-size: 18px; -// line-height: 1.2em; -// margin: 0; -// -// p, p:last-child { -// margin-bottom: 20px; -// } -// } -// -// .button { -// margin: 0 !important; -// line-height: 1.5em; -// } -// -// form.cart { -// margin: 0 0 1.2em; -// padding: 0; -// border: none; -// width: 100%; -// -// table { -// border: none; -// margin: 0 0 1.2em; -// border-collapse: collapse; -// width: 100%; -// -// tbody { -// display: table-row-group; -// border: none; -// } -// } -// -// p.stock { -// margin-bottom: 0; -// } -// -// .group_table { -// td { -// border: none; -// } -// -// .button { -// padding: .8em; -// font-weight: 400; -// font-size: .9rem; -// white-space: nowrap; -// } -// } -// -// div.quantity { -// margin-right: 15px; -// width: auto; -// -// input, a { -// height: 100%; -// border: 1px solid; -// } -// -// input[type="number"] { -// min-width: 90px; -// } -// -// .qty { -// text-align: center; -// -// &:focus { -// outline: none; -// } -// } -// } -// -// .button.single_add_to_cart_button { -// padding: 10px 40px; -// } -// -// .product-single-quantity { -// button.plus, -// button.minus { -// display: none; -// } -// } -// } -// -// .woocommerce-product-rating { -// margin-bottom: 5px; -// -// .star-rating { -// font-size: 16px; -// } -// -// .woocommerce-review-link { -// display: inline-block; -// vertical-align: top; -// font-size: 16px; -// line-height: 18px; -// } -// } -// -// table { -// tbody { -// tr { -// border-bottom: 1px solid #ccc; -// -// td { -// background: transparent; -// vertical-align: middle !important; -// padding: 15px 15px 15px 0 !important; -// } -// } -// } -// } -// -// .product_meta { -// font-size: 14px; -// border-top: 1px solid #ccc; -// border-bottom: 0; -// padding: 1em 0 0; -// margin: 0 0 .8em; -// -// & > span { -// display: block; -// border: none; -// padding: 5px 0; -// } -// } -// } -// -// .eael-product-image-wrap { -// width: 40%; -// -// @media (max-width: 767px) { -// width: 100%; -// } -// -// .badge-container { -// display: none; -// } -// -// .eael-new-product .flex-viewport { -// height: auto !important; -// } -// } -// -// .eael-product-details-wrap { -// width: 56%; -// margin-left: 4%; -// text-align: left; -// -// @media (max-width: 767px) { -// width: 100%; -// margin-left: 0; -// margin-top: 25px; -// } -// -// .is-divider { -// display: none; -// } -// } -// -// button.eael-product-popup-close { -// position: absolute; -// right: -15px; -// top: -18px; -// font-size: 20px; -// padding: 0; -// cursor: pointer; -// box-sizing: content-box; -// overflow: visible; -// background: #fff !important; -// text-align: center; -// box-shadow: 2px 0px 12px 3px rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19); -// color: #000 !important; -// height: 40px; -// width: 40px; -// min-height: 40px; -// max-width: 40px; -// display: flex !important; -// align-items: center; -// justify-content: center; -// border-radius: 50%; -// opacity: 1; -// border: 0; -// margin: 0; -// -// &:focus { -// outline: none; -// } -// } -// -// form.cart { -// display: flex; -// margin-bottom: 20px; -// -// &.variations_form { -// display: block; -// -// .variations { -// border: none; -// -// tr { -// margin-bottom: 5px; -// } -// -// td { -// display: block; -// width: 100%; -// border: none; -// padding: 0; -// margin-bottom: 5px; -// -// select { -// width: 100%; -// } -// } -// } -// -// .variations_button { -// display: flex; -// } -// } -// -// &.grouped_form { -// display: block; -// -// table { -// .button { -// line-height: 1.2em; -// } -// } -// -// .quantity { -// width: 100%; -// -// input, a { -// height: auto !important; -// min-height: 2.507em; -// line-height: 1.2em; -// } -// } -// } -// -// .quantity { -// width: 37%; -// margin-right: 20px; -// -// input { -// width: 100%; -// } -// } -// } -// -// .eael-onsale { -// padding: 5px 10px; -// font-size: 12px; -// font-weight: 500; -// position: absolute; -// text-align: center; -// line-height: 1.2em; -// top: 30px; -// left: 0; -// margin: 0; -// background-color: #ff7a80; -// color: #fff; -// z-index: 9; -// -// &.sale-preset-1 { -// -// &.outofstock { -// br { -// display: none; -// } -// } -// -// &.right { -// left: auto; -// right: 0; -// } -// } -// -// &.sale-preset-2 { -// padding: 0; -// top: 5px; -// left: 5px; -// min-width: 50px; -// min-height: 50px; -// line-height: 50px; -// border-radius: 100%; -// -webkit-font-smoothing: antialiased; -// -// &.outofstock { -// line-height: normal; -// display: flex; -// align-items: center; -// justify-content: center; -// } -// } -// -// &.sale-preset-3 { -// border-radius: 50px; -// left: 15px; -// top: 15px; -// -// &.outofstock { -// br { -// display: none; -// } -// } -// } -// -// &.sale-preset-4 { -// left: 0; -// top: 15px; -// -// &.outofstock { -// br { -// display: none; -// } -// } -// -// &:after { -// position: absolute; -// right: -15px; -// bottom: 0px; -// width: 15px; -// height: 24px; -// border-top: 12px solid transparent; -// border-bottom: 12px solid transparent; -// border-left: 10px solid #23a454; -// content: ''; -// } -// } -// -// &.sale-preset-5 { -// display: block; -// line-height: 74px; -// height: 60px; -// width: 120px; -// left: -39pX; -// top: -10px; -// right: auto; -// padding: 0; -// transform: rotate(-45deg); -// -// &.outofstock { -// line-height: normal; -// padding-top: 12px; -// display: flex; -// align-items: center; -// justify-content: center; -// } -// } -// -// } -//} .eael-product-grid { // pagination @@ -2189,12 +1654,6 @@ content: "\f00c"; } } - - //&.product_type_external { - // &:before { - // content: "\f00c"; - // } - //} } &.button.product_type_external { padding: 0; @@ -3178,18 +2637,6 @@ } -.theme-oceanwp { - //&.elementor-editor-active { - // .eael-product-popup.woocommerce div.product form.cart div.quantity .qty { - // max-width: 150px; - // } - //} - // - //.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus { - // border: 1px solid; - //} -} - .eael-product-loader { position: relative; diff --git a/src/css/view/woo-product-carousel.scss b/src/css/view/woo-product-carousel.scss index 05468baf8..ba7fd67b7 100644 --- a/src/css/view/woo-product-carousel.scss +++ b/src/css/view/woo-product-carousel.scss @@ -119,40 +119,10 @@ $theme-preset4: #ec3b75; text-align: left; } } - - //@media (min-width: 1025px) { - // &[data-items="1"] .product.swiper-slide{ - // flex: 0 0 100%; - // max-width: 100%; - // } - // &[data-items="2"] .product.swiper-slide{ - // flex: 0 0 50%; - // max-width: 50%; - // } - // &[data-items="3"] .product.swiper-slide{ - // flex: 0 0 33.33333%; - // max-width: 33.33333%; - // } - // &[data-items="4"] .product.swiper-slide{ - // flex: 0 0 25%; - // max-width: 25%; - // } - // &[data-items="5"] .product.swiper-slide{ - // flex: 0 0 20%; - // max-width: 20%; - // } - // &[data-items="6"] .product.swiper-slide{ - // flex: 0 0 16.66666%; - // max-width: 16.66666%; - // } - //} } &.preset-1 { .swiper-pagination .swiper-pagination-bullet { - //border-radius: 2px; - //width: 8px; - //height: 3px; &.swiper-pagination-bullet-active { //width: 20px; @@ -527,14 +497,6 @@ $theme-preset4: #ec3b75; .eael-product-price { color: $theme-preset3; - - //del .amount { - // color: #fff; - //} - //ins .amount, - //.amount { - // color: $theme-preset3; - //} } } @@ -544,19 +506,8 @@ $theme-preset4: #ec3b75; } .product-details-wrap { - //display: flex; - //align-items: center; - //justify-content: space-between; padding: 20px; - .product-details { - //width: 60%; - } - //.eael-product-price { - // width: 40%; - // text-align: right; - //} - .eael-product-excerpt p { margin-top: 5px; } @@ -658,11 +609,6 @@ $theme-preset4: #ec3b75; opacity: .2; } - //// icon - //.icons-wrap li { - // transform: translateX(-70px); - //} - } .icons-wrap { @@ -899,7 +845,7 @@ $theme-preset4: #ec3b75; &.swiper-container-dots-outside .swiper-pagination, &.swiper-container-wrap-dots-outside .swiper-pagination, &.swiper-container-dots-inside .swiper-pagination, - &.swiper-container-wrap-dots-inside .swiper-pagination, { + &.swiper-container-wrap-dots-inside .swiper-pagination { &.dots-preset-1 .swiper-pagination-bullet { border-radius: 2px; @@ -1650,18 +1596,6 @@ $theme-preset4: #ec3b75; } -.theme-oceanwp { - //&.elementor-editor-active { - // .eael-product-popup.woocommerce div.product form.cart div.quantity .qty { - // max-width: 150px; - // } - //} - // - //.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus { - // border: 1px solid; - //} -} - .theme-astra { .woocommerce.eael-woo-product-carousel ul.products, .woocommerce-page .eael-woo-product-carousel ul.products { display: flex; diff --git a/src/css/view/woo-product-gallery.scss b/src/css/view/woo-product-gallery.scss index 6f3e84f2f..fe158657e 100644 --- a/src/css/view/woo-product-gallery.scss +++ b/src/css/view/woo-product-gallery.scss @@ -1247,18 +1247,6 @@ } -.theme-oceanwp { - //&.elementor-editor-active { - // .eael-product-popup.woocommerce div.product form.cart div.quantity .qty { - // max-width: 150px; - // } - //} - // - //.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus { - // border: 1px solid; - //} -} - @-webkit-keyframes ploaderSpin { 0% { -webkit-transform: rotate(0deg); diff --git a/src/js/edit/advanced-data-table.js b/src/js/edit/advanced-data-table.js index c13972995..544dacbc2 100644 --- a/src/js/edit/advanced-data-table.js +++ b/src/js/edit/advanced-data-table.js @@ -392,15 +392,6 @@ class advancedDataTableEdit { // parse table html let origTable = this.parseHTML(eaTable.cloneNode(true)); this.tableInnerHTML = origTable.innerHTML; - - // update table - // this.updateFromView( - // this.view, - // { - // ea_adv_data_table_static_html: this.tableInnerHTML, - // }, - // true - // ); }); } From a60ce780bc06ebdec593973f3417c279be15f3c0 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:25:52 +0600 Subject: [PATCH 03/42] Advanced Accordion: elementor compitable function added --- includes/Elements/Adv_Accordion.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Adv_Accordion.php b/includes/Elements/Adv_Accordion.php index 687ff39de..742791e64 100644 --- a/includes/Elements/Adv_Accordion.php +++ b/includes/Elements/Adv_Accordion.php @@ -74,6 +74,10 @@ public function get_script_depends() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/advanced-accordion/'; From f4635f69aece5c19298750e6db0f0bb51aa8c9fb Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:26:29 +0600 Subject: [PATCH 04/42] Advanced Tabs: elementor compitable function added --- includes/Elements/Adv_Tabs.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Adv_Tabs.php b/includes/Elements/Adv_Tabs.php index 1f5364d31..af9281d16 100644 --- a/includes/Elements/Adv_Tabs.php +++ b/includes/Elements/Adv_Tabs.php @@ -57,6 +57,10 @@ public function get_keywords() 'essential addons', ]; } + + protected function is_dynamic_content():bool { + return false; + } public function get_custom_help_url() { From b01761c96b872c8fe986fcf36f0d842bfbbf8d44 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:42:07 +0600 Subject: [PATCH 05/42] Countdown: elementor compitable function added --- includes/Elements/Countdown.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Countdown.php b/includes/Elements/Countdown.php index 5d568a4d3..69a013c78 100755 --- a/includes/Elements/Countdown.php +++ b/includes/Elements/Countdown.php @@ -51,6 +51,10 @@ public function get_keywords() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/creative-elements/ea-countdown/'; } From ea681d827596faeef3c4bdd32edc1c417762f0cd Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:44:33 +0600 Subject: [PATCH 06/42] Creative Button: elementor compitable function added --- includes/Elements/Creative_Button.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Creative_Button.php b/includes/Elements/Creative_Button.php index fa3699292..726795d22 100755 --- a/includes/Elements/Creative_Button.php +++ b/includes/Elements/Creative_Button.php @@ -57,6 +57,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/creative-buttons/'; From 153d267f1032abba0f82e081744935becbfb10b0 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:50:04 +0600 Subject: [PATCH 07/42] Call To Action: elementor compitable function added --- includes/Elements/Cta_Box.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Cta_Box.php b/includes/Elements/Cta_Box.php index cde0083e4..ef28ae442 100755 --- a/includes/Elements/Cta_Box.php +++ b/includes/Elements/Cta_Box.php @@ -57,6 +57,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/call-to-action/'; } From befff45a808b0fb6b3350b0c7ec32dc71a4a58f6 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:50:47 +0600 Subject: [PATCH 08/42] Data Table: elementor compitable function added --- includes/Elements/Data_Table.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Data_Table.php b/includes/Elements/Data_Table.php index 627d23a97..d56dd9782 100755 --- a/includes/Elements/Data_Table.php +++ b/includes/Elements/Data_Table.php @@ -58,6 +58,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/data-table/'; From b8e973b4cad97a4ea1c38ca5e245a9df51b5af4b Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:52:09 +0600 Subject: [PATCH 09/42] Dual Color Header: elementor compitable function added --- includes/Elements/Dual_Color_Header.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Dual_Color_Header.php b/includes/Elements/Dual_Color_Header.php index f88a719a4..eb09b3780 100644 --- a/includes/Elements/Dual_Color_Header.php +++ b/includes/Elements/Dual_Color_Header.php @@ -54,6 +54,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/dual-color-headline/'; From 58ca07c3b444154c2a8b7dd49dc66af8a81dd91a Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 15:58:22 +0600 Subject: [PATCH 10/42] Fancy Text: elementor compitable function added --- includes/Elements/Fancy_Text.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Fancy_Text.php b/includes/Elements/Fancy_Text.php index f75e08327..11fb40ad0 100755 --- a/includes/Elements/Fancy_Text.php +++ b/includes/Elements/Fancy_Text.php @@ -57,6 +57,10 @@ public function get_style_depends() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/fancy-text/'; } From d7566d001c05304942180a3426bb7301f2d34381 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:02:27 +0600 Subject: [PATCH 11/42] Feature List: elementor compitable function added --- includes/Elements/Feature_List.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Feature_List.php b/includes/Elements/Feature_List.php index 13b7ee42d..c5c144f33 100755 --- a/includes/Elements/Feature_List.php +++ b/includes/Elements/Feature_List.php @@ -51,6 +51,10 @@ public function get_keywords() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/ea-feature-list/'; } From 78b4b30e6c195ab31f9443c563d36bb2226d3e08 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:02:53 +0600 Subject: [PATCH 12/42] Filterable Gallery: elementor compitable function added --- includes/Elements/Filterable_Gallery.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Filterable_Gallery.php b/includes/Elements/Filterable_Gallery.php index 6d2bdc8dd..5ced45690 100644 --- a/includes/Elements/Filterable_Gallery.php +++ b/includes/Elements/Filterable_Gallery.php @@ -80,6 +80,10 @@ public function get_keywords() 'essential addons' ]; } + + protected function is_dynamic_content():bool { + return false; + } public function get_custom_help_url() { From bec3e033cb85840cf889aac3da1680577a7a091e Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:04:16 +0600 Subject: [PATCH 13/42] Flip Box: elementor compitable function added --- includes/Elements/Flip_Box.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Flip_Box.php b/includes/Elements/Flip_Box.php index d6cb7a035..72815975a 100644 --- a/includes/Elements/Flip_Box.php +++ b/includes/Elements/Flip_Box.php @@ -60,6 +60,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/flip-box/'; From ad56a36b1a57e8178e3eaeaaa16e27941a367fa3 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:07:52 +0600 Subject: [PATCH 14/42] Image Accordion: elementor compitable function added --- includes/Elements/Image_Accordion.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Image_Accordion.php b/includes/Elements/Image_Accordion.php index 651e6bb5b..35fdc0012 100644 --- a/includes/Elements/Image_Accordion.php +++ b/includes/Elements/Image_Accordion.php @@ -47,6 +47,10 @@ public function get_keywords() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/image-accordion/'; } From b9942e7c84504d74a1e5231ca934154666a72d32 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:09:21 +0600 Subject: [PATCH 15/42] Info Box: elementor compitable function added --- includes/Elements/Info_Box.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Info_Box.php b/includes/Elements/Info_Box.php index 3714bc5c9..414e01d6d 100644 --- a/includes/Elements/Info_Box.php +++ b/includes/Elements/Info_Box.php @@ -55,6 +55,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/info-box/'; From 233adba50ac41d9824de9b5aeef5a8cbc2a5d057 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:14:12 +0600 Subject: [PATCH 16/42] Interactive Circle: elementor compitable function added --- includes/Elements/Interactive_Circle.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Interactive_Circle.php b/includes/Elements/Interactive_Circle.php index 6306c2b45..84327ee64 100644 --- a/includes/Elements/Interactive_Circle.php +++ b/includes/Elements/Interactive_Circle.php @@ -49,6 +49,10 @@ public function get_keywords() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/interactive-circle/'; } From 14b6f11fa552621c19d6891a347f5a083d19c957 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:15:52 +0600 Subject: [PATCH 17/42] Pricing Table: elementor compitable function added --- includes/Elements/Pricing_Table.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Pricing_Table.php b/includes/Elements/Pricing_Table.php index 854c83696..7605331a1 100644 --- a/includes/Elements/Pricing_Table.php +++ b/includes/Elements/Pricing_Table.php @@ -62,6 +62,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/pricing-table/'; From e2db7136fe18d7a61c9f0bd93b806a6f0736e825 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:21:41 +0600 Subject: [PATCH 18/42] Progress Bar: elementor compitable function added --- includes/Elements/Progress_Bar.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Progress_Bar.php b/includes/Elements/Progress_Bar.php index 0dcec482b..e15fbe127 100755 --- a/includes/Elements/Progress_Bar.php +++ b/includes/Elements/Progress_Bar.php @@ -54,6 +54,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/progress-bar/'; From b9937d1083ceeff1574ef0d265666ef216ec45e1 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:22:58 +0600 Subject: [PATCH 19/42] Sticky Video: elementor compitable function added --- includes/Elements/Sticky_Video.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Sticky_Video.php b/includes/Elements/Sticky_Video.php index a96c03c61..dcfbc6433 100755 --- a/includes/Elements/Sticky_Video.php +++ b/includes/Elements/Sticky_Video.php @@ -61,6 +61,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/sticky-video/'; From d15133493b2866a317b62e995cd7fae3af60a063 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:25:28 +0600 Subject: [PATCH 20/42] SVG Draw: elementor compitable function added --- includes/Elements/SVG_Draw.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/SVG_Draw.php b/includes/Elements/SVG_Draw.php index 2fa4d25cb..67c5b93a0 100644 --- a/includes/Elements/SVG_Draw.php +++ b/includes/Elements/SVG_Draw.php @@ -47,6 +47,10 @@ public function get_keywords() { ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/ea-svg-draw/'; } From 83bf9235a998dddda775dc2e7e1b69076fab238c Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:29:22 +0600 Subject: [PATCH 21/42] Team Member: elementor compitable function added --- includes/Elements/Team_Member.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Team_Member.php b/includes/Elements/Team_Member.php index 1a44532d7..ef25add73 100644 --- a/includes/Elements/Team_Member.php +++ b/includes/Elements/Team_Member.php @@ -52,6 +52,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/team-members/'; From 39d2d8b03fc3fd088eb55fcfb729ef7a4de31787 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:30:33 +0600 Subject: [PATCH 22/42] Testimonial: elementor compitable function added --- includes/Elements/Testimonial.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Testimonial.php b/includes/Elements/Testimonial.php index 6a0357e09..40e5a97f2 100644 --- a/includes/Elements/Testimonial.php +++ b/includes/Elements/Testimonial.php @@ -52,6 +52,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/testimonials/'; From 8f99e6da60bd63ace87c8a5c6ba4952933b35721 Mon Sep 17 00:00:00 2001 From: Jakaria Istauk Date: Wed, 28 Aug 2024 16:31:24 +0600 Subject: [PATCH 23/42] Tooltip: elementor compitable function added --- includes/Elements/Tooltip.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Elements/Tooltip.php b/includes/Elements/Tooltip.php index 23bc0ebab..98b5e173b 100755 --- a/includes/Elements/Tooltip.php +++ b/includes/Elements/Tooltip.php @@ -49,6 +49,10 @@ public function get_keywords() ]; } + protected function is_dynamic_content():bool { + return false; + } + public function get_custom_help_url() { return 'https://essential-addons.com/elementor/docs/tooltip/'; From cfd0f61d73d80b2acf62406e66875c26ededb116 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Mon, 2 Sep 2024 19:21:55 +0600 Subject: [PATCH 24/42] fixed -- scroll position changed when clicked on elementor tab --- assets/front-end/js/view/general.js | 2 +- assets/front-end/js/view/general.min.js | 2 +- src/js/view/general.js | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/front-end/js/view/general.js b/assets/front-end/js/view/general.js index 0b343a846..51051343d 100644 --- a/assets/front-end/js/view/general.js +++ b/assets/front-end/js/view/general.js @@ -298,7 +298,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\nea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\nea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n ea.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n ea.getToken = function () {\n if (localize.nonce && !ea.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n ea.noncegenerated = true;\n }\n }\n });\n }\n };\n ea.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tab.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n window.dispatchEvent(new Event('resize'));\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\nea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\nea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n ea.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n ea.getToken = function () {\n if (localize.nonce && !ea.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n ea.noncegenerated = true;\n }\n }\n });\n }\n };\n ea.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tab.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); /***/ }) diff --git a/assets/front-end/js/view/general.min.js b/assets/front-end/js/view/general.min.js index ad7dfbdd6..e572c3edc 100644 --- a/assets/front-end/js/view/general.min.js +++ b/assets/front-end/js/view/general.min.js @@ -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=101)}({101:function(e,t,r){"use strict";r.r(t);var n=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e){return function(t,r,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var c={callback:i,priority:a,namespace:r};if(e[t]){var s,l=e[t].handlers;for(s=l.length;s>0&&!(a>=l[s-1].priority);s--);s===l.length?l[s]=c:l.splice(s,0,c),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=s&&e.currentIndex++}))}else e[t]={handlers:[c],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var c=e[r].handlers,s=function(t){c[t].namespace===i&&(c.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},l=c.length-1;l>=0;l--)s(l);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var c=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var s=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var a=tab.data("custom-id-offset");a=a?parseFloat(a):0,e("html, body").animate({scrollTop:e(o).offset().top-a},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){window.dispatchEvent(new Event("resize"))}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var c={callback:i,priority:a,namespace:r};if(e[t]){var s,l=e[t].handlers;for(s=l.length;s>0&&!(a>=l[s-1].priority);s--);s===l.length?l[s]=c:l.splice(s,0,c),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=s&&e.currentIndex++}))}else e[t]={handlers:[c],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var c=e[r].handlers,s=function(t){c[t].namespace===i&&(c.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},l=c.length-1;l>=0;l--)s(l);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var c=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var s=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var a=tab.data("custom-id-offset");a=a?parseFloat(a):0,e("html, body").animate({scrollTop:e(o).offset().top-a},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t Date: Wed, 4 Sep 2024 12:54:26 +0600 Subject: [PATCH 25/42] asset updated --- .../essential-addons-for-elementor-lite.pot | 1834 ++++++++--------- 1 file changed, 917 insertions(+), 917 deletions(-) diff --git a/languages/essential-addons-for-elementor-lite.pot b/languages/essential-addons-for-elementor-lite.pot index 1ba1f777a..cb8fcd7e8 100755 --- a/languages/essential-addons-for-elementor-lite.pot +++ b/languages/essential-addons-for-elementor-lite.pot @@ -45,11 +45,11 @@ msgstr "" msgid "of" msgstr "" -#: ../includes/Classes/Helper.php:246, ../includes/Elements/Adv_Accordion.php:453, ../includes/Elements/Adv_Tabs.php:387, ../includes/Elements/Contact_Form_7.php:273, ../includes/Elements/Content_Ticker.php:309, ../includes/Elements/Countdown.php:568, ../includes/Elements/Creative_Button.php:194, ../includes/Elements/Cta_Box.php:487, ../includes/Elements/Data_Table.php:503, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:281, ../includes/Elements/Filterable_Gallery.php:1013, ../includes/Elements/Flip_Box.php:754, ../includes/Elements/Info_Box.php:508, ../includes/Elements/Login_Register.php:1892, ../includes/Elements/Pricing_Table.php:749, ../includes/Elements/Progress_Bar.php:315, ../includes/Elements/Team_Member.php:246, ../includes/Elements/Testimonial.php:223, ../includes/Elements/Tooltip.php:528, ../includes/Elements/Twitter_Feed.php:588, ../includes/Elements/WeForms.php:110 +#: ../includes/Classes/Helper.php:246, ../includes/Elements/Adv_Accordion.php:457, ../includes/Elements/Adv_Tabs.php:391, ../includes/Elements/Contact_Form_7.php:273, ../includes/Elements/Content_Ticker.php:309, ../includes/Elements/Countdown.php:572, ../includes/Elements/Creative_Button.php:198, ../includes/Elements/Cta_Box.php:491, ../includes/Elements/Data_Table.php:507, ../includes/Elements/Dual_Color_Header.php:225, ../includes/Elements/Fancy_Text.php:285, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Flip_Box.php:758, ../includes/Elements/Info_Box.php:512, ../includes/Elements/Login_Register.php:1892, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Progress_Bar.php:319, ../includes/Elements/Team_Member.php:250, ../includes/Elements/Testimonial.php:227, ../includes/Elements/Tooltip.php:532, ../includes/Elements/Twitter_Feed.php:588, ../includes/Elements/WeForms.php:110 msgid "Go Premium for More Features" msgstr "" -#: ../includes/Classes/Helper.php:253, ../includes/Elements/Adv_Accordion.php:460, ../includes/Elements/Adv_Tabs.php:394, ../includes/Elements/Contact_Form_7.php:280, ../includes/Elements/Content_Ticker.php:316, ../includes/Elements/Countdown.php:575, ../includes/Elements/Creative_Button.php:201, ../includes/Elements/Cta_Box.php:494, ../includes/Elements/Data_Table.php:510, ../includes/Elements/Dual_Color_Header.php:228, ../includes/Elements/Fancy_Text.php:288, ../includes/Elements/Filterable_Gallery.php:1020, ../includes/Elements/Flip_Box.php:761, ../includes/Elements/Info_Box.php:515, ../includes/Elements/Login_Register.php:1899, ../includes/Elements/Pricing_Table.php:756, ../includes/Elements/Progress_Bar.php:322, ../includes/Elements/Team_Member.php:253, ../includes/Elements/Testimonial.php:230, ../includes/Elements/Tooltip.php:535, ../includes/Elements/Twitter_Feed.php:595, ../includes/Elements/WeForms.php:117 +#: ../includes/Classes/Helper.php:253, ../includes/Elements/Adv_Accordion.php:464, ../includes/Elements/Adv_Tabs.php:398, ../includes/Elements/Contact_Form_7.php:280, ../includes/Elements/Content_Ticker.php:316, ../includes/Elements/Countdown.php:579, ../includes/Elements/Creative_Button.php:205, ../includes/Elements/Cta_Box.php:498, ../includes/Elements/Data_Table.php:514, ../includes/Elements/Dual_Color_Header.php:232, ../includes/Elements/Fancy_Text.php:292, ../includes/Elements/Filterable_Gallery.php:1024, ../includes/Elements/Flip_Box.php:765, ../includes/Elements/Info_Box.php:519, ../includes/Elements/Login_Register.php:1899, ../includes/Elements/Pricing_Table.php:760, ../includes/Elements/Progress_Bar.php:326, ../includes/Elements/Team_Member.php:257, ../includes/Elements/Testimonial.php:234, ../includes/Elements/Tooltip.php:539, ../includes/Elements/Twitter_Feed.php:595, ../includes/Elements/WeForms.php:117 msgid "Unlock more possibilities" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "Post Author" msgstr "" -#: ../includes/Classes/Helper.php:303, ../includes/Controls/Select2.php:30, ../includes/Elements/Betterdocs_Category_Box.php:630, ../includes/Elements/Betterdocs_Category_Box.php:669, ../includes/Elements/Betterdocs_Category_Grid.php:592, ../includes/Elements/Betterdocs_Category_Grid.php:1149, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:261, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:471, ../includes/Elements/Cta_Box.php:300, ../includes/Elements/Event_Calendar.php:163, ../includes/Elements/Event_Calendar.php:1001, ../includes/Elements/Event_Calendar.php:1017, ../includes/Elements/Event_Calendar.php:1018, ../includes/Elements/Event_Calendar.php:2019, ../includes/Elements/Event_Calendar.php:2708, ../includes/Elements/Feature_List.php:185, ../includes/Elements/Feature_List.php:187, ../includes/Elements/Feature_List.php:820, ../includes/Elements/Flip_Box.php:674, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:296, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:475, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:509, ../includes/Elements/GravityForms.php:589, ../includes/Elements/Image_Accordion.php:200, ../includes/Elements/Image_Accordion.php:497, ../includes/Elements/Interactive_Circle.php:192, ../includes/Elements/Login_Register.php:3430, ../includes/Elements/NFT_Gallery.php:348, ../includes/Elements/NFT_Gallery.php:1158, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:446, ../includes/Elements/Post_Grid.php:163, ../includes/Elements/Pricing_Table.php:154, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:782, ../includes/Elements/Woo_Cart.php:195, ../includes/Elements/Woo_Cart.php:442, ../includes/Elements/Woo_Cart.php:576, ../includes/Elements/Woo_Cart.php:650, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Checkout.php:397, ../includes/Elements/Woo_Checkout.php:519, ../includes/Elements/Woo_Checkout.php:693, ../includes/Elements/Woo_Checkout.php:705, ../includes/Elements/Woo_Checkout.php:793, ../includes/Elements/Woo_Product_Carousel.php:1661, ../includes/Elements/Woo_Product_Gallery.php:1977, ../includes/Elements/Woo_Product_List.php:345, ../includes/Elements/Woo_Product_List.php:862, ../includes/Elements/Woo_Product_List.php:1680, ../includes/Elements/Woo_Product_List.php:2362, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:413, ../includes/Extensions/Table_of_Content.php:124, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201 +#: ../includes/Classes/Helper.php:303, ../includes/Controls/Select2.php:30, ../includes/Elements/Betterdocs_Category_Box.php:630, ../includes/Elements/Betterdocs_Category_Box.php:669, ../includes/Elements/Betterdocs_Category_Grid.php:592, ../includes/Elements/Betterdocs_Category_Grid.php:1149, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:261, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:471, ../includes/Elements/Cta_Box.php:304, ../includes/Elements/Event_Calendar.php:163, ../includes/Elements/Event_Calendar.php:1001, ../includes/Elements/Event_Calendar.php:1017, ../includes/Elements/Event_Calendar.php:1018, ../includes/Elements/Event_Calendar.php:2019, ../includes/Elements/Event_Calendar.php:2708, ../includes/Elements/Feature_List.php:189, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:824, ../includes/Elements/Flip_Box.php:678, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:296, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:475, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:509, ../includes/Elements/GravityForms.php:589, ../includes/Elements/Image_Accordion.php:204, ../includes/Elements/Image_Accordion.php:501, ../includes/Elements/Interactive_Circle.php:196, ../includes/Elements/Login_Register.php:3430, ../includes/Elements/NFT_Gallery.php:348, ../includes/Elements/NFT_Gallery.php:1158, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:446, ../includes/Elements/Post_Grid.php:163, ../includes/Elements/Pricing_Table.php:158, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Progress_Bar.php:126, ../includes/Elements/Progress_Bar.php:786, ../includes/Elements/Woo_Cart.php:195, ../includes/Elements/Woo_Cart.php:442, ../includes/Elements/Woo_Cart.php:576, ../includes/Elements/Woo_Cart.php:650, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Checkout.php:397, ../includes/Elements/Woo_Checkout.php:519, ../includes/Elements/Woo_Checkout.php:693, ../includes/Elements/Woo_Checkout.php:705, ../includes/Elements/Woo_Checkout.php:793, ../includes/Elements/Woo_Product_Carousel.php:1661, ../includes/Elements/Woo_Product_Gallery.php:1977, ../includes/Elements/Woo_Product_List.php:345, ../includes/Elements/Woo_Product_List.php:862, ../includes/Elements/Woo_Product_List.php:1680, ../includes/Elements/Woo_Product_List.php:2362, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:413, ../includes/Extensions/Table_of_Content.php:124, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201 msgid "Title" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Dual Color Heading" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:504, ../includes/Elements/Pricing_Table.php:1542, ../includes/Elements/Tooltip.php:26, ../includes/Traits/Admin.php:712 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:504, ../includes/Elements/Pricing_Table.php:1546, ../includes/Elements/Tooltip.php:26, ../includes/Traits/Admin.php:712 msgid "Tooltip" msgstr "" @@ -289,7 +289,7 @@ msgstr "" msgid "Advanced Tabs" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:519, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1258, ../includes/Traits/Admin.php:734 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:519, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1262, ../includes/Traits/Admin.php:734 msgid "Feature List" msgstr "" @@ -345,7 +345,7 @@ msgstr "" msgid "Countdown" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:587, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:70, ../includes/Traits/Admin.php:949 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:587, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:74, ../includes/Traits/Admin.php:949 msgid "Fancy Text" msgstr "" @@ -357,7 +357,7 @@ msgstr "" msgid "Image Accordion" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:602, ../includes/Elements/GravityForms.php:581, ../includes/Elements/GravityForms.php:647, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:127, ../includes/Elements/Progress_Bar.php:179, ../includes/Traits/Admin.php:971 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:602, ../includes/Elements/GravityForms.php:581, ../includes/Elements/GravityForms.php:647, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:131, ../includes/Elements/Progress_Bar.php:183, ../includes/Traits/Admin.php:971 msgid "Progress Bar" msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "Remove" msgstr "" -#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:237, ../includes/Elements/Adv_Tabs.php:264, ../includes/Elements/Data_Table.php:162, ../includes/Elements/Data_Table.php:194, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:168, ../includes/Elements/Filterable_Gallery.php:769, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:445, ../includes/Elements/Info_Box.php:111, ../includes/Elements/NFT_Gallery.php:1035, ../includes/Elements/NFT_Gallery.php:1354, ../includes/Elements/NFT_Gallery.php:1602, ../includes/Elements/Post_Grid.php:123, ../includes/Elements/Post_Timeline.php:239, ../includes/Elements/Tooltip.php:83, ../includes/Elements/Tooltip.php:180, ../includes/Elements/Woo_Cart.php:194, ../includes/Elements/Woo_Product_List.php:602, ../includes/Elements/Woo_Product_List.php:1467, ../includes/Elements/Woo_Product_List.php:1534, ../includes/Traits/Controls.php:672, ../includes/Traits/Controls.php:1004, ../includes/Traits/Controls.php:1142, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71 +#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:241, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Data_Table.php:166, ../includes/Elements/Data_Table.php:198, ../includes/Elements/Feature_List.php:86, ../includes/Elements/Feature_List.php:172, ../includes/Elements/Filterable_Gallery.php:773, ../includes/Elements/Flip_Box.php:209, ../includes/Elements/Flip_Box.php:449, ../includes/Elements/Info_Box.php:115, ../includes/Elements/NFT_Gallery.php:1035, ../includes/Elements/NFT_Gallery.php:1354, ../includes/Elements/NFT_Gallery.php:1602, ../includes/Elements/Post_Grid.php:123, ../includes/Elements/Post_Timeline.php:239, ../includes/Elements/Tooltip.php:87, ../includes/Elements/Tooltip.php:184, ../includes/Elements/Woo_Cart.php:194, ../includes/Elements/Woo_Product_List.php:602, ../includes/Elements/Woo_Product_List.php:1467, ../includes/Elements/Woo_Product_List.php:1534, ../includes/Traits/Controls.php:672, ../includes/Traits/Controls.php:1004, ../includes/Traits/Controls.php:1142, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71 msgid "Image" msgstr "" -#: ../includes/Controls/Select2.php:31, ../includes/Elements/Filterable_Gallery.php:2241, ../includes/Elements/GravityForms.php:1368, ../includes/Elements/NFT_Gallery.php:1220, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:226, ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:2789, ../includes/Elements/Woo_Cart.php:196, ../includes/Elements/Woo_Cart.php:397, ../includes/Elements/Woo_Cart.php:563, ../includes/Elements/Woo_Cart.php:578, ../includes/Elements/Woo_Checkout.php:267, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1690, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:2006, ../includes/Elements/Woo_Product_List.php:145, ../includes/Elements/Woo_Product_List.php:363, ../includes/Elements/Woo_Product_List.php:1758, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79 +#: ../includes/Controls/Select2.php:31, ../includes/Elements/Filterable_Gallery.php:2245, ../includes/Elements/GravityForms.php:1368, ../includes/Elements/NFT_Gallery.php:1220, ../includes/Elements/Pricing_Table.php:223, ../includes/Elements/Pricing_Table.php:230, ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:2789, ../includes/Elements/Woo_Cart.php:196, ../includes/Elements/Woo_Cart.php:397, ../includes/Elements/Woo_Cart.php:563, ../includes/Elements/Woo_Cart.php:578, ../includes/Elements/Woo_Checkout.php:267, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1690, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:2006, ../includes/Elements/Woo_Product_List.php:145, ../includes/Elements/Woo_Product_List.php:363, ../includes/Elements/Woo_Product_List.php:1758, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79 msgid "Price" msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Data Source" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:80, ../includes/Elements/Business_Reviews.php:99, ../includes/Elements/Event_Calendar.php:94, ../includes/Elements/Facebook_Feed.php:126, ../includes/Elements/NFT_Gallery.php:78, ../includes/Elements/Product_Grid.php:417, ../includes/Elements/Sticky_Video.php:144, ../includes/Elements/SVG_Draw.php:81, ../includes/Elements/Woo_Product_Gallery.php:408, ../includes/Elements/Woo_Product_List.php:442, ../includes/Traits/Controls.php:67 +#: ../includes/Elements/Advanced_Data_Table.php:80, ../includes/Elements/Business_Reviews.php:99, ../includes/Elements/Event_Calendar.php:94, ../includes/Elements/Facebook_Feed.php:126, ../includes/Elements/NFT_Gallery.php:78, ../includes/Elements/Product_Grid.php:417, ../includes/Elements/Sticky_Video.php:148, ../includes/Elements/SVG_Draw.php:85, ../includes/Elements/Woo_Product_Gallery.php:408, ../includes/Elements/Woo_Product_List.php:442, ../includes/Traits/Controls.php:67 msgid "Source" msgstr "" @@ -613,7 +613,7 @@ msgstr "" msgid "TablePress" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:110, ../includes/Elements/Event_Calendar.php:139, ../includes/Elements/Progress_Bar.php:111, ../includes/Elements/Woo_Cart.php:160, ../includes/Elements/Woo_Checkout.php:160 +#: ../includes/Elements/Advanced_Data_Table.php:110, ../includes/Elements/Event_Calendar.php:139, ../includes/Elements/Progress_Bar.php:115, ../includes/Elements/Woo_Cart.php:160, ../includes/Elements/Woo_Checkout.php:160 msgid "Only Available in Pro Version!" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "Sort" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Event_Calendar.php:957, ../includes/Elements/Filterable_Gallery.php:2591, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:1095, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:1442, ../includes/Elements/Login_Register.php:1050, ../includes/Elements/Login_Register.php:2009, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:944, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Checkout.php:727, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:905 +#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Event_Calendar.php:957, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:1095, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:1442, ../includes/Elements/Login_Register.php:1050, ../includes/Elements/Login_Register.php:2009, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:944, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Checkout.php:727, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:905 msgid "Placeholder" msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "Pagination Type" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:196, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Betterdocs_Category_Grid.php:1293, ../includes/Elements/Event_Calendar.php:2048, ../includes/Elements/Flip_Box.php:675, ../includes/Elements/FluentForm.php:1970, ../includes/Elements/Formstack.php:1777, ../includes/Elements/Info_Box.php:362, ../includes/Elements/Interactive_Circle.php:85, ../includes/Elements/Interactive_Circle.php:172, ../includes/Elements/NFT_Gallery.php:477, ../includes/Elements/NFT_Gallery.php:1846, ../includes/Elements/Pricing_Table.php:550, ../includes/Elements/Pricing_Table.php:1900, ../includes/Elements/Product_Grid.php:903, ../includes/Elements/Product_Grid.php:2131, ../includes/Elements/Woo_Cart.php:1870, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Checkout.php:1659, ../includes/Elements/Woo_Checkout.php:2030, ../includes/Elements/Woo_Checkout.php:2901, ../includes/Elements/Woo_Product_Carousel.php:1444, ../includes/Elements/Woo_Product_Gallery.php:659, ../includes/Elements/Woo_Product_Gallery.php:1854, ../includes/Elements/Woo_Product_List.php:262, ../includes/Traits/Controls.php:792, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261 +#: ../includes/Elements/Advanced_Data_Table.php:196, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Betterdocs_Category_Grid.php:1293, ../includes/Elements/Event_Calendar.php:2048, ../includes/Elements/Flip_Box.php:679, ../includes/Elements/FluentForm.php:1970, ../includes/Elements/Formstack.php:1777, ../includes/Elements/Info_Box.php:366, ../includes/Elements/Interactive_Circle.php:89, ../includes/Elements/Interactive_Circle.php:176, ../includes/Elements/NFT_Gallery.php:477, ../includes/Elements/NFT_Gallery.php:1846, ../includes/Elements/Pricing_Table.php:554, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Product_Grid.php:903, ../includes/Elements/Product_Grid.php:2131, ../includes/Elements/Woo_Cart.php:1870, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Checkout.php:1659, ../includes/Elements/Woo_Checkout.php:2030, ../includes/Elements/Woo_Checkout.php:2901, ../includes/Elements/Woo_Product_Carousel.php:1444, ../includes/Elements/Woo_Product_Gallery.php:659, ../includes/Elements/Woo_Product_Gallery.php:1854, ../includes/Elements/Woo_Product_List.php:262, ../includes/Traits/Controls.php:792, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261 msgid "Button" msgstr "" @@ -661,11 +661,11 @@ msgstr "" msgid "Export/Import" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:245, ../includes/Elements/Data_Table.php:490 +#: ../includes/Elements/Advanced_Data_Table.php:245, ../includes/Elements/Data_Table.php:494 msgid "Export table as CSV file" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:247, ../includes/Elements/Data_Table.php:483, ../includes/Elements/Data_Table.php:492 +#: ../includes/Elements/Advanced_Data_Table.php:247, ../includes/Elements/Data_Table.php:487, ../includes/Elements/Data_Table.php:496 msgid "Export" msgstr "" @@ -689,19 +689,19 @@ msgstr "" msgid "Table" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2154, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:475, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:1188, ../includes/Elements/Dual_Color_Header.php:755, ../includes/Elements/Dual_Color_Header.php:835, ../includes/Elements/Event_Calendar.php:1355, ../includes/Elements/Filterable_Gallery.php:2456, ../includes/Elements/Filterable_Gallery.php:2619, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:637, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:399, ../includes/Elements/Sticky_Video.php:487, ../includes/Elements/Sticky_Video.php:571, ../includes/Elements/SVG_Draw.php:137, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1452, ../includes/Elements/Woo_Product_Carousel.php:2282, ../includes/Elements/Woo_Product_Carousel.php:2485, ../includes/Elements/Woo_Product_Carousel.php:2565, ../includes/Elements/Woo_Product_Gallery.php:1341, ../includes/Elements/Woo_Product_List.php:1483, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/WpForms.php:1172, ../includes/Elements/WpForms.php:1186, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 +#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2154, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:479, ../includes/Elements/Data_Table.php:546, ../includes/Elements/Data_Table.php:1192, ../includes/Elements/Dual_Color_Header.php:759, ../includes/Elements/Dual_Color_Header.php:839, ../includes/Elements/Event_Calendar.php:1355, ../includes/Elements/Filterable_Gallery.php:2460, ../includes/Elements/Filterable_Gallery.php:2623, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:641, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:403, ../includes/Elements/Sticky_Video.php:491, ../includes/Elements/Sticky_Video.php:575, ../includes/Elements/SVG_Draw.php:141, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1452, ../includes/Elements/Woo_Product_Carousel.php:2282, ../includes/Elements/Woo_Product_Carousel.php:2485, ../includes/Elements/Woo_Product_Carousel.php:2565, ../includes/Elements/Woo_Product_Gallery.php:1341, ../includes/Elements/Woo_Product_List.php:1483, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/WpForms.php:1172, ../includes/Elements/WpForms.php:1186, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 msgid "Width" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:703, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Accordion.php:826, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Accordion.php:1033, ../includes/Elements/Adv_Accordion.php:1080, ../includes/Elements/Adv_Accordion.php:1127, ../includes/Elements/Adv_Tabs.php:449, ../includes/Elements/Adv_Tabs.php:647, ../includes/Elements/Adv_Tabs.php:714, ../includes/Elements/Adv_Tabs.php:783, ../includes/Elements/Adv_Tabs.php:877, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2286, ../includes/Elements/Business_Reviews.php:2448, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:720, ../includes/Elements/Cta_Box.php:645, ../includes/Elements/Cta_Box.php:974, ../includes/Elements/Cta_Box.php:1337, ../includes/Elements/Data_Table.php:673, ../includes/Elements/Data_Table.php:712, ../includes/Elements/Data_Table.php:904, ../includes/Elements/Data_Table.php:1255, ../includes/Elements/Dual_Color_Header.php:354, ../includes/Elements/Event_Calendar.php:2099, ../includes/Elements/Event_Calendar.php:2166, ../includes/Elements/Event_Calendar.php:2220, ../includes/Elements/Event_Calendar.php:2924, ../includes/Elements/Event_Calendar.php:2995, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1089, ../includes/Elements/Filterable_Gallery.php:1202, ../includes/Elements/Filterable_Gallery.php:1268, ../includes/Elements/Filterable_Gallery.php:1348, ../includes/Elements/Filterable_Gallery.php:1501, ../includes/Elements/Filterable_Gallery.php:1558, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2129, ../includes/Elements/Filterable_Gallery.php:2190, ../includes/Elements/Filterable_Gallery.php:2715, ../includes/Elements/Filterable_Gallery.php:2844, ../includes/Elements/Filterable_Gallery.php:2962, ../includes/Elements/Flip_Box.php:1016, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:363, ../includes/Elements/Image_Accordion.php:474, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:833, ../includes/Elements/Info_Box.php:913, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1147, ../includes/Elements/Interactive_Circle.php:563, ../includes/Elements/Interactive_Circle.php:721, ../includes/Elements/Interactive_Circle.php:988, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:294, ../includes/Elements/Pricing_Table.php:1851, ../includes/Elements/Pricing_Table.php:2019, ../includes/Elements/Product_Grid.php:2601, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:460, ../includes/Elements/Team_Member.php:548, ../includes/Elements/Testimonial.php:470, ../includes/Elements/Tooltip.php:453, ../includes/Elements/Tooltip.php:497, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1920, ../includes/Elements/Woo_Checkout.php:2198, ../includes/Elements/Woo_Product_Carousel.php:2390, ../includes/Elements/Woo_Product_Carousel.php:2824, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:823, ../includes/Elements/WpForms.php:1242, ../includes/Elements/WpForms.php:1351, ../includes/Extensions/Table_of_Content.php:723, ../includes/Traits/Controls.php:1995, ../includes/Traits/Controls.php:2107, ../includes/Traits/Controls.php:2056, ../includes/Traits/Controls.php:2238 +#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:516, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:768, ../includes/Elements/Adv_Accordion.php:830, ../includes/Elements/Adv_Accordion.php:913, ../includes/Elements/Adv_Accordion.php:1037, ../includes/Elements/Adv_Accordion.php:1084, ../includes/Elements/Adv_Accordion.php:1131, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:651, ../includes/Elements/Adv_Tabs.php:718, ../includes/Elements/Adv_Tabs.php:787, ../includes/Elements/Adv_Tabs.php:881, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2286, ../includes/Elements/Business_Reviews.php:2448, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:724, ../includes/Elements/Cta_Box.php:649, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Cta_Box.php:1341, ../includes/Elements/Data_Table.php:677, ../includes/Elements/Data_Table.php:716, ../includes/Elements/Data_Table.php:908, ../includes/Elements/Data_Table.php:1259, ../includes/Elements/Dual_Color_Header.php:358, ../includes/Elements/Event_Calendar.php:2099, ../includes/Elements/Event_Calendar.php:2166, ../includes/Elements/Event_Calendar.php:2220, ../includes/Elements/Event_Calendar.php:2924, ../includes/Elements/Event_Calendar.php:2995, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1093, ../includes/Elements/Filterable_Gallery.php:1206, ../includes/Elements/Filterable_Gallery.php:1272, ../includes/Elements/Filterable_Gallery.php:1352, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1562, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2133, ../includes/Elements/Filterable_Gallery.php:2194, ../includes/Elements/Filterable_Gallery.php:2719, ../includes/Elements/Filterable_Gallery.php:2848, ../includes/Elements/Filterable_Gallery.php:2966, ../includes/Elements/Flip_Box.php:1020, ../includes/Elements/Flip_Box.php:1134, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:367, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:588, ../includes/Elements/Info_Box.php:643, ../includes/Elements/Info_Box.php:837, ../includes/Elements/Info_Box.php:917, ../includes/Elements/Info_Box.php:1070, ../includes/Elements/Info_Box.php:1151, ../includes/Elements/Interactive_Circle.php:567, ../includes/Elements/Interactive_Circle.php:725, ../includes/Elements/Interactive_Circle.php:992, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:294, ../includes/Elements/Pricing_Table.php:1855, ../includes/Elements/Pricing_Table.php:2023, ../includes/Elements/Product_Grid.php:2601, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:464, ../includes/Elements/Team_Member.php:552, ../includes/Elements/Testimonial.php:474, ../includes/Elements/Tooltip.php:457, ../includes/Elements/Tooltip.php:501, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1920, ../includes/Elements/Woo_Checkout.php:2198, ../includes/Elements/Woo_Product_Carousel.php:2390, ../includes/Elements/Woo_Product_Carousel.php:2824, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:823, ../includes/Elements/WpForms.php:1242, ../includes/Elements/WpForms.php:1351, ../includes/Extensions/Table_of_Content.php:723, ../includes/Traits/Controls.php:1995, ../includes/Traits/Controls.php:2107, ../includes/Traits/Controls.php:2056, ../includes/Traits/Controls.php:2238 msgid "Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:519, ../includes/Elements/Adv_Accordion.php:710, ../includes/Elements/Adv_Accordion.php:771, ../includes/Elements/Adv_Accordion.php:833, ../includes/Elements/Adv_Tabs.php:457, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:721, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Adv_Tabs.php:884, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:850, ../includes/Elements/Business_Reviews.php:980, ../includes/Elements/Business_Reviews.php:1466, ../includes/Elements/Business_Reviews.php:1594, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:728, ../includes/Elements/Creative_Button.php:341, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:1007, ../includes/Elements/Cta_Box.php:1345, ../includes/Elements/Dual_Color_Header.php:362, ../includes/Elements/Event_Calendar.php:1418, ../includes/Elements/Event_Calendar.php:1749, ../includes/Elements/Event_Calendar.php:2107, ../includes/Elements/Event_Calendar.php:2174, ../includes/Elements/Event_Calendar.php:2228, ../includes/Elements/Event_Calendar.php:2470, ../includes/Elements/Event_Calendar.php:2641, ../includes/Elements/Event_Calendar.php:2932, ../includes/Elements/Event_Calendar.php:3003, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:531, ../includes/Elements/Feature_List.php:725, ../includes/Elements/Filterable_Gallery.php:1097, ../includes/Elements/Filterable_Gallery.php:1210, ../includes/Elements/Filterable_Gallery.php:1276, ../includes/Elements/Filterable_Gallery.php:1356, ../includes/Elements/Filterable_Gallery.php:1566, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2198, ../includes/Elements/Filterable_Gallery.php:2368, ../includes/Elements/Filterable_Gallery.php:2499, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Filterable_Gallery.php:2737, ../includes/Elements/Filterable_Gallery.php:2852, ../includes/Elements/Filterable_Gallery.php:2976, ../includes/Elements/Flip_Box.php:853, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:1039, ../includes/Elements/Flip_Box.php:1153, ../includes/Elements/Flip_Box.php:1414, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:371, ../includes/Elements/Image_Accordion.php:462, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:302, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:570, ../includes/Elements/Pricing_Table.php:833, ../includes/Elements/Pricing_Table.php:1622, ../includes/Elements/Pricing_Table.php:1874, ../includes/Elements/Pricing_Table.php:2027, ../includes/Elements/Product_Grid.php:1211, ../includes/Elements/Product_Grid.php:2318, ../includes/Elements/Product_Grid.php:2708, ../includes/Elements/Product_Grid.php:3048, ../includes/Elements/Product_Grid.php:3247, ../includes/Elements/Product_Grid.php:3279, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:637, ../includes/Elements/SVG_Draw.php:444, ../includes/Elements/Team_Member.php:468, ../includes/Elements/Team_Member.php:567, ../includes/Elements/Team_Member.php:818, ../includes/Elements/Testimonial.php:489, ../includes/Elements/Tooltip.php:514, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:919, ../includes/Elements/Woo_Checkout.php:1080, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1560, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Checkout.php:1929, ../includes/Elements/Woo_Checkout.php:2136, ../includes/Elements/Woo_Checkout.php:2344, ../includes/Elements/Woo_Checkout.php:2550, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:3018, ../includes/Elements/Woo_Product_Carousel.php:1139, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Carousel.php:1962, ../includes/Elements/Woo_Product_Carousel.php:2158, ../includes/Elements/Woo_Product_Carousel.php:2190, ../includes/Elements/Woo_Product_Carousel.php:2400, ../includes/Elements/Woo_Product_Carousel.php:2523, ../includes/Elements/Woo_Product_Carousel.php:2647, ../includes/Elements/Woo_Product_Carousel.php:2834, ../includes/Elements/Woo_Product_Gallery.php:842, ../includes/Elements/Woo_Product_Gallery.php:1905, ../includes/Elements/Woo_Product_Gallery.php:2306, ../includes/Elements/Woo_Product_Gallery.php:2505, ../includes/Elements/Woo_Product_Gallery.php:2537, ../includes/Elements/Woo_Product_List.php:1306, ../includes/Elements/Woo_Product_List.php:1419, ../includes/Elements/Woo_Product_List.php:1542, ../includes/Elements/Woo_Product_List.php:1832, ../includes/Elements/Woo_Product_List.php:1894, ../includes/Elements/Woo_Product_List.php:1959, ../includes/Elements/Woo_Product_List.php:2030, ../includes/Elements/Woo_Product_List.php:3162, ../includes/Elements/Woo_Product_List.php:3360, ../includes/Elements/Woo_Product_List.php:3392, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1056, ../includes/Elements/WpForms.php:1082, ../includes/Elements/WpForms.php:1252, ../includes/Elements/WpForms.php:1361, ../includes/Extensions/Scroll_to_Top.php:430, ../includes/Extensions/Table_of_Content.php:746, ../includes/Extensions/Table_of_Content.php:963, ../includes/Traits/Controls.php:2003, ../includes/Traits/Controls.php:2115, ../includes/Traits/Controls.php:2067, ../includes/Traits/Controls.php:2246, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 +#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:523, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Accordion.php:775, ../includes/Elements/Adv_Accordion.php:837, ../includes/Elements/Adv_Tabs.php:461, ../includes/Elements/Adv_Tabs.php:658, ../includes/Elements/Adv_Tabs.php:725, ../includes/Elements/Adv_Tabs.php:794, ../includes/Elements/Adv_Tabs.php:888, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:850, ../includes/Elements/Business_Reviews.php:980, ../includes/Elements/Business_Reviews.php:1466, ../includes/Elements/Business_Reviews.php:1594, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:732, ../includes/Elements/Creative_Button.php:345, ../includes/Elements/Cta_Box.php:657, ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Cta_Box.php:1349, ../includes/Elements/Dual_Color_Header.php:366, ../includes/Elements/Event_Calendar.php:1418, ../includes/Elements/Event_Calendar.php:1749, ../includes/Elements/Event_Calendar.php:2107, ../includes/Elements/Event_Calendar.php:2174, ../includes/Elements/Event_Calendar.php:2228, ../includes/Elements/Event_Calendar.php:2470, ../includes/Elements/Event_Calendar.php:2641, ../includes/Elements/Event_Calendar.php:2932, ../includes/Elements/Event_Calendar.php:3003, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:535, ../includes/Elements/Feature_List.php:729, ../includes/Elements/Filterable_Gallery.php:1101, ../includes/Elements/Filterable_Gallery.php:1214, ../includes/Elements/Filterable_Gallery.php:1280, ../includes/Elements/Filterable_Gallery.php:1360, ../includes/Elements/Filterable_Gallery.php:1570, ../includes/Elements/Filterable_Gallery.php:2141, ../includes/Elements/Filterable_Gallery.php:2202, ../includes/Elements/Filterable_Gallery.php:2372, ../includes/Elements/Filterable_Gallery.php:2503, ../includes/Elements/Filterable_Gallery.php:2643, ../includes/Elements/Filterable_Gallery.php:2741, ../includes/Elements/Filterable_Gallery.php:2856, ../includes/Elements/Filterable_Gallery.php:2980, ../includes/Elements/Flip_Box.php:857, ../includes/Elements/Flip_Box.php:918, ../includes/Elements/Flip_Box.php:1043, ../includes/Elements/Flip_Box.php:1157, ../includes/Elements/Flip_Box.php:1418, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:375, ../includes/Elements/Image_Accordion.php:466, ../includes/Elements/Info_Box.php:1234, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:302, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:570, ../includes/Elements/Pricing_Table.php:837, ../includes/Elements/Pricing_Table.php:1626, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Pricing_Table.php:2031, ../includes/Elements/Product_Grid.php:1211, ../includes/Elements/Product_Grid.php:2318, ../includes/Elements/Product_Grid.php:2708, ../includes/Elements/Product_Grid.php:3048, ../includes/Elements/Product_Grid.php:3247, ../includes/Elements/Product_Grid.php:3279, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:641, ../includes/Elements/SVG_Draw.php:448, ../includes/Elements/Team_Member.php:472, ../includes/Elements/Team_Member.php:571, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Testimonial.php:493, ../includes/Elements/Tooltip.php:518, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:919, ../includes/Elements/Woo_Checkout.php:1080, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1560, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Checkout.php:1929, ../includes/Elements/Woo_Checkout.php:2136, ../includes/Elements/Woo_Checkout.php:2344, ../includes/Elements/Woo_Checkout.php:2550, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:3018, ../includes/Elements/Woo_Product_Carousel.php:1139, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Carousel.php:1962, ../includes/Elements/Woo_Product_Carousel.php:2158, ../includes/Elements/Woo_Product_Carousel.php:2190, ../includes/Elements/Woo_Product_Carousel.php:2400, ../includes/Elements/Woo_Product_Carousel.php:2523, ../includes/Elements/Woo_Product_Carousel.php:2647, ../includes/Elements/Woo_Product_Carousel.php:2834, ../includes/Elements/Woo_Product_Gallery.php:842, ../includes/Elements/Woo_Product_Gallery.php:1905, ../includes/Elements/Woo_Product_Gallery.php:2306, ../includes/Elements/Woo_Product_Gallery.php:2505, ../includes/Elements/Woo_Product_Gallery.php:2537, ../includes/Elements/Woo_Product_List.php:1306, ../includes/Elements/Woo_Product_List.php:1419, ../includes/Elements/Woo_Product_List.php:1542, ../includes/Elements/Woo_Product_List.php:1832, ../includes/Elements/Woo_Product_List.php:1894, ../includes/Elements/Woo_Product_List.php:1959, ../includes/Elements/Woo_Product_List.php:2030, ../includes/Elements/Woo_Product_List.php:3162, ../includes/Elements/Woo_Product_List.php:3360, ../includes/Elements/Woo_Product_List.php:3392, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1056, ../includes/Elements/WpForms.php:1082, ../includes/Elements/WpForms.php:1252, ../includes/Elements/WpForms.php:1361, ../includes/Extensions/Scroll_to_Top.php:430, ../includes/Extensions/Table_of_Content.php:746, ../includes/Extensions/Table_of_Content.php:963, ../includes/Traits/Controls.php:2003, ../includes/Traits/Controls.php:2115, ../includes/Traits/Controls.php:2067, ../includes/Traits/Controls.php:2246, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 msgid "Border Radius" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:404, ../includes/Elements/Advanced_Data_Table.php:1472, ../includes/Elements/Betterdocs_Category_Grid.php:334, ../includes/Elements/Betterdocs_Category_Grid.php:382, ../includes/Elements/Event_Calendar.php:1986, ../includes/Elements/Event_Calendar.php:2956, ../includes/Elements/Event_Calendar.php:3030, ../includes/Elements/Product_Grid.php:1171, ../includes/Elements/Product_Grid.php:1199, ../includes/Elements/Product_Grid.php:3271, ../includes/Elements/Product_Grid.php:3306, ../includes/Elements/Progress_Bar.php:753, ../includes/Elements/Twitter_Feed.php:944, ../includes/Elements/Twitter_Feed.php:1156, ../includes/Elements/Woo_Cart.php:1385, ../includes/Elements/Woo_Cart.php:1567, ../includes/Elements/Woo_Cart.php:2463, ../includes/Elements/Woo_Cart.php:2548, ../includes/Elements/Woo_Cart.php:2633, ../includes/Elements/Woo_Product_Carousel.php:1098, ../includes/Elements/Woo_Product_Carousel.php:1127, ../includes/Elements/Woo_Product_Carousel.php:2182, ../includes/Elements/Woo_Product_Carousel.php:2217, ../includes/Elements/Woo_Product_Carousel.php:2896, ../includes/Elements/Woo_Product_Gallery.php:802, ../includes/Elements/Woo_Product_Gallery.php:830, ../includes/Elements/Woo_Product_Gallery.php:1421, ../includes/Elements/Woo_Product_Gallery.php:1597, ../includes/Elements/Woo_Product_Gallery.php:2529, ../includes/Elements/Woo_Product_Gallery.php:2564, ../includes/Elements/Woo_Product_List.php:3384, ../includes/Elements/Woo_Product_List.php:3419, ../includes/Extensions/Table_of_Content.php:735, ../includes/Extensions/Table_of_Content.php:982, ../includes/Traits/Woo_Product_Comparable.php:1418 +#: ../includes/Elements/Advanced_Data_Table.php:404, ../includes/Elements/Advanced_Data_Table.php:1472, ../includes/Elements/Betterdocs_Category_Grid.php:334, ../includes/Elements/Betterdocs_Category_Grid.php:382, ../includes/Elements/Event_Calendar.php:1986, ../includes/Elements/Event_Calendar.php:2956, ../includes/Elements/Event_Calendar.php:3030, ../includes/Elements/Product_Grid.php:1171, ../includes/Elements/Product_Grid.php:1199, ../includes/Elements/Product_Grid.php:3271, ../includes/Elements/Product_Grid.php:3306, ../includes/Elements/Progress_Bar.php:757, ../includes/Elements/Twitter_Feed.php:944, ../includes/Elements/Twitter_Feed.php:1156, ../includes/Elements/Woo_Cart.php:1385, ../includes/Elements/Woo_Cart.php:1567, ../includes/Elements/Woo_Cart.php:2463, ../includes/Elements/Woo_Cart.php:2548, ../includes/Elements/Woo_Cart.php:2633, ../includes/Elements/Woo_Product_Carousel.php:1098, ../includes/Elements/Woo_Product_Carousel.php:1127, ../includes/Elements/Woo_Product_Carousel.php:2182, ../includes/Elements/Woo_Product_Carousel.php:2217, ../includes/Elements/Woo_Product_Carousel.php:2896, ../includes/Elements/Woo_Product_Gallery.php:802, ../includes/Elements/Woo_Product_Gallery.php:830, ../includes/Elements/Woo_Product_Gallery.php:1421, ../includes/Elements/Woo_Product_Gallery.php:1597, ../includes/Elements/Woo_Product_Gallery.php:2529, ../includes/Elements/Woo_Product_Gallery.php:2564, ../includes/Elements/Woo_Product_List.php:3384, ../includes/Elements/Woo_Product_List.php:3419, ../includes/Extensions/Table_of_Content.php:735, ../includes/Extensions/Table_of_Content.php:982, ../includes/Traits/Woo_Product_Comparable.php:1418 msgid "Box Shadow" msgstr "" @@ -709,31 +709,31 @@ msgstr "" msgid "Head" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2028, ../includes/Elements/Event_Calendar.php:2058, ../includes/Elements/Event_Calendar.php:2275, ../includes/Elements/Event_Calendar.php:2353, ../includes/Elements/Event_Calendar.php:2387, ../includes/Elements/Event_Calendar.php:2633, ../includes/Elements/Event_Calendar.php:2687, ../includes/Elements/Event_Calendar.php:2717, ../includes/Elements/Event_Calendar.php:2746, ../includes/Elements/Event_Calendar.php:2814, ../includes/Elements/Event_Calendar.php:2974, ../includes/Elements/Filterable_Gallery.php:2264, ../includes/Elements/Filterable_Gallery.php:2311, ../includes/Elements/Filterable_Gallery.php:2347, ../includes/Elements/Filterable_Gallery.php:2404, ../includes/Elements/Filterable_Gallery.php:2703, ../includes/Elements/Filterable_Gallery.php:2993, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:383, ../includes/Elements/Post_Grid.php:505, ../includes/Elements/Post_Grid.php:519, ../includes/Elements/Post_Grid.php:663, ../includes/Elements/Post_Grid.php:881, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:550, ../includes/Elements/Product_Grid.php:2768, ../includes/Elements/Product_Grid.php:2799, ../includes/Elements/Product_Grid.php:2841, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Product_Grid.php:3005, ../includes/Elements/Product_Grid.php:3122, ../includes/Elements/Progress_Bar.php:773, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1668, ../includes/Elements/Woo_Checkout.php:2039, ../includes/Elements/Woo_Product_Carousel.php:1670, ../includes/Elements/Woo_Product_Carousel.php:1700, ../includes/Elements/Woo_Product_Carousel.php:1742, ../includes/Elements/Woo_Product_Carousel.php:1821, ../includes/Elements/Woo_Product_Carousel.php:1861, ../includes/Elements/Woo_Product_Carousel.php:1918, ../includes/Elements/Woo_Product_Carousel.php:2037, ../includes/Elements/Woo_Product_Gallery.php:1986, ../includes/Elements/Woo_Product_Gallery.php:2016, ../includes/Elements/Woo_Product_Gallery.php:2058, ../includes/Elements/Woo_Product_Gallery.php:2124, ../includes/Elements/Woo_Product_Gallery.php:2165, ../includes/Elements/Woo_Product_Gallery.php:2206, ../includes/Elements/Woo_Product_Gallery.php:2263, ../includes/Elements/Woo_Product_Gallery.php:2380, ../includes/Elements/Woo_Product_List.php:3038, ../includes/Elements/Woo_Product_List.php:3235, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:872, ../includes/Elements/WpForms.php:1296, ../includes/Traits/Controls.php:1857, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 +#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2028, ../includes/Elements/Event_Calendar.php:2058, ../includes/Elements/Event_Calendar.php:2275, ../includes/Elements/Event_Calendar.php:2353, ../includes/Elements/Event_Calendar.php:2387, ../includes/Elements/Event_Calendar.php:2633, ../includes/Elements/Event_Calendar.php:2687, ../includes/Elements/Event_Calendar.php:2717, ../includes/Elements/Event_Calendar.php:2746, ../includes/Elements/Event_Calendar.php:2814, ../includes/Elements/Event_Calendar.php:2974, ../includes/Elements/Filterable_Gallery.php:2268, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/Filterable_Gallery.php:2351, ../includes/Elements/Filterable_Gallery.php:2408, ../includes/Elements/Filterable_Gallery.php:2707, ../includes/Elements/Filterable_Gallery.php:2997, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:383, ../includes/Elements/Post_Grid.php:505, ../includes/Elements/Post_Grid.php:519, ../includes/Elements/Post_Grid.php:663, ../includes/Elements/Post_Grid.php:881, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:550, ../includes/Elements/Product_Grid.php:2768, ../includes/Elements/Product_Grid.php:2799, ../includes/Elements/Product_Grid.php:2841, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Product_Grid.php:3005, ../includes/Elements/Product_Grid.php:3122, ../includes/Elements/Progress_Bar.php:777, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1668, ../includes/Elements/Woo_Checkout.php:2039, ../includes/Elements/Woo_Product_Carousel.php:1670, ../includes/Elements/Woo_Product_Carousel.php:1700, ../includes/Elements/Woo_Product_Carousel.php:1742, ../includes/Elements/Woo_Product_Carousel.php:1821, ../includes/Elements/Woo_Product_Carousel.php:1861, ../includes/Elements/Woo_Product_Carousel.php:1918, ../includes/Elements/Woo_Product_Carousel.php:2037, ../includes/Elements/Woo_Product_Gallery.php:1986, ../includes/Elements/Woo_Product_Gallery.php:2016, ../includes/Elements/Woo_Product_Gallery.php:2058, ../includes/Elements/Woo_Product_Gallery.php:2124, ../includes/Elements/Woo_Product_Gallery.php:2165, ../includes/Elements/Woo_Product_Gallery.php:2206, ../includes/Elements/Woo_Product_Gallery.php:2263, ../includes/Elements/Woo_Product_Gallery.php:2380, ../includes/Elements/Woo_Product_List.php:3038, ../includes/Elements/Woo_Product_List.php:3235, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:872, ../includes/Elements/WpForms.php:1296, ../includes/Traits/Controls.php:1857, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 msgid "Typography" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Betterdocs_Category_Box.php:766, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Countdown.php:1130, ../includes/Elements/Login_Register.php:3703 +#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Betterdocs_Category_Box.php:766, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Countdown.php:1134, ../includes/Elements/Login_Register.php:3703 msgid "Text Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1076, ../includes/Elements/Business_Reviews.php:2089, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1135, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:574, ../includes/Elements/Data_Table.php:799, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:198, ../includes/Elements/Event_Calendar.php:975, ../includes/Elements/Event_Calendar.php:1285, ../includes/Elements/Event_Calendar.php:2299, ../includes/Elements/Event_Calendar.php:2435, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1523, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/Flip_Box.php:382, ../includes/Elements/Flip_Box.php:622, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:316, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:481, ../includes/Elements/Post_Grid.php:641, ../includes/Elements/Post_Grid.php:711, ../includes/Elements/Post_Grid.php:808, ../includes/Elements/Post_Grid.php:893, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:380, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:289, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Pricing_Table.php:727, ../includes/Elements/Pricing_Table.php:869, ../includes/Elements/Pricing_Table.php:894, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:1975, ../includes/Elements/Product_Grid.php:2517, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Team_Member.php:427, ../includes/Elements/Testimonial.php:349, ../includes/Elements/Tooltip.php:215, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Tooltip.php:390, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:790, ../includes/Elements/Woo_Product_Carousel.php:945, ../includes/Elements/Woo_Product_Carousel.php:1000, ../includes/Elements/Woo_Product_Gallery.php:200, ../includes/Elements/Woo_Product_Gallery.php:230, ../includes/Elements/Woo_Product_Gallery.php:719, ../includes/Elements/Woo_Product_Gallery.php:1697, ../includes/Elements/Woo_Product_List.php:632, ../includes/Elements/Woo_Product_List.php:806, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1146, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:699, ../includes/Traits/Controls.php:1869, ../includes/Traits/Controls.php:1930, ../includes/Traits/Controls.php:2327, ../includes/Traits/Controls.php:2378, ../includes/Traits/Controls.php:2379, ../includes/Traits/Controls.php:2701 +#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:159, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1076, ../includes/Elements/Business_Reviews.php:2089, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:121, ../includes/Elements/Cta_Box.php:218, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Event_Calendar.php:975, ../includes/Elements/Event_Calendar.php:1285, ../includes/Elements/Event_Calendar.php:2299, ../includes/Elements/Event_Calendar.php:2435, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:481, ../includes/Elements/Post_Grid.php:641, ../includes/Elements/Post_Grid.php:711, ../includes/Elements/Post_Grid.php:808, ../includes/Elements/Post_Grid.php:893, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:380, ../includes/Elements/Pricing_Table.php:146, ../includes/Elements/Pricing_Table.php:293, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Pricing_Table.php:731, ../includes/Elements/Pricing_Table.php:873, ../includes/Elements/Pricing_Table.php:898, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:1975, ../includes/Elements/Product_Grid.php:2517, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:431, ../includes/Elements/Testimonial.php:353, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:298, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:790, ../includes/Elements/Woo_Product_Carousel.php:945, ../includes/Elements/Woo_Product_Carousel.php:1000, ../includes/Elements/Woo_Product_Gallery.php:200, ../includes/Elements/Woo_Product_Gallery.php:230, ../includes/Elements/Woo_Product_Gallery.php:719, ../includes/Elements/Woo_Product_Gallery.php:1697, ../includes/Elements/Woo_Product_List.php:632, ../includes/Elements/Woo_Product_List.php:806, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1146, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:699, ../includes/Traits/Controls.php:1869, ../includes/Traits/Controls.php:1930, ../includes/Traits/Controls.php:2327, ../includes/Traits/Controls.php:2378, ../includes/Traits/Controls.php:2379, ../includes/Traits/Controls.php:2701 msgid "Left" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1080, ../includes/Elements/Business_Reviews.php:2093, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Cta_Box.php:212, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Dual_Color_Header.php:665, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1289, ../includes/Elements/Event_Calendar.php:2303, ../includes/Elements/Event_Calendar.php:2439, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:485, ../includes/Elements/Post_Grid.php:645, ../includes/Elements/Post_Grid.php:715, ../includes/Elements/Post_Grid.php:812, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:873, ../includes/Elements/Pricing_Table.php:898, ../includes/Elements/Product_Grid.php:966, ../includes/Elements/Product_Grid.php:1285, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:431, ../includes/Elements/Testimonial.php:353, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:1004, ../includes/Elements/Woo_Product_Gallery.php:204, ../includes/Elements/Woo_Product_Gallery.php:723, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1150, ../includes/Traits/Controls.php:703, ../includes/Traits/Controls.php:1873, ../includes/Traits/Controls.php:1934, ../includes/Traits/Controls.php:2331, ../includes/Traits/Controls.php:2705 +#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1080, ../includes/Elements/Business_Reviews.php:2093, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1143, ../includes/Elements/Creative_Button.php:461, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:216, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:807, ../includes/Elements/Data_Table.php:1056, ../includes/Elements/Dual_Color_Header.php:206, ../includes/Elements/Dual_Color_Header.php:669, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1289, ../includes/Elements/Event_Calendar.php:2303, ../includes/Elements/Event_Calendar.php:2439, ../includes/Elements/Fancy_Text.php:197, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1531, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2783, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Flip_Box.php:630, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:324, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:485, ../includes/Elements/Post_Grid.php:645, ../includes/Elements/Post_Grid.php:715, ../includes/Elements/Post_Grid.php:812, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:877, ../includes/Elements/Pricing_Table.php:902, ../includes/Elements/Product_Grid.php:966, ../includes/Elements/Product_Grid.php:1285, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Progress_Bar.php:372, ../includes/Elements/Progress_Bar.php:641, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:196, ../includes/Elements/Team_Member.php:435, ../includes/Elements/Testimonial.php:357, ../includes/Elements/Tooltip.php:223, ../includes/Elements/Tooltip.php:398, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:1004, ../includes/Elements/Woo_Product_Gallery.php:204, ../includes/Elements/Woo_Product_Gallery.php:723, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1150, ../includes/Traits/Controls.php:703, ../includes/Traits/Controls.php:1873, ../includes/Traits/Controls.php:1934, ../includes/Traits/Controls.php:2331, ../includes/Traits/Controls.php:2705 msgid "Center" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:443, ../includes/Elements/Advanced_Data_Table.php:562, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1137, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:778, ../includes/Elements/Betterdocs_Category_Grid.php:1524, ../includes/Elements/Betterdocs_Category_Grid.php:1549, ../includes/Elements/Business_Reviews.php:1084, ../includes/Elements/Business_Reviews.php:2097, ../includes/Elements/Caldera_Forms.php:244, ../includes/Elements/Caldera_Forms.php:428, ../includes/Elements/Caldera_Forms.php:574, ../includes/Elements/Caldera_Forms.php:1149, ../includes/Elements/Contact_Form_7.php:342, ../includes/Elements/Contact_Form_7.php:457, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1143, ../includes/Elements/Creative_Button.php:461, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Cta_Box.php:211, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:807, ../includes/Elements/Data_Table.php:1056, ../includes/Elements/Dual_Color_Header.php:206, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1293, ../includes/Elements/Event_Calendar.php:2307, ../includes/Elements/Event_Calendar.php:2443, ../includes/Elements/Fancy_Text.php:197, ../includes/Elements/Feature_List.php:332, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1531, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2783, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Flip_Box.php:630, ../includes/Elements/FluentForm.php:278, ../includes/Elements/FluentForm.php:475, ../includes/Elements/FluentForm.php:621, ../includes/Elements/FluentForm.php:1254, ../includes/Elements/FluentForm.php:1499, ../includes/Elements/Formstack.php:345, ../includes/Elements/Formstack.php:460, ../includes/Elements/Formstack.php:776, ../includes/Elements/Formstack.php:1385, ../includes/Elements/GravityForms.php:358, ../includes/Elements/GravityForms.php:495, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:780, ../includes/Elements/GravityForms.php:907, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2456, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:324, ../includes/Elements/Login_Register.php:1350, ../includes/Elements/Login_Register.php:3715, ../includes/Elements/Login_Register.php:4955, ../includes/Elements/Login_Register.php:5304, ../includes/Elements/NFT_Gallery.php:738, ../includes/Elements/NFT_Gallery.php:1906, ../includes/Elements/NinjaForms.php:293, ../includes/Elements/NinjaForms.php:432, ../includes/Elements/NinjaForms.php:616, ../includes/Elements/NinjaForms.php:1311, ../includes/Elements/Post_Grid.php:489, ../includes/Elements/Post_Grid.php:649, ../includes/Elements/Post_Grid.php:719, ../includes/Elements/Post_Grid.php:816, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:143, ../includes/Elements/Pricing_Table.php:290, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Pricing_Table.php:731, ../includes/Elements/Pricing_Table.php:877, ../includes/Elements/Pricing_Table.php:902, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1289, ../includes/Elements/Product_Grid.php:1979, ../includes/Elements/Product_Grid.php:2525, ../includes/Elements/Progress_Bar.php:372, ../includes/Elements/Progress_Bar.php:641, ../includes/Elements/Simple_Menu.php:200, ../includes/Elements/Simple_Menu.php:378, ../includes/Elements/Simple_Menu.php:785, ../includes/Elements/Simple_Menu.php:811, ../includes/Elements/Simple_Menu.php:836, ../includes/Elements/Simple_Menu.php:1227, ../includes/Elements/SVG_Draw.php:196, ../includes/Elements/Team_Member.php:435, ../includes/Elements/Testimonial.php:357, ../includes/Elements/Tooltip.php:223, ../includes/Elements/Tooltip.php:295, ../includes/Elements/Tooltip.php:398, ../includes/Elements/Twitter_Feed.php:568, ../includes/Elements/TypeForm.php:207, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:280, ../includes/Elements/Woo_Cart.php:504, ../includes/Elements/Woo_Cart.php:603, ../includes/Elements/Woo_Cart.php:677, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:1710, ../includes/Elements/Woo_Cart.php:2353, ../includes/Elements/Woo_Product_Carousel.php:791, ../includes/Elements/Woo_Product_Carousel.php:949, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Gallery.php:208, ../includes/Elements/Woo_Product_Gallery.php:234, ../includes/Elements/Woo_Product_Gallery.php:727, ../includes/Elements/Woo_Product_Gallery.php:1701, ../includes/Elements/Woo_Product_List.php:636, ../includes/Elements/Woo_Product_List.php:810, ../includes/Elements/WpForms.php:282, ../includes/Elements/WpForms.php:399, ../includes/Elements/WpForms.php:587, ../includes/Elements/WpForms.php:1154, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:556, ../includes/Traits/Controls.php:707, ../includes/Traits/Controls.php:1877, ../includes/Traits/Controls.php:1938, ../includes/Traits/Controls.php:2335, ../includes/Traits/Controls.php:2378, ../includes/Traits/Controls.php:2379, ../includes/Traits/Controls.php:2709 +#: ../includes/Elements/Advanced_Data_Table.php:443, ../includes/Elements/Advanced_Data_Table.php:562, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1137, ../includes/Elements/Adv_Accordion.php:158, ../includes/Elements/Betterdocs_Category_Box.php:778, ../includes/Elements/Betterdocs_Category_Grid.php:1524, ../includes/Elements/Betterdocs_Category_Grid.php:1549, ../includes/Elements/Business_Reviews.php:1084, ../includes/Elements/Business_Reviews.php:2097, ../includes/Elements/Caldera_Forms.php:244, ../includes/Elements/Caldera_Forms.php:428, ../includes/Elements/Caldera_Forms.php:574, ../includes/Elements/Caldera_Forms.php:1149, ../includes/Elements/Contact_Form_7.php:342, ../includes/Elements/Contact_Form_7.php:457, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:214, ../includes/Elements/Countdown.php:1147, ../includes/Elements/Creative_Button.php:465, ../includes/Elements/Cta_Box.php:123, ../includes/Elements/Cta_Box.php:215, ../includes/Elements/Data_Table.php:586, ../includes/Elements/Data_Table.php:811, ../includes/Elements/Data_Table.php:1060, ../includes/Elements/Dual_Color_Header.php:210, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1293, ../includes/Elements/Event_Calendar.php:2307, ../includes/Elements/Event_Calendar.php:2443, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Feature_List.php:336, ../includes/Elements/Filterable_Gallery.php:997, ../includes/Elements/Filterable_Gallery.php:1535, ../includes/Elements/Filterable_Gallery.php:1995, ../includes/Elements/Filterable_Gallery.php:2787, ../includes/Elements/Flip_Box.php:394, ../includes/Elements/Flip_Box.php:634, ../includes/Elements/FluentForm.php:278, ../includes/Elements/FluentForm.php:475, ../includes/Elements/FluentForm.php:621, ../includes/Elements/FluentForm.php:1254, ../includes/Elements/FluentForm.php:1499, ../includes/Elements/Formstack.php:345, ../includes/Elements/Formstack.php:460, ../includes/Elements/Formstack.php:776, ../includes/Elements/Formstack.php:1385, ../includes/Elements/GravityForms.php:358, ../includes/Elements/GravityForms.php:495, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:780, ../includes/Elements/GravityForms.php:907, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2456, ../includes/Elements/Image_Accordion.php:121, ../includes/Elements/Info_Box.php:328, ../includes/Elements/Login_Register.php:1350, ../includes/Elements/Login_Register.php:3715, ../includes/Elements/Login_Register.php:4955, ../includes/Elements/Login_Register.php:5304, ../includes/Elements/NFT_Gallery.php:738, ../includes/Elements/NFT_Gallery.php:1906, ../includes/Elements/NinjaForms.php:293, ../includes/Elements/NinjaForms.php:432, ../includes/Elements/NinjaForms.php:616, ../includes/Elements/NinjaForms.php:1311, ../includes/Elements/Post_Grid.php:489, ../includes/Elements/Post_Grid.php:649, ../includes/Elements/Post_Grid.php:719, ../includes/Elements/Post_Grid.php:816, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:147, ../includes/Elements/Pricing_Table.php:294, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Pricing_Table.php:735, ../includes/Elements/Pricing_Table.php:881, ../includes/Elements/Pricing_Table.php:906, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1289, ../includes/Elements/Product_Grid.php:1979, ../includes/Elements/Product_Grid.php:2525, ../includes/Elements/Progress_Bar.php:376, ../includes/Elements/Progress_Bar.php:645, ../includes/Elements/Simple_Menu.php:200, ../includes/Elements/Simple_Menu.php:378, ../includes/Elements/Simple_Menu.php:785, ../includes/Elements/Simple_Menu.php:811, ../includes/Elements/Simple_Menu.php:836, ../includes/Elements/Simple_Menu.php:1227, ../includes/Elements/SVG_Draw.php:200, ../includes/Elements/Team_Member.php:439, ../includes/Elements/Testimonial.php:361, ../includes/Elements/Tooltip.php:227, ../includes/Elements/Tooltip.php:299, ../includes/Elements/Tooltip.php:402, ../includes/Elements/Twitter_Feed.php:568, ../includes/Elements/TypeForm.php:207, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:280, ../includes/Elements/Woo_Cart.php:504, ../includes/Elements/Woo_Cart.php:603, ../includes/Elements/Woo_Cart.php:677, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:1710, ../includes/Elements/Woo_Cart.php:2353, ../includes/Elements/Woo_Product_Carousel.php:791, ../includes/Elements/Woo_Product_Carousel.php:949, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Gallery.php:208, ../includes/Elements/Woo_Product_Gallery.php:234, ../includes/Elements/Woo_Product_Gallery.php:727, ../includes/Elements/Woo_Product_Gallery.php:1701, ../includes/Elements/Woo_Product_List.php:636, ../includes/Elements/Woo_Product_List.php:810, ../includes/Elements/WpForms.php:282, ../includes/Elements/WpForms.php:399, ../includes/Elements/WpForms.php:587, ../includes/Elements/WpForms.php:1154, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:556, ../includes/Traits/Controls.php:707, ../includes/Traits/Controls.php:1877, ../includes/Traits/Controls.php:1938, ../includes/Traits/Controls.php:2335, ../includes/Traits/Controls.php:2378, ../includes/Traits/Controls.php:2379, ../includes/Traits/Controls.php:2709 msgid "Right" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:678, ../includes/Elements/Adv_Accordion.php:739, ../includes/Elements/Adv_Accordion.php:800, ../includes/Elements/Adv_Accordion.php:868, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:687, ../includes/Elements/Adv_Tabs.php:754, ../includes/Elements/Adv_Tabs.php:836, ../includes/Elements/Business_Reviews.php:1207, ../includes/Elements/Business_Reviews.php:1275, ../includes/Elements/Business_Reviews.php:1382, ../includes/Elements/Business_Reviews.php:1773, ../includes/Elements/Business_Reviews.php:1841, ../includes/Elements/Business_Reviews.php:1910, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1216, ../includes/Elements/Creative_Button.php:283, ../includes/Elements/Creative_Button.php:375, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Cta_Box.php:914, ../includes/Elements/Cta_Box.php:1086, ../includes/Elements/Cta_Box.php:1101, ../includes/Elements/Cta_Box.php:1297, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Cta_Box.php:1366, ../includes/Elements/Cta_Box.php:1381, ../includes/Elements/Data_Table.php:1010, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Event_Calendar.php:1390, ../includes/Elements/Event_Calendar.php:1515, ../includes/Elements/Event_Calendar.php:1607, ../includes/Elements/Event_Calendar.php:1640, ../includes/Elements/Event_Calendar.php:1775, ../includes/Elements/Event_Calendar.php:1821, ../includes/Elements/Event_Calendar.php:1866, ../includes/Elements/Event_Calendar.php:2551, ../includes/Elements/Event_Calendar.php:2582, ../includes/Elements/Filterable_Gallery.php:1177, ../includes/Elements/Filterable_Gallery.php:1243, ../includes/Elements/Filterable_Gallery.php:2945, ../includes/Elements/Filterable_Gallery.php:3140, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1252, ../includes/Elements/Info_Box.php:1299, ../includes/Elements/Interactive_Circle.php:694, ../includes/Elements/Interactive_Circle.php:754, ../includes/Elements/Interactive_Circle.php:822, ../includes/Elements/Interactive_Circle.php:907, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1978, ../includes/Elements/Pricing_Table.php:2048, ../includes/Elements/Product_Grid.php:2574, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Product_Grid.php:2662, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:475, ../includes/Elements/Tooltip.php:649, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:860, ../includes/Elements/WpForms.php:916, ../includes/Elements/WpForms.php:1229, ../includes/Elements/WpForms.php:1338, ../includes/Elements/WpForms.php:1394, ../includes/Extensions/Table_of_Content.php:804, ../includes/Extensions/Table_of_Content.php:1123, ../includes/Extensions/Table_of_Content.php:1146, ../includes/Extensions/Table_of_Content.php:1172, ../includes/Traits/Controls.php:1969, ../includes/Traits/Controls.php:2082, ../includes/Traits/Controls.php:2025, ../includes/Traits/Controls.php:2213, ../includes/Traits/Controls.php:2275, ../includes/Traits/Controls.php:2658 +#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:743, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:872, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:691, ../includes/Elements/Adv_Tabs.php:758, ../includes/Elements/Adv_Tabs.php:840, ../includes/Elements/Business_Reviews.php:1207, ../includes/Elements/Business_Reviews.php:1275, ../includes/Elements/Business_Reviews.php:1382, ../includes/Elements/Business_Reviews.php:1773, ../includes/Elements/Business_Reviews.php:1841, ../includes/Elements/Business_Reviews.php:1910, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Creative_Button.php:287, ../includes/Elements/Creative_Button.php:379, ../includes/Elements/Cta_Box.php:903, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1090, ../includes/Elements/Cta_Box.php:1105, ../includes/Elements/Cta_Box.php:1301, ../includes/Elements/Cta_Box.php:1316, ../includes/Elements/Cta_Box.php:1370, ../includes/Elements/Cta_Box.php:1385, ../includes/Elements/Data_Table.php:1014, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Event_Calendar.php:1390, ../includes/Elements/Event_Calendar.php:1515, ../includes/Elements/Event_Calendar.php:1607, ../includes/Elements/Event_Calendar.php:1640, ../includes/Elements/Event_Calendar.php:1775, ../includes/Elements/Event_Calendar.php:1821, ../includes/Elements/Event_Calendar.php:1866, ../includes/Elements/Event_Calendar.php:2551, ../includes/Elements/Event_Calendar.php:2582, ../includes/Elements/Filterable_Gallery.php:1181, ../includes/Elements/Filterable_Gallery.php:1247, ../includes/Elements/Filterable_Gallery.php:2949, ../includes/Elements/Filterable_Gallery.php:3144, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1256, ../includes/Elements/Info_Box.php:1303, ../includes/Elements/Interactive_Circle.php:698, ../includes/Elements/Interactive_Circle.php:758, ../includes/Elements/Interactive_Circle.php:826, ../includes/Elements/Interactive_Circle.php:911, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1982, ../includes/Elements/Pricing_Table.php:2052, ../includes/Elements/Product_Grid.php:2574, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Product_Grid.php:2662, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:435, ../includes/Elements/Tooltip.php:479, ../includes/Elements/Tooltip.php:653, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:860, ../includes/Elements/WpForms.php:916, ../includes/Elements/WpForms.php:1229, ../includes/Elements/WpForms.php:1338, ../includes/Elements/WpForms.php:1394, ../includes/Extensions/Table_of_Content.php:804, ../includes/Extensions/Table_of_Content.php:1123, ../includes/Extensions/Table_of_Content.php:1146, ../includes/Extensions/Table_of_Content.php:1172, ../includes/Traits/Controls.php:1969, ../includes/Traits/Controls.php:2082, ../includes/Traits/Controls.php:2025, ../includes/Traits/Controls.php:2213, ../includes/Traits/Controls.php:2275, ../includes/Traits/Controls.php:2658 msgid "Text Color" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1019, ../includes/Elements/Adv_Accordion.php:1066, ../includes/Elements/Adv_Accordion.php:1113, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:817, ../includes/Elements/Business_Reviews.php:875, ../includes/Elements/Business_Reviews.php:908, ../includes/Elements/Business_Reviews.php:1006, ../includes/Elements/Business_Reviews.php:1040, ../includes/Elements/Business_Reviews.php:1491, ../includes/Elements/Business_Reviews.php:1524, ../includes/Elements/Business_Reviews.php:1619, ../includes/Elements/Business_Reviews.php:1654, ../includes/Elements/Business_Reviews.php:2261, ../includes/Elements/Business_Reviews.php:2317, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:838, ../includes/Elements/Countdown.php:850, ../includes/Elements/Countdown.php:910, ../includes/Elements/Countdown.php:922, ../includes/Elements/Countdown.php:982, ../includes/Elements/Countdown.php:994, ../includes/Elements/Countdown.php:1054, ../includes/Elements/Countdown.php:1066, ../includes/Elements/Creative_Button.php:296, ../includes/Elements/Creative_Button.php:389, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:567, ../includes/Elements/Cta_Box.php:606, ../includes/Elements/Cta_Box.php:928, ../includes/Elements/Cta_Box.php:944, ../includes/Elements/Cta_Box.php:1115, ../includes/Elements/Cta_Box.php:1134, ../includes/Elements/Data_Table.php:660, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1228, ../includes/Elements/Dual_Color_Header.php:317, ../includes/Elements/Event_Calendar.php:2562, ../includes/Elements/Filterable_Gallery.php:1052, ../includes/Elements/Filterable_Gallery.php:1189, ../includes/Elements/Filterable_Gallery.php:1255, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1603, ../includes/Elements/Filterable_Gallery.php:1641, ../includes/Elements/Filterable_Gallery.php:1809, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:2027, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2929, ../includes/Elements/Filterable_Gallery.php:3124, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:326, ../includes/Elements/Info_Box.php:559, ../includes/Elements/Info_Box.php:800, ../includes/Elements/Info_Box.php:879, ../includes/Elements/Info_Box.php:1050, ../includes/Elements/Info_Box.php:1113, ../includes/Elements/Info_Box.php:1265, ../includes/Elements/Info_Box.php:1312, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Interactive_Circle.php:740, ../includes/Elements/Interactive_Circle.php:808, ../includes/Elements/Interactive_Circle.php:890, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:967, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:788, ../includes/Elements/Pricing_Table.php:950, ../includes/Elements/Pricing_Table.php:1481, ../includes/Elements/Pricing_Table.php:1558, ../includes/Elements/Pricing_Table.php:1724, ../includes/Elements/Pricing_Table.php:1991, ../includes/Elements/Pricing_Table.php:2061, ../includes/Elements/Product_Grid.php:2159, ../includes/Elements/Product_Grid.php:2267, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2628, ../includes/Elements/Product_Grid.php:2675, ../includes/Elements/Product_Grid.php:2925, ../includes/Elements/Product_Grid.php:2968, ../includes/Elements/Product_Grid.php:3029, ../includes/Elements/Product_Grid.php:3080, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:782, ../includes/Elements/Testimonial.php:312, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Tooltip.php:638, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:889, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1138, ../includes/Elements/Woo_Checkout.php:1684, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:2055, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2689, ../includes/Elements/Woo_Checkout.php:2819, ../includes/Elements/Woo_Checkout.php:2937, ../includes/Elements/Woo_Checkout.php:2977, ../includes/Elements/Woo_Product_Carousel.php:1026, ../includes/Elements/Woo_Product_Carousel.php:1537, ../includes/Elements/Woo_Product_Carousel.php:1619, ../includes/Elements/Woo_Product_Carousel.php:1838, ../includes/Elements/Woo_Product_Carousel.php:1881, ../includes/Elements/Woo_Product_Carousel.php:1943, ../includes/Elements/Woo_Product_Carousel.php:1995, ../includes/Elements/Woo_Product_Carousel.php:2799, ../includes/Elements/Woo_Product_Carousel.php:2855, ../includes/Elements/Woo_Product_Gallery.php:1893, ../includes/Elements/Woo_Product_Gallery.php:1943, ../includes/Elements/Woo_Product_Gallery.php:2142, ../includes/Elements/Woo_Product_Gallery.php:2183, ../includes/Elements/Woo_Product_Gallery.php:2226, ../includes/Elements/Woo_Product_Gallery.php:2287, ../includes/Elements/Woo_Product_Gallery.php:2338, ../includes/Elements/Woo_Product_List.php:1325, ../includes/Elements/Woo_Product_List.php:1435, ../includes/Elements/Woo_Product_List.php:3058, ../includes/Elements/Woo_Product_List.php:3110, ../includes/Elements/Woo_Product_List.php:3125, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Elements/Woo_Product_List.php:3193, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1217, ../includes/Elements/WpForms.php:1326, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:415, ../includes/Extensions/Table_of_Content.php:791, ../includes/Extensions/Table_of_Content.php:939, ../includes/Extensions/Table_of_Content.php:1003, ../includes/Traits/Controls.php:2225, ../includes/Traits/Controls.php:2287, ../includes/Traits/Controls.php:2668, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 +#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1023, ../includes/Elements/Adv_Accordion.php:1070, ../includes/Elements/Adv_Accordion.php:1117, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Adv_Tabs.php:821, ../includes/Elements/Business_Reviews.php:875, ../includes/Elements/Business_Reviews.php:908, ../includes/Elements/Business_Reviews.php:1006, ../includes/Elements/Business_Reviews.php:1040, ../includes/Elements/Business_Reviews.php:1491, ../includes/Elements/Business_Reviews.php:1524, ../includes/Elements/Business_Reviews.php:1619, ../includes/Elements/Business_Reviews.php:1654, ../includes/Elements/Business_Reviews.php:2261, ../includes/Elements/Business_Reviews.php:2317, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:842, ../includes/Elements/Countdown.php:854, ../includes/Elements/Countdown.php:914, ../includes/Elements/Countdown.php:926, ../includes/Elements/Countdown.php:986, ../includes/Elements/Countdown.php:998, ../includes/Elements/Countdown.php:1058, ../includes/Elements/Countdown.php:1070, ../includes/Elements/Creative_Button.php:300, ../includes/Elements/Creative_Button.php:393, ../includes/Elements/Cta_Box.php:141, ../includes/Elements/Cta_Box.php:571, ../includes/Elements/Cta_Box.php:610, ../includes/Elements/Cta_Box.php:932, ../includes/Elements/Cta_Box.php:948, ../includes/Elements/Cta_Box.php:1119, ../includes/Elements/Cta_Box.php:1138, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:704, ../includes/Elements/Data_Table.php:1232, ../includes/Elements/Dual_Color_Header.php:321, ../includes/Elements/Event_Calendar.php:2562, ../includes/Elements/Filterable_Gallery.php:1056, ../includes/Elements/Filterable_Gallery.php:1193, ../includes/Elements/Filterable_Gallery.php:1259, ../includes/Elements/Filterable_Gallery.php:1411, ../includes/Elements/Filterable_Gallery.php:1607, ../includes/Elements/Filterable_Gallery.php:1645, ../includes/Elements/Filterable_Gallery.php:1813, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:2031, ../includes/Elements/Filterable_Gallery.php:2169, ../includes/Elements/Filterable_Gallery.php:2933, ../includes/Elements/Filterable_Gallery.php:3128, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:330, ../includes/Elements/Info_Box.php:563, ../includes/Elements/Info_Box.php:804, ../includes/Elements/Info_Box.php:883, ../includes/Elements/Info_Box.php:1054, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Info_Box.php:1269, ../includes/Elements/Info_Box.php:1316, ../includes/Elements/Interactive_Circle.php:687, ../includes/Elements/Interactive_Circle.php:744, ../includes/Elements/Interactive_Circle.php:812, ../includes/Elements/Interactive_Circle.php:894, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:967, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:792, ../includes/Elements/Pricing_Table.php:954, ../includes/Elements/Pricing_Table.php:1485, ../includes/Elements/Pricing_Table.php:1562, ../includes/Elements/Pricing_Table.php:1728, ../includes/Elements/Pricing_Table.php:1995, ../includes/Elements/Pricing_Table.php:2065, ../includes/Elements/Product_Grid.php:2159, ../includes/Elements/Product_Grid.php:2267, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2628, ../includes/Elements/Product_Grid.php:2675, ../includes/Elements/Product_Grid.php:2925, ../includes/Elements/Product_Grid.php:2968, ../includes/Elements/Product_Grid.php:3029, ../includes/Elements/Product_Grid.php:3080, ../includes/Elements/Progress_Bar.php:683, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:786, ../includes/Elements/Testimonial.php:316, ../includes/Elements/Tooltip.php:424, ../includes/Elements/Tooltip.php:468, ../includes/Elements/Tooltip.php:642, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:889, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1138, ../includes/Elements/Woo_Checkout.php:1684, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:2055, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2689, ../includes/Elements/Woo_Checkout.php:2819, ../includes/Elements/Woo_Checkout.php:2937, ../includes/Elements/Woo_Checkout.php:2977, ../includes/Elements/Woo_Product_Carousel.php:1026, ../includes/Elements/Woo_Product_Carousel.php:1537, ../includes/Elements/Woo_Product_Carousel.php:1619, ../includes/Elements/Woo_Product_Carousel.php:1838, ../includes/Elements/Woo_Product_Carousel.php:1881, ../includes/Elements/Woo_Product_Carousel.php:1943, ../includes/Elements/Woo_Product_Carousel.php:1995, ../includes/Elements/Woo_Product_Carousel.php:2799, ../includes/Elements/Woo_Product_Carousel.php:2855, ../includes/Elements/Woo_Product_Gallery.php:1893, ../includes/Elements/Woo_Product_Gallery.php:1943, ../includes/Elements/Woo_Product_Gallery.php:2142, ../includes/Elements/Woo_Product_Gallery.php:2183, ../includes/Elements/Woo_Product_Gallery.php:2226, ../includes/Elements/Woo_Product_Gallery.php:2287, ../includes/Elements/Woo_Product_Gallery.php:2338, ../includes/Elements/Woo_Product_List.php:1325, ../includes/Elements/Woo_Product_List.php:1435, ../includes/Elements/Woo_Product_List.php:3058, ../includes/Elements/Woo_Product_List.php:3110, ../includes/Elements/Woo_Product_List.php:3125, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Elements/Woo_Product_List.php:3193, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1217, ../includes/Elements/WpForms.php:1326, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:415, ../includes/Extensions/Table_of_Content.php:791, ../includes/Extensions/Table_of_Content.php:939, ../includes/Extensions/Table_of_Content.php:1003, ../includes/Traits/Controls.php:2225, ../includes/Traits/Controls.php:2287, ../includes/Traits/Controls.php:2668, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 msgid "Background Color" msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "Cell Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:643, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Tabs.php:426, ../includes/Elements/Adv_Tabs.php:575, ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:837, ../includes/Elements/Business_Reviews.php:967, ../includes/Elements/Business_Reviews.php:1169, ../includes/Elements/Business_Reviews.php:1237, ../includes/Elements/Business_Reviews.php:1344, ../includes/Elements/Business_Reviews.php:1412, ../includes/Elements/Business_Reviews.php:1454, ../includes/Elements/Business_Reviews.php:1582, ../includes/Elements/Business_Reviews.php:1712, ../includes/Elements/Business_Reviews.php:1803, ../includes/Elements/Business_Reviews.php:1872, ../includes/Elements/Business_Reviews.php:1940, ../includes/Elements/Business_Reviews.php:2070, ../includes/Elements/Business_Reviews.php:2507, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:707, ../includes/Elements/Countdown.php:1245, ../includes/Elements/Cta_Box.php:620, ../includes/Elements/Cta_Box.php:833, ../includes/Elements/Cta_Box.php:1261, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:329, ../includes/Elements/Event_Calendar.php:1430, ../includes/Elements/Event_Calendar.php:1538, ../includes/Elements/Event_Calendar.php:1666, ../includes/Elements/Event_Calendar.php:1905, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:496, ../includes/Elements/Feature_List.php:682, ../includes/Elements/Filterable_Gallery.php:1064, ../includes/Elements/Filterable_Gallery.php:1141, ../includes/Elements/Filterable_Gallery.php:1323, ../includes/Elements/Filterable_Gallery.php:1419, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2819, ../includes/Elements/Filterable_Gallery.php:3048, ../includes/Elements/Flip_Box.php:1027, ../includes/Elements/Flip_Box.php:1141, ../includes/Elements/Flip_Box.php:1377, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:338, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:571, ../includes/Elements/Interactive_Circle.php:540, ../includes/Elements/Interactive_Circle.php:965, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:558, ../includes/Elements/Pricing_Table.php:800, ../includes/Elements/Pricing_Table.php:1600, ../includes/Elements/Pricing_Table.php:1908, ../includes/Elements/Product_Grid.php:1074, ../includes/Elements/Product_Grid.php:1325, ../includes/Elements/Product_Grid.php:1740, ../includes/Elements/Progress_Bar.php:830, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:456, ../includes/Elements/Team_Member.php:534, ../includes/Elements/Testimonial.php:456, ../includes/Elements/Tooltip.php:362, ../includes/Elements/Tooltip.php:616, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:1541, ../includes/Elements/Woo_Checkout.php:1587, ../includes/Elements/Woo_Checkout.php:1785, ../includes/Elements/Woo_Checkout.php:1956, ../includes/Elements/Woo_Checkout.php:1984, ../includes/Elements/Woo_Checkout.php:2156, ../includes/Elements/Woo_Checkout.php:2371, ../includes/Elements/Woo_Checkout.php:2711, ../includes/Elements/Woo_Checkout.php:3050, ../includes/Elements/Woo_Product_Carousel.php:1165, ../includes/Elements/Woo_Product_Carousel.php:2412, ../includes/Elements/Woo_Product_Gallery.php:757, ../includes/Elements/Woo_Product_Gallery.php:861, ../includes/Elements/Woo_Product_Gallery.php:1140, ../includes/Elements/Woo_Product_Gallery.php:1396, ../includes/Elements/Woo_Product_Gallery.php:1458, ../includes/Elements/Woo_Product_List.php:1294, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1511, ../includes/Elements/Woo_Product_List.php:1597, ../includes/Elements/Woo_Product_List.php:1654, ../includes/Elements/Woo_Product_List.php:1702, ../includes/Elements/Woo_Product_List.php:1741, ../includes/Elements/Woo_Product_List.php:1777, ../includes/Elements/Woo_Product_List.php:1882, ../includes/Elements/Woo_Product_List.php:1947, ../includes/Elements/Woo_Product_List.php:2017, ../includes/Elements/WpForms.php:759, ../includes/Elements/WpForms.php:1264, ../includes/Extensions/Table_of_Content.php:828, ../includes/Extensions/Table_of_Content.php:1016, ../includes/Traits/Controls.php:2132, ../includes/Traits/Controls.php:2177, ../includes/Traits/Controls.php:2678, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 +#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:493, ../includes/Elements/Adv_Accordion.php:647, ../includes/Elements/Adv_Accordion.php:890, ../includes/Elements/Adv_Tabs.php:430, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:858, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:837, ../includes/Elements/Business_Reviews.php:967, ../includes/Elements/Business_Reviews.php:1169, ../includes/Elements/Business_Reviews.php:1237, ../includes/Elements/Business_Reviews.php:1344, ../includes/Elements/Business_Reviews.php:1412, ../includes/Elements/Business_Reviews.php:1454, ../includes/Elements/Business_Reviews.php:1582, ../includes/Elements/Business_Reviews.php:1712, ../includes/Elements/Business_Reviews.php:1803, ../includes/Elements/Business_Reviews.php:1872, ../includes/Elements/Business_Reviews.php:1940, ../includes/Elements/Business_Reviews.php:2070, ../includes/Elements/Business_Reviews.php:2507, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:711, ../includes/Elements/Countdown.php:1249, ../includes/Elements/Cta_Box.php:624, ../includes/Elements/Cta_Box.php:837, ../includes/Elements/Cta_Box.php:1265, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:917, ../includes/Elements/Dual_Color_Header.php:333, ../includes/Elements/Event_Calendar.php:1430, ../includes/Elements/Event_Calendar.php:1538, ../includes/Elements/Event_Calendar.php:1666, ../includes/Elements/Event_Calendar.php:1905, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:500, ../includes/Elements/Feature_List.php:686, ../includes/Elements/Filterable_Gallery.php:1068, ../includes/Elements/Filterable_Gallery.php:1145, ../includes/Elements/Filterable_Gallery.php:1327, ../includes/Elements/Filterable_Gallery.php:1423, ../includes/Elements/Filterable_Gallery.php:1844, ../includes/Elements/Filterable_Gallery.php:2055, ../includes/Elements/Filterable_Gallery.php:2823, ../includes/Elements/Filterable_Gallery.php:3052, ../includes/Elements/Flip_Box.php:1031, ../includes/Elements/Flip_Box.php:1145, ../includes/Elements/Flip_Box.php:1381, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:342, ../includes/Elements/Image_Accordion.php:455, ../includes/Elements/Info_Box.php:575, ../includes/Elements/Interactive_Circle.php:544, ../includes/Elements/Interactive_Circle.php:969, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:558, ../includes/Elements/Pricing_Table.php:804, ../includes/Elements/Pricing_Table.php:1604, ../includes/Elements/Pricing_Table.php:1912, ../includes/Elements/Product_Grid.php:1074, ../includes/Elements/Product_Grid.php:1325, ../includes/Elements/Product_Grid.php:1740, ../includes/Elements/Progress_Bar.php:834, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:460, ../includes/Elements/Team_Member.php:538, ../includes/Elements/Testimonial.php:460, ../includes/Elements/Tooltip.php:366, ../includes/Elements/Tooltip.php:620, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:1541, ../includes/Elements/Woo_Checkout.php:1587, ../includes/Elements/Woo_Checkout.php:1785, ../includes/Elements/Woo_Checkout.php:1956, ../includes/Elements/Woo_Checkout.php:1984, ../includes/Elements/Woo_Checkout.php:2156, ../includes/Elements/Woo_Checkout.php:2371, ../includes/Elements/Woo_Checkout.php:2711, ../includes/Elements/Woo_Checkout.php:3050, ../includes/Elements/Woo_Product_Carousel.php:1165, ../includes/Elements/Woo_Product_Carousel.php:2412, ../includes/Elements/Woo_Product_Gallery.php:757, ../includes/Elements/Woo_Product_Gallery.php:861, ../includes/Elements/Woo_Product_Gallery.php:1140, ../includes/Elements/Woo_Product_Gallery.php:1396, ../includes/Elements/Woo_Product_Gallery.php:1458, ../includes/Elements/Woo_Product_List.php:1294, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1511, ../includes/Elements/Woo_Product_List.php:1597, ../includes/Elements/Woo_Product_List.php:1654, ../includes/Elements/Woo_Product_List.php:1702, ../includes/Elements/Woo_Product_List.php:1741, ../includes/Elements/Woo_Product_List.php:1777, ../includes/Elements/Woo_Product_List.php:1882, ../includes/Elements/Woo_Product_List.php:1947, ../includes/Elements/Woo_Product_List.php:2017, ../includes/Elements/WpForms.php:759, ../includes/Elements/WpForms.php:1264, ../includes/Extensions/Table_of_Content.php:828, ../includes/Extensions/Table_of_Content.php:1016, ../includes/Traits/Controls.php:2132, ../includes/Traits/Controls.php:2177, ../includes/Traits/Controls.php:2678, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 msgid "Padding" msgstr "" @@ -749,7 +749,7 @@ msgstr "" msgid "Body" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:589, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Facebook_Feed.php:1076, ../includes/Elements/Login_Register.php:4708, ../includes/Elements/Twitter_Feed.php:891, ../includes/Elements/Woo_Cart.php:1667, ../includes/Elements/Woo_Checkout.php:1191, ../includes/Elements/Woo_Checkout.php:1207, ../includes/Elements/Woo_Checkout.php:1234, ../includes/Elements/Woo_Checkout.php:1251, ../includes/Elements/Woo_Checkout.php:2878 +#: ../includes/Elements/Advanced_Data_Table.php:589, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Facebook_Feed.php:1076, ../includes/Elements/Login_Register.php:4708, ../includes/Elements/Twitter_Feed.php:891, ../includes/Elements/Woo_Cart.php:1667, ../includes/Elements/Woo_Checkout.php:1191, ../includes/Elements/Woo_Checkout.php:1207, ../includes/Elements/Woo_Checkout.php:1234, ../includes/Elements/Woo_Checkout.php:1251, ../includes/Elements/Woo_Checkout.php:2878 msgid "Link Color" msgstr "" @@ -761,7 +761,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Adv_Tabs.php:229, ../includes/Elements/Countdown.php:500, ../includes/Elements/Data_Table.php:154, ../includes/Elements/Filterable_Gallery.php:244, ../includes/Elements/Filterable_Gallery.php:285, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:444, ../includes/Elements/Flip_Box.php:672, ../includes/Elements/GravityForms.php:1293, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:820, ../includes/Elements/Info_Box.php:900, ../includes/Elements/Info_Box.php:1038, ../includes/Elements/Info_Box.php:1134, ../includes/Elements/Interactive_Circle.php:457, ../includes/Elements/Post_Grid.php:941, ../includes/Elements/Simple_Menu.php:1540, ../includes/Elements/Sticky_Video.php:598, ../includes/Elements/SVG_Draw.php:236, ../includes/Elements/SVG_Draw.php:265, ../includes/Extensions/Table_of_Content.php:1041, ../includes/Extensions/Table_of_Content.php:1264 +#: ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Countdown.php:504, ../includes/Elements/Data_Table.php:158, ../includes/Elements/Filterable_Gallery.php:248, ../includes/Elements/Filterable_Gallery.php:289, ../includes/Elements/Flip_Box.php:208, ../includes/Elements/Flip_Box.php:448, ../includes/Elements/Flip_Box.php:676, ../includes/Elements/GravityForms.php:1293, ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:824, ../includes/Elements/Info_Box.php:904, ../includes/Elements/Info_Box.php:1042, ../includes/Elements/Info_Box.php:1138, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Post_Grid.php:941, ../includes/Elements/Simple_Menu.php:1540, ../includes/Elements/Sticky_Video.php:602, ../includes/Elements/SVG_Draw.php:240, ../includes/Elements/SVG_Draw.php:269, ../includes/Extensions/Table_of_Content.php:1041, ../includes/Extensions/Table_of_Content.php:1264 msgid "None" msgstr "" @@ -789,7 +789,7 @@ msgstr "" msgid "Odd Row" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1983, ../includes/Elements/Business_Reviews.php:2174, ../includes/Elements/Dual_Color_Header.php:781, ../includes/Elements/Dual_Color_Header.php:861, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:310, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:427, ../includes/Elements/Progress_Bar.php:453, ../includes/Elements/Progress_Bar.php:508, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Sticky_Video.php:505, ../includes/Elements/SVG_Draw.php:161, ../includes/Elements/Team_Member.php:342, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1471, ../includes/Elements/Woo_Product_Carousel.php:2304, ../includes/Elements/Woo_Product_Carousel.php:2504, ../includes/Elements/Woo_Product_Carousel.php:2592, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 +#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1983, ../includes/Elements/Business_Reviews.php:2174, ../includes/Elements/Dual_Color_Header.php:785, ../includes/Elements/Dual_Color_Header.php:865, ../includes/Elements/Flip_Box.php:127, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:314, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:431, ../includes/Elements/Progress_Bar.php:457, ../includes/Elements/Progress_Bar.php:512, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Sticky_Video.php:509, ../includes/Elements/SVG_Draw.php:165, ../includes/Elements/Team_Member.php:346, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1471, ../includes/Elements/Woo_Product_Carousel.php:2304, ../includes/Elements/Woo_Product_Carousel.php:2504, ../includes/Elements/Woo_Product_Carousel.php:2592, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 msgid "Height" msgstr "" @@ -797,23 +797,23 @@ msgstr "" msgid "Margin Bottom" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1072, ../includes/Elements/Business_Reviews.php:2085, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:568, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:657, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1281, ../includes/Elements/Event_Calendar.php:2295, ../includes/Elements/Event_Calendar.php:2431, ../includes/Elements/Fancy_Text.php:185, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:2771, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:477, ../includes/Elements/Post_Grid.php:804, ../includes/Elements/Post_Grid.php:889, ../includes/Elements/Post_Timeline.php:484, ../includes/Elements/Product_Grid.php:958, ../includes/Elements/Product_Grid.php:1277, ../includes/Elements/Product_Grid.php:1971, ../includes/Elements/Product_Grid.php:2513, ../includes/Elements/Progress_Bar.php:360, ../includes/Elements/Progress_Bar.php:629, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:184, ../includes/Elements/Tooltip.php:210, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:941, ../includes/Elements/Woo_Product_Carousel.php:996, ../includes/Elements/Woo_Product_Gallery.php:196, ../includes/Elements/Woo_Product_Gallery.php:226, ../includes/Elements/Woo_Product_Gallery.php:715, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_List.php:628, ../includes/Elements/Woo_Product_List.php:802, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1142, ../includes/Traits/Controls.php:1865, ../includes/Traits/Controls.php:1926, ../includes/Traits/Controls.php:2697 +#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1072, ../includes/Elements/Business_Reviews.php:2085, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:202, ../includes/Elements/Cta_Box.php:116, ../includes/Elements/Data_Table.php:572, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Dual_Color_Header.php:661, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1281, ../includes/Elements/Event_Calendar.php:2295, ../includes/Elements/Event_Calendar.php:2431, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:477, ../includes/Elements/Post_Grid.php:804, ../includes/Elements/Post_Grid.php:889, ../includes/Elements/Post_Timeline.php:484, ../includes/Elements/Product_Grid.php:958, ../includes/Elements/Product_Grid.php:1277, ../includes/Elements/Product_Grid.php:1971, ../includes/Elements/Product_Grid.php:2513, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Tooltip.php:214, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:941, ../includes/Elements/Woo_Product_Carousel.php:996, ../includes/Elements/Woo_Product_Gallery.php:196, ../includes/Elements/Woo_Product_Gallery.php:226, ../includes/Elements/Woo_Product_Gallery.php:715, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_List.php:628, ../includes/Elements/Woo_Product_List.php:802, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1142, ../includes/Traits/Controls.php:1865, ../includes/Traits/Controls.php:1926, ../includes/Traits/Controls.php:2697 msgid "Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:897, ../includes/Elements/Adv_Tabs.php:437, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:865, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:825, ../includes/Elements/Business_Reviews.php:954, ../includes/Elements/Business_Reviews.php:1154, ../includes/Elements/Business_Reviews.php:1222, ../includes/Elements/Business_Reviews.php:1329, ../includes/Elements/Business_Reviews.php:1397, ../includes/Elements/Business_Reviews.php:1442, ../includes/Elements/Business_Reviews.php:1570, ../includes/Elements/Business_Reviews.php:1697, ../includes/Elements/Business_Reviews.php:1788, ../includes/Elements/Business_Reviews.php:1857, ../includes/Elements/Business_Reviews.php:1925, ../includes/Elements/Business_Reviews.php:2055, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1195, ../includes/Elements/Cta_Box.php:632, ../includes/Elements/Cta_Box.php:845, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Dual_Color_Header.php:341, ../includes/Elements/Dual_Color_Header.php:709, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Event_Calendar.php:1479, ../includes/Elements/Event_Calendar.php:1919, ../includes/Elements/Fancy_Text.php:508, ../includes/Elements/Filterable_Gallery.php:1076, ../includes/Elements/Filterable_Gallery.php:1153, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2831, ../includes/Elements/Filterable_Gallery.php:3089, ../includes/Elements/Flip_Box.php:1365, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:350, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:704, ../includes/Elements/Info_Box.php:766, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1393, ../includes/Elements/Interactive_Circle.php:551, ../includes/Elements/Interactive_Circle.php:976, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:394, ../includes/Elements/Post_Grid.php:533, ../includes/Elements/Post_Grid.php:548, ../includes/Elements/Post_Grid.php:674, ../includes/Elements/Post_Grid.php:764, ../includes/Elements/Post_Grid.php:842, ../includes/Elements/Pricing_Table.php:812, ../includes/Elements/Pricing_Table.php:1140, ../includes/Elements/Pricing_Table.php:1210, ../includes/Elements/Pricing_Table.php:1920, ../includes/Elements/SVG_Draw.php:468, ../includes/Elements/Team_Member.php:522, ../includes/Elements/Testimonial.php:444, ../includes/Elements/Testimonial.php:542, ../includes/Elements/Testimonial.php:583, ../includes/Elements/Testimonial.php:624, ../includes/Elements/Testimonial.php:685, ../includes/Elements/Tooltip.php:373, ../includes/Elements/Tooltip.php:627, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Checkout.php:2003, ../includes/Elements/Woo_Product_Carousel.php:1055, ../includes/Elements/Woo_Product_Gallery.php:1384, ../includes/Elements/Woo_Product_Gallery.php:1446, ../includes/Elements/Woo_Product_List.php:1282, ../includes/Elements/Woo_Product_List.php:1366, ../includes/Elements/Woo_Product_List.php:1639, ../includes/Elements/Woo_Product_List.php:1687, ../includes/Elements/Woo_Product_List.php:1726, ../includes/Elements/Woo_Product_List.php:1765, ../includes/Elements/Woo_Product_List.php:1870, ../includes/Elements/Woo_Product_List.php:1935, ../includes/Elements/Woo_Product_List.php:2004, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:2144, ../includes/Traits/Controls.php:2189, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 +#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:504, ../includes/Elements/Adv_Accordion.php:658, ../includes/Elements/Adv_Accordion.php:901, ../includes/Elements/Adv_Tabs.php:441, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:869, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:825, ../includes/Elements/Business_Reviews.php:954, ../includes/Elements/Business_Reviews.php:1154, ../includes/Elements/Business_Reviews.php:1222, ../includes/Elements/Business_Reviews.php:1329, ../includes/Elements/Business_Reviews.php:1397, ../includes/Elements/Business_Reviews.php:1442, ../includes/Elements/Business_Reviews.php:1570, ../includes/Elements/Business_Reviews.php:1697, ../includes/Elements/Business_Reviews.php:1788, ../includes/Elements/Business_Reviews.php:1857, ../includes/Elements/Business_Reviews.php:1925, ../includes/Elements/Business_Reviews.php:2055, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1199, ../includes/Elements/Cta_Box.php:636, ../includes/Elements/Cta_Box.php:849, ../includes/Elements/Cta_Box.php:1277, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Event_Calendar.php:1479, ../includes/Elements/Event_Calendar.php:1919, ../includes/Elements/Fancy_Text.php:512, ../includes/Elements/Filterable_Gallery.php:1080, ../includes/Elements/Filterable_Gallery.php:1157, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:2067, ../includes/Elements/Filterable_Gallery.php:2515, ../includes/Elements/Filterable_Gallery.php:2835, ../includes/Elements/Filterable_Gallery.php:3093, ../includes/Elements/Flip_Box.php:1369, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:444, ../includes/Elements/Info_Box.php:708, ../includes/Elements/Info_Box.php:770, ../includes/Elements/Info_Box.php:1002, ../includes/Elements/Info_Box.php:1397, ../includes/Elements/Interactive_Circle.php:555, ../includes/Elements/Interactive_Circle.php:980, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:394, ../includes/Elements/Post_Grid.php:533, ../includes/Elements/Post_Grid.php:548, ../includes/Elements/Post_Grid.php:674, ../includes/Elements/Post_Grid.php:764, ../includes/Elements/Post_Grid.php:842, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:1144, ../includes/Elements/Pricing_Table.php:1214, ../includes/Elements/Pricing_Table.php:1924, ../includes/Elements/SVG_Draw.php:472, ../includes/Elements/Team_Member.php:526, ../includes/Elements/Testimonial.php:448, ../includes/Elements/Testimonial.php:546, ../includes/Elements/Testimonial.php:587, ../includes/Elements/Testimonial.php:628, ../includes/Elements/Testimonial.php:689, ../includes/Elements/Tooltip.php:377, ../includes/Elements/Tooltip.php:631, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Checkout.php:2003, ../includes/Elements/Woo_Product_Carousel.php:1055, ../includes/Elements/Woo_Product_Gallery.php:1384, ../includes/Elements/Woo_Product_Gallery.php:1446, ../includes/Elements/Woo_Product_List.php:1282, ../includes/Elements/Woo_Product_List.php:1366, ../includes/Elements/Woo_Product_List.php:1639, ../includes/Elements/Woo_Product_List.php:1687, ../includes/Elements/Woo_Product_List.php:1726, ../includes/Elements/Woo_Product_List.php:1765, ../includes/Elements/Woo_Product_List.php:1870, ../includes/Elements/Woo_Product_List.php:1935, ../includes/Elements/Woo_Product_List.php:2004, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:2144, ../includes/Traits/Controls.php:2189, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 msgid "Margin" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:665, ../includes/Elements/Adv_Accordion.php:997, ../includes/Elements/Adv_Tabs.php:597, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:869, ../includes/Elements/Business_Reviews.php:1000, ../includes/Elements/Business_Reviews.php:1485, ../includes/Elements/Business_Reviews.php:1613, ../includes/Elements/Business_Reviews.php:2254, ../includes/Elements/Business_Reviews.php:2416, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:266, ../includes/Elements/Cta_Box.php:894, ../includes/Elements/Cta_Box.php:1292, ../includes/Elements/Data_Table.php:640, ../includes/Elements/Data_Table.php:833, ../includes/Elements/Data_Table.php:1005, ../includes/Elements/Data_Table.php:1106, ../includes/Elements/Event_Calendar.php:1769, ../includes/Elements/Event_Calendar.php:2069, ../includes/Elements/Filterable_Gallery.php:1172, ../includes/Elements/Filterable_Gallery.php:2020, ../includes/Elements/Filterable_Gallery.php:2918, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:552, ../includes/Elements/Info_Box.php:780, ../includes/Elements/Info_Box.php:1012, ../includes/Elements/Info_Box.php:1246, ../includes/Elements/Info_Box.php:1359, ../includes/Elements/Interactive_Circle.php:679, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:1129, ../includes/Elements/Product_Grid.php:1781, ../includes/Elements/Product_Grid.php:2249, ../includes/Elements/Product_Grid.php:2569, ../includes/Elements/Product_Grid.php:3012, ../includes/Elements/Team_Member.php:764, ../includes/Elements/Tooltip.php:416, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1229, ../includes/Elements/Woo_Checkout.php:1385, ../includes/Elements/Woo_Checkout.php:1677, ../includes/Elements/Woo_Checkout.php:2048, ../includes/Elements/Woo_Checkout.php:2508, ../includes/Elements/Woo_Checkout.php:2768, ../includes/Elements/Woo_Checkout.php:2930, ../includes/Elements/Woo_Product_Carousel.php:1067, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1926, ../includes/Elements/Woo_Product_Carousel.php:2370, ../includes/Elements/Woo_Product_Carousel.php:2792, ../includes/Elements/Woo_Product_Gallery.php:771, ../includes/Elements/Woo_Product_Gallery.php:1177, ../includes/Elements/Woo_Product_Gallery.php:1481, ../includes/Elements/Woo_Product_Gallery.php:1876, ../includes/Elements/Woo_Product_Gallery.php:2270, ../includes/Elements/Woo_Product_List.php:2375, ../includes/Elements/Woo_Product_List.php:2702, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:2934, ../includes/Elements/Woo_Product_List.php:3093, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:983, ../includes/Elements/WpForms.php:1210, ../includes/Extensions/Hover_Effect.php:85, ../includes/Extensions/Table_of_Content.php:1116, ../includes/Traits/Controls.php:1962, ../includes/Traits/Controls.php:2208, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 +#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:869, ../includes/Elements/Business_Reviews.php:1000, ../includes/Elements/Business_Reviews.php:1485, ../includes/Elements/Business_Reviews.php:1613, ../includes/Elements/Business_Reviews.php:2254, ../includes/Elements/Business_Reviews.php:2416, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Cta_Box.php:898, ../includes/Elements/Cta_Box.php:1296, ../includes/Elements/Data_Table.php:644, ../includes/Elements/Data_Table.php:837, ../includes/Elements/Data_Table.php:1009, ../includes/Elements/Data_Table.php:1110, ../includes/Elements/Event_Calendar.php:1769, ../includes/Elements/Event_Calendar.php:2069, ../includes/Elements/Filterable_Gallery.php:1176, ../includes/Elements/Filterable_Gallery.php:2024, ../includes/Elements/Filterable_Gallery.php:2922, ../includes/Elements/Flip_Box.php:1363, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:1016, ../includes/Elements/Info_Box.php:1250, ../includes/Elements/Info_Box.php:1363, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1977, ../includes/Elements/Product_Grid.php:1129, ../includes/Elements/Product_Grid.php:1781, ../includes/Elements/Product_Grid.php:2249, ../includes/Elements/Product_Grid.php:2569, ../includes/Elements/Product_Grid.php:3012, ../includes/Elements/Team_Member.php:768, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1229, ../includes/Elements/Woo_Checkout.php:1385, ../includes/Elements/Woo_Checkout.php:1677, ../includes/Elements/Woo_Checkout.php:2048, ../includes/Elements/Woo_Checkout.php:2508, ../includes/Elements/Woo_Checkout.php:2768, ../includes/Elements/Woo_Checkout.php:2930, ../includes/Elements/Woo_Product_Carousel.php:1067, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1926, ../includes/Elements/Woo_Product_Carousel.php:2370, ../includes/Elements/Woo_Product_Carousel.php:2792, ../includes/Elements/Woo_Product_Gallery.php:771, ../includes/Elements/Woo_Product_Gallery.php:1177, ../includes/Elements/Woo_Product_Gallery.php:1481, ../includes/Elements/Woo_Product_Gallery.php:1876, ../includes/Elements/Woo_Product_Gallery.php:2270, ../includes/Elements/Woo_Product_List.php:2375, ../includes/Elements/Woo_Product_List.php:2702, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:2934, ../includes/Elements/Woo_Product_List.php:3093, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:983, ../includes/Elements/WpForms.php:1210, ../includes/Extensions/Hover_Effect.php:85, ../includes/Extensions/Table_of_Content.php:1116, ../includes/Traits/Controls.php:1962, ../includes/Traits/Controls.php:2208, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 msgid "Normal" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Accordion.php:1045, ../includes/Elements/Adv_Tabs.php:664, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:902, ../includes/Elements/Business_Reviews.php:1034, ../includes/Elements/Business_Reviews.php:1518, ../includes/Elements/Business_Reviews.php:1648, ../includes/Elements/Business_Reviews.php:2310, ../includes/Elements/Business_Reviews.php:2472, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:358, ../includes/Elements/Cta_Box.php:1081, ../includes/Elements/Cta_Box.php:1361, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:924, ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Data_Table.php:1124, ../includes/Elements/Event_Calendar.php:1815, ../includes/Elements/Event_Calendar.php:2136, ../includes/Elements/Filterable_Gallery.php:2158, ../includes/Elements/Filterable_Gallery.php:3113, ../includes/Elements/Flip_Box.php:1466, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:613, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Info_Box.php:1293, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Interactive_Circle.php:424, ../includes/Elements/Interactive_Circle.php:736, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:448, ../includes/Elements/Pricing_Table.php:2043, ../includes/Elements/Product_Grid.php:1179, ../includes/Elements/Product_Grid.php:1861, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2610, ../includes/Elements/Product_Grid.php:3063, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:842, ../includes/Elements/Tooltip.php:460, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1202, ../includes/Elements/Woo_Checkout.php:1246, ../includes/Elements/Woo_Checkout.php:1401, ../includes/Elements/Woo_Checkout.php:1717, ../includes/Elements/Woo_Checkout.php:2088, ../includes/Elements/Woo_Checkout.php:2528, ../includes/Elements/Woo_Checkout.php:2970, ../includes/Elements/Woo_Product_Carousel.php:1107, ../includes/Elements/Woo_Product_Carousel.php:1603, ../includes/Elements/Woo_Product_Carousel.php:1978, ../includes/Elements/Woo_Product_Carousel.php:2433, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/Woo_Product_Gallery.php:810, ../includes/Elements/Woo_Product_Gallery.php:1250, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/Woo_Product_Gallery.php:1926, ../includes/Elements/Woo_Product_Gallery.php:2321, ../includes/Elements/Woo_Product_List.php:2403, ../includes/Elements/Woo_Product_List.php:2748, ../includes/Elements/Woo_Product_List.php:2866, ../includes/Elements/Woo_Product_List.php:2969, ../includes/Elements/Woo_Product_List.php:3177, ../includes/Elements/WpForms.php:1319, ../includes/Extensions/Hover_Effect.php:707, ../includes/Extensions/Table_of_Content.php:1139, ../includes/Traits/Controls.php:2017, ../includes/Traits/Controls.php:2270, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 +#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:728, ../includes/Elements/Adv_Accordion.php:1049, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:902, ../includes/Elements/Business_Reviews.php:1034, ../includes/Elements/Business_Reviews.php:1518, ../includes/Elements/Business_Reviews.php:1648, ../includes/Elements/Business_Reviews.php:2310, ../includes/Elements/Business_Reviews.php:2472, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1085, ../includes/Elements/Cta_Box.php:1365, ../includes/Elements/Data_Table.php:684, ../includes/Elements/Data_Table.php:928, ../includes/Elements/Data_Table.php:1026, ../includes/Elements/Data_Table.php:1128, ../includes/Elements/Event_Calendar.php:1815, ../includes/Elements/Event_Calendar.php:2136, ../includes/Elements/Filterable_Gallery.php:2162, ../includes/Elements/Filterable_Gallery.php:3117, ../includes/Elements/Flip_Box.php:1470, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:617, ../includes/Elements/Info_Box.php:855, ../includes/Elements/Info_Box.php:1088, ../includes/Elements/Info_Box.php:1297, ../includes/Elements/Info_Box.php:1473, ../includes/Elements/Interactive_Circle.php:428, ../includes/Elements/Interactive_Circle.php:740, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:452, ../includes/Elements/Pricing_Table.php:2047, ../includes/Elements/Product_Grid.php:1179, ../includes/Elements/Product_Grid.php:1861, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2610, ../includes/Elements/Product_Grid.php:3063, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:846, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1202, ../includes/Elements/Woo_Checkout.php:1246, ../includes/Elements/Woo_Checkout.php:1401, ../includes/Elements/Woo_Checkout.php:1717, ../includes/Elements/Woo_Checkout.php:2088, ../includes/Elements/Woo_Checkout.php:2528, ../includes/Elements/Woo_Checkout.php:2970, ../includes/Elements/Woo_Product_Carousel.php:1107, ../includes/Elements/Woo_Product_Carousel.php:1603, ../includes/Elements/Woo_Product_Carousel.php:1978, ../includes/Elements/Woo_Product_Carousel.php:2433, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/Woo_Product_Gallery.php:810, ../includes/Elements/Woo_Product_Gallery.php:1250, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/Woo_Product_Gallery.php:1926, ../includes/Elements/Woo_Product_Gallery.php:2321, ../includes/Elements/Woo_Product_List.php:2403, ../includes/Elements/Woo_Product_List.php:2748, ../includes/Elements/Woo_Product_List.php:2866, ../includes/Elements/Woo_Product_List.php:2969, ../includes/Elements/Woo_Product_List.php:3177, ../includes/Elements/WpForms.php:1319, ../includes/Extensions/Hover_Effect.php:707, ../includes/Extensions/Table_of_Content.php:1139, ../includes/Traits/Controls.php:2017, ../includes/Traits/Controls.php:2270, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 msgid "Hover" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1138, ../includes/Elements/Business_Reviews.php:2273, ../includes/Elements/Business_Reviews.php:2329, ../includes/Elements/Business_Reviews.php:2423, ../includes/Elements/Business_Reviews.php:2479, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:700, ../includes/Elements/Cta_Box.php:741, ../includes/Elements/Cta_Box.php:783, ../includes/Elements/Cta_Box.php:1470, ../includes/Elements/Cta_Box.php:1486, ../includes/Elements/Data_Table.php:645, ../includes/Elements/Data_Table.php:685, ../includes/Elements/Data_Table.php:1213, ../includes/Elements/Dual_Color_Header.php:480, ../includes/Elements/Dual_Color_Header.php:577, ../includes/Elements/Dual_Color_Header.php:720, ../includes/Elements/Event_Calendar.php:1704, ../includes/Elements/Event_Calendar.php:2036, ../includes/Elements/Event_Calendar.php:2076, ../includes/Elements/Event_Calendar.php:2143, ../includes/Elements/Event_Calendar.php:2197, ../includes/Elements/Event_Calendar.php:2283, ../includes/Elements/Event_Calendar.php:2361, ../includes/Elements/Event_Calendar.php:2395, ../includes/Elements/Event_Calendar.php:2504, ../includes/Elements/Event_Calendar.php:2896, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:360, ../includes/Elements/Feature_List.php:626, ../includes/Elements/Feature_List.php:848, ../includes/Elements/Feature_List.php:883, ../includes/Elements/Filterable_Gallery.php:1440, ../includes/Elements/Filterable_Gallery.php:1480, ../includes/Elements/Filterable_Gallery.php:1879, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:1939, ../includes/Elements/Filterable_Gallery.php:1954, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2252, ../includes/Elements/Filterable_Gallery.php:2288, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2476, ../includes/Elements/Filterable_Gallery.php:2668, ../includes/Elements/Filterable_Gallery.php:2807, ../includes/Elements/Flip_Box.php:972, ../includes/Elements/Flip_Box.php:1086, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Flip_Box.php:1315, ../includes/Elements/Flip_Box.php:1389, ../includes/Elements/Flip_Box.php:1472, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:506, ../includes/Elements/Image_Accordion.php:535, ../includes/Elements/Info_Box.php:1373, ../includes/Elements/Info_Box.php:1449, ../includes/Elements/Interactive_Circle.php:593, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:446, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Pricing_Table.php:937, ../includes/Elements/Pricing_Table.php:1001, ../includes/Elements/Pricing_Table.php:1092, ../includes/Elements/Pricing_Table.php:1121, ../includes/Elements/Pricing_Table.php:1162, ../includes/Elements/Pricing_Table.php:1191, ../includes/Elements/Pricing_Table.php:1231, ../includes/Elements/Pricing_Table.php:1266, ../includes/Elements/Pricing_Table.php:1448, ../includes/Elements/Pricing_Table.php:1588, ../includes/Elements/Product_Grid.php:1599, ../includes/Elements/Product_Grid.php:2254, ../includes/Elements/Product_Grid.php:2363, ../includes/Elements/Product_Grid.php:2734, ../includes/Elements/Product_Grid.php:2915, ../includes/Elements/Product_Grid.php:2956, ../includes/Elements/Product_Grid.php:3017, ../includes/Elements/Product_Grid.php:3068, ../includes/Elements/Product_Grid.php:3225, ../includes/Elements/Progress_Bar.php:479, ../includes/Elements/Progress_Bar.php:568, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:393, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:844, ../includes/Elements/Woo_Checkout.php:1018, ../includes/Elements/Woo_Checkout.php:1032, ../includes/Elements/Woo_Checkout.php:1152, ../includes/Elements/Woo_Checkout.php:1167, ../includes/Elements/Woo_Checkout.php:1354, ../includes/Elements/Woo_Checkout.php:1390, ../includes/Elements/Woo_Checkout.php:1406, ../includes/Elements/Woo_Checkout.php:1474, ../includes/Elements/Woo_Checkout.php:1646, ../includes/Elements/Woo_Checkout.php:1696, ../includes/Elements/Woo_Checkout.php:1736, ../includes/Elements/Woo_Checkout.php:1833, ../includes/Elements/Woo_Checkout.php:2067, ../includes/Elements/Woo_Checkout.php:2107, ../includes/Elements/Woo_Checkout.php:2225, ../includes/Elements/Woo_Checkout.php:2269, ../includes/Elements/Woo_Checkout.php:2313, ../includes/Elements/Woo_Checkout.php:2419, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/Woo_Checkout.php:2498, ../includes/Elements/Woo_Checkout.php:2775, ../includes/Elements/Woo_Checkout.php:2796, ../includes/Elements/Woo_Checkout.php:2831, ../includes/Elements/Woo_Checkout.php:2860, ../includes/Elements/Woo_Checkout.php:2949, ../includes/Elements/Woo_Checkout.php:2989, ../includes/Elements/Woo_Product_Carousel.php:1331, ../includes/Elements/Woo_Product_Carousel.php:1526, ../includes/Elements/Woo_Product_Carousel.php:1608, ../includes/Elements/Woo_Product_Carousel.php:1828, ../includes/Elements/Woo_Product_Carousel.php:1869, ../includes/Elements/Woo_Product_Carousel.php:1931, ../includes/Elements/Woo_Product_Carousel.php:1983, ../includes/Elements/Woo_Product_Carousel.php:2136, ../includes/Elements/Woo_Product_Carousel.php:2377, ../includes/Elements/Woo_Product_Carousel.php:2440, ../includes/Elements/Woo_Product_Carousel.php:2473, ../includes/Elements/Woo_Product_Carousel.php:2811, ../includes/Elements/Woo_Product_Carousel.php:2867, ../includes/Elements/Woo_Product_Gallery.php:1486, ../includes/Elements/Woo_Product_Gallery.php:1520, ../includes/Elements/Woo_Product_Gallery.php:1558, ../includes/Elements/Woo_Product_Gallery.php:1881, ../includes/Elements/Woo_Product_Gallery.php:1931, ../includes/Elements/Woo_Product_Gallery.php:2132, ../includes/Elements/Woo_Product_Gallery.php:2173, ../includes/Elements/Woo_Product_Gallery.php:2214, ../includes/Elements/Woo_Product_Gallery.php:2275, ../includes/Elements/Woo_Product_Gallery.php:2326, ../includes/Elements/Woo_Product_Gallery.php:2483, ../includes/Elements/Woo_Product_List.php:2110, ../includes/Elements/Woo_Product_List.php:2168, ../includes/Elements/Woo_Product_List.php:2290, ../includes/Elements/Woo_Product_List.php:2327, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2414, ../includes/Elements/Woo_Product_List.php:2455, ../includes/Elements/Woo_Product_List.php:2493, ../includes/Elements/Woo_Product_List.php:2531, ../includes/Elements/Woo_Product_List.php:2713, ../includes/Elements/Woo_Product_List.php:2759, ../includes/Elements/Woo_Product_List.php:2834, ../includes/Elements/Woo_Product_List.php:2877, ../includes/Elements/Woo_Product_List.php:2942, ../includes/Elements/Woo_Product_List.php:2977, ../includes/Elements/Woo_Product_List.php:3046, ../includes/Elements/Woo_Product_List.php:3098, ../includes/Elements/Woo_Product_List.php:3182, ../includes/Elements/Woo_Product_List.php:3338, ../includes/Elements/WpForms.php:993, ../includes/Elements/WpForms.php:1109, ../includes/Extensions/Table_of_Content.php:1275, ../includes/Traits/Controls.php:1844, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 +#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1138, ../includes/Elements/Business_Reviews.php:2273, ../includes/Elements/Business_Reviews.php:2329, ../includes/Elements/Business_Reviews.php:2423, ../includes/Elements/Business_Reviews.php:2479, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:704, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:787, ../includes/Elements/Cta_Box.php:1474, ../includes/Elements/Cta_Box.php:1490, ../includes/Elements/Data_Table.php:649, ../includes/Elements/Data_Table.php:689, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:484, ../includes/Elements/Dual_Color_Header.php:581, ../includes/Elements/Dual_Color_Header.php:724, ../includes/Elements/Event_Calendar.php:1704, ../includes/Elements/Event_Calendar.php:2036, ../includes/Elements/Event_Calendar.php:2076, ../includes/Elements/Event_Calendar.php:2143, ../includes/Elements/Event_Calendar.php:2197, ../includes/Elements/Event_Calendar.php:2283, ../includes/Elements/Event_Calendar.php:2361, ../includes/Elements/Event_Calendar.php:2395, ../includes/Elements/Event_Calendar.php:2504, ../includes/Elements/Event_Calendar.php:2896, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:364, ../includes/Elements/Feature_List.php:630, ../includes/Elements/Feature_List.php:852, ../includes/Elements/Feature_List.php:887, ../includes/Elements/Filterable_Gallery.php:1444, ../includes/Elements/Filterable_Gallery.php:1484, ../includes/Elements/Filterable_Gallery.php:1883, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:1943, ../includes/Elements/Filterable_Gallery.php:1958, ../includes/Elements/Filterable_Gallery.php:2043, ../includes/Elements/Filterable_Gallery.php:2181, ../includes/Elements/Filterable_Gallery.php:2256, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/Filterable_Gallery.php:2339, ../includes/Elements/Filterable_Gallery.php:2480, ../includes/Elements/Filterable_Gallery.php:2672, ../includes/Elements/Filterable_Gallery.php:2811, ../includes/Elements/Flip_Box.php:976, ../includes/Elements/Flip_Box.php:1090, ../includes/Elements/Flip_Box.php:1218, ../includes/Elements/Flip_Box.php:1249, ../includes/Elements/Flip_Box.php:1287, ../includes/Elements/Flip_Box.php:1319, ../includes/Elements/Flip_Box.php:1393, ../includes/Elements/Flip_Box.php:1476, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:510, ../includes/Elements/Image_Accordion.php:539, ../includes/Elements/Info_Box.php:1377, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Interactive_Circle.php:597, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:446, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Pricing_Table.php:941, ../includes/Elements/Pricing_Table.php:1005, ../includes/Elements/Pricing_Table.php:1096, ../includes/Elements/Pricing_Table.php:1125, ../includes/Elements/Pricing_Table.php:1166, ../includes/Elements/Pricing_Table.php:1195, ../includes/Elements/Pricing_Table.php:1235, ../includes/Elements/Pricing_Table.php:1270, ../includes/Elements/Pricing_Table.php:1452, ../includes/Elements/Pricing_Table.php:1592, ../includes/Elements/Product_Grid.php:1599, ../includes/Elements/Product_Grid.php:2254, ../includes/Elements/Product_Grid.php:2363, ../includes/Elements/Product_Grid.php:2734, ../includes/Elements/Product_Grid.php:2915, ../includes/Elements/Product_Grid.php:2956, ../includes/Elements/Product_Grid.php:3017, ../includes/Elements/Product_Grid.php:3068, ../includes/Elements/Product_Grid.php:3225, ../includes/Elements/Progress_Bar.php:483, ../includes/Elements/Progress_Bar.php:572, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:397, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:844, ../includes/Elements/Woo_Checkout.php:1018, ../includes/Elements/Woo_Checkout.php:1032, ../includes/Elements/Woo_Checkout.php:1152, ../includes/Elements/Woo_Checkout.php:1167, ../includes/Elements/Woo_Checkout.php:1354, ../includes/Elements/Woo_Checkout.php:1390, ../includes/Elements/Woo_Checkout.php:1406, ../includes/Elements/Woo_Checkout.php:1474, ../includes/Elements/Woo_Checkout.php:1646, ../includes/Elements/Woo_Checkout.php:1696, ../includes/Elements/Woo_Checkout.php:1736, ../includes/Elements/Woo_Checkout.php:1833, ../includes/Elements/Woo_Checkout.php:2067, ../includes/Elements/Woo_Checkout.php:2107, ../includes/Elements/Woo_Checkout.php:2225, ../includes/Elements/Woo_Checkout.php:2269, ../includes/Elements/Woo_Checkout.php:2313, ../includes/Elements/Woo_Checkout.php:2419, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/Woo_Checkout.php:2498, ../includes/Elements/Woo_Checkout.php:2775, ../includes/Elements/Woo_Checkout.php:2796, ../includes/Elements/Woo_Checkout.php:2831, ../includes/Elements/Woo_Checkout.php:2860, ../includes/Elements/Woo_Checkout.php:2949, ../includes/Elements/Woo_Checkout.php:2989, ../includes/Elements/Woo_Product_Carousel.php:1331, ../includes/Elements/Woo_Product_Carousel.php:1526, ../includes/Elements/Woo_Product_Carousel.php:1608, ../includes/Elements/Woo_Product_Carousel.php:1828, ../includes/Elements/Woo_Product_Carousel.php:1869, ../includes/Elements/Woo_Product_Carousel.php:1931, ../includes/Elements/Woo_Product_Carousel.php:1983, ../includes/Elements/Woo_Product_Carousel.php:2136, ../includes/Elements/Woo_Product_Carousel.php:2377, ../includes/Elements/Woo_Product_Carousel.php:2440, ../includes/Elements/Woo_Product_Carousel.php:2473, ../includes/Elements/Woo_Product_Carousel.php:2811, ../includes/Elements/Woo_Product_Carousel.php:2867, ../includes/Elements/Woo_Product_Gallery.php:1486, ../includes/Elements/Woo_Product_Gallery.php:1520, ../includes/Elements/Woo_Product_Gallery.php:1558, ../includes/Elements/Woo_Product_Gallery.php:1881, ../includes/Elements/Woo_Product_Gallery.php:1931, ../includes/Elements/Woo_Product_Gallery.php:2132, ../includes/Elements/Woo_Product_Gallery.php:2173, ../includes/Elements/Woo_Product_Gallery.php:2214, ../includes/Elements/Woo_Product_Gallery.php:2275, ../includes/Elements/Woo_Product_Gallery.php:2326, ../includes/Elements/Woo_Product_Gallery.php:2483, ../includes/Elements/Woo_Product_List.php:2110, ../includes/Elements/Woo_Product_List.php:2168, ../includes/Elements/Woo_Product_List.php:2290, ../includes/Elements/Woo_Product_List.php:2327, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2414, ../includes/Elements/Woo_Product_List.php:2455, ../includes/Elements/Woo_Product_List.php:2493, ../includes/Elements/Woo_Product_List.php:2531, ../includes/Elements/Woo_Product_List.php:2713, ../includes/Elements/Woo_Product_List.php:2759, ../includes/Elements/Woo_Product_List.php:2834, ../includes/Elements/Woo_Product_List.php:2877, ../includes/Elements/Woo_Product_List.php:2942, ../includes/Elements/Woo_Product_List.php:2977, ../includes/Elements/Woo_Product_List.php:3046, ../includes/Elements/Woo_Product_List.php:3098, ../includes/Elements/Woo_Product_List.php:3182, ../includes/Elements/Woo_Product_List.php:3338, ../includes/Elements/WpForms.php:993, ../includes/Elements/WpForms.php:1109, ../includes/Extensions/Table_of_Content.php:1275, ../includes/Traits/Controls.php:1844, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 msgid "Color" msgstr "" @@ -821,343 +821,343 @@ msgstr "" msgid "No content found" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:105, ../includes/Elements/Adv_Tabs.php:74, ../includes/Elements/Facebook_Feed.php:244, ../includes/Elements/Woo_Cart.php:137, ../includes/Elements/Woo_Checkout.php:122, ../includes/Extensions/Hover_Effect.php:630, ../includes/Extensions/Hover_Effect.php:1271 +#: ../includes/Elements/Adv_Accordion.php:109, ../includes/Elements/Adv_Tabs.php:78, ../includes/Elements/Facebook_Feed.php:244, ../includes/Elements/Woo_Cart.php:137, ../includes/Elements/Woo_Checkout.php:122, ../includes/Extensions/Hover_Effect.php:630, ../includes/Extensions/Hover_Effect.php:1271 msgid "General Settings" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:111 +#: ../includes/Elements/Adv_Accordion.php:115 msgid "Accordion Type" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:116 +#: ../includes/Elements/Adv_Accordion.php:120 msgid "Accordion" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Business_Reviews.php:2145, ../includes/Elements/Login_Register.php:1621, ../includes/Elements/Login_Register.php:4346, ../includes/Elements/Woo_Product_Carousel.php:2703, ../includes/Traits/Admin.php:759, ../includes/Traits/Elements.php:299 +#: ../includes/Elements/Adv_Accordion.php:121, ../includes/Elements/Business_Reviews.php:2145, ../includes/Elements/Login_Register.php:1621, ../includes/Elements/Login_Register.php:4346, ../includes/Elements/Woo_Product_Carousel.php:2703, ../includes/Traits/Admin.php:759, ../includes/Traits/Elements.php:299 msgid "Toggle" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:124 +#: ../includes/Elements/Adv_Accordion.php:128 msgid "Select Accordion Tab Title Tag" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:318, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:441, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:548, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:243, ../includes/Elements/Product_Grid.php:607, ../includes/Elements/Product_Grid.php:2062, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:276, ../includes/Elements/Woo_Product_Carousel.php:456, ../includes/Elements/Woo_Product_Gallery.php:542, ../includes/Elements/Woo_Product_Gallery.php:1764, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:1155, ../includes/Extensions/Table_of_Content.php:145, ../includes/Extensions/Table_of_Content.php:202, ../includes/Traits/Controls.php:1174 +#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:322, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:445, ../includes/Elements/Flip_Box.php:312, ../includes/Elements/Flip_Box.php:552, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:247, ../includes/Elements/Product_Grid.php:607, ../includes/Elements/Product_Grid.php:2062, ../includes/Elements/Progress_Bar.php:145, ../includes/Elements/Tooltip.php:165, ../includes/Elements/Woo_Product_Carousel.php:276, ../includes/Elements/Woo_Product_Carousel.php:456, ../includes/Elements/Woo_Product_Gallery.php:542, ../includes/Elements/Woo_Product_Gallery.php:1764, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:1155, ../includes/Extensions/Table_of_Content.php:145, ../includes/Extensions/Table_of_Content.php:202, ../includes/Traits/Controls.php:1174 msgid "H1" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:319, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:442, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:549, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:244, ../includes/Elements/Product_Grid.php:611, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:277, ../includes/Elements/Woo_Product_Carousel.php:457, ../includes/Elements/Woo_Product_Gallery.php:546, ../includes/Elements/Woo_Product_Gallery.php:1768, ../includes/Elements/Woo_Product_List.php:879, ../includes/Elements/Woo_Product_List.php:1159, ../includes/Extensions/Table_of_Content.php:149, ../includes/Extensions/Table_of_Content.php:203, ../includes/Traits/Controls.php:1178 +#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:323, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:446, ../includes/Elements/Flip_Box.php:313, ../includes/Elements/Flip_Box.php:553, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Product_Grid.php:611, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Progress_Bar.php:146, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:277, ../includes/Elements/Woo_Product_Carousel.php:457, ../includes/Elements/Woo_Product_Gallery.php:546, ../includes/Elements/Woo_Product_Gallery.php:1768, ../includes/Elements/Woo_Product_List.php:879, ../includes/Elements/Woo_Product_List.php:1159, ../includes/Extensions/Table_of_Content.php:149, ../includes/Extensions/Table_of_Content.php:203, ../includes/Traits/Controls.php:1178 msgid "H2" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:320, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:443, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:550, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:245, ../includes/Elements/Product_Grid.php:615, ../includes/Elements/Product_Grid.php:2070, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:278, ../includes/Elements/Woo_Product_Carousel.php:458, ../includes/Elements/Woo_Product_Gallery.php:550, ../includes/Elements/Woo_Product_Gallery.php:1772, ../includes/Elements/Woo_Product_List.php:883, ../includes/Elements/Woo_Product_List.php:1163, ../includes/Extensions/Table_of_Content.php:153, ../includes/Extensions/Table_of_Content.php:204, ../includes/Traits/Controls.php:1182 +#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:324, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:447, ../includes/Elements/Flip_Box.php:314, ../includes/Elements/Flip_Box.php:554, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Product_Grid.php:615, ../includes/Elements/Product_Grid.php:2070, ../includes/Elements/Progress_Bar.php:147, ../includes/Elements/Tooltip.php:167, ../includes/Elements/Woo_Product_Carousel.php:278, ../includes/Elements/Woo_Product_Carousel.php:458, ../includes/Elements/Woo_Product_Gallery.php:550, ../includes/Elements/Woo_Product_Gallery.php:1772, ../includes/Elements/Woo_Product_List.php:883, ../includes/Elements/Woo_Product_List.php:1163, ../includes/Extensions/Table_of_Content.php:153, ../includes/Extensions/Table_of_Content.php:204, ../includes/Traits/Controls.php:1182 msgid "H3" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:321, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:444, ../includes/Elements/Flip_Box.php:311, ../includes/Elements/Flip_Box.php:551, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:246, ../includes/Elements/Product_Grid.php:619, ../includes/Elements/Product_Grid.php:2074, ../includes/Elements/Progress_Bar.php:144, ../includes/Elements/Tooltip.php:164, ../includes/Elements/Woo_Product_Carousel.php:279, ../includes/Elements/Woo_Product_Carousel.php:459, ../includes/Elements/Woo_Product_Gallery.php:554, ../includes/Elements/Woo_Product_Gallery.php:1776, ../includes/Elements/Woo_Product_List.php:887, ../includes/Elements/Woo_Product_List.php:1167, ../includes/Extensions/Table_of_Content.php:157, ../includes/Extensions/Table_of_Content.php:205, ../includes/Traits/Controls.php:1186 +#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:448, ../includes/Elements/Flip_Box.php:315, ../includes/Elements/Flip_Box.php:555, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:250, ../includes/Elements/Product_Grid.php:619, ../includes/Elements/Product_Grid.php:2074, ../includes/Elements/Progress_Bar.php:148, ../includes/Elements/Tooltip.php:168, ../includes/Elements/Woo_Product_Carousel.php:279, ../includes/Elements/Woo_Product_Carousel.php:459, ../includes/Elements/Woo_Product_Gallery.php:554, ../includes/Elements/Woo_Product_Gallery.php:1776, ../includes/Elements/Woo_Product_List.php:887, ../includes/Elements/Woo_Product_List.php:1167, ../includes/Extensions/Table_of_Content.php:157, ../includes/Extensions/Table_of_Content.php:205, ../includes/Traits/Controls.php:1186 msgid "H4" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:322, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:445, ../includes/Elements/Flip_Box.php:312, ../includes/Elements/Flip_Box.php:552, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:247, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Progress_Bar.php:145, ../includes/Elements/Tooltip.php:165, ../includes/Elements/Woo_Product_Carousel.php:280, ../includes/Elements/Woo_Product_Carousel.php:460, ../includes/Elements/Woo_Product_Gallery.php:558, ../includes/Elements/Woo_Product_Gallery.php:1780, ../includes/Elements/Woo_Product_List.php:891, ../includes/Elements/Woo_Product_List.php:1171, ../includes/Extensions/Table_of_Content.php:161, ../includes/Extensions/Table_of_Content.php:206, ../includes/Traits/Controls.php:1190 +#: ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:326, ../includes/Elements/Dual_Color_Header.php:147, ../includes/Elements/Filterable_Gallery.php:449, ../includes/Elements/Flip_Box.php:316, ../includes/Elements/Flip_Box.php:556, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Progress_Bar.php:149, ../includes/Elements/Tooltip.php:169, ../includes/Elements/Woo_Product_Carousel.php:280, ../includes/Elements/Woo_Product_Carousel.php:460, ../includes/Elements/Woo_Product_Gallery.php:558, ../includes/Elements/Woo_Product_Gallery.php:1780, ../includes/Elements/Woo_Product_List.php:891, ../includes/Elements/Woo_Product_List.php:1171, ../includes/Extensions/Table_of_Content.php:161, ../includes/Extensions/Table_of_Content.php:206, ../includes/Traits/Controls.php:1190 msgid "H5" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:323, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:446, ../includes/Elements/Flip_Box.php:313, ../includes/Elements/Flip_Box.php:553, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Product_Grid.php:627, ../includes/Elements/Product_Grid.php:2082, ../includes/Elements/Progress_Bar.php:146, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:281, ../includes/Elements/Woo_Product_Carousel.php:461, ../includes/Elements/Woo_Product_Gallery.php:562, ../includes/Elements/Woo_Product_Gallery.php:1784, ../includes/Elements/Woo_Product_List.php:895, ../includes/Elements/Woo_Product_List.php:1175, ../includes/Extensions/Table_of_Content.php:165, ../includes/Extensions/Table_of_Content.php:207, ../includes/Traits/Controls.php:1194 +#: ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:327, ../includes/Elements/Dual_Color_Header.php:148, ../includes/Elements/Filterable_Gallery.php:450, ../includes/Elements/Flip_Box.php:317, ../includes/Elements/Flip_Box.php:557, ../includes/Elements/Image_Accordion.php:165, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Product_Grid.php:627, ../includes/Elements/Product_Grid.php:2082, ../includes/Elements/Progress_Bar.php:150, ../includes/Elements/Tooltip.php:170, ../includes/Elements/Woo_Product_Carousel.php:281, ../includes/Elements/Woo_Product_Carousel.php:461, ../includes/Elements/Woo_Product_Gallery.php:562, ../includes/Elements/Woo_Product_Gallery.php:1784, ../includes/Elements/Woo_Product_List.php:895, ../includes/Elements/Woo_Product_List.php:1175, ../includes/Extensions/Table_of_Content.php:165, ../includes/Extensions/Table_of_Content.php:207, ../includes/Traits/Controls.php:1194 msgid "H6" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:324, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:447, ../includes/Elements/Flip_Box.php:314, ../includes/Elements/Flip_Box.php:554, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Product_Grid.php:635, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Woo_Product_Carousel.php:282, ../includes/Elements/Woo_Product_Carousel.php:462, ../includes/Elements/Woo_Product_Gallery.php:570, ../includes/Elements/Woo_Product_Gallery.php:1792, ../includes/Elements/Woo_Product_List.php:903, ../includes/Elements/Woo_Product_List.php:1183, ../includes/Traits/Controls.php:1202 +#: ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:328, ../includes/Elements/Dual_Color_Header.php:149, ../includes/Elements/Filterable_Gallery.php:451, ../includes/Elements/Flip_Box.php:318, ../includes/Elements/Flip_Box.php:558, ../includes/Elements/Image_Accordion.php:166, ../includes/Elements/Info_Box.php:253, ../includes/Elements/Product_Grid.php:635, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Woo_Product_Carousel.php:282, ../includes/Elements/Woo_Product_Carousel.php:462, ../includes/Elements/Woo_Product_Gallery.php:570, ../includes/Elements/Woo_Product_Gallery.php:1792, ../includes/Elements/Woo_Product_List.php:903, ../includes/Elements/Woo_Product_List.php:1183, ../includes/Traits/Controls.php:1202 msgid "Span" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:448, ../includes/Elements/Flip_Box.php:315, ../includes/Elements/Flip_Box.php:555, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:250, ../includes/Elements/Product_Grid.php:639, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Tooltip.php:169, ../includes/Elements/Woo_Product_Carousel.php:283, ../includes/Elements/Woo_Product_Carousel.php:463, ../includes/Elements/Woo_Product_Gallery.php:574, ../includes/Elements/Woo_Product_Gallery.php:1796, ../includes/Elements/Woo_Product_List.php:907, ../includes/Elements/Woo_Product_List.php:1187, ../includes/Traits/Controls.php:1206 +#: ../includes/Elements/Adv_Accordion.php:139, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:329, ../includes/Elements/Dual_Color_Header.php:150, ../includes/Elements/Filterable_Gallery.php:452, ../includes/Elements/Flip_Box.php:319, ../includes/Elements/Flip_Box.php:559, ../includes/Elements/Image_Accordion.php:167, ../includes/Elements/Info_Box.php:254, ../includes/Elements/Product_Grid.php:639, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Tooltip.php:173, ../includes/Elements/Woo_Product_Carousel.php:283, ../includes/Elements/Woo_Product_Carousel.php:463, ../includes/Elements/Woo_Product_Gallery.php:574, ../includes/Elements/Woo_Product_Gallery.php:1796, ../includes/Elements/Woo_Product_List.php:907, ../includes/Elements/Woo_Product_List.php:1187, ../includes/Traits/Controls.php:1206 msgid "P" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:326, ../includes/Elements/Dual_Color_Header.php:147, ../includes/Elements/Filterable_Gallery.php:449, ../includes/Elements/Flip_Box.php:316, ../includes/Elements/Flip_Box.php:556, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:631, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Woo_Product_Carousel.php:284, ../includes/Elements/Woo_Product_Carousel.php:464, ../includes/Elements/Woo_Product_Gallery.php:566, ../includes/Elements/Woo_Product_Gallery.php:1788, ../includes/Elements/Woo_Product_List.php:899, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Traits/Controls.php:1198 +#: ../includes/Elements/Adv_Accordion.php:140, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:330, ../includes/Elements/Dual_Color_Header.php:151, ../includes/Elements/Filterable_Gallery.php:453, ../includes/Elements/Flip_Box.php:320, ../includes/Elements/Flip_Box.php:560, ../includes/Elements/Image_Accordion.php:168, ../includes/Elements/Info_Box.php:255, ../includes/Elements/Product_Grid.php:631, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Woo_Product_Carousel.php:284, ../includes/Elements/Woo_Product_Carousel.php:464, ../includes/Elements/Woo_Product_Gallery.php:566, ../includes/Elements/Woo_Product_Gallery.php:1788, ../includes/Elements/Woo_Product_List.php:899, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Traits/Controls.php:1198 msgid "Div" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:143 +#: ../includes/Elements/Adv_Accordion.php:147 msgid "Enable Toggle Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:152 +#: ../includes/Elements/Adv_Accordion.php:156 msgid "Toggle Icon Postion" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:167 +#: ../includes/Elements/Adv_Accordion.php:171 msgid "Toggle Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:182 +#: ../includes/Elements/Adv_Accordion.php:186 msgid "Toggle Speed (ms)" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:192, ../includes/Elements/Adv_Tabs.php:168 +#: ../includes/Elements/Adv_Accordion.php:196, ../includes/Elements/Adv_Tabs.php:172 msgid "Custom ID offset" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:193, ../includes/Elements/Adv_Tabs.php:169 +#: ../includes/Elements/Adv_Accordion.php:197, ../includes/Elements/Adv_Tabs.php:173 msgid "Use offset to set the custom ID target scrolling position." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:204, ../includes/Elements/Adv_Tabs.php:180 +#: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:184 msgid "Scroll Speed (ms)" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:214, ../includes/Elements/Adv_Tabs.php:190 +#: ../includes/Elements/Adv_Accordion.php:218, ../includes/Elements/Adv_Tabs.php:194 msgid "Scroll on Click" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:224 +#: ../includes/Elements/Adv_Accordion.php:228 msgid "Enable FAQ Schema" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:225 +#: ../includes/Elements/Adv_Accordion.php:229 msgid "For saved template, FAQ Schema Text can be added manually on each tab." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:241, ../includes/Elements/Countdown.php:226, ../includes/Elements/Cta_Box.php:73, ../includes/Elements/Dual_Color_Header.php:70, ../includes/Elements/Facebook_Feed.php:289, ../includes/Elements/Feature_List.php:65, ../includes/Elements/Tooltip.php:64 +#: ../includes/Elements/Adv_Accordion.php:245, ../includes/Elements/Countdown.php:230, ../includes/Elements/Cta_Box.php:77, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Facebook_Feed.php:289, ../includes/Elements/Feature_List.php:69, ../includes/Elements/Tooltip.php:68 msgid "Content Settings" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:250, ../includes/Elements/Adv_Tabs.php:214, ../includes/Elements/Filterable_Gallery.php:509, ../includes/Elements/Interactive_Circle.php:161 +#: ../includes/Elements/Adv_Accordion.php:254, ../includes/Elements/Adv_Tabs.php:218, ../includes/Elements/Filterable_Gallery.php:513, ../includes/Elements/Interactive_Circle.php:165 msgid "Active as Default" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:260 +#: ../includes/Elements/Adv_Accordion.php:264 msgid "Enable Tab Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:285 +#: ../includes/Elements/Adv_Accordion.php:289 msgid "Opened Tab" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:295, ../includes/Elements/Adv_Accordion.php:323, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Adv_Tabs.php:248, ../includes/Elements/Betterdocs_Category_Box.php:410, ../includes/Elements/Betterdocs_Category_Box.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:1068, ../includes/Elements/Betterdocs_Category_Grid.php:1077, ../includes/Elements/Betterdocs_Category_Grid.php:1209, ../includes/Elements/Betterdocs_Category_Grid.php:1316, ../includes/Elements/Creative_Button.php:137, ../includes/Elements/Cta_Box.php:265, ../includes/Elements/Cta_Box.php:390, ../includes/Elements/Data_Table.php:158, ../includes/Elements/Data_Table.php:177, ../includes/Elements/Data_Table.php:313, ../includes/Elements/Data_Table.php:366, ../includes/Elements/Dual_Color_Header.php:119, ../includes/Elements/Dual_Color_Header.php:280, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:587, ../includes/Elements/Flip_Box.php:206, ../includes/Elements/Flip_Box.php:235, ../includes/Elements/Flip_Box.php:446, ../includes/Elements/Flip_Box.php:475, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:179, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Interactive_Circle.php:177, ../includes/Elements/Interactive_Circle.php:246, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Simple_Menu.php:227, ../includes/Elements/Simple_Menu.php:923, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/SVG_Draw.php:85, ../includes/Elements/SVG_Draw.php:94, ../includes/Elements/Team_Member.php:175, ../includes/Elements/Tooltip.php:75, ../includes/Elements/Tooltip.php:98, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Extensions/Scroll_to_Top.php:344, ../includes/Extensions/Table_of_Content.php:849, ../includes/Traits/Controls.php:1008, ../includes/Traits/Controls.php:1065 +#: ../includes/Elements/Adv_Accordion.php:299, ../includes/Elements/Adv_Accordion.php:327, ../includes/Elements/Adv_Tabs.php:237, ../includes/Elements/Adv_Tabs.php:252, ../includes/Elements/Betterdocs_Category_Box.php:410, ../includes/Elements/Betterdocs_Category_Box.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:1068, ../includes/Elements/Betterdocs_Category_Grid.php:1077, ../includes/Elements/Betterdocs_Category_Grid.php:1209, ../includes/Elements/Betterdocs_Category_Grid.php:1316, ../includes/Elements/Creative_Button.php:141, ../includes/Elements/Cta_Box.php:269, ../includes/Elements/Cta_Box.php:394, ../includes/Elements/Data_Table.php:162, ../includes/Elements/Data_Table.php:181, ../includes/Elements/Data_Table.php:317, ../includes/Elements/Data_Table.php:370, ../includes/Elements/Dual_Color_Header.php:123, ../includes/Elements/Dual_Color_Header.php:284, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:98, ../includes/Elements/Feature_List.php:591, ../includes/Elements/Flip_Box.php:210, ../includes/Elements/Flip_Box.php:239, ../includes/Elements/Flip_Box.php:450, ../includes/Elements/Flip_Box.php:479, ../includes/Elements/Info_Box.php:111, ../includes/Elements/Info_Box.php:183, ../includes/Elements/Info_Box.php:460, ../includes/Elements/Interactive_Circle.php:181, ../includes/Elements/Interactive_Circle.php:250, ../includes/Elements/Pricing_Table.php:200, ../includes/Elements/Simple_Menu.php:227, ../includes/Elements/Simple_Menu.php:923, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/SVG_Draw.php:89, ../includes/Elements/SVG_Draw.php:98, ../includes/Elements/Team_Member.php:179, ../includes/Elements/Tooltip.php:79, ../includes/Elements/Tooltip.php:102, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Extensions/Scroll_to_Top.php:344, ../includes/Extensions/Table_of_Content.php:849, ../includes/Traits/Controls.php:1008, ../includes/Traits/Controls.php:1065 msgid "Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:313 +#: ../includes/Elements/Adv_Accordion.php:317 msgid "Closed Tab" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:344, ../includes/Elements/Adv_Accordion.php:347, ../includes/Elements/Adv_Tabs.php:282, ../includes/Elements/Adv_Tabs.php:284, ../includes/Elements/Adv_Tabs.php:482 +#: ../includes/Elements/Adv_Accordion.php:348, ../includes/Elements/Adv_Accordion.php:351, ../includes/Elements/Adv_Tabs.php:286, ../includes/Elements/Adv_Tabs.php:288, ../includes/Elements/Adv_Tabs.php:486 msgid "Tab Title" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Tabs.php:317, ../includes/Elements/Cta_Box.php:334, ../includes/Elements/Data_Table.php:309, ../includes/Elements/Flip_Box.php:172, ../includes/Elements/Flip_Box.php:414, ../includes/Elements/Info_Box.php:258, ../includes/Elements/Tooltip.php:70 +#: ../includes/Elements/Adv_Accordion.php:364, ../includes/Elements/Adv_Tabs.php:321, ../includes/Elements/Cta_Box.php:338, ../includes/Elements/Data_Table.php:313, ../includes/Elements/Flip_Box.php:176, ../includes/Elements/Flip_Box.php:418, ../includes/Elements/Info_Box.php:262, ../includes/Elements/Tooltip.php:74 msgid "Content Type" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:363, ../includes/Elements/Adv_Tabs.php:205, ../includes/Elements/Adv_Tabs.php:320, ../includes/Elements/Adv_Tabs.php:810, ../includes/Elements/Business_Reviews.php:560, ../includes/Elements/Business_Reviews.php:1434, ../includes/Elements/Cta_Box.php:337, ../includes/Elements/Cta_Box.php:358, ../includes/Elements/Data_Table.php:271, ../includes/Elements/Data_Table.php:386, ../includes/Elements/Data_Table.php:400, ../includes/Elements/Event_Calendar.php:286, ../includes/Elements/Event_Calendar.php:2804, ../includes/Elements/Facebook_Feed.php:1036, ../includes/Elements/Feature_List.php:198, ../includes/Elements/Feature_List.php:780, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Flip_Box.php:175, ../includes/Elements/Flip_Box.php:417, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:214, ../includes/Elements/Image_Accordion.php:526, ../includes/Elements/Info_Box.php:261, ../includes/Elements/Interactive_Circle.php:114, ../includes/Elements/Interactive_Circle.php:146, ../includes/Elements/Interactive_Circle.php:240, ../includes/Elements/Interactive_Circle.php:883, ../includes/Elements/NFT_Gallery.php:527, ../includes/Elements/Post_Timeline.php:212, ../includes/Elements/Product_Grid.php:2831, ../includes/Elements/Tooltip.php:143, ../includes/Elements/Tooltip.php:279, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Gallery.php:2048, ../includes/Elements/Woo_Product_List.php:648, ../includes/Elements/Woo_Product_List.php:1564 +#: ../includes/Elements/Adv_Accordion.php:367, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:814, ../includes/Elements/Business_Reviews.php:560, ../includes/Elements/Business_Reviews.php:1434, ../includes/Elements/Cta_Box.php:341, ../includes/Elements/Cta_Box.php:362, ../includes/Elements/Data_Table.php:275, ../includes/Elements/Data_Table.php:390, ../includes/Elements/Data_Table.php:404, ../includes/Elements/Event_Calendar.php:286, ../includes/Elements/Event_Calendar.php:2804, ../includes/Elements/Facebook_Feed.php:1036, ../includes/Elements/Feature_List.php:202, ../includes/Elements/Feature_List.php:784, ../includes/Elements/Flip_Box.php:161, ../includes/Elements/Flip_Box.php:179, ../includes/Elements/Flip_Box.php:421, ../includes/Elements/Image_Accordion.php:101, ../includes/Elements/Image_Accordion.php:218, ../includes/Elements/Image_Accordion.php:530, ../includes/Elements/Info_Box.php:265, ../includes/Elements/Interactive_Circle.php:118, ../includes/Elements/Interactive_Circle.php:150, ../includes/Elements/Interactive_Circle.php:244, ../includes/Elements/Interactive_Circle.php:887, ../includes/Elements/NFT_Gallery.php:527, ../includes/Elements/Post_Timeline.php:212, ../includes/Elements/Product_Grid.php:2831, ../includes/Elements/Tooltip.php:147, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Gallery.php:2048, ../includes/Elements/Woo_Product_List.php:648, ../includes/Elements/Woo_Product_List.php:1564 msgid "Content" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:364, ../includes/Elements/Adv_Tabs.php:321, ../includes/Elements/Countdown.php:503, ../includes/Elements/Cta_Box.php:338, ../includes/Elements/Flip_Box.php:176, ../includes/Elements/Flip_Box.php:418, ../includes/Elements/Info_Box.php:262 +#: ../includes/Elements/Adv_Accordion.php:368, ../includes/Elements/Adv_Tabs.php:325, ../includes/Elements/Countdown.php:507, ../includes/Elements/Cta_Box.php:342, ../includes/Elements/Flip_Box.php:180, ../includes/Elements/Flip_Box.php:422, ../includes/Elements/Info_Box.php:266 msgid "Saved Templates" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:374, ../includes/Elements/Adv_Tabs.php:330, ../includes/Elements/Countdown.php:553, ../includes/Elements/Cta_Box.php:347, ../includes/Elements/Data_Table.php:354, ../includes/Elements/Flip_Box.php:185, ../includes/Elements/Flip_Box.php:427, ../includes/Elements/Info_Box.php:271 +#: ../includes/Elements/Adv_Accordion.php:378, ../includes/Elements/Adv_Tabs.php:334, ../includes/Elements/Countdown.php:557, ../includes/Elements/Cta_Box.php:351, ../includes/Elements/Data_Table.php:358, ../includes/Elements/Flip_Box.php:189, ../includes/Elements/Flip_Box.php:431, ../includes/Elements/Info_Box.php:275 msgid "Choose Template" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:389, ../includes/Elements/Adv_Tabs.php:344, ../includes/Elements/Interactive_Circle.php:255 +#: ../includes/Elements/Adv_Accordion.php:393, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Interactive_Circle.php:259 msgid "Tab Content" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Tabs.php:346, ../includes/Elements/Feature_List.php:200, ../includes/Elements/Interactive_Circle.php:257 +#: ../includes/Elements/Adv_Accordion.php:395, ../includes/Elements/Adv_Tabs.php:350, ../includes/Elements/Feature_List.php:204, ../includes/Elements/Interactive_Circle.php:261 msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:402, ../includes/Elements/Adv_Tabs.php:357, ../includes/Elements/Filterable_Gallery.php:476 +#: ../includes/Elements/Adv_Accordion.php:406, ../includes/Elements/Adv_Tabs.php:361, ../includes/Elements/Filterable_Gallery.php:480 msgid "Custom ID" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:404, ../includes/Elements/Adv_Tabs.php:359 +#: ../includes/Elements/Adv_Accordion.php:408, ../includes/Elements/Adv_Tabs.php:363 msgid "Custom ID will be added as an anchor tag. For example, if you add ‘test’ as your custom ID, the link will become like the following: https://www.example.com/#test and it will open the respective tab directly." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:415 +#: ../includes/Elements/Adv_Accordion.php:419 msgid "FAQ Schema Text" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:435 +#: ../includes/Elements/Adv_Accordion.php:439 msgid "Accordion Tab Title 1" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:436 +#: ../includes/Elements/Adv_Accordion.php:440 msgid "Accordion Tab Title 2" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:437 +#: ../includes/Elements/Adv_Accordion.php:441 msgid "Accordion Tab Title 3" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:482, ../includes/Elements/Data_Table.php:534 +#: ../includes/Elements/Adv_Accordion.php:486, ../includes/Elements/Data_Table.php:538 msgid "General Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:542 +#: ../includes/Elements/Adv_Accordion.php:546 msgid "Tab Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:556, ../includes/Elements/Adv_Accordion.php:937, ../includes/Elements/Adv_Tabs.php:526, ../includes/Elements/Creative_Button.php:509, ../includes/Elements/Cta_Box.php:875, ../includes/Elements/Data_Table.php:732, ../includes/Elements/Data_Table.php:1083, ../includes/Elements/Dual_Color_Header.php:404, ../includes/Elements/Dual_Color_Header.php:615, ../includes/Elements/Event_Calendar.php:2775, ../includes/Elements/Event_Calendar.php:2844, ../includes/Elements/Feature_List.php:660, ../includes/Elements/Filterable_Gallery.php:2075, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:3008, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1102, ../includes/Elements/Flip_Box.php:1441, ../includes/Elements/Info_Box.php:951, ../includes/Elements/Info_Box.php:1193, ../includes/Elements/Interactive_Circle.php:656, ../includes/Elements/Interactive_Circle.php:926, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1290, ../includes/Elements/Pricing_Table.php:1758, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:1549, ../includes/Elements/Product_Grid.php:3173, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:692, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1858, ../includes/Elements/Woo_Product_Carousel.php:1298, ../includes/Elements/Woo_Product_Carousel.php:2084, ../includes/Elements/Woo_Product_Carousel.php:2732, ../includes/Elements/Woo_Product_Gallery.php:1011, ../includes/Elements/Woo_Product_Gallery.php:2431, ../includes/Elements/Woo_Product_List.php:2255, ../includes/Elements/Woo_Product_List.php:3286, ../includes/Extensions/Scroll_to_Top.php:372, ../includes/Extensions/Table_of_Content.php:885, ../includes/Traits/Woo_Product_Comparable.php:1345 +#: ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:941, ../includes/Elements/Adv_Tabs.php:530, ../includes/Elements/Creative_Button.php:513, ../includes/Elements/Cta_Box.php:879, ../includes/Elements/Data_Table.php:736, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Dual_Color_Header.php:408, ../includes/Elements/Dual_Color_Header.php:619, ../includes/Elements/Event_Calendar.php:2775, ../includes/Elements/Event_Calendar.php:2844, ../includes/Elements/Feature_List.php:664, ../includes/Elements/Filterable_Gallery.php:2079, ../includes/Elements/Filterable_Gallery.php:2440, ../includes/Elements/Filterable_Gallery.php:3012, ../includes/Elements/Flip_Box.php:992, ../includes/Elements/Flip_Box.php:1106, ../includes/Elements/Flip_Box.php:1445, ../includes/Elements/Info_Box.php:955, ../includes/Elements/Info_Box.php:1197, ../includes/Elements/Interactive_Circle.php:660, ../includes/Elements/Interactive_Circle.php:930, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1294, ../includes/Elements/Pricing_Table.php:1762, ../includes/Elements/Pricing_Table.php:1936, ../includes/Elements/Product_Grid.php:1549, ../includes/Elements/Product_Grid.php:3173, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:696, ../includes/Elements/Tooltip.php:118, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1858, ../includes/Elements/Woo_Product_Carousel.php:1298, ../includes/Elements/Woo_Product_Carousel.php:2084, ../includes/Elements/Woo_Product_Carousel.php:2732, ../includes/Elements/Woo_Product_Gallery.php:1011, ../includes/Elements/Woo_Product_Gallery.php:2431, ../includes/Elements/Woo_Product_List.php:2255, ../includes/Elements/Woo_Product_List.php:3286, ../includes/Extensions/Scroll_to_Top.php:372, ../includes/Extensions/Table_of_Content.php:885, ../includes/Traits/Woo_Product_Comparable.php:1345 msgid "Icon Size" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:579, ../includes/Elements/Adv_Accordion.php:605, ../includes/Elements/Adv_Tabs.php:550 +#: ../includes/Elements/Adv_Accordion.php:583, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Tabs.php:554 msgid "Icon Gap" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:631 +#: ../includes/Elements/Adv_Accordion.php:635 msgid "Distance" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Accordion.php:750, ../includes/Elements/Adv_Accordion.php:812, ../includes/Elements/Adv_Tabs.php:631, ../includes/Elements/Adv_Tabs.php:698, ../includes/Elements/Adv_Tabs.php:765, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1064, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Data_Table.php:1129, ../includes/Elements/Dual_Color_Header.php:428, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:2793, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:787, ../includes/Elements/Info_Box.php:866, ../includes/Elements/Info_Box.php:1019, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Interactive_Circle.php:705, ../includes/Elements/Interactive_Circle.php:767, ../includes/Elements/Interactive_Circle.php:833, ../includes/Elements/Interactive_Circle.php:950, ../includes/Elements/Post_Grid.php:991, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:769, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1487, ../includes/Elements/Woo_Checkout.php:1846, ../includes/Extensions/Scroll_to_Top.php:399 +#: ../includes/Elements/Adv_Accordion.php:693, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Accordion.php:816, ../includes/Elements/Adv_Tabs.php:635, ../includes/Elements/Adv_Tabs.php:702, ../includes/Elements/Adv_Tabs.php:769, ../includes/Elements/Creative_Button.php:274, ../includes/Elements/Creative_Button.php:366, ../includes/Elements/Cta_Box.php:1068, ../includes/Elements/Cta_Box.php:1203, ../includes/Elements/Data_Table.php:1115, ../includes/Elements/Data_Table.php:1133, ../includes/Elements/Dual_Color_Header.php:432, ../includes/Elements/Dual_Color_Header.php:645, ../includes/Elements/Event_Calendar.php:2793, ../includes/Elements/Feature_List.php:126, ../includes/Elements/Info_Box.php:791, ../includes/Elements/Info_Box.php:870, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1103, ../includes/Elements/Interactive_Circle.php:709, ../includes/Elements/Interactive_Circle.php:771, ../includes/Elements/Interactive_Circle.php:837, ../includes/Elements/Interactive_Circle.php:954, ../includes/Elements/Post_Grid.php:991, ../includes/Elements/Pricing_Table.php:383, ../includes/Elements/Pricing_Table.php:1827, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:773, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1487, ../includes/Elements/Woo_Checkout.php:1846, ../includes/Extensions/Scroll_to_Top.php:399 msgid "Icon Color" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:785, ../includes/Elements/Adv_Accordion.php:1091, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Event_Calendar.php:1859, ../includes/Elements/Event_Calendar.php:2190, ../includes/Elements/Filterable_Gallery.php:1238, ../includes/Elements/Interactive_Circle.php:804, ../includes/Elements/Product_Grid.php:2657, ../includes/Elements/Simple_Menu.php:461, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Woo_Product_Carousel.php:2466, ../includes/Elements/Woo_Product_Gallery.php:1553, ../includes/Extensions/Table_of_Content.php:1165, ../includes/Traits/Admin.php:101 +#: ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Accordion.php:1095, ../includes/Elements/Adv_Tabs.php:735, ../includes/Elements/Event_Calendar.php:1859, ../includes/Elements/Event_Calendar.php:2190, ../includes/Elements/Filterable_Gallery.php:1242, ../includes/Elements/Interactive_Circle.php:808, ../includes/Elements/Product_Grid.php:2657, ../includes/Elements/Simple_Menu.php:461, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Woo_Product_Carousel.php:2466, ../includes/Elements/Woo_Product_Gallery.php:1553, ../includes/Extensions/Table_of_Content.php:1165, ../includes/Traits/Admin.php:101 msgid "Active" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:851, ../includes/Elements/Countdown.php:1207, ../includes/Elements/Cta_Box.php:80, ../includes/Elements/Cta_Box.php:774, ../includes/Elements/Data_Table.php:826, ../includes/Elements/Dual_Color_Header.php:77, ../includes/Elements/Facebook_Feed.php:704, ../includes/Elements/Facebook_Feed.php:868, ../includes/Elements/Flip_Box.php:1237, ../includes/Elements/Flip_Box.php:1306, ../includes/Elements/Info_Box.php:1404, ../includes/Elements/Tooltip.php:329, ../includes/Elements/Twitter_Feed.php:995 +#: ../includes/Elements/Adv_Accordion.php:855, ../includes/Elements/Countdown.php:1211, ../includes/Elements/Cta_Box.php:84, ../includes/Elements/Cta_Box.php:778, ../includes/Elements/Data_Table.php:830, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Facebook_Feed.php:704, ../includes/Elements/Facebook_Feed.php:868, ../includes/Elements/Flip_Box.php:1241, ../includes/Elements/Flip_Box.php:1310, ../includes/Elements/Info_Box.php:1408, ../includes/Elements/Tooltip.php:333, ../includes/Elements/Twitter_Feed.php:995 msgid "Content Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:929 +#: ../includes/Elements/Adv_Accordion.php:933 msgid "Toggle Caret Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:963 +#: ../includes/Elements/Adv_Accordion.php:967 msgid "Icon Padding" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:977 +#: ../includes/Elements/Adv_Accordion.php:981 msgid "Icon Radius" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:1003, ../includes/Elements/Adv_Accordion.php:1051, ../includes/Elements/Adv_Accordion.php:1097, ../includes/Elements/Adv_Tabs.php:949 +#: ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Accordion.php:1055, ../includes/Elements/Adv_Accordion.php:1101, ../includes/Elements/Adv_Tabs.php:953 msgid "Caret Color" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:80, ../includes/Elements/Business_Reviews.php:193, ../includes/Elements/Countdown.php:232, ../includes/Elements/Event_Calendar.php:109, ../includes/Elements/Facebook_Feed.php:259, ../includes/Elements/Feature_List.php:256, ../includes/Elements/Filterable_Gallery.php:181, ../includes/Elements/NFT_Gallery.php:234, ../includes/Elements/Product_Grid.php:234, ../includes/Elements/Product_Grid.php:592, ../includes/Elements/Progress_Bar.php:75, ../includes/Elements/Progress_Bar.php:101, ../includes/Elements/Simple_Menu.php:152, ../includes/Elements/Team_Member.php:301, ../includes/Elements/Woo_Cart.php:144, ../includes/Elements/Woo_Checkout.php:146, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Gallery.php:323, ../includes/Elements/Woo_Product_Gallery.php:527, ../includes/Elements/Woo_Product_List.php:209, ../includes/Elements/Woo_Product_List.php:232, ../includes/Traits/Controls.php:632 +#: ../includes/Elements/Adv_Tabs.php:84, ../includes/Elements/Business_Reviews.php:193, ../includes/Elements/Countdown.php:236, ../includes/Elements/Event_Calendar.php:109, ../includes/Elements/Facebook_Feed.php:259, ../includes/Elements/Feature_List.php:260, ../includes/Elements/Filterable_Gallery.php:185, ../includes/Elements/NFT_Gallery.php:234, ../includes/Elements/Product_Grid.php:234, ../includes/Elements/Product_Grid.php:592, ../includes/Elements/Progress_Bar.php:79, ../includes/Elements/Progress_Bar.php:105, ../includes/Elements/Simple_Menu.php:152, ../includes/Elements/Team_Member.php:305, ../includes/Elements/Woo_Cart.php:144, ../includes/Elements/Woo_Checkout.php:146, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Gallery.php:323, ../includes/Elements/Woo_Product_Gallery.php:527, ../includes/Elements/Woo_Product_List.php:209, ../includes/Elements/Woo_Product_List.php:232, ../includes/Traits/Controls.php:632 msgid "Layout" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:85, ../includes/Elements/Feature_List.php:263, ../includes/Elements/Filterable_Gallery.php:625, ../includes/Elements/Image_Accordion.php:87, ../includes/Elements/Simple_Menu.php:156, ../includes/Elements/Woo_Product_Gallery.php:180 +#: ../includes/Elements/Adv_Tabs.php:89, ../includes/Elements/Feature_List.php:267, ../includes/Elements/Filterable_Gallery.php:629, ../includes/Elements/Image_Accordion.php:91, ../includes/Elements/Simple_Menu.php:156, ../includes/Elements/Woo_Product_Gallery.php:180 msgid "Horizontal" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:86, ../includes/Elements/Feature_List.php:262, ../includes/Elements/Filterable_Gallery.php:629, ../includes/Elements/Image_Accordion.php:88, ../includes/Elements/Simple_Menu.php:157, ../includes/Elements/Woo_Product_Gallery.php:184 +#: ../includes/Elements/Adv_Tabs.php:90, ../includes/Elements/Feature_List.php:266, ../includes/Elements/Filterable_Gallery.php:633, ../includes/Elements/Image_Accordion.php:92, ../includes/Elements/Simple_Menu.php:157, ../includes/Elements/Woo_Product_Gallery.php:184 msgid "Vertical" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:93 +#: ../includes/Elements/Adv_Tabs.php:97 msgid "Enable Icon" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:149, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Feature_List.php:320, ../includes/Elements/Filterable_Gallery.php:965, ../includes/Elements/Flip_Box.php:735, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:468, ../includes/Elements/NFT_Gallery.php:710, ../includes/Elements/Pricing_Table.php:581, ../includes/Elements/Twitter_Feed.php:540, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1878 +#: ../includes/Elements/Adv_Tabs.php:106, ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:153, ../includes/Elements/Data_Table.php:758, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:969, ../includes/Elements/Flip_Box.php:739, ../includes/Elements/Info_Box.php:126, ../includes/Elements/Info_Box.php:472, ../includes/Elements/NFT_Gallery.php:710, ../includes/Elements/Pricing_Table.php:585, ../includes/Elements/Twitter_Feed.php:540, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1878 msgid "Icon Position" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:107, ../includes/Elements/Feature_List.php:312 +#: ../includes/Elements/Adv_Tabs.php:111, ../includes/Elements/Feature_List.php:316 msgid "Stacked" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:108, ../includes/Elements/Contact_Form_7.php:843, ../includes/Elements/Countdown.php:169, ../includes/Elements/Login_Register.php:4912, ../includes/Elements/Login_Register.php:5241 +#: ../includes/Elements/Adv_Tabs.php:112, ../includes/Elements/Contact_Form_7.php:843, ../includes/Elements/Countdown.php:173, ../includes/Elements/Login_Register.php:4912, ../includes/Elements/Login_Register.php:5241 msgid "Inline" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:119 +#: ../includes/Elements/Adv_Tabs.php:123 msgid "Icon Alignment" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:120 +#: ../includes/Elements/Adv_Tabs.php:124 msgid "Set icon position before/after the tab title." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1335, ../includes/Elements/Creative_Button.php:153, ../includes/Elements/Filterable_Gallery.php:970, ../includes/Elements/Flip_Box.php:740, ../includes/Elements/Info_Box.php:472, ../includes/Elements/NFT_Gallery.php:715, ../includes/Elements/Pricing_Table.php:585, ../includes/Elements/Twitter_Feed.php:545, ../includes/Elements/Woo_Checkout.php:646 +#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1335, ../includes/Elements/Creative_Button.php:157, ../includes/Elements/Filterable_Gallery.php:974, ../includes/Elements/Flip_Box.php:744, ../includes/Elements/Info_Box.php:476, ../includes/Elements/NFT_Gallery.php:715, ../includes/Elements/Pricing_Table.php:589, ../includes/Elements/Twitter_Feed.php:545, ../includes/Elements/Woo_Checkout.php:646 msgid "Before" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1336, ../includes/Elements/Creative_Button.php:154, ../includes/Elements/Filterable_Gallery.php:969, ../includes/Elements/Flip_Box.php:739, ../includes/Elements/Info_Box.php:473, ../includes/Elements/NFT_Gallery.php:714, ../includes/Elements/Pricing_Table.php:586, ../includes/Elements/Twitter_Feed.php:544, ../includes/Elements/Woo_Checkout.php:647 +#: ../includes/Elements/Adv_Tabs.php:133, ../includes/Elements/Betterdocs_Category_Grid.php:1336, ../includes/Elements/Creative_Button.php:158, ../includes/Elements/Filterable_Gallery.php:973, ../includes/Elements/Flip_Box.php:743, ../includes/Elements/Info_Box.php:477, ../includes/Elements/NFT_Gallery.php:714, ../includes/Elements/Pricing_Table.php:590, ../includes/Elements/Twitter_Feed.php:544, ../includes/Elements/Woo_Checkout.php:647 msgid "After" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:142 +#: ../includes/Elements/Adv_Tabs.php:146 msgid "Auto Active?" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:144 +#: ../includes/Elements/Adv_Tabs.php:148 msgid "Activate the first tab if no tab is selected as the active tab." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:160, ../includes/Elements/Adv_Tabs.php:981, ../includes/Elements/Business_Reviews.php:433, ../includes/Elements/Business_Reviews.php:469, ../includes/Elements/Business_Reviews.php:484, ../includes/Elements/Business_Reviews.php:499, ../includes/Elements/Business_Reviews.php:727, ../includes/Elements/Business_Reviews.php:784, ../includes/Elements/Business_Reviews.php:796, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:941, ../includes/Elements/Contact_Form_7.php:925, ../includes/Elements/Contact_Form_7.php:979, ../includes/Elements/Content_Ticker.php:197, ../includes/Elements/Content_Ticker.php:230, ../includes/Elements/Content_Ticker.php:245, ../includes/Elements/Content_Ticker.php:280, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1165, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:1030, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1117, ../includes/Elements/Facebook_Feed.php:468, ../includes/Elements/Filterable_Gallery.php:197, ../includes/Elements/Filterable_Gallery.php:596, ../includes/Elements/Filterable_Gallery.php:678, ../includes/Elements/Filterable_Gallery.php:706, ../includes/Elements/Filterable_Gallery.php:734, ../includes/Elements/Filterable_Gallery.php:804, ../includes/Elements/Filterable_Gallery.php:819, ../includes/Elements/Filterable_Gallery.php:1733, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:937, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1133, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:249, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1679, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:371, ../includes/Elements/Info_Box.php:385, ../includes/Elements/Interactive_Circle.php:163, ../includes/Elements/Interactive_Circle.php:205, ../includes/Elements/Login_Register.php:704, ../includes/Elements/Login_Register.php:737, ../includes/Elements/Login_Register.php:750, ../includes/Elements/Login_Register.php:959, ../includes/Elements/Login_Register.php:1610, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:988, ../includes/Elements/Post_Grid.php:136, ../includes/Elements/Post_Grid.php:150, ../includes/Elements/Post_Grid.php:176, ../includes/Elements/Post_Grid.php:190, ../includes/Elements/Post_Grid.php:216, ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Post_Timeline.php:87, ../includes/Elements/Post_Timeline.php:98, ../includes/Elements/Pricing_Table.php:244, ../includes/Elements/Pricing_Table.php:1964, ../includes/Elements/Simple_Menu.php:177, ../includes/Elements/Simple_Menu.php:218, ../includes/Elements/SVG_Draw.php:127, ../includes/Elements/SVG_Draw.php:295, ../includes/Elements/SVG_Draw.php:310, ../includes/Elements/Team_Member.php:755, ../includes/Elements/Twitter_Feed.php:100, ../includes/Elements/Twitter_Feed.php:192, ../includes/Elements/Woo_Cart.php:917, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Product_Carousel.php:371, ../includes/Elements/Woo_Product_Carousel.php:652, ../includes/Elements/Woo_Product_Carousel.php:684, ../includes/Elements/Woo_Product_Carousel.php:699, ../includes/Elements/Woo_Product_Carousel.php:734, ../includes/Elements/Woo_Product_Carousel.php:746, ../includes/Elements/Woo_Product_Carousel.php:757, ../includes/Elements/Woo_Product_Carousel.php:2273, ../includes/Elements/Woo_Product_Gallery.php:255, ../includes/Elements/Woo_Product_Gallery.php:284, ../includes/Elements/Woo_Product_Gallery.php:610, ../includes/Elements/Woo_Product_List.php:1617, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:946, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:272, ../includes/Extensions/Table_of_Content.php:287, ../includes/Extensions/Table_of_Content.php:302, ../includes/Extensions/Table_of_Content.php:317, ../includes/Extensions/Table_of_Content.php:332, ../includes/Extensions/Table_of_Content.php:364, ../includes/Traits/Controls.php:145, ../includes/Traits/Controls.php:202, ../includes/Traits/Controls.php:423, ../includes/Traits/Controls.php:871, ../includes/Traits/Controls.php:935, ../includes/Traits/Controls.php:1087, ../includes/Traits/Controls.php:1265 +#: ../includes/Elements/Adv_Tabs.php:151, ../includes/Elements/Adv_Tabs.php:164, ../includes/Elements/Adv_Tabs.php:985, ../includes/Elements/Business_Reviews.php:433, ../includes/Elements/Business_Reviews.php:469, ../includes/Elements/Business_Reviews.php:484, ../includes/Elements/Business_Reviews.php:499, ../includes/Elements/Business_Reviews.php:727, ../includes/Elements/Business_Reviews.php:784, ../includes/Elements/Business_Reviews.php:796, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:941, ../includes/Elements/Contact_Form_7.php:925, ../includes/Elements/Contact_Form_7.php:979, ../includes/Elements/Content_Ticker.php:197, ../includes/Elements/Content_Ticker.php:230, ../includes/Elements/Content_Ticker.php:245, ../includes/Elements/Content_Ticker.php:280, ../includes/Elements/Data_Table.php:91, ../includes/Elements/Data_Table.php:1169, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:1030, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1117, ../includes/Elements/Facebook_Feed.php:468, ../includes/Elements/Filterable_Gallery.php:201, ../includes/Elements/Filterable_Gallery.php:600, ../includes/Elements/Filterable_Gallery.php:682, ../includes/Elements/Filterable_Gallery.php:710, ../includes/Elements/Filterable_Gallery.php:738, ../includes/Elements/Filterable_Gallery.php:808, ../includes/Elements/Filterable_Gallery.php:823, ../includes/Elements/Filterable_Gallery.php:1737, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:937, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1133, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:249, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1679, ../includes/Elements/Image_Accordion.php:180, ../includes/Elements/Info_Box.php:375, ../includes/Elements/Info_Box.php:389, ../includes/Elements/Interactive_Circle.php:167, ../includes/Elements/Interactive_Circle.php:209, ../includes/Elements/Login_Register.php:704, ../includes/Elements/Login_Register.php:737, ../includes/Elements/Login_Register.php:750, ../includes/Elements/Login_Register.php:959, ../includes/Elements/Login_Register.php:1610, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:988, ../includes/Elements/Post_Grid.php:136, ../includes/Elements/Post_Grid.php:150, ../includes/Elements/Post_Grid.php:176, ../includes/Elements/Post_Grid.php:190, ../includes/Elements/Post_Grid.php:216, ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Post_Timeline.php:87, ../includes/Elements/Post_Timeline.php:98, ../includes/Elements/Pricing_Table.php:248, ../includes/Elements/Pricing_Table.php:1968, ../includes/Elements/Simple_Menu.php:177, ../includes/Elements/Simple_Menu.php:218, ../includes/Elements/SVG_Draw.php:131, ../includes/Elements/SVG_Draw.php:299, ../includes/Elements/SVG_Draw.php:314, ../includes/Elements/Team_Member.php:759, ../includes/Elements/Twitter_Feed.php:100, ../includes/Elements/Twitter_Feed.php:192, ../includes/Elements/Woo_Cart.php:917, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Product_Carousel.php:371, ../includes/Elements/Woo_Product_Carousel.php:652, ../includes/Elements/Woo_Product_Carousel.php:684, ../includes/Elements/Woo_Product_Carousel.php:699, ../includes/Elements/Woo_Product_Carousel.php:734, ../includes/Elements/Woo_Product_Carousel.php:746, ../includes/Elements/Woo_Product_Carousel.php:757, ../includes/Elements/Woo_Product_Carousel.php:2273, ../includes/Elements/Woo_Product_Gallery.php:255, ../includes/Elements/Woo_Product_Gallery.php:284, ../includes/Elements/Woo_Product_Gallery.php:610, ../includes/Elements/Woo_Product_List.php:1617, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:946, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:272, ../includes/Extensions/Table_of_Content.php:287, ../includes/Extensions/Table_of_Content.php:302, ../includes/Extensions/Table_of_Content.php:317, ../includes/Extensions/Table_of_Content.php:332, ../includes/Extensions/Table_of_Content.php:364, ../includes/Traits/Controls.php:145, ../includes/Traits/Controls.php:202, ../includes/Traits/Controls.php:423, ../includes/Traits/Controls.php:871, ../includes/Traits/Controls.php:935, ../includes/Traits/Controls.php:1087, ../includes/Traits/Controls.php:1265 msgid "Yes" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:148, ../includes/Elements/Adv_Tabs.php:161, ../includes/Elements/Adv_Tabs.php:982, ../includes/Elements/Business_Reviews.php:434, ../includes/Elements/Business_Reviews.php:470, ../includes/Elements/Business_Reviews.php:485, ../includes/Elements/Business_Reviews.php:500, ../includes/Elements/Business_Reviews.php:728, ../includes/Elements/Business_Reviews.php:785, ../includes/Elements/Business_Reviews.php:797, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:942, ../includes/Elements/Contact_Form_7.php:926, ../includes/Elements/Contact_Form_7.php:980, ../includes/Elements/Content_Ticker.php:198, ../includes/Elements/Content_Ticker.php:231, ../includes/Elements/Content_Ticker.php:246, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Cta_Box.php:867, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1166, ../includes/Elements/Event_Calendar.php:642, ../includes/Elements/Event_Calendar.php:728, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1047, ../includes/Elements/Event_Calendar.php:1118, ../includes/Elements/Facebook_Feed.php:472, ../includes/Elements/Feature_List.php:414, ../includes/Elements/Filterable_Gallery.php:198, ../includes/Elements/Filterable_Gallery.php:597, ../includes/Elements/Filterable_Gallery.php:679, ../includes/Elements/Filterable_Gallery.php:707, ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:805, ../includes/Elements/Filterable_Gallery.php:820, ../includes/Elements/Filterable_Gallery.php:1734, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:938, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1134, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:250, ../includes/Elements/GravityForms.php:1484, ../includes/Elements/GravityForms.php:1680, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Info_Box.php:386, ../includes/Elements/Interactive_Circle.php:164, ../includes/Elements/Interactive_Circle.php:206, ../includes/Elements/Login_Register.php:705, ../includes/Elements/Login_Register.php:738, ../includes/Elements/Login_Register.php:751, ../includes/Elements/Login_Register.php:958, ../includes/Elements/Login_Register.php:1611, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:989, ../includes/Elements/Post_Grid.php:137, ../includes/Elements/Post_Grid.php:151, ../includes/Elements/Post_Grid.php:177, ../includes/Elements/Post_Grid.php:191, ../includes/Elements/Post_Grid.php:217, ../includes/Elements/Post_Grid.php:231, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Post_Timeline.php:99, ../includes/Elements/Pricing_Table.php:245, ../includes/Elements/Pricing_Table.php:1965, ../includes/Elements/Simple_Menu.php:178, ../includes/Elements/Simple_Menu.php:219, ../includes/Elements/SVG_Draw.php:128, ../includes/Elements/SVG_Draw.php:296, ../includes/Elements/SVG_Draw.php:311, ../includes/Elements/Team_Member.php:756, ../includes/Elements/Twitter_Feed.php:101, ../includes/Elements/Twitter_Feed.php:193, ../includes/Elements/Woo_Cart.php:918, ../includes/Elements/Woo_Checkout.php:633, ../includes/Elements/Woo_Product_Carousel.php:372, ../includes/Elements/Woo_Product_Carousel.php:653, ../includes/Elements/Woo_Product_Carousel.php:685, ../includes/Elements/Woo_Product_Carousel.php:700, ../includes/Elements/Woo_Product_Carousel.php:735, ../includes/Elements/Woo_Product_Carousel.php:747, ../includes/Elements/Woo_Product_Carousel.php:758, ../includes/Elements/Woo_Product_Carousel.php:2274, ../includes/Elements/Woo_Product_Gallery.php:256, ../includes/Elements/Woo_Product_Gallery.php:285, ../includes/Elements/Woo_Product_Gallery.php:611, ../includes/Elements/Woo_Product_List.php:1618, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:947, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:273, ../includes/Extensions/Table_of_Content.php:288, ../includes/Extensions/Table_of_Content.php:303, ../includes/Extensions/Table_of_Content.php:318, ../includes/Extensions/Table_of_Content.php:333, ../includes/Extensions/Table_of_Content.php:365, ../includes/Traits/Controls.php:146, ../includes/Traits/Controls.php:203, ../includes/Traits/Controls.php:424, ../includes/Traits/Controls.php:872, ../includes/Traits/Controls.php:936, ../includes/Traits/Controls.php:1088, ../includes/Traits/Controls.php:1266 +#: ../includes/Elements/Adv_Tabs.php:152, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Adv_Tabs.php:986, ../includes/Elements/Business_Reviews.php:434, ../includes/Elements/Business_Reviews.php:470, ../includes/Elements/Business_Reviews.php:485, ../includes/Elements/Business_Reviews.php:500, ../includes/Elements/Business_Reviews.php:728, ../includes/Elements/Business_Reviews.php:785, ../includes/Elements/Business_Reviews.php:797, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:942, ../includes/Elements/Contact_Form_7.php:926, ../includes/Elements/Contact_Form_7.php:980, ../includes/Elements/Content_Ticker.php:198, ../includes/Elements/Content_Ticker.php:231, ../includes/Elements/Content_Ticker.php:246, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Cta_Box.php:871, ../includes/Elements/Data_Table.php:92, ../includes/Elements/Data_Table.php:1170, ../includes/Elements/Event_Calendar.php:642, ../includes/Elements/Event_Calendar.php:728, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1047, ../includes/Elements/Event_Calendar.php:1118, ../includes/Elements/Facebook_Feed.php:472, ../includes/Elements/Feature_List.php:418, ../includes/Elements/Filterable_Gallery.php:202, ../includes/Elements/Filterable_Gallery.php:601, ../includes/Elements/Filterable_Gallery.php:683, ../includes/Elements/Filterable_Gallery.php:711, ../includes/Elements/Filterable_Gallery.php:739, ../includes/Elements/Filterable_Gallery.php:809, ../includes/Elements/Filterable_Gallery.php:824, ../includes/Elements/Filterable_Gallery.php:1738, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:938, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1134, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:250, ../includes/Elements/GravityForms.php:1484, ../includes/Elements/GravityForms.php:1680, ../includes/Elements/Image_Accordion.php:181, ../includes/Elements/Info_Box.php:376, ../includes/Elements/Info_Box.php:390, ../includes/Elements/Interactive_Circle.php:168, ../includes/Elements/Interactive_Circle.php:210, ../includes/Elements/Login_Register.php:705, ../includes/Elements/Login_Register.php:738, ../includes/Elements/Login_Register.php:751, ../includes/Elements/Login_Register.php:958, ../includes/Elements/Login_Register.php:1611, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:989, ../includes/Elements/Post_Grid.php:137, ../includes/Elements/Post_Grid.php:151, ../includes/Elements/Post_Grid.php:177, ../includes/Elements/Post_Grid.php:191, ../includes/Elements/Post_Grid.php:217, ../includes/Elements/Post_Grid.php:231, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Post_Timeline.php:99, ../includes/Elements/Pricing_Table.php:249, ../includes/Elements/Pricing_Table.php:1969, ../includes/Elements/Simple_Menu.php:178, ../includes/Elements/Simple_Menu.php:219, ../includes/Elements/SVG_Draw.php:132, ../includes/Elements/SVG_Draw.php:300, ../includes/Elements/SVG_Draw.php:315, ../includes/Elements/Team_Member.php:760, ../includes/Elements/Twitter_Feed.php:101, ../includes/Elements/Twitter_Feed.php:193, ../includes/Elements/Woo_Cart.php:918, ../includes/Elements/Woo_Checkout.php:633, ../includes/Elements/Woo_Product_Carousel.php:372, ../includes/Elements/Woo_Product_Carousel.php:653, ../includes/Elements/Woo_Product_Carousel.php:685, ../includes/Elements/Woo_Product_Carousel.php:700, ../includes/Elements/Woo_Product_Carousel.php:735, ../includes/Elements/Woo_Product_Carousel.php:747, ../includes/Elements/Woo_Product_Carousel.php:758, ../includes/Elements/Woo_Product_Carousel.php:2274, ../includes/Elements/Woo_Product_Gallery.php:256, ../includes/Elements/Woo_Product_Gallery.php:285, ../includes/Elements/Woo_Product_Gallery.php:611, ../includes/Elements/Woo_Product_List.php:1618, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:947, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:273, ../includes/Extensions/Table_of_Content.php:288, ../includes/Extensions/Table_of_Content.php:303, ../includes/Extensions/Table_of_Content.php:318, ../includes/Extensions/Table_of_Content.php:333, ../includes/Extensions/Table_of_Content.php:365, ../includes/Traits/Controls.php:146, ../includes/Traits/Controls.php:203, ../includes/Traits/Controls.php:424, ../includes/Traits/Controls.php:872, ../includes/Traits/Controls.php:936, ../includes/Traits/Controls.php:1088, ../includes/Traits/Controls.php:1266 msgid "No" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:155 +#: ../includes/Elements/Adv_Tabs.php:159 msgid "Toggle Tab" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:157 +#: ../includes/Elements/Adv_Tabs.php:161 msgid "Enables tab to expand and collapse." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:224, ../includes/Elements/Feature_List.php:74, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:441 +#: ../includes/Elements/Adv_Tabs.php:228, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:445 msgid "Icon Type" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:296, ../includes/Elements/Feature_List.php:271, ../includes/Elements/Product_Grid.php:602, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Woo_Product_Gallery.php:537 +#: ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Feature_List.php:275, ../includes/Elements/Product_Grid.php:602, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Woo_Product_Gallery.php:537 msgid "Title HTML Tag" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:373 +#: ../includes/Elements/Adv_Tabs.php:377 msgid "Tab Title 1" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:374 +#: ../includes/Elements/Adv_Tabs.php:378 msgid "Tab Title 2" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:375 +#: ../includes/Elements/Adv_Tabs.php:379 msgid "Tab Title 3" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:418, ../includes/Elements/Business_Reviews.php:92, ../includes/Elements/Event_Calendar.php:156, ../includes/Elements/Filterable_Gallery.php:1044, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:302, ../includes/Elements/Interactive_Circle.php:63, ../includes/Elements/Interactive_Circle.php:509, ../includes/Elements/Login_Register.php:314, ../includes/Elements/Login_Register.php:2545, ../includes/Elements/Progress_Bar.php:349, ../includes/Elements/Progress_Bar.php:618, ../includes/Elements/Simple_Menu.php:106, ../includes/Elements/SVG_Draw.php:73, ../includes/Elements/Woo_Cart.php:1224, ../includes/Elements/Woo_Product_List.php:245, ../includes/Elements/Woo_Product_List.php:654, ../includes/Traits/Admin.php:64 +#: ../includes/Elements/Adv_Tabs.php:422, ../includes/Elements/Business_Reviews.php:92, ../includes/Elements/Event_Calendar.php:156, ../includes/Elements/Filterable_Gallery.php:1048, ../includes/Elements/Image_Accordion.php:65, ../includes/Elements/Image_Accordion.php:306, ../includes/Elements/Interactive_Circle.php:67, ../includes/Elements/Interactive_Circle.php:513, ../includes/Elements/Login_Register.php:314, ../includes/Elements/Login_Register.php:2545, ../includes/Elements/Progress_Bar.php:353, ../includes/Elements/Progress_Bar.php:622, ../includes/Elements/Simple_Menu.php:106, ../includes/Elements/SVG_Draw.php:77, ../includes/Elements/Woo_Cart.php:1224, ../includes/Elements/Woo_Product_List.php:245, ../includes/Elements/Woo_Product_List.php:654, ../includes/Traits/Admin.php:64 msgid "General" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:496 +#: ../includes/Elements/Adv_Tabs.php:500 msgid "Title Min Width" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:735 +#: ../includes/Elements/Adv_Tabs.php:672, ../includes/Elements/Adv_Tabs.php:739 msgid "Tab Background Color" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:910, ../includes/Elements/Business_Reviews.php:2141, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Traits/Controls.php:1407 +#: ../includes/Elements/Adv_Tabs.php:914, ../includes/Elements/Business_Reviews.php:2141, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Traits/Controls.php:1407 msgid "Caret" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:917 +#: ../includes/Elements/Adv_Tabs.php:921 msgid "Show Caret on Active Tab" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:926 +#: ../includes/Elements/Adv_Tabs.php:930 msgid "Caret Size" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:971 +#: ../includes/Elements/Adv_Tabs.php:975 msgid "Responsive Controls" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:979 +#: ../includes/Elements/Adv_Tabs.php:983 msgid "Vertical Layout" msgstr "" @@ -1173,15 +1173,15 @@ msgstr "" msgid "Box Column" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Interactive_Circle.php:94, ../includes/Elements/Interactive_Circle.php:126, ../includes/Elements/Twitter_Feed.php:381 +#: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Interactive_Circle.php:98, ../includes/Elements/Interactive_Circle.php:130, ../includes/Elements/Twitter_Feed.php:381 msgid "Show Icon" msgstr "" -#: ../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:1306, ../includes/Elements/Business_Reviews.php:527, ../includes/Elements/Business_Reviews.php:542, ../includes/Elements/Business_Reviews.php:577, ../includes/Elements/Business_Reviews.php:601, ../includes/Elements/Business_Reviews.php:627, ../includes/Elements/Business_Reviews.php:654, ../includes/Elements/Business_Reviews.php:675, ../includes/Elements/Business_Reviews.php:687, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:712, ../includes/Elements/Business_Reviews.php:748, ../includes/Elements/Business_Reviews.php:760, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:604, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Cta_Box.php:440, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:413, ../includes/Elements/Filterable_Gallery.php:324, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:559, ../includes/Elements/Pricing_Table.php:1712, ../includes/Elements/Product_Grid.php:384, ../includes/Elements/Product_Grid.php:770, ../includes/Elements/Product_Grid.php:1773, ../includes/Elements/Product_Grid.php:2443, ../includes/Elements/Testimonial.php:303, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:483, ../includes/Elements/Woo_Product_Carousel.php:250, ../includes/Elements/Woo_Product_Carousel.php:262, ../includes/Elements/Woo_Product_Carousel.php:713, ../includes/Elements/Woo_Product_Carousel.php:772, ../includes/Elements/Woo_Product_Gallery.php:1169, ../includes/Elements/Woo_Product_List.php:302, ../includes/Elements/Woo_Product_List.php:311, ../includes/Elements/Woo_Product_List.php:320, ../includes/Elements/Woo_Product_List.php:329, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:356, ../includes/Elements/Woo_Product_List.php:365, ../includes/Elements/Woo_Product_List.php:383, ../includes/Elements/Woo_Product_List.php:395, ../includes/Elements/Woo_Product_List.php:407, ../includes/Elements/Woo_Product_List.php:416, ../includes/Elements/Woo_Product_List.php:425, ../includes/Elements/Woo_Product_List.php:991, ../includes/Elements/Woo_Product_List.php:1043, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Extensions/Table_of_Content.php:570, ../includes/Traits/Controls.php:663, ../includes/Traits/Controls.php:846, ../includes/Traits/Controls.php:1129, ../includes/Traits/Controls.php:1159, ../includes/Traits/Controls.php:1237, ../includes/Traits/Controls.php:1282, ../includes/Traits/Controls.php:1352, ../includes/Traits/Controls.php:1446, ../includes/Traits/Controls.php:1517, ../includes/Traits/Controls.php:1631, ../includes/Traits/Controls.php:1651, ../includes/Traits/Controls.php:1680, ../includes/Traits/Controls.php:1696, ../includes/Traits/Controls.php:1713, ../includes/Traits/Controls.php:1746, ../includes/Traits/Controls.php:1762, ../includes/Traits/Controls.php:1781, ../includes/Traits/Controls.php:1797, ../includes/Traits/Controls.php:1813 +#: ../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:1306, ../includes/Elements/Business_Reviews.php:527, ../includes/Elements/Business_Reviews.php:542, ../includes/Elements/Business_Reviews.php:577, ../includes/Elements/Business_Reviews.php:601, ../includes/Elements/Business_Reviews.php:627, ../includes/Elements/Business_Reviews.php:654, ../includes/Elements/Business_Reviews.php:675, ../includes/Elements/Business_Reviews.php:687, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:712, ../includes/Elements/Business_Reviews.php:748, ../includes/Elements/Business_Reviews.php:760, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:608, ../includes/Elements/Creative_Button.php:262, ../includes/Elements/Cta_Box.php:251, ../includes/Elements/Cta_Box.php:444, ../includes/Elements/Dual_Color_Header.php:100, ../includes/Elements/Dual_Color_Header.php:110, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:417, ../includes/Elements/Filterable_Gallery.php:328, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:563, ../includes/Elements/Pricing_Table.php:1716, ../includes/Elements/Product_Grid.php:384, ../includes/Elements/Product_Grid.php:770, ../includes/Elements/Product_Grid.php:1773, ../includes/Elements/Product_Grid.php:2443, ../includes/Elements/Testimonial.php:307, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:483, ../includes/Elements/Woo_Product_Carousel.php:250, ../includes/Elements/Woo_Product_Carousel.php:262, ../includes/Elements/Woo_Product_Carousel.php:713, ../includes/Elements/Woo_Product_Carousel.php:772, ../includes/Elements/Woo_Product_Gallery.php:1169, ../includes/Elements/Woo_Product_List.php:302, ../includes/Elements/Woo_Product_List.php:311, ../includes/Elements/Woo_Product_List.php:320, ../includes/Elements/Woo_Product_List.php:329, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:356, ../includes/Elements/Woo_Product_List.php:365, ../includes/Elements/Woo_Product_List.php:383, ../includes/Elements/Woo_Product_List.php:395, ../includes/Elements/Woo_Product_List.php:407, ../includes/Elements/Woo_Product_List.php:416, ../includes/Elements/Woo_Product_List.php:425, ../includes/Elements/Woo_Product_List.php:991, ../includes/Elements/Woo_Product_List.php:1043, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Extensions/Table_of_Content.php:570, ../includes/Traits/Controls.php:663, ../includes/Traits/Controls.php:846, ../includes/Traits/Controls.php:1129, ../includes/Traits/Controls.php:1159, ../includes/Traits/Controls.php:1237, ../includes/Traits/Controls.php:1282, ../includes/Traits/Controls.php:1352, ../includes/Traits/Controls.php:1446, ../includes/Traits/Controls.php:1517, ../includes/Traits/Controls.php:1631, ../includes/Traits/Controls.php:1651, ../includes/Traits/Controls.php:1680, ../includes/Traits/Controls.php:1696, ../includes/Traits/Controls.php:1713, ../includes/Traits/Controls.php:1746, ../includes/Traits/Controls.php:1762, ../includes/Traits/Controls.php:1781, ../includes/Traits/Controls.php:1797, ../includes/Traits/Controls.php:1813 msgid "Show" msgstr "" -#: ../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:1307, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:543, ../includes/Elements/Business_Reviews.php:578, ../includes/Elements/Business_Reviews.php:602, ../includes/Elements/Business_Reviews.php:628, ../includes/Elements/Business_Reviews.php:655, ../includes/Elements/Business_Reviews.php:676, ../includes/Elements/Business_Reviews.php:688, ../includes/Elements/Business_Reviews.php:700, ../includes/Elements/Business_Reviews.php:713, ../includes/Elements/Business_Reviews.php:749, ../includes/Elements/Business_Reviews.php:761, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:605, ../includes/Elements/Creative_Button.php:259, ../includes/Elements/Cta_Box.php:248, ../includes/Elements/Cta_Box.php:441, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Dual_Color_Header.php:107, ../includes/Elements/Event_Calendar.php:947, ../includes/Elements/Event_Calendar.php:1004, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1134, ../includes/Elements/Event_Calendar.php:1258, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:325, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:560, ../includes/Elements/Pricing_Table.php:1713, ../includes/Elements/Product_Grid.php:385, ../includes/Elements/Product_Grid.php:771, ../includes/Elements/Product_Grid.php:1774, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Testimonial.php:304, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:378, ../includes/Elements/Woo_Checkout.php:484, ../includes/Elements/Woo_Product_Carousel.php:251, ../includes/Elements/Woo_Product_Carousel.php:263, ../includes/Elements/Woo_Product_Carousel.php:714, ../includes/Elements/Woo_Product_Carousel.php:773, ../includes/Elements/Woo_Product_Gallery.php:1170, ../includes/Elements/Woo_Product_List.php:303, ../includes/Elements/Woo_Product_List.php:312, ../includes/Elements/Woo_Product_List.php:321, ../includes/Elements/Woo_Product_List.php:330, ../includes/Elements/Woo_Product_List.php:348, ../includes/Elements/Woo_Product_List.php:357, ../includes/Elements/Woo_Product_List.php:366, ../includes/Elements/Woo_Product_List.php:384, ../includes/Elements/Woo_Product_List.php:396, ../includes/Elements/Woo_Product_List.php:408, ../includes/Elements/Woo_Product_List.php:417, ../includes/Elements/Woo_Product_List.php:426, ../includes/Elements/Woo_Product_List.php:992, ../includes/Elements/Woo_Product_List.php:1044, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Extensions/Table_of_Content.php:571, ../includes/Traits/Controls.php:664, ../includes/Traits/Controls.php:847, ../includes/Traits/Controls.php:1130, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1238, ../includes/Traits/Controls.php:1283, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1632, ../includes/Traits/Controls.php:1652, ../includes/Traits/Controls.php:1681, ../includes/Traits/Controls.php:1697, ../includes/Traits/Controls.php:1714, ../includes/Traits/Controls.php:1747, ../includes/Traits/Controls.php:1763, ../includes/Traits/Controls.php:1782, ../includes/Traits/Controls.php:1798, ../includes/Traits/Controls.php:1814 +#: ../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:1307, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:543, ../includes/Elements/Business_Reviews.php:578, ../includes/Elements/Business_Reviews.php:602, ../includes/Elements/Business_Reviews.php:628, ../includes/Elements/Business_Reviews.php:655, ../includes/Elements/Business_Reviews.php:676, ../includes/Elements/Business_Reviews.php:688, ../includes/Elements/Business_Reviews.php:700, ../includes/Elements/Business_Reviews.php:713, ../includes/Elements/Business_Reviews.php:749, ../includes/Elements/Business_Reviews.php:761, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:609, ../includes/Elements/Creative_Button.php:263, ../includes/Elements/Cta_Box.php:252, ../includes/Elements/Cta_Box.php:445, ../includes/Elements/Dual_Color_Header.php:101, ../includes/Elements/Dual_Color_Header.php:111, ../includes/Elements/Event_Calendar.php:947, ../includes/Elements/Event_Calendar.php:1004, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1134, ../includes/Elements/Event_Calendar.php:1258, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:329, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:564, ../includes/Elements/Pricing_Table.php:1717, ../includes/Elements/Product_Grid.php:385, ../includes/Elements/Product_Grid.php:771, ../includes/Elements/Product_Grid.php:1774, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Testimonial.php:308, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:378, ../includes/Elements/Woo_Checkout.php:484, ../includes/Elements/Woo_Product_Carousel.php:251, ../includes/Elements/Woo_Product_Carousel.php:263, ../includes/Elements/Woo_Product_Carousel.php:714, ../includes/Elements/Woo_Product_Carousel.php:773, ../includes/Elements/Woo_Product_Gallery.php:1170, ../includes/Elements/Woo_Product_List.php:303, ../includes/Elements/Woo_Product_List.php:312, ../includes/Elements/Woo_Product_List.php:321, ../includes/Elements/Woo_Product_List.php:330, ../includes/Elements/Woo_Product_List.php:348, ../includes/Elements/Woo_Product_List.php:357, ../includes/Elements/Woo_Product_List.php:366, ../includes/Elements/Woo_Product_List.php:384, ../includes/Elements/Woo_Product_List.php:396, ../includes/Elements/Woo_Product_List.php:408, ../includes/Elements/Woo_Product_List.php:417, ../includes/Elements/Woo_Product_List.php:426, ../includes/Elements/Woo_Product_List.php:992, ../includes/Elements/Woo_Product_List.php:1044, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Extensions/Table_of_Content.php:571, ../includes/Traits/Controls.php:664, ../includes/Traits/Controls.php:847, ../includes/Traits/Controls.php:1130, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1238, ../includes/Traits/Controls.php:1283, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1632, ../includes/Traits/Controls.php:1652, ../includes/Traits/Controls.php:1681, ../includes/Traits/Controls.php:1697, ../includes/Traits/Controls.php:1714, ../includes/Traits/Controls.php:1747, ../includes/Traits/Controls.php:1763, ../includes/Traits/Controls.php:1782, ../includes/Traits/Controls.php:1798, ../includes/Traits/Controls.php:1814 msgid "Hide" msgstr "" @@ -1189,7 +1189,7 @@ msgstr "" msgid "Show Title" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:314, ../includes/Elements/Image_Accordion.php:152 +#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:318, ../includes/Elements/Image_Accordion.php:156 msgid "Select Tag" msgstr "" @@ -1197,7 +1197,7 @@ msgstr "" msgid "Show Count" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:281 +#: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:285 msgid "Prefix" msgstr "" @@ -1209,7 +1209,7 @@ msgstr "" msgid "articles" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:253, ../includes/Elements/Flip_Box.php:673 +#: ../includes/Elements/Betterdocs_Category_Box.php:253, ../includes/Elements/Flip_Box.php:677 msgid "Box" msgstr "" @@ -1221,7 +1221,7 @@ msgstr "" msgid "Box Padding" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:339, ../includes/Elements/Betterdocs_Category_Box.php:592, ../includes/Elements/Betterdocs_Category_Box.php:731, ../includes/Elements/Betterdocs_Category_Box.php:1030, ../includes/Elements/Betterdocs_Category_Grid.php:881, ../includes/Elements/Betterdocs_Category_Grid.php:1441, ../includes/Elements/Betterdocs_Search_Form.php:491, ../includes/Elements/Filterable_Gallery.php:2217, ../includes/Elements/Info_Box.php:1499 +#: ../includes/Elements/Betterdocs_Category_Box.php:339, ../includes/Elements/Betterdocs_Category_Box.php:592, ../includes/Elements/Betterdocs_Category_Box.php:731, ../includes/Elements/Betterdocs_Category_Box.php:1030, ../includes/Elements/Betterdocs_Category_Grid.php:881, ../includes/Elements/Betterdocs_Category_Grid.php:1441, ../includes/Elements/Betterdocs_Search_Form.php:491, ../includes/Elements/Filterable_Gallery.php:2221, ../includes/Elements/Info_Box.php:1503 msgid "Transition" msgstr "" @@ -1229,11 +1229,11 @@ msgstr "" msgid "Area" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:426, ../includes/Elements/Betterdocs_Category_Box.php:461, ../includes/Elements/Betterdocs_Category_Box.php:818, ../includes/Elements/Betterdocs_Category_Box.php:925, ../includes/Elements/Betterdocs_Category_Grid.php:542, ../includes/Elements/Betterdocs_Category_Grid.php:780, ../includes/Elements/Betterdocs_Category_Grid.php:1100, ../includes/Elements/Betterdocs_Category_Grid.php:1253, ../includes/Elements/Betterdocs_Search_Form.php:260, ../includes/Elements/Business_Reviews.php:2376, ../includes/Elements/Caldera_Forms.php:950, ../includes/Elements/Contact_Form_7.php:988, ../includes/Elements/Cta_Box.php:225, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:933, ../includes/Elements/FluentForm.php:946, ../includes/Elements/Formstack.php:1142, ../includes/Elements/Formstack.php:1295, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/Login_Register.php:3955, ../includes/Elements/Login_Register.php:5145, ../includes/Elements/NFT_Gallery.php:678, ../includes/Elements/NinjaForms.php:997, ../includes/Elements/Post_Timeline.php:463, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:508, ../includes/Elements/Woo_Product_Carousel.php:2326, ../includes/Elements/WpForms.php:955, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437 +#: ../includes/Elements/Betterdocs_Category_Box.php:426, ../includes/Elements/Betterdocs_Category_Box.php:461, ../includes/Elements/Betterdocs_Category_Box.php:818, ../includes/Elements/Betterdocs_Category_Box.php:925, ../includes/Elements/Betterdocs_Category_Grid.php:542, ../includes/Elements/Betterdocs_Category_Grid.php:780, ../includes/Elements/Betterdocs_Category_Grid.php:1100, ../includes/Elements/Betterdocs_Category_Grid.php:1253, ../includes/Elements/Betterdocs_Search_Form.php:260, ../includes/Elements/Business_Reviews.php:2376, ../includes/Elements/Caldera_Forms.php:950, ../includes/Elements/Contact_Form_7.php:988, ../includes/Elements/Cta_Box.php:229, ../includes/Elements/Feature_List.php:644, ../includes/Elements/Filterable_Gallery.php:937, ../includes/Elements/FluentForm.php:946, ../includes/Elements/Formstack.php:1142, ../includes/Elements/Formstack.php:1295, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/Login_Register.php:3955, ../includes/Elements/Login_Register.php:5145, ../includes/Elements/NFT_Gallery.php:678, ../includes/Elements/NinjaForms.php:997, ../includes/Elements/Post_Timeline.php:463, ../includes/Elements/Progress_Bar.php:656, ../includes/Elements/Twitter_Feed.php:508, ../includes/Elements/Woo_Product_Carousel.php:2326, ../includes/Elements/WpForms.php:955, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437 msgid "Size" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2395, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:741, ../includes/Elements/Filterable_Gallery.php:2724, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:914, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2430, ../includes/Elements/Woo_Product_Carousel.php:2349, ../includes/Elements/WpForms.php:772, ../includes/Elements/WpForms.php:880, ../includes/Traits/Controls.php:1890 +#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2395, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:745, ../includes/Elements/Filterable_Gallery.php:2728, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:914, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2430, ../includes/Elements/Woo_Product_Carousel.php:2349, ../includes/Elements/WpForms.php:772, ../includes/Elements/WpForms.php:880, ../includes/Traits/Controls.php:1890 msgid "Spacing" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "" msgid "Layout Mode" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:307, ../includes/Elements/Business_Reviews.php:205, ../includes/Elements/Filterable_Gallery.php:154, ../includes/Elements/NFT_Gallery.php:245, ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Woo_Product_Gallery.php:327, ../includes/Traits/Controls.php:636 +#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:307, ../includes/Elements/Business_Reviews.php:205, ../includes/Elements/Filterable_Gallery.php:158, ../includes/Elements/NFT_Gallery.php:245, ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Woo_Product_Gallery.php:327, ../includes/Traits/Controls.php:636 msgid "Grid" msgstr "" @@ -1273,7 +1273,7 @@ msgstr "" msgid "Fit to Screen" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:155, ../includes/Elements/Product_Grid.php:242, ../includes/Elements/Twitter_Feed.php:244, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Traits/Controls.php:637 +#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:159, ../includes/Elements/Product_Grid.php:242, ../includes/Elements/Twitter_Feed.php:244, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Traits/Controls.php:637 msgid "Masonry" msgstr "" @@ -1293,7 +1293,7 @@ msgstr "" msgid "Show Button" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Filterable_Gallery.php:901, ../includes/Elements/Flip_Box.php:705, ../includes/Elements/Info_Box.php:415, ../includes/Elements/Login_Register.php:974, ../includes/Elements/Login_Register.php:1105, ../includes/Elements/Login_Register.php:1269, ../includes/Elements/Login_Register.php:2140, ../includes/Elements/NFT_Gallery.php:646, ../includes/Elements/Pricing_Table.php:619, ../includes/Elements/Twitter_Feed.php:476, ../includes/Elements/Woo_Cart.php:952, ../includes/Elements/Woo_Cart.php:980, ../includes/Elements/Woo_Cart.php:1008, ../includes/Elements/Woo_Cart.php:1051, ../includes/Elements/Woo_Checkout.php:453, ../includes/Elements/Woo_Product_List.php:1202, ../includes/Elements/Woo_Product_List.php:1254, ../includes/Traits/Controls.php:1456 +#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:84, ../includes/Elements/Filterable_Gallery.php:905, ../includes/Elements/Flip_Box.php:709, ../includes/Elements/Info_Box.php:419, ../includes/Elements/Login_Register.php:974, ../includes/Elements/Login_Register.php:1105, ../includes/Elements/Login_Register.php:1269, ../includes/Elements/Login_Register.php:2140, ../includes/Elements/NFT_Gallery.php:646, ../includes/Elements/Pricing_Table.php:623, ../includes/Elements/Twitter_Feed.php:476, ../includes/Elements/Woo_Cart.php:952, ../includes/Elements/Woo_Cart.php:980, ../includes/Elements/Woo_Cart.php:1008, ../includes/Elements/Woo_Cart.php:1051, ../includes/Elements/Woo_Checkout.php:453, ../includes/Elements/Woo_Product_List.php:1202, ../includes/Elements/Woo_Product_List.php:1254, ../includes/Traits/Controls.php:1456 msgid "Button Text" msgstr "" @@ -1313,11 +1313,11 @@ msgstr "" msgid "Ticker Background" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:982, ../includes/Elements/Betterdocs_Category_Grid.php:993, ../includes/Elements/Event_Calendar.php:568, ../includes/Elements/Feature_List.php:433, ../includes/Elements/NFT_Gallery.php:246, ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Twitter_Feed.php:243, ../includes/Extensions/Table_of_Content.php:1028 +#: ../includes/Elements/Betterdocs_Category_Grid.php:982, ../includes/Elements/Betterdocs_Category_Grid.php:993, ../includes/Elements/Event_Calendar.php:568, ../includes/Elements/Feature_List.php:437, ../includes/Elements/NFT_Gallery.php:246, ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Twitter_Feed.php:243, ../includes/Extensions/Table_of_Content.php:1028 msgid "List" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:1020, ../includes/Elements/Filterable_Gallery.php:1452, ../includes/Elements/Filterable_Gallery.php:1909, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Login_Register.php:4571, ../includes/Elements/Pricing_Table.php:1859, ../includes/Elements/Product_Grid.php:3153, ../includes/Elements/Twitter_Feed.php:1046, ../includes/Elements/Woo_Product_Carousel.php:2064, ../includes/Elements/Woo_Product_Gallery.php:2411, ../includes/Elements/Woo_Product_List.php:3266 +#: ../includes/Elements/Betterdocs_Category_Grid.php:1020, ../includes/Elements/Filterable_Gallery.php:1456, ../includes/Elements/Filterable_Gallery.php:1913, ../includes/Elements/Filterable_Gallery.php:2683, ../includes/Elements/Login_Register.php:4571, ../includes/Elements/Pricing_Table.php:1863, ../includes/Elements/Product_Grid.php:3153, ../includes/Elements/Twitter_Feed.php:1046, ../includes/Elements/Woo_Product_Carousel.php:2064, ../includes/Elements/Woo_Product_Gallery.php:2411, ../includes/Elements/Woo_Product_List.php:3266 msgid "Hover Color" msgstr "" @@ -1345,7 +1345,7 @@ msgstr "" msgid "Area Spacing" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Pricing_Table.php:889, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2323 +#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Pricing_Table.php:893, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2323 msgid "Button Alignment" msgstr "" @@ -1369,7 +1369,7 @@ msgstr "" msgid "Field Padding" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:231, ../includes/Elements/Facebook_Feed.php:601, ../includes/Elements/Post_Grid.php:406, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1523, ../includes/Elements/Simple_Menu.php:691, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Woo_Product_Carousel.php:2536 +#: ../includes/Elements/Betterdocs_Search_Form.php:231, ../includes/Elements/Facebook_Feed.php:601, ../includes/Elements/Post_Grid.php:406, ../includes/Elements/Pricing_Table.php:519, ../includes/Elements/Pricing_Table.php:1527, ../includes/Elements/Simple_Menu.php:691, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Woo_Product_Carousel.php:2536 msgid "Shadow" msgstr "" @@ -1381,7 +1381,7 @@ msgstr "" msgid "Close Icon" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2341, ../includes/Elements/Business_Reviews.php:2491, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1105, ../includes/Elements/Creative_Button.php:428, ../includes/Elements/Cta_Box.php:1166, ../includes/Elements/Cta_Box.php:1405, ../includes/Elements/Event_Calendar.php:1797, ../includes/Elements/Event_Calendar.php:1842, ../includes/Elements/Event_Calendar.php:1887, ../includes/Elements/Event_Calendar.php:1967, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3156, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:572, ../includes/Elements/Interactive_Circle.php:782, ../includes/Elements/Interactive_Circle.php:852, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2088, ../includes/Elements/Product_Grid.php:1044, ../includes/Elements/Product_Grid.php:1184, ../includes/Elements/Product_Grid.php:1916, ../includes/Elements/Product_Grid.php:2220, ../includes/Elements/Product_Grid.php:2402, ../includes/Elements/Product_Grid.php:2641, ../includes/Elements/Product_Grid.php:2688, ../includes/Elements/Product_Grid.php:2884, ../includes/Elements/Product_Grid.php:2980, ../includes/Elements/Product_Grid.php:3092, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:625, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1046, ../includes/Elements/Woo_Checkout.php:1267, ../includes/Elements/Woo_Checkout.php:1748, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2236, ../includes/Elements/Woo_Checkout.php:2280, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2513, ../includes/Elements/Woo_Checkout.php:2533, ../includes/Elements/Woo_Checkout.php:2889, ../includes/Elements/Woo_Checkout.php:3001, ../includes/Elements/Woo_Product_Carousel.php:1112, ../includes/Elements/Woo_Product_Carousel.php:1506, ../includes/Elements/Woo_Product_Carousel.php:1630, ../includes/Elements/Woo_Product_Carousel.php:1798, ../includes/Elements/Woo_Product_Carousel.php:1893, ../includes/Elements/Woo_Product_Carousel.php:2007, ../includes/Elements/Woo_Product_Carousel.php:2452, ../includes/Elements/Woo_Product_Carousel.php:2879, ../includes/Elements/Woo_Product_Gallery.php:815, ../includes/Elements/Woo_Product_Gallery.php:1299, ../includes/Elements/Woo_Product_Gallery.php:1542, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Elements/Woo_Product_Gallery.php:2101, ../includes/Elements/Woo_Product_Gallery.php:2238, ../includes/Elements/Woo_Product_Gallery.php:2350, ../includes/Elements/Woo_Product_List.php:3070, ../includes/Elements/Woo_Product_List.php:3205, ../includes/Elements/WpForms.php:1030, ../includes/Traits/Controls.php:2299, ../includes/Traits/Woo_Product_Comparable.php:1724 +#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2341, ../includes/Elements/Business_Reviews.php:2491, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:893, ../includes/Elements/Countdown.php:965, ../includes/Elements/Countdown.php:1037, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:432, ../includes/Elements/Cta_Box.php:1170, ../includes/Elements/Cta_Box.php:1409, ../includes/Elements/Event_Calendar.php:1797, ../includes/Elements/Event_Calendar.php:1842, ../includes/Elements/Event_Calendar.php:1887, ../includes/Elements/Event_Calendar.php:1967, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3160, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:576, ../includes/Elements/Interactive_Circle.php:786, ../includes/Elements/Interactive_Circle.php:856, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2092, ../includes/Elements/Product_Grid.php:1044, ../includes/Elements/Product_Grid.php:1184, ../includes/Elements/Product_Grid.php:1916, ../includes/Elements/Product_Grid.php:2220, ../includes/Elements/Product_Grid.php:2402, ../includes/Elements/Product_Grid.php:2641, ../includes/Elements/Product_Grid.php:2688, ../includes/Elements/Product_Grid.php:2884, ../includes/Elements/Product_Grid.php:2980, ../includes/Elements/Product_Grid.php:3092, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:629, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1046, ../includes/Elements/Woo_Checkout.php:1267, ../includes/Elements/Woo_Checkout.php:1748, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2236, ../includes/Elements/Woo_Checkout.php:2280, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2513, ../includes/Elements/Woo_Checkout.php:2533, ../includes/Elements/Woo_Checkout.php:2889, ../includes/Elements/Woo_Checkout.php:3001, ../includes/Elements/Woo_Product_Carousel.php:1112, ../includes/Elements/Woo_Product_Carousel.php:1506, ../includes/Elements/Woo_Product_Carousel.php:1630, ../includes/Elements/Woo_Product_Carousel.php:1798, ../includes/Elements/Woo_Product_Carousel.php:1893, ../includes/Elements/Woo_Product_Carousel.php:2007, ../includes/Elements/Woo_Product_Carousel.php:2452, ../includes/Elements/Woo_Product_Carousel.php:2879, ../includes/Elements/Woo_Product_Gallery.php:815, ../includes/Elements/Woo_Product_Gallery.php:1299, ../includes/Elements/Woo_Product_Gallery.php:1542, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Elements/Woo_Product_Gallery.php:2101, ../includes/Elements/Woo_Product_Gallery.php:2238, ../includes/Elements/Woo_Product_Gallery.php:2350, ../includes/Elements/Woo_Product_List.php:3070, ../includes/Elements/Woo_Product_List.php:3205, ../includes/Elements/WpForms.php:1030, ../includes/Traits/Controls.php:2299, ../includes/Traits/Woo_Product_Comparable.php:1724 msgid "Border Color" msgstr "" @@ -1397,7 +1397,7 @@ msgstr "" msgid "Search Result List" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:407, ../includes/Elements/Betterdocs_Search_Form.php:513, ../includes/Elements/Filterable_Gallery.php:1315, ../includes/Elements/Interactive_Circle.php:623, ../includes/Elements/Woo_Product_List.php:1358, ../includes/Template/Woo-Product-List/preset-3.php:115 +#: ../includes/Elements/Betterdocs_Search_Form.php:407, ../includes/Elements/Betterdocs_Search_Form.php:513, ../includes/Elements/Filterable_Gallery.php:1319, ../includes/Elements/Interactive_Circle.php:627, ../includes/Elements/Woo_Product_List.php:1358, ../includes/Template/Woo-Product-List/preset-3.php:115 msgid "Item" msgstr "" @@ -1453,11 +1453,11 @@ msgstr "" msgid "Local Business Schema" msgstr "" -#: ../includes/Elements/Business_Reviews.php:178, ../includes/Elements/Filterable_Gallery.php:300, ../includes/Elements/Filterable_Gallery.php:312, ../includes/Elements/Interactive_Circle.php:609, ../includes/Elements/Twitter_Feed.php:416, ../includes/Elements/Twitter_Feed.php:428 +#: ../includes/Elements/Business_Reviews.php:178, ../includes/Elements/Filterable_Gallery.php:304, ../includes/Elements/Filterable_Gallery.php:316, ../includes/Elements/Interactive_Circle.php:613, ../includes/Elements/Twitter_Feed.php:416, ../includes/Elements/Twitter_Feed.php:428 msgid "Enable" msgstr "" -#: ../includes/Elements/Business_Reviews.php:179, ../includes/Elements/Filterable_Gallery.php:301, ../includes/Elements/Filterable_Gallery.php:313, ../includes/Elements/Interactive_Circle.php:610, ../includes/Elements/Product_Grid.php:899, ../includes/Elements/Twitter_Feed.php:417, ../includes/Elements/Twitter_Feed.php:429, ../includes/Elements/Woo_Product_Gallery.php:655, ../includes/Elements/Woo_Product_List.php:258, ../includes/Traits/Controls.php:788 +#: ../includes/Elements/Business_Reviews.php:179, ../includes/Elements/Filterable_Gallery.php:305, ../includes/Elements/Filterable_Gallery.php:317, ../includes/Elements/Interactive_Circle.php:614, ../includes/Elements/Product_Grid.php:899, ../includes/Elements/Twitter_Feed.php:417, ../includes/Elements/Twitter_Feed.php:429, ../includes/Elements/Woo_Product_Gallery.php:655, ../includes/Elements/Woo_Product_List.php:258, ../includes/Traits/Controls.php:788 msgid "Disable" msgstr "" @@ -1469,15 +1469,15 @@ msgstr "" msgid "Slider" msgstr "" -#: ../includes/Elements/Business_Reviews.php:213, ../includes/Elements/Cta_Box.php:100, ../includes/Elements/Cta_Box.php:378, ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/NFT_Gallery.php:258, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Product_Grid.php:2114, ../includes/Elements/Simple_Menu.php:142, ../includes/Elements/Woo_Product_Carousel.php:928, ../includes/Elements/Woo_Product_Carousel.php:2246, ../includes/Elements/Woo_Product_Gallery.php:341, ../includes/Elements/Woo_Product_Gallery.php:1680, ../includes/Elements/Woo_Product_List.php:770, ../includes/Elements/Woo_Product_List.php:788, ../includes/Traits/Controls.php:475, ../includes/Template/Woo-Product-Carousel/preset-1.php:4, ../includes/Template/Woo-Product-List/preset-1.php:3 +#: ../includes/Elements/Business_Reviews.php:213, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Cta_Box.php:382, ../includes/Elements/Interactive_Circle.php:78, ../includes/Elements/NFT_Gallery.php:258, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Product_Grid.php:2114, ../includes/Elements/Simple_Menu.php:142, ../includes/Elements/Woo_Product_Carousel.php:928, ../includes/Elements/Woo_Product_Carousel.php:2246, ../includes/Elements/Woo_Product_Gallery.php:341, ../includes/Elements/Woo_Product_Gallery.php:1680, ../includes/Elements/Woo_Product_List.php:770, ../includes/Elements/Woo_Product_List.php:788, ../includes/Traits/Controls.php:475, ../includes/Template/Woo-Product-Carousel/preset-1.php:4, ../includes/Template/Woo-Product-List/preset-1.php:3 msgid "Preset 1" msgstr "" -#: ../includes/Elements/Business_Reviews.php:217, ../includes/Elements/Cta_Box.php:101, ../includes/Elements/Cta_Box.php:379, ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/NFT_Gallery.php:259, ../includes/Elements/Product_Grid.php:317, ../includes/Elements/Product_Grid.php:1956, ../includes/Elements/Product_Grid.php:2115, ../includes/Elements/Simple_Menu.php:143, ../includes/Elements/Woo_Product_Carousel.php:929, ../includes/Elements/Woo_Product_Carousel.php:2247, ../includes/Elements/Woo_Product_Gallery.php:345, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_List.php:771, ../includes/Elements/Woo_Product_List.php:789, ../includes/Traits/Controls.php:476, ../includes/Template/Woo-Product-Carousel/preset-2.php:4, ../includes/Template/Woo-Product-List/preset-2.php:3 +#: ../includes/Elements/Business_Reviews.php:217, ../includes/Elements/Cta_Box.php:105, ../includes/Elements/Cta_Box.php:383, ../includes/Elements/Interactive_Circle.php:79, ../includes/Elements/NFT_Gallery.php:259, ../includes/Elements/Product_Grid.php:317, ../includes/Elements/Product_Grid.php:1956, ../includes/Elements/Product_Grid.php:2115, ../includes/Elements/Simple_Menu.php:143, ../includes/Elements/Woo_Product_Carousel.php:929, ../includes/Elements/Woo_Product_Carousel.php:2247, ../includes/Elements/Woo_Product_Gallery.php:345, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_List.php:771, ../includes/Elements/Woo_Product_List.php:789, ../includes/Traits/Controls.php:476, ../includes/Template/Woo-Product-Carousel/preset-2.php:4, ../includes/Template/Woo-Product-List/preset-2.php:3 msgid "Preset 2" msgstr "" -#: ../includes/Elements/Business_Reviews.php:221, ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:321, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Simple_Menu.php:144, ../includes/Elements/Woo_Product_Carousel.php:930, ../includes/Elements/Woo_Product_Carousel.php:2248, ../includes/Elements/Woo_Product_Gallery.php:349, ../includes/Elements/Woo_Product_Gallery.php:1682, ../includes/Elements/Woo_Product_List.php:772, ../includes/Elements/Woo_Product_List.php:790, ../includes/Traits/Controls.php:477, ../includes/Template/Woo-Product-Carousel/preset-3.php:4, ../includes/Template/Woo-Product-List/preset-3.php:3 +#: ../includes/Elements/Business_Reviews.php:221, ../includes/Elements/Interactive_Circle.php:80, ../includes/Elements/Product_Grid.php:321, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Simple_Menu.php:144, ../includes/Elements/Woo_Product_Carousel.php:930, ../includes/Elements/Woo_Product_Carousel.php:2248, ../includes/Elements/Woo_Product_Gallery.php:349, ../includes/Elements/Woo_Product_Gallery.php:1682, ../includes/Elements/Woo_Product_List.php:772, ../includes/Elements/Woo_Product_List.php:790, ../includes/Traits/Controls.php:477, ../includes/Template/Woo-Product-Carousel/preset-3.php:4, ../includes/Template/Woo-Product-List/preset-3.php:3 msgid "Preset 3" msgstr "" @@ -1485,31 +1485,31 @@ msgstr "" msgid "Style Preset" msgstr "" -#: ../includes/Elements/Business_Reviews.php:261, ../includes/Elements/Business_Reviews.php:284, ../includes/Elements/Business_Reviews.php:307, ../includes/Elements/Facebook_Feed.php:272, ../includes/Elements/Filterable_Gallery.php:131, ../includes/Elements/NFT_Gallery.php:270, ../includes/Elements/Product_Grid.php:342, ../includes/Elements/Product_Grid.php:364, ../includes/Elements/Woo_Product_Gallery.php:367, ../includes/Traits/Woo_Product_Comparable.php:853 +#: ../includes/Elements/Business_Reviews.php:261, ../includes/Elements/Business_Reviews.php:284, ../includes/Elements/Business_Reviews.php:307, ../includes/Elements/Facebook_Feed.php:272, ../includes/Elements/Filterable_Gallery.php:135, ../includes/Elements/NFT_Gallery.php:270, ../includes/Elements/Product_Grid.php:342, ../includes/Elements/Product_Grid.php:364, ../includes/Elements/Woo_Product_Gallery.php:367, ../includes/Traits/Woo_Product_Comparable.php:853 msgid "Columns" msgstr "" -#: ../includes/Elements/Business_Reviews.php:267, ../includes/Elements/Business_Reviews.php:290, ../includes/Elements/Business_Reviews.php:313, ../includes/Elements/Facebook_Feed.php:276, ../includes/Elements/NFT_Gallery.php:274, ../includes/Elements/Product_Grid.php:346, ../includes/Elements/Product_Grid.php:368, ../includes/Elements/Testimonial.php:204, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Carousel.php:539, ../includes/Elements/Woo_Product_Gallery.php:371, ../includes/Traits/Controls.php:617, ../includes/Traits/Controls.php:1601 +#: ../includes/Elements/Business_Reviews.php:267, ../includes/Elements/Business_Reviews.php:290, ../includes/Elements/Business_Reviews.php:313, ../includes/Elements/Facebook_Feed.php:276, ../includes/Elements/NFT_Gallery.php:274, ../includes/Elements/Product_Grid.php:346, ../includes/Elements/Product_Grid.php:368, ../includes/Elements/Testimonial.php:208, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Carousel.php:539, ../includes/Elements/Woo_Product_Gallery.php:371, ../includes/Traits/Controls.php:617, ../includes/Traits/Controls.php:1601 msgid "1" msgstr "" -#: ../includes/Elements/Business_Reviews.php:268, ../includes/Elements/Business_Reviews.php:291, ../includes/Elements/Business_Reviews.php:314, ../includes/Elements/Facebook_Feed.php:277, ../includes/Elements/NFT_Gallery.php:275, ../includes/Elements/Product_Grid.php:347, ../includes/Elements/Product_Grid.php:369, ../includes/Elements/Testimonial.php:205, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Carousel.php:540, ../includes/Elements/Woo_Product_Gallery.php:372, ../includes/Traits/Controls.php:618, ../includes/Traits/Controls.php:1602 +#: ../includes/Elements/Business_Reviews.php:268, ../includes/Elements/Business_Reviews.php:291, ../includes/Elements/Business_Reviews.php:314, ../includes/Elements/Facebook_Feed.php:277, ../includes/Elements/NFT_Gallery.php:275, ../includes/Elements/Product_Grid.php:347, ../includes/Elements/Product_Grid.php:369, ../includes/Elements/Testimonial.php:209, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Carousel.php:540, ../includes/Elements/Woo_Product_Gallery.php:372, ../includes/Traits/Controls.php:618, ../includes/Traits/Controls.php:1602 msgid "2" msgstr "" -#: ../includes/Elements/Business_Reviews.php:269, ../includes/Elements/Business_Reviews.php:292, ../includes/Elements/Business_Reviews.php:315, ../includes/Elements/Facebook_Feed.php:278, ../includes/Elements/NFT_Gallery.php:276, ../includes/Elements/Product_Grid.php:348, ../includes/Elements/Testimonial.php:206, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Carousel.php:541, ../includes/Elements/Woo_Product_Gallery.php:373, ../includes/Traits/Controls.php:619, ../includes/Traits/Controls.php:1603 +#: ../includes/Elements/Business_Reviews.php:269, ../includes/Elements/Business_Reviews.php:292, ../includes/Elements/Business_Reviews.php:315, ../includes/Elements/Facebook_Feed.php:278, ../includes/Elements/NFT_Gallery.php:276, ../includes/Elements/Product_Grid.php:348, ../includes/Elements/Testimonial.php:210, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Carousel.php:541, ../includes/Elements/Woo_Product_Gallery.php:373, ../includes/Traits/Controls.php:619, ../includes/Traits/Controls.php:1603 msgid "3" msgstr "" -#: ../includes/Elements/Business_Reviews.php:270, ../includes/Elements/Business_Reviews.php:293, ../includes/Elements/Business_Reviews.php:316, ../includes/Elements/Facebook_Feed.php:279, ../includes/Elements/NFT_Gallery.php:277, ../includes/Elements/Product_Grid.php:349, ../includes/Elements/Testimonial.php:207, ../includes/Elements/Woo_Product_Carousel.php:542, ../includes/Elements/Woo_Product_Gallery.php:374, ../includes/Traits/Controls.php:620 +#: ../includes/Elements/Business_Reviews.php:270, ../includes/Elements/Business_Reviews.php:293, ../includes/Elements/Business_Reviews.php:316, ../includes/Elements/Facebook_Feed.php:279, ../includes/Elements/NFT_Gallery.php:277, ../includes/Elements/Product_Grid.php:349, ../includes/Elements/Testimonial.php:211, ../includes/Elements/Woo_Product_Carousel.php:542, ../includes/Elements/Woo_Product_Gallery.php:374, ../includes/Traits/Controls.php:620 msgid "4" msgstr "" -#: ../includes/Elements/Business_Reviews.php:328, ../includes/Elements/Content_Ticker.php:161, ../includes/Elements/Cta_Box.php:818, ../includes/Elements/Cta_Box.php:1246, ../includes/Elements/Woo_Product_Carousel.php:522 +#: ../includes/Elements/Business_Reviews.php:328, ../includes/Elements/Content_Ticker.php:161, ../includes/Elements/Cta_Box.php:822, ../includes/Elements/Cta_Box.php:1250, ../includes/Elements/Woo_Product_Carousel.php:522 msgid "Effect" msgstr "" -#: ../includes/Elements/Business_Reviews.php:332, ../includes/Elements/Content_Ticker.php:166, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Woo_Product_Carousel.php:527 +#: ../includes/Elements/Business_Reviews.php:332, ../includes/Elements/Content_Ticker.php:166, ../includes/Elements/Pricing_Table.php:471, ../includes/Elements/Woo_Product_Carousel.php:527 msgid "Slide" msgstr "" @@ -1537,7 +1537,7 @@ msgstr "" msgid "Duration of transition between slides (in ms)" msgstr "" -#: ../includes/Elements/Business_Reviews.php:431, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Interactive_Circle.php:468, ../includes/Elements/Sticky_Video.php:321, ../includes/Elements/Woo_Product_Carousel.php:649 +#: ../includes/Elements/Business_Reviews.php:431, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Interactive_Circle.php:472, ../includes/Elements/Sticky_Video.php:325, ../includes/Elements/Woo_Product_Carousel.php:649 msgid "Autoplay" msgstr "" @@ -1585,7 +1585,7 @@ msgstr "" msgid "Custom Logo" msgstr "" -#: ../includes/Elements/Business_Reviews.php:599, ../includes/Elements/Business_Reviews.php:758, ../includes/Elements/Team_Member.php:111, ../includes/Elements/Woo_Cart.php:481, ../includes/Traits/Controls.php:349 +#: ../includes/Elements/Business_Reviews.php:599, ../includes/Elements/Business_Reviews.php:758, ../includes/Elements/Team_Member.php:115, ../includes/Elements/Woo_Cart.php:481, ../includes/Traits/Controls.php:349 msgid "Name" msgstr "" @@ -1597,7 +1597,7 @@ msgstr "" msgid "Business Name" msgstr "" -#: ../includes/Elements/Business_Reviews.php:625, ../includes/Elements/Business_Reviews.php:697, ../includes/Elements/Formstack.php:1286, ../includes/Elements/Testimonial.php:636, ../includes/Elements/Woo_Product_List.php:309 +#: ../includes/Elements/Business_Reviews.php:625, ../includes/Elements/Business_Reviews.php:697, ../includes/Elements/Formstack.php:1286, ../includes/Elements/Testimonial.php:640, ../includes/Elements/Woo_Product_List.php:309 msgid "Rating" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "" msgid "Time" msgstr "" -#: ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Tooltip.php:79, ../includes/Elements/Woo_Checkout.php:186, ../includes/Elements/Woo_Product_List.php:2587, ../includes/Elements/Woo_Product_List.php:2623, ../includes/Traits/Woo_Product_Comparable.php:1206 +#: ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Tooltip.php:83, ../includes/Elements/Woo_Checkout.php:186, ../includes/Elements/Woo_Product_List.php:2587, ../includes/Elements/Woo_Product_List.php:2623, ../includes/Traits/Woo_Product_Comparable.php:1206 msgid "Text" msgstr "" @@ -1657,7 +1657,7 @@ msgstr "" msgid "Container" msgstr "" -#: ../includes/Elements/Business_Reviews.php:946, ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1496, ../includes/Elements/Event_Calendar.php:2543, ../includes/Elements/Pricing_Table.php:921, ../includes/Traits/Woo_Product_Comparable.php:1088 +#: ../includes/Elements/Business_Reviews.php:946, ../includes/Elements/Data_Table.php:79, ../includes/Elements/Event_Calendar.php:1496, ../includes/Elements/Event_Calendar.php:2543, ../includes/Elements/Pricing_Table.php:925, ../includes/Traits/Woo_Product_Comparable.php:1088 msgid "Header" msgstr "" @@ -1673,7 +1673,7 @@ msgstr "" msgid "Business Rating" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1291, ../includes/Elements/Business_Reviews.php:2017, ../includes/Elements/Filterable_Gallery.php:2299 +#: ../includes/Elements/Business_Reviews.php:1291, ../includes/Elements/Business_Reviews.php:2017, ../includes/Elements/Filterable_Gallery.php:2303 msgid "Star Color" msgstr "" @@ -1757,7 +1757,7 @@ msgstr "" msgid "Hand" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2194, ../includes/Elements/Cta_Box.php:1449, ../includes/Elements/Pricing_Table.php:1408, ../includes/Elements/Twitter_Feed.php:1181 +#: ../includes/Elements/Business_Reviews.php:2194, ../includes/Elements/Cta_Box.php:1453, ../includes/Elements/Pricing_Table.php:1412, ../includes/Elements/Twitter_Feed.php:1181 msgid "Font Size" msgstr "" @@ -1805,7 +1805,7 @@ msgstr "" msgid "Custom Title & Description" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:137, ../includes/Elements/Caldera_Forms.php:322, ../includes/Elements/Contact_Form_7.php:190, ../includes/Elements/Contact_Form_7.php:504, ../includes/Elements/Event_Calendar.php:296, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1077, ../includes/Elements/Event_Calendar.php:1078, ../includes/Elements/Feature_List.php:874, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:357, ../includes/Elements/FluentForm.php:1187, ../includes/Elements/Formstack.php:220, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:709, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:207, ../includes/Elements/GravityForms.php:542, ../includes/Elements/NinjaForms.php:158, ../includes/Elements/NinjaForms.php:495, ../includes/Elements/Team_Member.php:141, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:165, ../includes/Elements/WpForms.php:462, ../includes/Traits/Controls.php:354, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:83 +#: ../includes/Elements/Caldera_Forms.php:137, ../includes/Elements/Caldera_Forms.php:322, ../includes/Elements/Contact_Form_7.php:190, ../includes/Elements/Contact_Form_7.php:504, ../includes/Elements/Event_Calendar.php:296, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1077, ../includes/Elements/Event_Calendar.php:1078, ../includes/Elements/Feature_List.php:878, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:357, ../includes/Elements/FluentForm.php:1187, ../includes/Elements/Formstack.php:220, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:709, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:207, ../includes/Elements/GravityForms.php:542, ../includes/Elements/NinjaForms.php:158, ../includes/Elements/NinjaForms.php:495, ../includes/Elements/Team_Member.php:145, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:165, ../includes/Elements/WpForms.php:462, ../includes/Traits/Controls.php:354, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:83 msgid "Description" msgstr "" @@ -1841,7 +1841,7 @@ msgstr "" msgid "Form Alignment" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:173, ../includes/Elements/Cta_Box.php:823, ../includes/Elements/Cta_Box.php:1251, ../includes/Elements/Dual_Color_Header.php:82, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Flip_Box.php:899, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Product_Grid.php:263, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:395, ../includes/Elements/Team_Member.php:423, ../includes/Elements/Testimonial.php:263, ../includes/Elements/Testimonial.php:345, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:127, ../includes/Elements/WpForms.php:270, ../includes/Extensions/Hover_Effect.php:688, ../includes/Extensions/Hover_Effect.php:1331, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:1478, ../includes/Traits/Controls.php:2369, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 +#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:77, ../includes/Elements/Creative_Button.php:237, ../includes/Elements/Cta_Box.php:177, ../includes/Elements/Cta_Box.php:827, ../includes/Elements/Cta_Box.php:1255, ../includes/Elements/Dual_Color_Header.php:86, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Flip_Box.php:903, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:91, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Product_Grid.php:263, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:399, ../includes/Elements/Team_Member.php:427, ../includes/Elements/Testimonial.php:267, ../includes/Elements/Testimonial.php:349, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:127, ../includes/Elements/WpForms.php:270, ../includes/Extensions/Hover_Effect.php:688, ../includes/Extensions/Hover_Effect.php:1331, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:1478, ../includes/Traits/Controls.php:2369, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 msgid "Default" msgstr "" @@ -1897,7 +1897,7 @@ msgstr "" msgid "Custom Styles" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1003, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Feature_List.php:701, ../includes/Elements/FluentForm.php:999, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/GravityForms.php:1741, ../includes/Elements/NinjaForms.php:1050, ../includes/Elements/Sticky_Video.php:613, ../includes/Elements/WpForms.php:1008 +#: ../includes/Elements/Caldera_Forms.php:1003, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Feature_List.php:705, ../includes/Elements/FluentForm.php:999, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/GravityForms.php:1741, ../includes/Elements/NinjaForms.php:1050, ../includes/Elements/Sticky_Video.php:617, ../includes/Elements/WpForms.php:1008 msgid "Border Width" msgstr "" @@ -1921,7 +1921,7 @@ msgstr "" msgid "Full Width" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1169, ../includes/Elements/Contact_Form_7.php:1206, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/Cta_Box.php:174, ../includes/Elements/FluentForm.php:1519, ../includes/Elements/Formstack.php:1405, ../includes/Elements/GravityForms.php:2217, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:580, ../includes/Elements/Login_Register.php:647, ../includes/Elements/Login_Register.php:835, ../includes/Elements/Login_Register.php:1022, ../includes/Elements/Login_Register.php:1153, ../includes/Elements/Login_Register.php:1648, ../includes/Elements/Login_Register.php:2273, ../includes/Elements/Login_Register.php:2382, ../includes/Elements/Login_Register.php:2553, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:2996, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3290, ../includes/Elements/Login_Register.php:3433, ../includes/Elements/Login_Register.php:3524, ../includes/Elements/Login_Register.php:3622, ../includes/Elements/Login_Register.php:3824, ../includes/Elements/Login_Register.php:3869, ../includes/Elements/Login_Register.php:3901, ../includes/Elements/Login_Register.php:4332, ../includes/Elements/Login_Register.php:4480, ../includes/Elements/Login_Register.php:4609, ../includes/Elements/Login_Register.php:4869, ../includes/Elements/Login_Register.php:5197, ../includes/Elements/NinjaForms.php:1333, ../includes/Elements/Sticky_Video.php:396, ../includes/Elements/WpForms.php:1177, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694 +#: ../includes/Elements/Caldera_Forms.php:1169, ../includes/Elements/Contact_Form_7.php:1206, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/Cta_Box.php:178, ../includes/Elements/FluentForm.php:1519, ../includes/Elements/Formstack.php:1405, ../includes/Elements/GravityForms.php:2217, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:580, ../includes/Elements/Login_Register.php:647, ../includes/Elements/Login_Register.php:835, ../includes/Elements/Login_Register.php:1022, ../includes/Elements/Login_Register.php:1153, ../includes/Elements/Login_Register.php:1648, ../includes/Elements/Login_Register.php:2273, ../includes/Elements/Login_Register.php:2382, ../includes/Elements/Login_Register.php:2553, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:2996, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3290, ../includes/Elements/Login_Register.php:3433, ../includes/Elements/Login_Register.php:3524, ../includes/Elements/Login_Register.php:3622, ../includes/Elements/Login_Register.php:3824, ../includes/Elements/Login_Register.php:3869, ../includes/Elements/Login_Register.php:3901, ../includes/Elements/Login_Register.php:4332, ../includes/Elements/Login_Register.php:4480, ../includes/Elements/Login_Register.php:4609, ../includes/Elements/Login_Register.php:4869, ../includes/Elements/Login_Register.php:5197, ../includes/Elements/NinjaForms.php:1333, ../includes/Elements/Sticky_Video.php:400, ../includes/Elements/WpForms.php:1177, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694 msgid "Custom" msgstr "" @@ -1937,7 +1937,7 @@ msgstr "" msgid "Error Fields" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1460, ../includes/Elements/Countdown.php:796, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:1021, ../includes/Elements/Countdown.php:1093, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/WeForms.php:513 +#: ../includes/Elements/Caldera_Forms.php:1460, ../includes/Elements/Countdown.php:800, ../includes/Elements/Countdown.php:881, ../includes/Elements/Countdown.php:953, ../includes/Elements/Countdown.php:1025, ../includes/Elements/Countdown.php:1097, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/WeForms.php:513 msgid "Label Color" msgstr "" @@ -1965,11 +1965,11 @@ msgstr "" msgid "Form Title" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:151, ../includes/Elements/Contact_Form_7.php:181, ../includes/Elements/Flip_Box.php:104, ../includes/Elements/Sticky_Video.php:103, ../includes/Extensions/Hover_Effect.php:1347 +#: ../includes/Elements/Contact_Form_7.php:151, ../includes/Elements/Contact_Form_7.php:181, ../includes/Elements/Flip_Box.php:108, ../includes/Elements/Sticky_Video.php:107, ../includes/Extensions/Hover_Effect.php:1347 msgid "On" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:152, ../includes/Elements/Contact_Form_7.php:182, ../includes/Elements/Flip_Box.php:105, ../includes/Elements/Sticky_Video.php:104, ../includes/Extensions/Hover_Effect.php:1348 +#: ../includes/Elements/Contact_Form_7.php:152, ../includes/Elements/Contact_Form_7.php:182, ../includes/Elements/Flip_Box.php:109, ../includes/Elements/Sticky_Video.php:108, ../includes/Extensions/Hover_Effect.php:1348 msgid "Off" msgstr "" @@ -1985,7 +1985,7 @@ msgstr "" msgid "Contact Form 7 is not installed/activated on your site. Please install and activate Contact Form 7 first." msgstr "" -#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:960, ../includes/Elements/Cta_Box.php:1154, ../includes/Elements/Cta_Box.php:1327, ../includes/Elements/Cta_Box.php:1396, ../includes/Elements/Dual_Color_Header.php:819, ../includes/Elements/Dual_Color_Header.php:899, ../includes/Elements/Event_Calendar.php:1956, ../includes/Elements/Event_Calendar.php:2087, ../includes/Elements/Event_Calendar.php:2154, ../includes/Elements/Event_Calendar.php:2208, ../includes/Elements/Event_Calendar.php:2323, ../includes/Elements/Event_Calendar.php:2418, ../includes/Elements/Event_Calendar.php:2516, ../includes/Elements/Event_Calendar.php:2908, ../includes/Elements/Event_Calendar.php:3017, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:379, ../includes/Elements/Filterable_Gallery.php:2359, ../includes/Elements/Filterable_Gallery.php:2580, ../includes/Elements/Flip_Box.php:1402, ../includes/Elements/Flip_Box.php:1486, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:363, ../includes/Elements/Pricing_Table.php:1028, ../includes/Elements/Pricing_Table.php:2006, ../includes/Elements/Pricing_Table.php:2076, ../includes/Elements/Product_Grid.php:1803, ../includes/Elements/Product_Grid.php:1819, ../includes/Elements/Product_Grid.php:1882, ../includes/Elements/Product_Grid.php:1897, ../includes/Elements/Product_Grid.php:3236, ../includes/Elements/Product_Grid.php:3293, ../includes/Elements/Progress_Bar.php:388, ../includes/Elements/Team_Member.php:797, ../includes/Elements/Team_Member.php:875, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2214, ../includes/Elements/Woo_Checkout.php:2258, ../includes/Elements/Woo_Checkout.php:2302, ../includes/Elements/Woo_Product_Carousel.php:2147, ../includes/Elements/Woo_Product_Carousel.php:2204, ../includes/Elements/Woo_Product_Gallery.php:1197, ../includes/Elements/Woo_Product_Gallery.php:1211, ../includes/Elements/Woo_Product_Gallery.php:1269, ../includes/Elements/Woo_Product_Gallery.php:1282, ../includes/Elements/Woo_Product_Gallery.php:1330, ../includes/Elements/Woo_Product_Gallery.php:1497, ../includes/Elements/Woo_Product_Gallery.php:1531, ../includes/Elements/Woo_Product_Gallery.php:1569, ../includes/Elements/Woo_Product_Gallery.php:2494, ../includes/Elements/Woo_Product_Gallery.php:2551, ../includes/Elements/Woo_Product_List.php:1500, ../includes/Elements/Woo_Product_List.php:2125, ../includes/Elements/Woo_Product_List.php:2182, ../includes/Elements/Woo_Product_List.php:2730, ../includes/Elements/Woo_Product_List.php:2776, ../includes/Elements/Woo_Product_List.php:2849, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:2954, ../includes/Elements/Woo_Product_List.php:2989, ../includes/Elements/Woo_Product_List.php:3349, ../includes/Elements/Woo_Product_List.php:3406, ../includes/Traits/Controls.php:1982, ../includes/Traits/Controls.php:2094, ../includes/Traits/Controls.php:2040, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 +#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:964, ../includes/Elements/Cta_Box.php:1158, ../includes/Elements/Cta_Box.php:1331, ../includes/Elements/Cta_Box.php:1400, ../includes/Elements/Dual_Color_Header.php:823, ../includes/Elements/Dual_Color_Header.php:903, ../includes/Elements/Event_Calendar.php:1956, ../includes/Elements/Event_Calendar.php:2087, ../includes/Elements/Event_Calendar.php:2154, ../includes/Elements/Event_Calendar.php:2208, ../includes/Elements/Event_Calendar.php:2323, ../includes/Elements/Event_Calendar.php:2418, ../includes/Elements/Event_Calendar.php:2516, ../includes/Elements/Event_Calendar.php:2908, ../includes/Elements/Event_Calendar.php:3017, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:383, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Filterable_Gallery.php:2584, ../includes/Elements/Flip_Box.php:1406, ../includes/Elements/Flip_Box.php:1490, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:363, ../includes/Elements/Pricing_Table.php:1032, ../includes/Elements/Pricing_Table.php:2010, ../includes/Elements/Pricing_Table.php:2080, ../includes/Elements/Product_Grid.php:1803, ../includes/Elements/Product_Grid.php:1819, ../includes/Elements/Product_Grid.php:1882, ../includes/Elements/Product_Grid.php:1897, ../includes/Elements/Product_Grid.php:3236, ../includes/Elements/Product_Grid.php:3293, ../includes/Elements/Progress_Bar.php:392, ../includes/Elements/Team_Member.php:801, ../includes/Elements/Team_Member.php:879, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2214, ../includes/Elements/Woo_Checkout.php:2258, ../includes/Elements/Woo_Checkout.php:2302, ../includes/Elements/Woo_Product_Carousel.php:2147, ../includes/Elements/Woo_Product_Carousel.php:2204, ../includes/Elements/Woo_Product_Gallery.php:1197, ../includes/Elements/Woo_Product_Gallery.php:1211, ../includes/Elements/Woo_Product_Gallery.php:1269, ../includes/Elements/Woo_Product_Gallery.php:1282, ../includes/Elements/Woo_Product_Gallery.php:1330, ../includes/Elements/Woo_Product_Gallery.php:1497, ../includes/Elements/Woo_Product_Gallery.php:1531, ../includes/Elements/Woo_Product_Gallery.php:1569, ../includes/Elements/Woo_Product_Gallery.php:2494, ../includes/Elements/Woo_Product_Gallery.php:2551, ../includes/Elements/Woo_Product_List.php:1500, ../includes/Elements/Woo_Product_List.php:2125, ../includes/Elements/Woo_Product_List.php:2182, ../includes/Elements/Woo_Product_List.php:2730, ../includes/Elements/Woo_Product_List.php:2776, ../includes/Elements/Woo_Product_List.php:2849, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:2954, ../includes/Elements/Woo_Product_List.php:2989, ../includes/Elements/Woo_Product_List.php:3349, ../includes/Elements/Woo_Product_List.php:3406, ../includes/Traits/Controls.php:1982, ../includes/Traits/Controls.php:2094, ../includes/Traits/Controls.php:2040, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 msgid "Background" msgstr "" @@ -1997,11 +1997,11 @@ msgstr "" msgid "Display" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:841, ../includes/Elements/Cta_Box.php:231 +#: ../includes/Elements/Contact_Form_7.php:841, ../includes/Elements/Cta_Box.php:235 msgid "Inherit" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:842, ../includes/Elements/Cta_Box.php:232 +#: ../includes/Elements/Contact_Form_7.php:842, ../includes/Elements/Cta_Box.php:236 msgid "Initial" msgstr "" @@ -2033,7 +2033,7 @@ msgstr "" msgid "After Submit Feedback" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:807, ../includes/Elements/Dual_Color_Header.php:887, ../includes/Elements/Flip_Box.php:898, ../includes/Elements/Info_Box.php:599, ../includes/Elements/Info_Box.php:654, ../includes/Elements/Info_Box.php:822, ../includes/Elements/Info_Box.php:902, ../includes/Elements/Info_Box.php:1040, ../includes/Elements/Info_Box.php:1136, ../includes/Elements/Post_Grid.php:335, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Woo_Product_Gallery.php:1154, ../includes/Elements/Woo_Product_Gallery.php:1408, ../includes/Elements/Woo_Product_Gallery.php:1470, ../includes/Traits/Woo_Product_Comparable.php:1629 +#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:811, ../includes/Elements/Dual_Color_Header.php:891, ../includes/Elements/Flip_Box.php:902, ../includes/Elements/Info_Box.php:603, ../includes/Elements/Info_Box.php:658, ../includes/Elements/Info_Box.php:826, ../includes/Elements/Info_Box.php:906, ../includes/Elements/Info_Box.php:1044, ../includes/Elements/Info_Box.php:1140, ../includes/Elements/Post_Grid.php:335, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Woo_Product_Gallery.php:1154, ../includes/Elements/Woo_Product_Gallery.php:1408, ../includes/Elements/Woo_Product_Gallery.php:1470, ../includes/Traits/Woo_Product_Comparable.php:1629 msgid "Radius" msgstr "" @@ -2045,7 +2045,7 @@ msgstr "" msgid "Template Layout" msgstr "" -#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:422, ../includes/Elements/Progress_Bar.php:197, ../includes/Elements/Woo_Product_Gallery.php:416, ../includes/Elements/Woo_Product_List.php:450, ../includes/Traits/Controls.php:30 +#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:422, ../includes/Elements/Progress_Bar.php:201, ../includes/Elements/Woo_Product_Gallery.php:416, ../includes/Elements/Woo_Product_List.php:450, ../includes/Traits/Controls.php:30 msgid "Dynamic" msgstr "" @@ -2073,7 +2073,7 @@ msgstr "" msgid "Sets transition effect" msgstr "" -#: ../includes/Elements/Content_Ticker.php:167, ../includes/Elements/Fancy_Text.php:216, ../includes/Elements/Pricing_Table.php:464, ../includes/Elements/Simple_Menu.php:630 +#: ../includes/Elements/Content_Ticker.php:167, ../includes/Elements/Fancy_Text.php:220, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Simple_Menu.php:630 msgid "Fade" msgstr "" @@ -2089,7 +2089,7 @@ msgstr "" msgid "Pause On Hover" msgstr "" -#: ../includes/Elements/Content_Ticker.php:289, ../includes/Elements/Image_Accordion.php:82, ../includes/Elements/SVG_Draw.php:323, ../includes/Elements/Woo_Product_Carousel.php:786, ../includes/Elements/Woo_Product_List.php:734 +#: ../includes/Elements/Content_Ticker.php:289, ../includes/Elements/Image_Accordion.php:86, ../includes/Elements/SVG_Draw.php:327, ../includes/Elements/Woo_Product_Carousel.php:786, ../includes/Elements/Woo_Product_List.php:734 msgid "Direction" msgstr "" @@ -2121,355 +2121,355 @@ msgstr "" msgid "No content found!" msgstr "" -#: ../includes/Elements/Countdown.php:63 +#: ../includes/Elements/Countdown.php:67 msgid "Timer Settings" msgstr "" -#: ../includes/Elements/Countdown.php:70, ../includes/Elements/Login_Register.php:1931, ../includes/Elements/NFT_Gallery.php:104, ../includes/Traits/Woo_Product_Comparable.php:241 +#: ../includes/Elements/Countdown.php:74, ../includes/Elements/Login_Register.php:1931, ../includes/Elements/NFT_Gallery.php:104, ../includes/Traits/Woo_Product_Comparable.php:241 msgid "Type" msgstr "" -#: ../includes/Elements/Countdown.php:74 +#: ../includes/Elements/Countdown.php:78 msgid "Evergreen Timer" msgstr "" -#: ../includes/Elements/Countdown.php:83, ../includes/Elements/Countdown.php:86, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:298, ../includes/Elements/Countdown.php:901 +#: ../includes/Elements/Countdown.php:87, ../includes/Elements/Countdown.php:90, ../includes/Elements/Countdown.php:130, ../includes/Elements/Countdown.php:302, ../includes/Elements/Countdown.php:905 msgid "Hours" msgstr "" -#: ../includes/Elements/Countdown.php:96, ../includes/Elements/Countdown.php:99, ../includes/Elements/Countdown.php:327, ../includes/Elements/Countdown.php:973 +#: ../includes/Elements/Countdown.php:100, ../includes/Elements/Countdown.php:103, ../includes/Elements/Countdown.php:331, ../includes/Elements/Countdown.php:977 msgid "Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:109 +#: ../includes/Elements/Countdown.php:113 msgid "Recurring Countdown" msgstr "" -#: ../includes/Elements/Countdown.php:122 +#: ../includes/Elements/Countdown.php:126 msgid "Restart After (In Hours)" msgstr "" -#: ../includes/Elements/Countdown.php:125 +#: ../includes/Elements/Countdown.php:129 msgid "Specify how much time it will take to restart the countdown. If you set 0, the countdown will restart immediately." msgstr "" -#: ../includes/Elements/Countdown.php:137 +#: ../includes/Elements/Countdown.php:141 msgid "Recurring Countdown End Date" msgstr "" -#: ../includes/Elements/Countdown.php:140 +#: ../includes/Elements/Countdown.php:144 msgid "Set the countdown end time" msgstr "" -#: ../includes/Elements/Countdown.php:151 +#: ../includes/Elements/Countdown.php:155 msgid "Countdown Due Date" msgstr "" -#: ../includes/Elements/Countdown.php:154 +#: ../includes/Elements/Countdown.php:158 msgid "Set the due date and time" msgstr "" -#: ../includes/Elements/Countdown.php:164 +#: ../includes/Elements/Countdown.php:168 msgid "Label Position" msgstr "" -#: ../includes/Elements/Countdown.php:168, ../includes/Elements/Login_Register.php:4913, ../includes/Elements/Login_Register.php:5242, ../includes/Traits/Controls.php:455 +#: ../includes/Elements/Countdown.php:172, ../includes/Elements/Login_Register.php:4913, ../includes/Elements/Login_Register.php:5242, ../includes/Traits/Controls.php:455 msgid "Block" msgstr "" -#: ../includes/Elements/Countdown.php:177 +#: ../includes/Elements/Countdown.php:181 msgid "Left spacing for Labels" msgstr "" -#: ../includes/Elements/Countdown.php:179 +#: ../includes/Elements/Countdown.php:183 msgid "Use when you select inline labels" msgstr "" -#: ../includes/Elements/Countdown.php:236, ../includes/Elements/Event_Calendar.php:2532 +#: ../includes/Elements/Countdown.php:240, ../includes/Elements/Event_Calendar.php:2532 msgid "List view" msgstr "" -#: ../includes/Elements/Countdown.php:240 +#: ../includes/Elements/Countdown.php:244 msgid "Grid View" msgstr "" -#: ../includes/Elements/Countdown.php:254 +#: ../includes/Elements/Countdown.php:258 msgid "Display Days" msgstr "" -#: ../includes/Elements/Countdown.php:264 +#: ../includes/Elements/Countdown.php:268 msgid "Custom Label for Days" msgstr "" -#: ../includes/Elements/Countdown.php:269, ../includes/Elements/Countdown.php:829 +#: ../includes/Elements/Countdown.php:273, ../includes/Elements/Countdown.php:833 msgid "Days" msgstr "" -#: ../includes/Elements/Countdown.php:270, ../includes/Elements/Countdown.php:299, ../includes/Elements/Countdown.php:328, ../includes/Elements/Countdown.php:357 +#: ../includes/Elements/Countdown.php:274, ../includes/Elements/Countdown.php:303, ../includes/Elements/Countdown.php:332, ../includes/Elements/Countdown.php:361 msgid "Leave blank to hide" msgstr "" -#: ../includes/Elements/Countdown.php:283 +#: ../includes/Elements/Countdown.php:287 msgid "Display Hours" msgstr "" -#: ../includes/Elements/Countdown.php:293 +#: ../includes/Elements/Countdown.php:297 msgid "Custom Label for Hours" msgstr "" -#: ../includes/Elements/Countdown.php:312 +#: ../includes/Elements/Countdown.php:316 msgid "Display Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:322 +#: ../includes/Elements/Countdown.php:326 msgid "Custom Label for Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:341 +#: ../includes/Elements/Countdown.php:345 msgid "Display Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:351 +#: ../includes/Elements/Countdown.php:355 msgid "Custom Label for Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:356, ../includes/Elements/Countdown.php:1045 +#: ../includes/Elements/Countdown.php:360, ../includes/Elements/Countdown.php:1049 msgid "Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:370 +#: ../includes/Elements/Countdown.php:374 msgid "Countdown Separator" msgstr "" -#: ../includes/Elements/Countdown.php:378 +#: ../includes/Elements/Countdown.php:382 msgid "Display Separator" msgstr "" -#: ../includes/Elements/Countdown.php:388 +#: ../includes/Elements/Countdown.php:392 msgid "Separator Style" msgstr "" -#: ../includes/Elements/Countdown.php:392, ../includes/Elements/Feature_List.php:517, ../includes/Elements/GravityForms.php:1294, ../includes/Elements/Sticky_Video.php:599, ../includes/Extensions/Table_of_Content.php:1261 +#: ../includes/Elements/Countdown.php:396, ../includes/Elements/Feature_List.php:521, ../includes/Elements/GravityForms.php:1294, ../includes/Elements/Sticky_Video.php:603, ../includes/Extensions/Table_of_Content.php:1261 msgid "Solid" msgstr "" -#: ../includes/Elements/Countdown.php:393, ../includes/Elements/Feature_List.php:519, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/Sticky_Video.php:601, ../includes/Extensions/Table_of_Content.php:1263 +#: ../includes/Elements/Countdown.php:397, ../includes/Elements/Feature_List.php:523, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/Sticky_Video.php:605, ../includes/Extensions/Table_of_Content.php:1263 msgid "Dotted" msgstr "" -#: ../includes/Elements/Countdown.php:404 +#: ../includes/Elements/Countdown.php:408 msgid "Position Top" msgstr "" -#: ../includes/Elements/Countdown.php:430 +#: ../includes/Elements/Countdown.php:434 msgid "Position Left" msgstr "" -#: ../includes/Elements/Countdown.php:457, ../includes/Elements/Filterable_Gallery.php:2559 +#: ../includes/Elements/Countdown.php:461, ../includes/Elements/Filterable_Gallery.php:2563 msgid "Separator Color" msgstr "" -#: ../includes/Elements/Countdown.php:488 +#: ../includes/Elements/Countdown.php:492 msgid "Expire Action" msgstr "" -#: ../includes/Elements/Countdown.php:495 +#: ../includes/Elements/Countdown.php:499 msgid "Expire Type" msgstr "" -#: ../includes/Elements/Countdown.php:498 +#: ../includes/Elements/Countdown.php:502 msgid "Choose whether if you want to set a message or a redirect link" msgstr "" -#: ../includes/Elements/Countdown.php:501, ../includes/Elements/Woo_Cart.php:2578, ../includes/Elements/Woo_Checkout.php:534, ../includes/Elements/Woo_Checkout.php:2295 +#: ../includes/Elements/Countdown.php:505, ../includes/Elements/Woo_Cart.php:2578, ../includes/Elements/Woo_Checkout.php:534, ../includes/Elements/Woo_Checkout.php:2295 msgid "Message" msgstr "" -#: ../includes/Elements/Countdown.php:502 +#: ../includes/Elements/Countdown.php:506 msgid "Redirection Link" msgstr "" -#: ../includes/Elements/Countdown.php:512 +#: ../includes/Elements/Countdown.php:516 msgid "On Expiry Title" msgstr "" -#: ../includes/Elements/Countdown.php:515 +#: ../includes/Elements/Countdown.php:519 msgid "Countdown is finished!" msgstr "" -#: ../includes/Elements/Countdown.php:525 +#: ../includes/Elements/Countdown.php:529 msgid "On Expiry Content" msgstr "" -#: ../includes/Elements/Countdown.php:527 +#: ../includes/Elements/Countdown.php:531 msgid "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s" msgstr "" -#: ../includes/Elements/Countdown.php:537 +#: ../includes/Elements/Countdown.php:541 msgid "Redirect To (URL)" msgstr "" -#: ../includes/Elements/Countdown.php:594 +#: ../includes/Elements/Countdown.php:598 msgid "Countdown Styles" msgstr "" -#: ../includes/Elements/Countdown.php:602, ../includes/Elements/Facebook_Feed.php:510 +#: ../includes/Elements/Countdown.php:606, ../includes/Elements/Facebook_Feed.php:510 msgid "Use Gradient Background?" msgstr "" -#: ../includes/Elements/Countdown.php:614, ../includes/Elements/Countdown.php:626 +#: ../includes/Elements/Countdown.php:618, ../includes/Elements/Countdown.php:630 msgid "Box Background Color" msgstr "" -#: ../includes/Elements/Countdown.php:640, ../includes/Elements/Countdown.php:663 +#: ../includes/Elements/Countdown.php:644, ../includes/Elements/Countdown.php:667 msgid "Space Between Boxes" msgstr "" -#: ../includes/Elements/Countdown.php:687 +#: ../includes/Elements/Countdown.php:691 msgid "Space Below Container" msgstr "" -#: ../includes/Elements/Countdown.php:749, ../includes/Elements/Dual_Color_Header.php:448, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Flip_Box.php:1190, ../includes/Elements/Image_Accordion.php:489, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Product_Grid.php:1425, ../includes/Elements/Team_Member.php:584, ../includes/Elements/Twitter_Feed.php:959, ../includes/Elements/Woo_Product_Carousel.php:1201, ../includes/Elements/Woo_Product_Gallery.php:900, ../includes/Elements/Woo_Product_List.php:2070 +#: ../includes/Elements/Countdown.php:753, ../includes/Elements/Dual_Color_Header.php:452, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Flip_Box.php:1194, ../includes/Elements/Image_Accordion.php:493, ../includes/Elements/Info_Box.php:1355, ../includes/Elements/Product_Grid.php:1425, ../includes/Elements/Team_Member.php:588, ../includes/Elements/Twitter_Feed.php:959, ../includes/Elements/Woo_Product_Carousel.php:1201, ../includes/Elements/Woo_Product_Gallery.php:900, ../includes/Elements/Woo_Product_List.php:2070 msgid "Color & Typography" msgstr "" -#: ../includes/Elements/Countdown.php:757 +#: ../includes/Elements/Countdown.php:761 msgid "Countdown Digits" msgstr "" -#: ../includes/Elements/Countdown.php:765 +#: ../includes/Elements/Countdown.php:769 msgid "Digits Color" msgstr "" -#: ../includes/Elements/Countdown.php:788 +#: ../includes/Elements/Countdown.php:792 msgid "Countdown Labels" msgstr "" -#: ../includes/Elements/Countdown.php:821 +#: ../includes/Elements/Countdown.php:825 msgid "Individual Box Styling" msgstr "" -#: ../includes/Elements/Countdown.php:865, ../includes/Elements/Countdown.php:937, ../includes/Elements/Countdown.php:1009, ../includes/Elements/Countdown.php:1081 +#: ../includes/Elements/Countdown.php:869, ../includes/Elements/Countdown.php:941, ../includes/Elements/Countdown.php:1013, ../includes/Elements/Countdown.php:1085 msgid "Digit Color" msgstr "" -#: ../includes/Elements/Countdown.php:1119 +#: ../includes/Elements/Countdown.php:1123 msgid "Expire Message" msgstr "" -#: ../includes/Elements/Countdown.php:1157, ../includes/Elements/Cta_Box.php:692, ../includes/Elements/Dual_Color_Header.php:456, ../includes/Elements/Flip_Box.php:1206, ../includes/Elements/Flip_Box.php:1274, ../includes/Elements/Info_Box.php:1365, ../includes/Elements/Post_Grid.php:602, ../includes/Elements/Post_Timeline.php:295, ../includes/Elements/Pricing_Table.php:929, ../includes/Elements/Twitter_Feed.php:967 +#: ../includes/Elements/Countdown.php:1161, ../includes/Elements/Cta_Box.php:696, ../includes/Elements/Dual_Color_Header.php:460, ../includes/Elements/Flip_Box.php:1210, ../includes/Elements/Flip_Box.php:1278, ../includes/Elements/Info_Box.php:1369, ../includes/Elements/Post_Grid.php:602, ../includes/Elements/Post_Timeline.php:295, ../includes/Elements/Pricing_Table.php:933, ../includes/Elements/Twitter_Feed.php:967 msgid "Title Style" msgstr "" -#: ../includes/Elements/Countdown.php:1166, ../includes/Elements/Event_Calendar.php:2725, ../includes/Elements/FluentForm.php:1865, ../includes/Elements/Formstack.php:1638, ../includes/Elements/Info_Box.php:1475, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Timeline.php:304, ../includes/Elements/Product_Grid.php:2776, ../includes/Elements/Product_Grid.php:3131, ../includes/Elements/Progress_Bar.php:793, ../includes/Elements/Twitter_Feed.php:871, ../includes/Elements/Woo_Checkout.php:2600, ../includes/Elements/Woo_Checkout.php:2700, ../includes/Elements/Woo_Product_Carousel.php:1678, ../includes/Elements/Woo_Product_Carousel.php:2044, ../includes/Elements/Woo_Product_Gallery.php:1994, ../includes/Elements/Woo_Product_Gallery.php:2389, ../includes/Elements/Woo_Product_List.php:3244, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249 +#: ../includes/Elements/Countdown.php:1170, ../includes/Elements/Event_Calendar.php:2725, ../includes/Elements/FluentForm.php:1865, ../includes/Elements/Formstack.php:1638, ../includes/Elements/Info_Box.php:1479, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Timeline.php:304, ../includes/Elements/Product_Grid.php:2776, ../includes/Elements/Product_Grid.php:3131, ../includes/Elements/Progress_Bar.php:797, ../includes/Elements/Twitter_Feed.php:871, ../includes/Elements/Woo_Checkout.php:2600, ../includes/Elements/Woo_Checkout.php:2700, ../includes/Elements/Woo_Product_Carousel.php:1678, ../includes/Elements/Woo_Product_Carousel.php:2044, ../includes/Elements/Woo_Product_Gallery.php:1994, ../includes/Elements/Woo_Product_Gallery.php:2389, ../includes/Elements/Woo_Product_List.php:3244, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249 msgid "Title Color" msgstr "" -#: ../includes/Elements/Creative_Button.php:73 +#: ../includes/Elements/Creative_Button.php:77 msgid "Button Content" msgstr "" -#: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:423 +#: ../includes/Elements/Creative_Button.php:91, ../includes/Elements/Info_Box.php:427 msgid "Enter button text" msgstr "" -#: ../includes/Elements/Creative_Button.php:88, ../includes/Elements/Info_Box.php:424 +#: ../includes/Elements/Creative_Button.php:92, ../includes/Elements/Info_Box.php:428 msgid "Enter button text here" msgstr "" -#: ../includes/Elements/Creative_Button.php:98 +#: ../includes/Elements/Creative_Button.php:102 msgid "Button Secondary Text" msgstr "" -#: ../includes/Elements/Creative_Button.php:105 +#: ../includes/Elements/Creative_Button.php:109 msgid "Enter button secondary text" msgstr "" -#: ../includes/Elements/Creative_Button.php:106 +#: ../includes/Elements/Creative_Button.php:110 msgid "Enter button secondary text here" msgstr "" -#: ../includes/Elements/Creative_Button.php:116, ../includes/Elements/Info_Box.php:437 +#: ../includes/Elements/Creative_Button.php:120, ../includes/Elements/Info_Box.php:441 msgid "Link URL" msgstr "" -#: ../includes/Elements/Creative_Button.php:166, ../includes/Elements/Filterable_Gallery.php:3030, ../includes/Elements/Info_Box.php:485, ../includes/Elements/NFT_Gallery.php:2216, ../includes/Elements/Pricing_Table.php:598, ../includes/Elements/Twitter_Feed.php:1369 +#: ../includes/Elements/Creative_Button.php:170, ../includes/Elements/Filterable_Gallery.php:3034, ../includes/Elements/Info_Box.php:489, ../includes/Elements/NFT_Gallery.php:2216, ../includes/Elements/Pricing_Table.php:602, ../includes/Elements/Twitter_Feed.php:1369 msgid "Icon Spacing" msgstr "" -#: ../includes/Elements/Creative_Button.php:221 +#: ../includes/Elements/Creative_Button.php:225 msgid "Button Effects & Styles" msgstr "" -#: ../includes/Elements/Creative_Button.php:229 +#: ../includes/Elements/Creative_Button.php:233 msgid "Set Button Effect" msgstr "" -#: ../includes/Elements/Creative_Button.php:234 +#: ../includes/Elements/Creative_Button.php:238 msgid "Winona" msgstr "" -#: ../includes/Elements/Creative_Button.php:235 +#: ../includes/Elements/Creative_Button.php:239 msgid "Ujarak" msgstr "" -#: ../includes/Elements/Creative_Button.php:236 +#: ../includes/Elements/Creative_Button.php:240 msgid "Wayra" msgstr "" -#: ../includes/Elements/Creative_Button.php:237 +#: ../includes/Elements/Creative_Button.php:241 msgid "Tamaya" msgstr "" -#: ../includes/Elements/Creative_Button.php:238 +#: ../includes/Elements/Creative_Button.php:242 msgid "Rayen" msgstr "" -#: ../includes/Elements/Creative_Button.php:239 +#: ../includes/Elements/Creative_Button.php:243 msgid "Pipaluk (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:240 +#: ../includes/Elements/Creative_Button.php:244 msgid "Moema (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:241 +#: ../includes/Elements/Creative_Button.php:245 msgid "Wave (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:242 +#: ../includes/Elements/Creative_Button.php:246 msgid "Aylen (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:243 +#: ../includes/Elements/Creative_Button.php:247 msgid "Saqui (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:244 +#: ../includes/Elements/Creative_Button.php:248 msgid "Wapasha (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:245 +#: ../includes/Elements/Creative_Button.php:249 msgid "Nuka (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:246 +#: ../includes/Elements/Creative_Button.php:250 msgid "Antiman (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:247 +#: ../includes/Elements/Creative_Button.php:251 msgid "Quidel (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:248 +#: ../includes/Elements/Creative_Button.php:252 msgid "Shikoba (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:256, ../includes/Elements/Cta_Box.php:864, ../includes/Elements/Product_Grid.php:1771, ../includes/Elements/Team_Member.php:753, ../includes/Elements/Testimonial.php:301, ../includes/Elements/Woo_Product_Gallery.php:1167 +#: ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Product_Grid.php:1771, ../includes/Elements/Team_Member.php:757, ../includes/Elements/Testimonial.php:305, ../includes/Elements/Woo_Product_Gallery.php:1167 msgid "Use Gradient Background" msgstr "" -#: ../includes/Elements/Creative_Button.php:537, ../includes/Elements/Info_Box.php:1218, ../includes/Elements/NFT_Gallery.php:1917 +#: ../includes/Elements/Creative_Button.php:541, ../includes/Elements/Info_Box.php:1222, ../includes/Elements/NFT_Gallery.php:1917 msgid "Button Padding" msgstr "" @@ -2477,451 +2477,451 @@ msgstr "" msgid "Call to Action" msgstr "" -#: ../includes/Elements/Cta_Box.php:85 +#: ../includes/Elements/Cta_Box.php:89 msgid "Basic" msgstr "" -#: ../includes/Elements/Cta_Box.php:86 +#: ../includes/Elements/Cta_Box.php:90 msgid "Flex Grid" msgstr "" -#: ../includes/Elements/Cta_Box.php:87 +#: ../includes/Elements/Cta_Box.php:91 msgid "Flex Grid with Icon" msgstr "" -#: ../includes/Elements/Cta_Box.php:95 +#: ../includes/Elements/Cta_Box.php:99 msgid "Content Preset" msgstr "" -#: ../includes/Elements/Cta_Box.php:132 +#: ../includes/Elements/Cta_Box.php:136 msgid "Color Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:138, ../includes/Elements/Cta_Box.php:150, ../includes/Elements/Image_Accordion.php:185 +#: ../includes/Elements/Cta_Box.php:142, ../includes/Elements/Cta_Box.php:154, ../includes/Elements/Image_Accordion.php:189 msgid "Background Image" msgstr "" -#: ../includes/Elements/Cta_Box.php:139 +#: ../includes/Elements/Cta_Box.php:143 msgid "Background Fixed Image" msgstr "" -#: ../includes/Elements/Cta_Box.php:171 +#: ../includes/Elements/Cta_Box.php:175 msgid "Background Image Options" msgstr "" -#: ../includes/Elements/Cta_Box.php:187, ../includes/Elements/Cta_Box.php:192 +#: ../includes/Elements/Cta_Box.php:191, ../includes/Elements/Cta_Box.php:196 msgid "Repeat" msgstr "" -#: ../includes/Elements/Cta_Box.php:191 +#: ../includes/Elements/Cta_Box.php:195 msgid "No Repeat" msgstr "" -#: ../includes/Elements/Cta_Box.php:193 +#: ../includes/Elements/Cta_Box.php:197 msgid "Repeat X" msgstr "" -#: ../includes/Elements/Cta_Box.php:194 +#: ../includes/Elements/Cta_Box.php:198 msgid "Repeat Y" msgstr "" -#: ../includes/Elements/Cta_Box.php:195 +#: ../includes/Elements/Cta_Box.php:199 msgid "Round" msgstr "" -#: ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2258, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Elements/Woo_Product_List.php:686, ../includes/Elements/Woo_Product_List.php:710, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Extensions/Table_of_Content.php:579, ../includes/Traits/Controls.php:695, ../includes/Traits/Controls.php:722, ../includes/Traits/Controls.php:2365, ../includes/Traits/Woo_Product_Comparable.php:1473 +#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Sticky_Video.php:120, ../includes/Elements/Woo_Product_Carousel.php:2258, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Elements/Woo_Product_List.php:686, ../includes/Elements/Woo_Product_List.php:710, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Extensions/Table_of_Content.php:579, ../includes/Traits/Controls.php:695, ../includes/Traits/Controls.php:722, ../includes/Traits/Controls.php:2365, ../includes/Traits/Woo_Product_Comparable.php:1473 msgid "Position" msgstr "" -#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Feature_List.php:352, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:488, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Tooltip.php:296, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Extensions/Table_of_Content.php:584, ../includes/Traits/Controls.php:726, ../includes/Traits/Controls.php:2493 +#: ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Feature_List.php:332, ../includes/Elements/Feature_List.php:356, ../includes/Elements/Flip_Box.php:351, ../includes/Elements/Flip_Box.php:591, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:488, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Tooltip.php:300, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Extensions/Table_of_Content.php:584, ../includes/Traits/Controls.php:726, ../includes/Traits/Controls.php:2493 msgid "Top" msgstr "" -#: ../includes/Elements/Cta_Box.php:213, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:496, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Tooltip.php:297, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Extensions/Table_of_Content.php:585, ../includes/Traits/Controls.php:734, ../includes/Traits/Controls.php:2497 +#: ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Feature_List.php:364, ../includes/Elements/Flip_Box.php:359, ../includes/Elements/Flip_Box.php:599, ../includes/Elements/Image_Accordion.php:144, ../includes/Elements/Info_Box.php:142, ../includes/Elements/Post_Timeline.php:496, ../includes/Elements/Pricing_Table.php:435, ../includes/Elements/Tooltip.php:301, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Extensions/Table_of_Content.php:585, ../includes/Traits/Controls.php:734, ../includes/Traits/Controls.php:2497 msgid "Bottom" msgstr "" -#: ../includes/Elements/Cta_Box.php:229 +#: ../includes/Elements/Cta_Box.php:233 msgid "Cover" msgstr "" -#: ../includes/Elements/Cta_Box.php:230 +#: ../includes/Elements/Cta_Box.php:234 msgid "Contain" msgstr "" -#: ../includes/Elements/Cta_Box.php:245 +#: ../includes/Elements/Cta_Box.php:249 msgid "Background Overlay" msgstr "" -#: ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Pricing_Table.php:174 +#: ../includes/Elements/Cta_Box.php:285, ../includes/Elements/Pricing_Table.php:178 msgid "Sub Title" msgstr "" -#: ../includes/Elements/Cta_Box.php:303 +#: ../includes/Elements/Cta_Box.php:307 msgid "Sample Call to Action Heading" msgstr "" -#: ../includes/Elements/Cta_Box.php:361 +#: ../includes/Elements/Cta_Box.php:365 msgid "

Add a strong one liner supporting the heading above and giving users a reason to click on the button below.

" msgstr "" -#: ../includes/Elements/Cta_Box.php:373 +#: ../includes/Elements/Cta_Box.php:377 msgid "Button Preset" msgstr "" -#: ../includes/Elements/Cta_Box.php:407 +#: ../includes/Elements/Cta_Box.php:411 msgid "Primary Button Text" msgstr "" -#: ../includes/Elements/Cta_Box.php:411 +#: ../includes/Elements/Cta_Box.php:415 msgid "Click Here" msgstr "" -#: ../includes/Elements/Cta_Box.php:421 +#: ../includes/Elements/Cta_Box.php:425 msgid "Primary Button Link" msgstr "" -#: ../includes/Elements/Cta_Box.php:438 +#: ../includes/Elements/Cta_Box.php:442 msgid "Show Secondary Button" msgstr "" -#: ../includes/Elements/Cta_Box.php:448 +#: ../includes/Elements/Cta_Box.php:452 msgid "Secondary Button Text" msgstr "" -#: ../includes/Elements/Cta_Box.php:452 +#: ../includes/Elements/Cta_Box.php:456 msgid "Click Now" msgstr "" -#: ../includes/Elements/Cta_Box.php:465 +#: ../includes/Elements/Cta_Box.php:469 msgid "Secondary Button Link" msgstr "" -#: ../includes/Elements/Cta_Box.php:518 +#: ../includes/Elements/Cta_Box.php:522 msgid "Call to Action Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:526 +#: ../includes/Elements/Cta_Box.php:530 msgid "Set max width for the container?" msgstr "" -#: ../includes/Elements/Cta_Box.php:528, ../includes/Elements/Cta_Box.php:866, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Twitter_Feed.php:310, ../includes/Elements/Twitter_Feed.php:331, ../includes/Elements/Twitter_Feed.php:343, ../includes/Elements/Twitter_Feed.php:355, ../includes/Elements/Twitter_Feed.php:383, ../includes/Elements/Twitter_Feed.php:395 +#: ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:870, ../includes/Elements/Data_Table.php:144, ../includes/Elements/Twitter_Feed.php:310, ../includes/Elements/Twitter_Feed.php:331, ../includes/Elements/Twitter_Feed.php:343, ../includes/Elements/Twitter_Feed.php:355, ../includes/Elements/Twitter_Feed.php:383, ../includes/Elements/Twitter_Feed.php:395 msgid "yes" msgstr "" -#: ../includes/Elements/Cta_Box.php:529, ../includes/Elements/Data_Table.php:141, ../includes/Elements/Twitter_Feed.php:311, ../includes/Elements/Twitter_Feed.php:332, ../includes/Elements/Twitter_Feed.php:344, ../includes/Elements/Twitter_Feed.php:356, ../includes/Elements/Twitter_Feed.php:384, ../includes/Elements/Twitter_Feed.php:396 +#: ../includes/Elements/Cta_Box.php:533, ../includes/Elements/Data_Table.php:145, ../includes/Elements/Twitter_Feed.php:311, ../includes/Elements/Twitter_Feed.php:332, ../includes/Elements/Twitter_Feed.php:344, ../includes/Elements/Twitter_Feed.php:356, ../includes/Elements/Twitter_Feed.php:384, ../includes/Elements/Twitter_Feed.php:396 msgid "no" msgstr "" -#: ../includes/Elements/Cta_Box.php:537 +#: ../includes/Elements/Cta_Box.php:541 msgid "Container Max Width (% or px)" msgstr "" -#: ../includes/Elements/Cta_Box.php:580 +#: ../includes/Elements/Cta_Box.php:584 msgid "Background Color Opacity" msgstr "" -#: ../includes/Elements/Cta_Box.php:684 +#: ../includes/Elements/Cta_Box.php:688 msgid "Color & Typography " msgstr "" -#: ../includes/Elements/Cta_Box.php:720, ../includes/Elements/Cta_Box.php:761, ../includes/Elements/Event_Calendar.php:2119, ../includes/Elements/Event_Calendar.php:2240 +#: ../includes/Elements/Cta_Box.php:724, ../includes/Elements/Cta_Box.php:765, ../includes/Elements/Event_Calendar.php:2119, ../includes/Elements/Event_Calendar.php:2240 msgid "Space" msgstr "" -#: ../includes/Elements/Cta_Box.php:732 +#: ../includes/Elements/Cta_Box.php:736 msgid "Sub Title Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:810 +#: ../includes/Elements/Cta_Box.php:814 msgid "Primary Button Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:824, ../includes/Elements/Cta_Box.php:1252, ../includes/Extensions/Table_of_Content.php:867 +#: ../includes/Elements/Cta_Box.php:828, ../includes/Elements/Cta_Box.php:1256, ../includes/Extensions/Table_of_Content.php:867 msgid "Top to Bottom" msgstr "" -#: ../includes/Elements/Cta_Box.php:825, ../includes/Elements/Cta_Box.php:1253, ../includes/Elements/Woo_Product_List.php:739 +#: ../includes/Elements/Cta_Box.php:829, ../includes/Elements/Cta_Box.php:1257, ../includes/Elements/Woo_Product_List.php:739 msgid "Left to Right" msgstr "" -#: ../includes/Elements/Cta_Box.php:1048, ../includes/Elements/Cta_Box.php:1182 +#: ../includes/Elements/Cta_Box.php:1052, ../includes/Elements/Cta_Box.php:1186 msgid "Icon Background Color" msgstr "" -#: ../includes/Elements/Cta_Box.php:1235 +#: ../includes/Elements/Cta_Box.php:1239 msgid "Secondary Button Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:1438, ../includes/Elements/Data_Table.php:1074, ../includes/Elements/Dual_Color_Header.php:393, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:942, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1075, ../includes/Elements/Info_Box.php:940 +#: ../includes/Elements/Cta_Box.php:1442, ../includes/Elements/Data_Table.php:1078, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Feature_List.php:111, ../includes/Elements/Flip_Box.php:946, ../includes/Elements/Flip_Box.php:965, ../includes/Elements/Flip_Box.php:1079, ../includes/Elements/Info_Box.php:944 msgid "Icon Style" msgstr "" -#: ../includes/Elements/Data_Table.php:85 +#: ../includes/Elements/Data_Table.php:89 msgid "Enable Table Sorting %s" msgstr "" -#: ../includes/Elements/Data_Table.php:85 +#: ../includes/Elements/Data_Table.php:89 msgid "" msgstr "" -#: ../includes/Elements/Data_Table.php:96 +#: ../includes/Elements/Data_Table.php:100 msgid "Sorting feature is available in pro version!" msgstr "" -#: ../includes/Elements/Data_Table.php:110 +#: ../includes/Elements/Data_Table.php:114 msgid "Column Name" msgstr "" -#: ../includes/Elements/Data_Table.php:111 +#: ../includes/Elements/Data_Table.php:115 msgid "Table Header" msgstr "" -#: ../includes/Elements/Data_Table.php:124 +#: ../includes/Elements/Data_Table.php:128 msgid "Column Span" msgstr "" -#: ../includes/Elements/Data_Table.php:138 +#: ../includes/Elements/Data_Table.php:142 msgid "Enable Header Icon" msgstr "" -#: ../includes/Elements/Data_Table.php:150 +#: ../includes/Elements/Data_Table.php:154 msgid "Header Icon Type" msgstr "" -#: ../includes/Elements/Data_Table.php:211 +#: ../includes/Elements/Data_Table.php:215 msgid "Image Size(px)" msgstr "" -#: ../includes/Elements/Data_Table.php:224, ../includes/Elements/Data_Table.php:431 +#: ../includes/Elements/Data_Table.php:228, ../includes/Elements/Data_Table.php:435 msgid "CSS Class" msgstr "" -#: ../includes/Elements/Data_Table.php:237, ../includes/Elements/Data_Table.php:447 +#: ../includes/Elements/Data_Table.php:241, ../includes/Elements/Data_Table.php:451 msgid "CSS ID" msgstr "" -#: ../includes/Elements/Data_Table.php:280 +#: ../includes/Elements/Data_Table.php:284 msgid "Row Type" msgstr "" -#: ../includes/Elements/Data_Table.php:285 +#: ../includes/Elements/Data_Table.php:289 msgid "Row" msgstr "" -#: ../includes/Elements/Data_Table.php:286, ../includes/Traits/Controls.php:536, ../includes/Traits/Controls.php:611 +#: ../includes/Elements/Data_Table.php:290, ../includes/Traits/Controls.php:536, ../includes/Traits/Controls.php:611 msgid "Column" msgstr "" -#: ../includes/Elements/Data_Table.php:294 +#: ../includes/Elements/Data_Table.php:298 msgid "Col Span" msgstr "" -#: ../includes/Elements/Data_Table.php:317 +#: ../includes/Elements/Data_Table.php:321 msgid "Textarea" msgstr "" -#: ../includes/Elements/Data_Table.php:321, ../includes/Elements/Login_Register.php:1647 +#: ../includes/Elements/Data_Table.php:325, ../includes/Elements/Login_Register.php:1647 msgid "Editor" msgstr "" -#: ../includes/Elements/Data_Table.php:325 +#: ../includes/Elements/Data_Table.php:329 msgid "Templates" msgstr "" -#: ../includes/Elements/Data_Table.php:339 +#: ../includes/Elements/Data_Table.php:343 msgid "Row Span" msgstr "" -#: ../includes/Elements/Data_Table.php:382, ../includes/Elements/Data_Table.php:397 +#: ../includes/Elements/Data_Table.php:386, ../includes/Elements/Data_Table.php:401 msgid "Cell Text" msgstr "" -#: ../includes/Elements/Data_Table.php:411, ../includes/Elements/Feature_List.php:208, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:658, ../includes/Elements/Flip_Box.php:683, ../includes/Elements/Interactive_Circle.php:223, ../includes/Elements/NFT_Gallery.php:1508, ../includes/Elements/NFT_Gallery.php:1761, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:176, ../includes/Elements/Sticky_Video.php:194, ../includes/Elements/Sticky_Video.php:245, ../includes/Elements/SVG_Draw.php:210, ../includes/Elements/Team_Member.php:189, ../includes/Elements/Woo_Product_List.php:423, ../includes/Extensions/Wrapper_Link.php:45 +#: ../includes/Elements/Data_Table.php:415, ../includes/Elements/Feature_List.php:212, ../includes/Elements/Filterable_Gallery.php:377, ../includes/Elements/Flip_Box.php:662, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/Interactive_Circle.php:227, ../includes/Elements/NFT_Gallery.php:1508, ../includes/Elements/NFT_Gallery.php:1761, ../includes/Elements/Sticky_Video.php:162, ../includes/Elements/Sticky_Video.php:180, ../includes/Elements/Sticky_Video.php:198, ../includes/Elements/Sticky_Video.php:249, ../includes/Elements/SVG_Draw.php:214, ../includes/Elements/Team_Member.php:193, ../includes/Elements/Woo_Product_List.php:423, ../includes/Extensions/Wrapper_Link.php:45 msgid "Link" msgstr "" -#: ../includes/Elements/Data_Table.php:600, ../includes/Elements/Facebook_Feed.php:632, ../includes/Elements/Facebook_Feed.php:830 +#: ../includes/Elements/Data_Table.php:604, ../includes/Elements/Facebook_Feed.php:632, ../includes/Elements/Facebook_Feed.php:830 msgid "Header Style" msgstr "" -#: ../includes/Elements/Data_Table.php:609 +#: ../includes/Elements/Data_Table.php:613 msgid "Header Border Radius" msgstr "" -#: ../includes/Elements/Data_Table.php:776, ../includes/Elements/Filterable_Gallery.php:2415 +#: ../includes/Elements/Data_Table.php:780, ../includes/Elements/Filterable_Gallery.php:2419 msgid "Icon Space" msgstr "" -#: ../includes/Elements/Data_Table.php:794, ../includes/Elements/Post_Grid.php:637, ../includes/Elements/Post_Timeline.php:318 +#: ../includes/Elements/Data_Table.php:798, ../includes/Elements/Post_Grid.php:637, ../includes/Elements/Post_Timeline.php:318 msgid "Title Alignment" msgstr "" -#: ../includes/Elements/Data_Table.php:838 +#: ../includes/Elements/Data_Table.php:842 msgid "ODD Cell" msgstr "" -#: ../includes/Elements/Data_Table.php:846, ../includes/Elements/Data_Table.php:929 +#: ../includes/Elements/Data_Table.php:850, ../includes/Elements/Data_Table.php:933 msgid "Color ( Odd Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:858, ../includes/Elements/Data_Table.php:940 +#: ../includes/Elements/Data_Table.php:862, ../includes/Elements/Data_Table.php:944 msgid "Background ( Odd Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:870, ../includes/Elements/Data_Table.php:951 +#: ../includes/Elements/Data_Table.php:874, ../includes/Elements/Data_Table.php:955 msgid "Even Cell" msgstr "" -#: ../includes/Elements/Data_Table.php:879, ../includes/Elements/Data_Table.php:959 +#: ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:963 msgid "Color ( Even Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:891, ../includes/Elements/Data_Table.php:971 +#: ../includes/Elements/Data_Table.php:895, ../includes/Elements/Data_Table.php:975 msgid "Background Color (Even Row)" msgstr "" -#: ../includes/Elements/Data_Table.php:1043, ../includes/Elements/Filterable_Gallery.php:1517, ../includes/Elements/Filterable_Gallery.php:1977, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:617, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Pricing_Table.php:864, ../includes/Elements/Tooltip.php:385 +#: ../includes/Elements/Data_Table.php:1047, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1981, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:621, ../includes/Elements/Info_Box.php:315, ../includes/Elements/Pricing_Table.php:868, ../includes/Elements/Tooltip.php:389 msgid "Content Alignment" msgstr "" -#: ../includes/Elements/Data_Table.php:1153 +#: ../includes/Elements/Data_Table.php:1157 msgid "Responsive Options" msgstr "" -#: ../includes/Elements/Data_Table.php:1162 +#: ../includes/Elements/Data_Table.php:1166 msgid "Enable Responsive Table" msgstr "" -#: ../includes/Elements/Data_Table.php:1163 +#: ../includes/Elements/Data_Table.php:1167 msgid "If enabled, table header will be automatically responsive for mobile." msgstr "" -#: ../includes/Elements/Data_Table.php:1174 +#: ../includes/Elements/Data_Table.php:1178 msgid "Custom Breakpoint" msgstr "" -#: ../includes/Elements/Data_Table.php:1178 +#: ../includes/Elements/Data_Table.php:1182 msgid "Responsive styles working till this screen size." msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:83 +#: ../includes/Elements/Dual_Color_Header.php:87 msgid "Icon on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:84 +#: ../includes/Elements/Dual_Color_Header.php:88 msgid "Icon & sub-text on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:85 +#: ../includes/Elements/Dual_Color_Header.php:89 msgid "Sub-text on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:104 +#: ../includes/Elements/Dual_Color_Header.php:108 msgid "Show Separator" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:135, ../includes/Elements/Woo_Product_Carousel.php:272, ../includes/Elements/Woo_Product_List.php:1150, ../includes/Traits/Controls.php:1169 +#: ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Woo_Product_Carousel.php:272, ../includes/Elements/Woo_Product_List.php:1150, ../includes/Traits/Controls.php:1169 msgid "Title Tag" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:155 +#: ../includes/Elements/Dual_Color_Header.php:159 msgid "Title ( First Part )" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:158 +#: ../includes/Elements/Dual_Color_Header.php:162 msgid "Dual Heading" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:169 +#: ../includes/Elements/Dual_Color_Header.php:173 msgid "Title ( Last Part )" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:172 +#: ../includes/Elements/Dual_Color_Header.php:176 msgid "Example" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:183 +#: ../includes/Elements/Dual_Color_Header.php:187 msgid "Sub Text" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:186 +#: ../includes/Elements/Dual_Color_Header.php:190 msgid "Insert a meaningful line to evaluate the headline." msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:252, ../includes/Elements/Dual_Color_Header.php:604, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Extensions/Table_of_Content.php:1248 +#: ../includes/Elements/Dual_Color_Header.php:256, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Filterable_Gallery.php:2535, ../includes/Extensions/Table_of_Content.php:1248 msgid "Separator" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:263 +#: ../includes/Elements/Dual_Color_Header.php:267 msgid "Separator Position" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:267, ../includes/Elements/Woo_Product_List.php:691, ../includes/Elements/Woo_Product_List.php:715 +#: ../includes/Elements/Dual_Color_Header.php:271, ../includes/Elements/Woo_Product_List.php:691, ../includes/Elements/Woo_Product_List.php:715 msgid "Before Title" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:268, ../includes/Elements/Woo_Product_List.php:695, ../includes/Elements/Woo_Product_List.php:719 +#: ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Woo_Product_List.php:695, ../includes/Elements/Woo_Product_List.php:719 msgid "After Title" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:275 +#: ../includes/Elements/Dual_Color_Header.php:279 msgid "Separator Type" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:279, ../includes/Elements/Post_Timeline.php:592, ../includes/Elements/Progress_Bar.php:84 +#: ../includes/Elements/Dual_Color_Header.php:283, ../includes/Elements/Post_Timeline.php:592, ../includes/Elements/Progress_Bar.php:88 msgid "Line" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:309 +#: ../includes/Elements/Dual_Color_Header.php:313 msgid "Dual Heading Style" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:464 +#: ../includes/Elements/Dual_Color_Header.php:468 msgid "Main Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:476 +#: ../includes/Elements/Dual_Color_Header.php:480 msgid "Dual Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:484, ../includes/Elements/Fancy_Text.php:364 +#: ../includes/Elements/Dual_Color_Header.php:488, ../includes/Elements/Fancy_Text.php:368 msgid "Gradient" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:496, ../includes/Elements/Fancy_Text.php:452 +#: ../includes/Elements/Dual_Color_Header.php:500, ../includes/Elements/Fancy_Text.php:456 msgid "Solid Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:511 +#: ../includes/Elements/Dual_Color_Header.php:515 msgid "First Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:523 +#: ../includes/Elements/Dual_Color_Header.php:527 msgid "Second Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:568 +#: ../includes/Elements/Dual_Color_Header.php:572 msgid "Sub-title Style " msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:661 +#: ../includes/Elements/Dual_Color_Header.php:665 msgid "Flex Start" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:669 +#: ../includes/Elements/Dual_Color_Header.php:673 msgid "Flex End" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:683 +#: ../includes/Elements/Dual_Color_Header.php:687 msgid "Distance Between Lines" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:747 +#: ../includes/Elements/Dual_Color_Header.php:751 msgid "Left Line" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:829 +#: ../includes/Elements/Dual_Color_Header.php:833 msgid "Right Line" msgstr "" @@ -3025,7 +3025,7 @@ msgstr "" msgid "Get Events" msgstr "" -#: ../includes/Elements/Event_Calendar.php:413, ../includes/Elements/Filterable_Gallery.php:408, ../includes/Elements/Filterable_Gallery.php:3235, ../includes/Elements/Woo_Product_Gallery.php:268, ../includes/Extensions/Table_of_Content.php:89, ../includes/Extensions/Table_of_Content.php:348 +#: ../includes/Elements/Event_Calendar.php:413, ../includes/Elements/Filterable_Gallery.php:412, ../includes/Elements/Filterable_Gallery.php:3239, ../includes/Elements/Woo_Product_Gallery.php:268, ../includes/Extensions/Table_of_Content.php:89, ../includes/Extensions/Table_of_Content.php:348 msgid "All" msgstr "" @@ -3069,7 +3069,7 @@ msgstr "" msgid "Custom Date" msgstr "" -#: ../includes/Elements/Event_Calendar.php:591, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Filterable_Gallery.php:210, ../includes/Elements/Filterable_Gallery.php:481, ../includes/Elements/Woo_Cart.php:385, ../includes/Elements/Woo_Cart.php:393, ../includes/Traits/Controls.php:1618 +#: ../includes/Elements/Event_Calendar.php:591, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Filterable_Gallery.php:214, ../includes/Elements/Filterable_Gallery.php:485, ../includes/Elements/Woo_Cart.php:385, ../includes/Elements/Woo_Cart.php:393, ../includes/Traits/Controls.php:1618 msgid "" msgstr "" @@ -3321,7 +3321,7 @@ msgstr "" msgid "Date Icon" msgstr "" -#: ../includes/Elements/Event_Calendar.php:2822, ../includes/Elements/Info_Box.php:1487, ../includes/Elements/Product_Grid.php:2849, ../includes/Elements/Product_Grid.php:3142, ../includes/Elements/Twitter_Feed.php:881, ../includes/Elements/Woo_Product_Carousel.php:1750, ../includes/Elements/Woo_Product_Carousel.php:2054, ../includes/Elements/Woo_Product_Gallery.php:2066, ../includes/Elements/Woo_Product_Gallery.php:2400, ../includes/Elements/Woo_Product_List.php:3255 +#: ../includes/Elements/Event_Calendar.php:2822, ../includes/Elements/Info_Box.php:1491, ../includes/Elements/Product_Grid.php:2849, ../includes/Elements/Product_Grid.php:3142, ../includes/Elements/Twitter_Feed.php:881, ../includes/Elements/Woo_Product_Carousel.php:1750, ../includes/Elements/Woo_Product_Carousel.php:2054, ../includes/Elements/Woo_Product_Gallery.php:2066, ../includes/Elements/Woo_Product_Gallery.php:2400, ../includes/Elements/Woo_Product_List.php:3255 msgid "Content Color" msgstr "" @@ -3413,15 +3413,15 @@ msgstr "" msgid "Layout Settings" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:262, ../includes/Elements/Filterable_Gallery.php:186, ../includes/Template/Post-Timeline/card.php:4 +#: ../includes/Elements/Facebook_Feed.php:262, ../includes/Elements/Filterable_Gallery.php:190, ../includes/Template/Post-Timeline/card.php:4 msgid "Card" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:263, ../includes/Elements/Filterable_Gallery.php:185, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:653 +#: ../includes/Elements/Facebook_Feed.php:263, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:653 msgid "Overlay" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:280, ../includes/Elements/Filterable_Gallery.php:718, ../includes/Elements/NFT_Gallery.php:278, ../includes/Elements/Product_Grid.php:350, ../includes/Elements/Testimonial.php:208, ../includes/Elements/Woo_Product_Carousel.php:543, ../includes/Elements/Woo_Product_Gallery.php:375, ../includes/Traits/Controls.php:621 +#: ../includes/Elements/Facebook_Feed.php:280, ../includes/Elements/Filterable_Gallery.php:722, ../includes/Elements/NFT_Gallery.php:278, ../includes/Elements/Product_Grid.php:350, ../includes/Elements/Testimonial.php:212, ../includes/Elements/Woo_Product_Carousel.php:543, ../includes/Elements/Woo_Product_Gallery.php:375, ../includes/Traits/Controls.php:621 msgid "5" msgstr "" @@ -3481,7 +3481,7 @@ msgstr "" msgid "Show Load More" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:486, ../includes/Elements/Filterable_Gallery.php:904, ../includes/Elements/NFT_Gallery.php:649, ../includes/Elements/Product_Grid.php:864, ../includes/Elements/Product_Grid.php:895, ../includes/Elements/Product_Grid.php:935, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Woo_Product_Gallery.php:645, ../includes/Elements/Woo_Product_Gallery.php:651, ../includes/Elements/Woo_Product_Gallery.php:691, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:1247, ../includes/Elements/Woo_Product_List.php:1257, ../includes/Traits/Controls.php:784, ../includes/Traits/Controls.php:830, ../includes/Traits/Controls.php:2166 +#: ../includes/Elements/Facebook_Feed.php:486, ../includes/Elements/Filterable_Gallery.php:908, ../includes/Elements/NFT_Gallery.php:649, ../includes/Elements/Product_Grid.php:864, ../includes/Elements/Product_Grid.php:895, ../includes/Elements/Product_Grid.php:935, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Woo_Product_Gallery.php:645, ../includes/Elements/Woo_Product_Gallery.php:651, ../includes/Elements/Woo_Product_Gallery.php:691, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:1247, ../includes/Elements/Woo_Product_List.php:1257, ../includes/Traits/Controls.php:784, ../includes/Traits/Controls.php:830, ../includes/Traits/Controls.php:2166 msgid "Load More" msgstr "" @@ -3541,819 +3541,819 @@ msgstr "" msgid "Likes & Comments" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:1244, ../includes/Elements/Image_Accordion.php:400, ../includes/Elements/NFT_Gallery.php:942, ../includes/Elements/Post_Timeline.php:139, ../includes/Elements/Team_Member.php:377, ../includes/Elements/Woo_Product_Carousel.php:1040 +#: ../includes/Elements/Facebook_Feed.php:1244, ../includes/Elements/Image_Accordion.php:404, ../includes/Elements/NFT_Gallery.php:942, ../includes/Elements/Post_Timeline.php:139, ../includes/Elements/Team_Member.php:381, ../includes/Elements/Woo_Product_Carousel.php:1040 msgid "Overlay Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:78 +#: ../includes/Elements/Fancy_Text.php:82 msgid "Prefix Text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:79 +#: ../includes/Elements/Fancy_Text.php:83 msgid "Place your prefix text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:81 +#: ../includes/Elements/Fancy_Text.php:85 msgid "This is the " msgstr "" -#: ../includes/Elements/Fancy_Text.php:94 +#: ../includes/Elements/Fancy_Text.php:98 msgid "Fancy String" msgstr "" -#: ../includes/Elements/Fancy_Text.php:107 +#: ../includes/Elements/Fancy_Text.php:111 msgid "Fancy Text Strings" msgstr "" -#: ../includes/Elements/Fancy_Text.php:114 +#: ../includes/Elements/Fancy_Text.php:118 msgid "First string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:117 +#: ../includes/Elements/Fancy_Text.php:121 msgid "Second string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:120 +#: ../includes/Elements/Fancy_Text.php:124 msgid "Third string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:129 +#: ../includes/Elements/Fancy_Text.php:133 msgid "Suffix Text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:130 +#: ../includes/Elements/Fancy_Text.php:134 msgid "Place your suffix text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:132 +#: ../includes/Elements/Fancy_Text.php:136 msgid " of the sentence." msgstr "" -#: ../includes/Elements/Fancy_Text.php:146 +#: ../includes/Elements/Fancy_Text.php:150 msgid "Fancy Text Settings" msgstr "" -#: ../includes/Elements/Fancy_Text.php:154, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Woo_Cart.php:149 +#: ../includes/Elements/Fancy_Text.php:158, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Woo_Cart.php:149 msgid "Style 1" msgstr "" -#: ../includes/Elements/Fancy_Text.php:155 +#: ../includes/Elements/Fancy_Text.php:159 msgid "Style 2 (Pro)" msgstr "" -#: ../includes/Elements/Fancy_Text.php:164 +#: ../includes/Elements/Fancy_Text.php:168 msgid "Style Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Pricing_Table.php:111, ../includes/Elements/Team_Member.php:321 +#: ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Pricing_Table.php:115, ../includes/Elements/Team_Member.php:325 msgid "Only available in pro version!" msgstr "" -#: ../includes/Elements/Fancy_Text.php:211 +#: ../includes/Elements/Fancy_Text.php:215 msgid "Animation Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:215 +#: ../includes/Elements/Fancy_Text.php:219 msgid "Typing" msgstr "" -#: ../includes/Elements/Fancy_Text.php:217 +#: ../includes/Elements/Fancy_Text.php:221 msgid "Fade Up" msgstr "" -#: ../includes/Elements/Fancy_Text.php:218 +#: ../includes/Elements/Fancy_Text.php:222 msgid "Fade Down" msgstr "" -#: ../includes/Elements/Fancy_Text.php:219 +#: ../includes/Elements/Fancy_Text.php:223 msgid "Fade Left" msgstr "" -#: ../includes/Elements/Fancy_Text.php:220 +#: ../includes/Elements/Fancy_Text.php:224 msgid "Fade Right" msgstr "" -#: ../includes/Elements/Fancy_Text.php:221 +#: ../includes/Elements/Fancy_Text.php:225 msgid "Zoom" msgstr "" -#: ../includes/Elements/Fancy_Text.php:222 +#: ../includes/Elements/Fancy_Text.php:226 msgid "Bounce" msgstr "" -#: ../includes/Elements/Fancy_Text.php:223, ../includes/Elements/Pricing_Table.php:466 +#: ../includes/Elements/Fancy_Text.php:227, ../includes/Elements/Pricing_Table.php:470 msgid "Swing" msgstr "" -#: ../includes/Elements/Fancy_Text.php:232 +#: ../includes/Elements/Fancy_Text.php:236 msgid "Typing Speed" msgstr "" -#: ../includes/Elements/Fancy_Text.php:244 +#: ../includes/Elements/Fancy_Text.php:248 msgid "Delay on Change" msgstr "" -#: ../includes/Elements/Fancy_Text.php:253 +#: ../includes/Elements/Fancy_Text.php:257 msgid "Loop the animation" msgstr "" -#: ../includes/Elements/Fancy_Text.php:263 +#: ../includes/Elements/Fancy_Text.php:267 msgid "Display Type Cursor" msgstr "" -#: ../includes/Elements/Fancy_Text.php:308 +#: ../includes/Elements/Fancy_Text.php:312 msgid "Prefix Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:316 +#: ../includes/Elements/Fancy_Text.php:320 msgid "Prefix Text Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:348 +#: ../includes/Elements/Fancy_Text.php:352 msgid "Fancy Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:356 +#: ../includes/Elements/Fancy_Text.php:360 msgid "Choose Background Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:482 +#: ../includes/Elements/Fancy_Text.php:486 msgid "Typing Cursor Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:553 +#: ../includes/Elements/Fancy_Text.php:557 msgid "Suffix Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:561 +#: ../includes/Elements/Fancy_Text.php:565 msgid "Suffix Text Color" msgstr "" -#: ../includes/Elements/Feature_List.php:109, ../includes/Elements/Product_Grid.php:396, ../includes/Elements/Woo_Product_Gallery.php:388 +#: ../includes/Elements/Feature_List.php:113, ../includes/Elements/Product_Grid.php:396, ../includes/Elements/Woo_Product_Gallery.php:388 msgid "ON" msgstr "" -#: ../includes/Elements/Feature_List.php:110, ../includes/Elements/Product_Grid.php:397, ../includes/Elements/Woo_Product_Gallery.php:389 +#: ../includes/Elements/Feature_List.php:114, ../includes/Elements/Product_Grid.php:397, ../includes/Elements/Woo_Product_Gallery.php:389 msgid "OFF" msgstr "" -#: ../includes/Elements/Feature_List.php:138 +#: ../includes/Elements/Feature_List.php:142 msgid "Icon Background" msgstr "" -#: ../includes/Elements/Feature_List.php:152 +#: ../includes/Elements/Feature_List.php:156 msgid "Icon Box Background" msgstr "" -#: ../includes/Elements/Feature_List.php:211, ../includes/Elements/SVG_Draw.php:212 +#: ../includes/Elements/Feature_List.php:215, ../includes/Elements/SVG_Draw.php:216 msgid "https://your-link.com" msgstr "" -#: ../includes/Elements/Feature_List.php:219 +#: ../includes/Elements/Feature_List.php:223 msgid "Feature Item" msgstr "" -#: ../includes/Elements/Feature_List.php:228 +#: ../includes/Elements/Feature_List.php:232 msgid "Feature Item 1" msgstr "" -#: ../includes/Elements/Feature_List.php:229, ../includes/Elements/Feature_List.php:237, ../includes/Elements/Feature_List.php:245 +#: ../includes/Elements/Feature_List.php:233, ../includes/Elements/Feature_List.php:241, ../includes/Elements/Feature_List.php:249 msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna" msgstr "" -#: ../includes/Elements/Feature_List.php:236 +#: ../includes/Elements/Feature_List.php:240 msgid "Feature Item 2" msgstr "" -#: ../includes/Elements/Feature_List.php:244 +#: ../includes/Elements/Feature_List.php:248 msgid "Feature Item 3" msgstr "" -#: ../includes/Elements/Feature_List.php:291 +#: ../includes/Elements/Feature_List.php:295 msgid "Icon Shape" msgstr "" -#: ../includes/Elements/Feature_List.php:296, ../includes/Elements/Flip_Box.php:897, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:653, ../includes/Elements/Info_Box.php:821, ../includes/Elements/Info_Box.php:901, ../includes/Elements/Info_Box.php:1039, ../includes/Elements/Info_Box.php:1135, ../includes/Elements/Progress_Bar.php:86 +#: ../includes/Elements/Feature_List.php:300, ../includes/Elements/Flip_Box.php:901, ../includes/Elements/Info_Box.php:602, ../includes/Elements/Info_Box.php:657, ../includes/Elements/Info_Box.php:825, ../includes/Elements/Info_Box.php:905, ../includes/Elements/Info_Box.php:1043, ../includes/Elements/Info_Box.php:1139, ../includes/Elements/Progress_Bar.php:90 msgid "Circle" msgstr "" -#: ../includes/Elements/Feature_List.php:297, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:652, ../includes/Elements/Info_Box.php:823, ../includes/Elements/Info_Box.php:903, ../includes/Elements/Info_Box.php:1041, ../includes/Elements/Info_Box.php:1137 +#: ../includes/Elements/Feature_List.php:301, ../includes/Elements/Info_Box.php:601, ../includes/Elements/Info_Box.php:656, ../includes/Elements/Info_Box.php:827, ../includes/Elements/Info_Box.php:907, ../includes/Elements/Info_Box.php:1045, ../includes/Elements/Info_Box.php:1141 msgid "Square" msgstr "" -#: ../includes/Elements/Feature_List.php:298 +#: ../includes/Elements/Feature_List.php:302 msgid "Rhombus" msgstr "" -#: ../includes/Elements/Feature_List.php:306 +#: ../includes/Elements/Feature_List.php:310 msgid "Shape View" msgstr "" -#: ../includes/Elements/Feature_List.php:311 +#: ../includes/Elements/Feature_List.php:315 msgid "Framed" msgstr "" -#: ../includes/Elements/Feature_List.php:348 +#: ../includes/Elements/Feature_List.php:352 msgid "Icon Vertical Position" msgstr "" -#: ../includes/Elements/Feature_List.php:356, ../includes/Elements/Flip_Box.php:351, ../includes/Elements/Flip_Box.php:591, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Post_Timeline.php:492, ../includes/Elements/Twitter_Feed.php:649, ../includes/Traits/Controls.php:730 +#: ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:492, ../includes/Elements/Twitter_Feed.php:649, ../includes/Traits/Controls.php:730 msgid "Middle" msgstr "" -#: ../includes/Elements/Feature_List.php:379 +#: ../includes/Elements/Feature_List.php:383 msgid "Arrow Indicator Position" msgstr "" -#: ../includes/Elements/Feature_List.php:410 +#: ../includes/Elements/Feature_List.php:414 msgid "Show Connector" msgstr "" -#: ../includes/Elements/Feature_List.php:441 +#: ../includes/Elements/Feature_List.php:445 msgid "Item Width" msgstr "" -#: ../includes/Elements/Feature_List.php:470, ../includes/Elements/Login_Register.php:4930, ../includes/Elements/Login_Register.php:5258, ../includes/Elements/Woo_Product_Gallery.php:1643 +#: ../includes/Elements/Feature_List.php:474, ../includes/Elements/Login_Register.php:4930, ../includes/Elements/Login_Register.php:5258, ../includes/Elements/Woo_Product_Gallery.php:1643 msgid "Space Between" msgstr "" -#: ../includes/Elements/Feature_List.php:493 +#: ../includes/Elements/Feature_List.php:497 msgid "Connector Type" msgstr "" -#: ../includes/Elements/Feature_List.php:498, ../includes/Elements/Testimonial.php:267 +#: ../includes/Elements/Feature_List.php:502, ../includes/Elements/Testimonial.php:271 msgid "Classic" msgstr "" -#: ../includes/Elements/Feature_List.php:499 +#: ../includes/Elements/Feature_List.php:503 msgid "Modern" msgstr "" -#: ../includes/Elements/Feature_List.php:512 +#: ../includes/Elements/Feature_List.php:516 msgid "Connector Styles" msgstr "" -#: ../includes/Elements/Feature_List.php:518, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/Sticky_Video.php:602, ../includes/Extensions/Table_of_Content.php:1262 +#: ../includes/Elements/Feature_List.php:522, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/Sticky_Video.php:606, ../includes/Extensions/Table_of_Content.php:1262 msgid "Dashed" msgstr "" -#: ../includes/Elements/Feature_List.php:534 +#: ../includes/Elements/Feature_List.php:538 msgid "Connector Color" msgstr "" -#: ../includes/Elements/Feature_List.php:553 +#: ../includes/Elements/Feature_List.php:557 msgid "Connector Width" msgstr "" -#: ../includes/Elements/Feature_List.php:610, ../includes/Elements/Woo_Cart.php:1439, ../includes/Elements/Woo_Cart.php:1656 +#: ../includes/Elements/Feature_List.php:614, ../includes/Elements/Woo_Cart.php:1439, ../includes/Elements/Woo_Cart.php:1656 msgid "Secondary Color" msgstr "" -#: ../includes/Elements/Feature_List.php:828 +#: ../includes/Elements/Feature_List.php:832 msgid "Title Bottom Space" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:97, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:79, ../includes/Traits/Core.php:44 +#: ../includes/Elements/Filterable_Gallery.php:101, ../includes/Elements/Flip_Box.php:81, ../includes/Elements/Pricing_Table.php:83, ../includes/Traits/Core.php:44 msgid "Settings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:104 +#: ../includes/Elements/Filterable_Gallery.php:108 msgid "Items to show" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:118 +#: ../includes/Elements/Filterable_Gallery.php:122 msgid "Animation Duration (ms)" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:150 +#: ../includes/Elements/Filterable_Gallery.php:154 msgid "Grid Style" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:163, ../includes/Traits/Controls.php:909, ../includes/Traits/Controls.php:973 +#: ../includes/Elements/Filterable_Gallery.php:167, ../includes/Traits/Controls.php:909, ../includes/Traits/Controls.php:973 msgid "Image Height" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:187 +#: ../includes/Elements/Filterable_Gallery.php:191 msgid "Search & Filter" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:195 +#: ../includes/Elements/Filterable_Gallery.php:199 msgid "Search Full Gallery ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:212 +#: ../includes/Elements/Filterable_Gallery.php:216 msgid "Enabling this will load all prior items up to the one you searched for." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:224, ../includes/Elements/Filterable_Gallery.php:227 +#: ../includes/Elements/Filterable_Gallery.php:228, ../includes/Elements/Filterable_Gallery.php:231 msgid "Not Found Text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:226 +#: ../includes/Elements/Filterable_Gallery.php:230 msgid "No Items Found" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:240 +#: ../includes/Elements/Filterable_Gallery.php:244 msgid "Hover Style" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:245 +#: ../includes/Elements/Filterable_Gallery.php:249 msgid "Slide In Up" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:246, ../includes/Elements/Flip_Box.php:95 +#: ../includes/Elements/Filterable_Gallery.php:250, ../includes/Elements/Flip_Box.php:99 msgid "Fade In" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:247 +#: ../includes/Elements/Filterable_Gallery.php:251 msgid "Zoom In " msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:258 +#: ../includes/Elements/Filterable_Gallery.php:262 msgid "Hover Transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:281 +#: ../includes/Elements/Filterable_Gallery.php:285 msgid "Link to" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:286 +#: ../includes/Elements/Filterable_Gallery.php:290 msgid "Media" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:287, ../includes/Elements/Product_Grid.php:2020, ../includes/Elements/Woo_Product_Gallery.php:1737, ../includes/Elements/Woo_Product_List.php:662, ../includes/Traits/Woo_Product_Comparable.php:879 +#: ../includes/Elements/Filterable_Gallery.php:291, ../includes/Elements/Product_Grid.php:2020, ../includes/Elements/Woo_Product_Gallery.php:1737, ../includes/Elements/Woo_Product_List.php:662, ../includes/Traits/Woo_Product_Comparable.php:879 msgid "Buttons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:298 +#: ../includes/Elements/Filterable_Gallery.php:302 msgid "Title Clickable" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:310, ../includes/Traits/Controls.php:1263 +#: ../includes/Elements/Filterable_Gallery.php:314, ../includes/Traits/Controls.php:1263 msgid "Image Clickable" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:322 +#: ../includes/Elements/Filterable_Gallery.php:326 msgid "Show Popup Caption" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:334 +#: ../includes/Elements/Filterable_Gallery.php:338 msgid "Lightbox Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:351 +#: ../includes/Elements/Filterable_Gallery.php:355 msgid "Link Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:368 +#: ../includes/Elements/Filterable_Gallery.php:372 msgid "Full Image Action" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:372 +#: ../includes/Elements/Filterable_Gallery.php:376 msgid "Lightbox" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:389 +#: ../includes/Elements/Filterable_Gallery.php:393 msgid "Filterable Controls" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:396 +#: ../includes/Elements/Filterable_Gallery.php:400 msgid "Enable Filter" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:405 +#: ../includes/Elements/Filterable_Gallery.php:409 msgid "Gallery All Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:421 +#: ../includes/Elements/Filterable_Gallery.php:425 msgid "All label icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:437, ../includes/Elements/Info_Box.php:239 +#: ../includes/Elements/Filterable_Gallery.php:441, ../includes/Elements/Info_Box.php:243 msgid "Select Title Tag" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:465, ../includes/Elements/Pricing_Table.php:342 +#: ../includes/Elements/Filterable_Gallery.php:469, ../includes/Elements/Pricing_Table.php:346 msgid "List Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:469 +#: ../includes/Elements/Filterable_Gallery.php:473 msgid "Gallery Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:477 +#: ../includes/Elements/Filterable_Gallery.php:481 msgid "Adding a custom ID will function as an anchor tag. For instance, if you input \"test\" as your custom ID, the link will change to \"https://www.example.com/#test\" and it will immediately open the corresponding tab." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:488 +#: ../includes/Elements/Filterable_Gallery.php:492 msgid "Custom Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:496 +#: ../includes/Elements/Filterable_Gallery.php:500 msgid "Item Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:528 +#: ../includes/Elements/Filterable_Gallery.php:532 msgid "Gallery Items" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:535 +#: ../includes/Elements/Filterable_Gallery.php:539 msgid "Enable Photo Gallery" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:546 +#: ../includes/Elements/Filterable_Gallery.php:550 msgid "Video Privacy Mode" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:548 +#: ../includes/Elements/Filterable_Gallery.php:552 msgid "If enabled, YouTube won't store information about visitors unless they play the video." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:558 +#: ../includes/Elements/Filterable_Gallery.php:562 msgid "Display Consent Notice" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:560 +#: ../includes/Elements/Filterable_Gallery.php:564 msgid "If enabled, The consent notice will appear before playing the video." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:568 +#: ../includes/Elements/Filterable_Gallery.php:572 msgid "Privacy Notice" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:578 +#: ../includes/Elements/Filterable_Gallery.php:582 msgid "Randomize Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:580 +#: ../includes/Elements/Filterable_Gallery.php:584 msgid "YES" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:581 +#: ../includes/Elements/Filterable_Gallery.php:585 msgid "NO" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:584 +#: ../includes/Elements/Filterable_Gallery.php:588 msgid "Items will be displayed in a random order." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:593 +#: ../includes/Elements/Filterable_Gallery.php:597 msgid "Video Gallery?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:605 +#: ../includes/Elements/Filterable_Gallery.php:609 msgid "Video Link" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:621 +#: ../includes/Elements/Filterable_Gallery.php:625 msgid "Video Layout Type" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:645 +#: ../includes/Elements/Filterable_Gallery.php:649 msgid "Control Name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:650 +#: ../includes/Elements/Filterable_Gallery.php:654 msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. Gallery Item, Gallery Item 2)" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:660 +#: ../includes/Elements/Filterable_Gallery.php:664 msgid "Item Name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:664 +#: ../includes/Elements/Filterable_Gallery.php:668 msgid "Gallery item name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:675 +#: ../includes/Elements/Filterable_Gallery.php:679 msgid "Enable Price ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:687 +#: ../includes/Elements/Filterable_Gallery.php:691 msgid "Item Price" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:690 +#: ../includes/Elements/Filterable_Gallery.php:694 msgid "$20.00" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:703 +#: ../includes/Elements/Filterable_Gallery.php:707 msgid "Enable Ratings ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:715 +#: ../includes/Elements/Filterable_Gallery.php:719 msgid "Item Ratings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:731 +#: ../includes/Elements/Filterable_Gallery.php:735 msgid "Enable Category ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:743 +#: ../includes/Elements/Filterable_Gallery.php:747 msgid "Item Category" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:746, ../includes/Traits/Admin.php:30, ../includes/Traits/Elements.php:40 +#: ../includes/Elements/Filterable_Gallery.php:750, ../includes/Traits/Admin.php:30, ../includes/Traits/Elements.php:40 msgid "Essential Addons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:759 +#: ../includes/Elements/Filterable_Gallery.php:763 msgid "Item Content" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:762 +#: ../includes/Elements/Filterable_Gallery.php:766 msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:784 +#: ../includes/Elements/Filterable_Gallery.php:788 msgid "Video play icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:801 +#: ../includes/Elements/Filterable_Gallery.php:805 msgid "Gallery Lightbox Button?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:816 +#: ../includes/Elements/Filterable_Gallery.php:820 msgid "Gallery Link Button?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:2885, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224 +#: ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:879, ../includes/Elements/Filterable_Gallery.php:2889, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224 msgid "Load More Button" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:885 +#: ../includes/Elements/Filterable_Gallery.php:889 msgid "Images Per Page" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:917, ../includes/Elements/NFT_Gallery.php:662, ../includes/Elements/Twitter_Feed.php:492 +#: ../includes/Elements/Filterable_Gallery.php:921, ../includes/Elements/NFT_Gallery.php:662, ../includes/Elements/Twitter_Feed.php:492 msgid "No More Items Text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/NFT_Gallery.php:665, ../includes/Elements/Twitter_Feed.php:495 +#: ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/NFT_Gallery.php:665, ../includes/Elements/Twitter_Feed.php:495 msgid "No more items!" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:937, ../includes/Elements/NFT_Gallery.php:682, ../includes/Elements/Twitter_Feed.php:512 +#: ../includes/Elements/Filterable_Gallery.php:941, ../includes/Elements/NFT_Gallery.php:682, ../includes/Elements/Twitter_Feed.php:512 msgid "Extra Small" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:938, ../includes/Elements/NFT_Gallery.php:683, ../includes/Elements/Twitter_Feed.php:513 +#: ../includes/Elements/Filterable_Gallery.php:942, ../includes/Elements/NFT_Gallery.php:683, ../includes/Elements/Twitter_Feed.php:513 msgid "Small" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/NFT_Gallery.php:684, ../includes/Elements/Twitter_Feed.php:514 +#: ../includes/Elements/Filterable_Gallery.php:943, ../includes/Elements/NFT_Gallery.php:684, ../includes/Elements/Twitter_Feed.php:514 msgid "Medium" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:940, ../includes/Elements/NFT_Gallery.php:685, ../includes/Elements/Twitter_Feed.php:515 +#: ../includes/Elements/Filterable_Gallery.php:944, ../includes/Elements/NFT_Gallery.php:685, ../includes/Elements/Twitter_Feed.php:515 msgid "Large" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:941, ../includes/Elements/NFT_Gallery.php:686, ../includes/Elements/Twitter_Feed.php:516 +#: ../includes/Elements/Filterable_Gallery.php:945, ../includes/Elements/NFT_Gallery.php:686, ../includes/Elements/Twitter_Feed.php:516 msgid "Extra Large" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:953, ../includes/Elements/Filterable_Gallery.php:3076, ../includes/Elements/Flip_Box.php:723, ../includes/Elements/NFT_Gallery.php:698, ../includes/Elements/NFT_Gallery.php:2262, ../includes/Elements/Pricing_Table.php:569, ../includes/Elements/Twitter_Feed.php:528, ../includes/Elements/Twitter_Feed.php:1415, ../includes/Elements/Woo_Cart.php:1066 +#: ../includes/Elements/Filterable_Gallery.php:957, ../includes/Elements/Filterable_Gallery.php:3080, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/NFT_Gallery.php:698, ../includes/Elements/NFT_Gallery.php:2262, ../includes/Elements/Pricing_Table.php:573, ../includes/Elements/Twitter_Feed.php:528, ../includes/Elements/Twitter_Feed.php:1415, ../includes/Elements/Woo_Cart.php:1066 msgid "Button Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1131 +#: ../includes/Elements/Filterable_Gallery.php:1135 msgid "Control" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1390, ../includes/Elements/Filterable_Gallery.php:1586 +#: ../includes/Elements/Filterable_Gallery.php:1394, ../includes/Elements/Filterable_Gallery.php:1590 msgid "Mouseover Effect" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1596 +#: ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1600 msgid "These controls will be in effect when the mouse hovers over the items." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1431, ../includes/Elements/Filterable_Gallery.php:1870, ../includes/Elements/Login_Register.php:3515, ../includes/Elements/Post_Timeline.php:344 +#: ../includes/Elements/Filterable_Gallery.php:1435, ../includes/Elements/Filterable_Gallery.php:1874, ../includes/Elements/Login_Register.php:3515, ../includes/Elements/Post_Timeline.php:344 msgid "Title Typography" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1471, ../includes/Elements/Filterable_Gallery.php:1930 +#: ../includes/Elements/Filterable_Gallery.php:1475, ../includes/Elements/Filterable_Gallery.php:1934 msgid "Content Typography" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1546, ../includes/Elements/Image_Accordion.php:432, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Product_Gallery.php:1605 +#: ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Image_Accordion.php:436, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Product_Gallery.php:1605 msgid "Thumbnail" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1622, ../includes/Elements/Sticky_Video.php:136 +#: ../includes/Elements/Filterable_Gallery.php:1626, ../includes/Elements/Sticky_Video.php:140 msgid "Video" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1633 +#: ../includes/Elements/Filterable_Gallery.php:1637 msgid "Mouseover Effects" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1653 +#: ../includes/Elements/Filterable_Gallery.php:1657 msgid "Background transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1673 +#: ../includes/Elements/Filterable_Gallery.php:1677 msgid "Icon size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1696 +#: ../includes/Elements/Filterable_Gallery.php:1700 msgid "Hover icon scale" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1711 +#: ../includes/Elements/Filterable_Gallery.php:1715 msgid "Icon transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1731 +#: ../includes/Elements/Filterable_Gallery.php:1735 msgid "Custom Width" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1745 +#: ../includes/Elements/Filterable_Gallery.php:1749 msgid "Video Content Width" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1798 +#: ../includes/Elements/Filterable_Gallery.php:1802 msgid "Item Card" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2010 +#: ../includes/Elements/Filterable_Gallery.php:2014 msgid "Icons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2101 +#: ../includes/Elements/Filterable_Gallery.php:2105 msgid "Icon Font Size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2277 +#: ../includes/Elements/Filterable_Gallery.php:2281 msgid "Ratings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2324, ../includes/Elements/Woo_Product_Carousel.php:384, ../includes/Elements/Woo_Product_List.php:327, ../includes/Elements/Woo_Product_List.php:2316, ../includes/Traits/Controls.php:1583 +#: ../includes/Elements/Filterable_Gallery.php:2328, ../includes/Elements/Woo_Product_Carousel.php:384, ../includes/Elements/Woo_Product_List.php:327, ../includes/Elements/Woo_Product_List.php:2316, ../includes/Traits/Controls.php:1583 msgid "Category" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2383 +#: ../includes/Elements/Filterable_Gallery.php:2387 msgid "Search Form" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2394, ../includes/Elements/Login_Register.php:411, ../includes/Elements/Login_Register.php:646 +#: ../includes/Elements/Filterable_Gallery.php:2398, ../includes/Elements/Login_Register.php:411, ../includes/Elements/Login_Register.php:646 msgid "Controls" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2488 +#: ../includes/Elements/Filterable_Gallery.php:2492 msgid "Controls Background" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2540 +#: ../includes/Elements/Filterable_Gallery.php:2544 msgid "Separator Size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2571, ../includes/Elements/Login_Register.php:2732, ../includes/Elements/Woo_Checkout.php:1579, ../includes/Elements/Woo_Checkout.php:1976 +#: ../includes/Elements/Filterable_Gallery.php:2575, ../includes/Elements/Login_Register.php:2732, ../includes/Elements/Woo_Checkout.php:1579, ../includes/Elements/Woo_Checkout.php:1976 msgid "Form" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2593 +#: ../includes/Elements/Filterable_Gallery.php:2597 msgid "Search Gallery Item..." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2603, ../includes/Elements/Login_Register.php:3743, ../includes/Elements/Login_Register.php:3781, ../includes/Elements/Woo_Cart.php:1807 +#: ../includes/Elements/Filterable_Gallery.php:2607, ../includes/Elements/Login_Register.php:3743, ../includes/Elements/Login_Register.php:3781, ../includes/Elements/Woo_Cart.php:1807 msgid "Placeholder Color" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2659 +#: ../includes/Elements/Filterable_Gallery.php:2663 msgid "Dropdown" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2755 +#: ../includes/Elements/Filterable_Gallery.php:2759 msgid "Not found text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2897, ../includes/Elements/NFT_Gallery.php:2083, ../includes/Elements/Product_Grid.php:2340, ../includes/Elements/Product_Grid.php:2540, ../includes/Elements/Twitter_Feed.php:1236, ../includes/Elements/Woo_Checkout.php:973, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1422, ../includes/Elements/Woo_Checkout.php:3072, ../includes/Elements/Woo_Product_Carousel.php:1584 +#: ../includes/Elements/Filterable_Gallery.php:2901, ../includes/Elements/NFT_Gallery.php:2083, ../includes/Elements/Product_Grid.php:2340, ../includes/Elements/Product_Grid.php:2540, ../includes/Elements/Twitter_Feed.php:1236, ../includes/Elements/Woo_Checkout.php:973, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1422, ../includes/Elements/Woo_Checkout.php:3072, ../includes/Elements/Woo_Product_Carousel.php:1584 msgid "Top Spacing" msgstr "" -#: ../includes/Elements/Flip_Box.php:84 +#: ../includes/Elements/Flip_Box.php:88 msgid "Flipbox Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:89 +#: ../includes/Elements/Flip_Box.php:93 msgid "Flip Left" msgstr "" -#: ../includes/Elements/Flip_Box.php:90 +#: ../includes/Elements/Flip_Box.php:94 msgid "Flip Right" msgstr "" -#: ../includes/Elements/Flip_Box.php:91 +#: ../includes/Elements/Flip_Box.php:95 msgid "Flip Top" msgstr "" -#: ../includes/Elements/Flip_Box.php:92 +#: ../includes/Elements/Flip_Box.php:96 msgid "Flip Bottom" msgstr "" -#: ../includes/Elements/Flip_Box.php:93 +#: ../includes/Elements/Flip_Box.php:97 msgid "Zoom In" msgstr "" -#: ../includes/Elements/Flip_Box.php:94 +#: ../includes/Elements/Flip_Box.php:98 msgid "Zoom Out" msgstr "" -#: ../includes/Elements/Flip_Box.php:102 +#: ../includes/Elements/Flip_Box.php:106 msgid "3D Depth" msgstr "" -#: ../includes/Elements/Flip_Box.php:166, ../includes/Elements/Flip_Box.php:952, ../includes/Elements/Flip_Box.php:1197 +#: ../includes/Elements/Flip_Box.php:170, ../includes/Elements/Flip_Box.php:956, ../includes/Elements/Flip_Box.php:1201 msgid "Front" msgstr "" -#: ../includes/Elements/Flip_Box.php:218, ../includes/Elements/Flip_Box.php:458 +#: ../includes/Elements/Flip_Box.php:222, ../includes/Elements/Flip_Box.php:462 msgid "Flipbox Image" msgstr "" -#: ../includes/Elements/Flip_Box.php:251, ../includes/Elements/Flip_Box.php:491, ../includes/Elements/Info_Box.php:670 +#: ../includes/Elements/Flip_Box.php:255, ../includes/Elements/Flip_Box.php:495, ../includes/Elements/Info_Box.php:674 msgid "Image Resizer" msgstr "" -#: ../includes/Elements/Flip_Box.php:285, ../includes/Elements/Flip_Box.php:291 +#: ../includes/Elements/Flip_Box.php:289, ../includes/Elements/Flip_Box.php:295 msgid "Front Title" msgstr "" -#: ../includes/Elements/Flip_Box.php:304 +#: ../includes/Elements/Flip_Box.php:308 msgid "Select Front Title Tag" msgstr "" -#: ../includes/Elements/Flip_Box.php:327 +#: ../includes/Elements/Flip_Box.php:331 msgid "Front Content" msgstr "" -#: ../includes/Elements/Flip_Box.php:330 +#: ../includes/Elements/Flip_Box.php:334 msgid "

This is front side content.

" msgstr "" -#: ../includes/Elements/Flip_Box.php:343, ../includes/Elements/Flip_Box.php:583 +#: ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587 msgid "Vertical Position" msgstr "" -#: ../includes/Elements/Flip_Box.php:407, ../includes/Elements/Flip_Box.php:1066, ../includes/Elements/Flip_Box.php:1265 +#: ../includes/Elements/Flip_Box.php:411, ../includes/Elements/Flip_Box.php:1070, ../includes/Elements/Flip_Box.php:1269 msgid "Back" msgstr "" -#: ../includes/Elements/Flip_Box.php:525, ../includes/Elements/Flip_Box.php:531 +#: ../includes/Elements/Flip_Box.php:529, ../includes/Elements/Flip_Box.php:535 msgid "Back Title" msgstr "" -#: ../includes/Elements/Flip_Box.php:544 +#: ../includes/Elements/Flip_Box.php:548 msgid "Select Back Title Tag" msgstr "" -#: ../includes/Elements/Flip_Box.php:567 +#: ../includes/Elements/Flip_Box.php:571 msgid "Back Content" msgstr "" -#: ../includes/Elements/Flip_Box.php:570 +#: ../includes/Elements/Flip_Box.php:574 msgid "

This is back side content.

" msgstr "" -#: ../includes/Elements/Flip_Box.php:668 +#: ../includes/Elements/Flip_Box.php:672 msgid "Link Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:710 +#: ../includes/Elements/Flip_Box.php:714 msgid "Get Started" msgstr "" -#: ../includes/Elements/Flip_Box.php:785 +#: ../includes/Elements/Flip_Box.php:789 msgid "Filp Box Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:793, ../includes/Elements/Flip_Box.php:802 +#: ../includes/Elements/Flip_Box.php:797, ../includes/Elements/Flip_Box.php:806 msgid "Front Background Color" msgstr "" -#: ../includes/Elements/Flip_Box.php:811, ../includes/Elements/Flip_Box.php:821 +#: ../includes/Elements/Flip_Box.php:815, ../includes/Elements/Flip_Box.php:825 msgid "Back Background Color" msgstr "" -#: ../includes/Elements/Flip_Box.php:831, ../includes/Elements/Team_Member.php:447 +#: ../includes/Elements/Flip_Box.php:835, ../includes/Elements/Team_Member.php:451 msgid "Content Padding" msgstr "" -#: ../includes/Elements/Flip_Box.php:845 +#: ../includes/Elements/Flip_Box.php:849 msgid "Border Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:881, ../includes/Elements/Info_Box.php:539 +#: ../includes/Elements/Flip_Box.php:885, ../includes/Elements/Info_Box.php:543 msgid "Image Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:892 +#: ../includes/Elements/Flip_Box.php:896 msgid "Image Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:1345 +#: ../includes/Elements/Flip_Box.php:1349 msgid "Button Style" msgstr "" @@ -4477,11 +4477,11 @@ msgstr "" msgid "Section Field" msgstr "" -#: ../includes/Elements/GravityForms.php:1289, ../includes/Elements/Pricing_Table.php:825, ../includes/Elements/Pricing_Table.php:1614, ../includes/Elements/Sticky_Video.php:594 +#: ../includes/Elements/GravityForms.php:1289, ../includes/Elements/Pricing_Table.php:829, ../includes/Elements/Pricing_Table.php:1618, ../includes/Elements/Sticky_Video.php:598 msgid "Border Type" msgstr "" -#: ../includes/Elements/GravityForms.php:1295, ../includes/Elements/Sticky_Video.php:600 +#: ../includes/Elements/GravityForms.php:1295, ../includes/Elements/Sticky_Video.php:604 msgid "Double" msgstr "" @@ -4549,319 +4549,319 @@ msgstr "" msgid "Thank You Message" msgstr "" -#: ../includes/Elements/Image_Accordion.php:68 +#: ../includes/Elements/Image_Accordion.php:72 msgid "Accordion Style" msgstr "" -#: ../includes/Elements/Image_Accordion.php:73, ../includes/Elements/Woo_Product_Carousel.php:419, ../includes/Elements/Woo_Product_List.php:669 +#: ../includes/Elements/Image_Accordion.php:77, ../includes/Elements/Woo_Product_Carousel.php:419, ../includes/Elements/Woo_Product_List.php:669 msgid "On Hover" msgstr "" -#: ../includes/Elements/Image_Accordion.php:74 +#: ../includes/Elements/Image_Accordion.php:78 msgid "On Click" msgstr "" -#: ../includes/Elements/Image_Accordion.php:105, ../includes/Elements/Login_Register.php:4009, ../includes/Elements/Login_Register.php:4105, ../includes/Elements/Login_Register.php:4202, ../includes/Elements/Login_Register.php:4299 +#: ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Login_Register.php:4009, ../includes/Elements/Login_Register.php:4105, ../includes/Elements/Login_Register.php:4202, ../includes/Elements/Login_Register.php:4299 msgid "Horizontal Alignment" msgstr "" -#: ../includes/Elements/Image_Accordion.php:128, ../includes/Elements/Login_Register.php:3988, ../includes/Elements/Login_Register.php:4084, ../includes/Elements/Login_Register.php:4181, ../includes/Elements/Login_Register.php:4278 +#: ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Login_Register.php:3988, ../includes/Elements/Login_Register.php:4084, ../includes/Elements/Login_Register.php:4181, ../includes/Elements/Login_Register.php:4278 msgid "Vertical Alignment" msgstr "" -#: ../includes/Elements/Image_Accordion.php:174 +#: ../includes/Elements/Image_Accordion.php:178 msgid "Make it active?" msgstr "" -#: ../includes/Elements/Image_Accordion.php:203 +#: ../includes/Elements/Image_Accordion.php:207 msgid "Accordion item title" msgstr "" -#: ../includes/Elements/Image_Accordion.php:217 +#: ../includes/Elements/Image_Accordion.php:221 msgid "Accordion content goes here!" msgstr "" -#: ../includes/Elements/Image_Accordion.php:224 +#: ../includes/Elements/Image_Accordion.php:228 msgid "Enable Title Link" msgstr "" -#: ../includes/Elements/Image_Accordion.php:237 +#: ../includes/Elements/Image_Accordion.php:241 msgid "Title Link" msgstr "" -#: ../includes/Elements/Image_Accordion.php:259 +#: ../includes/Elements/Image_Accordion.php:263 msgid "Image Accordion #1" msgstr "" -#: ../includes/Elements/Image_Accordion.php:260, ../includes/Elements/Image_Accordion.php:267, ../includes/Elements/Image_Accordion.php:274, ../includes/Elements/Image_Accordion.php:281 +#: ../includes/Elements/Image_Accordion.php:264, ../includes/Elements/Image_Accordion.php:271, ../includes/Elements/Image_Accordion.php:278, ../includes/Elements/Image_Accordion.php:285 msgid "Image Accordion Content Goes Here! Click edit button to change this text." msgstr "" -#: ../includes/Elements/Image_Accordion.php:266 +#: ../includes/Elements/Image_Accordion.php:270 msgid "Image Accordion #2" msgstr "" -#: ../includes/Elements/Image_Accordion.php:273 +#: ../includes/Elements/Image_Accordion.php:277 msgid "Image Accordion #3" msgstr "" -#: ../includes/Elements/Image_Accordion.php:280 +#: ../includes/Elements/Image_Accordion.php:284 msgid "Image Accordion #4" msgstr "" -#: ../includes/Elements/Image_Accordion.php:412 +#: ../includes/Elements/Image_Accordion.php:416 msgid "Hover Overlay Color" msgstr "" -#: ../includes/Elements/Info_Box.php:72, ../includes/Elements/Info_Box.php:159 +#: ../includes/Elements/Info_Box.php:76, ../includes/Elements/Info_Box.php:163 msgid "Infobox Image" msgstr "" -#: ../includes/Elements/Info_Box.php:79 +#: ../includes/Elements/Info_Box.php:83 msgid "Infobox Type" msgstr "" -#: ../includes/Elements/Info_Box.php:84 +#: ../includes/Elements/Info_Box.php:88 msgid "Image/Icon On Top" msgstr "" -#: ../includes/Elements/Info_Box.php:85 +#: ../includes/Elements/Info_Box.php:89 msgid "Image/Icon On Left" msgstr "" -#: ../includes/Elements/Info_Box.php:86 +#: ../includes/Elements/Info_Box.php:90 msgid "Image/Icon On Right" msgstr "" -#: ../includes/Elements/Info_Box.php:94 +#: ../includes/Elements/Info_Box.php:98 msgid "Image or Icon" msgstr "" -#: ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:198, ../includes/Extensions/Table_of_Content.php:659 +#: ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:202, ../includes/Extensions/Table_of_Content.php:659 msgid "Number" msgstr "" -#: ../includes/Elements/Info_Box.php:218, ../includes/Elements/Info_Box.php:282 +#: ../includes/Elements/Info_Box.php:222, ../includes/Elements/Info_Box.php:286 msgid "Infobox Content" msgstr "" -#: ../includes/Elements/Info_Box.php:224 +#: ../includes/Elements/Info_Box.php:228 msgid "Infobox Title" msgstr "" -#: ../includes/Elements/Info_Box.php:230 +#: ../includes/Elements/Info_Box.php:234 msgid "This is an icon box" msgstr "" -#: ../includes/Elements/Info_Box.php:291 +#: ../includes/Elements/Info_Box.php:295 msgid "

Write a short description, that will describe the title or something informational and useful.

" msgstr "" -#: ../includes/Elements/Info_Box.php:300 +#: ../includes/Elements/Info_Box.php:304 msgid "Show Content" msgstr "" -#: ../includes/Elements/Info_Box.php:339, ../includes/Elements/Post_Grid.php:748 +#: ../includes/Elements/Info_Box.php:343, ../includes/Elements/Post_Grid.php:748 msgid "Content Height" msgstr "" -#: ../includes/Elements/Info_Box.php:369 +#: ../includes/Elements/Info_Box.php:373 msgid "Show Infobox Button" msgstr "" -#: ../includes/Elements/Info_Box.php:382 +#: ../includes/Elements/Info_Box.php:386 msgid "Infobox Clickable" msgstr "" -#: ../includes/Elements/Info_Box.php:397 +#: ../includes/Elements/Info_Box.php:401 msgid "Infobox Link" msgstr "" -#: ../includes/Elements/Info_Box.php:441 +#: ../includes/Elements/Info_Box.php:445 msgid "Enter link URL for the button" msgstr "" -#: ../includes/Elements/Info_Box.php:446 +#: ../includes/Elements/Info_Box.php:450 msgid "Enter heading for the button" msgstr "" -#: ../includes/Elements/Info_Box.php:592, ../includes/Elements/Info_Box.php:647 +#: ../includes/Elements/Info_Box.php:596, ../includes/Elements/Info_Box.php:651 msgid "Image Shape" msgstr "" -#: ../includes/Elements/Info_Box.php:630, ../includes/Elements/Info_Box.php:858, ../includes/Elements/Info_Box.php:1091, ../includes/Elements/Interactive_Circle.php:452, ../includes/Elements/Post_Grid.php:937, ../includes/Elements/Simple_Menu.php:627, ../includes/Elements/SVG_Draw.php:261 +#: ../includes/Elements/Info_Box.php:634, ../includes/Elements/Info_Box.php:862, ../includes/Elements/Info_Box.php:1095, ../includes/Elements/Interactive_Circle.php:456, ../includes/Elements/Post_Grid.php:937, ../includes/Elements/Simple_Menu.php:627, ../includes/Elements/SVG_Draw.php:265 msgid "Animation" msgstr "" -#: ../includes/Elements/Info_Box.php:723 +#: ../includes/Elements/Info_Box.php:727 msgid "Number Icon Style" msgstr "" -#: ../includes/Elements/Info_Box.php:742, ../includes/Elements/Info_Box.php:974 +#: ../includes/Elements/Info_Box.php:746, ../includes/Elements/Info_Box.php:978 msgid "Icon Background Size" msgstr "" -#: ../includes/Elements/Info_Box.php:815, ../includes/Elements/Info_Box.php:895, ../includes/Elements/Info_Box.php:1033, ../includes/Elements/Info_Box.php:1129 +#: ../includes/Elements/Info_Box.php:819, ../includes/Elements/Info_Box.php:899, ../includes/Elements/Info_Box.php:1037, ../includes/Elements/Info_Box.php:1133 msgid "Background Shape" msgstr "" -#: ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Product_Grid.php:1723 +#: ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Product_Grid.php:1723 msgid "Button Styles" msgstr "" -#: ../includes/Elements/Info_Box.php:1413 +#: ../includes/Elements/Info_Box.php:1417 msgid "Content Only Margin" msgstr "" -#: ../includes/Elements/Info_Box.php:1425 +#: ../includes/Elements/Info_Box.php:1429 msgid "Content Only Background" msgstr "" -#: ../includes/Elements/Info_Box.php:1437 +#: ../includes/Elements/Info_Box.php:1441 msgid "Content Only Padding" msgstr "" -#: ../includes/Elements/Info_Box.php:1500 +#: ../includes/Elements/Info_Box.php:1504 msgid "Transition will applied to ms (ex: 300ms)." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:69, ../includes/Elements/Simple_Menu.php:138, ../includes/Elements/Woo_Product_Carousel.php:2243, ../includes/Elements/Woo_Product_List.php:766, ../includes/Elements/Woo_Product_List.php:784, ../includes/Traits/Controls.php:471 +#: ../includes/Elements/Interactive_Circle.php:73, ../includes/Elements/Simple_Menu.php:138, ../includes/Elements/Woo_Product_Carousel.php:2243, ../includes/Elements/Woo_Product_List.php:766, ../includes/Elements/Woo_Product_List.php:784, ../includes/Traits/Controls.php:471 msgid "Preset" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:77, ../includes/Elements/Product_Grid.php:325, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Woo_Product_Carousel.php:931, ../includes/Elements/Woo_Product_Carousel.php:2249, ../includes/Elements/Woo_Product_Gallery.php:353, ../includes/Elements/Woo_Product_Gallery.php:1683, ../includes/Traits/Controls.php:478, ../includes/Template/Woo-Product-Carousel/preset-4.php:4 +#: ../includes/Elements/Interactive_Circle.php:81, ../includes/Elements/Product_Grid.php:325, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Woo_Product_Carousel.php:931, ../includes/Elements/Woo_Product_Carousel.php:2249, ../includes/Elements/Woo_Product_Gallery.php:353, ../includes/Elements/Woo_Product_Gallery.php:1683, ../includes/Traits/Controls.php:478, ../includes/Template/Woo-Product-Carousel/preset-4.php:4 msgid "Preset 4" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:104 +#: ../includes/Elements/Interactive_Circle.php:108 msgid "Show Text" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:152 +#: ../includes/Elements/Interactive_Circle.php:156 msgid "Circle Item limit max 8. If the item is more than 8 it will break the preset layout design." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:190 +#: ../includes/Elements/Interactive_Circle.php:194 msgid "Short Title" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:203 +#: ../includes/Elements/Interactive_Circle.php:207 msgid "Item Link" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:213 +#: ../includes/Elements/Interactive_Circle.php:217 msgid "To be able to view detailed content, Please go to > Additional Settings, then Mouse Event, and choose Hover" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:264, ../includes/Elements/Login_Register.php:4329, ../includes/Elements/Login_Register.php:4341, ../includes/Elements/Login_Register.php:4477, ../includes/Elements/Login_Register.php:4606, ../includes/Elements/SVG_Draw.php:358, ../includes/Extensions/Table_of_Content.php:1257 +#: ../includes/Elements/Interactive_Circle.php:268, ../includes/Elements/Login_Register.php:4329, ../includes/Elements/Login_Register.php:4341, ../includes/Elements/Login_Register.php:4477, ../includes/Elements/Login_Register.php:4606, ../includes/Elements/SVG_Draw.php:362, ../includes/Extensions/Table_of_Content.php:1257 msgid "Style" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:278 +#: ../includes/Elements/Interactive_Circle.php:282 msgid "Reload needed on first change" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:301 +#: ../includes/Elements/Interactive_Circle.php:305 msgid "Item 1" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:302 +#: ../includes/Elements/Interactive_Circle.php:306 msgid "active" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:303 +#: ../includes/Elements/Interactive_Circle.php:307 msgid "Present your content in an attractive Circle layout item 1. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:310 +#: ../includes/Elements/Interactive_Circle.php:314 msgid "Item 2" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:311 +#: ../includes/Elements/Interactive_Circle.php:315 msgid "Present your content in an attractive Circle layout item 2. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:318 +#: ../includes/Elements/Interactive_Circle.php:322 msgid "Item 3" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:319 +#: ../includes/Elements/Interactive_Circle.php:323 msgid "Present your content in an attractive Circle layout item 3. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:326 +#: ../includes/Elements/Interactive_Circle.php:330 msgid "Item 4" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:327 +#: ../includes/Elements/Interactive_Circle.php:331 msgid "Present your content in an attractive Circle layout item 4. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:334 +#: ../includes/Elements/Interactive_Circle.php:338 msgid "Item 5" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:335 +#: ../includes/Elements/Interactive_Circle.php:339 msgid "Present your content in an attractive Circle layout item 5. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:342 +#: ../includes/Elements/Interactive_Circle.php:346 msgid "Item 6" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:343 +#: ../includes/Elements/Interactive_Circle.php:347 msgid "Present your content in an attractive Circle layout item 6. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:357 +#: ../includes/Elements/Interactive_Circle.php:361 msgid "Additional Settings" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:365 +#: ../includes/Elements/Interactive_Circle.php:369 msgid "Rotate Animation" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:378 +#: ../includes/Elements/Interactive_Circle.php:382 msgid "Rotation Speed" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:405 +#: ../includes/Elements/Interactive_Circle.php:409 msgid "Pause on hover" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:418 +#: ../includes/Elements/Interactive_Circle.php:422 msgid "Mouse Event" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:423, ../includes/Elements/Pricing_Table.php:449 +#: ../includes/Elements/Interactive_Circle.php:427, ../includes/Elements/Pricing_Table.php:453 msgid "Click" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:458 +#: ../includes/Elements/Interactive_Circle.php:462 msgid "Bounce In" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:459, ../includes/Elements/Woo_Product_Carousel.php:558, ../includes/Extensions/Hover_Effect.php:433, ../includes/Extensions/Hover_Effect.php:1079 +#: ../includes/Elements/Interactive_Circle.php:463, ../includes/Elements/Woo_Product_Carousel.php:558, ../includes/Extensions/Hover_Effect.php:433, ../includes/Extensions/Hover_Effect.php:1079 msgid "Rotate" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:460 +#: ../includes/Elements/Interactive_Circle.php:464 msgid "Spinning" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:481 +#: ../includes/Elements/Interactive_Circle.php:485 msgid "Interval (Miliseconds)" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:517 +#: ../includes/Elements/Interactive_Circle.php:521 msgid "Circle Width" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:583 +#: ../includes/Elements/Interactive_Circle.php:587 msgid "Connectors" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:607 +#: ../includes/Elements/Interactive_Circle.php:611 msgid "Desktop view for mobile" msgstr "" @@ -6049,7 +6049,7 @@ msgstr "" msgid "Forgot Password" msgstr "" -#: ../includes/Elements/Login_Register.php:4581, ../includes/Elements/Pricing_Table.php:1742 +#: ../includes/Elements/Login_Register.php:4581, ../includes/Elements/Pricing_Table.php:1746 msgid "Background Hover Color" msgstr "" @@ -6109,7 +6109,7 @@ msgstr "" msgid "Theme" msgstr "" -#: ../includes/Elements/Login_Register.php:5138, ../includes/Elements/Pricing_Table.php:513 +#: ../includes/Elements/Login_Register.php:5138, ../includes/Elements/Pricing_Table.php:517 msgid "Light" msgstr "" @@ -6424,7 +6424,7 @@ msgstr "" msgid "Excerpt Alignment" msgstr "" -#: ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Tooltip.php:227, ../includes/Elements/Tooltip.php:402 +#: ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Tooltip.php:231, ../includes/Elements/Tooltip.php:406 msgid "Justified" msgstr "" @@ -6496,7 +6496,7 @@ msgstr "" msgid "Border & Arrow Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:446, ../includes/Elements/Tooltip.php:700 +#: ../includes/Elements/Post_Timeline.php:446, ../includes/Elements/Tooltip.php:704 msgid "Arrow Color" msgstr "" @@ -6548,279 +6548,279 @@ msgstr "" msgid "

No layout found!

" msgstr "" -#: ../includes/Elements/Pricing_Table.php:88 +#: ../includes/Elements/Pricing_Table.php:92 msgid "Pricing Style 2" msgstr "" -#: ../includes/Elements/Pricing_Table.php:89 +#: ../includes/Elements/Pricing_Table.php:93 msgid "Pricing Style 3 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:90 +#: ../includes/Elements/Pricing_Table.php:94 msgid "Pricing Style 4 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:91 +#: ../includes/Elements/Pricing_Table.php:95 msgid "Pricing Style 5 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:100 +#: ../includes/Elements/Pricing_Table.php:104 msgid "Pricing Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:127, ../includes/Elements/Pricing_Table.php:356, ../includes/Extensions/Table_of_Content.php:653 +#: ../includes/Elements/Pricing_Table.php:131, ../includes/Elements/Pricing_Table.php:360, ../includes/Extensions/Table_of_Content.php:653 msgid "List Icon" msgstr "" -#: ../includes/Elements/Pricing_Table.php:137 +#: ../includes/Elements/Pricing_Table.php:141 msgid "Icon Placement" msgstr "" -#: ../includes/Elements/Pricing_Table.php:160 +#: ../includes/Elements/Pricing_Table.php:164 msgid "Startup" msgstr "" -#: ../includes/Elements/Pricing_Table.php:180 +#: ../includes/Elements/Pricing_Table.php:184 msgid "A tagline here." msgstr "" -#: ../includes/Elements/Pricing_Table.php:232 +#: ../includes/Elements/Pricing_Table.php:236 msgid "99" msgstr "" -#: ../includes/Elements/Pricing_Table.php:241 +#: ../includes/Elements/Pricing_Table.php:245 msgid "On Sale?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:252, ../includes/Elements/Pricing_Table.php:1153, ../includes/Elements/Woo_Product_List.php:2520 +#: ../includes/Elements/Pricing_Table.php:256, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Woo_Product_List.php:2520 msgid "Sale Price" msgstr "" -#: ../includes/Elements/Pricing_Table.php:258 +#: ../includes/Elements/Pricing_Table.php:262 msgid "89" msgstr "" -#: ../includes/Elements/Pricing_Table.php:270 +#: ../includes/Elements/Pricing_Table.php:274 msgid "Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:274 +#: ../includes/Elements/Pricing_Table.php:278 msgid "$" msgstr "" -#: ../includes/Elements/Pricing_Table.php:284 +#: ../includes/Elements/Pricing_Table.php:288 msgid "Currency Placement" msgstr "" -#: ../includes/Elements/Pricing_Table.php:300 +#: ../includes/Elements/Pricing_Table.php:304 msgid "Price Period (per)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:304 +#: ../includes/Elements/Pricing_Table.php:308 msgid "month" msgstr "" -#: ../includes/Elements/Pricing_Table.php:314 +#: ../includes/Elements/Pricing_Table.php:318 msgid "Period Separator" msgstr "" -#: ../includes/Elements/Pricing_Table.php:318 +#: ../includes/Elements/Pricing_Table.php:322 msgid "/" msgstr "" -#: ../includes/Elements/Pricing_Table.php:333 +#: ../includes/Elements/Pricing_Table.php:337 msgid "Feature" msgstr "" -#: ../includes/Elements/Pricing_Table.php:346 +#: ../includes/Elements/Pricing_Table.php:350 msgid "Pricing table list item" msgstr "" -#: ../includes/Elements/Pricing_Table.php:369 +#: ../includes/Elements/Pricing_Table.php:373 msgid "Item Active?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:392 +#: ../includes/Elements/Pricing_Table.php:396 msgid "Enable Tooltip?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:402 +#: ../includes/Elements/Pricing_Table.php:406 msgid "Tooltip Content" msgstr "" -#: ../includes/Elements/Pricing_Table.php:405 +#: ../includes/Elements/Pricing_Table.php:409 msgid "I'm a awesome tooltip!!" msgstr "" -#: ../includes/Elements/Pricing_Table.php:415 +#: ../includes/Elements/Pricing_Table.php:419 msgid "Tooltip Side" msgstr "" -#: ../includes/Elements/Pricing_Table.php:445 +#: ../includes/Elements/Pricing_Table.php:449 msgid "Tooltip Trigger" msgstr "" -#: ../includes/Elements/Pricing_Table.php:461 +#: ../includes/Elements/Pricing_Table.php:465 msgid "Tooltip Animation" msgstr "" -#: ../includes/Elements/Pricing_Table.php:465 +#: ../includes/Elements/Pricing_Table.php:469 msgid "Grow" msgstr "" -#: ../includes/Elements/Pricing_Table.php:468 +#: ../includes/Elements/Pricing_Table.php:472 msgid "Fall" msgstr "" -#: ../includes/Elements/Pricing_Table.php:480, ../includes/Elements/Progress_Bar.php:257 +#: ../includes/Elements/Pricing_Table.php:484, ../includes/Elements/Progress_Bar.php:261 msgid "Animation Duration" msgstr "" -#: ../includes/Elements/Pricing_Table.php:495, ../includes/Elements/Pricing_Table.php:1644 +#: ../includes/Elements/Pricing_Table.php:499, ../includes/Elements/Pricing_Table.php:1648 msgid "Tooltip Arrow" msgstr "" -#: ../includes/Elements/Pricing_Table.php:508 +#: ../includes/Elements/Pricing_Table.php:512 msgid "Tooltip Theme" msgstr "" -#: ../includes/Elements/Pricing_Table.php:512 +#: ../includes/Elements/Pricing_Table.php:516 msgid "Noir" msgstr "" -#: ../includes/Elements/Pricing_Table.php:514 +#: ../includes/Elements/Pricing_Table.php:518 msgid "Punk" msgstr "" -#: ../includes/Elements/Pricing_Table.php:516 +#: ../includes/Elements/Pricing_Table.php:520 msgid "Borderless" msgstr "" -#: ../includes/Elements/Pricing_Table.php:557 +#: ../includes/Elements/Pricing_Table.php:561 msgid "Display Button" msgstr "" -#: ../includes/Elements/Pricing_Table.php:623 +#: ../includes/Elements/Pricing_Table.php:627 msgid "Choose Plan" msgstr "" -#: ../includes/Elements/Pricing_Table.php:636, ../includes/Elements/Tooltip.php:251 +#: ../includes/Elements/Pricing_Table.php:640, ../includes/Elements/Tooltip.php:255 msgid "Button Link" msgstr "" -#: ../includes/Elements/Pricing_Table.php:659, ../includes/Elements/Pricing_Table.php:1348 +#: ../includes/Elements/Pricing_Table.php:663, ../includes/Elements/Pricing_Table.php:1352 msgid "Ribbon" msgstr "" -#: ../includes/Elements/Pricing_Table.php:666 +#: ../includes/Elements/Pricing_Table.php:670 msgid "Featured?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:676 +#: ../includes/Elements/Pricing_Table.php:680 msgid "Ribbon Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:681, ../includes/Elements/Woo_Cart.php:150 +#: ../includes/Elements/Pricing_Table.php:685, ../includes/Elements/Woo_Cart.php:150 msgid "Style 2" msgstr "" -#: ../includes/Elements/Pricing_Table.php:682 +#: ../includes/Elements/Pricing_Table.php:686 msgid "Style 3" msgstr "" -#: ../includes/Elements/Pricing_Table.php:683 +#: ../includes/Elements/Pricing_Table.php:687 msgid "Style 4" msgstr "" -#: ../includes/Elements/Pricing_Table.php:697 +#: ../includes/Elements/Pricing_Table.php:701 msgid "Featured Tag Text" msgstr "" -#: ../includes/Elements/Pricing_Table.php:701 +#: ../includes/Elements/Pricing_Table.php:705 msgid "Featured" msgstr "" -#: ../includes/Elements/Pricing_Table.php:723 +#: ../includes/Elements/Pricing_Table.php:727 msgid "Ribbon Alignment" msgstr "" -#: ../includes/Elements/Pricing_Table.php:780 +#: ../includes/Elements/Pricing_Table.php:784 msgid "Pricing Table Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:966, ../includes/Elements/Pricing_Table.php:1359 +#: ../includes/Elements/Pricing_Table.php:970, ../includes/Elements/Pricing_Table.php:1363 msgid "Line Color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:989 +#: ../includes/Elements/Pricing_Table.php:993 msgid "Subtitle Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1075 +#: ../includes/Elements/Pricing_Table.php:1079 msgid "Pricing" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1083 +#: ../includes/Elements/Pricing_Table.php:1087 msgid "Original Price" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1112 +#: ../includes/Elements/Pricing_Table.php:1116 msgid "Original Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1182 +#: ../includes/Elements/Pricing_Table.php:1186 msgid "Sale Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1222 +#: ../includes/Elements/Pricing_Table.php:1226 msgid "Pricing Period" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1278 +#: ../includes/Elements/Pricing_Table.php:1282 msgid "Disable item color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1312 +#: ../includes/Elements/Pricing_Table.php:1316 msgid "SVG Icon Size" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1380, ../includes/Extensions/Table_of_Content.php:921 +#: ../includes/Elements/Pricing_Table.php:1384, ../includes/Extensions/Table_of_Content.php:921 msgid "Line Height" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1570 +#: ../includes/Elements/Pricing_Table.php:1574 msgid "Arrow Background" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1603 +#: ../includes/Elements/Pricing_Table.php:1607 msgid "Refresh your browser after saving the padding value for see changes." msgstr "" -#: ../includes/Elements/Pricing_Table.php:1653, ../includes/Elements/Tooltip.php:674 +#: ../includes/Elements/Pricing_Table.php:1657, ../includes/Elements/Tooltip.php:678 msgid "Arrow Size" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1698 +#: ../includes/Elements/Pricing_Table.php:1702 msgid "Icon Settings" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1709 +#: ../includes/Elements/Pricing_Table.php:1713 msgid "Show Background" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1779 +#: ../includes/Elements/Pricing_Table.php:1783 msgid "Icon Area Width" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1804 +#: ../includes/Elements/Pricing_Table.php:1808 msgid "Icon Area Height" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1836, ../includes/Elements/Team_Member.php:847, ../includes/Elements/Woo_Cart.php:253, ../includes/Elements/Woo_Cart.php:841 +#: ../includes/Elements/Pricing_Table.php:1840, ../includes/Elements/Team_Member.php:851, ../includes/Elements/Woo_Cart.php:253, ../includes/Elements/Woo_Cart.php:841 msgid "Icon Hover Color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1962 +#: ../includes/Elements/Pricing_Table.php:1966 msgid "Button Gradient Background" msgstr "" @@ -6872,7 +6872,7 @@ msgstr "" msgid "Layouts" msgstr "" -#: ../includes/Elements/Product_Grid.php:267, ../includes/Elements/Team_Member.php:278 +#: ../includes/Elements/Product_Grid.php:267, ../includes/Elements/Team_Member.php:282 msgid "Simple Style" msgstr "" @@ -6880,7 +6880,7 @@ msgstr "" msgid "Reveal Style" msgstr "" -#: ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Team_Member.php:279 +#: ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Team_Member.php:283 msgid "Overlay Style" msgstr "" @@ -7056,7 +7056,7 @@ msgstr "" msgid "Label Text" msgstr "" -#: ../includes/Elements/Product_Grid.php:1008, ../includes/Elements/Team_Member.php:405, ../includes/Elements/Woo_Product_Gallery.php:745 +#: ../includes/Elements/Product_Grid.php:1008, ../includes/Elements/Team_Member.php:409, ../includes/Elements/Woo_Product_Gallery.php:745 msgid "Content Background Color" msgstr "" @@ -7092,7 +7092,7 @@ msgstr "" msgid "Star Rating" msgstr "" -#: ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Testimonial.php:645, ../includes/Elements/Woo_Product_Carousel.php:1285, ../includes/Elements/Woo_Product_Gallery.php:983, ../includes/Elements/Woo_Product_List.php:2241 +#: ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Testimonial.php:649, ../includes/Elements/Woo_Product_Carousel.php:1285, ../includes/Elements/Woo_Product_Gallery.php:983, ../includes/Elements/Woo_Product_List.php:2241 msgid "Rating Color" msgstr "" @@ -7216,127 +7216,127 @@ msgstr "" msgid "Schedule" msgstr "" -#: ../includes/Elements/Progress_Bar.php:85 +#: ../includes/Elements/Progress_Bar.php:89 msgid "Line Rainbow (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:87 +#: ../includes/Elements/Progress_Bar.php:91 msgid "Circle Fill (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:88 +#: ../includes/Elements/Progress_Bar.php:92 msgid "Half Circle" msgstr "" -#: ../includes/Elements/Progress_Bar.php:89 +#: ../includes/Elements/Progress_Bar.php:93 msgid "Half Circle Fill (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:90 +#: ../includes/Elements/Progress_Bar.php:94 msgid "Box (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:147 +#: ../includes/Elements/Progress_Bar.php:151 msgid "div" msgstr "" -#: ../includes/Elements/Progress_Bar.php:148 +#: ../includes/Elements/Progress_Bar.php:152 msgid "span" msgstr "" -#: ../includes/Elements/Progress_Bar.php:149 +#: ../includes/Elements/Progress_Bar.php:153 msgid "p" msgstr "" -#: ../includes/Elements/Progress_Bar.php:161, ../includes/Elements/Progress_Bar.php:174, ../includes/Elements/Progress_Bar.php:807 +#: ../includes/Elements/Progress_Bar.php:165, ../includes/Elements/Progress_Bar.php:178, ../includes/Elements/Progress_Bar.php:811 msgid "Inner Title" msgstr "" -#: ../includes/Elements/Progress_Bar.php:193 +#: ../includes/Elements/Progress_Bar.php:197 msgid "Counter Value Type" msgstr "" -#: ../includes/Elements/Progress_Bar.php:196, ../includes/Elements/Woo_Product_Carousel.php:420, ../includes/Elements/Woo_Product_List.php:668 +#: ../includes/Elements/Progress_Bar.php:200, ../includes/Elements/Woo_Product_Carousel.php:420, ../includes/Elements/Woo_Product_List.php:668 msgid "Static" msgstr "" -#: ../includes/Elements/Progress_Bar.php:207, ../includes/Elements/Progress_Bar.php:230 +#: ../includes/Elements/Progress_Bar.php:211, ../includes/Elements/Progress_Bar.php:234 msgid "Counter Value" msgstr "" -#: ../includes/Elements/Progress_Bar.php:247 +#: ../includes/Elements/Progress_Bar.php:251 msgid "Display Count" msgstr "" -#: ../includes/Elements/Progress_Bar.php:278 +#: ../includes/Elements/Progress_Bar.php:282 msgid "Prefix Label" msgstr "" -#: ../includes/Elements/Progress_Bar.php:295 +#: ../includes/Elements/Progress_Bar.php:299 msgid "Postfix Label" msgstr "" -#: ../includes/Elements/Progress_Bar.php:298 +#: ../includes/Elements/Progress_Bar.php:302 msgid "Postfix" msgstr "" -#: ../includes/Elements/Progress_Bar.php:497 +#: ../includes/Elements/Progress_Bar.php:501 msgid "Fill" msgstr "" -#: ../includes/Elements/Progress_Bar.php:582 +#: ../includes/Elements/Progress_Bar.php:586 msgid "Show Stripe" msgstr "" -#: ../includes/Elements/Progress_Bar.php:596 +#: ../includes/Elements/Progress_Bar.php:600 msgid "Stripe Animation" msgstr "" -#: ../includes/Elements/Progress_Bar.php:599 +#: ../includes/Elements/Progress_Bar.php:603 msgid "Left To Right" msgstr "" -#: ../includes/Elements/Progress_Bar.php:600 +#: ../includes/Elements/Progress_Bar.php:604 msgid "Right To Left" msgstr "" -#: ../includes/Elements/Progress_Bar.php:601 +#: ../includes/Elements/Progress_Bar.php:605 msgid "Disabled" msgstr "" -#: ../includes/Elements/Progress_Bar.php:692 +#: ../includes/Elements/Progress_Bar.php:696 msgid "Stroke Width" msgstr "" -#: ../includes/Elements/Progress_Bar.php:717 +#: ../includes/Elements/Progress_Bar.php:721 msgid "Stroke Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:741, ../includes/Elements/SVG_Draw.php:408, ../includes/Extensions/Reading_Progress.php:172 +#: ../includes/Elements/Progress_Bar.php:745, ../includes/Elements/SVG_Draw.php:412, ../includes/Extensions/Reading_Progress.php:172 msgid "Fill Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:818 +#: ../includes/Elements/Progress_Bar.php:822 msgid "Inner Title Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:844, ../includes/Traits/Admin.php:986, ../includes/Traits/Elements.php:149 +#: ../includes/Elements/Progress_Bar.php:848, ../includes/Traits/Admin.php:986, ../includes/Traits/Elements.php:149 msgid "Counter" msgstr "" -#: ../includes/Elements/Progress_Bar.php:855 +#: ../includes/Elements/Progress_Bar.php:859 msgid "Counter Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:869 +#: ../includes/Elements/Progress_Bar.php:873 msgid "Prefix/Postfix" msgstr "" -#: ../includes/Elements/Progress_Bar.php:883 +#: ../includes/Elements/Progress_Bar.php:887 msgid "Prefix/Postfix Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:946, ../includes/Elements/Progress_Bar.php:979, ../includes/Elements/Progress_Bar.php:979, ../includes/Elements/Progress_Bar.php:1025 +#: ../includes/Elements/Progress_Bar.php:950, ../includes/Elements/Progress_Bar.php:983, ../includes/Elements/Progress_Bar.php:983, ../includes/Elements/Progress_Bar.php:1029 msgid "%" msgstr "" @@ -7449,587 +7449,587 @@ msgstr "" msgid "Humberger Toggle Menu" msgstr "" -#: ../includes/Elements/Sticky_Video.php:92 +#: ../includes/Elements/Sticky_Video.php:96 msgid "Sticky Options" msgstr "" -#: ../includes/Elements/Sticky_Video.php:100 +#: ../includes/Elements/Sticky_Video.php:104 msgid "Sticky" msgstr "" -#: ../includes/Elements/Sticky_Video.php:119 +#: ../includes/Elements/Sticky_Video.php:123 msgid "Top Left" msgstr "" -#: ../includes/Elements/Sticky_Video.php:120 +#: ../includes/Elements/Sticky_Video.php:124 msgid "Top Right" msgstr "" -#: ../includes/Elements/Sticky_Video.php:121, ../includes/Extensions/Scroll_to_Top.php:116 +#: ../includes/Elements/Sticky_Video.php:125, ../includes/Extensions/Scroll_to_Top.php:116 msgid "Bottom Left" msgstr "" -#: ../includes/Elements/Sticky_Video.php:122, ../includes/Extensions/Scroll_to_Top.php:117 +#: ../includes/Elements/Sticky_Video.php:126, ../includes/Extensions/Scroll_to_Top.php:117 msgid "Bottom Right" msgstr "" -#: ../includes/Elements/Sticky_Video.php:148 +#: ../includes/Elements/Sticky_Video.php:152 msgid "YouTube" msgstr "" -#: ../includes/Elements/Sticky_Video.php:149 +#: ../includes/Elements/Sticky_Video.php:153 msgid "Vimeo" msgstr "" -#: ../includes/Elements/Sticky_Video.php:150 +#: ../includes/Elements/Sticky_Video.php:154 msgid "Self Hosted" msgstr "" -#: ../includes/Elements/Sticky_Video.php:161 +#: ../includes/Elements/Sticky_Video.php:165 msgid "Enter your URL (YouTube)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:179 +#: ../includes/Elements/Sticky_Video.php:183 msgid "Enter your URL (Vimeo)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:197 +#: ../includes/Elements/Sticky_Video.php:201 msgid "Enter your URL (Dailymotion)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:211 +#: ../includes/Elements/Sticky_Video.php:215 msgid "External URL" msgstr "" -#: ../includes/Elements/Sticky_Video.php:248 +#: ../includes/Elements/Sticky_Video.php:252 msgid "Enter your URL" msgstr "" -#: ../includes/Elements/Sticky_Video.php:264 +#: ../includes/Elements/Sticky_Video.php:268 msgid "Choose File" msgstr "" -#: ../includes/Elements/Sticky_Video.php:280 +#: ../includes/Elements/Sticky_Video.php:284 msgid "Start Time" msgstr "" -#: ../includes/Elements/Sticky_Video.php:296 +#: ../includes/Elements/Sticky_Video.php:300 msgid "End Time" msgstr "" -#: ../includes/Elements/Sticky_Video.php:312 +#: ../includes/Elements/Sticky_Video.php:316 msgid "Video Options" msgstr "" -#: ../includes/Elements/Sticky_Video.php:332 +#: ../includes/Elements/Sticky_Video.php:336 msgid "Autoplay requires mute volume." msgstr "" -#: ../includes/Elements/Sticky_Video.php:344 +#: ../includes/Elements/Sticky_Video.php:348 msgid "Mute" msgstr "" -#: ../includes/Elements/Sticky_Video.php:358 +#: ../includes/Elements/Sticky_Video.php:362 msgid "Loop" msgstr "" -#: ../includes/Elements/Sticky_Video.php:369 +#: ../includes/Elements/Sticky_Video.php:373 msgid "Show Bar" msgstr "" -#: ../includes/Elements/Sticky_Video.php:384, ../includes/Elements/Sticky_Video.php:392 +#: ../includes/Elements/Sticky_Video.php:388, ../includes/Elements/Sticky_Video.php:396 msgid "Image Overlay" msgstr "" -#: ../includes/Elements/Sticky_Video.php:397 +#: ../includes/Elements/Sticky_Video.php:401 msgid "Transparent" msgstr "" -#: ../includes/Elements/Sticky_Video.php:406 +#: ../includes/Elements/Sticky_Video.php:410 msgid "Choose Image" msgstr "" -#: ../includes/Elements/Sticky_Video.php:434 +#: ../includes/Elements/Sticky_Video.php:438 msgid "Play Icon" msgstr "" -#: ../includes/Elements/Sticky_Video.php:448 +#: ../includes/Elements/Sticky_Video.php:452 msgid "Choose Icon" msgstr "" -#: ../includes/Elements/Sticky_Video.php:460 +#: ../includes/Elements/Sticky_Video.php:464 msgid "Play icon appears on top of overlay image." msgstr "" -#: ../includes/Elements/Sticky_Video.php:475 +#: ../includes/Elements/Sticky_Video.php:479 msgid "Sticky Video Interface" msgstr "" -#: ../includes/Elements/Sticky_Video.php:525 +#: ../includes/Elements/Sticky_Video.php:529 msgid "Scroll Height To Display Sticky (%)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:547, ../includes/Extensions/Table_of_Content.php:951 +#: ../includes/Elements/Sticky_Video.php:551, ../includes/Extensions/Table_of_Content.php:951 msgid "Close Button Color" msgstr "" -#: ../includes/Elements/Sticky_Video.php:563 +#: ../includes/Elements/Sticky_Video.php:567 msgid "Player" msgstr "" -#: ../includes/Elements/Sticky_Video.php:653 +#: ../includes/Elements/Sticky_Video.php:657 msgid "Interface" msgstr "" -#: ../includes/Elements/Sticky_Video.php:661 +#: ../includes/Elements/Sticky_Video.php:665 msgid "Interface Color" msgstr "" -#: ../includes/Elements/Sticky_Video.php:677 +#: ../includes/Elements/Sticky_Video.php:681 msgid "Play Button Size" msgstr "" -#: ../includes/Elements/Sticky_Video.php:702, ../includes/Extensions/Table_of_Content.php:1043 +#: ../includes/Elements/Sticky_Video.php:706, ../includes/Extensions/Table_of_Content.php:1043 msgid "Bar" msgstr "" -#: ../includes/Elements/Sticky_Video.php:710 +#: ../includes/Elements/Sticky_Video.php:714 msgid "Bar Padding" msgstr "" -#: ../includes/Elements/Sticky_Video.php:733 +#: ../includes/Elements/Sticky_Video.php:737 msgid "Bar Margin" msgstr "" -#: ../includes/Elements/SVG_Draw.php:86 +#: ../includes/Elements/SVG_Draw.php:90 msgid "Custom SVG" msgstr "" -#: ../includes/Elements/SVG_Draw.php:111 +#: ../includes/Elements/SVG_Draw.php:115 msgid "SVG Code" msgstr "" -#: ../includes/Elements/SVG_Draw.php:117 +#: ../includes/Elements/SVG_Draw.php:121 msgid "SVG draw works best on path elements." msgstr "" -#: ../includes/Elements/SVG_Draw.php:125 +#: ../includes/Elements/SVG_Draw.php:129 msgid "Exclude Style" msgstr "" -#: ../includes/Elements/SVG_Draw.php:130 +#: ../includes/Elements/SVG_Draw.php:134 msgid "Exclude style from SVG Source (If any)." msgstr "" -#: ../includes/Elements/SVG_Draw.php:224 +#: ../includes/Elements/SVG_Draw.php:228 msgid "Appearance" msgstr "" -#: ../includes/Elements/SVG_Draw.php:232 +#: ../includes/Elements/SVG_Draw.php:236 msgid "SVG Fill Type" msgstr "" -#: ../includes/Elements/SVG_Draw.php:237 +#: ../includes/Elements/SVG_Draw.php:241 msgid "Fill After Draw" msgstr "" -#: ../includes/Elements/SVG_Draw.php:238 +#: ../includes/Elements/SVG_Draw.php:242 msgid "Fill Before Draw" msgstr "" -#: ../includes/Elements/SVG_Draw.php:247 +#: ../includes/Elements/SVG_Draw.php:251 msgid "Fill Transition" msgstr "" -#: ../includes/Elements/SVG_Draw.php:254 +#: ../includes/Elements/SVG_Draw.php:258 msgid "Duration on SVG fills (in seconds)" msgstr "" -#: ../includes/Elements/SVG_Draw.php:266 +#: ../includes/Elements/SVG_Draw.php:270 msgid "On Page Load" msgstr "" -#: ../includes/Elements/SVG_Draw.php:267 +#: ../includes/Elements/SVG_Draw.php:271 msgid "On Page Scroll" msgstr "" -#: ../includes/Elements/SVG_Draw.php:268 +#: ../includes/Elements/SVG_Draw.php:272 msgid "Mouse Hover" msgstr "" -#: ../includes/Elements/SVG_Draw.php:277 +#: ../includes/Elements/SVG_Draw.php:281 msgid "Drawing Start Point" msgstr "" -#: ../includes/Elements/SVG_Draw.php:286 +#: ../includes/Elements/SVG_Draw.php:290 msgid "The point at which the drawing begins to animate as scrolls down (in pixels)." msgstr "" -#: ../includes/Elements/SVG_Draw.php:293 +#: ../includes/Elements/SVG_Draw.php:297 msgid "Pause on Hover Off" msgstr "" -#: ../includes/Elements/SVG_Draw.php:301 +#: ../includes/Elements/SVG_Draw.php:305 msgid "Pause SVG drawing on mouse leave" msgstr "" -#: ../includes/Elements/SVG_Draw.php:308 +#: ../includes/Elements/SVG_Draw.php:312 msgid "Repeat Drawing" msgstr "" -#: ../includes/Elements/SVG_Draw.php:327 +#: ../includes/Elements/SVG_Draw.php:331 msgid "Reverse" msgstr "" -#: ../includes/Elements/SVG_Draw.php:328 +#: ../includes/Elements/SVG_Draw.php:332 msgid "Restart" msgstr "" -#: ../includes/Elements/SVG_Draw.php:340, ../includes/Elements/Woo_Product_Carousel.php:630 +#: ../includes/Elements/SVG_Draw.php:344, ../includes/Elements/Woo_Product_Carousel.php:630 msgid "Speed" msgstr "" -#: ../includes/Elements/SVG_Draw.php:349 +#: ../includes/Elements/SVG_Draw.php:353 msgid "Duration on SVG draws (in ms)" msgstr "" -#: ../includes/Elements/SVG_Draw.php:366 +#: ../includes/Elements/SVG_Draw.php:370 msgid "Path Thickness" msgstr "" -#: ../includes/Elements/Team_Member.php:66 +#: ../includes/Elements/Team_Member.php:70 msgid "Team Member Image" msgstr "" -#: ../includes/Elements/Team_Member.php:74 +#: ../includes/Elements/Team_Member.php:78 msgid "Team Member Avatar" msgstr "" -#: ../includes/Elements/Team_Member.php:103 +#: ../includes/Elements/Team_Member.php:107 msgid "Team Member Content" msgstr "" -#: ../includes/Elements/Team_Member.php:116, ../includes/Elements/Testimonial.php:140 +#: ../includes/Elements/Team_Member.php:120, ../includes/Elements/Testimonial.php:144 msgid "John Doe" msgstr "" -#: ../includes/Elements/Team_Member.php:126 +#: ../includes/Elements/Team_Member.php:130 msgid "Job Position" msgstr "" -#: ../includes/Elements/Team_Member.php:131 +#: ../includes/Elements/Team_Member.php:135 msgid "Software Engineer" msgstr "" -#: ../includes/Elements/Team_Member.php:146 +#: ../includes/Elements/Team_Member.php:150 msgid "Add team member description here. Remove the text if not necessary." msgstr "" -#: ../includes/Elements/Team_Member.php:157 +#: ../includes/Elements/Team_Member.php:161 msgid "Social Profiles" msgstr "" -#: ../includes/Elements/Team_Member.php:164 +#: ../includes/Elements/Team_Member.php:168 msgid "Display Social Profiles?" msgstr "" -#: ../includes/Elements/Team_Member.php:197 +#: ../includes/Elements/Team_Member.php:201 msgid "Place URL here" msgstr "" -#: ../includes/Elements/Team_Member.php:272 +#: ../includes/Elements/Team_Member.php:276 msgid "Team Member Styles" msgstr "" -#: ../includes/Elements/Team_Member.php:280 +#: ../includes/Elements/Team_Member.php:284 msgid "Centered Style" msgstr "" -#: ../includes/Elements/Team_Member.php:281 +#: ../includes/Elements/Team_Member.php:285 msgid "Circle Style" msgstr "" -#: ../includes/Elements/Team_Member.php:282 +#: ../includes/Elements/Team_Member.php:286 msgid "Social on Bottom" msgstr "" -#: ../includes/Elements/Team_Member.php:283 +#: ../includes/Elements/Team_Member.php:287 msgid "Social on Right" msgstr "" -#: ../includes/Elements/Team_Member.php:332 +#: ../includes/Elements/Team_Member.php:336 msgid "Content Card" msgstr "" -#: ../includes/Elements/Team_Member.php:364 +#: ../includes/Elements/Team_Member.php:368 msgid "Enable Description Overlay" msgstr "" -#: ../includes/Elements/Team_Member.php:418 +#: ../includes/Elements/Team_Member.php:422 msgid "Set Alignment" msgstr "" -#: ../includes/Elements/Team_Member.php:482 +#: ../includes/Elements/Team_Member.php:486 msgid "Team Member Image Style" msgstr "" -#: ../includes/Elements/Team_Member.php:490, ../includes/Elements/Testimonial.php:396 +#: ../includes/Elements/Team_Member.php:494, ../includes/Elements/Testimonial.php:400 msgid "Image Width" msgstr "" -#: ../includes/Elements/Team_Member.php:556, ../includes/Elements/Testimonial.php:478 +#: ../includes/Elements/Team_Member.php:560, ../includes/Elements/Testimonial.php:482 msgid "Rounded Avatar?" msgstr "" -#: ../includes/Elements/Team_Member.php:592 +#: ../includes/Elements/Team_Member.php:596 msgid "Member Name" msgstr "" -#: ../includes/Elements/Team_Member.php:600 +#: ../includes/Elements/Team_Member.php:604 msgid "Member Name Color" msgstr "" -#: ../includes/Elements/Team_Member.php:620 +#: ../includes/Elements/Team_Member.php:624 msgid "Member Job Position" msgstr "" -#: ../includes/Elements/Team_Member.php:629 +#: ../includes/Elements/Team_Member.php:633 msgid "Job Position Color" msgstr "" -#: ../includes/Elements/Team_Member.php:649 +#: ../includes/Elements/Team_Member.php:653 msgid "Member Description" msgstr "" -#: ../includes/Elements/Team_Member.php:658 +#: ../includes/Elements/Team_Member.php:662 msgid "Description Color" msgstr "" -#: ../includes/Elements/Team_Member.php:683 +#: ../includes/Elements/Team_Member.php:687 msgid "Social Profiles Style" msgstr "" -#: ../includes/Elements/Team_Member.php:716 +#: ../includes/Elements/Team_Member.php:720 msgid "Social Profiles Margin" msgstr "" -#: ../includes/Elements/Team_Member.php:729 +#: ../includes/Elements/Team_Member.php:733 msgid "Social Icon Padding" msgstr "" -#: ../includes/Elements/Team_Member.php:741 +#: ../includes/Elements/Team_Member.php:745 msgid "Social Icon Distance" msgstr "" -#: ../includes/Elements/Team_Member.php:860 +#: ../includes/Elements/Team_Member.php:864 msgid "Hover Background" msgstr "" -#: ../includes/Elements/Team_Member.php:887 +#: ../includes/Elements/Team_Member.php:891 msgid "Hover Border Color" msgstr "" -#: ../includes/Elements/Testimonial.php:82 +#: ../includes/Elements/Testimonial.php:86 msgid "Testimonial Image" msgstr "" -#: ../includes/Elements/Testimonial.php:89 +#: ../includes/Elements/Testimonial.php:93 msgid "Display Avatar?" msgstr "" -#: ../includes/Elements/Testimonial.php:98 +#: ../includes/Elements/Testimonial.php:102 msgid "Testimonial Avatar" msgstr "" -#: ../includes/Elements/Testimonial.php:131 +#: ../includes/Elements/Testimonial.php:135 msgid "Testimonial Content" msgstr "" -#: ../includes/Elements/Testimonial.php:138, ../includes/Elements/Testimonial.php:514 +#: ../includes/Elements/Testimonial.php:142, ../includes/Elements/Testimonial.php:518 msgid "User Name" msgstr "" -#: ../includes/Elements/Testimonial.php:151, ../includes/Elements/Testimonial.php:554 +#: ../includes/Elements/Testimonial.php:155, ../includes/Elements/Testimonial.php:558 msgid "Company Name" msgstr "" -#: ../includes/Elements/Testimonial.php:153 +#: ../includes/Elements/Testimonial.php:157 msgid "Codetic" msgstr "" -#: ../includes/Elements/Testimonial.php:164 +#: ../includes/Elements/Testimonial.php:168 msgid "Testimonial Description" msgstr "" -#: ../includes/Elements/Testimonial.php:166 +#: ../includes/Elements/Testimonial.php:170 msgid "Add testimonial description here. Edit and place your own text." msgstr "" -#: ../includes/Elements/Testimonial.php:173 +#: ../includes/Elements/Testimonial.php:177 msgid "Description Height" msgstr "" -#: ../includes/Elements/Testimonial.php:190 +#: ../includes/Elements/Testimonial.php:194 msgid "Display Rating?" msgstr "" -#: ../includes/Elements/Testimonial.php:200 +#: ../includes/Elements/Testimonial.php:204 msgid "Rating Number" msgstr "" -#: ../includes/Elements/Testimonial.php:250 +#: ../includes/Elements/Testimonial.php:254 msgid "Testimonial Styles" msgstr "" -#: ../includes/Elements/Testimonial.php:259, ../includes/Traits/Controls.php:1474 +#: ../includes/Elements/Testimonial.php:263, ../includes/Traits/Controls.php:1474 msgid "Select Style" msgstr "" -#: ../includes/Elements/Testimonial.php:271 +#: ../includes/Elements/Testimonial.php:275 msgid "Content | Icon/Image | Bio" msgstr "" -#: ../includes/Elements/Testimonial.php:275 +#: ../includes/Elements/Testimonial.php:279 msgid "Icon/Image | Content" msgstr "" -#: ../includes/Elements/Testimonial.php:279 +#: ../includes/Elements/Testimonial.php:283 msgid "Content | Icon/Image" msgstr "" -#: ../includes/Elements/Testimonial.php:283 +#: ../includes/Elements/Testimonial.php:287 msgid "Content Top | Icon Title Inline" msgstr "" -#: ../includes/Elements/Testimonial.php:287 +#: ../includes/Elements/Testimonial.php:291 msgid "Content Bottom | Icon Title Inline" msgstr "" -#: ../includes/Elements/Testimonial.php:328 +#: ../includes/Elements/Testimonial.php:332 msgid "Gradient Background" msgstr "" -#: ../includes/Elements/Testimonial.php:340 +#: ../includes/Elements/Testimonial.php:344 msgid "Layout Alignment" msgstr "" -#: ../includes/Elements/Testimonial.php:372 +#: ../includes/Elements/Testimonial.php:376 msgid "Display User & Company Block?" msgstr "" -#: ../includes/Elements/Testimonial.php:385 +#: ../includes/Elements/Testimonial.php:389 msgid "Testimonial Image Style" msgstr "" -#: ../includes/Elements/Testimonial.php:422 +#: ../includes/Elements/Testimonial.php:426 msgid "Image Max Width" msgstr "" -#: ../includes/Elements/Testimonial.php:506 +#: ../includes/Elements/Testimonial.php:510 msgid "Color, Typography & Spacing" msgstr "" -#: ../includes/Elements/Testimonial.php:522 +#: ../includes/Elements/Testimonial.php:526 msgid "User Name Color" msgstr "" -#: ../includes/Elements/Testimonial.php:563 +#: ../includes/Elements/Testimonial.php:567 msgid "Company Color" msgstr "" -#: ../includes/Elements/Testimonial.php:595 +#: ../includes/Elements/Testimonial.php:599 msgid "Testimonial Text" msgstr "" -#: ../includes/Elements/Testimonial.php:604 +#: ../includes/Elements/Testimonial.php:608 msgid "Testimonial Text Color" msgstr "" -#: ../includes/Elements/Testimonial.php:661 +#: ../includes/Elements/Testimonial.php:665 msgid "Rating Size" msgstr "" -#: ../includes/Elements/Testimonial.php:673 +#: ../includes/Elements/Testimonial.php:677 msgid "Distance Between Rating Item" msgstr "" -#: ../includes/Elements/Testimonial.php:699 +#: ../includes/Elements/Testimonial.php:703 msgid "Quotation Style" msgstr "" -#: ../includes/Elements/Testimonial.php:707 +#: ../includes/Elements/Testimonial.php:711 msgid "Quotation Mark Color" msgstr "" -#: ../includes/Elements/Testimonial.php:727 +#: ../includes/Elements/Testimonial.php:731 msgid "Quotation Postion From Top" msgstr "" -#: ../includes/Elements/Testimonial.php:749 +#: ../includes/Elements/Testimonial.php:753 msgid "Quotation Postion From Right" msgstr "" -#: ../includes/Elements/Tooltip.php:87, ../includes/Elements/Tooltip.php:197 +#: ../includes/Elements/Tooltip.php:91, ../includes/Elements/Tooltip.php:201 msgid "Shortcode" msgstr "" -#: ../includes/Elements/Tooltip.php:146 +#: ../includes/Elements/Tooltip.php:150 msgid "Hover Me!" msgstr "" -#: ../includes/Elements/Tooltip.php:156 +#: ../includes/Elements/Tooltip.php:160 msgid "Content Tag" msgstr "" -#: ../includes/Elements/Tooltip.php:167 +#: ../includes/Elements/Tooltip.php:171 msgid "DIV" msgstr "" -#: ../includes/Elements/Tooltip.php:168 +#: ../includes/Elements/Tooltip.php:172 msgid "SPAN" msgstr "" -#: ../includes/Elements/Tooltip.php:200 +#: ../includes/Elements/Tooltip.php:204 msgid "[shortcode-here]" msgstr "" -#: ../includes/Elements/Tooltip.php:239 +#: ../includes/Elements/Tooltip.php:243 msgid "Enable Link" msgstr "" -#: ../includes/Elements/Tooltip.php:273 +#: ../includes/Elements/Tooltip.php:277 msgid "Tooltip Settings" msgstr "" -#: ../includes/Elements/Tooltip.php:282 +#: ../includes/Elements/Tooltip.php:286 msgid "Tooltip content" msgstr "" -#: ../includes/Elements/Tooltip.php:289 +#: ../includes/Elements/Tooltip.php:293 msgid "Hover Direction" msgstr "" -#: ../includes/Elements/Tooltip.php:304 +#: ../includes/Elements/Tooltip.php:308 msgid "Hover Speed" msgstr "" -#: ../includes/Elements/Tooltip.php:307 +#: ../includes/Elements/Tooltip.php:311 msgid "300" msgstr "" -#: ../includes/Elements/Tooltip.php:336 +#: ../includes/Elements/Tooltip.php:340 msgid "Content Max Width" msgstr "" -#: ../includes/Elements/Tooltip.php:559 +#: ../includes/Elements/Tooltip.php:563 msgid "Tooltip Style" msgstr "" -#: ../includes/Elements/Tooltip.php:566 +#: ../includes/Elements/Tooltip.php:570 msgid "Tooltip Width" msgstr "" -#: ../includes/Elements/Tooltip.php:591 +#: ../includes/Elements/Tooltip.php:595 msgid "Tooltip Max Width" msgstr "" From 703b9ff6d11fb0ab6f2f0eec46533ee2fa7f1131 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Wed, 4 Sep 2024 13:14:42 +0600 Subject: [PATCH 26/42] Added new manual product selection option --- includes/Elements/Woo_Product_Carousel.php | 60 ++++++++++++++++------ 1 file changed, 44 insertions(+), 16 deletions(-) diff --git a/includes/Elements/Woo_Product_Carousel.php b/includes/Elements/Woo_Product_Carousel.php index c6c00e05b..300f077a9 100755 --- a/includes/Elements/Woo_Product_Carousel.php +++ b/includes/Elements/Woo_Product_Carousel.php @@ -139,6 +139,7 @@ protected function eael_get_product_filterby_options() { 'sale-products' => esc_html__( 'Sale Products', 'essential-addons-for-elementor-lite' ), 'top-products' => esc_html__( 'Top Rated Products', 'essential-addons-for-elementor-lite' ), 'related-products' => esc_html__('Related Products', 'essential-addons-for-elementor-lite'), + 'manual' => esc_html__('Manual Selection', 'essential-addons-for-elementor-lite'), ] ); } @@ -855,31 +856,53 @@ protected function eael_woo_product_carousel_query() { 'label' => __( 'Offset', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::NUMBER, 'default' => 0, + 'condition' => [ + 'eael_product_carousel_product_filter!' => 'manual', + ], ] ); + $this->add_control( + 'eael_product_carousel_products_in', + [ + 'label' => esc_html__('Select Products', 'essential-addons-for-elementor-lite'), + 'type' => 'eael-select2', + 'label_block' => true, + 'multiple' => true, + 'source_type' => 'product', + 'condition' => [ + 'eael_product_carousel_product_filter' => 'manual' + ], + ]); + $this->add_control( 'eael_product_carousel_products_status', [ - 'label' => __( 'Product Status', 'essential-addons-for-elementor-lite' ), - 'type' => Controls_Manager::SELECT2, + 'label' => __( 'Product Status', 'essential-addons-for-elementor-lite' ), + 'type' => Controls_Manager::SELECT2, 'label_block' => true, - 'multiple' => true, - 'default' => [ 'publish', 'pending', 'future' ], - 'options' => $this->eael_get_product_statuses(), + 'multiple' => true, + 'default' => [ 'publish', 'pending', 'future' ], + 'options' => $this->eael_get_product_statuses(), + 'condition' => [ + 'eael_product_carousel_product_filter!' => 'manual', + ], ] ); - $this->add_control('product_type_logged_users', [ - 'label' => __('Purchase Type', 'essential-addons-for-elementor-lite'), - 'type' => Controls_Manager::SELECT, - 'description' => __('For logged in users only!', 'essential-addons-for-elementor-lite'), - 'options' => [ - 'both' => __('Both', 'essential-addons-for-elementor-lite'), - 'purchased' => __('Purchased Only', 'essential-addons-for-elementor-lite'), - 'not-purchased' => __('Not Purchased Only', 'essential-addons-for-elementor-lite'), - ], - 'default' => 'both', - ]); + $this->add_control( + 'product_type_logged_users', + [ + 'label' => __('Purchase Type', 'essential-addons-for-elementor-lite'), + 'type' => Controls_Manager::SELECT, + 'description' => __('For logged in users only!', 'essential-addons-for-elementor-lite'), + 'options' => [ + 'both' => __('Both', 'essential-addons-for-elementor-lite'), + 'purchased' => __('Purchased Only', 'essential-addons-for-elementor-lite'), + 'not-purchased' => __('Not Purchased Only', 'essential-addons-for-elementor-lite'), + ], + 'default' => 'both', + ] + ); $taxonomies = get_taxonomies(['object_type' => ['product']], 'objects'); foreach ($taxonomies as $taxonomy => $object) { @@ -898,6 +921,7 @@ protected function eael_woo_product_carousel_query() { 'options' => wp_list_pluck(get_terms($taxonomy), 'name', 'term_id'), 'condition' => [ 'eael_product_carousel_product_filter!' => 'related-products', + 'eael_product_carousel_product_filter!' => 'manual', ], ] ); @@ -3299,6 +3323,10 @@ public function product_query_builder(){ $args['post__in'] = array_merge( [ 0 ], wc_get_product_ids_on_sale() ); } + if ( $filter == 'manual' ) { + $args['post__in'] = ! empty( $settings['eael_product_carousel_products_in'] ) ? $settings['eael_product_carousel_products_in'] : [ 0 ]; + } + $taxonomies = get_taxonomies( [ 'object_type' => [ 'product' ] ], 'objects' ); $tax_query_count = isset( $args[ 'meta_query' ] ) ? count( $args[ 'meta_query' ] ) : 0; From 8f217e722ce5381359bfb11e06dbcec1a70b63c9 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Wed, 4 Sep 2024 16:24:54 +0600 Subject: [PATCH 27/42] Added new menual product select option for Product Gallery --- includes/Elements/Woo_Product_Gallery.php | 49 ++++++++++++++++++----- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/includes/Elements/Woo_Product_Gallery.php b/includes/Elements/Woo_Product_Gallery.php index 981e59ac6..f6d7cbbad 100755 --- a/includes/Elements/Woo_Product_Gallery.php +++ b/includes/Elements/Woo_Product_Gallery.php @@ -127,6 +127,7 @@ protected function eael_get_product_filterby_options() { 'best-selling-products' => esc_html__( 'Best Selling Products', 'essential-addons-for-elementor-lite' ), 'sale-products' => esc_html__( 'Sale Products', 'essential-addons-for-elementor-lite' ), 'top-products' => esc_html__( 'Top Rated Products', 'essential-addons-for-elementor-lite' ), + 'manual' => esc_html__('Manual Selection', 'essential-addons-for-elementor-lite'), ] ); } @@ -485,8 +486,26 @@ protected function init_content_product_settings_controls() { 'label' => __( 'Offset', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::NUMBER, 'default' => 0, + 'condition' => [ + 'eael_product_gallery_product_filter!' => 'manual', + ], ] ); + $this->add_control( + 'eael_product_gallery_products_in', + [ + 'label' => esc_html__('Select Products', 'essential-addons-for-elementor-lite'), + 'type' => 'eael-select2', + 'label_block' => true, + 'multiple' => true, + 'source_name' => 'post_type', + 'source_type' => 'product', + 'condition' => [ + 'eael_product_gallery_product_filter' => 'manual', + 'post_type!' => 'source_dynamic', + ], + ]); + $this->add_control( 'eael_product_gallery_categories', [ 'label' => __( 'Product Categories', 'essential-addons-for-elementor-lite' ), @@ -506,20 +525,26 @@ protected function init_content_product_settings_controls() { 'source_type' => 'product_tag', 'label_block' => true, 'multiple' => true, + 'condition' => [ + 'eael_product_gallery_product_filter!' => 'manual', + ], ] ); - $this->add_control('product_type_logged_users', [ - 'label' => __('Purchase Type', 'essential-addons-for-elementor-lite'), - 'type' => Controls_Manager::SELECT, - 'description' => __('For logged in users only!', 'essential-addons-for-elementor-lite'), - 'options' => [ - 'both' => __('Both', 'essential-addons-for-elementor-lite'), - 'purchased' => __('Purchased Only', 'essential-addons-for-elementor-lite'), - 'not-purchased' => __('Not Purchased Only', 'essential-addons-for-elementor-lite'), - ], - 'default' => 'both', - ]); + $this->add_control( + 'product_type_logged_users', + [ + 'label' => __('Purchase Type', 'essential-addons-for-elementor-lite'), + 'type' => Controls_Manager::SELECT, + 'description' => __('For logged in users only!', 'essential-addons-for-elementor-lite'), + 'options' => [ + 'both' => __('Both', 'essential-addons-for-elementor-lite'), + 'purchased' => __('Purchased Only', 'essential-addons-for-elementor-lite'), + 'not-purchased' => __('Not Purchased Only', 'essential-addons-for-elementor-lite'), + ], + 'default' => 'both', + ] + ); $this->add_control( 'eael_product_gallery_dynamic_template', @@ -2839,6 +2864,8 @@ public function build_product_query( $settings ) { $args[ 'meta_key' ] = '_wc_average_rating'; $args[ 'orderby' ] = 'meta_value_num'; $args[ 'order' ] = 'DESC'; + } else if( $settings[ 'eael_product_gallery_product_filter' ] == 'manual' ) { + $args['post__in'] = ! empty( $settings['eael_product_gallery_products_in'] ) ? $settings['eael_product_gallery_products_in'] : [ 0 ]; } else if ( $settings[ 'eael_product_gallery_product_filter' ] == 'related-products' ) { $current_product_id = get_the_ID(); $product_categories = wp_get_post_terms( $current_product_id, 'product_cat', array( 'fields' => 'ids' ) ); From 32d274759dd21398604230ea6dd121b02110bb95 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Thu, 5 Sep 2024 11:26:54 +0600 Subject: [PATCH 28/42] Fixed item link issue --- includes/Elements/Interactive_Circle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Elements/Interactive_Circle.php b/includes/Elements/Interactive_Circle.php index b33df4dc6..1af8375cd 100644 --- a/includes/Elements/Interactive_Circle.php +++ b/includes/Elements/Interactive_Circle.php @@ -1090,10 +1090,10 @@ protected function render() { add_link_attributes( 'interactive_circle_link', $item['eael_interactive_circle_btn_link'] ); + $this->add_link_attributes( 'interactive_circle_link_' . $index, $item['eael_interactive_circle_btn_link'] ); } ?> - get_render_attribute_string('interactive_circle_link'); ?>> + get_render_attribute_string( 'interactive_circle_link_' . $index ); ?>>
From 7ec83fa52bcb4045eb74bdb2604ebf5162d880b2 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Thu, 5 Sep 2024 14:35:06 +0600 Subject: [PATCH 30/42] asset generate --- .../front-end/js/edit/advanced-data-table.js | 2 +- .../front-end/js/view/filterable-gallery.js | 2 +- .../js/view/filterable-gallery.min.js | 2 +- assets/front-end/js/view/general.js | 2 +- assets/front-end/js/view/general.min.js | 2 +- .../essential-addons-for-elementor-lite.pot | 4808 +++++++++-------- 6 files changed, 2491 insertions(+), 2327 deletions(-) diff --git a/assets/front-end/js/edit/advanced-data-table.js b/assets/front-end/js/edit/advanced-data-table.js index 3226eeff0..470eb23da 100644 --- a/assets/front-end/js/edit/advanced-data-table.js +++ b/assets/front-end/js/edit/advanced-data-table.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\"); }\nfunction _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }\nfunction _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", { writable: !1 }), e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar advancedDataTableEdit = /*#__PURE__*/function () {\n function advancedDataTableEdit() {\n _classCallCheck(this, advancedDataTableEdit);\n // class props\n this.panel = null;\n this.model = null;\n this.view = null;\n this.table = null;\n this.tableInnerHTML = null;\n this.timeout = null;\n this.activeCell = null;\n this.dragStartX = null;\n this.dragStartWidth = null;\n this.dragEl = null;\n this.dragging = false;\n\n // register hooks\n ea.hooks.addFilter(\"advancedDataTable.getClassProps\", \"ea\", this.getClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.setClassProps\", \"ea\", this.setClassProps.bind(this));\n ea.hooks.addFilter(\"advancedDataTable.parseHTML\", \"ea\", this.parseHTML);\n ea.hooks.addAction(\"advancedDataTable.initEditor\", \"ea\", this.initEditor.bind(this));\n ea.hooks.addAction(\"advancedDataTable.updateFromView\", \"ea\", this.updateFromView.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initInlineEdit\", \"ea\", this.initInlineEdit.bind(this));\n ea.hooks.addAction(\"advancedDataTable.initPanelAction\", \"ea\", this.initPanelAction.bind(this));\n ea.hooks.addAction(\"advancedDataTable.triggerTextChange\", \"ea\", this.triggerTextChange.bind(this));\n elementor.hooks.addFilter(\"elements/widget/contextMenuGroups\", this.initContextMenu);\n elementor.hooks.addAction(\"panel/open_editor/widget/eael-advanced-data-table\", this.initPanel.bind(this));\n }\n\n // update model from view\n return _createClass(advancedDataTableEdit, [{\n key: \"updateFromView\",\n value: function updateFromView(view, value) {\n var refresh = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var model = view.model;\n\n // disable elementor remote server render\n model.remoteRender = refresh;\n if (elementor.config.version > \"2.7.6\") {\n var container = view.getContainer();\n var settings = view.getContainer().settings.attributes;\n Object.keys(value).forEach(function (key) {\n settings[key] = value[key];\n });\n parent.window.$e.run(\"document/elements/settings\", {\n container: container,\n settings: settings,\n options: {\n external: refresh\n }\n });\n } else {\n // update backbone model\n Object.keys(value).forEach(function (key) {\n model.setSetting(key, value[key]);\n });\n }\n\n // enable elementor remote server render just after elementor throttle\n // ignore multiple assign\n this.timeout = setTimeout(function () {\n model.remoteRender = true;\n }, 1001);\n }\n\n // get class properties\n }, {\n key: \"getClassProps\",\n value: function getClassProps() {\n return {\n view: this.view,\n model: this.model,\n table: this.table,\n activeCell: this.activeCell\n };\n }\n\n // get class properties\n }, {\n key: \"setClassProps\",\n value: function setClassProps(props) {\n var _this = this;\n Object.keys(props).forEach(function (key) {\n _this[key] = props[key];\n });\n }\n\n // parse table html\n }, {\n key: \"parseHTML\",\n value: function parseHTML(tableHTML) {\n tableHTML.querySelectorAll(\"th, td\").forEach(function (el) {\n if (el.querySelector(\".inline-editor\") !== null) {\n el.innerHTML = decodeURI(el.dataset.quill || \"\");\n delete el.dataset.quill;\n }\n });\n return tableHTML;\n }\n\n // init editor\n }, {\n key: \"initEditor\",\n value: function initEditor(cell) {\n var _this2 = this;\n // init value\n cell.dataset.quill = encodeURI(cell.innerHTML);\n\n // insert editor dom\n cell.innerHTML = \"
\".concat(cell.innerHTML, \"
\");\n\n // init quill\n var quill = new Quill(cell.querySelector(\".inline-editor\"), {\n theme: \"bubble\",\n modules: {\n toolbar: [\"bold\", \"italic\", \"underline\", \"strike\", \"link\", {\n list: \"ordered\"\n }, {\n list: \"bullet\"\n }]\n }\n });\n\n // bind change\n quill.on(\"text-change\", function (delta, oldDelta, source) {\n clearTimeout(_this2.timeout);\n\n // update data\n cell.dataset.quill = encodeURI(quill.root.innerHTML);\n\n // parse table html\n var origTable = _this2.parseHTML(_this2.table.cloneNode(true));\n _this2.tableInnerHTML = origTable.innerHTML;\n // update table\n _this2.updateFromView(_this2.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n });\n }\n\n // init inline editing features\n }, {\n key: \"initInlineEdit\",\n value: function initInlineEdit() {\n var _this3 = this;\n var interval = setInterval(function () {\n if (_this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n // init table\n if (_this3.table !== _this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n _this3.table = _this3.view.el.querySelector(\".ea-advanced-data-table\");\n\n // iniline editor\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n _this3.table.querySelectorAll(\"th, td\").forEach(function (cell) {\n _this3.initEditor(cell);\n });\n }\n\n // mousedown\n _this3.table.addEventListener(\"mousedown\", function (e) {\n e.stopPropagation();\n if (e.target.tagName.toLowerCase() === \"th\") {\n _this3.dragging = true;\n _this3.dragEl = e.target;\n _this3.dragStartX = e.pageX;\n _this3.dragStartWidth = e.target.offsetWidth;\n }\n if (e.target.tagName.toLowerCase() === \"th\" || e.target.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target;\n } else if (e.target.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode;\n } else if (e.target.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode;\n } else if (e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode.parentNode;\n }\n });\n\n // mousemove\n _this3.table.addEventListener(\"mousemove\", function (e) {\n if (_this3.dragging) {\n _this3.dragEl.style.width = \"\".concat(_this3.dragStartWidth + (event.pageX - _this3.dragStartX), \"px\");\n }\n });\n\n // mouseup\n _this3.table.addEventListener(\"mouseup\", function (e) {\n if (_this3.dragging) {\n _this3.dragging = false;\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n\n // clear style\n _this3.table.addEventListener(\"dblclick\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n e.stopPropagation();\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n }\n clearInterval(interval);\n }\n }, 500);\n }\n\n // panel action\n }, {\n key: \"initPanelAction\",\n value: function initPanelAction() {\n var _this4 = this;\n this.panel.content.el.onclick = function (event) {\n if (event.target.dataset.event == \"ea:advTable:export\") {\n // export\n var rows = _this4.table.querySelectorAll(\"table tr\");\n var csv = [];\n\n // generate csv\n for (var i = 0; i < rows.length; i++) {\n var row = [];\n var cols = rows[i].querySelectorAll(\"th, td\");\n if (_this4.table.classList.contains(\"ea-advanced-data-table-static\")) {\n for (var j = 0; j < cols.length; j++) {\n var encodedText = decodeURI(cols[j].dataset.quill);\n var modifiedString = encodedText.replace(/\"/g, '\"\"');\n modifiedString = \"\\\"\".concat(modifiedString, \"\\\"\");\n row.push(modifiedString);\n }\n } else {\n for (var _j = 0; _j < cols.length; _j++) {\n row.push(JSON.stringify(cols[_j].innerHTML.replace(/,\"\"\"([^\"]+)\"\"\",/g, ',\"$1\",').trim()));\n }\n }\n csv.push(row.join(\",\"));\n }\n\n // download\n var csv_file = new Blob([csv.join(\"\\n\")], {\n type: \"text/csv\"\n });\n var downloadLink = parent.document.createElement(\"a\");\n downloadLink.classList.add(\"ea-adv-data-table-download-\".concat(_this4.model.attributes.id));\n downloadLink.download = \"ea-adv-data-table-\".concat(_this4.model.attributes.id, \".csv\");\n downloadLink.href = window.URL.createObjectURL(csv_file);\n downloadLink.style.display = \"none\";\n parent.document.body.appendChild(downloadLink);\n downloadLink.click();\n parent.document.querySelector(\".ea-adv-data-table-download-\".concat(_this4.model.attributes.id)).remove();\n } else if (event.target.dataset.event == \"ea:advTable:import\") {\n // import\n var textarea = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string\");\n var enableHeader = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string_table\").checked;\n var csletr = textarea.value.split(\"\\n\");\n var header = \"\";\n var body = \"\";\n if (textarea.value.length > 0) {\n body += \"\";\n csletr.forEach(function (row, index) {\n var result = [];\n var field = '';\n var inQuotes = false;\n var i = 0;\n while (i < row.length) {\n var _char = row[i];\n if (_char === '\"') {\n if (inQuotes && row[i + 1] === '\"') {\n //Handle escaped double quote\n field += '\"';\n i++;\n } else {\n inQuotes = !inQuotes; //Toggle inQuotes\n }\n } else if (_char === ',' && !inQuotes) {\n //End of field\n result.push(field);\n field = '';\n } else {\n field += _char; //Regular character\n }\n i++;\n }\n result.push(field);\n\n //Generate HTML table\n if (result.length > 0) {\n if (enableHeader && index == 0) {\n header += \"\";\n result.forEach(function (col) {\n header += \"\".concat(col, \"\");\n });\n header += \"\";\n } else {\n body += \"\";\n result.forEach(function (col) {\n body += \"\".concat(col, \"\");\n });\n body += \"\";\n }\n }\n });\n body += \"\";\n if (header.length > 0 || body.length > 0) {\n _this4.tableInnerHTML = header + body;\n _this4.updateFromView(_this4.view, {\n ea_adv_data_table_static_html: header + body\n }, true);\n\n // init inline edit\n var interval = setInterval(function () {\n if (_this4.view.el.querySelector(\".ea-advanced-data-table\").innerHTML == header + body) {\n clearInterval(interval);\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n }\n }, 500);\n }\n }\n textarea.value = \"\";\n }\n ea.hooks.doAction(\"advancedDataTable.panelAction\", _this4.panel, _this4.model, _this4.view, event);\n };\n }\n\n // init panel\n }, {\n key: \"initPanel\",\n value: function initPanel(panel, model, view) {\n var _this5 = this;\n this.panel = panel;\n this.model = model;\n this.view = view;\n var elClass = \".ea-advanced-data-table-\".concat(this.view.container.args.id);\n var eaTable = this.view.el.querySelector(\".ea-advanced-data-table\" + elClass);\n // init inline edit\n ea.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n\n // init panel action\n ea.hooks.doAction(\"advancedDataTable.initPanelAction\");\n\n // after panel init hook\n ea.hooks.doAction(\"advancedDataTable.afterInitPanel\", panel, model, view);\n model.once(\"editor:close\", function () {\n if (!eaTable) {\n return false;\n }\n // parse table html\n var origTable = _this5.parseHTML(eaTable.cloneNode(true));\n _this5.tableInnerHTML = origTable.innerHTML;\n });\n }\n\n // context menu\n }, {\n key: \"initContextMenu\",\n value: function initContextMenu(groups, element) {\n if (element.options.model.attributes.widgetType == \"eael-advanced-data-table\" && element.options.model.attributes.settings.attributes.ea_adv_data_table_source == \"static\") {\n groups.push({\n name: \"ea_advanced_data_table\",\n actions: [{\n name: \"add_row_above\",\n title: \"Add Row Above\",\n callback: function callback() {\n var _ea$hooks$applyFilter = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter.view,\n table = _ea$hooks$applyFilter.table,\n activeCell = _ea$hooks$applyFilter.activeCell;\n // remove blank tr if any\n jQuery(table).find('tr:empty').each(function () {\n if (jQuery(this).find('td').length == 0) {\n this.remove();\n }\n });\n if (activeCell !== null && activeCell.tagName.toLowerCase() != \"th\" && activeCell.parentNode.rowIndex) {\n var index = activeCell.parentNode.rowIndex;\n var row = table.insertRow(index);\n // insert cells in row\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_row_below\",\n title: \"Add Row Below\",\n callback: function callback() {\n var _ea$hooks$applyFilter2 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter2.view,\n table = _ea$hooks$applyFilter2.table,\n activeCell = _ea$hooks$applyFilter2.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex + 1;\n var row = table.insertRow(index);\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_left\",\n title: \"Add Column Left\",\n callback: function callback() {\n var _ea$hooks$applyFilter3 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter3.view,\n table = _ea$hooks$applyFilter3.table,\n activeCell = _ea$hooks$applyFilter3.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_right\",\n title: \"Add Column Right\",\n callback: function callback() {\n var _ea$hooks$applyFilter4 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter4.view,\n table = _ea$hooks$applyFilter4.table,\n activeCell = _ea$hooks$applyFilter4.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex + 1;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell2 = table.rows[i].insertCell(index);\n\n // init inline editor\n ea.hooks.doAction(\"advancedDataTable.initEditor\", _cell2);\n }\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_row\",\n title: \"Delete Row\",\n callback: function callback() {\n var _ea$hooks$applyFilter5 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter5.view,\n table = _ea$hooks$applyFilter5.table,\n activeCell = _ea$hooks$applyFilter5.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex;\n\n // delete row\n table.deleteRow(index);\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_column\",\n title: \"Delete Column\",\n callback: function callback() {\n var _ea$hooks$applyFilter6 = ea.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _ea$hooks$applyFilter6.view,\n table = _ea$hooks$applyFilter6.table,\n activeCell = _ea$hooks$applyFilter6.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n\n // delete columns\n for (var i = 0; i < table.rows.length; i++) {\n table.rows[i].deleteCell(index);\n }\n\n // remove active cell\n ea.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = ea.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n ea.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n ea.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }]\n });\n }\n return groups;\n }\n }, {\n key: \"triggerTextChange\",\n value: function triggerTextChange(table) {\n if (table.classList.contains(\"ea-advanced-data-table-static\")) {\n var cellSelector = jQuery('thead tr:first-child th:first-child .ql-editor p', table),\n cellSelector = cellSelector.length ? cellSelector : jQuery('tbody tr:first-child td:first-child .ql-editor p', table),\n cellData = cellSelector.html();\n cellSelector.html(cellData + ' ');\n setTimeout(function () {\n cellSelector.html(cellData);\n }, 1100);\n }\n }\n }]);\n}();\nea.hooks.addAction(\"editMode.init\", \"ea\", function () {\n new advancedDataTableEdit();\n});\n\n//# sourceURL=webpack:///./src/js/edit/advanced-data-table.js?"); +eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\"); }\nfunction _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }\nfunction _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", { writable: !1 }), e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar advancedDataTableEdit = /*#__PURE__*/function () {\n function advancedDataTableEdit() {\n _classCallCheck(this, advancedDataTableEdit);\n // class props\n this.panel = null;\n this.model = null;\n this.view = null;\n this.table = null;\n this.tableInnerHTML = null;\n this.timeout = null;\n this.activeCell = null;\n this.dragStartX = null;\n this.dragStartWidth = null;\n this.dragEl = null;\n this.dragging = false;\n\n // register hooks\n eael.hooks.addFilter(\"advancedDataTable.getClassProps\", \"ea\", this.getClassProps.bind(this));\n eael.hooks.addFilter(\"advancedDataTable.setClassProps\", \"ea\", this.setClassProps.bind(this));\n eael.hooks.addFilter(\"advancedDataTable.parseHTML\", \"ea\", this.parseHTML);\n eael.hooks.addAction(\"advancedDataTable.initEditor\", \"ea\", this.initEditor.bind(this));\n eael.hooks.addAction(\"advancedDataTable.updateFromView\", \"ea\", this.updateFromView.bind(this));\n eael.hooks.addAction(\"advancedDataTable.initInlineEdit\", \"ea\", this.initInlineEdit.bind(this));\n eael.hooks.addAction(\"advancedDataTable.initPanelAction\", \"ea\", this.initPanelAction.bind(this));\n eael.hooks.addAction(\"advancedDataTable.triggerTextChange\", \"ea\", this.triggerTextChange.bind(this));\n elementor.hooks.addFilter(\"elements/widget/contextMenuGroups\", this.initContextMenu);\n elementor.hooks.addAction(\"panel/open_editor/widget/eael-advanced-data-table\", this.initPanel.bind(this));\n }\n\n // update model from view\n return _createClass(advancedDataTableEdit, [{\n key: \"updateFromView\",\n value: function updateFromView(view, value) {\n var refresh = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var model = view.model;\n\n // disable elementor remote server render\n model.remoteRender = refresh;\n if (elementor.config.version > \"2.7.6\") {\n var container = view.getContainer();\n var settings = view.getContainer().settings.attributes;\n Object.keys(value).forEach(function (key) {\n settings[key] = value[key];\n });\n parent.window.$e.run(\"document/elements/settings\", {\n container: container,\n settings: settings,\n options: {\n external: refresh\n }\n });\n } else {\n // update backbone model\n Object.keys(value).forEach(function (key) {\n model.setSetting(key, value[key]);\n });\n }\n\n // enable elementor remote server render just after elementor throttle\n // ignore multiple assign\n this.timeout = setTimeout(function () {\n model.remoteRender = true;\n }, 1001);\n }\n\n // get class properties\n }, {\n key: \"getClassProps\",\n value: function getClassProps() {\n return {\n view: this.view,\n model: this.model,\n table: this.table,\n activeCell: this.activeCell\n };\n }\n\n // get class properties\n }, {\n key: \"setClassProps\",\n value: function setClassProps(props) {\n var _this = this;\n Object.keys(props).forEach(function (key) {\n _this[key] = props[key];\n });\n }\n\n // parse table html\n }, {\n key: \"parseHTML\",\n value: function parseHTML(tableHTML) {\n tableHTML.querySelectorAll(\"th, td\").forEach(function (el) {\n if (el.querySelector(\".inline-editor\") !== null) {\n el.innerHTML = decodeURI(el.dataset.quill || \"\");\n delete el.dataset.quill;\n }\n });\n return tableHTML;\n }\n\n // init editor\n }, {\n key: \"initEditor\",\n value: function initEditor(cell) {\n var _this2 = this;\n // init value\n cell.dataset.quill = encodeURI(cell.innerHTML);\n\n // insert editor dom\n cell.innerHTML = \"
\".concat(cell.innerHTML, \"
\");\n\n // init quill\n var quill = new Quill(cell.querySelector(\".inline-editor\"), {\n theme: \"bubble\",\n modules: {\n toolbar: [\"bold\", \"italic\", \"underline\", \"strike\", \"link\", {\n list: \"ordered\"\n }, {\n list: \"bullet\"\n }]\n }\n });\n\n // bind change\n quill.on(\"text-change\", function (delta, oldDelta, source) {\n clearTimeout(_this2.timeout);\n\n // update data\n cell.dataset.quill = encodeURI(quill.root.innerHTML);\n\n // parse table html\n var origTable = _this2.parseHTML(_this2.table.cloneNode(true));\n _this2.tableInnerHTML = origTable.innerHTML;\n // update table\n _this2.updateFromView(_this2.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n });\n }\n\n // init inline editing features\n }, {\n key: \"initInlineEdit\",\n value: function initInlineEdit() {\n var _this3 = this;\n var interval = setInterval(function () {\n if (_this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n // init table\n if (_this3.table !== _this3.view.el.querySelector(\".ea-advanced-data-table\")) {\n _this3.table = _this3.view.el.querySelector(\".ea-advanced-data-table\");\n\n // iniline editor\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n _this3.table.querySelectorAll(\"th, td\").forEach(function (cell) {\n _this3.initEditor(cell);\n });\n }\n\n // mousedown\n _this3.table.addEventListener(\"mousedown\", function (e) {\n e.stopPropagation();\n if (e.target.tagName.toLowerCase() === \"th\") {\n _this3.dragging = true;\n _this3.dragEl = e.target;\n _this3.dragStartX = e.pageX;\n _this3.dragStartWidth = e.target.offsetWidth;\n }\n if (e.target.tagName.toLowerCase() === \"th\" || e.target.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target;\n } else if (e.target.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode;\n } else if (e.target.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode;\n } else if (e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"th\" || e.target.parentNode.parentNode.parentNode.tagName.toLowerCase() === \"td\") {\n _this3.activeCell = e.target.parentNode.parentNode.parentNode;\n }\n });\n\n // mousemove\n _this3.table.addEventListener(\"mousemove\", function (e) {\n if (_this3.dragging) {\n _this3.dragEl.style.width = \"\".concat(_this3.dragStartWidth + (event.pageX - _this3.dragStartX), \"px\");\n }\n });\n\n // mouseup\n _this3.table.addEventListener(\"mouseup\", function (e) {\n if (_this3.dragging) {\n _this3.dragging = false;\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n\n // clear style\n _this3.table.addEventListener(\"dblclick\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n e.stopPropagation();\n clearTimeout(_this3.timeout);\n if (_this3.table.classList.contains(\"ea-advanced-data-table-static\")) {\n // parse table html\n var origTable = _this3.parseHTML(_this3.table.cloneNode(true));\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n } else {\n // th width store\n var widths = [];\n\n // collect width of th\n _this3.table.querySelectorAll(\"th\").forEach(function (el, index) {\n widths[index] = el.style.width;\n });\n\n // update table\n _this3.updateFromView(_this3.view, {\n ea_adv_data_table_dynamic_th_width: widths\n });\n }\n }\n });\n }\n clearInterval(interval);\n }\n }, 500);\n }\n\n // panel action\n }, {\n key: \"initPanelAction\",\n value: function initPanelAction() {\n var _this4 = this;\n this.panel.content.el.onclick = function (event) {\n if (event.target.dataset.event == \"ea:advTable:export\") {\n // export\n var rows = _this4.table.querySelectorAll(\"table tr\");\n var csv = [];\n\n // generate csv\n for (var i = 0; i < rows.length; i++) {\n var row = [];\n var cols = rows[i].querySelectorAll(\"th, td\");\n if (_this4.table.classList.contains(\"ea-advanced-data-table-static\")) {\n for (var j = 0; j < cols.length; j++) {\n var encodedText = decodeURI(cols[j].dataset.quill);\n var modifiedString = encodedText.replace(/\"/g, '\"\"');\n modifiedString = \"\\\"\".concat(modifiedString, \"\\\"\");\n row.push(modifiedString);\n }\n } else {\n for (var _j = 0; _j < cols.length; _j++) {\n row.push(JSON.stringify(cols[_j].innerHTML.replace(/,\"\"\"([^\"]+)\"\"\",/g, ',\"$1\",').trim()));\n }\n }\n csv.push(row.join(\",\"));\n }\n\n // download\n var csv_file = new Blob([csv.join(\"\\n\")], {\n type: \"text/csv\"\n });\n var downloadLink = parent.document.createElement(\"a\");\n downloadLink.classList.add(\"ea-adv-data-table-download-\".concat(_this4.model.attributes.id));\n downloadLink.download = \"ea-adv-data-table-\".concat(_this4.model.attributes.id, \".csv\");\n downloadLink.href = window.URL.createObjectURL(csv_file);\n downloadLink.style.display = \"none\";\n parent.document.body.appendChild(downloadLink);\n downloadLink.click();\n parent.document.querySelector(\".ea-adv-data-table-download-\".concat(_this4.model.attributes.id)).remove();\n } else if (event.target.dataset.event == \"ea:advTable:import\") {\n // import\n var textarea = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string\");\n var enableHeader = _this4.panel.content.el.querySelector(\".ea_adv_table_csv_string_table\").checked;\n var csletr = textarea.value.split(\"\\n\");\n var header = \"\";\n var body = \"\";\n if (textarea.value.length > 0) {\n body += \"\";\n csletr.forEach(function (row, index) {\n var result = [];\n var field = '';\n var inQuotes = false;\n var i = 0;\n while (i < row.length) {\n var _char = row[i];\n if (_char === '\"') {\n if (inQuotes && row[i + 1] === '\"') {\n //Handle escaped double quote\n field += '\"';\n i++;\n } else {\n inQuotes = !inQuotes; //Toggle inQuotes\n }\n } else if (_char === ',' && !inQuotes) {\n //End of field\n result.push(field);\n field = '';\n } else {\n field += _char; //Regular character\n }\n i++;\n }\n result.push(field);\n\n //Generate HTML table\n if (result.length > 0) {\n if (enableHeader && index == 0) {\n header += \"\";\n result.forEach(function (col) {\n header += \"\".concat(col, \"\");\n });\n header += \"\";\n } else {\n body += \"\";\n result.forEach(function (col) {\n body += \"\".concat(col, \"\");\n });\n body += \"\";\n }\n }\n });\n body += \"\";\n if (header.length > 0 || body.length > 0) {\n _this4.tableInnerHTML = header + body;\n _this4.updateFromView(_this4.view, {\n ea_adv_data_table_static_html: header + body\n }, true);\n\n // init inline edit\n var interval = setInterval(function () {\n if (_this4.view.el.querySelector(\".ea-advanced-data-table\").innerHTML == header + body) {\n clearInterval(interval);\n eael.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n }\n }, 500);\n }\n }\n textarea.value = \"\";\n }\n eael.hooks.doAction(\"advancedDataTable.panelAction\", _this4.panel, _this4.model, _this4.view, event);\n };\n }\n\n // init panel\n }, {\n key: \"initPanel\",\n value: function initPanel(panel, model, view) {\n var _this5 = this;\n this.panel = panel;\n this.model = model;\n this.view = view;\n var elClass = \".ea-advanced-data-table-\".concat(this.view.container.args.id);\n var eaTable = this.view.el.querySelector(\".ea-advanced-data-table\" + elClass);\n // init inline edit\n eael.hooks.doAction(\"advancedDataTable.initInlineEdit\");\n\n // init panel action\n eael.hooks.doAction(\"advancedDataTable.initPanelAction\");\n\n // after panel init hook\n eael.hooks.doAction(\"advancedDataTable.afterInitPanel\", panel, model, view);\n model.once(\"editor:close\", function () {\n if (!eaTable) {\n return false;\n }\n // parse table html\n var origTable = _this5.parseHTML(eaTable.cloneNode(true));\n _this5.tableInnerHTML = origTable.innerHTML;\n });\n }\n\n // context menu\n }, {\n key: \"initContextMenu\",\n value: function initContextMenu(groups, element) {\n if (element.options.model.attributes.widgetType == \"eael-advanced-data-table\" && element.options.model.attributes.settings.attributes.ea_adv_data_table_source == \"static\") {\n groups.push({\n name: \"ea_advanced_data_table\",\n actions: [{\n name: \"add_row_above\",\n title: \"Add Row Above\",\n callback: function callback() {\n var _eael$hooks$applyFilt = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt.view,\n table = _eael$hooks$applyFilt.table,\n activeCell = _eael$hooks$applyFilt.activeCell;\n // remove blank tr if any\n jQuery(table).find('tr:empty').each(function () {\n if (jQuery(this).find('td').length == 0) {\n this.remove();\n }\n });\n if (activeCell !== null && activeCell.tagName.toLowerCase() != \"th\" && activeCell.parentNode.rowIndex) {\n var index = activeCell.parentNode.rowIndex;\n var row = table.insertRow(index);\n // insert cells in row\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_row_below\",\n title: \"Add Row Below\",\n callback: function callback() {\n var _eael$hooks$applyFilt2 = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt2.view,\n table = _eael$hooks$applyFilt2.table,\n activeCell = _eael$hooks$applyFilt2.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex + 1;\n var row = table.insertRow(index);\n for (var i = 0; i < table.rows[0].cells.length; i++) {\n var cell = row.insertCell(i);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n }\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_left\",\n title: \"Add Column Left\",\n callback: function callback() {\n var _eael$hooks$applyFilt3 = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt3.view,\n table = _eael$hooks$applyFilt3.table,\n activeCell = _eael$hooks$applyFilt3.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell = table.rows[i].insertCell(index);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", _cell);\n }\n }\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"add_column_right\",\n title: \"Add Column Right\",\n callback: function callback() {\n var _eael$hooks$applyFilt4 = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt4.view,\n table = _eael$hooks$applyFilt4.table,\n activeCell = _eael$hooks$applyFilt4.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex + 1;\n for (var i = 0; i < table.rows.length; i++) {\n if (table.rows[i].cells[0].tagName.toLowerCase() == \"th\") {\n var cell = table.rows[i].insertBefore(document.createElement(\"th\"), table.rows[i].cells[index]);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", cell);\n } else {\n var _cell2 = table.rows[i].insertCell(index);\n\n // init inline editor\n eael.hooks.doAction(\"advancedDataTable.initEditor\", _cell2);\n }\n }\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_row\",\n title: \"Delete Row\",\n callback: function callback() {\n var _eael$hooks$applyFilt5 = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt5.view,\n table = _eael$hooks$applyFilt5.table,\n activeCell = _eael$hooks$applyFilt5.activeCell;\n if (activeCell !== null) {\n var index = activeCell.parentNode.rowIndex;\n\n // delete row\n table.deleteRow(index);\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }, {\n name: \"delete_column\",\n title: \"Delete Column\",\n callback: function callback() {\n var _eael$hooks$applyFilt6 = eael.hooks.applyFilters(\"advancedDataTable.getClassProps\"),\n view = _eael$hooks$applyFilt6.view,\n table = _eael$hooks$applyFilt6.table,\n activeCell = _eael$hooks$applyFilt6.activeCell;\n if (activeCell !== null) {\n var index = activeCell.cellIndex;\n\n // delete columns\n for (var i = 0; i < table.rows.length; i++) {\n table.rows[i].deleteCell(index);\n }\n\n // remove active cell\n eael.hooks.applyFilters(\"advancedDataTable.setClassProps\", {\n activeCell: null\n });\n\n // parse table html\n var origTable = eael.hooks.applyFilters(\"advancedDataTable.parseHTML\", table.cloneNode(true));\n\n // update model\n eael.hooks.doAction(\"advancedDataTable.updateFromView\", view, {\n ea_adv_data_table_static_html: origTable.innerHTML\n });\n\n // trigger text-change event\n eael.hooks.doAction(\"advancedDataTable.triggerTextChange\", table);\n }\n }\n }]\n });\n }\n return groups;\n }\n }, {\n key: \"triggerTextChange\",\n value: function triggerTextChange(table) {\n if (table.classList.contains(\"ea-advanced-data-table-static\")) {\n var cellSelector = jQuery('thead tr:first-child th:first-child .ql-editor p', table),\n cellSelector = cellSelector.length ? cellSelector : jQuery('tbody tr:first-child td:first-child .ql-editor p', table),\n cellData = cellSelector.html();\n cellSelector.html(cellData + ' ');\n setTimeout(function () {\n cellSelector.html(cellData);\n }, 1100);\n }\n }\n }]);\n}();\neael.hooks.addAction(\"editMode.init\", \"ea\", function () {\n new advancedDataTableEdit();\n});\n\n//# sourceURL=webpack:///./src/js/edit/advanced-data-table.js?"); /***/ }) diff --git a/assets/front-end/js/view/filterable-gallery.js b/assets/front-end/js/view/filterable-gallery.js index 0dd4a4017..0dfb88e82 100644 --- a/assets/front-end/js/view/filterable-gallery.js +++ b/assets/front-end/js/view/filterable-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\n function shuffleGalleryItems(items) {\n for (var i = 0; i < items.length - 1; i++) {\n var j = i + Math.floor(Math.random() * (items.length - i));\n var temp = items[j];\n items[j] = items[i];\n items[i] = temp;\n }\n return items;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\n });\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\"),\n $is_randomize = $gallery.data(\"is-randomize\");\n isRTL = $('body').hasClass('rtl');\n if ('yes' === $is_randomize) {\n fg_items = shuffleGalleryItems(fg_items);\n $gallery.empty();\n for (var i = 0; i < $init_show_setting; i++) {\n $gallery.append(fg_items[i]);\n }\n }\n fg_items.splice(0, $init_show_setting);\n\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = item.el.attr('title');\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n if (LoadMoreShow || fg_items.length < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
' + $nomore_text + \"
\");\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n ea.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n ea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (ea.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); +eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\n function shuffleGalleryItems(items) {\n for (var i = 0; i < items.length - 1; i++) {\n var j = i + Math.floor(Math.random() * (items.length - i));\n var temp = items[j];\n items[j] = items[i];\n items[i] = temp;\n }\n return items;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\n });\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\"),\n $is_randomize = $gallery.data(\"is-randomize\");\n isRTL = $('body').hasClass('rtl');\n if ('yes' === $is_randomize) {\n fg_items = shuffleGalleryItems(fg_items);\n $gallery.empty();\n for (var i = 0; i < $init_show_setting; i++) {\n $gallery.append(fg_items[i]);\n }\n }\n fg_items.splice(0, $init_show_setting);\n\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = item.el.attr('title');\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n\n //Fix Safari pop video width issue. \n $('.e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe').on('load', function () {\n // Access the iframe's document\n var iframeDoc = this.contentDocument || this.contentWindow.document;\n var $video = $(iframeDoc).find('video');\n $video.removeClass('mac');\n });\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n var replaceWithDot = buttonFilter.replace('.', '');\n var restOfItem = fg_items.filter(function (galleryItem) {\n return galleryItem.includes(replaceWithDot);\n }).length;\n if (LoadMoreShow || restOfItem < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n if (LoadMoreShow || fg_items.length <= 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
');\n $this.children('.no-more-items-text').text($nomore_text);\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (eael.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); /***/ }) diff --git a/assets/front-end/js/view/filterable-gallery.min.js b/assets/front-end/js/view/filterable-gallery.min.js index 2e6e9d464..b879ccc40 100644 --- a/assets/front-end/js/view/filterable-gallery.min.js +++ b/assets/front-end/js/view/filterable-gallery.min.js @@ -1 +1 @@ -!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,o,i,l=[],f=!0,s=!1;try{if(o=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;f=!1}else for(;!(f=(r=o.call(a)).done)&&(l.push(r.value),l.length!==t);f=!0);}catch(e){s=!0,n=e}finally{try{if(!f&&null!=a.return&&(i=a.return(),Object(i)!==i))return}finally{if(s)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){f=!0,i=e},f:function(){try{l||null==a.return||a.return()}finally{if(f)throw i}}}}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=a.el.attr("title"))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove()}),100)}}}),e.on("click",".control",(function(){var n=t(this);o=t(this).attr("data-filter");var i=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+o,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var f=parseInt(n.data("first-init"));if(!f){n.data("first-init",1);var s=i,u=$items=[];if("string"==typeof w&&(w=k),s=w)break}}catch(e){d.e(e)}finally{d.f()}}u.length>0&&(y=y.filter((function(e,t){return!u.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e);h||y.length<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!f&&$items.length>0?(S.isotope(),g.append($items),S.isotope("appended",$items),S.imagesLoaded().progress((function(){S.isotope("layout")}))):S.isotope(),n.hasClass("all-control")?t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active"):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(o+" .eael-magnific-link").addClass("active"))}));var j=!1;u.on("input",(function(){var o=t(this),l=[];if(!j&&"yes"===g.data("search-all")){var f,s=r(y.entries());try{for(s.s();!(f=s.n()).done;){var u=a(f.value,2),c=(u[0],u[1]);l.push(t(c)[0])}}catch(e){s.e(e)}finally{s.f()}S.isotope(),g.append(l),S.isotope("appended",l),S.imagesLoaded().progress((function(){S.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),j=!0}clearTimeout(i),i=setTimeout((function(){n=new RegExp(o.val(),"gi"),S.isotope()}),600)})),S.imagesLoaded().progress((function(){S.isotope("layout")})),S.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),S.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){S.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var o=t(this),i=g.data("nomore-item-text"),f=(t(".eael-filter-gallery-control",e).length,[]),s=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(s=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===s&&(s="*");var u,c=0,d=[],p=r(y.entries());try{for(p.s();!(u=p.n()).done;){var m=a(u.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(s)&&(++c,f.push(t(h)[0]),d.push(v)),""!==s&&"*"!==s&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),o.hide()),c===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(o.html('
'+i+"
"),setTimeout((function(){o.fadeOut("slow")}),600)),g.append(f),S.isotope("appended",f),S.imagesLoaded().progress((function(){S.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var A=function(e){S.imagesLoaded().progress((function(){S.isotope("layout")}))};ea.hooks.addAction("ea-toggle-triggered","ea",A),ea.hooks.addAction("ea-lightbox-triggered","ea",A),ea.hooks.addAction("ea-advanced-tabs-triggered","ea",A),ea.hooks.addAction("ea-advanced-accordion-triggered","ea",A)}}))}))}}); \ No newline at end of file +!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,o,i,l=[],f=!0,s=!1;try{if(o=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;f=!1}else for(;!(f=(r=o.call(a)).done)&&(l.push(r.value),l.length!==t);f=!0);}catch(e){s=!0,n=e}finally{try{if(!f&&null!=a.return&&(i=a.return(),Object(i)!==i))return}finally{if(s)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){f=!0,i=e},f:function(){try{l||null==a.return||a.return()}finally{if(f)throw i}}}}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=a.el.attr("title"))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove(),t(".e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe").on("load",(function(){var e=this.contentDocument||this.contentWindow.document;t(e).find("video").removeClass("mac")}))}),100)}}}),e.on("click",".control",(function(){var n=t(this);o=t(this).attr("data-filter");var i=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+o,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var f=parseInt(n.data("first-init"));if(!f){n.data("first-init",1);var s=i,c=$items=[];if("string"==typeof w&&(w=k),s=w)break}}catch(e){d.e(e)}finally{d.f()}}c.length>0&&(y=y.filter((function(e,t){return!c.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e),x=o.replace(".",""),C=y.filter((function(e){return e.includes(x)})).length;h||C<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!f&&$items.length>0?(S.isotope(),g.append($items),S.isotope("appended",$items),S.imagesLoaded().progress((function(){S.isotope("layout")}))):S.isotope(),n.hasClass("all-control")?(h||y.length<=1?b.hide():b.show(),t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active")):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(o+" .eael-magnific-link").addClass("active"))}));var j=!1;c.on("input",(function(){var o=t(this),l=[];if(!j&&"yes"===g.data("search-all")){var f,s=r(y.entries());try{for(s.s();!(f=s.n()).done;){var c=a(f.value,2),u=(c[0],c[1]);l.push(t(u)[0])}}catch(e){s.e(e)}finally{s.f()}S.isotope(),g.append(l),S.isotope("appended",l),S.imagesLoaded().progress((function(){S.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),j=!0}clearTimeout(i),i=setTimeout((function(){n=new RegExp(o.val(),"gi"),S.isotope()}),600)})),S.imagesLoaded().progress((function(){S.isotope("layout")})),S.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),S.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){S.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var o=t(this),i=g.data("nomore-item-text"),f=(t(".eael-filter-gallery-control",e).length,[]),s=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(s=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===s&&(s="*");var c,u=0,d=[],p=r(y.entries());try{for(p.s();!(c=p.n()).done;){var m=a(c.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(s)&&(++u,f.push(t(h)[0]),d.push(v)),""!==s&&"*"!==s&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),o.hide()),u===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(o.html('
'),o.children(".no-more-items-text").text(i),setTimeout((function(){o.fadeOut("slow")}),600)),g.append(f),S.isotope("appended",f),S.imagesLoaded().progress((function(){S.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var A=function(e){S.imagesLoaded().progress((function(){S.isotope("layout")}))};eael.hooks.addAction("ea-toggle-triggered","ea",A),eael.hooks.addAction("ea-lightbox-triggered","ea",A),eael.hooks.addAction("ea-advanced-tabs-triggered","ea",A),eael.hooks.addAction("ea-advanced-accordion-triggered","ea",A)}}))}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/general.js b/assets/front-end/js/view/general.js index 51051343d..332a3f78b 100644 --- a/assets/front-end/js/view/general.js +++ b/assets/front-end/js/view/general.js @@ -298,7 +298,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\nea.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\nea.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n ea.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n ea.getToken = function () {\n if (localize.nonce && !ea.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n ea.noncegenerated = true;\n }\n }\n });\n }\n };\n ea.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tab.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.eael = window.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\neael.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n eael.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n eael.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n eael.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n eael.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n eael.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n eael.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\neael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\neael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.eael.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n eael.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (eael.isEditMode) {\n eael.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n eael.getToken = function () {\n if (localize.nonce && !eael.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n eael.noncegenerated = true;\n }\n }\n });\n }\n };\n eael.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tabs.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); /***/ }) diff --git a/assets/front-end/js/view/general.min.js b/assets/front-end/js/view/general.min.js index e572c3edc..29ff76f05 100644 --- a/assets/front-end/js/view/general.min.js +++ b/assets/front-end/js/view/general.min.js @@ -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=101)}({101:function(e,t,r){"use strict";r.r(t);var n=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e){return function(t,r,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var c={callback:i,priority:a,namespace:r};if(e[t]){var s,l=e[t].handlers;for(s=l.length;s>0&&!(a>=l[s-1].priority);s--);s===l.length?l[s]=c:l.splice(s,0,c),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=s&&e.currentIndex++}))}else e[t]={handlers:[c],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var c=e[r].handlers,s=function(t){c[t].namespace===i&&(c.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},l=c.length-1;l>=0;l--)s(l);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var c=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var s=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var a=tab.data("custom-id-offset");a=a?parseFloat(a):0,e("html, body").animate({scrollTop:e(o).offset().top-a},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var l={callback:i,priority:a,namespace:r};if(e[t]){var c,s=e[t].handlers;for(c=s.length;c>0&&!(a>=s[c-1].priority);c--);c===s.length?s[c]=l:s.splice(c,0,l),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=c&&e.currentIndex++}))}else e[t]={handlers:[l],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var l=e[r].handlers,c=function(t){l[t].namespace===i&&(l.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},s=l.length-1;s>=0;s--)c(s);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var l=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var c=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var l=a.data("custom-id-offset");l=l?parseFloat(l):0,e("html, body").animate({scrollTop:e(o).offset().top-l},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t%s %s" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:333, ../includes/templates/admin/general.php:21 -msgid "Unlock an extensive collection of ready WordPress templates, along with full site import & cloud collaboration features" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:349, ../includes/templates/admin/general.php:37 -msgid "Stunning, Ready Website Templates" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:363, ../includes/templates/admin/general.php:53 -msgid "One-Click Full Site Import" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:378, ../includes/templates/admin/general.php:68 -msgid "Add Team Members & Collaborate" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:393, ../includes/templates/admin/general.php:83 -msgid "Templates Cloud with Workspace" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:426, ../includes/Traits/Admin.php:294, ../includes/Traits/Admin.php:429, ../includes/Traits/Helper.php:617, ../includes/templates/admin/integrations.php:83 -msgid "Activate" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:422, ../includes/templates/admin/integrations.php:79 -msgid "Activated" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:419, ../includes/templates/admin/integrations.php:76 -msgid "Install" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:444 -msgid "💪 Make Essential Addons more awesome by being our Contributor" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:451 -msgid "" -"We collect non-sensitive diagnostic data and plugin usage\n" -" information. Your site URL, WordPress & PHP version, plugins &\n" -" themes and email address to send you the discount coupon. This\n" -" data lets us make sure this plugin always stays compatible with\n" -" the most popular plugins and themes. No spam, we promise." -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:460 -msgid "No, Thanks" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:462 -msgid "Count me in" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:482, ../includes/templates/admin/integrations.php:7 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:279, ../includes/Traits/Admin.php:222 msgid "BetterDocs" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:483, ../includes/templates/admin/integrations.php:8 -msgid "BetterDocs will help you to create & organize your documentation page in a beautiful way that will make your visitors find any help article easily." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:280, ../includes/Traits/Admin.php:223 +msgid "Create and organize your knowledge base, FAQ & documentation page efficiently, making it easy for visitors to find any helpful article quickly and effortlessly." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:489, ../includes/Elements/EmbedPress.php:19, ../includes/templates/admin/integrations.php:14 -msgid "EmbedPress" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:288, ../includes/Traits/Admin.php:230 +msgid "BetterLinks" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:490, ../includes/templates/admin/integrations.php:15 -msgid "EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site. " +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:289, ../includes/Traits/Admin.php:231 +msgid "Link Shortening tool to create, shorten & manage any URL. It helps to cross promote brands & products and gather analytics reports while running marketing campaigns." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:496, ../includes/templates/admin/integrations.php:21 -msgid "NotificationX" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:297, ../includes/Elements/Better_Payment.php:19, ../includes/Traits/Admin.php:238 +msgid "Better Payment" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:497, ../includes/templates/admin/integrations.php:22 -msgid "Best FOMO Social Proof Plugin to boost your sales conversion. Create stunning Sales Popup & Notification Bar With Elementor Support." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:298, ../includes/Traits/Admin.php:239 +msgid "Streamline transactions in Elementor by integrating PayPal & Stripe. Experience advanced analytics, validation, and Elementor forms for secure & efficient payments." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:503, ../includes/templates/admin/integrations.php:28 -msgid "easy.jobs" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:306, ../includes/Traits/Admin.php:246 +msgid "NotificationX" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:504, ../includes/templates/admin/integrations.php:29 -msgid "Easy solution for the job recruitment to attract, manage & hire right talent faster. The Best Talent Recruitment Suite which lets you manage jobs & career page in Elementor." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:307, ../includes/Traits/Admin.php:247 +msgid "Best FOMO & social proof plugin to boost sales conversion by creating stunning sales popups, growth & discount alerts, flashing tabs, notification bars & more." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:510, ../includes/templates/admin/integrations.php:35 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:315, ../includes/Traits/Admin.php:254 msgid "SchedulePress" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:511, ../includes/templates/admin/integrations.php:36 -msgid "Best Content Marketing Tool For WordPress – Schedule, Organize, & Auto Share Blog Posts. Take a quick glance at your content planning with Schedule Calendar, Auto & Manual Scheduler and more." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:316, ../includes/Traits/Admin.php:255 +msgid "Advanced content marketing tool for WordPress to schedule posts & pages with Schedule Calendar, Auto & Manual Scheduler, etc. It also allows auto-social sharing." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/templates/admin/integrations.php:42 -msgid "BetterLinks" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Admin.php:262 +msgid "easy.jobs" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:518, ../includes/templates/admin/integrations.php:43 -msgid "Best Link Shortening tool to create, shorten and manage any URL to help you cross-promote your brands & products. Gather analytics reports, run successfully marketing campaigns easily & many more." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:325, ../includes/Traits/Admin.php:263 +msgid "Job recruitment tool to attract, manage, and hire the right talent faster. This talent recruitment solution lets you manage jobs and career pages in Elementor." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:524, ../includes/Traits/Helper.php:622, ../includes/templates/admin/integrations.php:49 -msgid "Essential Blocks" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:333, ../includes/Elements/EmbedPress.php:19, ../includes/Traits/Admin.php:270 +msgid "EmbedPress" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:525, ../includes/templates/admin/integrations.php:50 -msgid "Enhance your Gutenberg experience with 40+ unique blocks (more coming soon). Add power to the block editor using our easy-to-use blocks which are designed to make your next WordPress page or posts design easier and prettier than ever before." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:334, ../includes/Traits/Admin.php:271 +msgid "Embed videos, images, gifs, charts, docs, maps, audio, live streams, pdf & more from 150+ sources into your WordPress site and get seamless customization options." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:531, ../includes/Elements/Better_Payment.php:19, ../includes/templates/admin/integrations.php:56 -msgid "Better Payment" +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:342, ../includes/Traits/Admin.php:278, ../includes/Traits/Helper.php:620 +msgid "Essential Blocks" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:532, ../includes/templates/admin/integrations.php:57 -msgid "Better Payment streamlines transactions in Elementor, integrating PayPal, Stripe, advanced analytics, validation, and Elementor forms for the most secure & efficient payments." +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:343, ../includes/Traits/Admin.php:279 +msgid "Enhance Gutenberg experience with 50+ unique blocks (more coming soon). Boost your block editor with easy-to-use blocks for a simpler WordPress page or post design." msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:638, ../includes/templates/admin/elements.php:5 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:470, ../includes/Traits/Admin.php:663 msgid "Content Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:642, ../includes/Elements/Creative_Button.php:32, ../includes/templates/admin/elements.php:9 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:474, ../includes/Elements/Creative_Button.php:32, ../includes/Traits/Admin.php:668 msgid "Creative Button" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:647, ../includes/Elements/Team_Member.php:26, ../includes/templates/admin/elements.php:15 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:479, ../includes/Elements/Team_Member.php:26, ../includes/Traits/Admin.php:675 msgid "Team Member" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:652, ../includes/Elements/Testimonial.php:24, ../includes/templates/admin/elements.php:22 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:484, ../includes/Elements/Testimonial.php:24, ../includes/Traits/Admin.php:683 msgid "Testimonial" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:657, ../includes/Elements/Flip_Box.php:33, ../includes/templates/admin/elements.php:28 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:489, ../includes/Elements/Flip_Box.php:33, ../includes/Traits/Admin.php:691 msgid "Flip Box" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:662, ../includes/Elements/Info_Box.php:30, ../includes/templates/admin/elements.php:34 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:494, ../includes/Elements/Info_Box.php:30, ../includes/Traits/Admin.php:698 msgid "Info Box" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:667, ../includes/Elements/Dual_Color_Header.php:29, ../includes/templates/admin/elements.php:40 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:499, ../includes/Elements/Dual_Color_Header.php:29, ../includes/Traits/Admin.php:705 msgid "Dual Color Heading" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:672, ../includes/Elements/Pricing_Table.php:1545, ../includes/Elements/Tooltip.php:26, ../includes/templates/admin/elements.php:46 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:504, ../includes/Elements/Pricing_Table.php:1546, ../includes/Elements/Tooltip.php:26, ../includes/Traits/Admin.php:712 msgid "Tooltip" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:677, ../includes/Elements/Adv_Accordion.php:31, ../includes/templates/admin/elements.php:52 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:509, ../includes/Elements/Adv_Accordion.php:31, ../includes/Traits/Admin.php:719 msgid "Advanced Accordion" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:682, ../includes/Elements/Adv_Tabs.php:31, ../includes/templates/admin/elements.php:59 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:514, ../includes/Elements/Adv_Tabs.php:31, ../includes/Traits/Admin.php:726 msgid "Advanced Tabs" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:687, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1261, ../includes/templates/admin/elements.php:66 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:519, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1262, ../includes/Traits/Admin.php:734 msgid "Feature List" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:693, ../includes/Elements/Sticky_Video.php:27, ../includes/templates/admin/elements.php:116 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:525, ../includes/Elements/Sticky_Video.php:27, ../includes/Traits/Admin.php:793 msgid "Sticky Video" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:698, ../includes/Classes/WPDeveloper_Setup_Wizard.php:928, ../includes/Elements/Event_Calendar.php:39, ../includes/templates/admin/elements.php:123, ../includes/templates/admin/go-pro.php:69 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:530, ../includes/Elements/Event_Calendar.php:39, ../includes/Traits/Admin.php:800 msgid "Event Calendar" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:703, ../includes/Elements/Simple_Menu.php:33, ../includes/templates/admin/elements.php:130 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:535, ../includes/Elements/Simple_Menu.php:33, ../includes/Traits/Admin.php:808 msgid "Simple Menu" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:709, ../includes/templates/admin/elements.php:145 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:541, ../includes/Traits/Admin.php:824 msgid "Dynamic Content Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:713, ../includes/Elements/Post_Grid.php:33, ../includes/templates/admin/elements.php:149 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:545, ../includes/Elements/Post_Grid.php:33, ../includes/Traits/Admin.php:829 msgid "Post Grid" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:718, ../includes/Elements/Post_Timeline.php:31, ../includes/templates/admin/elements.php:156 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:550, ../includes/Elements/Post_Timeline.php:31, ../includes/Traits/Admin.php:837 msgid "Post Timeline" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:722, ../includes/Elements/Data_Table.php:32, ../includes/templates/admin/elements.php:162 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:554, ../includes/Elements/Data_Table.php:32, ../includes/Traits/Admin.php:844 msgid "Data Table" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:727, ../includes/Elements/Advanced_Data_Table.php:26, ../includes/templates/admin/elements.php:168 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:559, ../includes/Elements/Advanced_Data_Table.php:26, ../includes/Traits/Admin.php:851 msgid "Advanced Data Table" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:731, ../includes/Elements/Content_Ticker.php:30, ../includes/templates/admin/elements.php:175 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:563, ../includes/Elements/Content_Ticker.php:30, ../includes/Traits/Admin.php:859 msgid "Content Ticker" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:736, ../includes/Elements/NFT_Gallery.php:31, ../includes/Elements/NFT_Gallery.php:2397, ../includes/Elements/NFT_Gallery.php:2522, ../includes/templates/admin/elements.php:228 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:568, ../includes/Elements/NFT_Gallery.php:31, ../includes/Elements/NFT_Gallery.php:2397, ../includes/Elements/NFT_Gallery.php:2522, ../includes/Traits/Admin.php:920 msgid "NFT Gallery" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:741, ../includes/Elements/Business_Reviews.php:37, ../includes/templates/admin/elements.php:235 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:573, ../includes/Elements/Business_Reviews.php:37, ../includes/Traits/Admin.php:928 msgid "Business Reviews" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:746, ../includes/templates/admin/elements.php:244 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:578, ../includes/Traits/Admin.php:937 msgid "Creative Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:750, ../includes/Elements/Countdown.php:27, ../includes/templates/admin/elements.php:248 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:582, ../includes/Elements/Countdown.php:27, ../includes/Traits/Admin.php:942 msgid "Countdown" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:755, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:70, ../includes/templates/admin/elements.php:254 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:587, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:74, ../includes/Traits/Admin.php:949 msgid "Fancy Text" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:760, ../includes/Elements/Filterable_Gallery.php:36, ../includes/templates/admin/elements.php:261 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:592, ../includes/Elements/Filterable_Gallery.php:36, ../includes/Traits/Admin.php:956 msgid "Filterable Gallery" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:765, ../includes/Elements/Image_Accordion.php:26, ../includes/templates/admin/elements.php:268 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:597, ../includes/Elements/Image_Accordion.php:26, ../includes/Traits/Admin.php:964 msgid "Image Accordion" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:770, ../includes/Elements/GravityForms.php:581, ../includes/Elements/GravityForms.php:647, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:127, ../includes/Elements/Progress_Bar.php:179, ../includes/templates/admin/elements.php:274 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:602, ../includes/Elements/GravityForms.php:581, ../includes/Elements/GravityForms.php:647, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:131, ../includes/Elements/Progress_Bar.php:183, ../includes/Traits/Admin.php:971 msgid "Progress Bar" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:775, ../includes/Elements/Interactive_Circle.php:26, ../includes/templates/admin/elements.php:369 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:607, ../includes/Elements/Interactive_Circle.php:26, ../includes/Traits/Admin.php:1080 msgid "Interactive Circle" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:780, ../includes/Elements/SVG_Draw.php:24, ../includes/templates/admin/elements.php:376 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:612, ../includes/Elements/SVG_Draw.php:24, ../includes/Traits/Admin.php:1088 msgid "SVG Draw" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:785, ../includes/Traits/Elements.php:346, ../includes/templates/admin/elements.php:383 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:617, ../includes/Traits/Admin.php:1095, ../includes/Traits/Elements.php:347 msgid "Fancy Chart" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:791 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:623 msgid "Marketing & Social Feed Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:795, ../includes/templates/admin/elements.php:396 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:627, ../includes/Traits/Admin.php:1109 msgid "Call To Action" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:800, ../includes/Elements/Pricing_Table.php:33, ../includes/templates/admin/elements.php:402 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:632, ../includes/Elements/Pricing_Table.php:33, ../includes/Traits/Admin.php:1116 msgid "Pricing Table" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:805, ../includes/templates/admin/elements.php:504 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:637, ../includes/Traits/Admin.php:1234 msgid "Twitter Feed" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:810, ../includes/Elements/Facebook_Feed.php:28, ../includes/templates/admin/elements.php:526 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:642, ../includes/Elements/Facebook_Feed.php:28, ../includes/Traits/Admin.php:1259 msgid "Facebook Feed" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:817, ../includes/templates/admin/elements.php:417 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:649, ../includes/Traits/Admin.php:1133 msgid "Form Styler Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:821, ../includes/Elements/Contact_Form_7.php:43, ../includes/templates/admin/elements.php:421 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:653, ../includes/Elements/Contact_Form_7.php:43, ../includes/Traits/Admin.php:1138 msgid "Contact Form 7" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:826, ../includes/templates/admin/elements.php:427 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:658, ../includes/Traits/Admin.php:1145 msgid "weForms" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:830, ../includes/templates/admin/elements.php:433 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:662, ../includes/Traits/Admin.php:1152 msgid "Ninja Form" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:834, ../includes/templates/admin/elements.php:439 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:666, ../includes/Traits/Admin.php:1159 msgid "Gravity Form" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:838, ../includes/Elements/Caldera_Forms.php:96, ../includes/templates/admin/elements.php:446 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:670, ../includes/Elements/Caldera_Forms.php:96, ../includes/Traits/Admin.php:1167 msgid "Caldera Form" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:842, ../includes/Elements/WpForms.php:27, ../includes/Elements/WpForms.php:87, ../includes/templates/admin/elements.php:452 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:674, ../includes/Elements/WpForms.php:27, ../includes/Elements/WpForms.php:87, ../includes/Traits/Admin.php:1174 msgid "WPForms" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:846, ../includes/Elements/FluentForm.php:30, ../includes/templates/admin/elements.php:458 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:678, ../includes/Elements/FluentForm.php:30, ../includes/Traits/Admin.php:1181 msgid "Fluent Forms" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:850, ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/templates/admin/elements.php:464 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:682, ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/Traits/Admin.php:1189 msgid "Formstack" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:854, ../includes/Elements/TypeForm.php:24, ../includes/Elements/TypeForm.php:125, ../includes/Elements/TypeForm.php:131, ../includes/templates/admin/elements.php:470 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:686, ../includes/Elements/TypeForm.php:24, ../includes/Elements/TypeForm.php:125, ../includes/Elements/TypeForm.php:131, ../includes/Traits/Admin.php:1196 msgid "Typeform" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:858 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:690 msgid "Login Register Form" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:864, ../includes/templates/admin/elements.php:546 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:696, ../includes/Traits/Admin.php:1283 msgid "Documentation Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:868, ../includes/Elements/Betterdocs_Category_Grid.php:30, ../includes/templates/admin/elements.php:550 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:700, ../includes/Elements/Betterdocs_Category_Grid.php:30, ../includes/Traits/Admin.php:1288 msgid "BetterDocs Category Grid" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:872, ../includes/Elements/Betterdocs_Category_Box.php:34, ../includes/templates/admin/elements.php:556 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:704, ../includes/Elements/Betterdocs_Category_Box.php:34, ../includes/Traits/Admin.php:1296 msgid "BetterDocs Category Box" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:877, ../includes/Elements/Betterdocs_Search_Form.php:29, ../includes/templates/admin/elements.php:562 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:709, ../includes/Elements/Betterdocs_Search_Form.php:29, ../includes/Traits/Admin.php:1303 msgid "BetterDocs Search Form" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:882, ../includes/templates/admin/elements.php:569 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:714, ../includes/Traits/Admin.php:1311 msgid "WooCommerce Elements" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:886, ../includes/Elements/Product_Grid.php:61, ../includes/templates/admin/elements.php:573 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:718, ../includes/Elements/Product_Grid.php:61, ../includes/Traits/Admin.php:1316 msgid "Woo Product Grid" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:891, ../includes/Elements/Woo_Product_List.php:50, ../includes/templates/admin/elements.php:580 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:723, ../includes/Elements/Woo_Product_List.php:50, ../includes/Traits/Admin.php:1324 msgid "Woo Product List" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:896, ../includes/Elements/Woo_Product_Carousel.php:63, ../includes/templates/admin/elements.php:601 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:728, ../includes/Elements/Woo_Product_Carousel.php:63, ../includes/Traits/Admin.php:1348 msgid "Woo Product Carousel" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:900, ../includes/Elements/Woo_Checkout.php:52, ../includes/templates/admin/elements.php:608 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:732, ../includes/Elements/Woo_Checkout.php:52, ../includes/Traits/Admin.php:1356 msgid "Woo Checkout" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:904, ../includes/Elements/Woo_Cart.php:67, ../includes/templates/admin/elements.php:615 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:736, ../includes/Controls/Select2.php:45, ../includes/Elements/Woo_Cart.php:67, ../includes/Traits/Admin.php:1364 msgid "Woo Cart" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:908, ../includes/Traits/Elements.php:334, ../includes/templates/admin/elements.php:630 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:740, ../includes/Traits/Admin.php:483, ../includes/Traits/Admin.php:1379, ../includes/Traits/Elements.php:335 msgid "Woo Cross Sells" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:912, ../includes/Elements/Woo_Product_Compare.php:34, ../includes/templates/admin/elements.php:638 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:744, ../includes/Elements/Woo_Product_Compare.php:34, ../includes/Traits/Admin.php:1387 msgid "Woo Product Compare" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:917, ../includes/Elements/Woo_Product_Gallery.php:49, ../includes/templates/admin/elements.php:644 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:749, ../includes/Elements/Woo_Product_Gallery.php:49, ../includes/Traits/Admin.php:1394 msgid "Woo Product Gallery" msgstr "" -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:933, ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Business_Reviews.php:2131, ../includes/Elements/Login_Register.php:1621, ../includes/Elements/Login_Register.php:4346, ../includes/Elements/Woo_Product_Carousel.php:2684, ../includes/Traits/Elements.php:298, ../includes/templates/admin/elements.php:87, ../includes/templates/admin/go-pro.php:75 -msgid "Toggle" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:938, ../includes/templates/admin/elements.php:181, ../includes/templates/admin/go-pro.php:82 -msgid "Advanced Google Map" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:943, ../includes/Traits/Elements.php:160, ../includes/templates/admin/elements.php:220, ../includes/templates/admin/go-pro.php:88 -msgid "Dynamic Gallery" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:948, ../includes/Traits/Elements.php:184, ../includes/templates/admin/elements.php:348, ../includes/templates/admin/go-pro.php:94 -msgid "Image Hotspots" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:953, ../includes/templates/admin/go-pro.php:100 -msgid "Lightbox and Modal" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:958, ../includes/Traits/Elements.php:232, ../includes/templates/admin/elements.php:482 -msgid "Mailchimp" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:963, ../includes/Traits/Elements.php:196, ../includes/templates/admin/elements.php:518, ../includes/templates/admin/go-pro.php:112 -msgid "Instagram Feed" -msgstr "" - -#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:978 +#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:765 msgid "Quick Setup Wizard- Essential Addons" msgstr "" @@ -678,19 +501,19 @@ msgstr "" msgid "Remove" msgstr "" -#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:237, ../includes/Elements/Adv_Tabs.php:264, ../includes/Elements/Data_Table.php:162, ../includes/Elements/Data_Table.php:194, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:168, ../includes/Elements/Filterable_Gallery.php:769, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:445, ../includes/Elements/Info_Box.php:111, ../includes/Elements/NFT_Gallery.php:1035, ../includes/Elements/NFT_Gallery.php:1354, ../includes/Elements/NFT_Gallery.php:1602, ../includes/Elements/Post_Grid.php:123, ../includes/Elements/Post_Timeline.php:239, ../includes/Elements/Tooltip.php:83, ../includes/Elements/Tooltip.php:180, ../includes/Elements/Woo_Cart.php:194, ../includes/Elements/Woo_Product_List.php:536, ../includes/Elements/Woo_Product_List.php:1321, ../includes/Elements/Woo_Product_List.php:1388, ../includes/Traits/Controls.php:629, ../includes/Traits/Controls.php:911, ../includes/Traits/Controls.php:1049, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71 +#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:241, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Data_Table.php:166, ../includes/Elements/Data_Table.php:198, ../includes/Elements/Feature_List.php:86, ../includes/Elements/Feature_List.php:172, ../includes/Elements/Filterable_Gallery.php:773, ../includes/Elements/Flip_Box.php:209, ../includes/Elements/Flip_Box.php:449, ../includes/Elements/Info_Box.php:115, ../includes/Elements/NFT_Gallery.php:1035, ../includes/Elements/NFT_Gallery.php:1354, ../includes/Elements/NFT_Gallery.php:1602, ../includes/Elements/Post_Grid.php:123, ../includes/Elements/Post_Timeline.php:239, ../includes/Elements/Tooltip.php:87, ../includes/Elements/Tooltip.php:184, ../includes/Elements/Woo_Cart.php:194, ../includes/Elements/Woo_Product_List.php:602, ../includes/Elements/Woo_Product_List.php:1467, ../includes/Elements/Woo_Product_List.php:1534, ../includes/Traits/Controls.php:672, ../includes/Traits/Controls.php:1004, ../includes/Traits/Controls.php:1142, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71 msgid "Image" msgstr "" -#: ../includes/Controls/Select2.php:31, ../includes/Elements/Filterable_Gallery.php:2241, ../includes/Elements/GravityForms.php:1368, ../includes/Elements/NFT_Gallery.php:1220, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:226, ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:2648, ../includes/Elements/Woo_Cart.php:196, ../includes/Elements/Woo_Cart.php:397, ../includes/Elements/Woo_Cart.php:563, ../includes/Elements/Woo_Cart.php:578, ../includes/Elements/Woo_Checkout.php:251, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1671, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:1879, ../includes/Elements/Woo_Product_List.php:145, ../includes/Elements/Woo_Product_List.php:314, ../includes/Elements/Woo_Product_List.php:1612, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79 +#: ../includes/Controls/Select2.php:31, ../includes/Elements/Filterable_Gallery.php:2245, ../includes/Elements/GravityForms.php:1368, ../includes/Elements/NFT_Gallery.php:1220, ../includes/Elements/Pricing_Table.php:223, ../includes/Elements/Pricing_Table.php:230, ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:2789, ../includes/Elements/Woo_Cart.php:196, ../includes/Elements/Woo_Cart.php:397, ../includes/Elements/Woo_Cart.php:563, ../includes/Elements/Woo_Cart.php:578, ../includes/Elements/Woo_Checkout.php:267, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1714, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:2031, ../includes/Elements/Woo_Product_List.php:145, ../includes/Elements/Woo_Product_List.php:363, ../includes/Elements/Woo_Product_List.php:1758, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79 msgid "Price" msgstr "" -#: ../includes/Controls/Select2.php:32, ../includes/Elements/Product_Grid.php:2797, ../includes/Elements/Woo_Cart.php:197, ../includes/Elements/Woo_Cart.php:401, ../includes/Elements/Woo_Cart.php:637, ../includes/Elements/Woo_Cart.php:652, ../includes/Elements/Woo_Checkout.php:231, ../includes/Elements/Woo_Product_Carousel.php:1832, ../includes/Elements/Woo_Product_Gallery.php:2069, ../includes/Elements/Woo_Product_List.php:2882 +#: ../includes/Controls/Select2.php:32, ../includes/Elements/Product_Grid.php:2938, ../includes/Elements/Woo_Cart.php:197, ../includes/Elements/Woo_Cart.php:401, ../includes/Elements/Woo_Cart.php:637, ../includes/Elements/Woo_Cart.php:652, ../includes/Elements/Woo_Checkout.php:247, ../includes/Elements/Woo_Product_Carousel.php:1875, ../includes/Elements/Woo_Product_Gallery.php:2221, ../includes/Elements/Woo_Product_List.php:3028 msgid "Quantity" msgstr "" -#: ../includes/Controls/Select2.php:33, ../includes/Elements/Woo_Cart.php:198, ../includes/Elements/Woo_Cart.php:718, ../includes/Elements/Woo_Cart.php:733, ../includes/Elements/Woo_Checkout.php:268, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:241, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:479 +#: ../includes/Controls/Select2.php:33, ../includes/Elements/Woo_Cart.php:198, ../includes/Elements/Woo_Cart.php:718, ../includes/Elements/Woo_Cart.php:733, ../includes/Elements/Woo_Checkout.php:284, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:241, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:479 msgid "Subtotal" msgstr "" @@ -726,11 +549,27 @@ msgstr "" msgid "Visit Count" msgstr "" +#: ../includes/Controls/Select2.php:42 +msgid "URL Contains" +msgstr "" + +#: ../includes/Controls/Select2.php:43, ../includes/Elements/Product_Grid.php:423 +msgid "Archive" +msgstr "" + +#: ../includes/Controls/Select2.php:44 +msgid "Woo Products" +msgstr "" + +#: ../includes/Controls/Select2.php:46 +msgid "Woo Orders" +msgstr "" + #: ../includes/Elements/Advanced_Data_Table.php:73 msgid "Data Source" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:80, ../includes/Elements/Business_Reviews.php:99, ../includes/Elements/Event_Calendar.php:94, ../includes/Elements/Facebook_Feed.php:126, ../includes/Elements/NFT_Gallery.php:78, ../includes/Elements/Product_Grid.php:362, ../includes/Elements/Sticky_Video.php:144, ../includes/Elements/SVG_Draw.php:81, ../includes/Elements/Woo_Product_Gallery.php:385, ../includes/Elements/Woo_Product_List.php:393, ../includes/Traits/Controls.php:67 +#: ../includes/Elements/Advanced_Data_Table.php:80, ../includes/Elements/Business_Reviews.php:99, ../includes/Elements/Event_Calendar.php:94, ../includes/Elements/Facebook_Feed.php:126, ../includes/Elements/NFT_Gallery.php:78, ../includes/Elements/Product_Grid.php:417, ../includes/Elements/Sticky_Video.php:148, ../includes/Elements/SVG_Draw.php:85, ../includes/Elements/Woo_Product_Gallery.php:409, ../includes/Elements/Woo_Product_List.php:442, ../includes/Traits/Controls.php:67 msgid "Source" msgstr "" @@ -774,7 +613,7 @@ msgstr "" msgid "TablePress" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:110, ../includes/Elements/Event_Calendar.php:139, ../includes/Elements/Progress_Bar.php:111, ../includes/Elements/Woo_Cart.php:160, ../includes/Elements/Woo_Checkout.php:144 +#: ../includes/Elements/Advanced_Data_Table.php:110, ../includes/Elements/Event_Calendar.php:139, ../includes/Elements/Progress_Bar.php:115, ../includes/Elements/Woo_Cart.php:160, ../includes/Elements/Woo_Checkout.php:160 msgid "Only Available in Pro Version!" msgstr "" @@ -786,11 +625,11 @@ msgstr "" msgid "Sort" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Event_Calendar.php:957, ../includes/Elements/Filterable_Gallery.php:2591, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:1095, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:1442, ../includes/Elements/Login_Register.php:1050, ../includes/Elements/Login_Register.php:2009, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:944, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Checkout.php:711, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:905 +#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Event_Calendar.php:957, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:1095, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:1442, ../includes/Elements/Login_Register.php:1050, ../includes/Elements/Login_Register.php:2009, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:944, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Checkout.php:727, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:909 msgid "Placeholder" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:183, ../includes/Elements/Advanced_Data_Table.php:1075, ../includes/Elements/Event_Calendar.php:1255, ../includes/Elements/Event_Calendar.php:1720, ../includes/Elements/Facebook_Feed.php:456, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/Formstack.php:1598, ../includes/Elements/Product_Grid.php:2287, ../includes/Elements/Product_Grid.php:2339 +#: ../includes/Elements/Advanced_Data_Table.php:183, ../includes/Elements/Advanced_Data_Table.php:1075, ../includes/Elements/Event_Calendar.php:1255, ../includes/Elements/Event_Calendar.php:1720, ../includes/Elements/Facebook_Feed.php:456, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/Formstack.php:1598, ../includes/Elements/Product_Grid.php:2428, ../includes/Elements/Product_Grid.php:2480 msgid "Pagination" msgstr "" @@ -798,11 +637,11 @@ msgstr "" msgid "Pagination Type" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:196, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Betterdocs_Category_Grid.php:1293, ../includes/Elements/Event_Calendar.php:2048, ../includes/Elements/Flip_Box.php:675, ../includes/Elements/FluentForm.php:1970, ../includes/Elements/Formstack.php:1777, ../includes/Elements/Info_Box.php:362, ../includes/Elements/Interactive_Circle.php:85, ../includes/Elements/Interactive_Circle.php:172, ../includes/Elements/NFT_Gallery.php:477, ../includes/Elements/NFT_Gallery.php:1846, ../includes/Elements/Pricing_Table.php:550, ../includes/Elements/Pricing_Table.php:1903, ../includes/Elements/Product_Grid.php:1990, ../includes/Elements/Woo_Cart.php:1870, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Checkout.php:1618, ../includes/Elements/Woo_Checkout.php:1989, ../includes/Elements/Woo_Checkout.php:2848, ../includes/Elements/Woo_Product_Carousel.php:1425, ../includes/Elements/Woo_Product_Gallery.php:1727, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261 +#: ../includes/Elements/Advanced_Data_Table.php:196, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Betterdocs_Category_Grid.php:1293, ../includes/Elements/Event_Calendar.php:2048, ../includes/Elements/Flip_Box.php:679, ../includes/Elements/FluentForm.php:1970, ../includes/Elements/Formstack.php:1777, ../includes/Elements/Info_Box.php:367, ../includes/Elements/Interactive_Circle.php:89, ../includes/Elements/Interactive_Circle.php:176, ../includes/Elements/NFT_Gallery.php:477, ../includes/Elements/NFT_Gallery.php:1846, ../includes/Elements/Pricing_Table.php:554, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Product_Grid.php:903, ../includes/Elements/Product_Grid.php:2131, ../includes/Elements/Woo_Cart.php:1870, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Checkout.php:1659, ../includes/Elements/Woo_Checkout.php:2030, ../includes/Elements/Woo_Checkout.php:2901, ../includes/Elements/Woo_Product_Carousel.php:1468, ../includes/Elements/Woo_Product_Gallery.php:684, ../includes/Elements/Woo_Product_Gallery.php:1879, ../includes/Elements/Woo_Product_List.php:262, ../includes/Traits/Controls.php:792, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261 msgid "Button" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:197, ../includes/Elements/Product_Grid.php:526 +#: ../includes/Elements/Advanced_Data_Table.php:197, ../includes/Elements/Product_Grid.php:581 msgid "Select" msgstr "" @@ -822,11 +661,11 @@ msgstr "" msgid "Export/Import" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:245, ../includes/Elements/Data_Table.php:490 +#: ../includes/Elements/Advanced_Data_Table.php:245, ../includes/Elements/Data_Table.php:494 msgid "Export table as CSV file" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:247, ../includes/Elements/Data_Table.php:483, ../includes/Elements/Data_Table.php:492 +#: ../includes/Elements/Advanced_Data_Table.php:247, ../includes/Elements/Data_Table.php:487, ../includes/Elements/Data_Table.php:496 msgid "Export" msgstr "" @@ -850,19 +689,19 @@ msgstr "" msgid "Table" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2140, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:475, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:1188, ../includes/Elements/Dual_Color_Header.php:755, ../includes/Elements/Dual_Color_Header.php:835, ../includes/Elements/Event_Calendar.php:1355, ../includes/Elements/Filterable_Gallery.php:2456, ../includes/Elements/Filterable_Gallery.php:2619, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:599, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:399, ../includes/Elements/Sticky_Video.php:487, ../includes/Elements/Sticky_Video.php:571, ../includes/Elements/SVG_Draw.php:137, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1433, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Carousel.php:2466, ../includes/Elements/Woo_Product_Carousel.php:2546, ../includes/Elements/Woo_Product_Gallery.php:1243, ../includes/Elements/Woo_Product_List.php:1337, ../includes/Elements/Woo_Product_List.php:1434, ../includes/Elements/WpForms.php:1172, ../includes/Elements/WpForms.php:1186, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 +#: ../includes/Elements/Advanced_Data_Table.php:328, ../includes/Elements/Advanced_Data_Table.php:891, ../includes/Elements/Advanced_Data_Table.php:1086, ../includes/Elements/Betterdocs_Search_Form.php:323, ../includes/Elements/Business_Reviews.php:2154, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Caldera_Forms.php:1178, ../includes/Elements/Contact_Form_7.php:1201, ../includes/Elements/Contact_Form_7.php:1215, ../includes/Elements/Creative_Button.php:479, ../includes/Elements/Data_Table.php:546, ../includes/Elements/Data_Table.php:1192, ../includes/Elements/Dual_Color_Header.php:734, ../includes/Elements/Dual_Color_Header.php:814, ../includes/Elements/Event_Calendar.php:1355, ../includes/Elements/Filterable_Gallery.php:2460, ../includes/Elements/Filterable_Gallery.php:2623, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/FluentForm.php:1528, ../includes/Elements/Formstack.php:1400, ../includes/Elements/Formstack.php:1414, ../includes/Elements/GravityForms.php:2095, ../includes/Elements/GravityForms.php:2212, ../includes/Elements/GravityForms.php:2226, ../includes/Elements/GravityForms.php:2471, ../includes/Elements/Interactive_Circle.php:641, ../includes/Elements/Login_Register.php:2567, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:3146, ../includes/Elements/NFT_Gallery.php:1044, ../includes/Elements/NFT_Gallery.php:1359, ../includes/Elements/NFT_Gallery.php:1607, ../includes/Elements/NFT_Gallery.php:1863, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/NinjaForms.php:1342, ../includes/Elements/Progress_Bar.php:403, ../includes/Elements/Sticky_Video.php:491, ../includes/Elements/Sticky_Video.php:575, ../includes/Elements/SVG_Draw.php:141, ../includes/Elements/Twitter_Feed.php:1084, ../includes/Elements/Woo_Cart.php:457, ../includes/Elements/Woo_Cart.php:616, ../includes/Elements/Woo_Cart.php:697, ../includes/Elements/Woo_Cart.php:771, ../includes/Elements/Woo_Cart.php:883, ../includes/Elements/Woo_Cart.php:2314, ../includes/Elements/Woo_Product_Carousel.php:1476, ../includes/Elements/Woo_Product_Carousel.php:2306, ../includes/Elements/Woo_Product_Carousel.php:2509, ../includes/Elements/Woo_Product_Carousel.php:2589, ../includes/Elements/Woo_Product_Gallery.php:1366, ../includes/Elements/Woo_Product_List.php:1483, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/WpForms.php:1176, ../includes/Elements/WpForms.php:1190, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:524, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118 msgid "Width" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:703, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Accordion.php:826, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Accordion.php:1033, ../includes/Elements/Adv_Accordion.php:1080, ../includes/Elements/Adv_Accordion.php:1127, ../includes/Elements/Adv_Tabs.php:449, ../includes/Elements/Adv_Tabs.php:647, ../includes/Elements/Adv_Tabs.php:714, ../includes/Elements/Adv_Tabs.php:783, ../includes/Elements/Adv_Tabs.php:877, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2272, ../includes/Elements/Business_Reviews.php:2434, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:720, ../includes/Elements/Cta_Box.php:645, ../includes/Elements/Cta_Box.php:974, ../includes/Elements/Cta_Box.php:1337, ../includes/Elements/Data_Table.php:673, ../includes/Elements/Data_Table.php:712, ../includes/Elements/Data_Table.php:904, ../includes/Elements/Data_Table.php:1255, ../includes/Elements/Dual_Color_Header.php:354, ../includes/Elements/Event_Calendar.php:2099, ../includes/Elements/Event_Calendar.php:2166, ../includes/Elements/Event_Calendar.php:2220, ../includes/Elements/Event_Calendar.php:2924, ../includes/Elements/Event_Calendar.php:2995, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1089, ../includes/Elements/Filterable_Gallery.php:1202, ../includes/Elements/Filterable_Gallery.php:1268, ../includes/Elements/Filterable_Gallery.php:1348, ../includes/Elements/Filterable_Gallery.php:1501, ../includes/Elements/Filterable_Gallery.php:1558, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2129, ../includes/Elements/Filterable_Gallery.php:2190, ../includes/Elements/Filterable_Gallery.php:2715, ../includes/Elements/Filterable_Gallery.php:2844, ../includes/Elements/Filterable_Gallery.php:2962, ../includes/Elements/Flip_Box.php:1016, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:363, ../includes/Elements/Image_Accordion.php:474, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:833, ../includes/Elements/Info_Box.php:913, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1147, ../includes/Elements/Interactive_Circle.php:525, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Interactive_Circle.php:950, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:281, ../includes/Elements/Pricing_Table.php:1854, ../includes/Elements/Pricing_Table.php:2022, ../includes/Elements/Product_Grid.php:2460, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:445, ../includes/Elements/Team_Member.php:533, ../includes/Elements/Testimonial.php:444, ../includes/Elements/Tooltip.php:453, ../includes/Elements/Tooltip.php:497, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2157, ../includes/Elements/Woo_Product_Carousel.php:2371, ../includes/Elements/Woo_Product_Carousel.php:2805, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:823, ../includes/Elements/WpForms.php:1242, ../includes/Extensions/Table_of_Content.php:638, ../includes/Traits/Controls.php:1862, ../includes/Traits/Controls.php:1974, ../includes/Traits/Controls.php:1923, ../includes/Traits/Controls.php:2105 +#: ../includes/Elements/Advanced_Data_Table.php:365, ../includes/Elements/Advanced_Data_Table.php:1035, ../includes/Elements/Advanced_Data_Table.php:1233, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:516, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:768, ../includes/Elements/Adv_Accordion.php:830, ../includes/Elements/Adv_Accordion.php:913, ../includes/Elements/Adv_Accordion.php:1037, ../includes/Elements/Adv_Accordion.php:1084, ../includes/Elements/Adv_Accordion.php:1131, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:651, ../includes/Elements/Adv_Tabs.php:718, ../includes/Elements/Adv_Tabs.php:787, ../includes/Elements/Adv_Tabs.php:881, ../includes/Elements/Betterdocs_Category_Box.php:303, ../includes/Elements/Betterdocs_Category_Box.php:371, ../includes/Elements/Betterdocs_Category_Box.php:492, ../includes/Elements/Betterdocs_Category_Box.php:568, ../includes/Elements/Betterdocs_Category_Box.php:888, ../includes/Elements/Betterdocs_Category_Box.php:993, ../includes/Elements/Betterdocs_Category_Grid.php:344, ../includes/Elements/Betterdocs_Category_Grid.php:392, ../includes/Elements/Betterdocs_Category_Grid.php:477, ../includes/Elements/Betterdocs_Category_Grid.php:518, ../includes/Elements/Betterdocs_Category_Grid.php:643, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:944, ../includes/Elements/Betterdocs_Category_Grid.php:1189, ../includes/Elements/Betterdocs_Category_Grid.php:1389, ../includes/Elements/Betterdocs_Category_Grid.php:1488, ../includes/Elements/Betterdocs_Search_Form.php:222, ../includes/Elements/Betterdocs_Search_Form.php:377, ../includes/Elements/Betterdocs_Search_Form.php:435, ../includes/Elements/Betterdocs_Search_Form.php:545, ../includes/Elements/Business_Reviews.php:2286, ../includes/Elements/Business_Reviews.php:2448, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:818, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Caldera_Forms.php:1392, ../includes/Elements/Contact_Form_7.php:721, ../includes/Elements/Contact_Form_7.php:788, ../includes/Elements/Contact_Form_7.php:1271, ../includes/Elements/Contact_Form_7.php:1477, ../includes/Elements/Contact_Form_7.php:1571, ../includes/Elements/Contact_Form_7.php:1638, ../includes/Elements/Content_Ticker.php:631, ../includes/Elements/Countdown.php:724, ../includes/Elements/Cta_Box.php:649, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Cta_Box.php:1341, ../includes/Elements/Data_Table.php:677, ../includes/Elements/Data_Table.php:716, ../includes/Elements/Data_Table.php:908, ../includes/Elements/Data_Table.php:1259, ../includes/Elements/Dual_Color_Header.php:358, ../includes/Elements/Event_Calendar.php:2099, ../includes/Elements/Event_Calendar.php:2166, ../includes/Elements/Event_Calendar.php:2220, ../includes/Elements/Event_Calendar.php:2924, ../includes/Elements/Event_Calendar.php:2995, ../includes/Elements/Facebook_Feed.php:534, ../includes/Elements/Filterable_Gallery.php:1093, ../includes/Elements/Filterable_Gallery.php:1206, ../includes/Elements/Filterable_Gallery.php:1272, ../includes/Elements/Filterable_Gallery.php:1352, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1562, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2133, ../includes/Elements/Filterable_Gallery.php:2194, ../includes/Elements/Filterable_Gallery.php:2719, ../includes/Elements/Filterable_Gallery.php:2848, ../includes/Elements/Filterable_Gallery.php:2966, ../includes/Elements/Flip_Box.php:1020, ../includes/Elements/Flip_Box.php:1134, ../includes/Elements/FluentForm.php:671, ../includes/Elements/FluentForm.php:867, ../includes/Elements/FluentForm.php:1585, ../includes/Elements/FluentForm.php:1883, ../includes/Elements/FluentForm.php:2012, ../includes/Elements/FluentForm.php:2130, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1066, ../includes/Elements/Formstack.php:1470, ../includes/Elements/Formstack.php:1690, ../includes/Elements/Formstack.php:1821, ../includes/Elements/GravityForms.php:1105, ../includes/Elements/GravityForms.php:1174, ../includes/Elements/GravityForms.php:1911, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2292, ../includes/Elements/GravityForms.php:2528, ../includes/Elements/Image_Accordion.php:367, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:589, ../includes/Elements/Info_Box.php:644, ../includes/Elements/Info_Box.php:838, ../includes/Elements/Info_Box.php:918, ../includes/Elements/Info_Box.php:1071, ../includes/Elements/Info_Box.php:1152, ../includes/Elements/Interactive_Circle.php:567, ../includes/Elements/Interactive_Circle.php:726, ../includes/Elements/Interactive_Circle.php:993, ../includes/Elements/Login_Register.php:3898, ../includes/Elements/NFT_Gallery.php:2148, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:862, ../includes/Elements/NinjaForms.php:1405, ../includes/Elements/Post_Grid.php:294, ../includes/Elements/Pricing_Table.php:1855, ../includes/Elements/Pricing_Table.php:2023, ../includes/Elements/Product_Grid.php:2601, ../includes/Elements/Simple_Menu.php:658, ../includes/Elements/Simple_Menu.php:731, ../includes/Elements/Team_Member.php:464, ../includes/Elements/Team_Member.php:552, ../includes/Elements/Testimonial.php:474, ../includes/Elements/Tooltip.php:457, ../includes/Elements/Tooltip.php:501, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Twitter_Feed.php:1148, ../includes/Elements/Twitter_Feed.php:1301, ../includes/Elements/Woo_Checkout.php:1920, ../includes/Elements/Woo_Checkout.php:2198, ../includes/Elements/Woo_Product_Carousel.php:2414, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/WpForms.php:635, ../includes/Elements/WpForms.php:827, ../includes/Elements/WpForms.php:1246, ../includes/Elements/WpForms.php:1356, ../includes/Extensions/Table_of_Content.php:723, ../includes/Traits/Controls.php:1978, ../includes/Traits/Controls.php:2090, ../includes/Traits/Controls.php:2039, ../includes/Traits/Controls.php:2221 msgid "Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:519, ../includes/Elements/Adv_Accordion.php:710, ../includes/Elements/Adv_Accordion.php:771, ../includes/Elements/Adv_Accordion.php:833, ../includes/Elements/Adv_Tabs.php:457, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:721, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Adv_Tabs.php:884, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:836, ../includes/Elements/Business_Reviews.php:966, ../includes/Elements/Business_Reviews.php:1452, ../includes/Elements/Business_Reviews.php:1580, ../includes/Elements/Business_Reviews.php:2282, ../includes/Elements/Business_Reviews.php:2444, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:728, ../includes/Elements/Creative_Button.php:341, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:1007, ../includes/Elements/Cta_Box.php:1345, ../includes/Elements/Dual_Color_Header.php:362, ../includes/Elements/Event_Calendar.php:1418, ../includes/Elements/Event_Calendar.php:1749, ../includes/Elements/Event_Calendar.php:2107, ../includes/Elements/Event_Calendar.php:2174, ../includes/Elements/Event_Calendar.php:2228, ../includes/Elements/Event_Calendar.php:2470, ../includes/Elements/Event_Calendar.php:2641, ../includes/Elements/Event_Calendar.php:2932, ../includes/Elements/Event_Calendar.php:3003, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:531, ../includes/Elements/Feature_List.php:725, ../includes/Elements/Filterable_Gallery.php:1097, ../includes/Elements/Filterable_Gallery.php:1210, ../includes/Elements/Filterable_Gallery.php:1276, ../includes/Elements/Filterable_Gallery.php:1356, ../includes/Elements/Filterable_Gallery.php:1566, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2198, ../includes/Elements/Filterable_Gallery.php:2368, ../includes/Elements/Filterable_Gallery.php:2499, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Filterable_Gallery.php:2737, ../includes/Elements/Filterable_Gallery.php:2852, ../includes/Elements/Filterable_Gallery.php:2976, ../includes/Elements/Flip_Box.php:853, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:1039, ../includes/Elements/Flip_Box.php:1153, ../includes/Elements/Flip_Box.php:1414, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:371, ../includes/Elements/Image_Accordion.php:462, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:289, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:570, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/Pricing_Table.php:1625, ../includes/Elements/Pricing_Table.php:1877, ../includes/Elements/Pricing_Table.php:2030, ../includes/Elements/Product_Grid.php:1099, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2567, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:3106, ../includes/Elements/Product_Grid.php:3138, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:637, ../includes/Elements/SVG_Draw.php:444, ../includes/Elements/Team_Member.php:453, ../includes/Elements/Team_Member.php:552, ../includes/Elements/Team_Member.php:803, ../includes/Elements/Testimonial.php:463, ../includes/Elements/Tooltip.php:514, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:903, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1250, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:1888, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2505, ../includes/Elements/Woo_Checkout.php:2685, ../includes/Elements/Woo_Checkout.php:2965, ../includes/Elements/Woo_Product_Carousel.php:1120, ../includes/Elements/Woo_Product_Carousel.php:1540, ../includes/Elements/Woo_Product_Carousel.php:1943, ../includes/Elements/Woo_Product_Carousel.php:2139, ../includes/Elements/Woo_Product_Carousel.php:2171, ../includes/Elements/Woo_Product_Carousel.php:2381, ../includes/Elements/Woo_Product_Carousel.php:2504, ../includes/Elements/Woo_Product_Carousel.php:2628, ../includes/Elements/Woo_Product_Carousel.php:2815, ../includes/Elements/Woo_Product_Gallery.php:744, ../includes/Elements/Woo_Product_Gallery.php:1778, ../includes/Elements/Woo_Product_Gallery.php:2179, ../includes/Elements/Woo_Product_Gallery.php:2378, ../includes/Elements/Woo_Product_Gallery.php:2410, ../includes/Elements/Woo_Product_List.php:1160, ../includes/Elements/Woo_Product_List.php:1273, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1686, ../includes/Elements/Woo_Product_List.php:1748, ../includes/Elements/Woo_Product_List.php:1813, ../includes/Elements/Woo_Product_List.php:1884, ../includes/Elements/Woo_Product_List.php:3016, ../includes/Elements/Woo_Product_List.php:3214, ../includes/Elements/Woo_Product_List.php:3246, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1056, ../includes/Elements/WpForms.php:1082, ../includes/Elements/WpForms.php:1252, ../includes/Extensions/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:661, ../includes/Extensions/Table_of_Content.php:878, ../includes/Traits/Controls.php:1870, ../includes/Traits/Controls.php:1982, ../includes/Traits/Controls.php:1934, ../includes/Traits/Controls.php:2113, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 +#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:1061, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:523, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Accordion.php:775, ../includes/Elements/Adv_Accordion.php:837, ../includes/Elements/Adv_Tabs.php:461, ../includes/Elements/Adv_Tabs.php:658, ../includes/Elements/Adv_Tabs.php:725, ../includes/Elements/Adv_Tabs.php:794, ../includes/Elements/Adv_Tabs.php:888, ../includes/Elements/Betterdocs_Category_Box.php:311, ../includes/Elements/Betterdocs_Category_Box.php:379, ../includes/Elements/Betterdocs_Category_Box.php:500, ../includes/Elements/Betterdocs_Category_Box.php:577, ../includes/Elements/Betterdocs_Category_Box.php:899, ../includes/Elements/Betterdocs_Category_Box.php:1004, ../includes/Elements/Betterdocs_Category_Grid.php:352, ../includes/Elements/Betterdocs_Category_Grid.php:400, ../includes/Elements/Betterdocs_Category_Grid.php:485, ../includes/Elements/Betterdocs_Category_Grid.php:526, ../includes/Elements/Betterdocs_Category_Grid.php:651, ../includes/Elements/Betterdocs_Category_Grid.php:705, ../includes/Elements/Betterdocs_Category_Grid.php:858, ../includes/Elements/Betterdocs_Category_Grid.php:955, ../includes/Elements/Betterdocs_Category_Grid.php:1397, ../includes/Elements/Betterdocs_Category_Grid.php:1496, ../includes/Elements/Betterdocs_Search_Form.php:209, ../includes/Elements/Business_Reviews.php:850, ../includes/Elements/Business_Reviews.php:980, ../includes/Elements/Business_Reviews.php:1466, ../includes/Elements/Business_Reviews.php:1594, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:485, ../includes/Elements/Caldera_Forms.php:633, ../includes/Elements/Caldera_Forms.php:1051, ../includes/Elements/Caldera_Forms.php:1077, ../includes/Elements/Caldera_Forms.php:1244, ../includes/Elements/Contact_Form_7.php:402, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1089, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1280, ../includes/Elements/Content_Ticker.php:404, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Content_Ticker.php:641, ../includes/Elements/Countdown.php:732, ../includes/Elements/Creative_Button.php:345, ../includes/Elements/Cta_Box.php:657, ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Cta_Box.php:1349, ../includes/Elements/Dual_Color_Header.php:366, ../includes/Elements/Event_Calendar.php:1418, ../includes/Elements/Event_Calendar.php:1749, ../includes/Elements/Event_Calendar.php:2107, ../includes/Elements/Event_Calendar.php:2174, ../includes/Elements/Event_Calendar.php:2228, ../includes/Elements/Event_Calendar.php:2470, ../includes/Elements/Event_Calendar.php:2641, ../includes/Elements/Event_Calendar.php:2932, ../includes/Elements/Event_Calendar.php:3003, ../includes/Elements/Facebook_Feed.php:559, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Fancy_Text.php:535, ../includes/Elements/Feature_List.php:729, ../includes/Elements/Filterable_Gallery.php:1101, ../includes/Elements/Filterable_Gallery.php:1214, ../includes/Elements/Filterable_Gallery.php:1280, ../includes/Elements/Filterable_Gallery.php:1360, ../includes/Elements/Filterable_Gallery.php:1570, ../includes/Elements/Filterable_Gallery.php:2141, ../includes/Elements/Filterable_Gallery.php:2202, ../includes/Elements/Filterable_Gallery.php:2372, ../includes/Elements/Filterable_Gallery.php:2503, ../includes/Elements/Filterable_Gallery.php:2643, ../includes/Elements/Filterable_Gallery.php:2741, ../includes/Elements/Filterable_Gallery.php:2856, ../includes/Elements/Filterable_Gallery.php:2980, ../includes/Elements/Flip_Box.php:857, ../includes/Elements/Flip_Box.php:918, ../includes/Elements/Flip_Box.php:1043, ../includes/Elements/Flip_Box.php:1157, ../includes/Elements/Flip_Box.php:1418, ../includes/Elements/FluentForm.php:532, ../includes/Elements/FluentForm.php:682, ../includes/Elements/FluentForm.php:1047, ../includes/Elements/FluentForm.php:1073, ../includes/Elements/FluentForm.php:1595, ../includes/Elements/FluentForm.php:1894, ../includes/Elements/FluentForm.php:2020, ../includes/Elements/FluentForm.php:2074, ../includes/Elements/Formstack.php:402, ../includes/Elements/Formstack.php:881, ../includes/Elements/Formstack.php:1207, ../includes/Elements/Formstack.php:1233, ../includes/Elements/Formstack.php:1480, ../includes/Elements/Formstack.php:1701, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1885, ../includes/Elements/GravityForms.php:439, ../includes/Elements/GravityForms.php:695, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1593, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1921, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/GravityForms.php:2538, ../includes/Elements/Image_Accordion.php:375, ../includes/Elements/Image_Accordion.php:466, ../includes/Elements/Info_Box.php:1235, ../includes/Elements/Login_Register.php:2695, ../includes/Elements/Login_Register.php:2930, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3264, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3498, ../includes/Elements/Login_Register.php:3589, ../includes/Elements/Login_Register.php:3763, ../includes/Elements/Login_Register.php:3800, ../includes/Elements/Login_Register.php:3914, ../includes/Elements/Login_Register.php:4996, ../includes/Elements/Login_Register.php:5033, ../includes/Elements/Login_Register.php:5346, ../includes/Elements/Login_Register.php:5383, ../includes/Elements/NFT_Gallery.php:794, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1134, ../includes/Elements/NFT_Gallery.php:1445, ../includes/Elements/NFT_Gallery.php:1698, ../includes/Elements/NFT_Gallery.php:1929, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:2162, ../includes/Elements/NinjaForms.php:372, ../includes/Elements/NinjaForms.php:675, ../includes/Elements/NinjaForms.php:1099, ../includes/Elements/NinjaForms.php:1126, ../includes/Elements/NinjaForms.php:1416, ../includes/Elements/Post_Grid.php:302, ../includes/Elements/Post_Timeline.php:187, ../includes/Elements/Post_Timeline.php:270, ../includes/Elements/Post_Timeline.php:572, ../includes/Elements/Pricing_Table.php:837, ../includes/Elements/Pricing_Table.php:1626, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Pricing_Table.php:2031, ../includes/Elements/Product_Grid.php:1211, ../includes/Elements/Product_Grid.php:2318, ../includes/Elements/Product_Grid.php:2708, ../includes/Elements/Product_Grid.php:3048, ../includes/Elements/Product_Grid.php:3247, ../includes/Elements/Product_Grid.php:3279, ../includes/Elements/Simple_Menu.php:666, ../includes/Elements/Sticky_Video.php:641, ../includes/Elements/SVG_Draw.php:448, ../includes/Elements/Team_Member.php:472, ../includes/Elements/Team_Member.php:571, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Testimonial.php:493, ../includes/Elements/Tooltip.php:518, ../includes/Elements/Twitter_Feed.php:749, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Twitter_Feed.php:1315, ../includes/Elements/TypeForm.php:309, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:724, ../includes/Elements/Woo_Cart.php:1406, ../includes/Elements/Woo_Cart.php:1578, ../includes/Elements/Woo_Cart.php:1834, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2260, ../includes/Elements/Woo_Cart.php:2471, ../includes/Elements/Woo_Cart.php:2557, ../includes/Elements/Woo_Cart.php:2641, ../includes/Elements/Woo_Checkout.php:919, ../includes/Elements/Woo_Checkout.php:1080, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1560, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Checkout.php:1929, ../includes/Elements/Woo_Checkout.php:2136, ../includes/Elements/Woo_Checkout.php:2344, ../includes/Elements/Woo_Checkout.php:2550, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:3018, ../includes/Elements/Woo_Product_Carousel.php:1163, ../includes/Elements/Woo_Product_Carousel.php:1583, ../includes/Elements/Woo_Product_Carousel.php:1986, ../includes/Elements/Woo_Product_Carousel.php:2182, ../includes/Elements/Woo_Product_Carousel.php:2214, ../includes/Elements/Woo_Product_Carousel.php:2424, ../includes/Elements/Woo_Product_Carousel.php:2547, ../includes/Elements/Woo_Product_Carousel.php:2671, ../includes/Elements/Woo_Product_Carousel.php:2858, ../includes/Elements/Woo_Product_Gallery.php:867, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:2331, ../includes/Elements/Woo_Product_Gallery.php:2530, ../includes/Elements/Woo_Product_Gallery.php:2562, ../includes/Elements/Woo_Product_List.php:1306, ../includes/Elements/Woo_Product_List.php:1419, ../includes/Elements/Woo_Product_List.php:1542, ../includes/Elements/Woo_Product_List.php:1832, ../includes/Elements/Woo_Product_List.php:1894, ../includes/Elements/Woo_Product_List.php:1959, ../includes/Elements/Woo_Product_List.php:2030, ../includes/Elements/Woo_Product_List.php:3162, ../includes/Elements/Woo_Product_List.php:3360, ../includes/Elements/Woo_Product_List.php:3392, ../includes/Elements/WpForms.php:341, ../includes/Elements/WpForms.php:646, ../includes/Elements/WpForms.php:1060, ../includes/Elements/WpForms.php:1086, ../includes/Elements/WpForms.php:1256, ../includes/Elements/WpForms.php:1366, ../includes/Extensions/Scroll_to_Top.php:430, ../includes/Extensions/Table_of_Content.php:746, ../includes/Extensions/Table_of_Content.php:963, ../includes/Traits/Controls.php:1986, ../includes/Traits/Controls.php:2098, ../includes/Traits/Controls.php:2050, ../includes/Traits/Controls.php:2229, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394 msgid "Border Radius" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:404, ../includes/Elements/Advanced_Data_Table.php:1472, ../includes/Elements/Betterdocs_Category_Grid.php:334, ../includes/Elements/Betterdocs_Category_Grid.php:382, ../includes/Elements/Event_Calendar.php:1986, ../includes/Elements/Event_Calendar.php:2956, ../includes/Elements/Event_Calendar.php:3030, ../includes/Elements/Product_Grid.php:1059, ../includes/Elements/Product_Grid.php:1087, ../includes/Elements/Product_Grid.php:3130, ../includes/Elements/Product_Grid.php:3165, ../includes/Elements/Progress_Bar.php:753, ../includes/Elements/Twitter_Feed.php:944, ../includes/Elements/Twitter_Feed.php:1156, ../includes/Elements/Woo_Cart.php:1385, ../includes/Elements/Woo_Cart.php:1567, ../includes/Elements/Woo_Cart.php:2463, ../includes/Elements/Woo_Cart.php:2548, ../includes/Elements/Woo_Cart.php:2633, ../includes/Elements/Woo_Product_Carousel.php:1079, ../includes/Elements/Woo_Product_Carousel.php:1108, ../includes/Elements/Woo_Product_Carousel.php:2163, ../includes/Elements/Woo_Product_Carousel.php:2198, ../includes/Elements/Woo_Product_Carousel.php:2877, ../includes/Elements/Woo_Product_Gallery.php:704, ../includes/Elements/Woo_Product_Gallery.php:732, ../includes/Elements/Woo_Product_Gallery.php:1323, ../includes/Elements/Woo_Product_Gallery.php:1499, ../includes/Elements/Woo_Product_Gallery.php:2402, ../includes/Elements/Woo_Product_Gallery.php:2437, ../includes/Elements/Woo_Product_List.php:3238, ../includes/Elements/Woo_Product_List.php:3273, ../includes/Extensions/Table_of_Content.php:650, ../includes/Extensions/Table_of_Content.php:897, ../includes/Traits/Woo_Product_Comparable.php:1418 +#: ../includes/Elements/Advanced_Data_Table.php:404, ../includes/Elements/Advanced_Data_Table.php:1472, ../includes/Elements/Betterdocs_Category_Grid.php:334, ../includes/Elements/Betterdocs_Category_Grid.php:382, ../includes/Elements/Event_Calendar.php:1986, ../includes/Elements/Event_Calendar.php:2956, ../includes/Elements/Event_Calendar.php:3030, ../includes/Elements/Product_Grid.php:1171, ../includes/Elements/Product_Grid.php:1199, ../includes/Elements/Product_Grid.php:3271, ../includes/Elements/Product_Grid.php:3306, ../includes/Elements/Progress_Bar.php:757, ../includes/Elements/Twitter_Feed.php:944, ../includes/Elements/Twitter_Feed.php:1156, ../includes/Elements/Woo_Cart.php:1385, ../includes/Elements/Woo_Cart.php:1567, ../includes/Elements/Woo_Cart.php:2463, ../includes/Elements/Woo_Cart.php:2548, ../includes/Elements/Woo_Cart.php:2633, ../includes/Elements/Woo_Product_Carousel.php:1122, ../includes/Elements/Woo_Product_Carousel.php:1151, ../includes/Elements/Woo_Product_Carousel.php:2206, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2920, ../includes/Elements/Woo_Product_Gallery.php:827, ../includes/Elements/Woo_Product_Gallery.php:855, ../includes/Elements/Woo_Product_Gallery.php:1446, ../includes/Elements/Woo_Product_Gallery.php:1622, ../includes/Elements/Woo_Product_Gallery.php:2554, ../includes/Elements/Woo_Product_Gallery.php:2589, ../includes/Elements/Woo_Product_List.php:3384, ../includes/Elements/Woo_Product_List.php:3419, ../includes/Extensions/Table_of_Content.php:735, ../includes/Extensions/Table_of_Content.php:982, ../includes/Traits/Woo_Product_Comparable.php:1418 msgid "Box Shadow" msgstr "" @@ -870,27 +709,31 @@ msgstr "" msgid "Head" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2028, ../includes/Elements/Event_Calendar.php:2058, ../includes/Elements/Event_Calendar.php:2275, ../includes/Elements/Event_Calendar.php:2353, ../includes/Elements/Event_Calendar.php:2387, ../includes/Elements/Event_Calendar.php:2633, ../includes/Elements/Event_Calendar.php:2687, ../includes/Elements/Event_Calendar.php:2717, ../includes/Elements/Event_Calendar.php:2746, ../includes/Elements/Event_Calendar.php:2814, ../includes/Elements/Event_Calendar.php:2974, ../includes/Elements/Filterable_Gallery.php:2264, ../includes/Elements/Filterable_Gallery.php:2311, ../includes/Elements/Filterable_Gallery.php:2347, ../includes/Elements/Filterable_Gallery.php:2404, ../includes/Elements/Filterable_Gallery.php:2703, ../includes/Elements/Filterable_Gallery.php:2993, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:370, ../includes/Elements/Post_Grid.php:492, ../includes/Elements/Post_Grid.php:506, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:550, ../includes/Elements/Product_Grid.php:2627, ../includes/Elements/Product_Grid.php:2658, ../includes/Elements/Product_Grid.php:2700, ../includes/Elements/Product_Grid.php:2766, ../includes/Elements/Product_Grid.php:2807, ../includes/Elements/Product_Grid.php:2864, ../includes/Elements/Product_Grid.php:2981, ../includes/Elements/Progress_Bar.php:773, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1627, ../includes/Elements/Woo_Checkout.php:1998, ../includes/Elements/Woo_Product_Carousel.php:1651, ../includes/Elements/Woo_Product_Carousel.php:1681, ../includes/Elements/Woo_Product_Carousel.php:1723, ../includes/Elements/Woo_Product_Carousel.php:1802, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:1899, ../includes/Elements/Woo_Product_Carousel.php:2018, ../includes/Elements/Woo_Product_Gallery.php:1859, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1931, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2038, ../includes/Elements/Woo_Product_Gallery.php:2079, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:3089, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:872, ../includes/Elements/WpForms.php:1296, ../includes/Traits/Controls.php:1724, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 +#: ../includes/Elements/Advanced_Data_Table.php:423, ../includes/Elements/Advanced_Data_Table.php:542, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Caldera_Forms.php:289, ../includes/Elements/Caldera_Forms.php:350, ../includes/Elements/Caldera_Forms.php:540, ../includes/Elements/Caldera_Forms.php:778, ../includes/Elements/Caldera_Forms.php:867, ../includes/Elements/Caldera_Forms.php:1288, ../includes/Elements/Caldera_Forms.php:1403, ../includes/Elements/Contact_Form_7.php:493, ../includes/Elements/Contact_Form_7.php:526, ../includes/Elements/Contact_Form_7.php:745, ../includes/Elements/Contact_Form_7.php:895, ../includes/Elements/Contact_Form_7.php:949, ../includes/Elements/Contact_Form_7.php:1324, ../includes/Elements/Contact_Form_7.php:1461, ../includes/Elements/Contact_Form_7.php:1603, ../includes/Elements/Event_Calendar.php:2028, ../includes/Elements/Event_Calendar.php:2058, ../includes/Elements/Event_Calendar.php:2275, ../includes/Elements/Event_Calendar.php:2353, ../includes/Elements/Event_Calendar.php:2387, ../includes/Elements/Event_Calendar.php:2633, ../includes/Elements/Event_Calendar.php:2687, ../includes/Elements/Event_Calendar.php:2717, ../includes/Elements/Event_Calendar.php:2746, ../includes/Elements/Event_Calendar.php:2814, ../includes/Elements/Event_Calendar.php:2974, ../includes/Elements/Filterable_Gallery.php:2268, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/Filterable_Gallery.php:2351, ../includes/Elements/Filterable_Gallery.php:2408, ../includes/Elements/Filterable_Gallery.php:2707, ../includes/Elements/Filterable_Gallery.php:2997, ../includes/Elements/FluentForm.php:324, ../includes/Elements/FluentForm.php:385, ../includes/Elements/FluentForm.php:587, ../includes/Elements/FluentForm.php:827, ../includes/Elements/FluentForm.php:1154, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1313, ../includes/Elements/FluentForm.php:1399, ../includes/Elements/FluentForm.php:1465, ../includes/Elements/FluentForm.php:1660, ../includes/Elements/FluentForm.php:1792, ../includes/Elements/FluentForm.php:1990, ../includes/Elements/FluentForm.php:2141, ../includes/Elements/FluentForm.php:2190, ../includes/Elements/Formstack.php:497, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:602, ../includes/Elements/Formstack.php:676, ../includes/Elements/Formstack.php:731, ../includes/Elements/Formstack.php:814, ../includes/Elements/Formstack.php:1026, ../includes/Elements/Formstack.php:1524, ../includes/Elements/Formstack.php:1656, ../includes/Elements/Formstack.php:1797, ../includes/Elements/Formstack.php:1959, ../includes/Elements/GravityForms.php:531, ../includes/Elements/GravityForms.php:564, ../includes/Elements/GravityForms.php:610, ../includes/Elements/GravityForms.php:756, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:870, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/GravityForms.php:1223, ../includes/Elements/GravityForms.php:1277, ../includes/Elements/GravityForms.php:1415, ../includes/Elements/GravityForms.php:2005, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2408, ../includes/Elements/GravityForms.php:2631, ../includes/Elements/GravityForms.php:2826, ../includes/Elements/Login_Register.php:4465, ../includes/Elements/Login_Register.php:4594, ../includes/Elements/Login_Register.php:4742, ../includes/Elements/NFT_Gallery.php:2179, ../includes/Elements/NinjaForms.php:468, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/NinjaForms.php:579, ../includes/Elements/NinjaForms.php:822, ../includes/Elements/NinjaForms.php:911, ../includes/Elements/NinjaForms.php:1515, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/NinjaForms.php:1616, ../includes/Elements/Post_Grid.php:383, ../includes/Elements/Post_Grid.php:505, ../includes/Elements/Post_Grid.php:519, ../includes/Elements/Post_Grid.php:663, ../includes/Elements/Post_Grid.php:881, ../includes/Elements/Post_Timeline.php:287, ../includes/Elements/Post_Timeline.php:552, ../includes/Elements/Product_Grid.php:2768, ../includes/Elements/Product_Grid.php:2799, ../includes/Elements/Product_Grid.php:2841, ../includes/Elements/Product_Grid.php:2907, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Product_Grid.php:3005, ../includes/Elements/Product_Grid.php:3122, ../includes/Elements/Progress_Bar.php:777, ../includes/Elements/Simple_Menu.php:868, ../includes/Elements/Simple_Menu.php:1275, ../includes/Elements/Twitter_Feed.php:1332, ../includes/Elements/Woo_Cart.php:1819, ../includes/Elements/Woo_Cart.php:1880, ../includes/Elements/Woo_Cart.php:2058, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:1668, ../includes/Elements/Woo_Checkout.php:2039, ../includes/Elements/Woo_Product_Carousel.php:1694, ../includes/Elements/Woo_Product_Carousel.php:1724, ../includes/Elements/Woo_Product_Carousel.php:1766, ../includes/Elements/Woo_Product_Carousel.php:1845, ../includes/Elements/Woo_Product_Carousel.php:1885, ../includes/Elements/Woo_Product_Carousel.php:1942, ../includes/Elements/Woo_Product_Carousel.php:2061, ../includes/Elements/Woo_Product_Gallery.php:2011, ../includes/Elements/Woo_Product_Gallery.php:2041, ../includes/Elements/Woo_Product_Gallery.php:2083, ../includes/Elements/Woo_Product_Gallery.php:2149, ../includes/Elements/Woo_Product_Gallery.php:2190, ../includes/Elements/Woo_Product_Gallery.php:2231, ../includes/Elements/Woo_Product_Gallery.php:2288, ../includes/Elements/Woo_Product_Gallery.php:2405, ../includes/Elements/Woo_Product_List.php:3038, ../includes/Elements/Woo_Product_List.php:3235, ../includes/Elements/WpForms.php:435, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:796, ../includes/Elements/WpForms.php:876, ../includes/Elements/WpForms.php:1300, ../includes/Traits/Controls.php:1840, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195 msgid "Typography" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Betterdocs_Category_Box.php:766, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Countdown.php:1130, ../includes/Elements/Login_Register.php:3703 +#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Betterdocs_Category_Box.php:766, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Countdown.php:1134, ../includes/Elements/Login_Register.php:3703 msgid "Text Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1062, ../includes/Elements/Business_Reviews.php:2075, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1135, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:574, ../includes/Elements/Data_Table.php:799, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:198, ../includes/Elements/Event_Calendar.php:975, ../includes/Elements/Event_Calendar.php:1285, ../includes/Elements/Event_Calendar.php:2299, ../includes/Elements/Event_Calendar.php:2435, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1523, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/Flip_Box.php:382, ../includes/Elements/Flip_Box.php:622, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:316, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:468, ../includes/Elements/Post_Grid.php:628, ../includes/Elements/Post_Grid.php:698, ../includes/Elements/Post_Grid.php:795, ../includes/Elements/Post_Grid.php:880, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:380, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:289, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Pricing_Table.php:730, ../includes/Elements/Pricing_Table.php:872, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Product_Grid.php:850, ../includes/Elements/Product_Grid.php:1169, ../includes/Elements/Product_Grid.php:1863, ../includes/Elements/Product_Grid.php:2376, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Testimonial.php:323, ../includes/Elements/Tooltip.php:215, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Tooltip.php:390, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:771, ../includes/Elements/Woo_Product_Carousel.php:926, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:621, ../includes/Elements/Woo_Product_Gallery.php:1599, ../includes/Elements/Woo_Product_List.php:566, ../includes/Elements/Woo_Product_List.php:719, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1146, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:658, ../includes/Traits/Controls.php:1736, ../includes/Traits/Controls.php:1797, ../includes/Traits/Controls.php:2194, ../includes/Traits/Controls.php:2245, ../includes/Traits/Controls.php:2246, ../includes/Traits/Controls.php:2568 +#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:159, ../includes/Elements/Betterdocs_Category_Box.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Business_Reviews.php:1076, ../includes/Elements/Business_Reviews.php:2089, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:420, ../includes/Elements/Caldera_Forms.php:566, ../includes/Elements/Caldera_Forms.php:1141, ../includes/Elements/Contact_Form_7.php:334, ../includes/Elements/Contact_Form_7.php:449, ../includes/Elements/Contact_Form_7.php:1179, ../includes/Elements/Content_Ticker.php:293, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:121, ../includes/Elements/Cta_Box.php:218, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Event_Calendar.php:975, ../includes/Elements/Event_Calendar.php:1285, ../includes/Elements/Event_Calendar.php:2299, ../includes/Elements/Event_Calendar.php:2435, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:270, ../includes/Elements/FluentForm.php:467, ../includes/Elements/FluentForm.php:613, ../includes/Elements/FluentForm.php:1246, ../includes/Elements/FluentForm.php:1491, ../includes/Elements/Formstack.php:337, ../includes/Elements/Formstack.php:452, ../includes/Elements/Formstack.php:768, ../includes/Elements/Formstack.php:1377, ../includes/Elements/GravityForms.php:350, ../includes/Elements/GravityForms.php:487, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:772, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:2185, ../includes/Elements/GravityForms.php:2448, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:1346, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:3707, ../includes/Elements/Login_Register.php:4947, ../includes/Elements/Login_Register.php:5296, ../includes/Elements/NFT_Gallery.php:730, ../includes/Elements/NFT_Gallery.php:1898, ../includes/Elements/NinjaForms.php:285, ../includes/Elements/NinjaForms.php:424, ../includes/Elements/NinjaForms.php:608, ../includes/Elements/NinjaForms.php:1303, ../includes/Elements/Post_Grid.php:481, ../includes/Elements/Post_Grid.php:641, ../includes/Elements/Post_Grid.php:711, ../includes/Elements/Post_Grid.php:808, ../includes/Elements/Post_Grid.php:893, ../includes/Elements/Post_Timeline.php:322, ../includes/Elements/Post_Timeline.php:382, ../includes/Elements/Pricing_Table.php:146, ../includes/Elements/Pricing_Table.php:293, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Pricing_Table.php:731, ../includes/Elements/Pricing_Table.php:873, ../includes/Elements/Pricing_Table.php:898, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:1975, ../includes/Elements/Product_Grid.php:2517, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:370, ../includes/Elements/Simple_Menu.php:777, ../includes/Elements/Simple_Menu.php:803, ../includes/Elements/Simple_Menu.php:828, ../includes/Elements/Simple_Menu.php:1219, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:431, ../includes/Elements/Testimonial.php:353, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:298, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:560, ../includes/Elements/TypeForm.php:199, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:272, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:595, ../includes/Elements/Woo_Cart.php:669, ../includes/Elements/Woo_Cart.php:750, ../includes/Elements/Woo_Cart.php:862, ../includes/Elements/Woo_Cart.php:1702, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Product_Carousel.php:791, ../includes/Elements/Woo_Product_Carousel.php:969, ../includes/Elements/Woo_Product_Carousel.php:1024, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:231, ../includes/Elements/Woo_Product_Gallery.php:744, ../includes/Elements/Woo_Product_Gallery.php:1722, ../includes/Elements/Woo_Product_List.php:632, ../includes/Elements/Woo_Product_List.php:806, ../includes/Elements/WpForms.php:274, ../includes/Elements/WpForms.php:391, ../includes/Elements/WpForms.php:579, ../includes/Elements/WpForms.php:1150, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:555, ../includes/Traits/Controls.php:699, ../includes/Traits/Controls.php:1852, ../includes/Traits/Controls.php:1913, ../includes/Traits/Controls.php:2310, ../includes/Traits/Controls.php:2361, ../includes/Traits/Controls.php:2362, ../includes/Traits/Controls.php:2684 msgid "Left" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1066, ../includes/Elements/Business_Reviews.php:2079, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1139, ../includes/Elements/Creative_Button.php:457, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Cta_Box.php:212, ../includes/Elements/Data_Table.php:578, ../includes/Elements/Data_Table.php:803, ../includes/Elements/Data_Table.php:1052, ../includes/Elements/Dual_Color_Header.php:202, ../includes/Elements/Dual_Color_Header.php:665, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1289, ../includes/Elements/Event_Calendar.php:2303, ../includes/Elements/Event_Calendar.php:2439, ../includes/Elements/Fancy_Text.php:193, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1527, ../includes/Elements/Filterable_Gallery.php:1987, ../includes/Elements/Filterable_Gallery.php:2779, ../includes/Elements/Flip_Box.php:386, ../includes/Elements/Flip_Box.php:626, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:320, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:472, ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Grid.php:702, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:876, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Product_Grid.php:854, ../includes/Elements/Product_Grid.php:1173, ../includes/Elements/Product_Grid.php:2380, ../includes/Elements/Progress_Bar.php:368, ../includes/Elements/Progress_Bar.php:637, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:192, ../includes/Elements/Team_Member.php:416, ../includes/Elements/Testimonial.php:327, ../includes/Elements/Tooltip.php:219, ../includes/Elements/Tooltip.php:394, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:985, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:625, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1150, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:674, ../includes/Traits/Controls.php:1740, ../includes/Traits/Controls.php:1801, ../includes/Traits/Controls.php:2198, ../includes/Traits/Controls.php:2572 +#: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Betterdocs_Category_Box.php:774, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Business_Reviews.php:1080, ../includes/Elements/Business_Reviews.php:2093, ../includes/Elements/Caldera_Forms.php:240, ../includes/Elements/Caldera_Forms.php:424, ../includes/Elements/Caldera_Forms.php:570, ../includes/Elements/Caldera_Forms.php:1145, ../includes/Elements/Contact_Form_7.php:338, ../includes/Elements/Contact_Form_7.php:453, ../includes/Elements/Contact_Form_7.php:1183, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1143, ../includes/Elements/Creative_Button.php:461, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:216, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:807, ../includes/Elements/Data_Table.php:1056, ../includes/Elements/Dual_Color_Header.php:206, ../includes/Elements/Dual_Color_Header.php:644, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1289, ../includes/Elements/Event_Calendar.php:2303, ../includes/Elements/Event_Calendar.php:2439, ../includes/Elements/Fancy_Text.php:197, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1531, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2783, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Flip_Box.php:630, ../includes/Elements/FluentForm.php:274, ../includes/Elements/FluentForm.php:471, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:1250, ../includes/Elements/FluentForm.php:1495, ../includes/Elements/Formstack.php:341, ../includes/Elements/Formstack.php:456, ../includes/Elements/Formstack.php:772, ../includes/Elements/Formstack.php:1381, ../includes/Elements/GravityForms.php:354, ../includes/Elements/GravityForms.php:491, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:776, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:2189, ../includes/Elements/GravityForms.php:2452, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:324, ../includes/Elements/Login_Register.php:3711, ../includes/Elements/Login_Register.php:4929, ../includes/Elements/Login_Register.php:4951, ../includes/Elements/Login_Register.php:5257, ../includes/Elements/Login_Register.php:5277, ../includes/Elements/Login_Register.php:5300, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:1902, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/NinjaForms.php:428, ../includes/Elements/NinjaForms.php:612, ../includes/Elements/NinjaForms.php:1307, ../includes/Elements/Post_Grid.php:485, ../includes/Elements/Post_Grid.php:645, ../includes/Elements/Post_Grid.php:715, ../includes/Elements/Post_Grid.php:812, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:386, ../includes/Elements/Pricing_Table.php:877, ../includes/Elements/Pricing_Table.php:902, ../includes/Elements/Product_Grid.php:966, ../includes/Elements/Product_Grid.php:1285, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Progress_Bar.php:372, ../includes/Elements/Progress_Bar.php:641, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:374, ../includes/Elements/Simple_Menu.php:781, ../includes/Elements/Simple_Menu.php:807, ../includes/Elements/Simple_Menu.php:832, ../includes/Elements/Simple_Menu.php:1223, ../includes/Elements/SVG_Draw.php:196, ../includes/Elements/Team_Member.php:435, ../includes/Elements/Testimonial.php:357, ../includes/Elements/Tooltip.php:223, ../includes/Elements/Tooltip.php:398, ../includes/Elements/Twitter_Feed.php:564, ../includes/Elements/TypeForm.php:203, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:276, ../includes/Elements/Woo_Cart.php:599, ../includes/Elements/Woo_Cart.php:673, ../includes/Elements/Woo_Cart.php:754, ../includes/Elements/Woo_Cart.php:866, ../includes/Elements/Woo_Cart.php:1706, ../includes/Elements/Woo_Cart.php:2349, ../includes/Elements/Woo_Product_Carousel.php:1028, ../includes/Elements/Woo_Product_Gallery.php:205, ../includes/Elements/Woo_Product_Gallery.php:748, ../includes/Elements/WpForms.php:278, ../includes/Elements/WpForms.php:395, ../includes/Elements/WpForms.php:583, ../includes/Elements/WpForms.php:1154, ../includes/Traits/Controls.php:703, ../includes/Traits/Controls.php:1856, ../includes/Traits/Controls.php:1917, ../includes/Traits/Controls.php:2314, ../includes/Traits/Controls.php:2688 msgid "Center" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:678, ../includes/Elements/Adv_Accordion.php:739, ../includes/Elements/Adv_Accordion.php:800, ../includes/Elements/Adv_Accordion.php:868, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:687, ../includes/Elements/Adv_Tabs.php:754, ../includes/Elements/Adv_Tabs.php:836, ../includes/Elements/Business_Reviews.php:1193, ../includes/Elements/Business_Reviews.php:1261, ../includes/Elements/Business_Reviews.php:1368, ../includes/Elements/Business_Reviews.php:1759, ../includes/Elements/Business_Reviews.php:1827, ../includes/Elements/Business_Reviews.php:1896, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1216, ../includes/Elements/Creative_Button.php:283, ../includes/Elements/Creative_Button.php:375, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Cta_Box.php:914, ../includes/Elements/Cta_Box.php:1086, ../includes/Elements/Cta_Box.php:1101, ../includes/Elements/Cta_Box.php:1297, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Cta_Box.php:1366, ../includes/Elements/Cta_Box.php:1381, ../includes/Elements/Data_Table.php:1010, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Event_Calendar.php:1390, ../includes/Elements/Event_Calendar.php:1515, ../includes/Elements/Event_Calendar.php:1607, ../includes/Elements/Event_Calendar.php:1640, ../includes/Elements/Event_Calendar.php:1775, ../includes/Elements/Event_Calendar.php:1821, ../includes/Elements/Event_Calendar.php:1866, ../includes/Elements/Event_Calendar.php:2551, ../includes/Elements/Event_Calendar.php:2582, ../includes/Elements/Filterable_Gallery.php:1177, ../includes/Elements/Filterable_Gallery.php:1243, ../includes/Elements/Filterable_Gallery.php:2945, ../includes/Elements/Filterable_Gallery.php:3140, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1252, ../includes/Elements/Info_Box.php:1299, ../includes/Elements/Interactive_Circle.php:656, ../includes/Elements/Interactive_Circle.php:716, ../includes/Elements/Interactive_Circle.php:784, ../includes/Elements/Interactive_Circle.php:869, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Pricing_Table.php:2051, ../includes/Elements/Product_Grid.php:2433, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2521, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:475, ../includes/Elements/Tooltip.php:649, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:860, ../includes/Elements/WpForms.php:916, ../includes/Elements/WpForms.php:1229, ../includes/Elements/WpForms.php:1338, ../includes/Elements/WpForms.php:1383, ../includes/Extensions/Table_of_Content.php:719, ../includes/Extensions/Table_of_Content.php:1038, ../includes/Extensions/Table_of_Content.php:1061, ../includes/Extensions/Table_of_Content.php:1087, ../includes/Traits/Controls.php:1836, ../includes/Traits/Controls.php:1949, ../includes/Traits/Controls.php:1892, ../includes/Traits/Controls.php:2080, ../includes/Traits/Controls.php:2142, ../includes/Traits/Controls.php:2525 +#: ../includes/Elements/Advanced_Data_Table.php:443, ../includes/Elements/Advanced_Data_Table.php:562, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1137, ../includes/Elements/Adv_Accordion.php:158, ../includes/Elements/Betterdocs_Category_Box.php:778, ../includes/Elements/Betterdocs_Category_Grid.php:1524, ../includes/Elements/Betterdocs_Category_Grid.php:1549, ../includes/Elements/Business_Reviews.php:1084, ../includes/Elements/Business_Reviews.php:2097, ../includes/Elements/Caldera_Forms.php:244, ../includes/Elements/Caldera_Forms.php:428, ../includes/Elements/Caldera_Forms.php:574, ../includes/Elements/Caldera_Forms.php:1149, ../includes/Elements/Contact_Form_7.php:342, ../includes/Elements/Contact_Form_7.php:457, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:214, ../includes/Elements/Countdown.php:1147, ../includes/Elements/Creative_Button.php:465, ../includes/Elements/Cta_Box.php:123, ../includes/Elements/Cta_Box.php:215, ../includes/Elements/Data_Table.php:586, ../includes/Elements/Data_Table.php:811, ../includes/Elements/Data_Table.php:1060, ../includes/Elements/Dual_Color_Header.php:210, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1293, ../includes/Elements/Event_Calendar.php:2307, ../includes/Elements/Event_Calendar.php:2443, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Feature_List.php:336, ../includes/Elements/Filterable_Gallery.php:997, ../includes/Elements/Filterable_Gallery.php:1535, ../includes/Elements/Filterable_Gallery.php:1995, ../includes/Elements/Filterable_Gallery.php:2787, ../includes/Elements/Flip_Box.php:394, ../includes/Elements/Flip_Box.php:634, ../includes/Elements/FluentForm.php:278, ../includes/Elements/FluentForm.php:475, ../includes/Elements/FluentForm.php:621, ../includes/Elements/FluentForm.php:1254, ../includes/Elements/FluentForm.php:1499, ../includes/Elements/Formstack.php:345, ../includes/Elements/Formstack.php:460, ../includes/Elements/Formstack.php:776, ../includes/Elements/Formstack.php:1385, ../includes/Elements/GravityForms.php:358, ../includes/Elements/GravityForms.php:495, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:780, ../includes/Elements/GravityForms.php:907, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2456, ../includes/Elements/Image_Accordion.php:121, ../includes/Elements/Info_Box.php:328, ../includes/Elements/Login_Register.php:1350, ../includes/Elements/Login_Register.php:3715, ../includes/Elements/Login_Register.php:4955, ../includes/Elements/Login_Register.php:5304, ../includes/Elements/NFT_Gallery.php:738, ../includes/Elements/NFT_Gallery.php:1906, ../includes/Elements/NinjaForms.php:293, ../includes/Elements/NinjaForms.php:432, ../includes/Elements/NinjaForms.php:616, ../includes/Elements/NinjaForms.php:1311, ../includes/Elements/Post_Grid.php:489, ../includes/Elements/Post_Grid.php:649, ../includes/Elements/Post_Grid.php:719, ../includes/Elements/Post_Grid.php:816, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:390, ../includes/Elements/Pricing_Table.php:147, ../includes/Elements/Pricing_Table.php:294, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Pricing_Table.php:735, ../includes/Elements/Pricing_Table.php:881, ../includes/Elements/Pricing_Table.php:906, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1289, ../includes/Elements/Product_Grid.php:1979, ../includes/Elements/Product_Grid.php:2525, ../includes/Elements/Progress_Bar.php:376, ../includes/Elements/Progress_Bar.php:645, ../includes/Elements/Simple_Menu.php:200, ../includes/Elements/Simple_Menu.php:378, ../includes/Elements/Simple_Menu.php:785, ../includes/Elements/Simple_Menu.php:811, ../includes/Elements/Simple_Menu.php:836, ../includes/Elements/Simple_Menu.php:1227, ../includes/Elements/SVG_Draw.php:200, ../includes/Elements/Team_Member.php:439, ../includes/Elements/Testimonial.php:361, ../includes/Elements/Tooltip.php:227, ../includes/Elements/Tooltip.php:299, ../includes/Elements/Tooltip.php:402, ../includes/Elements/Twitter_Feed.php:568, ../includes/Elements/TypeForm.php:207, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:280, ../includes/Elements/Woo_Cart.php:504, ../includes/Elements/Woo_Cart.php:603, ../includes/Elements/Woo_Cart.php:677, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:1710, ../includes/Elements/Woo_Cart.php:2353, ../includes/Elements/Woo_Product_Carousel.php:792, ../includes/Elements/Woo_Product_Carousel.php:973, ../includes/Elements/Woo_Product_Carousel.php:1032, ../includes/Elements/Woo_Product_Gallery.php:209, ../includes/Elements/Woo_Product_Gallery.php:235, ../includes/Elements/Woo_Product_Gallery.php:752, ../includes/Elements/Woo_Product_Gallery.php:1726, ../includes/Elements/Woo_Product_List.php:636, ../includes/Elements/Woo_Product_List.php:810, ../includes/Elements/WpForms.php:282, ../includes/Elements/WpForms.php:399, ../includes/Elements/WpForms.php:587, ../includes/Elements/WpForms.php:1158, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:556, ../includes/Traits/Controls.php:707, ../includes/Traits/Controls.php:1860, ../includes/Traits/Controls.php:1921, ../includes/Traits/Controls.php:2318, ../includes/Traits/Controls.php:2361, ../includes/Traits/Controls.php:2362, ../includes/Traits/Controls.php:2692 +msgid "Right" +msgstr "" + +#: ../includes/Elements/Advanced_Data_Table.php:458, ../includes/Elements/Advanced_Data_Table.php:577, ../includes/Elements/Advanced_Data_Table.php:671, ../includes/Elements/Advanced_Data_Table.php:702, ../includes/Elements/Advanced_Data_Table.php:733, ../includes/Elements/Advanced_Data_Table.php:764, ../includes/Elements/Advanced_Data_Table.php:795, ../includes/Elements/Advanced_Data_Table.php:827, ../includes/Elements/Advanced_Data_Table.php:1010, ../includes/Elements/Advanced_Data_Table.php:1206, ../includes/Elements/Advanced_Data_Table.php:1276, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:743, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:872, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:691, ../includes/Elements/Adv_Tabs.php:758, ../includes/Elements/Adv_Tabs.php:840, ../includes/Elements/Business_Reviews.php:1207, ../includes/Elements/Business_Reviews.php:1275, ../includes/Elements/Business_Reviews.php:1382, ../includes/Elements/Business_Reviews.php:1773, ../includes/Elements/Business_Reviews.php:1841, ../includes/Elements/Business_Reviews.php:1910, ../includes/Elements/Caldera_Forms.php:273, ../includes/Elements/Caldera_Forms.php:334, ../includes/Elements/Caldera_Forms.php:528, ../includes/Elements/Caldera_Forms.php:609, ../includes/Elements/Caldera_Forms.php:855, ../includes/Elements/Caldera_Forms.php:911, ../includes/Elements/Caldera_Forms.php:1221, ../includes/Elements/Caldera_Forms.php:1327, ../includes/Elements/Caldera_Forms.php:1380, ../includes/Elements/Contact_Form_7.php:480, ../includes/Elements/Contact_Form_7.php:513, ../includes/Elements/Contact_Form_7.php:572, ../includes/Elements/Contact_Form_7.php:857, ../includes/Elements/Contact_Form_7.php:934, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1366, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Contact_Form_7.php:1555, ../includes/Elements/Contact_Form_7.php:1612, ../includes/Elements/Content_Ticker.php:360, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Creative_Button.php:287, ../includes/Elements/Creative_Button.php:379, ../includes/Elements/Cta_Box.php:903, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1090, ../includes/Elements/Cta_Box.php:1105, ../includes/Elements/Cta_Box.php:1301, ../includes/Elements/Cta_Box.php:1316, ../includes/Elements/Cta_Box.php:1370, ../includes/Elements/Cta_Box.php:1385, ../includes/Elements/Data_Table.php:1014, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Event_Calendar.php:1390, ../includes/Elements/Event_Calendar.php:1515, ../includes/Elements/Event_Calendar.php:1607, ../includes/Elements/Event_Calendar.php:1640, ../includes/Elements/Event_Calendar.php:1775, ../includes/Elements/Event_Calendar.php:1821, ../includes/Elements/Event_Calendar.php:1866, ../includes/Elements/Event_Calendar.php:2551, ../includes/Elements/Event_Calendar.php:2582, ../includes/Elements/Filterable_Gallery.php:1181, ../includes/Elements/Filterable_Gallery.php:1247, ../includes/Elements/Filterable_Gallery.php:2949, ../includes/Elements/Filterable_Gallery.php:3144, ../includes/Elements/FluentForm.php:308, ../includes/Elements/FluentForm.php:369, ../includes/Elements/FluentForm.php:575, ../includes/Elements/FluentForm.php:658, ../includes/Elements/FluentForm.php:907, ../includes/Elements/FluentForm.php:1572, ../includes/Elements/FluentForm.php:1699, ../includes/Elements/FluentForm.php:2118, ../includes/Elements/Formstack.php:484, ../includes/Elements/Formstack.php:533, ../includes/Elements/Formstack.php:590, ../includes/Elements/Formstack.php:802, ../includes/Elements/Formstack.php:857, ../includes/Elements/Formstack.php:1106, ../includes/Elements/Formstack.php:1457, ../includes/Elements/Formstack.php:1563, ../includes/Elements/Formstack.php:1785, ../includes/Elements/Formstack.php:2026, ../includes/Elements/GravityForms.php:518, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:597, ../includes/Elements/GravityForms.php:812, ../includes/Elements/GravityForms.php:855, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1211, ../includes/Elements/GravityForms.php:1264, ../includes/Elements/GravityForms.php:1453, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:1972, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/GravityForms.php:2515, ../includes/Elements/GravityForms.php:2602, ../includes/Elements/GravityForms.php:2678, ../includes/Elements/GravityForms.php:2813, ../includes/Elements/Info_Box.php:1257, ../includes/Elements/Info_Box.php:1304, ../includes/Elements/Interactive_Circle.php:698, ../includes/Elements/Interactive_Circle.php:759, ../includes/Elements/Interactive_Circle.php:827, ../includes/Elements/Interactive_Circle.php:912, ../includes/Elements/Login_Register.php:3736, ../includes/Elements/Login_Register.php:3875, ../includes/Elements/Login_Register.php:4432, ../includes/Elements/Login_Register.php:4976, ../includes/Elements/Login_Register.php:5013, ../includes/Elements/Login_Register.php:5326, ../includes/Elements/Login_Register.php:5363, ../includes/Elements/NFT_Gallery.php:1177, ../includes/Elements/NFT_Gallery.php:1239, ../includes/Elements/NFT_Gallery.php:1300, ../includes/Elements/NFT_Gallery.php:1475, ../includes/Elements/NFT_Gallery.php:1530, ../includes/Elements/NFT_Gallery.php:1547, ../includes/Elements/NFT_Gallery.php:1728, ../includes/Elements/NFT_Gallery.php:1783, ../includes/Elements/NFT_Gallery.php:1800, ../includes/Elements/NFT_Gallery.php:1977, ../includes/Elements/NFT_Gallery.php:2022, ../includes/Elements/NFT_Gallery.php:2131, ../includes/Elements/NFT_Gallery.php:2326, ../includes/Elements/NinjaForms.php:455, ../includes/Elements/NinjaForms.php:504, ../includes/Elements/NinjaForms.php:564, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:899, ../includes/Elements/NinjaForms.php:955, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/NinjaForms.php:1484, ../includes/Elements/NinjaForms.php:1550, ../includes/Elements/NinjaForms.php:1652, ../includes/Elements/Pricing_Table.php:1982, ../includes/Elements/Pricing_Table.php:2052, ../includes/Elements/Product_Grid.php:2574, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Product_Grid.php:2662, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:560, ../includes/Elements/Simple_Menu.php:888, ../includes/Elements/Simple_Menu.php:1020, ../includes/Elements/Simple_Menu.php:1111, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1424, ../includes/Elements/Tooltip.php:435, ../includes/Elements/Tooltip.php:479, ../includes/Elements/Tooltip.php:653, ../includes/Elements/Twitter_Feed.php:1284, ../includes/Elements/Twitter_Feed.php:1479, ../includes/Elements/WeForms.php:694, ../includes/Elements/WeForms.php:744, ../includes/Elements/Woo_Cart.php:1337, ../includes/Elements/Woo_Cart.php:1616, ../includes/Elements/Woo_Cart.php:1907, ../includes/Elements/Woo_Cart.php:1945, ../includes/Elements/Woo_Cart.php:2033, ../includes/Elements/Woo_Cart.php:2183, ../includes/Elements/Woo_Cart.php:2228, ../includes/Elements/Woo_Cart.php:2431, ../includes/Elements/Woo_Cart.php:2514, ../includes/Elements/Woo_Cart.php:2601, ../includes/Elements/WpForms.php:422, ../includes/Elements/WpForms.php:471, ../includes/Elements/WpForms.php:538, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:864, ../includes/Elements/WpForms.php:920, ../includes/Elements/WpForms.php:1233, ../includes/Elements/WpForms.php:1343, ../includes/Elements/WpForms.php:1399, ../includes/Extensions/Table_of_Content.php:804, ../includes/Extensions/Table_of_Content.php:1123, ../includes/Extensions/Table_of_Content.php:1146, ../includes/Extensions/Table_of_Content.php:1172, ../includes/Traits/Controls.php:1952, ../includes/Traits/Controls.php:2065, ../includes/Traits/Controls.php:2008, ../includes/Traits/Controls.php:2196, ../includes/Traits/Controls.php:2258, ../includes/Traits/Controls.php:2641 msgid "Text Color" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1019, ../includes/Elements/Adv_Accordion.php:1066, ../includes/Elements/Adv_Accordion.php:1113, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:817, ../includes/Elements/Business_Reviews.php:861, ../includes/Elements/Business_Reviews.php:894, ../includes/Elements/Business_Reviews.php:992, ../includes/Elements/Business_Reviews.php:1026, ../includes/Elements/Business_Reviews.php:1477, ../includes/Elements/Business_Reviews.php:1510, ../includes/Elements/Business_Reviews.php:1605, ../includes/Elements/Business_Reviews.php:1640, ../includes/Elements/Business_Reviews.php:2247, ../includes/Elements/Business_Reviews.php:2303, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:838, ../includes/Elements/Countdown.php:850, ../includes/Elements/Countdown.php:910, ../includes/Elements/Countdown.php:922, ../includes/Elements/Countdown.php:982, ../includes/Elements/Countdown.php:994, ../includes/Elements/Countdown.php:1054, ../includes/Elements/Countdown.php:1066, ../includes/Elements/Creative_Button.php:296, ../includes/Elements/Creative_Button.php:389, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:567, ../includes/Elements/Cta_Box.php:606, ../includes/Elements/Cta_Box.php:928, ../includes/Elements/Cta_Box.php:944, ../includes/Elements/Cta_Box.php:1115, ../includes/Elements/Cta_Box.php:1134, ../includes/Elements/Data_Table.php:660, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1228, ../includes/Elements/Dual_Color_Header.php:317, ../includes/Elements/Event_Calendar.php:2562, ../includes/Elements/Filterable_Gallery.php:1052, ../includes/Elements/Filterable_Gallery.php:1189, ../includes/Elements/Filterable_Gallery.php:1255, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1603, ../includes/Elements/Filterable_Gallery.php:1641, ../includes/Elements/Filterable_Gallery.php:1809, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:2027, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2929, ../includes/Elements/Filterable_Gallery.php:3124, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:326, ../includes/Elements/Info_Box.php:559, ../includes/Elements/Info_Box.php:800, ../includes/Elements/Info_Box.php:879, ../includes/Elements/Info_Box.php:1050, ../includes/Elements/Info_Box.php:1113, ../includes/Elements/Info_Box.php:1265, ../includes/Elements/Info_Box.php:1312, ../includes/Elements/Interactive_Circle.php:645, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Interactive_Circle.php:770, ../includes/Elements/Interactive_Circle.php:852, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:954, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:791, ../includes/Elements/Pricing_Table.php:953, ../includes/Elements/Pricing_Table.php:1484, ../includes/Elements/Pricing_Table.php:1561, ../includes/Elements/Pricing_Table.php:1727, ../includes/Elements/Pricing_Table.php:1994, ../includes/Elements/Pricing_Table.php:2064, ../includes/Elements/Product_Grid.php:2018, ../includes/Elements/Product_Grid.php:2126, ../includes/Elements/Product_Grid.php:2234, ../includes/Elements/Product_Grid.php:2446, ../includes/Elements/Product_Grid.php:2487, ../includes/Elements/Product_Grid.php:2534, ../includes/Elements/Product_Grid.php:2784, ../includes/Elements/Product_Grid.php:2827, ../includes/Elements/Product_Grid.php:2888, ../includes/Elements/Product_Grid.php:2939, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:287, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Tooltip.php:638, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:873, ../includes/Elements/Woo_Checkout.php:988, ../includes/Elements/Woo_Checkout.php:1110, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:1683, ../includes/Elements/Woo_Checkout.php:2014, ../includes/Elements/Woo_Checkout.php:2054, ../includes/Elements/Woo_Checkout.php:2644, ../includes/Elements/Woo_Checkout.php:2774, ../includes/Elements/Woo_Checkout.php:2884, ../includes/Elements/Woo_Checkout.php:2924, ../includes/Elements/Woo_Product_Carousel.php:1007, ../includes/Elements/Woo_Product_Carousel.php:1518, ../includes/Elements/Woo_Product_Carousel.php:1600, ../includes/Elements/Woo_Product_Carousel.php:1819, ../includes/Elements/Woo_Product_Carousel.php:1862, ../includes/Elements/Woo_Product_Carousel.php:1924, ../includes/Elements/Woo_Product_Carousel.php:1976, ../includes/Elements/Woo_Product_Carousel.php:2780, ../includes/Elements/Woo_Product_Carousel.php:2836, ../includes/Elements/Woo_Product_Gallery.php:1766, ../includes/Elements/Woo_Product_Gallery.php:1816, ../includes/Elements/Woo_Product_Gallery.php:2015, ../includes/Elements/Woo_Product_Gallery.php:2056, ../includes/Elements/Woo_Product_Gallery.php:2099, ../includes/Elements/Woo_Product_Gallery.php:2160, ../includes/Elements/Woo_Product_Gallery.php:2211, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Elements/Woo_Product_List.php:1289, ../includes/Elements/Woo_Product_List.php:2912, ../includes/Elements/Woo_Product_List.php:2964, ../includes/Elements/Woo_Product_List.php:2979, ../includes/Elements/Woo_Product_List.php:2994, ../includes/Elements/Woo_Product_List.php:3047, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1217, ../includes/Elements/WpForms.php:1326, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:403, ../includes/Extensions/Table_of_Content.php:706, ../includes/Extensions/Table_of_Content.php:854, ../includes/Extensions/Table_of_Content.php:918, ../includes/Traits/Controls.php:2092, ../includes/Traits/Controls.php:2154, ../includes/Traits/Controls.php:2535, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 +#: ../includes/Elements/Advanced_Data_Table.php:472, ../includes/Elements/Advanced_Data_Table.php:613, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:811, ../includes/Elements/Advanced_Data_Table.php:843, ../includes/Elements/Advanced_Data_Table.php:1022, ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1290, ../includes/Elements/Advanced_Data_Table.php:1388, ../includes/Elements/Advanced_Data_Table.php:1418, ../includes/Elements/Adv_Accordion.php:1023, ../includes/Elements/Adv_Accordion.php:1070, ../includes/Elements/Adv_Accordion.php:1117, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Adv_Tabs.php:821, ../includes/Elements/Business_Reviews.php:875, ../includes/Elements/Business_Reviews.php:908, ../includes/Elements/Business_Reviews.php:1006, ../includes/Elements/Business_Reviews.php:1040, ../includes/Elements/Business_Reviews.php:1491, ../includes/Elements/Business_Reviews.php:1524, ../includes/Elements/Business_Reviews.php:1619, ../includes/Elements/Business_Reviews.php:1654, ../includes/Elements/Business_Reviews.php:2261, ../includes/Elements/Business_Reviews.php:2317, ../includes/Elements/Caldera_Forms.php:597, ../includes/Elements/Caldera_Forms.php:805, ../includes/Elements/Caldera_Forms.php:1209, ../includes/Elements/Caldera_Forms.php:1315, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:560, ../includes/Elements/Contact_Form_7.php:775, ../includes/Elements/Contact_Form_7.php:1246, ../includes/Elements/Contact_Form_7.php:1354, ../includes/Elements/Contact_Form_7.php:1445, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Content_Ticker.php:348, ../includes/Elements/Content_Ticker.php:425, ../includes/Elements/Content_Ticker.php:605, ../includes/Elements/Content_Ticker.php:662, ../includes/Elements/Countdown.php:842, ../includes/Elements/Countdown.php:854, ../includes/Elements/Countdown.php:914, ../includes/Elements/Countdown.php:926, ../includes/Elements/Countdown.php:986, ../includes/Elements/Countdown.php:998, ../includes/Elements/Countdown.php:1058, ../includes/Elements/Countdown.php:1070, ../includes/Elements/Creative_Button.php:300, ../includes/Elements/Creative_Button.php:393, ../includes/Elements/Cta_Box.php:141, ../includes/Elements/Cta_Box.php:571, ../includes/Elements/Cta_Box.php:610, ../includes/Elements/Cta_Box.php:932, ../includes/Elements/Cta_Box.php:948, ../includes/Elements/Cta_Box.php:1119, ../includes/Elements/Cta_Box.php:1138, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:704, ../includes/Elements/Data_Table.php:1232, ../includes/Elements/Dual_Color_Header.php:321, ../includes/Elements/Event_Calendar.php:2562, ../includes/Elements/Filterable_Gallery.php:1056, ../includes/Elements/Filterable_Gallery.php:1193, ../includes/Elements/Filterable_Gallery.php:1259, ../includes/Elements/Filterable_Gallery.php:1411, ../includes/Elements/Filterable_Gallery.php:1607, ../includes/Elements/Filterable_Gallery.php:1645, ../includes/Elements/Filterable_Gallery.php:1813, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:2031, ../includes/Elements/Filterable_Gallery.php:2169, ../includes/Elements/Filterable_Gallery.php:2933, ../includes/Elements/Filterable_Gallery.php:3128, ../includes/Elements/FluentForm.php:646, ../includes/Elements/FluentForm.php:854, ../includes/Elements/FluentForm.php:1288, ../includes/Elements/FluentForm.php:1374, ../includes/Elements/FluentForm.php:1560, ../includes/Elements/FluentForm.php:1687, ../includes/Elements/FluentForm.php:2107, ../includes/Elements/Formstack.php:845, ../includes/Elements/Formstack.php:1053, ../includes/Elements/Formstack.php:1445, ../includes/Elements/Formstack.php:1551, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1161, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2083, ../includes/Elements/GravityForms.php:2263, ../includes/Elements/GravityForms.php:2325, ../includes/Elements/GravityForms.php:2503, ../includes/Elements/GravityForms.php:2590, ../includes/Elements/Image_Accordion.php:330, ../includes/Elements/Info_Box.php:564, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:884, ../includes/Elements/Info_Box.php:1055, ../includes/Elements/Info_Box.php:1118, ../includes/Elements/Info_Box.php:1270, ../includes/Elements/Info_Box.php:1317, ../includes/Elements/Interactive_Circle.php:687, ../includes/Elements/Interactive_Circle.php:745, ../includes/Elements/Interactive_Circle.php:813, ../includes/Elements/Interactive_Circle.php:895, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:2843, ../includes/Elements/Login_Register.php:2945, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3479, ../includes/Elements/Login_Register.php:3570, ../includes/Elements/Login_Register.php:3750, ../includes/Elements/Login_Register.php:3788, ../includes/Elements/Login_Register.php:3885, ../includes/Elements/Login_Register.php:4559, ../includes/Elements/Login_Register.php:4719, ../includes/Elements/Login_Register.php:4984, ../includes/Elements/Login_Register.php:5021, ../includes/Elements/Login_Register.php:5334, ../includes/Elements/Login_Register.php:5371, ../includes/Elements/NFT_Gallery.php:819, ../includes/Elements/NFT_Gallery.php:852, ../includes/Elements/NFT_Gallery.php:964, ../includes/Elements/NFT_Gallery.php:997, ../includes/Elements/NFT_Gallery.php:1988, ../includes/Elements/NFT_Gallery.php:2033, ../includes/Elements/NFT_Gallery.php:2115, ../includes/Elements/NFT_Gallery.php:2310, ../includes/Elements/NinjaForms.php:639, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/Post_Grid.php:967, ../includes/Elements/Post_Timeline.php:157, ../includes/Elements/Pricing_Table.php:792, ../includes/Elements/Pricing_Table.php:954, ../includes/Elements/Pricing_Table.php:1485, ../includes/Elements/Pricing_Table.php:1562, ../includes/Elements/Pricing_Table.php:1728, ../includes/Elements/Pricing_Table.php:1995, ../includes/Elements/Pricing_Table.php:2065, ../includes/Elements/Product_Grid.php:2159, ../includes/Elements/Product_Grid.php:2267, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2628, ../includes/Elements/Product_Grid.php:2675, ../includes/Elements/Product_Grid.php:2925, ../includes/Elements/Product_Grid.php:2968, ../includes/Elements/Product_Grid.php:3029, ../includes/Elements/Product_Grid.php:3080, ../includes/Elements/Progress_Bar.php:683, ../includes/Elements/Simple_Menu.php:302, ../includes/Elements/Simple_Menu.php:413, ../includes/Elements/Simple_Menu.php:447, ../includes/Elements/Simple_Menu.php:481, ../includes/Elements/Simple_Menu.php:539, ../includes/Elements/Simple_Menu.php:573, ../includes/Elements/Simple_Menu.php:645, ../includes/Elements/Simple_Menu.php:717, ../includes/Elements/Simple_Menu.php:902, ../includes/Elements/Simple_Menu.php:987, ../includes/Elements/Simple_Menu.php:1033, ../includes/Elements/Simple_Menu.php:1078, ../includes/Elements/Simple_Menu.php:1126, ../includes/Elements/Simple_Menu.php:1173, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1391, ../includes/Elements/Simple_Menu.php:1438, ../includes/Elements/Simple_Menu.php:1485, ../includes/Elements/Team_Member.php:786, ../includes/Elements/Testimonial.php:316, ../includes/Elements/Tooltip.php:424, ../includes/Elements/Tooltip.php:468, ../includes/Elements/Tooltip.php:642, ../includes/Elements/Twitter_Feed.php:694, ../includes/Elements/Twitter_Feed.php:1268, ../includes/Elements/Twitter_Feed.php:1463, ../includes/Elements/WeForms.php:705, ../includes/Elements/WeForms.php:755, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1896, ../includes/Elements/Woo_Cart.php:1934, ../includes/Elements/Woo_Cart.php:2170, ../includes/Elements/Woo_Cart.php:2215, ../includes/Elements/Woo_Checkout.php:889, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1138, ../includes/Elements/Woo_Checkout.php:1684, ../includes/Elements/Woo_Checkout.php:1724, ../includes/Elements/Woo_Checkout.php:2055, ../includes/Elements/Woo_Checkout.php:2095, ../includes/Elements/Woo_Checkout.php:2689, ../includes/Elements/Woo_Checkout.php:2819, ../includes/Elements/Woo_Checkout.php:2937, ../includes/Elements/Woo_Checkout.php:2977, ../includes/Elements/Woo_Product_Carousel.php:1050, ../includes/Elements/Woo_Product_Carousel.php:1561, ../includes/Elements/Woo_Product_Carousel.php:1643, ../includes/Elements/Woo_Product_Carousel.php:1862, ../includes/Elements/Woo_Product_Carousel.php:1905, ../includes/Elements/Woo_Product_Carousel.php:1967, ../includes/Elements/Woo_Product_Carousel.php:2019, ../includes/Elements/Woo_Product_Carousel.php:2823, ../includes/Elements/Woo_Product_Carousel.php:2879, ../includes/Elements/Woo_Product_Gallery.php:1918, ../includes/Elements/Woo_Product_Gallery.php:1968, ../includes/Elements/Woo_Product_Gallery.php:2167, ../includes/Elements/Woo_Product_Gallery.php:2208, ../includes/Elements/Woo_Product_Gallery.php:2251, ../includes/Elements/Woo_Product_Gallery.php:2312, ../includes/Elements/Woo_Product_Gallery.php:2363, ../includes/Elements/Woo_Product_List.php:1325, ../includes/Elements/Woo_Product_List.php:1435, ../includes/Elements/Woo_Product_List.php:3058, ../includes/Elements/Woo_Product_List.php:3110, ../includes/Elements/Woo_Product_List.php:3125, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Elements/Woo_Product_List.php:3193, ../includes/Elements/WpForms.php:610, ../includes/Elements/WpForms.php:1221, ../includes/Elements/WpForms.php:1330, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:415, ../includes/Extensions/Table_of_Content.php:791, ../includes/Extensions/Table_of_Content.php:939, ../includes/Extensions/Table_of_Content.php:1003, ../includes/Traits/Controls.php:2208, ../includes/Traits/Controls.php:2270, ../includes/Traits/Controls.php:2651, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486 msgid "Background Color" msgstr "" @@ -898,7 +741,7 @@ msgstr "" msgid "Cell Border" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:643, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Tabs.php:426, ../includes/Elements/Adv_Tabs.php:575, ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:823, ../includes/Elements/Business_Reviews.php:953, ../includes/Elements/Business_Reviews.php:1155, ../includes/Elements/Business_Reviews.php:1223, ../includes/Elements/Business_Reviews.php:1330, ../includes/Elements/Business_Reviews.php:1398, ../includes/Elements/Business_Reviews.php:1440, ../includes/Elements/Business_Reviews.php:1568, ../includes/Elements/Business_Reviews.php:1698, ../includes/Elements/Business_Reviews.php:1789, ../includes/Elements/Business_Reviews.php:1858, ../includes/Elements/Business_Reviews.php:1926, ../includes/Elements/Business_Reviews.php:2056, ../includes/Elements/Business_Reviews.php:2493, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:707, ../includes/Elements/Countdown.php:1245, ../includes/Elements/Cta_Box.php:620, ../includes/Elements/Cta_Box.php:833, ../includes/Elements/Cta_Box.php:1261, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:329, ../includes/Elements/Event_Calendar.php:1430, ../includes/Elements/Event_Calendar.php:1538, ../includes/Elements/Event_Calendar.php:1666, ../includes/Elements/Event_Calendar.php:1905, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:496, ../includes/Elements/Feature_List.php:682, ../includes/Elements/Filterable_Gallery.php:1064, ../includes/Elements/Filterable_Gallery.php:1141, ../includes/Elements/Filterable_Gallery.php:1323, ../includes/Elements/Filterable_Gallery.php:1419, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2819, ../includes/Elements/Filterable_Gallery.php:3048, ../includes/Elements/Flip_Box.php:1027, ../includes/Elements/Flip_Box.php:1141, ../includes/Elements/Flip_Box.php:1377, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:338, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:571, ../includes/Elements/Interactive_Circle.php:502, ../includes/Elements/Interactive_Circle.php:927, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:558, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1603, ../includes/Elements/Pricing_Table.php:1911, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1213, ../includes/Elements/Product_Grid.php:1628, ../includes/Elements/Progress_Bar.php:830, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:456, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Testimonial.php:430, ../includes/Elements/Tooltip.php:362, ../includes/Elements/Tooltip.php:616, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:884, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1546, ../includes/Elements/Woo_Checkout.php:1744, ../includes/Elements/Woo_Checkout.php:1915, ../includes/Elements/Woo_Checkout.php:1943, ../includes/Elements/Woo_Checkout.php:2115, ../includes/Elements/Woo_Checkout.php:2330, ../includes/Elements/Woo_Checkout.php:2666, ../includes/Elements/Woo_Checkout.php:2997, ../includes/Elements/Woo_Product_Carousel.php:1146, ../includes/Elements/Woo_Product_Carousel.php:2393, ../includes/Elements/Woo_Product_Gallery.php:659, ../includes/Elements/Woo_Product_Gallery.php:763, ../includes/Elements/Woo_Product_Gallery.php:1042, ../includes/Elements/Woo_Product_Gallery.php:1298, ../includes/Elements/Woo_Product_Gallery.php:1360, ../includes/Elements/Woo_Product_List.php:1148, ../includes/Elements/Woo_Product_List.php:1250, ../includes/Elements/Woo_Product_List.php:1365, ../includes/Elements/Woo_Product_List.php:1451, ../includes/Elements/Woo_Product_List.php:1508, ../includes/Elements/Woo_Product_List.php:1556, ../includes/Elements/Woo_Product_List.php:1595, ../includes/Elements/Woo_Product_List.php:1631, ../includes/Elements/Woo_Product_List.php:1736, ../includes/Elements/Woo_Product_List.php:1801, ../includes/Elements/Woo_Product_List.php:1871, ../includes/Elements/WpForms.php:759, ../includes/Elements/WpForms.php:1264, ../includes/Extensions/Table_of_Content.php:743, ../includes/Extensions/Table_of_Content.php:931, ../includes/Traits/Controls.php:1999, ../includes/Traits/Controls.php:2044, ../includes/Traits/Controls.php:2545, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 +#: ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:858, ../includes/Elements/Advanced_Data_Table.php:942, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1480, ../includes/Elements/Adv_Accordion.php:493, ../includes/Elements/Adv_Accordion.php:647, ../includes/Elements/Adv_Accordion.php:890, ../includes/Elements/Adv_Tabs.php:430, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:858, ../includes/Elements/Betterdocs_Category_Box.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:561, ../includes/Elements/Betterdocs_Category_Grid.php:725, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:443, ../includes/Elements/Business_Reviews.php:837, ../includes/Elements/Business_Reviews.php:967, ../includes/Elements/Business_Reviews.php:1169, ../includes/Elements/Business_Reviews.php:1237, ../includes/Elements/Business_Reviews.php:1344, ../includes/Elements/Business_Reviews.php:1412, ../includes/Elements/Business_Reviews.php:1454, ../includes/Elements/Business_Reviews.php:1582, ../includes/Elements/Business_Reviews.php:1712, ../includes/Elements/Business_Reviews.php:1803, ../includes/Elements/Business_Reviews.php:1872, ../includes/Elements/Business_Reviews.php:1940, ../includes/Elements/Business_Reviews.php:2070, ../includes/Elements/Business_Reviews.php:2507, ../includes/Elements/Caldera_Forms.php:746, ../includes/Elements/Caldera_Forms.php:1256, ../includes/Elements/Contact_Form_7.php:608, ../includes/Elements/Contact_Form_7.php:1292, ../includes/Elements/Contact_Form_7.php:1491, ../includes/Elements/Contact_Form_7.php:1688, ../includes/Elements/Content_Ticker.php:392, ../includes/Elements/Content_Ticker.php:455, ../includes/Elements/Content_Ticker.php:703, ../includes/Elements/Countdown.php:711, ../includes/Elements/Countdown.php:1249, ../includes/Elements/Cta_Box.php:624, ../includes/Elements/Cta_Box.php:837, ../includes/Elements/Cta_Box.php:1265, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:917, ../includes/Elements/Dual_Color_Header.php:333, ../includes/Elements/Event_Calendar.php:1430, ../includes/Elements/Event_Calendar.php:1538, ../includes/Elements/Event_Calendar.php:1666, ../includes/Elements/Event_Calendar.php:1905, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:715, ../includes/Elements/Facebook_Feed.php:787, ../includes/Elements/Fancy_Text.php:500, ../includes/Elements/Feature_List.php:686, ../includes/Elements/Filterable_Gallery.php:1068, ../includes/Elements/Filterable_Gallery.php:1145, ../includes/Elements/Filterable_Gallery.php:1327, ../includes/Elements/Filterable_Gallery.php:1423, ../includes/Elements/Filterable_Gallery.php:1844, ../includes/Elements/Filterable_Gallery.php:2055, ../includes/Elements/Filterable_Gallery.php:2823, ../includes/Elements/Filterable_Gallery.php:3052, ../includes/Elements/Flip_Box.php:1031, ../includes/Elements/Flip_Box.php:1145, ../includes/Elements/Flip_Box.php:1381, ../includes/Elements/FluentForm.php:795, ../includes/Elements/FluentForm.php:1163, ../includes/Elements/FluentForm.php:1218, ../includes/Elements/FluentForm.php:1341, ../includes/Elements/FluentForm.php:1426, ../includes/Elements/FluentForm.php:1607, ../includes/Elements/FluentForm.php:2032, ../includes/Elements/FluentForm.php:2198, ../includes/Elements/Formstack.php:685, ../includes/Elements/Formstack.php:740, ../includes/Elements/Formstack.php:994, ../includes/Elements/Formstack.php:1327, ../includes/Elements/Formstack.php:1492, ../includes/Elements/Formstack.php:1841, ../includes/Elements/Formstack.php:1970, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1620, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:1935, ../includes/Elements/GravityForms.php:2141, ../includes/Elements/GravityForms.php:2371, ../includes/Elements/GravityForms.php:2550, ../includes/Elements/Image_Accordion.php:342, ../includes/Elements/Image_Accordion.php:455, ../includes/Elements/Info_Box.php:576, ../includes/Elements/Interactive_Circle.php:544, ../includes/Elements/Interactive_Circle.php:970, ../includes/Elements/Login_Register.php:2673, ../includes/Elements/Login_Register.php:3242, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/Login_Register.php:3454, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/Login_Register.php:3647, ../includes/Elements/Login_Register.php:3683, ../includes/Elements/Login_Register.php:3845, ../includes/Elements/Login_Register.php:4889, ../includes/Elements/Login_Register.php:5217, ../includes/Elements/NFT_Gallery.php:782, ../includes/Elements/NFT_Gallery.php:910, ../includes/Elements/NFT_Gallery.php:1113, ../includes/Elements/NFT_Gallery.php:1201, ../includes/Elements/NFT_Gallery.php:1262, ../includes/Elements/NFT_Gallery.php:1325, ../includes/Elements/NFT_Gallery.php:1425, ../includes/Elements/NFT_Gallery.php:1498, ../includes/Elements/NFT_Gallery.php:1574, ../includes/Elements/NFT_Gallery.php:1678, ../includes/Elements/NFT_Gallery.php:1751, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NFT_Gallery.php:2234, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:1429, ../includes/Elements/Post_Timeline.php:172, ../includes/Elements/Post_Timeline.php:560, ../includes/Elements/Pricing_Table.php:804, ../includes/Elements/Pricing_Table.php:1604, ../includes/Elements/Pricing_Table.php:1912, ../includes/Elements/Product_Grid.php:1074, ../includes/Elements/Product_Grid.php:1325, ../includes/Elements/Product_Grid.php:1740, ../includes/Elements/Progress_Bar.php:834, ../includes/Elements/Simple_Menu.php:345, ../includes/Elements/Simple_Menu.php:505, ../includes/Elements/Simple_Menu.php:678, ../includes/Elements/Simple_Menu.php:1238, ../includes/Elements/SVG_Draw.php:460, ../includes/Elements/Team_Member.php:538, ../includes/Elements/Testimonial.php:460, ../includes/Elements/Tooltip.php:366, ../includes/Elements/Tooltip.php:620, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:783, ../includes/Elements/Twitter_Feed.php:816, ../includes/Elements/Twitter_Feed.php:1387, ../includes/Elements/WeForms.php:678, ../includes/Elements/Woo_Cart.php:1291, ../includes/Elements/Woo_Cart.php:1846, ../includes/Elements/Woo_Cart.php:1993, ../includes/Elements/Woo_Cart.php:2110, ../includes/Elements/Woo_Cart.php:2274, ../includes/Elements/Woo_Cart.php:2381, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:1541, ../includes/Elements/Woo_Checkout.php:1587, ../includes/Elements/Woo_Checkout.php:1785, ../includes/Elements/Woo_Checkout.php:1956, ../includes/Elements/Woo_Checkout.php:1984, ../includes/Elements/Woo_Checkout.php:2156, ../includes/Elements/Woo_Checkout.php:2371, ../includes/Elements/Woo_Checkout.php:2711, ../includes/Elements/Woo_Checkout.php:3050, ../includes/Elements/Woo_Product_Carousel.php:1189, ../includes/Elements/Woo_Product_Carousel.php:2436, ../includes/Elements/Woo_Product_Gallery.php:782, ../includes/Elements/Woo_Product_Gallery.php:886, ../includes/Elements/Woo_Product_Gallery.php:1165, ../includes/Elements/Woo_Product_Gallery.php:1421, ../includes/Elements/Woo_Product_Gallery.php:1483, ../includes/Elements/Woo_Product_List.php:1294, ../includes/Elements/Woo_Product_List.php:1396, ../includes/Elements/Woo_Product_List.php:1511, ../includes/Elements/Woo_Product_List.php:1597, ../includes/Elements/Woo_Product_List.php:1654, ../includes/Elements/Woo_Product_List.php:1702, ../includes/Elements/Woo_Product_List.php:1741, ../includes/Elements/Woo_Product_List.php:1777, ../includes/Elements/Woo_Product_List.php:1882, ../includes/Elements/Woo_Product_List.php:1947, ../includes/Elements/Woo_Product_List.php:2017, ../includes/Elements/WpForms.php:763, ../includes/Elements/WpForms.php:1268, ../includes/Extensions/Table_of_Content.php:828, ../includes/Extensions/Table_of_Content.php:1016, ../includes/Traits/Controls.php:2115, ../includes/Traits/Controls.php:2160, ../includes/Traits/Controls.php:2661, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615 msgid "Padding" msgstr "" @@ -906,7 +749,7 @@ msgstr "" msgid "Body" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:589, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Facebook_Feed.php:1076, ../includes/Elements/Login_Register.php:4708, ../includes/Elements/Twitter_Feed.php:891, ../includes/Elements/Woo_Cart.php:1667, ../includes/Elements/Woo_Checkout.php:1163, ../includes/Elements/Woo_Checkout.php:1179, ../includes/Elements/Woo_Checkout.php:1206, ../includes/Elements/Woo_Checkout.php:1223, ../includes/Elements/Woo_Checkout.php:2825 +#: ../includes/Elements/Advanced_Data_Table.php:589, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Facebook_Feed.php:1076, ../includes/Elements/Login_Register.php:4708, ../includes/Elements/Twitter_Feed.php:891, ../includes/Elements/Woo_Cart.php:1667, ../includes/Elements/Woo_Checkout.php:1191, ../includes/Elements/Woo_Checkout.php:1207, ../includes/Elements/Woo_Checkout.php:1234, ../includes/Elements/Woo_Checkout.php:1251, ../includes/Elements/Woo_Checkout.php:2878 msgid "Link Color" msgstr "" @@ -918,7 +761,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Adv_Tabs.php:229, ../includes/Elements/Countdown.php:500, ../includes/Elements/Data_Table.php:154, ../includes/Elements/Filterable_Gallery.php:244, ../includes/Elements/Filterable_Gallery.php:285, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:444, ../includes/Elements/Flip_Box.php:672, ../includes/Elements/GravityForms.php:1293, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:820, ../includes/Elements/Info_Box.php:900, ../includes/Elements/Info_Box.php:1038, ../includes/Elements/Info_Box.php:1134, ../includes/Elements/Interactive_Circle.php:419, ../includes/Elements/Post_Grid.php:928, ../includes/Elements/Simple_Menu.php:1540, ../includes/Elements/Sticky_Video.php:598, ../includes/Elements/SVG_Draw.php:236, ../includes/Elements/SVG_Draw.php:265, ../includes/Extensions/Table_of_Content.php:956, ../includes/Extensions/Table_of_Content.php:1179 +#: ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Countdown.php:504, ../includes/Elements/Data_Table.php:158, ../includes/Elements/Filterable_Gallery.php:248, ../includes/Elements/Filterable_Gallery.php:289, ../includes/Elements/Flip_Box.php:208, ../includes/Elements/Flip_Box.php:448, ../includes/Elements/Flip_Box.php:676, ../includes/Elements/GravityForms.php:1293, ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:825, ../includes/Elements/Info_Box.php:905, ../includes/Elements/Info_Box.php:1043, ../includes/Elements/Info_Box.php:1139, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Post_Grid.php:941, ../includes/Elements/Simple_Menu.php:1540, ../includes/Elements/Sticky_Video.php:602, ../includes/Elements/SVG_Draw.php:240, ../includes/Elements/SVG_Draw.php:269, ../includes/Extensions/Table_of_Content.php:1041, ../includes/Extensions/Table_of_Content.php:1264 msgid "None" msgstr "" @@ -946,7 +789,7 @@ msgstr "" msgid "Odd Row" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1969, ../includes/Elements/Business_Reviews.php:2160, ../includes/Elements/Dual_Color_Header.php:756, ../includes/Elements/Dual_Color_Header.php:836, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:310, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:427, ../includes/Elements/Progress_Bar.php:453, ../includes/Elements/Progress_Bar.php:508, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Sticky_Video.php:505, ../includes/Elements/SVG_Draw.php:161, ../includes/Elements/Team_Member.php:327, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1452, ../includes/Elements/Woo_Product_Carousel.php:2285, ../includes/Elements/Woo_Product_Carousel.php:2485, ../includes/Elements/Woo_Product_Carousel.php:2573, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 +#: ../includes/Elements/Advanced_Data_Table.php:919, ../includes/Elements/Business_Reviews.php:1983, ../includes/Elements/Business_Reviews.php:2174, ../includes/Elements/Dual_Color_Header.php:760, ../includes/Elements/Dual_Color_Header.php:840, ../includes/Elements/Flip_Box.php:127, ../includes/Elements/FluentForm.php:1322, ../includes/Elements/FluentForm.php:1407, ../includes/Elements/FluentForm.php:1843, ../includes/Elements/Formstack.php:1665, ../includes/Elements/GravityForms.php:711, ../includes/Elements/Image_Accordion.php:314, ../includes/Elements/Login_Register.php:3189, ../includes/Elements/NFT_Gallery.php:1074, ../includes/Elements/NFT_Gallery.php:1388, ../includes/Elements/NFT_Gallery.php:1636, ../includes/Elements/Post_Timeline.php:251, ../includes/Elements/Progress_Bar.php:431, ../includes/Elements/Progress_Bar.php:457, ../includes/Elements/Progress_Bar.php:512, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Sticky_Video.php:509, ../includes/Elements/SVG_Draw.php:165, ../includes/Elements/Team_Member.php:346, ../includes/Elements/Twitter_Feed.php:1111, ../includes/Elements/Woo_Product_Carousel.php:1495, ../includes/Elements/Woo_Product_Carousel.php:2328, ../includes/Elements/Woo_Product_Carousel.php:2528, ../includes/Elements/Woo_Product_Carousel.php:2616, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:376 msgid "Height" msgstr "" @@ -954,23 +797,23 @@ msgstr "" msgid "Margin Bottom" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1058, ../includes/Elements/Business_Reviews.php:2071, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:568, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:657, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1281, ../includes/Elements/Event_Calendar.php:2295, ../includes/Elements/Event_Calendar.php:2431, ../includes/Elements/Fancy_Text.php:185, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:2771, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:464, ../includes/Elements/Post_Grid.php:791, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:484, ../includes/Elements/Product_Grid.php:846, ../includes/Elements/Product_Grid.php:1165, ../includes/Elements/Product_Grid.php:1859, ../includes/Elements/Product_Grid.php:2372, ../includes/Elements/Progress_Bar.php:360, ../includes/Elements/Progress_Bar.php:629, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:184, ../includes/Elements/Tooltip.php:210, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:922, ../includes/Elements/Woo_Product_Carousel.php:977, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1595, ../includes/Elements/Woo_Product_List.php:562, ../includes/Elements/Woo_Product_List.php:715, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1142, ../includes/Traits/Controls.php:1732, ../includes/Traits/Controls.php:1793, ../includes/Traits/Controls.php:2564 +#: ../includes/Elements/Advanced_Data_Table.php:977, ../includes/Elements/Advanced_Data_Table.php:1125, ../includes/Elements/Business_Reviews.php:1072, ../includes/Elements/Business_Reviews.php:2085, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:562, ../includes/Elements/Caldera_Forms.php:1137, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1174, ../includes/Elements/Countdown.php:202, ../includes/Elements/Cta_Box.php:116, ../includes/Elements/Data_Table.php:572, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Dual_Color_Header.php:636, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1281, ../includes/Elements/Event_Calendar.php:2295, ../includes/Elements/Event_Calendar.php:2431, ../includes/Elements/Fancy_Text.php:189, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:2775, ../includes/Elements/FluentForm.php:266, ../includes/Elements/FluentForm.php:609, ../includes/Elements/FluentForm.php:1242, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:448, ../includes/Elements/Formstack.php:764, ../includes/Elements/Formstack.php:1373, ../includes/Elements/GravityForms.php:483, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:768, ../includes/Elements/GravityForms.php:895, ../includes/Elements/GravityForms.php:2181, ../includes/Elements/GravityForms.php:2444, ../includes/Elements/Login_Register.php:4943, ../includes/Elements/Login_Register.php:5292, ../includes/Elements/NFT_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:1894, ../includes/Elements/NinjaForms.php:420, ../includes/Elements/NinjaForms.php:604, ../includes/Elements/NinjaForms.php:1299, ../includes/Elements/Post_Grid.php:477, ../includes/Elements/Post_Grid.php:804, ../includes/Elements/Post_Grid.php:889, ../includes/Elements/Post_Timeline.php:486, ../includes/Elements/Product_Grid.php:958, ../includes/Elements/Product_Grid.php:1277, ../includes/Elements/Product_Grid.php:1971, ../includes/Elements/Product_Grid.php:2513, ../includes/Elements/Progress_Bar.php:364, ../includes/Elements/Progress_Bar.php:633, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:773, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:824, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/SVG_Draw.php:188, ../includes/Elements/Tooltip.php:214, ../includes/Elements/Twitter_Feed.php:556, ../includes/Elements/Woo_Cart.php:268, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:591, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:746, ../includes/Elements/Woo_Cart.php:858, ../includes/Elements/Woo_Cart.php:1698, ../includes/Elements/Woo_Cart.php:2341, ../includes/Elements/Woo_Product_Carousel.php:965, ../includes/Elements/Woo_Product_Carousel.php:1020, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:740, ../includes/Elements/Woo_Product_Gallery.php:1718, ../includes/Elements/Woo_Product_List.php:628, ../includes/Elements/Woo_Product_List.php:802, ../includes/Elements/WpForms.php:387, ../includes/Elements/WpForms.php:575, ../includes/Elements/WpForms.php:1146, ../includes/Traits/Controls.php:1848, ../includes/Traits/Controls.php:1909, ../includes/Traits/Controls.php:2680 msgid "Alignment" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:897, ../includes/Elements/Adv_Tabs.php:437, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:865, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:811, ../includes/Elements/Business_Reviews.php:940, ../includes/Elements/Business_Reviews.php:1140, ../includes/Elements/Business_Reviews.php:1208, ../includes/Elements/Business_Reviews.php:1315, ../includes/Elements/Business_Reviews.php:1383, ../includes/Elements/Business_Reviews.php:1428, ../includes/Elements/Business_Reviews.php:1556, ../includes/Elements/Business_Reviews.php:1683, ../includes/Elements/Business_Reviews.php:1774, ../includes/Elements/Business_Reviews.php:1843, ../includes/Elements/Business_Reviews.php:1911, ../includes/Elements/Business_Reviews.php:2041, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1195, ../includes/Elements/Cta_Box.php:632, ../includes/Elements/Cta_Box.php:845, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Dual_Color_Header.php:341, ../includes/Elements/Dual_Color_Header.php:709, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Event_Calendar.php:1479, ../includes/Elements/Event_Calendar.php:1919, ../includes/Elements/Fancy_Text.php:508, ../includes/Elements/Filterable_Gallery.php:1076, ../includes/Elements/Filterable_Gallery.php:1153, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2831, ../includes/Elements/Filterable_Gallery.php:3089, ../includes/Elements/Flip_Box.php:1365, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:350, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:704, ../includes/Elements/Info_Box.php:766, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1393, ../includes/Elements/Interactive_Circle.php:513, ../includes/Elements/Interactive_Circle.php:938, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:520, ../includes/Elements/Post_Grid.php:535, ../includes/Elements/Post_Grid.php:661, ../includes/Elements/Post_Grid.php:751, ../includes/Elements/Post_Grid.php:829, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Pricing_Table.php:1143, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1923, ../includes/Elements/SVG_Draw.php:468, ../includes/Elements/Team_Member.php:507, ../includes/Elements/Testimonial.php:418, ../includes/Elements/Testimonial.php:516, ../includes/Elements/Testimonial.php:557, ../includes/Elements/Testimonial.php:598, ../includes/Elements/Testimonial.php:659, ../includes/Elements/Tooltip.php:373, ../includes/Elements/Tooltip.php:627, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1565, ../includes/Elements/Woo_Checkout.php:1962, ../includes/Elements/Woo_Product_Carousel.php:1036, ../includes/Elements/Woo_Product_Gallery.php:1286, ../includes/Elements/Woo_Product_Gallery.php:1348, ../includes/Elements/Woo_Product_List.php:1136, ../includes/Elements/Woo_Product_List.php:1220, ../includes/Elements/Woo_Product_List.php:1493, ../includes/Elements/Woo_Product_List.php:1541, ../includes/Elements/Woo_Product_List.php:1580, ../includes/Elements/Woo_Product_List.php:1619, ../includes/Elements/Woo_Product_List.php:1724, ../includes/Elements/Woo_Product_List.php:1789, ../includes/Elements/Woo_Product_List.php:1858, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:2011, ../includes/Traits/Controls.php:2056, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 +#: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Adv_Accordion.php:504, ../includes/Elements/Adv_Accordion.php:658, ../includes/Elements/Adv_Accordion.php:901, ../includes/Elements/Adv_Tabs.php:441, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:869, ../includes/Elements/Betterdocs_Category_Grid.php:573, ../includes/Elements/Betterdocs_Category_Grid.php:739, ../includes/Elements/Business_Reviews.php:825, ../includes/Elements/Business_Reviews.php:954, ../includes/Elements/Business_Reviews.php:1154, ../includes/Elements/Business_Reviews.php:1222, ../includes/Elements/Business_Reviews.php:1329, ../includes/Elements/Business_Reviews.php:1397, ../includes/Elements/Business_Reviews.php:1442, ../includes/Elements/Business_Reviews.php:1570, ../includes/Elements/Business_Reviews.php:1697, ../includes/Elements/Business_Reviews.php:1788, ../includes/Elements/Business_Reviews.php:1857, ../includes/Elements/Business_Reviews.php:1925, ../includes/Elements/Business_Reviews.php:2055, ../includes/Elements/Caldera_Forms.php:300, ../includes/Elements/Caldera_Forms.php:364, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/Contact_Form_7.php:1673, ../includes/Elements/Content_Ticker.php:467, ../includes/Elements/Countdown.php:1199, ../includes/Elements/Cta_Box.php:636, ../includes/Elements/Cta_Box.php:849, ../includes/Elements/Cta_Box.php:1277, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Dual_Color_Header.php:688, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Event_Calendar.php:1479, ../includes/Elements/Event_Calendar.php:1919, ../includes/Elements/Fancy_Text.php:512, ../includes/Elements/Filterable_Gallery.php:1080, ../includes/Elements/Filterable_Gallery.php:1157, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:2067, ../includes/Elements/Filterable_Gallery.php:2515, ../includes/Elements/Filterable_Gallery.php:2835, ../includes/Elements/Filterable_Gallery.php:3093, ../includes/Elements/Flip_Box.php:1369, ../includes/Elements/FluentForm.php:335, ../includes/Elements/FluentForm.php:399, ../includes/Elements/FluentForm.php:1175, ../includes/Elements/FluentForm.php:1230, ../includes/Elements/FluentForm.php:2210, ../includes/Elements/Formstack.php:505, ../includes/Elements/Formstack.php:557, ../includes/Elements/Formstack.php:697, ../includes/Elements/Formstack.php:752, ../includes/Elements/Formstack.php:1985, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1608, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2155, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:444, ../includes/Elements/Info_Box.php:709, ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:1003, ../includes/Elements/Info_Box.php:1398, ../includes/Elements/Interactive_Circle.php:555, ../includes/Elements/Interactive_Circle.php:981, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3366, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3530, ../includes/Elements/Login_Register.php:3632, ../includes/Elements/Login_Register.php:3668, ../includes/Elements/Login_Register.php:3830, ../includes/Elements/Login_Register.php:4874, ../includes/Elements/Login_Register.php:5121, ../includes/Elements/Login_Register.php:5202, ../includes/Elements/NFT_Gallery.php:770, ../includes/Elements/NFT_Gallery.php:898, ../includes/Elements/NFT_Gallery.php:1099, ../includes/Elements/NFT_Gallery.php:1189, ../includes/Elements/NFT_Gallery.php:1250, ../includes/Elements/NFT_Gallery.php:1312, ../includes/Elements/NFT_Gallery.php:1412, ../includes/Elements/NFT_Gallery.php:1486, ../includes/Elements/NFT_Gallery.php:1562, ../includes/Elements/NFT_Gallery.php:1665, ../includes/Elements/NFT_Gallery.php:1739, ../includes/Elements/NFT_Gallery.php:1815, ../includes/Elements/NFT_Gallery.php:2275, ../includes/Elements/NinjaForms.php:476, ../includes/Elements/NinjaForms.php:528, ../includes/Elements/Post_Grid.php:394, ../includes/Elements/Post_Grid.php:533, ../includes/Elements/Post_Grid.php:548, ../includes/Elements/Post_Grid.php:674, ../includes/Elements/Post_Grid.php:764, ../includes/Elements/Post_Grid.php:842, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:1144, ../includes/Elements/Pricing_Table.php:1214, ../includes/Elements/Pricing_Table.php:1924, ../includes/Elements/SVG_Draw.php:472, ../includes/Elements/Team_Member.php:526, ../includes/Elements/Testimonial.php:448, ../includes/Elements/Testimonial.php:546, ../includes/Elements/Testimonial.php:587, ../includes/Elements/Testimonial.php:628, ../includes/Elements/Testimonial.php:689, ../includes/Elements/Tooltip.php:377, ../includes/Elements/Tooltip.php:631, ../includes/Elements/Twitter_Feed.php:1428, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:666, ../includes/Elements/Woo_Cart.php:1303, ../includes/Elements/Woo_Cart.php:1858, ../includes/Elements/Woo_Cart.php:2005, ../includes/Elements/Woo_Cart.php:2123, ../includes/Elements/Woo_Cart.php:2289, ../includes/Elements/Woo_Cart.php:2395, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Checkout.php:2003, ../includes/Elements/Woo_Product_Carousel.php:1079, ../includes/Elements/Woo_Product_Gallery.php:1409, ../includes/Elements/Woo_Product_Gallery.php:1471, ../includes/Elements/Woo_Product_List.php:1282, ../includes/Elements/Woo_Product_List.php:1366, ../includes/Elements/Woo_Product_List.php:1639, ../includes/Elements/Woo_Product_List.php:1687, ../includes/Elements/Woo_Product_List.php:1726, ../includes/Elements/Woo_Product_List.php:1765, ../includes/Elements/Woo_Product_List.php:1870, ../includes/Elements/Woo_Product_List.php:1935, ../includes/Elements/Woo_Product_List.php:2004, ../includes/Elements/WpForms.php:443, ../includes/Elements/WpForms.php:495, ../includes/Elements/WpForms.php:527, ../includes/Traits/Controls.php:2127, ../includes/Traits/Controls.php:2172, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462 msgid "Margin" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:665, ../includes/Elements/Adv_Accordion.php:997, ../includes/Elements/Adv_Tabs.php:597, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:855, ../includes/Elements/Business_Reviews.php:986, ../includes/Elements/Business_Reviews.php:1471, ../includes/Elements/Business_Reviews.php:1599, ../includes/Elements/Business_Reviews.php:2240, ../includes/Elements/Business_Reviews.php:2402, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:266, ../includes/Elements/Cta_Box.php:894, ../includes/Elements/Cta_Box.php:1292, ../includes/Elements/Data_Table.php:640, ../includes/Elements/Data_Table.php:833, ../includes/Elements/Data_Table.php:1005, ../includes/Elements/Data_Table.php:1106, ../includes/Elements/Event_Calendar.php:1769, ../includes/Elements/Event_Calendar.php:2069, ../includes/Elements/Filterable_Gallery.php:1172, ../includes/Elements/Filterable_Gallery.php:2020, ../includes/Elements/Filterable_Gallery.php:2918, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:552, ../includes/Elements/Info_Box.php:780, ../includes/Elements/Info_Box.php:1012, ../includes/Elements/Info_Box.php:1246, ../includes/Elements/Info_Box.php:1359, ../includes/Elements/Interactive_Circle.php:641, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:1669, ../includes/Elements/Product_Grid.php:2108, ../includes/Elements/Product_Grid.php:2428, ../includes/Elements/Product_Grid.php:2871, ../includes/Elements/Team_Member.php:749, ../includes/Elements/Tooltip.php:416, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1158, ../includes/Elements/Woo_Checkout.php:1201, ../includes/Elements/Woo_Checkout.php:1344, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:2007, ../includes/Elements/Woo_Checkout.php:2467, ../includes/Elements/Woo_Checkout.php:2723, ../includes/Elements/Woo_Checkout.php:2877, ../includes/Elements/Woo_Product_Carousel.php:1048, ../includes/Elements/Woo_Product_Carousel.php:1502, ../includes/Elements/Woo_Product_Carousel.php:1907, ../includes/Elements/Woo_Product_Carousel.php:2351, ../includes/Elements/Woo_Product_Carousel.php:2773, ../includes/Elements/Woo_Product_Gallery.php:673, ../includes/Elements/Woo_Product_Gallery.php:1079, ../includes/Elements/Woo_Product_Gallery.php:1383, ../includes/Elements/Woo_Product_Gallery.php:1749, ../includes/Elements/Woo_Product_Gallery.php:2143, ../includes/Elements/Woo_Product_List.php:2229, ../includes/Elements/Woo_Product_List.php:2556, ../includes/Elements/Woo_Product_List.php:2677, ../includes/Elements/Woo_Product_List.php:2788, ../includes/Elements/Woo_Product_List.php:2947, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:983, ../includes/Elements/WpForms.php:1210, ../includes/Extensions/Table_of_Content.php:1031, ../includes/Traits/Controls.php:1829, ../includes/Traits/Controls.php:2075, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 +#: ../includes/Elements/Advanced_Data_Table.php:1201, ../includes/Elements/Advanced_Data_Table.php:1370, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Betterdocs_Category_Box.php:287, ../includes/Elements/Betterdocs_Category_Box.php:455, ../includes/Elements/Betterdocs_Category_Box.php:680, ../includes/Elements/Betterdocs_Category_Box.php:849, ../includes/Elements/Betterdocs_Category_Grid.php:318, ../includes/Elements/Betterdocs_Category_Grid.php:458, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:803, ../includes/Elements/Betterdocs_Category_Grid.php:1351, ../includes/Elements/Betterdocs_Search_Form.php:401, ../includes/Elements/Business_Reviews.php:869, ../includes/Elements/Business_Reviews.php:1000, ../includes/Elements/Business_Reviews.php:1485, ../includes/Elements/Business_Reviews.php:1613, ../includes/Elements/Business_Reviews.php:2254, ../includes/Elements/Business_Reviews.php:2416, ../includes/Elements/Caldera_Forms.php:590, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1202, ../includes/Elements/Contact_Form_7.php:553, ../includes/Elements/Contact_Form_7.php:1016, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Cta_Box.php:898, ../includes/Elements/Cta_Box.php:1296, ../includes/Elements/Data_Table.php:644, ../includes/Elements/Data_Table.php:837, ../includes/Elements/Data_Table.php:1009, ../includes/Elements/Data_Table.php:1110, ../includes/Elements/Event_Calendar.php:1769, ../includes/Elements/Event_Calendar.php:2069, ../includes/Elements/Filterable_Gallery.php:1176, ../includes/Elements/Filterable_Gallery.php:2024, ../includes/Elements/Filterable_Gallery.php:2922, ../includes/Elements/Flip_Box.php:1363, ../includes/Elements/FluentForm.php:639, ../includes/Elements/FluentForm.php:974, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1746, ../includes/Elements/FluentForm.php:1963, ../includes/Elements/Formstack.php:838, ../includes/Elements/Formstack.php:1170, ../includes/Elements/Formstack.php:1438, ../includes/Elements/Formstack.php:1608, ../includes/Elements/Formstack.php:1770, ../includes/Elements/GravityForms.php:923, ../includes/Elements/GravityForms.php:1520, ../includes/Elements/GravityForms.php:1716, ../includes/Elements/GravityForms.php:1875, ../includes/Elements/GravityForms.php:2256, ../includes/Elements/GravityForms.php:2496, ../includes/Elements/Info_Box.php:557, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:1017, ../includes/Elements/Info_Box.php:1251, ../includes/Elements/Info_Box.php:1364, ../includes/Elements/Interactive_Circle.php:683, ../includes/Elements/Login_Register.php:3733, ../includes/Elements/Login_Register.php:4973, ../includes/Elements/Login_Register.php:5148, ../includes/Elements/Login_Register.php:5323, ../includes/Elements/NFT_Gallery.php:813, ../includes/Elements/NFT_Gallery.php:958, ../includes/Elements/NFT_Gallery.php:1524, ../includes/Elements/NFT_Gallery.php:1777, ../includes/Elements/NFT_Gallery.php:1971, ../includes/Elements/NFT_Gallery.php:2104, ../includes/Elements/NinjaForms.php:632, ../includes/Elements/NinjaForms.php:1025, ../includes/Elements/NinjaForms.php:1371, ../includes/Elements/Pricing_Table.php:1977, ../includes/Elements/Product_Grid.php:1129, ../includes/Elements/Product_Grid.php:1781, ../includes/Elements/Product_Grid.php:2249, ../includes/Elements/Product_Grid.php:2569, ../includes/Elements/Product_Grid.php:3012, ../includes/Elements/Team_Member.php:768, ../includes/Elements/Tooltip.php:420, ../includes/Elements/Twitter_Feed.php:1257, ../includes/Elements/WeForms.php:689, ../includes/Elements/Woo_Cart.php:1889, ../includes/Elements/Woo_Cart.php:2163, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1229, ../includes/Elements/Woo_Checkout.php:1385, ../includes/Elements/Woo_Checkout.php:1677, ../includes/Elements/Woo_Checkout.php:2048, ../includes/Elements/Woo_Checkout.php:2508, ../includes/Elements/Woo_Checkout.php:2768, ../includes/Elements/Woo_Checkout.php:2930, ../includes/Elements/Woo_Product_Carousel.php:1091, ../includes/Elements/Woo_Product_Carousel.php:1545, ../includes/Elements/Woo_Product_Carousel.php:1950, ../includes/Elements/Woo_Product_Carousel.php:2394, ../includes/Elements/Woo_Product_Carousel.php:2816, ../includes/Elements/Woo_Product_Gallery.php:796, ../includes/Elements/Woo_Product_Gallery.php:1202, ../includes/Elements/Woo_Product_Gallery.php:1506, ../includes/Elements/Woo_Product_Gallery.php:1901, ../includes/Elements/Woo_Product_Gallery.php:2295, ../includes/Elements/Woo_Product_List.php:2375, ../includes/Elements/Woo_Product_List.php:2702, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:2934, ../includes/Elements/Woo_Product_List.php:3093, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:987, ../includes/Elements/WpForms.php:1214, ../includes/Extensions/Hover_Effect.php:85, ../includes/Extensions/Table_of_Content.php:1116, ../includes/Traits/Controls.php:1945, ../includes/Traits/Controls.php:2191, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643 msgid "Normal" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Accordion.php:1045, ../includes/Elements/Adv_Tabs.php:664, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:888, ../includes/Elements/Business_Reviews.php:1020, ../includes/Elements/Business_Reviews.php:1504, ../includes/Elements/Business_Reviews.php:1634, ../includes/Elements/Business_Reviews.php:2296, ../includes/Elements/Business_Reviews.php:2458, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:358, ../includes/Elements/Cta_Box.php:1081, ../includes/Elements/Cta_Box.php:1361, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:924, ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Data_Table.php:1124, ../includes/Elements/Event_Calendar.php:1815, ../includes/Elements/Event_Calendar.php:2136, ../includes/Elements/Filterable_Gallery.php:2158, ../includes/Elements/Filterable_Gallery.php:3113, ../includes/Elements/Flip_Box.php:1466, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:613, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Info_Box.php:1293, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Interactive_Circle.php:386, ../includes/Elements/Interactive_Circle.php:698, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:448, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1067, ../includes/Elements/Product_Grid.php:1749, ../includes/Elements/Product_Grid.php:2217, ../includes/Elements/Product_Grid.php:2469, ../includes/Elements/Product_Grid.php:2922, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:827, ../includes/Elements/Tooltip.php:460, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1174, ../includes/Elements/Woo_Checkout.php:1218, ../includes/Elements/Woo_Checkout.php:1360, ../includes/Elements/Woo_Checkout.php:1676, ../includes/Elements/Woo_Checkout.php:2047, ../includes/Elements/Woo_Checkout.php:2483, ../includes/Elements/Woo_Checkout.php:2917, ../includes/Elements/Woo_Product_Carousel.php:1088, ../includes/Elements/Woo_Product_Carousel.php:1584, ../includes/Elements/Woo_Product_Carousel.php:1959, ../includes/Elements/Woo_Product_Carousel.php:2414, ../includes/Elements/Woo_Product_Carousel.php:2829, ../includes/Elements/Woo_Product_Gallery.php:712, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1417, ../includes/Elements/Woo_Product_Gallery.php:1799, ../includes/Elements/Woo_Product_Gallery.php:2194, ../includes/Elements/Woo_Product_List.php:2257, ../includes/Elements/Woo_Product_List.php:2602, ../includes/Elements/Woo_Product_List.php:2720, ../includes/Elements/Woo_Product_List.php:2823, ../includes/Elements/Woo_Product_List.php:3031, ../includes/Elements/WpForms.php:1319, ../includes/Extensions/Table_of_Content.php:1054, ../includes/Traits/Controls.php:1884, ../includes/Traits/Controls.php:2137, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 +#: ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1400, ../includes/Elements/Adv_Accordion.php:728, ../includes/Elements/Adv_Accordion.php:1049, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Betterdocs_Category_Box.php:333, ../includes/Elements/Betterdocs_Category_Box.php:551, ../includes/Elements/Betterdocs_Category_Box.php:713, ../includes/Elements/Betterdocs_Category_Box.php:962, ../includes/Elements/Betterdocs_Category_Grid.php:366, ../includes/Elements/Betterdocs_Category_Grid.php:499, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:875, ../includes/Elements/Betterdocs_Category_Grid.php:1435, ../includes/Elements/Betterdocs_Search_Form.php:485, ../includes/Elements/Business_Reviews.php:902, ../includes/Elements/Business_Reviews.php:1034, ../includes/Elements/Business_Reviews.php:1518, ../includes/Elements/Business_Reviews.php:1648, ../includes/Elements/Business_Reviews.php:2310, ../includes/Elements/Business_Reviews.php:2472, ../includes/Elements/Caldera_Forms.php:1308, ../includes/Elements/Contact_Form_7.php:1347, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1085, ../includes/Elements/Cta_Box.php:1365, ../includes/Elements/Data_Table.php:684, ../includes/Elements/Data_Table.php:928, ../includes/Elements/Data_Table.php:1026, ../includes/Elements/Data_Table.php:1128, ../includes/Elements/Event_Calendar.php:1815, ../includes/Elements/Event_Calendar.php:2136, ../includes/Elements/Filterable_Gallery.php:2162, ../includes/Elements/Filterable_Gallery.php:3117, ../includes/Elements/Flip_Box.php:1470, ../includes/Elements/FluentForm.php:1680, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/Formstack.php:1544, ../includes/Elements/Formstack.php:1855, ../includes/Elements/GravityForms.php:1951, ../includes/Elements/GravityForms.php:2318, ../includes/Elements/GravityForms.php:2583, ../includes/Elements/Info_Box.php:618, ../includes/Elements/Info_Box.php:856, ../includes/Elements/Info_Box.php:1089, ../includes/Elements/Info_Box.php:1298, ../includes/Elements/Info_Box.php:1474, ../includes/Elements/Interactive_Circle.php:428, ../includes/Elements/Interactive_Circle.php:741, ../includes/Elements/Login_Register.php:5010, ../includes/Elements/Login_Register.php:5360, ../includes/Elements/NFT_Gallery.php:846, ../includes/Elements/NFT_Gallery.php:991, ../includes/Elements/NFT_Gallery.php:1541, ../includes/Elements/NFT_Gallery.php:1794, ../includes/Elements/NFT_Gallery.php:2016, ../includes/Elements/NFT_Gallery.php:2299, ../includes/Elements/NinjaForms.php:1464, ../includes/Elements/Pricing_Table.php:452, ../includes/Elements/Pricing_Table.php:2047, ../includes/Elements/Product_Grid.php:1179, ../includes/Elements/Product_Grid.php:1861, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2610, ../includes/Elements/Product_Grid.php:3063, ../includes/Elements/Simple_Menu.php:427, ../includes/Elements/Simple_Menu.php:553, ../includes/Elements/Simple_Menu.php:1013, ../includes/Elements/Simple_Menu.php:1417, ../includes/Elements/Team_Member.php:846, ../includes/Elements/Tooltip.php:464, ../includes/Elements/Twitter_Feed.php:1452, ../includes/Elements/WeForms.php:739, ../includes/Elements/Woo_Cart.php:1927, ../includes/Elements/Woo_Cart.php:2208, ../includes/Elements/Woo_Checkout.php:1202, ../includes/Elements/Woo_Checkout.php:1246, ../includes/Elements/Woo_Checkout.php:1401, ../includes/Elements/Woo_Checkout.php:1717, ../includes/Elements/Woo_Checkout.php:2088, ../includes/Elements/Woo_Checkout.php:2528, ../includes/Elements/Woo_Checkout.php:2970, ../includes/Elements/Woo_Product_Carousel.php:1131, ../includes/Elements/Woo_Product_Carousel.php:1627, ../includes/Elements/Woo_Product_Carousel.php:2002, ../includes/Elements/Woo_Product_Carousel.php:2457, ../includes/Elements/Woo_Product_Carousel.php:2872, ../includes/Elements/Woo_Product_Gallery.php:835, ../includes/Elements/Woo_Product_Gallery.php:1275, ../includes/Elements/Woo_Product_Gallery.php:1540, ../includes/Elements/Woo_Product_Gallery.php:1951, ../includes/Elements/Woo_Product_Gallery.php:2346, ../includes/Elements/Woo_Product_List.php:2403, ../includes/Elements/Woo_Product_List.php:2748, ../includes/Elements/Woo_Product_List.php:2866, ../includes/Elements/Woo_Product_List.php:2969, ../includes/Elements/Woo_Product_List.php:3177, ../includes/Elements/WpForms.php:1323, ../includes/Extensions/Hover_Effect.php:707, ../includes/Extensions/Table_of_Content.php:1139, ../includes/Traits/Controls.php:2000, ../includes/Traits/Controls.php:2253, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693 msgid "Hover" msgstr "" -#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1124, ../includes/Elements/Business_Reviews.php:2259, ../includes/Elements/Business_Reviews.php:2315, ../includes/Elements/Business_Reviews.php:2409, ../includes/Elements/Business_Reviews.php:2465, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:700, ../includes/Elements/Cta_Box.php:741, ../includes/Elements/Cta_Box.php:783, ../includes/Elements/Cta_Box.php:1470, ../includes/Elements/Cta_Box.php:1486, ../includes/Elements/Data_Table.php:645, ../includes/Elements/Data_Table.php:685, ../includes/Elements/Data_Table.php:1213, ../includes/Elements/Dual_Color_Header.php:480, ../includes/Elements/Dual_Color_Header.php:577, ../includes/Elements/Dual_Color_Header.php:720, ../includes/Elements/Event_Calendar.php:1704, ../includes/Elements/Event_Calendar.php:2036, ../includes/Elements/Event_Calendar.php:2076, ../includes/Elements/Event_Calendar.php:2143, ../includes/Elements/Event_Calendar.php:2197, ../includes/Elements/Event_Calendar.php:2283, ../includes/Elements/Event_Calendar.php:2361, ../includes/Elements/Event_Calendar.php:2395, ../includes/Elements/Event_Calendar.php:2504, ../includes/Elements/Event_Calendar.php:2896, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:360, ../includes/Elements/Feature_List.php:626, ../includes/Elements/Feature_List.php:848, ../includes/Elements/Feature_List.php:883, ../includes/Elements/Filterable_Gallery.php:1440, ../includes/Elements/Filterable_Gallery.php:1480, ../includes/Elements/Filterable_Gallery.php:1879, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:1939, ../includes/Elements/Filterable_Gallery.php:1954, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2252, ../includes/Elements/Filterable_Gallery.php:2288, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2476, ../includes/Elements/Filterable_Gallery.php:2668, ../includes/Elements/Filterable_Gallery.php:2807, ../includes/Elements/Flip_Box.php:972, ../includes/Elements/Flip_Box.php:1086, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Flip_Box.php:1315, ../includes/Elements/Flip_Box.php:1389, ../includes/Elements/Flip_Box.php:1472, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:506, ../includes/Elements/Image_Accordion.php:535, ../includes/Elements/Info_Box.php:1373, ../includes/Elements/Info_Box.php:1449, ../includes/Elements/Interactive_Circle.php:555, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:358, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:855, ../includes/Elements/Pricing_Table.php:940, ../includes/Elements/Pricing_Table.php:1004, ../includes/Elements/Pricing_Table.php:1095, ../includes/Elements/Pricing_Table.php:1124, ../includes/Elements/Pricing_Table.php:1165, ../includes/Elements/Pricing_Table.php:1194, ../includes/Elements/Pricing_Table.php:1234, ../includes/Elements/Pricing_Table.php:1269, ../includes/Elements/Pricing_Table.php:1451, ../includes/Elements/Pricing_Table.php:1591, ../includes/Elements/Product_Grid.php:1487, ../includes/Elements/Product_Grid.php:2113, ../includes/Elements/Product_Grid.php:2222, ../includes/Elements/Product_Grid.php:2593, ../includes/Elements/Product_Grid.php:2774, ../includes/Elements/Product_Grid.php:2815, ../includes/Elements/Product_Grid.php:2876, ../includes/Elements/Product_Grid.php:2927, ../includes/Elements/Product_Grid.php:3084, ../includes/Elements/Progress_Bar.php:479, ../includes/Elements/Progress_Bar.php:568, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:393, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:828, ../includes/Elements/Woo_Checkout.php:1002, ../includes/Elements/Woo_Checkout.php:1016, ../includes/Elements/Woo_Checkout.php:1124, ../includes/Elements/Woo_Checkout.php:1139, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1365, ../includes/Elements/Woo_Checkout.php:1433, ../includes/Elements/Woo_Checkout.php:1605, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:1695, ../includes/Elements/Woo_Checkout.php:1792, ../includes/Elements/Woo_Checkout.php:2026, ../includes/Elements/Woo_Checkout.php:2066, ../includes/Elements/Woo_Checkout.php:2184, ../includes/Elements/Woo_Checkout.php:2228, ../includes/Elements/Woo_Checkout.php:2272, ../includes/Elements/Woo_Checkout.php:2378, ../includes/Elements/Woo_Checkout.php:2417, ../includes/Elements/Woo_Checkout.php:2457, ../includes/Elements/Woo_Checkout.php:2730, ../includes/Elements/Woo_Checkout.php:2751, ../includes/Elements/Woo_Checkout.php:2786, ../includes/Elements/Woo_Checkout.php:2807, ../includes/Elements/Woo_Checkout.php:2896, ../includes/Elements/Woo_Checkout.php:2936, ../includes/Elements/Woo_Product_Carousel.php:1312, ../includes/Elements/Woo_Product_Carousel.php:1507, ../includes/Elements/Woo_Product_Carousel.php:1589, ../includes/Elements/Woo_Product_Carousel.php:1809, ../includes/Elements/Woo_Product_Carousel.php:1850, ../includes/Elements/Woo_Product_Carousel.php:1912, ../includes/Elements/Woo_Product_Carousel.php:1964, ../includes/Elements/Woo_Product_Carousel.php:2117, ../includes/Elements/Woo_Product_Carousel.php:2358, ../includes/Elements/Woo_Product_Carousel.php:2421, ../includes/Elements/Woo_Product_Carousel.php:2454, ../includes/Elements/Woo_Product_Carousel.php:2792, ../includes/Elements/Woo_Product_Carousel.php:2848, ../includes/Elements/Woo_Product_Gallery.php:1388, ../includes/Elements/Woo_Product_Gallery.php:1422, ../includes/Elements/Woo_Product_Gallery.php:1460, ../includes/Elements/Woo_Product_Gallery.php:1754, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:2005, ../includes/Elements/Woo_Product_Gallery.php:2046, ../includes/Elements/Woo_Product_Gallery.php:2087, ../includes/Elements/Woo_Product_Gallery.php:2148, ../includes/Elements/Woo_Product_Gallery.php:2199, ../includes/Elements/Woo_Product_Gallery.php:2356, ../includes/Elements/Woo_Product_List.php:1964, ../includes/Elements/Woo_Product_List.php:2022, ../includes/Elements/Woo_Product_List.php:2144, ../includes/Elements/Woo_Product_List.php:2181, ../includes/Elements/Woo_Product_List.php:2239, ../includes/Elements/Woo_Product_List.php:2268, ../includes/Elements/Woo_Product_List.php:2309, ../includes/Elements/Woo_Product_List.php:2347, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2567, ../includes/Elements/Woo_Product_List.php:2613, ../includes/Elements/Woo_Product_List.php:2688, ../includes/Elements/Woo_Product_List.php:2731, ../includes/Elements/Woo_Product_List.php:2796, ../includes/Elements/Woo_Product_List.php:2831, ../includes/Elements/Woo_Product_List.php:2900, ../includes/Elements/Woo_Product_List.php:2952, ../includes/Elements/Woo_Product_List.php:3036, ../includes/Elements/Woo_Product_List.php:3192, ../includes/Elements/WpForms.php:993, ../includes/Elements/WpForms.php:1109, ../includes/Extensions/Table_of_Content.php:1190, ../includes/Traits/Controls.php:1711, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 +#: ../includes/Elements/Advanced_Data_Table.php:1375, ../includes/Elements/Advanced_Data_Table.php:1405, ../includes/Elements/Betterdocs_Category_Box.php:686, ../includes/Elements/Betterdocs_Category_Box.php:719, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:619, ../includes/Elements/Betterdocs_Category_Grid.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:809, ../includes/Elements/Betterdocs_Category_Grid.php:906, ../includes/Elements/Betterdocs_Category_Grid.php:1009, ../includes/Elements/Betterdocs_Category_Grid.php:1089, ../includes/Elements/Betterdocs_Category_Grid.php:1165, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Category_Grid.php:1365, ../includes/Elements/Betterdocs_Category_Grid.php:1464, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Business_Reviews.php:1138, ../includes/Elements/Business_Reviews.php:2273, ../includes/Elements/Business_Reviews.php:2329, ../includes/Elements/Business_Reviews.php:2423, ../includes/Elements/Business_Reviews.php:2479, ../includes/Elements/Caldera_Forms.php:988, ../includes/Elements/Caldera_Forms.php:1104, ../includes/Elements/Caldera_Forms.php:1436, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1142, ../includes/Elements/Content_Ticker.php:617, ../includes/Elements/Content_Ticker.php:674, ../includes/Elements/Cta_Box.php:704, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:787, ../includes/Elements/Cta_Box.php:1474, ../includes/Elements/Cta_Box.php:1490, ../includes/Elements/Data_Table.php:649, ../includes/Elements/Data_Table.php:689, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:484, ../includes/Elements/Dual_Color_Header.php:556, ../includes/Elements/Dual_Color_Header.php:699, ../includes/Elements/Event_Calendar.php:1704, ../includes/Elements/Event_Calendar.php:2036, ../includes/Elements/Event_Calendar.php:2076, ../includes/Elements/Event_Calendar.php:2143, ../includes/Elements/Event_Calendar.php:2197, ../includes/Elements/Event_Calendar.php:2283, ../includes/Elements/Event_Calendar.php:2361, ../includes/Elements/Event_Calendar.php:2395, ../includes/Elements/Event_Calendar.php:2504, ../includes/Elements/Event_Calendar.php:2896, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Facebook_Feed.php:891, ../includes/Elements/Facebook_Feed.php:931, ../includes/Elements/Facebook_Feed.php:981, ../includes/Elements/Facebook_Feed.php:1021, ../includes/Elements/Facebook_Feed.php:1061, ../includes/Elements/Facebook_Feed.php:1116, ../includes/Elements/Facebook_Feed.php:1156, ../includes/Elements/Facebook_Feed.php:1196, ../includes/Elements/Facebook_Feed.php:1230, ../includes/Elements/Fancy_Text.php:364, ../includes/Elements/Feature_List.php:630, ../includes/Elements/Feature_List.php:852, ../includes/Elements/Feature_List.php:887, ../includes/Elements/Filterable_Gallery.php:1444, ../includes/Elements/Filterable_Gallery.php:1484, ../includes/Elements/Filterable_Gallery.php:1883, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:1943, ../includes/Elements/Filterable_Gallery.php:1958, ../includes/Elements/Filterable_Gallery.php:2043, ../includes/Elements/Filterable_Gallery.php:2181, ../includes/Elements/Filterable_Gallery.php:2256, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/Filterable_Gallery.php:2339, ../includes/Elements/Filterable_Gallery.php:2480, ../includes/Elements/Filterable_Gallery.php:2672, ../includes/Elements/Filterable_Gallery.php:2811, ../includes/Elements/Flip_Box.php:976, ../includes/Elements/Flip_Box.php:1090, ../includes/Elements/Flip_Box.php:1218, ../includes/Elements/Flip_Box.php:1249, ../includes/Elements/Flip_Box.php:1287, ../includes/Elements/Flip_Box.php:1319, ../includes/Elements/Flip_Box.php:1393, ../includes/Elements/Flip_Box.php:1476, ../includes/Elements/FluentForm.php:446, ../includes/Elements/FluentForm.php:984, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1141, ../includes/Elements/FluentForm.php:1196, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1362, ../includes/Elements/FluentForm.php:1978, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/FluentForm.php:2174, ../includes/Elements/Formstack.php:663, ../includes/Elements/Formstack.php:718, ../includes/Elements/Formstack.php:1180, ../includes/Elements/Formstack.php:1260, ../includes/Elements/Formstack.php:1314, ../includes/Elements/Formstack.php:1862, ../includes/Elements/Formstack.php:1943, ../includes/Elements/GravityForms.php:661, ../includes/Elements/GravityForms.php:743, ../includes/Elements/GravityForms.php:1424, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1644, ../includes/Elements/GravityForms.php:1726, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:2035, ../includes/Elements/GravityForms.php:2071, ../includes/Elements/Image_Accordion.php:510, ../includes/Elements/Image_Accordion.php:539, ../includes/Elements/Info_Box.php:1378, ../includes/Elements/Info_Box.php:1454, ../includes/Elements/Interactive_Circle.php:597, ../includes/Elements/Login_Register.php:3469, ../includes/Elements/Login_Register.php:3560, ../includes/Elements/Login_Register.php:3977, ../includes/Elements/Login_Register.php:4548, ../includes/Elements/Login_Register.php:4697, ../includes/Elements/NinjaForms.php:1035, ../includes/Elements/NinjaForms.php:1153, ../includes/Elements/NinjaForms.php:1584, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:446, ../includes/Elements/Post_Grid.php:868, ../includes/Elements/Pricing_Table.php:941, ../includes/Elements/Pricing_Table.php:1005, ../includes/Elements/Pricing_Table.php:1096, ../includes/Elements/Pricing_Table.php:1125, ../includes/Elements/Pricing_Table.php:1166, ../includes/Elements/Pricing_Table.php:1195, ../includes/Elements/Pricing_Table.php:1235, ../includes/Elements/Pricing_Table.php:1270, ../includes/Elements/Pricing_Table.php:1452, ../includes/Elements/Pricing_Table.php:1592, ../includes/Elements/Product_Grid.php:1599, ../includes/Elements/Product_Grid.php:2254, ../includes/Elements/Product_Grid.php:2363, ../includes/Elements/Product_Grid.php:2734, ../includes/Elements/Product_Grid.php:2915, ../includes/Elements/Product_Grid.php:2956, ../includes/Elements/Product_Grid.php:3017, ../includes/Elements/Product_Grid.php:3068, ../includes/Elements/Product_Grid.php:3225, ../includes/Elements/Progress_Bar.php:483, ../includes/Elements/Progress_Bar.php:572, ../includes/Elements/Simple_Menu.php:972, ../includes/Elements/Simple_Menu.php:1065, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1377, ../includes/Elements/Simple_Menu.php:1472, ../includes/Elements/SVG_Draw.php:397, ../includes/Elements/Twitter_Feed.php:975, ../includes/Elements/Twitter_Feed.php:1004, ../includes/Elements/Twitter_Feed.php:1034, ../includes/Elements/Twitter_Feed.php:1204, ../includes/Elements/Woo_Checkout.php:844, ../includes/Elements/Woo_Checkout.php:1018, ../includes/Elements/Woo_Checkout.php:1032, ../includes/Elements/Woo_Checkout.php:1152, ../includes/Elements/Woo_Checkout.php:1167, ../includes/Elements/Woo_Checkout.php:1354, ../includes/Elements/Woo_Checkout.php:1390, ../includes/Elements/Woo_Checkout.php:1406, ../includes/Elements/Woo_Checkout.php:1474, ../includes/Elements/Woo_Checkout.php:1646, ../includes/Elements/Woo_Checkout.php:1696, ../includes/Elements/Woo_Checkout.php:1736, ../includes/Elements/Woo_Checkout.php:1833, ../includes/Elements/Woo_Checkout.php:2067, ../includes/Elements/Woo_Checkout.php:2107, ../includes/Elements/Woo_Checkout.php:2225, ../includes/Elements/Woo_Checkout.php:2269, ../includes/Elements/Woo_Checkout.php:2313, ../includes/Elements/Woo_Checkout.php:2419, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/Woo_Checkout.php:2498, ../includes/Elements/Woo_Checkout.php:2775, ../includes/Elements/Woo_Checkout.php:2796, ../includes/Elements/Woo_Checkout.php:2831, ../includes/Elements/Woo_Checkout.php:2860, ../includes/Elements/Woo_Checkout.php:2949, ../includes/Elements/Woo_Checkout.php:2989, ../includes/Elements/Woo_Product_Carousel.php:1355, ../includes/Elements/Woo_Product_Carousel.php:1550, ../includes/Elements/Woo_Product_Carousel.php:1632, ../includes/Elements/Woo_Product_Carousel.php:1852, ../includes/Elements/Woo_Product_Carousel.php:1893, ../includes/Elements/Woo_Product_Carousel.php:1955, ../includes/Elements/Woo_Product_Carousel.php:2007, ../includes/Elements/Woo_Product_Carousel.php:2160, ../includes/Elements/Woo_Product_Carousel.php:2401, ../includes/Elements/Woo_Product_Carousel.php:2464, ../includes/Elements/Woo_Product_Carousel.php:2497, ../includes/Elements/Woo_Product_Carousel.php:2835, ../includes/Elements/Woo_Product_Carousel.php:2891, ../includes/Elements/Woo_Product_Gallery.php:1511, ../includes/Elements/Woo_Product_Gallery.php:1545, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Elements/Woo_Product_Gallery.php:1906, ../includes/Elements/Woo_Product_Gallery.php:1956, ../includes/Elements/Woo_Product_Gallery.php:2157, ../includes/Elements/Woo_Product_Gallery.php:2198, ../includes/Elements/Woo_Product_Gallery.php:2239, ../includes/Elements/Woo_Product_Gallery.php:2300, ../includes/Elements/Woo_Product_Gallery.php:2351, ../includes/Elements/Woo_Product_Gallery.php:2508, ../includes/Elements/Woo_Product_List.php:2110, ../includes/Elements/Woo_Product_List.php:2168, ../includes/Elements/Woo_Product_List.php:2290, ../includes/Elements/Woo_Product_List.php:2327, ../includes/Elements/Woo_Product_List.php:2385, ../includes/Elements/Woo_Product_List.php:2414, ../includes/Elements/Woo_Product_List.php:2455, ../includes/Elements/Woo_Product_List.php:2493, ../includes/Elements/Woo_Product_List.php:2531, ../includes/Elements/Woo_Product_List.php:2713, ../includes/Elements/Woo_Product_List.php:2759, ../includes/Elements/Woo_Product_List.php:2834, ../includes/Elements/Woo_Product_List.php:2877, ../includes/Elements/Woo_Product_List.php:2942, ../includes/Elements/Woo_Product_List.php:2977, ../includes/Elements/Woo_Product_List.php:3046, ../includes/Elements/Woo_Product_List.php:3098, ../includes/Elements/Woo_Product_List.php:3182, ../includes/Elements/Woo_Product_List.php:3338, ../includes/Elements/WpForms.php:997, ../includes/Elements/WpForms.php:1113, ../includes/Extensions/Table_of_Content.php:1275, ../includes/Traits/Controls.php:1827, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484 msgid "Color" msgstr "" @@ -978,339 +821,343 @@ msgstr "" msgid "No content found" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:105, ../includes/Elements/Adv_Tabs.php:74, ../includes/Elements/Facebook_Feed.php:244, ../includes/Elements/Woo_Cart.php:137, ../includes/Elements/Woo_Checkout.php:122 +#: ../includes/Elements/Adv_Accordion.php:109, ../includes/Elements/Adv_Tabs.php:78, ../includes/Elements/Facebook_Feed.php:244, ../includes/Elements/Woo_Cart.php:137, ../includes/Elements/Woo_Checkout.php:122, ../includes/Extensions/Hover_Effect.php:630, ../includes/Extensions/Hover_Effect.php:1271 msgid "General Settings" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:111 +#: ../includes/Elements/Adv_Accordion.php:115 msgid "Accordion Type" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:116 +#: ../includes/Elements/Adv_Accordion.php:120 msgid "Accordion" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:124 +#: ../includes/Elements/Adv_Accordion.php:121, ../includes/Elements/Business_Reviews.php:2145, ../includes/Elements/Login_Register.php:1621, ../includes/Elements/Login_Register.php:4346, ../includes/Elements/Woo_Product_Carousel.php:2727, ../includes/Traits/Admin.php:759, ../includes/Traits/Elements.php:299 +msgid "Toggle" +msgstr "" + +#: ../includes/Elements/Adv_Accordion.php:128 msgid "Select Accordion Tab Title Tag" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:318, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:441, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:548, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:243, ../includes/Elements/Product_Grid.php:551, ../includes/Elements/Product_Grid.php:1950, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:257, ../includes/Elements/Woo_Product_Carousel.php:437, ../includes/Elements/Woo_Product_Gallery.php:502, ../includes/Elements/Woo_Product_Gallery.php:1666, ../includes/Elements/Woo_Product_List.php:787, ../includes/Elements/Woo_Product_List.php:1037, ../includes/Extensions/Table_of_Content.php:145, ../includes/Extensions/Table_of_Content.php:202, ../includes/Traits/Controls.php:1080 +#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:322, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:445, ../includes/Elements/Flip_Box.php:312, ../includes/Elements/Flip_Box.php:552, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:247, ../includes/Elements/Product_Grid.php:607, ../includes/Elements/Product_Grid.php:2062, ../includes/Elements/Progress_Bar.php:145, ../includes/Elements/Tooltip.php:165, ../includes/Elements/Woo_Product_Carousel.php:277, ../includes/Elements/Woo_Product_Carousel.php:457, ../includes/Elements/Woo_Product_Gallery.php:567, ../includes/Elements/Woo_Product_Gallery.php:1789, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:1155, ../includes/Extensions/Table_of_Content.php:145, ../includes/Extensions/Table_of_Content.php:202, ../includes/Traits/Controls.php:1174 msgid "H1" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:319, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:442, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:549, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:244, ../includes/Elements/Product_Grid.php:552, ../includes/Elements/Product_Grid.php:1951, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:258, ../includes/Elements/Woo_Product_Carousel.php:438, ../includes/Elements/Woo_Product_Gallery.php:503, ../includes/Elements/Woo_Product_Gallery.php:1667, ../includes/Elements/Woo_Product_List.php:788, ../includes/Elements/Woo_Product_List.php:1038, ../includes/Extensions/Table_of_Content.php:149, ../includes/Extensions/Table_of_Content.php:203, ../includes/Traits/Controls.php:1081 +#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:323, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:446, ../includes/Elements/Flip_Box.php:313, ../includes/Elements/Flip_Box.php:553, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Product_Grid.php:611, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Progress_Bar.php:146, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:278, ../includes/Elements/Woo_Product_Carousel.php:458, ../includes/Elements/Woo_Product_Gallery.php:571, ../includes/Elements/Woo_Product_Gallery.php:1793, ../includes/Elements/Woo_Product_List.php:879, ../includes/Elements/Woo_Product_List.php:1159, ../includes/Extensions/Table_of_Content.php:149, ../includes/Extensions/Table_of_Content.php:203, ../includes/Traits/Controls.php:1178 msgid "H2" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:320, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:443, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:550, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:245, ../includes/Elements/Product_Grid.php:553, ../includes/Elements/Product_Grid.php:1952, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:259, ../includes/Elements/Woo_Product_Carousel.php:439, ../includes/Elements/Woo_Product_Gallery.php:504, ../includes/Elements/Woo_Product_Gallery.php:1668, ../includes/Elements/Woo_Product_List.php:789, ../includes/Elements/Woo_Product_List.php:1039, ../includes/Extensions/Table_of_Content.php:153, ../includes/Extensions/Table_of_Content.php:204, ../includes/Traits/Controls.php:1082 +#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:324, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:447, ../includes/Elements/Flip_Box.php:314, ../includes/Elements/Flip_Box.php:554, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Product_Grid.php:615, ../includes/Elements/Product_Grid.php:2070, ../includes/Elements/Progress_Bar.php:147, ../includes/Elements/Tooltip.php:167, ../includes/Elements/Woo_Product_Carousel.php:279, ../includes/Elements/Woo_Product_Carousel.php:459, ../includes/Elements/Woo_Product_Gallery.php:575, ../includes/Elements/Woo_Product_Gallery.php:1797, ../includes/Elements/Woo_Product_List.php:883, ../includes/Elements/Woo_Product_List.php:1163, ../includes/Extensions/Table_of_Content.php:153, ../includes/Extensions/Table_of_Content.php:204, ../includes/Traits/Controls.php:1182 msgid "H3" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:321, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:444, ../includes/Elements/Flip_Box.php:311, ../includes/Elements/Flip_Box.php:551, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:246, ../includes/Elements/Product_Grid.php:554, ../includes/Elements/Product_Grid.php:1953, ../includes/Elements/Progress_Bar.php:144, ../includes/Elements/Tooltip.php:164, ../includes/Elements/Woo_Product_Carousel.php:260, ../includes/Elements/Woo_Product_Carousel.php:440, ../includes/Elements/Woo_Product_Gallery.php:505, ../includes/Elements/Woo_Product_Gallery.php:1669, ../includes/Elements/Woo_Product_List.php:790, ../includes/Elements/Woo_Product_List.php:1040, ../includes/Extensions/Table_of_Content.php:157, ../includes/Extensions/Table_of_Content.php:205, ../includes/Traits/Controls.php:1083 +#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:448, ../includes/Elements/Flip_Box.php:315, ../includes/Elements/Flip_Box.php:555, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:250, ../includes/Elements/Product_Grid.php:619, ../includes/Elements/Product_Grid.php:2074, ../includes/Elements/Progress_Bar.php:148, ../includes/Elements/Tooltip.php:168, ../includes/Elements/Woo_Product_Carousel.php:280, ../includes/Elements/Woo_Product_Carousel.php:460, ../includes/Elements/Woo_Product_Gallery.php:579, ../includes/Elements/Woo_Product_Gallery.php:1801, ../includes/Elements/Woo_Product_List.php:887, ../includes/Elements/Woo_Product_List.php:1167, ../includes/Extensions/Table_of_Content.php:157, ../includes/Extensions/Table_of_Content.php:205, ../includes/Traits/Controls.php:1186 msgid "H4" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:322, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:445, ../includes/Elements/Flip_Box.php:312, ../includes/Elements/Flip_Box.php:552, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:247, ../includes/Elements/Product_Grid.php:555, ../includes/Elements/Product_Grid.php:1954, ../includes/Elements/Progress_Bar.php:145, ../includes/Elements/Tooltip.php:165, ../includes/Elements/Woo_Product_Carousel.php:261, ../includes/Elements/Woo_Product_Carousel.php:441, ../includes/Elements/Woo_Product_Gallery.php:506, ../includes/Elements/Woo_Product_Gallery.php:1670, ../includes/Elements/Woo_Product_List.php:791, ../includes/Elements/Woo_Product_List.php:1041, ../includes/Extensions/Table_of_Content.php:161, ../includes/Extensions/Table_of_Content.php:206, ../includes/Traits/Controls.php:1084 +#: ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:326, ../includes/Elements/Dual_Color_Header.php:147, ../includes/Elements/Filterable_Gallery.php:449, ../includes/Elements/Flip_Box.php:316, ../includes/Elements/Flip_Box.php:556, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Progress_Bar.php:149, ../includes/Elements/Tooltip.php:169, ../includes/Elements/Woo_Product_Carousel.php:281, ../includes/Elements/Woo_Product_Carousel.php:461, ../includes/Elements/Woo_Product_Gallery.php:583, ../includes/Elements/Woo_Product_Gallery.php:1805, ../includes/Elements/Woo_Product_List.php:891, ../includes/Elements/Woo_Product_List.php:1171, ../includes/Extensions/Table_of_Content.php:161, ../includes/Extensions/Table_of_Content.php:206, ../includes/Traits/Controls.php:1190 msgid "H5" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:323, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:446, ../includes/Elements/Flip_Box.php:313, ../includes/Elements/Flip_Box.php:553, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Product_Grid.php:556, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Progress_Bar.php:146, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:262, ../includes/Elements/Woo_Product_Carousel.php:442, ../includes/Elements/Woo_Product_Gallery.php:507, ../includes/Elements/Woo_Product_Gallery.php:1671, ../includes/Elements/Woo_Product_List.php:792, ../includes/Elements/Woo_Product_List.php:1042, ../includes/Extensions/Table_of_Content.php:165, ../includes/Extensions/Table_of_Content.php:207, ../includes/Traits/Controls.php:1085 +#: ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:327, ../includes/Elements/Dual_Color_Header.php:148, ../includes/Elements/Filterable_Gallery.php:450, ../includes/Elements/Flip_Box.php:317, ../includes/Elements/Flip_Box.php:557, ../includes/Elements/Image_Accordion.php:165, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Product_Grid.php:627, ../includes/Elements/Product_Grid.php:2082, ../includes/Elements/Progress_Bar.php:150, ../includes/Elements/Tooltip.php:170, ../includes/Elements/Woo_Product_Carousel.php:282, ../includes/Elements/Woo_Product_Carousel.php:462, ../includes/Elements/Woo_Product_Gallery.php:587, ../includes/Elements/Woo_Product_Gallery.php:1809, ../includes/Elements/Woo_Product_List.php:895, ../includes/Elements/Woo_Product_List.php:1175, ../includes/Extensions/Table_of_Content.php:165, ../includes/Extensions/Table_of_Content.php:207, ../includes/Traits/Controls.php:1194 msgid "H6" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:324, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:447, ../includes/Elements/Flip_Box.php:314, ../includes/Elements/Flip_Box.php:554, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Product_Grid.php:1956, ../includes/Elements/Woo_Product_Carousel.php:263, ../includes/Elements/Woo_Product_Carousel.php:443, ../includes/Elements/Woo_Product_Gallery.php:1672, ../includes/Elements/Woo_Product_List.php:1043, ../includes/Traits/Controls.php:1086 +#: ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:328, ../includes/Elements/Dual_Color_Header.php:149, ../includes/Elements/Filterable_Gallery.php:451, ../includes/Elements/Flip_Box.php:318, ../includes/Elements/Flip_Box.php:558, ../includes/Elements/Image_Accordion.php:166, ../includes/Elements/Info_Box.php:253, ../includes/Elements/Product_Grid.php:635, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Woo_Product_Carousel.php:283, ../includes/Elements/Woo_Product_Carousel.php:463, ../includes/Elements/Woo_Product_Gallery.php:595, ../includes/Elements/Woo_Product_Gallery.php:1817, ../includes/Elements/Woo_Product_List.php:903, ../includes/Elements/Woo_Product_List.php:1183, ../includes/Traits/Controls.php:1202 msgid "Span" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:448, ../includes/Elements/Flip_Box.php:315, ../includes/Elements/Flip_Box.php:555, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:250, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Tooltip.php:169, ../includes/Elements/Woo_Product_Carousel.php:264, ../includes/Elements/Woo_Product_Carousel.php:444, ../includes/Elements/Woo_Product_Gallery.php:1673, ../includes/Elements/Woo_Product_List.php:793, ../includes/Elements/Woo_Product_List.php:1044, ../includes/Traits/Controls.php:1087 +#: ../includes/Elements/Adv_Accordion.php:139, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:329, ../includes/Elements/Dual_Color_Header.php:150, ../includes/Elements/Filterable_Gallery.php:452, ../includes/Elements/Flip_Box.php:319, ../includes/Elements/Flip_Box.php:559, ../includes/Elements/Image_Accordion.php:167, ../includes/Elements/Info_Box.php:254, ../includes/Elements/Product_Grid.php:639, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Tooltip.php:173, ../includes/Elements/Woo_Product_Carousel.php:284, ../includes/Elements/Woo_Product_Carousel.php:464, ../includes/Elements/Woo_Product_Gallery.php:599, ../includes/Elements/Woo_Product_Gallery.php:1821, ../includes/Elements/Woo_Product_List.php:907, ../includes/Elements/Woo_Product_List.php:1187, ../includes/Traits/Controls.php:1206 msgid "P" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:326, ../includes/Elements/Dual_Color_Header.php:147, ../includes/Elements/Filterable_Gallery.php:449, ../includes/Elements/Flip_Box.php:316, ../includes/Elements/Flip_Box.php:556, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Woo_Product_Carousel.php:265, ../includes/Elements/Woo_Product_Carousel.php:445, ../includes/Elements/Woo_Product_Gallery.php:1674, ../includes/Elements/Woo_Product_List.php:794, ../includes/Elements/Woo_Product_List.php:1045, ../includes/Traits/Controls.php:1088 +#: ../includes/Elements/Adv_Accordion.php:140, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:330, ../includes/Elements/Dual_Color_Header.php:151, ../includes/Elements/Filterable_Gallery.php:453, ../includes/Elements/Flip_Box.php:320, ../includes/Elements/Flip_Box.php:560, ../includes/Elements/Image_Accordion.php:168, ../includes/Elements/Info_Box.php:255, ../includes/Elements/Product_Grid.php:631, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Woo_Product_Carousel.php:285, ../includes/Elements/Woo_Product_Carousel.php:465, ../includes/Elements/Woo_Product_Gallery.php:591, ../includes/Elements/Woo_Product_Gallery.php:1813, ../includes/Elements/Woo_Product_List.php:899, ../includes/Elements/Woo_Product_List.php:1179, ../includes/Traits/Controls.php:1198 msgid "Div" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:143 +#: ../includes/Elements/Adv_Accordion.php:147 msgid "Enable Toggle Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:152 +#: ../includes/Elements/Adv_Accordion.php:156 msgid "Toggle Icon Postion" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:167 +#: ../includes/Elements/Adv_Accordion.php:171 msgid "Toggle Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:182 +#: ../includes/Elements/Adv_Accordion.php:186 msgid "Toggle Speed (ms)" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:192, ../includes/Elements/Adv_Tabs.php:168 +#: ../includes/Elements/Adv_Accordion.php:196, ../includes/Elements/Adv_Tabs.php:172 msgid "Custom ID offset" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:193, ../includes/Elements/Adv_Tabs.php:169 +#: ../includes/Elements/Adv_Accordion.php:197, ../includes/Elements/Adv_Tabs.php:173 msgid "Use offset to set the custom ID target scrolling position." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:204, ../includes/Elements/Adv_Tabs.php:180 +#: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:184 msgid "Scroll Speed (ms)" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:214, ../includes/Elements/Adv_Tabs.php:190 +#: ../includes/Elements/Adv_Accordion.php:218, ../includes/Elements/Adv_Tabs.php:194 msgid "Scroll on Click" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:224 +#: ../includes/Elements/Adv_Accordion.php:228 msgid "Enable FAQ Schema" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:225 +#: ../includes/Elements/Adv_Accordion.php:229 msgid "For saved template, FAQ Schema Text can be added manually on each tab." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:241, ../includes/Elements/Countdown.php:226, ../includes/Elements/Cta_Box.php:73, ../includes/Elements/Dual_Color_Header.php:70, ../includes/Elements/Facebook_Feed.php:289, ../includes/Elements/Feature_List.php:65, ../includes/Elements/Tooltip.php:64 +#: ../includes/Elements/Adv_Accordion.php:245, ../includes/Elements/Countdown.php:230, ../includes/Elements/Cta_Box.php:77, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Facebook_Feed.php:289, ../includes/Elements/Feature_List.php:69, ../includes/Elements/Tooltip.php:68 msgid "Content Settings" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:250, ../includes/Elements/Adv_Tabs.php:214, ../includes/Elements/Filterable_Gallery.php:509, ../includes/Elements/Interactive_Circle.php:161 +#: ../includes/Elements/Adv_Accordion.php:254, ../includes/Elements/Adv_Tabs.php:218, ../includes/Elements/Filterable_Gallery.php:513, ../includes/Elements/Interactive_Circle.php:165 msgid "Active as Default" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:260 +#: ../includes/Elements/Adv_Accordion.php:264 msgid "Enable Tab Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:285 +#: ../includes/Elements/Adv_Accordion.php:289 msgid "Opened Tab" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:295, ../includes/Elements/Adv_Accordion.php:323, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Adv_Tabs.php:248, ../includes/Elements/Betterdocs_Category_Box.php:410, ../includes/Elements/Betterdocs_Category_Box.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:1068, ../includes/Elements/Betterdocs_Category_Grid.php:1077, ../includes/Elements/Betterdocs_Category_Grid.php:1209, ../includes/Elements/Betterdocs_Category_Grid.php:1316, ../includes/Elements/Creative_Button.php:137, ../includes/Elements/Cta_Box.php:265, ../includes/Elements/Cta_Box.php:390, ../includes/Elements/Data_Table.php:158, ../includes/Elements/Data_Table.php:177, ../includes/Elements/Data_Table.php:313, ../includes/Elements/Data_Table.php:366, ../includes/Elements/Dual_Color_Header.php:119, ../includes/Elements/Dual_Color_Header.php:280, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:587, ../includes/Elements/Flip_Box.php:206, ../includes/Elements/Flip_Box.php:235, ../includes/Elements/Flip_Box.php:446, ../includes/Elements/Flip_Box.php:475, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:179, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Interactive_Circle.php:177, ../includes/Elements/Interactive_Circle.php:208, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Simple_Menu.php:227, ../includes/Elements/Simple_Menu.php:923, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/SVG_Draw.php:85, ../includes/Elements/SVG_Draw.php:94, ../includes/Elements/Team_Member.php:175, ../includes/Elements/Tooltip.php:75, ../includes/Elements/Tooltip.php:98, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Extensions/Scroll_to_Top.php:344, ../includes/Extensions/Table_of_Content.php:764, ../includes/Traits/Controls.php:915, ../includes/Traits/Controls.php:972 +#: ../includes/Elements/Adv_Accordion.php:299, ../includes/Elements/Adv_Accordion.php:327, ../includes/Elements/Adv_Tabs.php:237, ../includes/Elements/Adv_Tabs.php:252, ../includes/Elements/Betterdocs_Category_Box.php:410, ../includes/Elements/Betterdocs_Category_Box.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:444, ../includes/Elements/Betterdocs_Category_Grid.php:1068, ../includes/Elements/Betterdocs_Category_Grid.php:1077, ../includes/Elements/Betterdocs_Category_Grid.php:1209, ../includes/Elements/Betterdocs_Category_Grid.php:1316, ../includes/Elements/Creative_Button.php:141, ../includes/Elements/Cta_Box.php:269, ../includes/Elements/Cta_Box.php:394, ../includes/Elements/Data_Table.php:162, ../includes/Elements/Data_Table.php:181, ../includes/Elements/Data_Table.php:317, ../includes/Elements/Data_Table.php:370, ../includes/Elements/Dual_Color_Header.php:123, ../includes/Elements/Dual_Color_Header.php:284, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:98, ../includes/Elements/Feature_List.php:591, ../includes/Elements/Flip_Box.php:210, ../includes/Elements/Flip_Box.php:239, ../includes/Elements/Flip_Box.php:450, ../includes/Elements/Flip_Box.php:479, ../includes/Elements/Info_Box.php:111, ../includes/Elements/Info_Box.php:183, ../includes/Elements/Info_Box.php:461, ../includes/Elements/Interactive_Circle.php:181, ../includes/Elements/Interactive_Circle.php:250, ../includes/Elements/Pricing_Table.php:200, ../includes/Elements/Simple_Menu.php:227, ../includes/Elements/Simple_Menu.php:923, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/SVG_Draw.php:89, ../includes/Elements/SVG_Draw.php:98, ../includes/Elements/Team_Member.php:179, ../includes/Elements/Tooltip.php:79, ../includes/Elements/Tooltip.php:102, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Extensions/Scroll_to_Top.php:344, ../includes/Extensions/Table_of_Content.php:849, ../includes/Traits/Controls.php:1008, ../includes/Traits/Controls.php:1065 msgid "Icon" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:313 +#: ../includes/Elements/Adv_Accordion.php:317 msgid "Closed Tab" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:344, ../includes/Elements/Adv_Accordion.php:347, ../includes/Elements/Adv_Tabs.php:282, ../includes/Elements/Adv_Tabs.php:284, ../includes/Elements/Adv_Tabs.php:482 +#: ../includes/Elements/Adv_Accordion.php:348, ../includes/Elements/Adv_Accordion.php:351, ../includes/Elements/Adv_Tabs.php:286, ../includes/Elements/Adv_Tabs.php:288, ../includes/Elements/Adv_Tabs.php:486 msgid "Tab Title" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Tabs.php:317, ../includes/Elements/Cta_Box.php:334, ../includes/Elements/Data_Table.php:309, ../includes/Elements/Flip_Box.php:172, ../includes/Elements/Flip_Box.php:414, ../includes/Elements/Info_Box.php:258, ../includes/Elements/Tooltip.php:70 +#: ../includes/Elements/Adv_Accordion.php:364, ../includes/Elements/Adv_Tabs.php:321, ../includes/Elements/Cta_Box.php:338, ../includes/Elements/Data_Table.php:313, ../includes/Elements/Flip_Box.php:176, ../includes/Elements/Flip_Box.php:418, ../includes/Elements/Info_Box.php:262, ../includes/Elements/Tooltip.php:74 msgid "Content Type" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:363, ../includes/Elements/Adv_Tabs.php:205, ../includes/Elements/Adv_Tabs.php:320, ../includes/Elements/Adv_Tabs.php:810, ../includes/Elements/Business_Reviews.php:546, ../includes/Elements/Business_Reviews.php:1420, ../includes/Elements/Cta_Box.php:337, ../includes/Elements/Cta_Box.php:358, ../includes/Elements/Data_Table.php:271, ../includes/Elements/Data_Table.php:386, ../includes/Elements/Data_Table.php:400, ../includes/Elements/Event_Calendar.php:286, ../includes/Elements/Event_Calendar.php:2804, ../includes/Elements/Facebook_Feed.php:1036, ../includes/Elements/Feature_List.php:198, ../includes/Elements/Feature_List.php:780, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Flip_Box.php:175, ../includes/Elements/Flip_Box.php:417, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:214, ../includes/Elements/Image_Accordion.php:526, ../includes/Elements/Info_Box.php:261, ../includes/Elements/Interactive_Circle.php:114, ../includes/Elements/Interactive_Circle.php:146, ../includes/Elements/Interactive_Circle.php:202, ../includes/Elements/Interactive_Circle.php:845, ../includes/Elements/NFT_Gallery.php:527, ../includes/Elements/Post_Timeline.php:212, ../includes/Elements/Product_Grid.php:2690, ../includes/Elements/Tooltip.php:143, ../includes/Elements/Tooltip.php:279, ../includes/Elements/Woo_Product_Carousel.php:1713, ../includes/Elements/Woo_Product_Gallery.php:1921, ../includes/Elements/Woo_Product_List.php:582, ../includes/Elements/Woo_Product_List.php:1418 +#: ../includes/Elements/Adv_Accordion.php:367, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:814, ../includes/Elements/Business_Reviews.php:560, ../includes/Elements/Business_Reviews.php:1434, ../includes/Elements/Cta_Box.php:341, ../includes/Elements/Cta_Box.php:362, ../includes/Elements/Data_Table.php:275, ../includes/Elements/Data_Table.php:390, ../includes/Elements/Data_Table.php:404, ../includes/Elements/Event_Calendar.php:286, ../includes/Elements/Event_Calendar.php:2804, ../includes/Elements/Facebook_Feed.php:1036, ../includes/Elements/Feature_List.php:202, ../includes/Elements/Feature_List.php:784, ../includes/Elements/Flip_Box.php:161, ../includes/Elements/Flip_Box.php:179, ../includes/Elements/Flip_Box.php:421, ../includes/Elements/Image_Accordion.php:101, ../includes/Elements/Image_Accordion.php:218, ../includes/Elements/Image_Accordion.php:530, ../includes/Elements/Info_Box.php:265, ../includes/Elements/Interactive_Circle.php:118, ../includes/Elements/Interactive_Circle.php:150, ../includes/Elements/Interactive_Circle.php:244, ../includes/Elements/Interactive_Circle.php:888, ../includes/Elements/NFT_Gallery.php:527, ../includes/Elements/Post_Timeline.php:212, ../includes/Elements/Product_Grid.php:2831, ../includes/Elements/Tooltip.php:147, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Woo_Product_Carousel.php:1756, ../includes/Elements/Woo_Product_Gallery.php:2073, ../includes/Elements/Woo_Product_List.php:648, ../includes/Elements/Woo_Product_List.php:1564 msgid "Content" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:364, ../includes/Elements/Adv_Tabs.php:321, ../includes/Elements/Countdown.php:503, ../includes/Elements/Cta_Box.php:338, ../includes/Elements/Flip_Box.php:176, ../includes/Elements/Flip_Box.php:418, ../includes/Elements/Info_Box.php:262 +#: ../includes/Elements/Adv_Accordion.php:368, ../includes/Elements/Adv_Tabs.php:325, ../includes/Elements/Countdown.php:507, ../includes/Elements/Cta_Box.php:342, ../includes/Elements/Flip_Box.php:180, ../includes/Elements/Flip_Box.php:422, ../includes/Elements/Info_Box.php:266 msgid "Saved Templates" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:374, ../includes/Elements/Adv_Tabs.php:330, ../includes/Elements/Countdown.php:553, ../includes/Elements/Cta_Box.php:347, ../includes/Elements/Data_Table.php:354, ../includes/Elements/Flip_Box.php:185, ../includes/Elements/Flip_Box.php:427, ../includes/Elements/Info_Box.php:271 +#: ../includes/Elements/Adv_Accordion.php:378, ../includes/Elements/Adv_Tabs.php:334, ../includes/Elements/Countdown.php:557, ../includes/Elements/Cta_Box.php:351, ../includes/Elements/Data_Table.php:358, ../includes/Elements/Flip_Box.php:189, ../includes/Elements/Flip_Box.php:431, ../includes/Elements/Info_Box.php:275 msgid "Choose Template" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:389, ../includes/Elements/Adv_Tabs.php:344, ../includes/Elements/Interactive_Circle.php:217 +#: ../includes/Elements/Adv_Accordion.php:393, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Interactive_Circle.php:259 msgid "Tab Content" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Tabs.php:346, ../includes/Elements/Feature_List.php:200, ../includes/Elements/Interactive_Circle.php:219 +#: ../includes/Elements/Adv_Accordion.php:395, ../includes/Elements/Adv_Tabs.php:350, ../includes/Elements/Feature_List.php:204, ../includes/Elements/Interactive_Circle.php:261 msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:402, ../includes/Elements/Adv_Tabs.php:357, ../includes/Elements/Filterable_Gallery.php:476 +#: ../includes/Elements/Adv_Accordion.php:406, ../includes/Elements/Adv_Tabs.php:361, ../includes/Elements/Filterable_Gallery.php:480 msgid "Custom ID" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:404, ../includes/Elements/Adv_Tabs.php:359 +#: ../includes/Elements/Adv_Accordion.php:408, ../includes/Elements/Adv_Tabs.php:363 msgid "Custom ID will be added as an anchor tag. For example, if you add ‘test’ as your custom ID, the link will become like the following: https://www.example.com/#test and it will open the respective tab directly." msgstr "" -#: ../includes/Elements/Adv_Accordion.php:415 +#: ../includes/Elements/Adv_Accordion.php:419 msgid "FAQ Schema Text" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:435 +#: ../includes/Elements/Adv_Accordion.php:439 msgid "Accordion Tab Title 1" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:436 +#: ../includes/Elements/Adv_Accordion.php:440 msgid "Accordion Tab Title 2" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:437 +#: ../includes/Elements/Adv_Accordion.php:441 msgid "Accordion Tab Title 3" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:482, ../includes/Elements/Data_Table.php:534 +#: ../includes/Elements/Adv_Accordion.php:486, ../includes/Elements/Data_Table.php:538 msgid "General Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:542 +#: ../includes/Elements/Adv_Accordion.php:546 msgid "Tab Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:556, ../includes/Elements/Adv_Accordion.php:937, ../includes/Elements/Adv_Tabs.php:526, ../includes/Elements/Creative_Button.php:509, ../includes/Elements/Cta_Box.php:875, ../includes/Elements/Data_Table.php:732, ../includes/Elements/Data_Table.php:1083, ../includes/Elements/Dual_Color_Header.php:404, ../includes/Elements/Dual_Color_Header.php:615, ../includes/Elements/Event_Calendar.php:2775, ../includes/Elements/Event_Calendar.php:2844, ../includes/Elements/Feature_List.php:660, ../includes/Elements/Filterable_Gallery.php:2075, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:3008, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1102, ../includes/Elements/Flip_Box.php:1441, ../includes/Elements/Info_Box.php:951, ../includes/Elements/Info_Box.php:1193, ../includes/Elements/Interactive_Circle.php:618, ../includes/Elements/Interactive_Circle.php:888, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1293, ../includes/Elements/Pricing_Table.php:1761, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Product_Grid.php:1437, ../includes/Elements/Product_Grid.php:3032, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:677, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1817, ../includes/Elements/Woo_Product_Carousel.php:1279, ../includes/Elements/Woo_Product_Carousel.php:2065, ../includes/Elements/Woo_Product_Carousel.php:2713, ../includes/Elements/Woo_Product_Gallery.php:913, ../includes/Elements/Woo_Product_Gallery.php:2304, ../includes/Elements/Woo_Product_List.php:2109, ../includes/Elements/Woo_Product_List.php:3140, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:800, ../includes/Traits/Woo_Product_Comparable.php:1345 +#: ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:941, ../includes/Elements/Adv_Tabs.php:530, ../includes/Elements/Creative_Button.php:513, ../includes/Elements/Cta_Box.php:879, ../includes/Elements/Data_Table.php:736, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Dual_Color_Header.php:408, ../includes/Elements/Dual_Color_Header.php:594, ../includes/Elements/Event_Calendar.php:2775, ../includes/Elements/Event_Calendar.php:2844, ../includes/Elements/Feature_List.php:664, ../includes/Elements/Filterable_Gallery.php:2079, ../includes/Elements/Filterable_Gallery.php:2440, ../includes/Elements/Filterable_Gallery.php:3012, ../includes/Elements/Flip_Box.php:992, ../includes/Elements/Flip_Box.php:1106, ../includes/Elements/Flip_Box.php:1445, ../includes/Elements/Info_Box.php:956, ../includes/Elements/Info_Box.php:1198, ../includes/Elements/Interactive_Circle.php:660, ../includes/Elements/Interactive_Circle.php:931, ../includes/Elements/Login_Register.php:4041, ../includes/Elements/Login_Register.php:4138, ../includes/Elements/Login_Register.php:4235, ../includes/Elements/NFT_Gallery.php:2194, ../includes/Elements/Pricing_Table.php:1294, ../includes/Elements/Pricing_Table.php:1762, ../includes/Elements/Pricing_Table.php:1936, ../includes/Elements/Product_Grid.php:1549, ../includes/Elements/Product_Grid.php:3173, ../includes/Elements/Simple_Menu.php:314, ../includes/Elements/Simple_Menu.php:940, ../includes/Elements/Simple_Menu.php:1345, ../includes/Elements/Team_Member.php:696, ../includes/Elements/Tooltip.php:118, ../includes/Elements/Twitter_Feed.php:1347, ../includes/Elements/Woo_Cart.php:1486, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1858, ../includes/Elements/Woo_Product_Carousel.php:1322, ../includes/Elements/Woo_Product_Carousel.php:2108, ../includes/Elements/Woo_Product_Carousel.php:2756, ../includes/Elements/Woo_Product_Gallery.php:1036, ../includes/Elements/Woo_Product_Gallery.php:2456, ../includes/Elements/Woo_Product_List.php:2255, ../includes/Elements/Woo_Product_List.php:3286, ../includes/Extensions/Scroll_to_Top.php:372, ../includes/Extensions/Table_of_Content.php:885, ../includes/Traits/Woo_Product_Comparable.php:1345 msgid "Icon Size" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:579, ../includes/Elements/Adv_Accordion.php:605, ../includes/Elements/Adv_Tabs.php:550 +#: ../includes/Elements/Adv_Accordion.php:583, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Tabs.php:554 msgid "Icon Gap" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:631 +#: ../includes/Elements/Adv_Accordion.php:635 msgid "Distance" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Accordion.php:750, ../includes/Elements/Adv_Accordion.php:812, ../includes/Elements/Adv_Tabs.php:631, ../includes/Elements/Adv_Tabs.php:698, ../includes/Elements/Adv_Tabs.php:765, ../includes/Elements/Creative_Button.php:270, ../includes/Elements/Creative_Button.php:362, ../includes/Elements/Cta_Box.php:1064, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Data_Table.php:1129, ../includes/Elements/Dual_Color_Header.php:428, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:2793, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:787, ../includes/Elements/Info_Box.php:866, ../includes/Elements/Info_Box.php:1019, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Interactive_Circle.php:667, ../includes/Elements/Interactive_Circle.php:729, ../includes/Elements/Interactive_Circle.php:795, ../includes/Elements/Interactive_Circle.php:912, ../includes/Elements/Post_Grid.php:978, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:1826, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:754, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1446, ../includes/Elements/Woo_Checkout.php:1805, ../includes/Extensions/Scroll_to_Top.php:387 +#: ../includes/Elements/Adv_Accordion.php:693, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Accordion.php:816, ../includes/Elements/Adv_Tabs.php:635, ../includes/Elements/Adv_Tabs.php:702, ../includes/Elements/Adv_Tabs.php:769, ../includes/Elements/Creative_Button.php:274, ../includes/Elements/Creative_Button.php:366, ../includes/Elements/Cta_Box.php:1068, ../includes/Elements/Cta_Box.php:1203, ../includes/Elements/Data_Table.php:1115, ../includes/Elements/Data_Table.php:1133, ../includes/Elements/Dual_Color_Header.php:432, ../includes/Elements/Dual_Color_Header.php:620, ../includes/Elements/Event_Calendar.php:2793, ../includes/Elements/Feature_List.php:126, ../includes/Elements/Info_Box.php:792, ../includes/Elements/Info_Box.php:871, ../includes/Elements/Info_Box.php:1024, ../includes/Elements/Info_Box.php:1104, ../includes/Elements/Interactive_Circle.php:709, ../includes/Elements/Interactive_Circle.php:772, ../includes/Elements/Interactive_Circle.php:838, ../includes/Elements/Interactive_Circle.php:955, ../includes/Elements/Post_Grid.php:991, ../includes/Elements/Pricing_Table.php:383, ../includes/Elements/Pricing_Table.php:1827, ../includes/Elements/Simple_Menu.php:331, ../includes/Elements/Team_Member.php:773, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Cart.php:238, ../includes/Elements/Woo_Cart.php:824, ../includes/Elements/Woo_Cart.php:2045, ../includes/Elements/Woo_Cart.php:2443, ../includes/Elements/Woo_Cart.php:2526, ../includes/Elements/Woo_Cart.php:2613, ../includes/Elements/Woo_Checkout.php:1487, ../includes/Elements/Woo_Checkout.php:1846, ../includes/Extensions/Scroll_to_Top.php:399 msgid "Icon Color" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:785, ../includes/Elements/Adv_Accordion.php:1091, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Event_Calendar.php:1859, ../includes/Elements/Event_Calendar.php:2190, ../includes/Elements/Filterable_Gallery.php:1238, ../includes/Elements/Interactive_Circle.php:766, ../includes/Elements/Product_Grid.php:2516, ../includes/Elements/Simple_Menu.php:461, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Woo_Product_Carousel.php:2447, ../includes/Elements/Woo_Product_Gallery.php:1455, ../includes/Extensions/Table_of_Content.php:1080 +#: ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Accordion.php:1095, ../includes/Elements/Adv_Tabs.php:735, ../includes/Elements/Event_Calendar.php:1859, ../includes/Elements/Event_Calendar.php:2190, ../includes/Elements/Filterable_Gallery.php:1242, ../includes/Elements/Interactive_Circle.php:809, ../includes/Elements/Product_Grid.php:2657, ../includes/Elements/Simple_Menu.php:461, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Woo_Product_Carousel.php:2490, ../includes/Elements/Woo_Product_Gallery.php:1578, ../includes/Extensions/Table_of_Content.php:1165, ../includes/Traits/Admin.php:101 msgid "Active" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:851, ../includes/Elements/Countdown.php:1207, ../includes/Elements/Cta_Box.php:80, ../includes/Elements/Cta_Box.php:774, ../includes/Elements/Data_Table.php:826, ../includes/Elements/Dual_Color_Header.php:77, ../includes/Elements/Facebook_Feed.php:704, ../includes/Elements/Facebook_Feed.php:868, ../includes/Elements/Flip_Box.php:1237, ../includes/Elements/Flip_Box.php:1306, ../includes/Elements/Info_Box.php:1404, ../includes/Elements/Tooltip.php:329, ../includes/Elements/Twitter_Feed.php:995 +#: ../includes/Elements/Adv_Accordion.php:855, ../includes/Elements/Countdown.php:1211, ../includes/Elements/Cta_Box.php:84, ../includes/Elements/Cta_Box.php:778, ../includes/Elements/Data_Table.php:830, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Facebook_Feed.php:704, ../includes/Elements/Facebook_Feed.php:868, ../includes/Elements/Flip_Box.php:1241, ../includes/Elements/Flip_Box.php:1310, ../includes/Elements/Info_Box.php:1409, ../includes/Elements/Tooltip.php:333, ../includes/Elements/Twitter_Feed.php:995 msgid "Content Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:929 +#: ../includes/Elements/Adv_Accordion.php:933 msgid "Toggle Caret Style" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:963 +#: ../includes/Elements/Adv_Accordion.php:967 msgid "Icon Padding" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:977 +#: ../includes/Elements/Adv_Accordion.php:981 msgid "Icon Radius" msgstr "" -#: ../includes/Elements/Adv_Accordion.php:1003, ../includes/Elements/Adv_Accordion.php:1051, ../includes/Elements/Adv_Accordion.php:1097, ../includes/Elements/Adv_Tabs.php:949 +#: ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Accordion.php:1055, ../includes/Elements/Adv_Accordion.php:1101, ../includes/Elements/Adv_Tabs.php:953 msgid "Caret Color" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:80, ../includes/Elements/Business_Reviews.php:193, ../includes/Elements/Countdown.php:232, ../includes/Elements/Event_Calendar.php:109, ../includes/Elements/Facebook_Feed.php:259, ../includes/Elements/Feature_List.php:256, ../includes/Elements/Filterable_Gallery.php:181, ../includes/Elements/NFT_Gallery.php:234, ../includes/Elements/Product_Grid.php:233, ../includes/Elements/Product_Grid.php:537, ../includes/Elements/Progress_Bar.php:75, ../includes/Elements/Progress_Bar.php:101, ../includes/Elements/Simple_Menu.php:152, ../includes/Elements/Woo_Cart.php:144, ../includes/Elements/Woo_Checkout.php:128, ../includes/Elements/Woo_Product_Carousel.php:219, ../includes/Elements/Woo_Product_Gallery.php:316, ../includes/Elements/Woo_Product_Gallery.php:488, ../includes/Elements/Woo_Product_List.php:209, ../includes/Elements/Woo_Product_List.php:216, ../includes/Traits/Controls.php:445, ../includes/Traits/Controls.php:589 +#: ../includes/Elements/Adv_Tabs.php:84, ../includes/Elements/Business_Reviews.php:193, ../includes/Elements/Countdown.php:236, ../includes/Elements/Event_Calendar.php:109, ../includes/Elements/Facebook_Feed.php:259, ../includes/Elements/Feature_List.php:260, ../includes/Elements/Filterable_Gallery.php:185, ../includes/Elements/NFT_Gallery.php:234, ../includes/Elements/Product_Grid.php:234, ../includes/Elements/Product_Grid.php:592, ../includes/Elements/Progress_Bar.php:79, ../includes/Elements/Progress_Bar.php:105, ../includes/Elements/Simple_Menu.php:152, ../includes/Elements/Team_Member.php:305, ../includes/Elements/Woo_Cart.php:144, ../includes/Elements/Woo_Checkout.php:146, ../includes/Elements/Woo_Product_Carousel.php:236, ../includes/Elements/Woo_Product_Gallery.php:324, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_List.php:209, ../includes/Elements/Woo_Product_List.php:232, ../includes/Traits/Controls.php:632 msgid "Layout" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:85, ../includes/Elements/Feature_List.php:263, ../includes/Elements/Filterable_Gallery.php:625, ../includes/Elements/Image_Accordion.php:87, ../includes/Elements/Simple_Menu.php:156, ../includes/Elements/Woo_Product_Gallery.php:180 +#: ../includes/Elements/Adv_Tabs.php:89, ../includes/Elements/Feature_List.php:267, ../includes/Elements/Filterable_Gallery.php:629, ../includes/Elements/Image_Accordion.php:91, ../includes/Elements/Simple_Menu.php:156, ../includes/Elements/Woo_Product_Gallery.php:181 msgid "Horizontal" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:86, ../includes/Elements/Feature_List.php:262, ../includes/Elements/Filterable_Gallery.php:629, ../includes/Elements/Image_Accordion.php:88, ../includes/Elements/Simple_Menu.php:157, ../includes/Elements/Woo_Product_Gallery.php:181 +#: ../includes/Elements/Adv_Tabs.php:90, ../includes/Elements/Feature_List.php:266, ../includes/Elements/Filterable_Gallery.php:633, ../includes/Elements/Image_Accordion.php:92, ../includes/Elements/Simple_Menu.php:157, ../includes/Elements/Woo_Product_Gallery.php:185 msgid "Vertical" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:93 +#: ../includes/Elements/Adv_Tabs.php:97 msgid "Enable Icon" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:149, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Feature_List.php:320, ../includes/Elements/Filterable_Gallery.php:965, ../includes/Elements/Flip_Box.php:735, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:468, ../includes/Elements/NFT_Gallery.php:710, ../includes/Elements/Pricing_Table.php:584, ../includes/Elements/Twitter_Feed.php:540, ../includes/Elements/Woo_Checkout.php:1459, ../includes/Elements/Woo_Checkout.php:1837 +#: ../includes/Elements/Adv_Tabs.php:106, ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:153, ../includes/Elements/Data_Table.php:758, ../includes/Elements/Feature_List.php:324, ../includes/Elements/Filterable_Gallery.php:969, ../includes/Elements/Flip_Box.php:739, ../includes/Elements/Info_Box.php:126, ../includes/Elements/Info_Box.php:473, ../includes/Elements/NFT_Gallery.php:710, ../includes/Elements/Pricing_Table.php:585, ../includes/Elements/Twitter_Feed.php:540, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1878 msgid "Icon Position" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:107, ../includes/Elements/Feature_List.php:312 +#: ../includes/Elements/Adv_Tabs.php:111, ../includes/Elements/Feature_List.php:316 msgid "Stacked" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:108, ../includes/Elements/Contact_Form_7.php:843, ../includes/Elements/Countdown.php:169, ../includes/Elements/Login_Register.php:4912, ../includes/Elements/Login_Register.php:5241 +#: ../includes/Elements/Adv_Tabs.php:112, ../includes/Elements/Contact_Form_7.php:843, ../includes/Elements/Countdown.php:173, ../includes/Elements/Login_Register.php:4912, ../includes/Elements/Login_Register.php:5241 msgid "Inline" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:119 +#: ../includes/Elements/Adv_Tabs.php:123 msgid "Icon Alignment" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:120 +#: ../includes/Elements/Adv_Tabs.php:124 msgid "Set icon position before/after the tab title." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1335, ../includes/Elements/Creative_Button.php:153, ../includes/Elements/Filterable_Gallery.php:970, ../includes/Elements/Flip_Box.php:740, ../includes/Elements/Info_Box.php:472, ../includes/Elements/NFT_Gallery.php:715, ../includes/Elements/Pricing_Table.php:588, ../includes/Elements/Twitter_Feed.php:545, ../includes/Elements/Woo_Checkout.php:630 +#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1335, ../includes/Elements/Creative_Button.php:157, ../includes/Elements/Filterable_Gallery.php:974, ../includes/Elements/Flip_Box.php:744, ../includes/Elements/Info_Box.php:477, ../includes/Elements/NFT_Gallery.php:715, ../includes/Elements/Pricing_Table.php:589, ../includes/Elements/Twitter_Feed.php:545, ../includes/Elements/Woo_Checkout.php:646 msgid "Before" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1336, ../includes/Elements/Creative_Button.php:154, ../includes/Elements/Filterable_Gallery.php:969, ../includes/Elements/Flip_Box.php:739, ../includes/Elements/Info_Box.php:473, ../includes/Elements/NFT_Gallery.php:714, ../includes/Elements/Pricing_Table.php:589, ../includes/Elements/Twitter_Feed.php:544, ../includes/Elements/Woo_Checkout.php:631 +#: ../includes/Elements/Adv_Tabs.php:133, ../includes/Elements/Betterdocs_Category_Grid.php:1336, ../includes/Elements/Creative_Button.php:158, ../includes/Elements/Filterable_Gallery.php:973, ../includes/Elements/Flip_Box.php:743, ../includes/Elements/Info_Box.php:478, ../includes/Elements/NFT_Gallery.php:714, ../includes/Elements/Pricing_Table.php:590, ../includes/Elements/Twitter_Feed.php:544, ../includes/Elements/Woo_Checkout.php:647 msgid "After" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:142 +#: ../includes/Elements/Adv_Tabs.php:146 msgid "Auto Active?" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:144 +#: ../includes/Elements/Adv_Tabs.php:148 msgid "Activate the first tab if no tab is selected as the active tab." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:160, ../includes/Elements/Adv_Tabs.php:981, ../includes/Elements/Business_Reviews.php:419, ../includes/Elements/Business_Reviews.php:455, ../includes/Elements/Business_Reviews.php:470, ../includes/Elements/Business_Reviews.php:485, ../includes/Elements/Business_Reviews.php:713, ../includes/Elements/Business_Reviews.php:770, ../includes/Elements/Business_Reviews.php:782, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:941, ../includes/Elements/Contact_Form_7.php:925, ../includes/Elements/Contact_Form_7.php:979, ../includes/Elements/Content_Ticker.php:197, ../includes/Elements/Content_Ticker.php:230, ../includes/Elements/Content_Ticker.php:245, ../includes/Elements/Content_Ticker.php:280, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1165, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:1030, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1117, ../includes/Elements/Facebook_Feed.php:468, ../includes/Elements/Filterable_Gallery.php:197, ../includes/Elements/Filterable_Gallery.php:596, ../includes/Elements/Filterable_Gallery.php:678, ../includes/Elements/Filterable_Gallery.php:706, ../includes/Elements/Filterable_Gallery.php:734, ../includes/Elements/Filterable_Gallery.php:804, ../includes/Elements/Filterable_Gallery.php:819, ../includes/Elements/Filterable_Gallery.php:1733, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:937, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1133, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:249, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1679, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:371, ../includes/Elements/Info_Box.php:385, ../includes/Elements/Interactive_Circle.php:163, ../includes/Elements/Login_Register.php:704, ../includes/Elements/Login_Register.php:737, ../includes/Elements/Login_Register.php:750, ../includes/Elements/Login_Register.php:959, ../includes/Elements/Login_Register.php:1610, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:988, ../includes/Elements/Post_Grid.php:136, ../includes/Elements/Post_Grid.php:150, ../includes/Elements/Post_Grid.php:176, ../includes/Elements/Post_Grid.php:190, ../includes/Elements/Post_Grid.php:216, ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Post_Timeline.php:87, ../includes/Elements/Post_Timeline.php:98, ../includes/Elements/Pricing_Table.php:244, ../includes/Elements/Pricing_Table.php:1967, ../includes/Elements/Simple_Menu.php:177, ../includes/Elements/Simple_Menu.php:218, ../includes/Elements/SVG_Draw.php:127, ../includes/Elements/SVG_Draw.php:295, ../includes/Elements/SVG_Draw.php:310, ../includes/Elements/Team_Member.php:740, ../includes/Elements/Twitter_Feed.php:100, ../includes/Elements/Twitter_Feed.php:192, ../includes/Elements/Woo_Cart.php:917, ../includes/Elements/Woo_Checkout.php:616, ../includes/Elements/Woo_Product_Carousel.php:352, ../includes/Elements/Woo_Product_Carousel.php:633, ../includes/Elements/Woo_Product_Carousel.php:665, ../includes/Elements/Woo_Product_Carousel.php:680, ../includes/Elements/Woo_Product_Carousel.php:715, ../includes/Elements/Woo_Product_Carousel.php:727, ../includes/Elements/Woo_Product_Carousel.php:738, ../includes/Elements/Woo_Product_Carousel.php:2254, ../includes/Elements/Woo_Product_Gallery.php:248, ../includes/Elements/Woo_Product_Gallery.php:277, ../includes/Elements/Woo_Product_Gallery.php:542, ../includes/Elements/Woo_Product_List.php:1471, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:946, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:272, ../includes/Extensions/Table_of_Content.php:287, ../includes/Extensions/Table_of_Content.php:302, ../includes/Extensions/Table_of_Content.php:317, ../includes/Extensions/Table_of_Content.php:332, ../includes/Extensions/Table_of_Content.php:364, ../includes/Traits/Controls.php:145, ../includes/Traits/Controls.php:202, ../includes/Traits/Controls.php:417, ../includes/Traits/Controls.php:778, ../includes/Traits/Controls.php:842, ../includes/Traits/Controls.php:994, ../includes/Traits/Controls.php:1143 +#: ../includes/Elements/Adv_Tabs.php:151, ../includes/Elements/Adv_Tabs.php:164, ../includes/Elements/Adv_Tabs.php:985, ../includes/Elements/Business_Reviews.php:433, ../includes/Elements/Business_Reviews.php:469, ../includes/Elements/Business_Reviews.php:484, ../includes/Elements/Business_Reviews.php:499, ../includes/Elements/Business_Reviews.php:727, ../includes/Elements/Business_Reviews.php:784, ../includes/Elements/Business_Reviews.php:796, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:941, ../includes/Elements/Contact_Form_7.php:925, ../includes/Elements/Contact_Form_7.php:979, ../includes/Elements/Content_Ticker.php:197, ../includes/Elements/Content_Ticker.php:230, ../includes/Elements/Content_Ticker.php:245, ../includes/Elements/Content_Ticker.php:280, ../includes/Elements/Data_Table.php:91, ../includes/Elements/Data_Table.php:1169, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:1030, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1117, ../includes/Elements/Facebook_Feed.php:468, ../includes/Elements/Filterable_Gallery.php:201, ../includes/Elements/Filterable_Gallery.php:600, ../includes/Elements/Filterable_Gallery.php:682, ../includes/Elements/Filterable_Gallery.php:710, ../includes/Elements/Filterable_Gallery.php:738, ../includes/Elements/Filterable_Gallery.php:808, ../includes/Elements/Filterable_Gallery.php:823, ../includes/Elements/Filterable_Gallery.php:1737, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:937, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1133, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:249, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1679, ../includes/Elements/Image_Accordion.php:180, ../includes/Elements/Info_Box.php:376, ../includes/Elements/Info_Box.php:390, ../includes/Elements/Interactive_Circle.php:167, ../includes/Elements/Interactive_Circle.php:209, ../includes/Elements/Login_Register.php:704, ../includes/Elements/Login_Register.php:737, ../includes/Elements/Login_Register.php:750, ../includes/Elements/Login_Register.php:959, ../includes/Elements/Login_Register.php:1610, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:988, ../includes/Elements/Post_Grid.php:136, ../includes/Elements/Post_Grid.php:150, ../includes/Elements/Post_Grid.php:176, ../includes/Elements/Post_Grid.php:190, ../includes/Elements/Post_Grid.php:216, ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Post_Timeline.php:87, ../includes/Elements/Post_Timeline.php:98, ../includes/Elements/Pricing_Table.php:248, ../includes/Elements/Pricing_Table.php:1968, ../includes/Elements/Simple_Menu.php:177, ../includes/Elements/Simple_Menu.php:218, ../includes/Elements/SVG_Draw.php:131, ../includes/Elements/SVG_Draw.php:299, ../includes/Elements/SVG_Draw.php:314, ../includes/Elements/Team_Member.php:759, ../includes/Elements/Twitter_Feed.php:100, ../includes/Elements/Twitter_Feed.php:192, ../includes/Elements/Woo_Cart.php:917, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Product_Carousel.php:372, ../includes/Elements/Woo_Product_Carousel.php:653, ../includes/Elements/Woo_Product_Carousel.php:685, ../includes/Elements/Woo_Product_Carousel.php:700, ../includes/Elements/Woo_Product_Carousel.php:735, ../includes/Elements/Woo_Product_Carousel.php:747, ../includes/Elements/Woo_Product_Carousel.php:758, ../includes/Elements/Woo_Product_Carousel.php:2297, ../includes/Elements/Woo_Product_Gallery.php:256, ../includes/Elements/Woo_Product_Gallery.php:285, ../includes/Elements/Woo_Product_Gallery.php:635, ../includes/Elements/Woo_Product_List.php:1617, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:950, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:272, ../includes/Extensions/Table_of_Content.php:287, ../includes/Extensions/Table_of_Content.php:302, ../includes/Extensions/Table_of_Content.php:317, ../includes/Extensions/Table_of_Content.php:332, ../includes/Extensions/Table_of_Content.php:364, ../includes/Traits/Controls.php:145, ../includes/Traits/Controls.php:202, ../includes/Traits/Controls.php:423, ../includes/Traits/Controls.php:871, ../includes/Traits/Controls.php:935, ../includes/Traits/Controls.php:1087, ../includes/Traits/Controls.php:1265 msgid "Yes" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:148, ../includes/Elements/Adv_Tabs.php:161, ../includes/Elements/Adv_Tabs.php:982, ../includes/Elements/Business_Reviews.php:420, ../includes/Elements/Business_Reviews.php:456, ../includes/Elements/Business_Reviews.php:471, ../includes/Elements/Business_Reviews.php:486, ../includes/Elements/Business_Reviews.php:714, ../includes/Elements/Business_Reviews.php:771, ../includes/Elements/Business_Reviews.php:783, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:942, ../includes/Elements/Contact_Form_7.php:926, ../includes/Elements/Contact_Form_7.php:980, ../includes/Elements/Content_Ticker.php:198, ../includes/Elements/Content_Ticker.php:231, ../includes/Elements/Content_Ticker.php:246, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Cta_Box.php:867, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1166, ../includes/Elements/Event_Calendar.php:642, ../includes/Elements/Event_Calendar.php:728, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1047, ../includes/Elements/Event_Calendar.php:1118, ../includes/Elements/Facebook_Feed.php:472, ../includes/Elements/Feature_List.php:414, ../includes/Elements/Filterable_Gallery.php:198, ../includes/Elements/Filterable_Gallery.php:597, ../includes/Elements/Filterable_Gallery.php:679, ../includes/Elements/Filterable_Gallery.php:707, ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:805, ../includes/Elements/Filterable_Gallery.php:820, ../includes/Elements/Filterable_Gallery.php:1734, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:938, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1134, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:250, ../includes/Elements/GravityForms.php:1484, ../includes/Elements/GravityForms.php:1680, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Info_Box.php:386, ../includes/Elements/Interactive_Circle.php:164, ../includes/Elements/Login_Register.php:705, ../includes/Elements/Login_Register.php:738, ../includes/Elements/Login_Register.php:751, ../includes/Elements/Login_Register.php:958, ../includes/Elements/Login_Register.php:1611, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:989, ../includes/Elements/Post_Grid.php:137, ../includes/Elements/Post_Grid.php:151, ../includes/Elements/Post_Grid.php:177, ../includes/Elements/Post_Grid.php:191, ../includes/Elements/Post_Grid.php:217, ../includes/Elements/Post_Grid.php:231, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Post_Timeline.php:99, ../includes/Elements/Pricing_Table.php:245, ../includes/Elements/Pricing_Table.php:1968, ../includes/Elements/Simple_Menu.php:178, ../includes/Elements/Simple_Menu.php:219, ../includes/Elements/SVG_Draw.php:128, ../includes/Elements/SVG_Draw.php:296, ../includes/Elements/SVG_Draw.php:311, ../includes/Elements/Team_Member.php:741, ../includes/Elements/Twitter_Feed.php:101, ../includes/Elements/Twitter_Feed.php:193, ../includes/Elements/Woo_Cart.php:918, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Product_Carousel.php:353, ../includes/Elements/Woo_Product_Carousel.php:634, ../includes/Elements/Woo_Product_Carousel.php:666, ../includes/Elements/Woo_Product_Carousel.php:681, ../includes/Elements/Woo_Product_Carousel.php:716, ../includes/Elements/Woo_Product_Carousel.php:728, ../includes/Elements/Woo_Product_Carousel.php:739, ../includes/Elements/Woo_Product_Carousel.php:2255, ../includes/Elements/Woo_Product_Gallery.php:249, ../includes/Elements/Woo_Product_Gallery.php:278, ../includes/Elements/Woo_Product_Gallery.php:543, ../includes/Elements/Woo_Product_List.php:1472, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:947, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:273, ../includes/Extensions/Table_of_Content.php:288, ../includes/Extensions/Table_of_Content.php:303, ../includes/Extensions/Table_of_Content.php:318, ../includes/Extensions/Table_of_Content.php:333, ../includes/Extensions/Table_of_Content.php:365, ../includes/Traits/Controls.php:146, ../includes/Traits/Controls.php:203, ../includes/Traits/Controls.php:418, ../includes/Traits/Controls.php:779, ../includes/Traits/Controls.php:843, ../includes/Traits/Controls.php:995, ../includes/Traits/Controls.php:1144 +#: ../includes/Elements/Adv_Tabs.php:152, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Adv_Tabs.php:986, ../includes/Elements/Business_Reviews.php:434, ../includes/Elements/Business_Reviews.php:470, ../includes/Elements/Business_Reviews.php:485, ../includes/Elements/Business_Reviews.php:500, ../includes/Elements/Business_Reviews.php:728, ../includes/Elements/Business_Reviews.php:785, ../includes/Elements/Business_Reviews.php:797, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:942, ../includes/Elements/Contact_Form_7.php:926, ../includes/Elements/Contact_Form_7.php:980, ../includes/Elements/Content_Ticker.php:198, ../includes/Elements/Content_Ticker.php:231, ../includes/Elements/Content_Ticker.php:246, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Cta_Box.php:871, ../includes/Elements/Data_Table.php:92, ../includes/Elements/Data_Table.php:1170, ../includes/Elements/Event_Calendar.php:642, ../includes/Elements/Event_Calendar.php:728, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1047, ../includes/Elements/Event_Calendar.php:1118, ../includes/Elements/Facebook_Feed.php:472, ../includes/Elements/Feature_List.php:418, ../includes/Elements/Filterable_Gallery.php:202, ../includes/Elements/Filterable_Gallery.php:601, ../includes/Elements/Filterable_Gallery.php:683, ../includes/Elements/Filterable_Gallery.php:711, ../includes/Elements/Filterable_Gallery.php:739, ../includes/Elements/Filterable_Gallery.php:809, ../includes/Elements/Filterable_Gallery.php:824, ../includes/Elements/Filterable_Gallery.php:1738, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:938, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1134, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:250, ../includes/Elements/GravityForms.php:1484, ../includes/Elements/GravityForms.php:1680, ../includes/Elements/Image_Accordion.php:181, ../includes/Elements/Info_Box.php:377, ../includes/Elements/Info_Box.php:391, ../includes/Elements/Interactive_Circle.php:168, ../includes/Elements/Interactive_Circle.php:210, ../includes/Elements/Login_Register.php:705, ../includes/Elements/Login_Register.php:738, ../includes/Elements/Login_Register.php:751, ../includes/Elements/Login_Register.php:958, ../includes/Elements/Login_Register.php:1611, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:989, ../includes/Elements/Post_Grid.php:137, ../includes/Elements/Post_Grid.php:151, ../includes/Elements/Post_Grid.php:177, ../includes/Elements/Post_Grid.php:191, ../includes/Elements/Post_Grid.php:217, ../includes/Elements/Post_Grid.php:231, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Post_Timeline.php:99, ../includes/Elements/Pricing_Table.php:249, ../includes/Elements/Pricing_Table.php:1969, ../includes/Elements/Simple_Menu.php:178, ../includes/Elements/Simple_Menu.php:219, ../includes/Elements/SVG_Draw.php:132, ../includes/Elements/SVG_Draw.php:300, ../includes/Elements/SVG_Draw.php:315, ../includes/Elements/Team_Member.php:760, ../includes/Elements/Twitter_Feed.php:101, ../includes/Elements/Twitter_Feed.php:193, ../includes/Elements/Woo_Cart.php:918, ../includes/Elements/Woo_Checkout.php:633, ../includes/Elements/Woo_Product_Carousel.php:373, ../includes/Elements/Woo_Product_Carousel.php:654, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Carousel.php:701, ../includes/Elements/Woo_Product_Carousel.php:736, ../includes/Elements/Woo_Product_Carousel.php:748, ../includes/Elements/Woo_Product_Carousel.php:759, ../includes/Elements/Woo_Product_Carousel.php:2298, ../includes/Elements/Woo_Product_Gallery.php:257, ../includes/Elements/Woo_Product_Gallery.php:286, ../includes/Elements/Woo_Product_Gallery.php:636, ../includes/Elements/Woo_Product_List.php:1618, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:951, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:273, ../includes/Extensions/Table_of_Content.php:288, ../includes/Extensions/Table_of_Content.php:303, ../includes/Extensions/Table_of_Content.php:318, ../includes/Extensions/Table_of_Content.php:333, ../includes/Extensions/Table_of_Content.php:365, ../includes/Traits/Controls.php:146, ../includes/Traits/Controls.php:203, ../includes/Traits/Controls.php:424, ../includes/Traits/Controls.php:872, ../includes/Traits/Controls.php:936, ../includes/Traits/Controls.php:1088, ../includes/Traits/Controls.php:1266 msgid "No" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:155 +#: ../includes/Elements/Adv_Tabs.php:159 msgid "Toggle Tab" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:157 +#: ../includes/Elements/Adv_Tabs.php:161 msgid "Enables tab to expand and collapse." msgstr "" -#: ../includes/Elements/Adv_Tabs.php:224, ../includes/Elements/Feature_List.php:74, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:441 +#: ../includes/Elements/Adv_Tabs.php:228, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:445 msgid "Icon Type" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:296, ../includes/Elements/Feature_List.php:271, ../includes/Elements/Product_Grid.php:547, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Woo_Product_Gallery.php:498 +#: ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Feature_List.php:275, ../includes/Elements/Product_Grid.php:602, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Woo_Product_Gallery.php:562 msgid "Title HTML Tag" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:373 +#: ../includes/Elements/Adv_Tabs.php:377 msgid "Tab Title 1" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:374 +#: ../includes/Elements/Adv_Tabs.php:378 msgid "Tab Title 2" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:375 +#: ../includes/Elements/Adv_Tabs.php:379 msgid "Tab Title 3" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:418, ../includes/Elements/Business_Reviews.php:92, ../includes/Elements/Event_Calendar.php:156, ../includes/Elements/Filterable_Gallery.php:1044, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:302, ../includes/Elements/Interactive_Circle.php:63, ../includes/Elements/Interactive_Circle.php:471, ../includes/Elements/Login_Register.php:314, ../includes/Elements/Login_Register.php:2545, ../includes/Elements/Progress_Bar.php:349, ../includes/Elements/Progress_Bar.php:618, ../includes/Elements/Simple_Menu.php:106, ../includes/Elements/SVG_Draw.php:73, ../includes/Elements/Woo_Cart.php:1224, ../includes/Elements/Woo_Product_List.php:226, ../includes/Elements/Woo_Product_List.php:588, ../includes/Traits/Admin.php:113 +#: ../includes/Elements/Adv_Tabs.php:422, ../includes/Elements/Business_Reviews.php:92, ../includes/Elements/Event_Calendar.php:156, ../includes/Elements/Filterable_Gallery.php:1048, ../includes/Elements/Image_Accordion.php:65, ../includes/Elements/Image_Accordion.php:306, ../includes/Elements/Interactive_Circle.php:67, ../includes/Elements/Interactive_Circle.php:513, ../includes/Elements/Login_Register.php:314, ../includes/Elements/Login_Register.php:2545, ../includes/Elements/Progress_Bar.php:353, ../includes/Elements/Progress_Bar.php:622, ../includes/Elements/Simple_Menu.php:106, ../includes/Elements/SVG_Draw.php:77, ../includes/Elements/Woo_Cart.php:1224, ../includes/Elements/Woo_Product_List.php:245, ../includes/Elements/Woo_Product_List.php:654, ../includes/Traits/Admin.php:64 msgid "General" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:496 +#: ../includes/Elements/Adv_Tabs.php:500 msgid "Title Min Width" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:735 +#: ../includes/Elements/Adv_Tabs.php:672, ../includes/Elements/Adv_Tabs.php:739 msgid "Tab Background Color" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:910, ../includes/Elements/Business_Reviews.php:2127, ../includes/Elements/Woo_Product_Carousel.php:2680, ../includes/Traits/Controls.php:1285 +#: ../includes/Elements/Adv_Tabs.php:914, ../includes/Elements/Business_Reviews.php:2141, ../includes/Elements/Woo_Product_Carousel.php:2723, ../includes/Traits/Controls.php:1407 msgid "Caret" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:917 +#: ../includes/Elements/Adv_Tabs.php:921 msgid "Show Caret on Active Tab" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:926 +#: ../includes/Elements/Adv_Tabs.php:930 msgid "Caret Size" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:971 +#: ../includes/Elements/Adv_Tabs.php:975 msgid "Responsive Controls" msgstr "" -#: ../includes/Elements/Adv_Tabs.php:979 +#: ../includes/Elements/Adv_Tabs.php:983 msgid "Vertical Layout" msgstr "" @@ -1326,23 +1173,23 @@ msgstr "" msgid "Box Column" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Interactive_Circle.php:94, ../includes/Elements/Interactive_Circle.php:126, ../includes/Elements/Twitter_Feed.php:381 +#: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Interactive_Circle.php:98, ../includes/Elements/Interactive_Circle.php:130, ../includes/Elements/Twitter_Feed.php:381 msgid "Show Icon" msgstr "" -#: ../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:1306, ../includes/Elements/Business_Reviews.php:513, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:563, ../includes/Elements/Business_Reviews.php:587, ../includes/Elements/Business_Reviews.php:613, ../includes/Elements/Business_Reviews.php:640, ../includes/Elements/Business_Reviews.php:661, ../includes/Elements/Business_Reviews.php:673, ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Business_Reviews.php:698, ../includes/Elements/Business_Reviews.php:734, ../includes/Elements/Business_Reviews.php:746, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:604, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Cta_Box.php:440, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:413, ../includes/Elements/Filterable_Gallery.php:324, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:559, ../includes/Elements/Pricing_Table.php:1715, ../includes/Elements/Product_Grid.php:329, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:811, ../includes/Elements/Product_Grid.php:1661, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Testimonial.php:279, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:467, ../includes/Elements/Woo_Product_Carousel.php:231, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:694, ../includes/Elements/Woo_Product_Carousel.php:753, ../includes/Elements/Woo_Product_Gallery.php:583, ../includes/Elements/Woo_Product_Gallery.php:1071, ../includes/Elements/Woo_Product_List.php:235, ../includes/Elements/Woo_Product_List.php:253, ../includes/Elements/Woo_Product_List.php:262, ../includes/Elements/Woo_Product_List.php:271, ../includes/Elements/Woo_Product_List.php:280, ../includes/Elements/Woo_Product_List.php:298, ../includes/Elements/Woo_Product_List.php:307, ../includes/Elements/Woo_Product_List.php:316, ../includes/Elements/Woo_Product_List.php:334, ../includes/Elements/Woo_Product_List.php:346, ../includes/Elements/Woo_Product_List.php:358, ../includes/Elements/Woo_Product_List.php:367, ../includes/Elements/Woo_Product_List.php:376, ../includes/Elements/Woo_Product_List.php:874, ../includes/Elements/Woo_Product_List.php:926, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Traits/Controls.php:620, ../includes/Traits/Controls.php:723, ../includes/Traits/Controls.php:753, ../includes/Traits/Controls.php:1036, ../includes/Traits/Controls.php:1066, ../includes/Traits/Controls.php:1115, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1230, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1365, ../includes/Traits/Controls.php:1498, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1547, ../includes/Traits/Controls.php:1563, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1613, ../includes/Traits/Controls.php:1629, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1664, ../includes/Traits/Controls.php:1680 +#: ../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:1306, ../includes/Elements/Business_Reviews.php:527, ../includes/Elements/Business_Reviews.php:542, ../includes/Elements/Business_Reviews.php:577, ../includes/Elements/Business_Reviews.php:601, ../includes/Elements/Business_Reviews.php:627, ../includes/Elements/Business_Reviews.php:654, ../includes/Elements/Business_Reviews.php:675, ../includes/Elements/Business_Reviews.php:687, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:712, ../includes/Elements/Business_Reviews.php:748, ../includes/Elements/Business_Reviews.php:760, ../includes/Elements/Caldera_Forms.php:155, ../includes/Elements/Caldera_Forms.php:168, ../includes/Elements/Caldera_Forms.php:194, ../includes/Elements/Contact_Form_7.php:208, ../includes/Elements/Contact_Form_7.php:234, ../includes/Elements/Contact_Form_7.php:254, ../includes/Elements/Content_Ticker.php:258, ../includes/Elements/Countdown.php:608, ../includes/Elements/Creative_Button.php:262, ../includes/Elements/Cta_Box.php:251, ../includes/Elements/Cta_Box.php:444, ../includes/Elements/Dual_Color_Header.php:100, ../includes/Elements/Dual_Color_Header.php:110, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1133, ../includes/Elements/Event_Calendar.php:1257, ../includes/Elements/Facebook_Feed.php:386, ../includes/Elements/Facebook_Feed.php:398, ../includes/Elements/Facebook_Feed.php:413, ../includes/Elements/Facebook_Feed.php:428, ../includes/Elements/Facebook_Feed.php:443, ../includes/Elements/Facebook_Feed.php:512, ../includes/Elements/Feature_List.php:417, ../includes/Elements/Filterable_Gallery.php:328, ../includes/Elements/FluentForm.php:197, ../includes/Elements/FluentForm.php:209, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:1763, ../includes/Elements/FluentForm.php:1832, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:250, ../includes/Elements/Formstack.php:276, ../includes/Elements/Formstack.php:289, ../includes/Elements/Formstack.php:1627, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:225, ../includes/Elements/GravityForms.php:237, ../includes/Elements/GravityForms.php:275, ../includes/Elements/GravityForms.php:295, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:494, ../includes/Elements/Login_Register.php:941, ../includes/Elements/Login_Register.php:1257, ../includes/Elements/Login_Register.php:2126, ../includes/Elements/NFT_Gallery.php:295, ../includes/Elements/NFT_Gallery.php:307, ../includes/Elements/NFT_Gallery.php:350, ../includes/Elements/NFT_Gallery.php:362, ../includes/Elements/NFT_Gallery.php:374, ../includes/Elements/NFT_Gallery.php:409, ../includes/Elements/NFT_Gallery.php:444, ../includes/Elements/NFT_Gallery.php:479, ../includes/Elements/NFT_Gallery.php:509, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:176, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:215, ../includes/Elements/NinjaForms.php:235, ../includes/Elements/Post_Timeline.php:123, ../includes/Elements/Pricing_Table.php:563, ../includes/Elements/Pricing_Table.php:1716, ../includes/Elements/Product_Grid.php:384, ../includes/Elements/Product_Grid.php:770, ../includes/Elements/Product_Grid.php:1773, ../includes/Elements/Product_Grid.php:2443, ../includes/Elements/Testimonial.php:307, ../includes/Elements/Twitter_Feed.php:672, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:482, ../includes/Elements/Woo_Cart.php:552, ../includes/Elements/Woo_Cart.php:564, ../includes/Elements/Woo_Cart.php:638, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Cart.php:793, ../includes/Elements/Woo_Cart.php:941, ../includes/Elements/Woo_Cart.php:969, ../includes/Elements/Woo_Cart.php:996, ../includes/Elements/Woo_Cart.php:1039, ../includes/Elements/Woo_Cart.php:1086, ../includes/Elements/Woo_Cart.php:1099, ../includes/Elements/Woo_Cart.php:1114, ../includes/Elements/Woo_Cart.php:1129, ../includes/Elements/Woo_Cart.php:1144, ../includes/Elements/Woo_Cart.php:1159, ../includes/Elements/Woo_Cart.php:1174, ../includes/Elements/Woo_Checkout.php:483, ../includes/Elements/Woo_Product_Carousel.php:251, ../includes/Elements/Woo_Product_Carousel.php:263, ../includes/Elements/Woo_Product_Carousel.php:714, ../includes/Elements/Woo_Product_Carousel.php:773, ../includes/Elements/Woo_Product_Gallery.php:1194, ../includes/Elements/Woo_Product_List.php:302, ../includes/Elements/Woo_Product_List.php:311, ../includes/Elements/Woo_Product_List.php:320, ../includes/Elements/Woo_Product_List.php:329, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:356, ../includes/Elements/Woo_Product_List.php:365, ../includes/Elements/Woo_Product_List.php:383, ../includes/Elements/Woo_Product_List.php:395, ../includes/Elements/Woo_Product_List.php:407, ../includes/Elements/Woo_Product_List.php:416, ../includes/Elements/Woo_Product_List.php:425, ../includes/Elements/Woo_Product_List.php:991, ../includes/Elements/Woo_Product_List.php:1043, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:183, ../includes/Elements/WpForms.php:196, ../includes/Elements/WpForms.php:219, ../includes/Extensions/Table_of_Content.php:570, ../includes/Traits/Controls.php:663, ../includes/Traits/Controls.php:846, ../includes/Traits/Controls.php:1129, ../includes/Traits/Controls.php:1159, ../includes/Traits/Controls.php:1237, ../includes/Traits/Controls.php:1282, ../includes/Traits/Controls.php:1352, ../includes/Traits/Controls.php:1446, ../includes/Traits/Controls.php:1517, ../includes/Traits/Controls.php:1631, ../includes/Traits/Controls.php:1651, ../includes/Traits/Controls.php:1680, ../includes/Traits/Controls.php:1696, ../includes/Traits/Controls.php:1713, ../includes/Traits/Controls.php:1729, ../includes/Traits/Controls.php:1745, ../includes/Traits/Controls.php:1764, ../includes/Traits/Controls.php:1780, ../includes/Traits/Controls.php:1796 msgid "Show" msgstr "" -#: ../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:1307, ../includes/Elements/Business_Reviews.php:514, ../includes/Elements/Business_Reviews.php:529, ../includes/Elements/Business_Reviews.php:564, ../includes/Elements/Business_Reviews.php:588, ../includes/Elements/Business_Reviews.php:614, ../includes/Elements/Business_Reviews.php:641, ../includes/Elements/Business_Reviews.php:662, ../includes/Elements/Business_Reviews.php:674, ../includes/Elements/Business_Reviews.php:686, ../includes/Elements/Business_Reviews.php:699, ../includes/Elements/Business_Reviews.php:735, ../includes/Elements/Business_Reviews.php:747, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:605, ../includes/Elements/Creative_Button.php:259, ../includes/Elements/Cta_Box.php:248, ../includes/Elements/Cta_Box.php:441, ../includes/Elements/Dual_Color_Header.php:97, ../includes/Elements/Dual_Color_Header.php:107, ../includes/Elements/Event_Calendar.php:947, ../includes/Elements/Event_Calendar.php:1004, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1134, ../includes/Elements/Event_Calendar.php:1258, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:325, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:560, ../includes/Elements/Pricing_Table.php:1716, ../includes/Elements/Product_Grid.php:330, ../includes/Elements/Product_Grid.php:687, ../includes/Elements/Product_Grid.php:812, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Testimonial.php:280, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:362, ../includes/Elements/Woo_Checkout.php:468, ../includes/Elements/Woo_Product_Carousel.php:232, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:695, ../includes/Elements/Woo_Product_Carousel.php:754, ../includes/Elements/Woo_Product_Gallery.php:584, ../includes/Elements/Woo_Product_Gallery.php:1072, ../includes/Elements/Woo_Product_List.php:236, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:263, ../includes/Elements/Woo_Product_List.php:272, ../includes/Elements/Woo_Product_List.php:281, ../includes/Elements/Woo_Product_List.php:299, ../includes/Elements/Woo_Product_List.php:308, ../includes/Elements/Woo_Product_List.php:317, ../includes/Elements/Woo_Product_List.php:335, ../includes/Elements/Woo_Product_List.php:347, ../includes/Elements/Woo_Product_List.php:359, ../includes/Elements/Woo_Product_List.php:368, ../includes/Elements/Woo_Product_List.php:377, ../includes/Elements/Woo_Product_List.php:875, ../includes/Elements/Woo_Product_List.php:927, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Traits/Controls.php:621, ../includes/Traits/Controls.php:724, ../includes/Traits/Controls.php:754, ../includes/Traits/Controls.php:1037, ../includes/Traits/Controls.php:1067, ../includes/Traits/Controls.php:1116, ../includes/Traits/Controls.php:1161, ../includes/Traits/Controls.php:1231, ../includes/Traits/Controls.php:1325, ../includes/Traits/Controls.php:1366, ../includes/Traits/Controls.php:1499, ../includes/Traits/Controls.php:1519, ../includes/Traits/Controls.php:1548, ../includes/Traits/Controls.php:1564, ../includes/Traits/Controls.php:1581, ../includes/Traits/Controls.php:1614, ../includes/Traits/Controls.php:1630, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1665, ../includes/Traits/Controls.php:1681 +#: ../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:1307, ../includes/Elements/Business_Reviews.php:528, ../includes/Elements/Business_Reviews.php:543, ../includes/Elements/Business_Reviews.php:578, ../includes/Elements/Business_Reviews.php:602, ../includes/Elements/Business_Reviews.php:628, ../includes/Elements/Business_Reviews.php:655, ../includes/Elements/Business_Reviews.php:676, ../includes/Elements/Business_Reviews.php:688, ../includes/Elements/Business_Reviews.php:700, ../includes/Elements/Business_Reviews.php:713, ../includes/Elements/Business_Reviews.php:749, ../includes/Elements/Business_Reviews.php:761, ../includes/Elements/Caldera_Forms.php:156, ../includes/Elements/Caldera_Forms.php:169, ../includes/Elements/Caldera_Forms.php:195, ../includes/Elements/Contact_Form_7.php:209, ../includes/Elements/Contact_Form_7.php:235, ../includes/Elements/Contact_Form_7.php:255, ../includes/Elements/Content_Ticker.php:259, ../includes/Elements/Countdown.php:609, ../includes/Elements/Creative_Button.php:263, ../includes/Elements/Cta_Box.php:252, ../includes/Elements/Cta_Box.php:445, ../includes/Elements/Dual_Color_Header.php:101, ../includes/Elements/Dual_Color_Header.php:111, ../includes/Elements/Event_Calendar.php:947, ../includes/Elements/Event_Calendar.php:1004, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1134, ../includes/Elements/Event_Calendar.php:1258, ../includes/Elements/Facebook_Feed.php:387, ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Facebook_Feed.php:414, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:513, ../includes/Elements/Filterable_Gallery.php:329, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:210, ../includes/Elements/FluentForm.php:236, ../includes/Elements/FluentForm.php:1764, ../includes/Elements/FluentForm.php:1833, ../includes/Elements/Formstack.php:239, ../includes/Elements/Formstack.php:251, ../includes/Elements/Formstack.php:277, ../includes/Elements/Formstack.php:290, ../includes/Elements/Formstack.php:1628, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:276, ../includes/Elements/GravityForms.php:296, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:493, ../includes/Elements/Login_Register.php:836, ../includes/Elements/Login_Register.php:940, ../includes/Elements/Login_Register.php:1023, ../includes/Elements/Login_Register.php:1154, ../includes/Elements/Login_Register.php:1256, ../includes/Elements/Login_Register.php:2125, ../includes/Elements/NFT_Gallery.php:296, ../includes/Elements/NFT_Gallery.php:308, ../includes/Elements/NFT_Gallery.php:351, ../includes/Elements/NFT_Gallery.php:363, ../includes/Elements/NFT_Gallery.php:375, ../includes/Elements/NFT_Gallery.php:410, ../includes/Elements/NFT_Gallery.php:445, ../includes/Elements/NFT_Gallery.php:480, ../includes/Elements/NFT_Gallery.php:510, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:177, ../includes/Elements/NinjaForms.php:190, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:236, ../includes/Elements/Post_Timeline.php:124, ../includes/Elements/Pricing_Table.php:564, ../includes/Elements/Pricing_Table.php:1717, ../includes/Elements/Product_Grid.php:385, ../includes/Elements/Product_Grid.php:771, ../includes/Elements/Product_Grid.php:1774, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Testimonial.php:308, ../includes/Elements/Twitter_Feed.php:673, ../includes/Elements/Woo_Cart.php:432, ../includes/Elements/Woo_Cart.php:483, ../includes/Elements/Woo_Cart.php:553, ../includes/Elements/Woo_Cart.php:565, ../includes/Elements/Woo_Cart.php:639, ../includes/Elements/Woo_Cart.php:720, ../includes/Elements/Woo_Cart.php:794, ../includes/Elements/Woo_Cart.php:942, ../includes/Elements/Woo_Cart.php:970, ../includes/Elements/Woo_Cart.php:997, ../includes/Elements/Woo_Cart.php:1040, ../includes/Elements/Woo_Cart.php:1087, ../includes/Elements/Woo_Cart.php:1100, ../includes/Elements/Woo_Cart.php:1115, ../includes/Elements/Woo_Cart.php:1130, ../includes/Elements/Woo_Cart.php:1145, ../includes/Elements/Woo_Cart.php:1160, ../includes/Elements/Woo_Cart.php:1175, ../includes/Elements/Woo_Checkout.php:378, ../includes/Elements/Woo_Checkout.php:484, ../includes/Elements/Woo_Product_Carousel.php:252, ../includes/Elements/Woo_Product_Carousel.php:264, ../includes/Elements/Woo_Product_Carousel.php:715, ../includes/Elements/Woo_Product_Carousel.php:774, ../includes/Elements/Woo_Product_Gallery.php:1195, ../includes/Elements/Woo_Product_List.php:303, ../includes/Elements/Woo_Product_List.php:312, ../includes/Elements/Woo_Product_List.php:321, ../includes/Elements/Woo_Product_List.php:330, ../includes/Elements/Woo_Product_List.php:348, ../includes/Elements/Woo_Product_List.php:357, ../includes/Elements/Woo_Product_List.php:366, ../includes/Elements/Woo_Product_List.php:384, ../includes/Elements/Woo_Product_List.php:396, ../includes/Elements/Woo_Product_List.php:408, ../includes/Elements/Woo_Product_List.php:417, ../includes/Elements/Woo_Product_List.php:426, ../includes/Elements/Woo_Product_List.php:992, ../includes/Elements/Woo_Product_List.php:1044, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:184, ../includes/Elements/WpForms.php:197, ../includes/Elements/WpForms.php:220, ../includes/Extensions/Table_of_Content.php:571, ../includes/Traits/Controls.php:664, ../includes/Traits/Controls.php:847, ../includes/Traits/Controls.php:1130, ../includes/Traits/Controls.php:1160, ../includes/Traits/Controls.php:1238, ../includes/Traits/Controls.php:1283, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1518, ../includes/Traits/Controls.php:1632, ../includes/Traits/Controls.php:1652, ../includes/Traits/Controls.php:1681, ../includes/Traits/Controls.php:1697, ../includes/Traits/Controls.php:1714, ../includes/Traits/Controls.php:1730, ../includes/Traits/Controls.php:1746, ../includes/Traits/Controls.php:1765, ../includes/Traits/Controls.php:1781, ../includes/Traits/Controls.php:1797 msgid "Hide" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Elements/Woo_Product_Carousel.php:229, ../includes/Traits/Controls.php:1064 +#: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Elements/Woo_Product_Carousel.php:249, ../includes/Traits/Controls.php:1157 msgid "Show Title" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:314, ../includes/Elements/Image_Accordion.php:152 +#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:318, ../includes/Elements/Image_Accordion.php:156 msgid "Select Tag" msgstr "" @@ -1350,7 +1197,7 @@ msgstr "" msgid "Show Count" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:281 +#: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:285 msgid "Prefix" msgstr "" @@ -1362,7 +1209,7 @@ msgstr "" msgid "articles" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:253, ../includes/Elements/Flip_Box.php:673 +#: ../includes/Elements/Betterdocs_Category_Box.php:253, ../includes/Elements/Flip_Box.php:677 msgid "Box" msgstr "" @@ -1374,7 +1221,7 @@ msgstr "" msgid "Box Padding" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:339, ../includes/Elements/Betterdocs_Category_Box.php:592, ../includes/Elements/Betterdocs_Category_Box.php:731, ../includes/Elements/Betterdocs_Category_Box.php:1030, ../includes/Elements/Betterdocs_Category_Grid.php:881, ../includes/Elements/Betterdocs_Category_Grid.php:1441, ../includes/Elements/Betterdocs_Search_Form.php:491, ../includes/Elements/Filterable_Gallery.php:2217, ../includes/Elements/Info_Box.php:1499 +#: ../includes/Elements/Betterdocs_Category_Box.php:339, ../includes/Elements/Betterdocs_Category_Box.php:592, ../includes/Elements/Betterdocs_Category_Box.php:731, ../includes/Elements/Betterdocs_Category_Box.php:1030, ../includes/Elements/Betterdocs_Category_Grid.php:881, ../includes/Elements/Betterdocs_Category_Grid.php:1441, ../includes/Elements/Betterdocs_Search_Form.php:491, ../includes/Elements/Filterable_Gallery.php:2221, ../includes/Elements/Info_Box.php:1504 msgid "Transition" msgstr "" @@ -1382,11 +1229,11 @@ msgstr "" msgid "Area" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:426, ../includes/Elements/Betterdocs_Category_Box.php:461, ../includes/Elements/Betterdocs_Category_Box.php:818, ../includes/Elements/Betterdocs_Category_Box.php:925, ../includes/Elements/Betterdocs_Category_Grid.php:542, ../includes/Elements/Betterdocs_Category_Grid.php:780, ../includes/Elements/Betterdocs_Category_Grid.php:1100, ../includes/Elements/Betterdocs_Category_Grid.php:1253, ../includes/Elements/Betterdocs_Search_Form.php:260, ../includes/Elements/Business_Reviews.php:2362, ../includes/Elements/Caldera_Forms.php:950, ../includes/Elements/Contact_Form_7.php:988, ../includes/Elements/Cta_Box.php:225, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:933, ../includes/Elements/FluentForm.php:946, ../includes/Elements/Formstack.php:1142, ../includes/Elements/Formstack.php:1295, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/Login_Register.php:3955, ../includes/Elements/Login_Register.php:5145, ../includes/Elements/NFT_Gallery.php:678, ../includes/Elements/NinjaForms.php:997, ../includes/Elements/Post_Timeline.php:463, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:508, ../includes/Elements/Woo_Product_Carousel.php:2307, ../includes/Elements/WpForms.php:955, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437 +#: ../includes/Elements/Betterdocs_Category_Box.php:426, ../includes/Elements/Betterdocs_Category_Box.php:461, ../includes/Elements/Betterdocs_Category_Box.php:818, ../includes/Elements/Betterdocs_Category_Box.php:925, ../includes/Elements/Betterdocs_Category_Grid.php:542, ../includes/Elements/Betterdocs_Category_Grid.php:780, ../includes/Elements/Betterdocs_Category_Grid.php:1100, ../includes/Elements/Betterdocs_Category_Grid.php:1253, ../includes/Elements/Betterdocs_Search_Form.php:260, ../includes/Elements/Business_Reviews.php:2376, ../includes/Elements/Caldera_Forms.php:950, ../includes/Elements/Contact_Form_7.php:988, ../includes/Elements/Cta_Box.php:229, ../includes/Elements/Feature_List.php:644, ../includes/Elements/Filterable_Gallery.php:937, ../includes/Elements/FluentForm.php:946, ../includes/Elements/Formstack.php:1142, ../includes/Elements/Formstack.php:1295, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/Login_Register.php:3955, ../includes/Elements/Login_Register.php:5145, ../includes/Elements/NFT_Gallery.php:678, ../includes/Elements/NinjaForms.php:997, ../includes/Elements/Post_Timeline.php:465, ../includes/Elements/Progress_Bar.php:656, ../includes/Elements/Twitter_Feed.php:508, ../includes/Elements/Woo_Product_Carousel.php:2350, ../includes/Elements/WpForms.php:959, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437 msgid "Size" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2381, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:741, ../includes/Elements/Filterable_Gallery.php:2724, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:901, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2389, ../includes/Elements/Woo_Product_Carousel.php:2330, ../includes/Elements/WpForms.php:772, ../includes/Elements/WpForms.php:880, ../includes/Traits/Controls.php:1740 +#: ../includes/Elements/Betterdocs_Category_Box.php:530, ../includes/Elements/Betterdocs_Category_Box.php:698, ../includes/Elements/Betterdocs_Category_Box.php:945, ../includes/Elements/Betterdocs_Category_Grid.php:1119, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Business_Reviews.php:2395, ../includes/Elements/Caldera_Forms.php:758, ../includes/Elements/Caldera_Forms.php:875, ../includes/Elements/Contact_Form_7.php:585, ../includes/Elements/Contact_Form_7.php:872, ../includes/Elements/Contact_Form_7.php:1506, ../includes/Elements/Feature_List.php:745, ../includes/Elements/Filterable_Gallery.php:2728, ../includes/Elements/FluentForm.php:807, ../includes/Elements/FluentForm.php:1806, ../includes/Elements/Formstack.php:610, ../includes/Elements/Formstack.php:1006, ../includes/Elements/GravityForms.php:954, ../includes/Elements/GravityForms.php:1231, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3821, ../includes/Elements/Login_Register.php:4866, ../includes/Elements/Login_Register.php:5194, ../includes/Elements/NinjaForms.php:802, ../includes/Elements/NinjaForms.php:919, ../includes/Elements/NinjaForms.php:1596, ../includes/Elements/Post_Grid.php:914, ../includes/Elements/Post_Timeline.php:224, ../includes/Elements/Woo_Checkout.php:2430, ../includes/Elements/Woo_Product_Carousel.php:2373, ../includes/Elements/WpForms.php:776, ../includes/Elements/WpForms.php:884, ../includes/Traits/Controls.php:1873 msgid "Spacing" msgstr "" @@ -1394,11 +1241,11 @@ msgstr "" msgid "Area Size" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:802, ../includes/Elements/Betterdocs_Category_Box.php:838, ../includes/Elements/Betterdocs_Category_Grid.php:760, ../includes/Elements/Betterdocs_Search_Form.php:455, ../includes/Elements/Betterdocs_Search_Form.php:553, ../includes/Elements/Woo_Product_List.php:460, ../includes/Elements/Woo_Product_List.php:2454, ../includes/Elements/Woo_Product_List.php:2490 +#: ../includes/Elements/Betterdocs_Category_Box.php:802, ../includes/Elements/Betterdocs_Category_Box.php:838, ../includes/Elements/Betterdocs_Category_Grid.php:760, ../includes/Elements/Betterdocs_Search_Form.php:455, ../includes/Elements/Betterdocs_Search_Form.php:553, ../includes/Elements/Woo_Product_List.php:526, ../includes/Elements/Woo_Product_List.php:2600, ../includes/Elements/Woo_Product_List.php:2636 msgid "Count" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:87, ../includes/Elements/Betterdocs_Category_Grid.php:90, ../includes/Elements/Betterdocs_Search_Form.php:83, ../includes/Elements/Better_Payment.php:44, ../includes/Elements/Caldera_Forms.php:67, ../includes/Elements/Career_Page.php:49, ../includes/Elements/Contact_Form_7.php:109, ../includes/Elements/EmbedPress.php:54, ../includes/Elements/FluentForm.php:107, ../includes/Elements/Formstack.php:75, ../includes/Elements/Formstack.php:96, ../includes/Elements/Formstack.php:117, ../includes/Elements/GravityForms.php:107, ../includes/Elements/NinjaForms.php:72, ../includes/Elements/TypeForm.php:98, ../includes/Elements/WeForms.php:70, ../includes/Elements/Woo_Cart.php:112, ../includes/Elements/Woo_Checkout.php:97, ../includes/Elements/Woo_Product_Carousel.php:190, ../includes/Elements/Woo_Product_Gallery.php:95, ../includes/Elements/Woo_Product_List.php:192, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:131 +#: ../includes/Elements/Betterdocs_Category_Box.php:87, ../includes/Elements/Betterdocs_Category_Grid.php:90, ../includes/Elements/Betterdocs_Search_Form.php:83, ../includes/Elements/Better_Payment.php:44, ../includes/Elements/Caldera_Forms.php:67, ../includes/Elements/Career_Page.php:49, ../includes/Elements/Contact_Form_7.php:109, ../includes/Elements/EmbedPress.php:54, ../includes/Elements/FluentForm.php:107, ../includes/Elements/Formstack.php:75, ../includes/Elements/Formstack.php:96, ../includes/Elements/Formstack.php:117, ../includes/Elements/GravityForms.php:107, ../includes/Elements/NinjaForms.php:72, ../includes/Elements/TypeForm.php:98, ../includes/Elements/WeForms.php:70, ../includes/Elements/Woo_Cart.php:112, ../includes/Elements/Woo_Checkout.php:97, ../includes/Elements/Woo_Product_Carousel.php:191, ../includes/Elements/Woo_Product_Gallery.php:95, ../includes/Elements/Woo_Product_List.php:192, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:131 msgid "Warning!" msgstr "" @@ -1410,7 +1257,7 @@ msgstr "" msgid "File Not Found" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Box.php:1188, ../includes/Elements/Betterdocs_Category_Box.php:1153, ../includes/Elements/Betterdocs_Category_Grid.php:1690, ../includes/Elements/Betterdocs_Category_Grid.php:1657, ../includes/Elements/Post_Grid.php:1100, ../includes/Elements/Post_Timeline.php:788, ../includes/Elements/Product_Grid.php:3289, ../includes/Traits/Ajax_Handler.php:264 +#: ../includes/Elements/Betterdocs_Category_Box.php:1188, ../includes/Elements/Betterdocs_Category_Box.php:1153, ../includes/Elements/Betterdocs_Category_Grid.php:1690, ../includes/Elements/Betterdocs_Category_Grid.php:1657, ../includes/Elements/Post_Grid.php:1113, ../includes/Elements/Post_Timeline.php:790, ../includes/Elements/Product_Grid.php:3430, ../includes/Traits/Ajax_Handler.php:265 msgid "

No posts found!

" msgstr "" @@ -1418,7 +1265,7 @@ msgstr "" msgid "Layout Mode" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:307, ../includes/Elements/Business_Reviews.php:205, ../includes/Elements/Filterable_Gallery.php:154, ../includes/Elements/NFT_Gallery.php:245, ../includes/Elements/Product_Grid.php:237, ../includes/Elements/Woo_Product_Gallery.php:320, ../includes/Traits/Controls.php:593 +#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:307, ../includes/Elements/Business_Reviews.php:205, ../includes/Elements/Filterable_Gallery.php:158, ../includes/Elements/NFT_Gallery.php:245, ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Traits/Controls.php:636 msgid "Grid" msgstr "" @@ -1426,7 +1273,7 @@ msgstr "" msgid "Fit to Screen" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:155, ../includes/Elements/Product_Grid.php:239, ../includes/Elements/Twitter_Feed.php:244, ../includes/Elements/Woo_Product_Gallery.php:321, ../includes/Traits/Controls.php:594 +#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:159, ../includes/Elements/Product_Grid.php:242, ../includes/Elements/Twitter_Feed.php:244, ../includes/Elements/Woo_Product_Gallery.php:329, ../includes/Traits/Controls.php:637 msgid "Masonry" msgstr "" @@ -1446,7 +1293,7 @@ msgstr "" msgid "Show Button" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Filterable_Gallery.php:901, ../includes/Elements/Flip_Box.php:705, ../includes/Elements/Info_Box.php:415, ../includes/Elements/Login_Register.php:974, ../includes/Elements/Login_Register.php:1105, ../includes/Elements/Login_Register.php:1269, ../includes/Elements/Login_Register.php:2140, ../includes/Elements/NFT_Gallery.php:646, ../includes/Elements/Pricing_Table.php:622, ../includes/Elements/Twitter_Feed.php:476, ../includes/Elements/Woo_Cart.php:952, ../includes/Elements/Woo_Cart.php:980, ../includes/Elements/Woo_Cart.php:1008, ../includes/Elements/Woo_Cart.php:1051, ../includes/Elements/Woo_Checkout.php:437, ../includes/Elements/Woo_Product_List.php:1056, ../includes/Elements/Woo_Product_List.php:1108, ../includes/Traits/Controls.php:1334 +#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:84, ../includes/Elements/Filterable_Gallery.php:905, ../includes/Elements/Flip_Box.php:709, ../includes/Elements/Info_Box.php:420, ../includes/Elements/Login_Register.php:974, ../includes/Elements/Login_Register.php:1105, ../includes/Elements/Login_Register.php:1269, ../includes/Elements/Login_Register.php:2140, ../includes/Elements/NFT_Gallery.php:646, ../includes/Elements/Pricing_Table.php:623, ../includes/Elements/Twitter_Feed.php:476, ../includes/Elements/Woo_Cart.php:952, ../includes/Elements/Woo_Cart.php:980, ../includes/Elements/Woo_Cart.php:1008, ../includes/Elements/Woo_Cart.php:1051, ../includes/Elements/Woo_Checkout.php:453, ../includes/Elements/Woo_Product_List.php:1202, ../includes/Elements/Woo_Product_List.php:1254, ../includes/Traits/Controls.php:1456 msgid "Button Text" msgstr "" @@ -1466,11 +1313,11 @@ msgstr "" msgid "Ticker Background" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:982, ../includes/Elements/Betterdocs_Category_Grid.php:993, ../includes/Elements/Event_Calendar.php:568, ../includes/Elements/Feature_List.php:433, ../includes/Elements/NFT_Gallery.php:246, ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Twitter_Feed.php:243, ../includes/Extensions/Table_of_Content.php:943 +#: ../includes/Elements/Betterdocs_Category_Grid.php:982, ../includes/Elements/Betterdocs_Category_Grid.php:993, ../includes/Elements/Event_Calendar.php:568, ../includes/Elements/Feature_List.php:437, ../includes/Elements/NFT_Gallery.php:246, ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Twitter_Feed.php:243, ../includes/Extensions/Table_of_Content.php:1028 msgid "List" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:1020, ../includes/Elements/Filterable_Gallery.php:1452, ../includes/Elements/Filterable_Gallery.php:1909, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Login_Register.php:4571, ../includes/Elements/Pricing_Table.php:1862, ../includes/Elements/Product_Grid.php:3012, ../includes/Elements/Twitter_Feed.php:1046, ../includes/Elements/Woo_Product_Carousel.php:2045, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/Woo_Product_List.php:3120 +#: ../includes/Elements/Betterdocs_Category_Grid.php:1020, ../includes/Elements/Filterable_Gallery.php:1456, ../includes/Elements/Filterable_Gallery.php:1913, ../includes/Elements/Filterable_Gallery.php:2683, ../includes/Elements/Login_Register.php:4571, ../includes/Elements/Pricing_Table.php:1863, ../includes/Elements/Product_Grid.php:3153, ../includes/Elements/Twitter_Feed.php:1046, ../includes/Elements/Woo_Product_Carousel.php:2088, ../includes/Elements/Woo_Product_Gallery.php:2436, ../includes/Elements/Woo_Product_List.php:3266 msgid "Hover Color" msgstr "" @@ -1498,7 +1345,7 @@ msgstr "" msgid "Area Spacing" msgstr "" -#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Pricing_Table.php:892, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2173 +#: ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Pricing_Table.php:893, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:2306 msgid "Button Alignment" msgstr "" @@ -1522,7 +1369,7 @@ msgstr "" msgid "Field Padding" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:231, ../includes/Elements/Facebook_Feed.php:601, ../includes/Elements/Post_Grid.php:393, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1526, ../includes/Elements/Simple_Menu.php:691, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Woo_Product_Carousel.php:2517 +#: ../includes/Elements/Betterdocs_Search_Form.php:231, ../includes/Elements/Facebook_Feed.php:601, ../includes/Elements/Post_Grid.php:406, ../includes/Elements/Pricing_Table.php:519, ../includes/Elements/Pricing_Table.php:1527, ../includes/Elements/Simple_Menu.php:691, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Woo_Product_Carousel.php:2560 msgid "Shadow" msgstr "" @@ -1534,7 +1381,7 @@ msgstr "" msgid "Close Icon" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2327, ../includes/Elements/Business_Reviews.php:2477, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1105, ../includes/Elements/Creative_Button.php:428, ../includes/Elements/Cta_Box.php:1166, ../includes/Elements/Cta_Box.php:1405, ../includes/Elements/Event_Calendar.php:1797, ../includes/Elements/Event_Calendar.php:1842, ../includes/Elements/Event_Calendar.php:1887, ../includes/Elements/Event_Calendar.php:1967, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3156, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:534, ../includes/Elements/Interactive_Circle.php:744, ../includes/Elements/Interactive_Circle.php:814, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2091, ../includes/Elements/Product_Grid.php:932, ../includes/Elements/Product_Grid.php:1072, ../includes/Elements/Product_Grid.php:1804, ../includes/Elements/Product_Grid.php:2079, ../includes/Elements/Product_Grid.php:2261, ../includes/Elements/Product_Grid.php:2500, ../includes/Elements/Product_Grid.php:2547, ../includes/Elements/Product_Grid.php:2743, ../includes/Elements/Product_Grid.php:2839, ../includes/Elements/Product_Grid.php:2951, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:625, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1030, ../includes/Elements/Woo_Checkout.php:1239, ../includes/Elements/Woo_Checkout.php:1707, ../includes/Elements/Woo_Checkout.php:2078, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2239, ../includes/Elements/Woo_Checkout.php:2283, ../includes/Elements/Woo_Checkout.php:2472, ../includes/Elements/Woo_Checkout.php:2488, ../includes/Elements/Woo_Checkout.php:2836, ../includes/Elements/Woo_Checkout.php:2948, ../includes/Elements/Woo_Product_Carousel.php:1093, ../includes/Elements/Woo_Product_Carousel.php:1487, ../includes/Elements/Woo_Product_Carousel.php:1611, ../includes/Elements/Woo_Product_Carousel.php:1779, ../includes/Elements/Woo_Product_Carousel.php:1874, ../includes/Elements/Woo_Product_Carousel.php:1988, ../includes/Elements/Woo_Product_Carousel.php:2433, ../includes/Elements/Woo_Product_Carousel.php:2860, ../includes/Elements/Woo_Product_Gallery.php:717, ../includes/Elements/Woo_Product_Gallery.php:1201, ../includes/Elements/Woo_Product_Gallery.php:1444, ../includes/Elements/Woo_Product_Gallery.php:1482, ../includes/Elements/Woo_Product_Gallery.php:1974, ../includes/Elements/Woo_Product_Gallery.php:2111, ../includes/Elements/Woo_Product_Gallery.php:2223, ../includes/Elements/Woo_Product_List.php:2924, ../includes/Elements/Woo_Product_List.php:3059, ../includes/Elements/WpForms.php:1030, ../includes/Elements/WpForms.php:1350, ../includes/Traits/Controls.php:2166, ../includes/Traits/Woo_Product_Comparable.php:1724 +#: ../includes/Elements/Betterdocs_Search_Form.php:297, ../includes/Elements/Business_Reviews.php:2341, ../includes/Elements/Business_Reviews.php:2491, ../includes/Elements/Caldera_Forms.php:1025, ../includes/Elements/Caldera_Forms.php:1339, ../includes/Elements/Contact_Form_7.php:1063, ../includes/Elements/Contact_Form_7.php:1378, ../includes/Elements/Content_Ticker.php:687, ../includes/Elements/Countdown.php:893, ../includes/Elements/Countdown.php:965, ../includes/Elements/Countdown.php:1037, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:432, ../includes/Elements/Cta_Box.php:1170, ../includes/Elements/Cta_Box.php:1409, ../includes/Elements/Event_Calendar.php:1797, ../includes/Elements/Event_Calendar.php:1842, ../includes/Elements/Event_Calendar.php:1887, ../includes/Elements/Event_Calendar.php:1967, ../includes/Elements/Facebook_Feed.php:812, ../includes/Elements/Filterable_Gallery.php:3160, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/Formstack.php:1575, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1567, ../includes/Elements/GravityForms.php:1763, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2614, ../includes/Elements/Interactive_Circle.php:576, ../includes/Elements/Interactive_Circle.php:787, ../includes/Elements/Interactive_Circle.php:857, ../includes/Elements/NFT_Gallery.php:2342, ../includes/Elements/NinjaForms.php:1072, ../includes/Elements/NinjaForms.php:1497, ../includes/Elements/Pricing_Table.php:2092, ../includes/Elements/Product_Grid.php:1044, ../includes/Elements/Product_Grid.php:1184, ../includes/Elements/Product_Grid.php:1916, ../includes/Elements/Product_Grid.php:2220, ../includes/Elements/Product_Grid.php:2402, ../includes/Elements/Product_Grid.php:2641, ../includes/Elements/Product_Grid.php:2688, ../includes/Elements/Product_Grid.php:2884, ../includes/Elements/Product_Grid.php:2980, ../includes/Elements/Product_Grid.php:3092, ../includes/Elements/Simple_Menu.php:999, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Simple_Menu.php:1403, ../includes/Elements/Simple_Menu.php:1498, ../includes/Elements/Sticky_Video.php:629, ../includes/Elements/Twitter_Feed.php:922, ../includes/Elements/Twitter_Feed.php:1495, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:766, ../includes/Elements/Woo_Cart.php:1315, ../includes/Elements/Woo_Cart.php:1593, ../includes/Elements/Woo_Cart.php:1956, ../includes/Elements/Woo_Cart.php:2241, ../includes/Elements/Woo_Checkout.php:1046, ../includes/Elements/Woo_Checkout.php:1267, ../includes/Elements/Woo_Checkout.php:1748, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2236, ../includes/Elements/Woo_Checkout.php:2280, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2513, ../includes/Elements/Woo_Checkout.php:2533, ../includes/Elements/Woo_Checkout.php:2889, ../includes/Elements/Woo_Checkout.php:3001, ../includes/Elements/Woo_Product_Carousel.php:1136, ../includes/Elements/Woo_Product_Carousel.php:1530, ../includes/Elements/Woo_Product_Carousel.php:1654, ../includes/Elements/Woo_Product_Carousel.php:1822, ../includes/Elements/Woo_Product_Carousel.php:1917, ../includes/Elements/Woo_Product_Carousel.php:2031, ../includes/Elements/Woo_Product_Carousel.php:2476, ../includes/Elements/Woo_Product_Carousel.php:2903, ../includes/Elements/Woo_Product_Gallery.php:840, ../includes/Elements/Woo_Product_Gallery.php:1324, ../includes/Elements/Woo_Product_Gallery.php:1567, ../includes/Elements/Woo_Product_Gallery.php:1605, ../includes/Elements/Woo_Product_Gallery.php:2126, ../includes/Elements/Woo_Product_Gallery.php:2263, ../includes/Elements/Woo_Product_Gallery.php:2375, ../includes/Elements/Woo_Product_List.php:3070, ../includes/Elements/Woo_Product_List.php:3205, ../includes/Elements/WpForms.php:1034, ../includes/Traits/Controls.php:2282, ../includes/Traits/Woo_Product_Comparable.php:1724 msgid "Border Color" msgstr "" @@ -1550,7 +1397,7 @@ msgstr "" msgid "Search Result List" msgstr "" -#: ../includes/Elements/Betterdocs_Search_Form.php:407, ../includes/Elements/Betterdocs_Search_Form.php:513, ../includes/Elements/Filterable_Gallery.php:1315, ../includes/Elements/Interactive_Circle.php:585, ../includes/Elements/Woo_Product_List.php:1212, ../includes/Template/Woo-Product-List/preset-3.php:115 +#: ../includes/Elements/Betterdocs_Search_Form.php:407, ../includes/Elements/Betterdocs_Search_Form.php:513, ../includes/Elements/Filterable_Gallery.php:1319, ../includes/Elements/Interactive_Circle.php:627, ../includes/Elements/Woo_Product_List.php:1358, ../includes/Template/Woo-Product-List/preset-3.php:123 msgid "Item" msgstr "" @@ -1562,7 +1409,7 @@ msgstr "" msgid "Better Payment is not installed/activated on your site. Please install and activate Better Payment first." msgstr "" -#: ../includes/Elements/Business_Reviews.php:103, ../includes/Elements/Business_Reviews.php:624, ../includes/Elements/Business_Reviews.php:625, ../includes/templates/admin/popup.php:48 +#: ../includes/Elements/Business_Reviews.php:103, ../includes/Elements/Business_Reviews.php:638, ../includes/Elements/Business_Reviews.php:639 msgid "Google Reviews" msgstr "" @@ -1606,11 +1453,11 @@ msgstr "" msgid "Local Business Schema" msgstr "" -#: ../includes/Elements/Business_Reviews.php:178, ../includes/Elements/Filterable_Gallery.php:300, ../includes/Elements/Filterable_Gallery.php:312, ../includes/Elements/Interactive_Circle.php:571, ../includes/Elements/Twitter_Feed.php:416, ../includes/Elements/Twitter_Feed.php:428 +#: ../includes/Elements/Business_Reviews.php:178, ../includes/Elements/Filterable_Gallery.php:304, ../includes/Elements/Filterable_Gallery.php:316, ../includes/Elements/Interactive_Circle.php:613, ../includes/Elements/Twitter_Feed.php:416, ../includes/Elements/Twitter_Feed.php:428 msgid "Enable" msgstr "" -#: ../includes/Elements/Business_Reviews.php:179, ../includes/Elements/Filterable_Gallery.php:301, ../includes/Elements/Filterable_Gallery.php:313, ../includes/Elements/Interactive_Circle.php:572, ../includes/Elements/Twitter_Feed.php:417, ../includes/Elements/Twitter_Feed.php:429 +#: ../includes/Elements/Business_Reviews.php:179, ../includes/Elements/Filterable_Gallery.php:305, ../includes/Elements/Filterable_Gallery.php:317, ../includes/Elements/Interactive_Circle.php:614, ../includes/Elements/Product_Grid.php:899, ../includes/Elements/Twitter_Feed.php:417, ../includes/Elements/Twitter_Feed.php:429, ../includes/Elements/Woo_Product_Gallery.php:680, ../includes/Elements/Woo_Product_List.php:258, ../includes/Traits/Controls.php:788 msgid "Disable" msgstr "" @@ -1622,331 +1469,331 @@ msgstr "" msgid "Slider" msgstr "" -#: ../includes/Elements/Business_Reviews.php:213, ../includes/Elements/Business_Reviews.php:230, ../includes/Elements/NFT_Gallery.php:254, ../includes/Elements/Product_Grid.php:247, ../includes/Elements/Product_Grid.php:269, ../includes/Elements/Product_Grid.php:1839, ../includes/Elements/Product_Grid.php:1969, ../includes/Elements/Team_Member.php:289, ../includes/Elements/Woo_Product_Carousel.php:905, ../includes/Elements/Woo_Product_Gallery.php:329, ../includes/Elements/Woo_Product_Gallery.php:1578 -msgid "Style Preset" -msgstr "" - -#: ../includes/Elements/Business_Reviews.php:217, ../includes/Elements/Business_Reviews.php:234, ../includes/Elements/Cta_Box.php:100, ../includes/Elements/Cta_Box.php:378, ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/NFT_Gallery.php:258, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Product_Grid.php:1843, ../includes/Elements/Product_Grid.php:1973, ../includes/Elements/Simple_Menu.php:142, ../includes/Elements/Woo_Product_Carousel.php:909, ../includes/Elements/Woo_Product_Carousel.php:2227, ../includes/Elements/Woo_Product_Gallery.php:333, ../includes/Elements/Woo_Product_Gallery.php:1582, ../includes/Elements/Woo_Product_List.php:683, ../includes/Elements/Woo_Product_List.php:701, ../includes/Traits/Controls.php:462, ../includes/Template/Woo-Product-Carousel/preset-1.php:4, ../includes/Template/Woo-Product-List/preset-1.php:3 +#: ../includes/Elements/Business_Reviews.php:213, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Cta_Box.php:382, ../includes/Elements/Interactive_Circle.php:78, ../includes/Elements/NFT_Gallery.php:258, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Product_Grid.php:2114, ../includes/Elements/Simple_Menu.php:142, ../includes/Elements/Woo_Product_Carousel.php:952, ../includes/Elements/Woo_Product_Carousel.php:2270, ../includes/Elements/Woo_Product_Gallery.php:342, ../includes/Elements/Woo_Product_Gallery.php:1705, ../includes/Elements/Woo_Product_List.php:770, ../includes/Elements/Woo_Product_List.php:788, ../includes/Traits/Controls.php:475, ../includes/Template/Woo-Product-Carousel/preset-1.php:4, ../includes/Template/Woo-Product-List/preset-1.php:3 msgid "Preset 1" msgstr "" -#: ../includes/Elements/Business_Reviews.php:218, ../includes/Elements/Business_Reviews.php:235, ../includes/Elements/Cta_Box.php:101, ../includes/Elements/Cta_Box.php:379, ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/NFT_Gallery.php:259, ../includes/Elements/Product_Grid.php:274, ../includes/Elements/Product_Grid.php:1844, ../includes/Elements/Product_Grid.php:1974, ../includes/Elements/Simple_Menu.php:143, ../includes/Elements/Woo_Product_Carousel.php:910, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Gallery.php:334, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Elements/Woo_Product_List.php:684, ../includes/Elements/Woo_Product_List.php:702, ../includes/Traits/Controls.php:463, ../includes/Template/Woo-Product-Carousel/preset-2.php:4, ../includes/Template/Woo-Product-List/preset-2.php:3 +#: ../includes/Elements/Business_Reviews.php:217, ../includes/Elements/Cta_Box.php:105, ../includes/Elements/Cta_Box.php:383, ../includes/Elements/Interactive_Circle.php:79, ../includes/Elements/NFT_Gallery.php:259, ../includes/Elements/Product_Grid.php:317, ../includes/Elements/Product_Grid.php:1956, ../includes/Elements/Product_Grid.php:2115, ../includes/Elements/Simple_Menu.php:143, ../includes/Elements/Woo_Product_Carousel.php:953, ../includes/Elements/Woo_Product_Carousel.php:2271, ../includes/Elements/Woo_Product_Gallery.php:346, ../includes/Elements/Woo_Product_Gallery.php:1706, ../includes/Elements/Woo_Product_List.php:771, ../includes/Elements/Woo_Product_List.php:789, ../includes/Traits/Controls.php:476, ../includes/Template/Woo-Product-Carousel/preset-2.php:4, ../includes/Template/Woo-Product-List/preset-2.php:3 msgid "Preset 2" msgstr "" -#: ../includes/Elements/Business_Reviews.php:219, ../includes/Elements/Business_Reviews.php:236, ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Product_Grid.php:1845, ../includes/Elements/Simple_Menu.php:144, ../includes/Elements/Woo_Product_Carousel.php:911, ../includes/Elements/Woo_Product_Carousel.php:2229, ../includes/Elements/Woo_Product_Gallery.php:335, ../includes/Elements/Woo_Product_Gallery.php:1584, ../includes/Elements/Woo_Product_List.php:685, ../includes/Elements/Woo_Product_List.php:703, ../includes/Traits/Controls.php:464, ../includes/Template/Woo-Product-Carousel/preset-3.php:4, ../includes/Template/Woo-Product-List/preset-3.php:3 +#: ../includes/Elements/Business_Reviews.php:221, ../includes/Elements/Interactive_Circle.php:80, ../includes/Elements/Product_Grid.php:321, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Simple_Menu.php:144, ../includes/Elements/Woo_Product_Carousel.php:954, ../includes/Elements/Woo_Product_Carousel.php:2272, ../includes/Elements/Woo_Product_Gallery.php:350, ../includes/Elements/Woo_Product_Gallery.php:1707, ../includes/Elements/Woo_Product_List.php:772, ../includes/Elements/Woo_Product_List.php:790, ../includes/Traits/Controls.php:477, ../includes/Template/Woo-Product-Carousel/preset-3.php:4, ../includes/Template/Woo-Product-List/preset-3.php:3 msgid "Preset 3" msgstr "" -#: ../includes/Elements/Business_Reviews.php:247, ../includes/Elements/Business_Reviews.php:270, ../includes/Elements/Business_Reviews.php:293, ../includes/Elements/Facebook_Feed.php:272, ../includes/Elements/Filterable_Gallery.php:131, ../includes/Elements/NFT_Gallery.php:270, ../includes/Elements/Product_Grid.php:287, ../includes/Elements/Product_Grid.php:309, ../includes/Elements/Woo_Product_Gallery.php:344, ../includes/Traits/Woo_Product_Comparable.php:853 +#: ../includes/Elements/Business_Reviews.php:229, ../includes/Elements/Business_Reviews.php:245, ../includes/Elements/NFT_Gallery.php:254, ../includes/Elements/Product_Grid.php:259, ../includes/Elements/Product_Grid.php:309, ../includes/Elements/Product_Grid.php:1951, ../includes/Elements/Product_Grid.php:2110, ../includes/Elements/Woo_Product_Carousel.php:948, ../includes/Elements/Woo_Product_Gallery.php:338, ../includes/Elements/Woo_Product_Gallery.php:1701 +msgid "Style Preset" +msgstr "" + +#: ../includes/Elements/Business_Reviews.php:261, ../includes/Elements/Business_Reviews.php:284, ../includes/Elements/Business_Reviews.php:307, ../includes/Elements/Facebook_Feed.php:272, ../includes/Elements/Filterable_Gallery.php:135, ../includes/Elements/NFT_Gallery.php:270, ../includes/Elements/Product_Grid.php:342, ../includes/Elements/Product_Grid.php:364, ../includes/Elements/Woo_Product_Gallery.php:368, ../includes/Traits/Woo_Product_Comparable.php:853 msgid "Columns" msgstr "" -#: ../includes/Elements/Business_Reviews.php:253, ../includes/Elements/Business_Reviews.php:276, ../includes/Elements/Business_Reviews.php:299, ../includes/Elements/Facebook_Feed.php:276, ../includes/Elements/NFT_Gallery.php:274, ../includes/Elements/Product_Grid.php:291, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Testimonial.php:204, ../includes/Elements/Woo_Product_Carousel.php:381, ../includes/Elements/Woo_Product_Carousel.php:520, ../includes/Elements/Woo_Product_Gallery.php:348, ../includes/Traits/Controls.php:574, ../includes/Traits/Controls.php:1468 +#: ../includes/Elements/Business_Reviews.php:267, ../includes/Elements/Business_Reviews.php:290, ../includes/Elements/Business_Reviews.php:313, ../includes/Elements/Facebook_Feed.php:276, ../includes/Elements/NFT_Gallery.php:274, ../includes/Elements/Product_Grid.php:346, ../includes/Elements/Product_Grid.php:368, ../includes/Elements/Testimonial.php:208, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Carousel.php:540, ../includes/Elements/Woo_Product_Gallery.php:372, ../includes/Traits/Controls.php:617, ../includes/Traits/Controls.php:1601 msgid "1" msgstr "" -#: ../includes/Elements/Business_Reviews.php:254, ../includes/Elements/Business_Reviews.php:277, ../includes/Elements/Business_Reviews.php:300, ../includes/Elements/Facebook_Feed.php:277, ../includes/Elements/NFT_Gallery.php:275, ../includes/Elements/Product_Grid.php:292, ../includes/Elements/Product_Grid.php:314, ../includes/Elements/Testimonial.php:205, ../includes/Elements/Woo_Product_Carousel.php:382, ../includes/Elements/Woo_Product_Carousel.php:521, ../includes/Elements/Woo_Product_Gallery.php:349, ../includes/Traits/Controls.php:575, ../includes/Traits/Controls.php:1469 +#: ../includes/Elements/Business_Reviews.php:268, ../includes/Elements/Business_Reviews.php:291, ../includes/Elements/Business_Reviews.php:314, ../includes/Elements/Facebook_Feed.php:277, ../includes/Elements/NFT_Gallery.php:275, ../includes/Elements/Product_Grid.php:347, ../includes/Elements/Product_Grid.php:369, ../includes/Elements/Testimonial.php:209, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Carousel.php:541, ../includes/Elements/Woo_Product_Gallery.php:373, ../includes/Traits/Controls.php:618, ../includes/Traits/Controls.php:1602 msgid "2" msgstr "" -#: ../includes/Elements/Business_Reviews.php:255, ../includes/Elements/Business_Reviews.php:278, ../includes/Elements/Business_Reviews.php:301, ../includes/Elements/Facebook_Feed.php:278, ../includes/Elements/NFT_Gallery.php:276, ../includes/Elements/Product_Grid.php:293, ../includes/Elements/Testimonial.php:206, ../includes/Elements/Woo_Product_Carousel.php:383, ../includes/Elements/Woo_Product_Carousel.php:522, ../includes/Elements/Woo_Product_Gallery.php:350, ../includes/Traits/Controls.php:576, ../includes/Traits/Controls.php:1470 +#: ../includes/Elements/Business_Reviews.php:269, ../includes/Elements/Business_Reviews.php:292, ../includes/Elements/Business_Reviews.php:315, ../includes/Elements/Facebook_Feed.php:278, ../includes/Elements/NFT_Gallery.php:276, ../includes/Elements/Product_Grid.php:348, ../includes/Elements/Testimonial.php:210, ../includes/Elements/Woo_Product_Carousel.php:403, ../includes/Elements/Woo_Product_Carousel.php:542, ../includes/Elements/Woo_Product_Gallery.php:374, ../includes/Traits/Controls.php:619, ../includes/Traits/Controls.php:1603 msgid "3" msgstr "" -#: ../includes/Elements/Business_Reviews.php:256, ../includes/Elements/Business_Reviews.php:279, ../includes/Elements/Business_Reviews.php:302, ../includes/Elements/Facebook_Feed.php:279, ../includes/Elements/NFT_Gallery.php:277, ../includes/Elements/Product_Grid.php:294, ../includes/Elements/Testimonial.php:207, ../includes/Elements/Woo_Product_Carousel.php:523, ../includes/Elements/Woo_Product_Gallery.php:351, ../includes/Traits/Controls.php:577 +#: ../includes/Elements/Business_Reviews.php:270, ../includes/Elements/Business_Reviews.php:293, ../includes/Elements/Business_Reviews.php:316, ../includes/Elements/Facebook_Feed.php:279, ../includes/Elements/NFT_Gallery.php:277, ../includes/Elements/Product_Grid.php:349, ../includes/Elements/Testimonial.php:211, ../includes/Elements/Woo_Product_Carousel.php:543, ../includes/Elements/Woo_Product_Gallery.php:375, ../includes/Traits/Controls.php:620 msgid "4" msgstr "" -#: ../includes/Elements/Business_Reviews.php:314, ../includes/Elements/Content_Ticker.php:161, ../includes/Elements/Cta_Box.php:818, ../includes/Elements/Cta_Box.php:1246, ../includes/Elements/Woo_Product_Carousel.php:503 +#: ../includes/Elements/Business_Reviews.php:328, ../includes/Elements/Content_Ticker.php:161, ../includes/Elements/Cta_Box.php:822, ../includes/Elements/Cta_Box.php:1250, ../includes/Elements/Woo_Product_Carousel.php:523 msgid "Effect" msgstr "" -#: ../includes/Elements/Business_Reviews.php:318, ../includes/Elements/Content_Ticker.php:166, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Woo_Product_Carousel.php:508 +#: ../includes/Elements/Business_Reviews.php:332, ../includes/Elements/Content_Ticker.php:166, ../includes/Elements/Pricing_Table.php:471, ../includes/Elements/Woo_Product_Carousel.php:528 msgid "Slide" msgstr "" -#: ../includes/Elements/Business_Reviews.php:319, ../includes/Elements/Woo_Product_Carousel.php:509 +#: ../includes/Elements/Business_Reviews.php:333, ../includes/Elements/Woo_Product_Carousel.php:529 msgid "Coverflow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:330 +#: ../includes/Elements/Business_Reviews.php:344 msgid "Item Gap" msgstr "" -#: ../includes/Elements/Business_Reviews.php:350, ../includes/Elements/Woo_Checkout.php:1074 +#: ../includes/Elements/Business_Reviews.php:364, ../includes/Elements/Woo_Checkout.php:1102 msgid "Row Gap" msgstr "" -#: ../includes/Elements/Business_Reviews.php:373 +#: ../includes/Elements/Business_Reviews.php:387 msgid "Column Gap" msgstr "" -#: ../includes/Elements/Business_Reviews.php:396 +#: ../includes/Elements/Business_Reviews.php:410 msgid "Sliding Speed" msgstr "" -#: ../includes/Elements/Business_Reviews.php:397, ../includes/Elements/Content_Ticker.php:176, ../includes/Elements/Woo_Product_Carousel.php:612 +#: ../includes/Elements/Business_Reviews.php:411, ../includes/Elements/Content_Ticker.php:176, ../includes/Elements/Woo_Product_Carousel.php:632 msgid "Duration of transition between slides (in ms)" msgstr "" -#: ../includes/Elements/Business_Reviews.php:417, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Interactive_Circle.php:430, ../includes/Elements/Sticky_Video.php:321, ../includes/Elements/Woo_Product_Carousel.php:630 +#: ../includes/Elements/Business_Reviews.php:431, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Interactive_Circle.php:472, ../includes/Elements/Sticky_Video.php:325, ../includes/Elements/Woo_Product_Carousel.php:650 msgid "Autoplay" msgstr "" -#: ../includes/Elements/Business_Reviews.php:432 +#: ../includes/Elements/Business_Reviews.php:446 msgid "Autoplay Delay" msgstr "" -#: ../includes/Elements/Business_Reviews.php:453, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Woo_Product_Carousel.php:677 +#: ../includes/Elements/Business_Reviews.php:467, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Woo_Product_Carousel.php:697 msgid "Infinite Loop" msgstr "" -#: ../includes/Elements/Business_Reviews.php:468 +#: ../includes/Elements/Business_Reviews.php:482 msgid "Pause on Hover" msgstr "" -#: ../includes/Elements/Business_Reviews.php:483, ../includes/Elements/Content_Ticker.php:254, ../includes/Elements/Woo_Product_Carousel.php:689 +#: ../includes/Elements/Business_Reviews.php:497, ../includes/Elements/Content_Ticker.php:254, ../includes/Elements/Woo_Product_Carousel.php:709 msgid "Grab Cursor" msgstr "" -#: ../includes/Elements/Business_Reviews.php:489, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Woo_Product_Carousel.php:690 +#: ../includes/Elements/Business_Reviews.php:503, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Woo_Product_Carousel.php:710 msgid "Shows grab cursor when you hover over the slider" msgstr "" -#: ../includes/Elements/Business_Reviews.php:499, ../includes/Elements/Content_Ticker.php:268, ../includes/Elements/Woo_Product_Carousel.php:703 +#: ../includes/Elements/Business_Reviews.php:513, ../includes/Elements/Content_Ticker.php:268, ../includes/Elements/Woo_Product_Carousel.php:723 msgid "Navigation" msgstr "" -#: ../includes/Elements/Business_Reviews.php:511, ../includes/Elements/Business_Reviews.php:2104, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Content_Ticker.php:494, ../includes/Elements/Woo_Product_Carousel.php:712, ../includes/Elements/Woo_Product_Carousel.php:2658 +#: ../includes/Elements/Business_Reviews.php:525, ../includes/Elements/Business_Reviews.php:2118, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Content_Ticker.php:494, ../includes/Elements/Woo_Product_Carousel.php:732, ../includes/Elements/Woo_Product_Carousel.php:2701 msgid "Arrows" msgstr "" -#: ../includes/Elements/Business_Reviews.php:526, ../includes/Elements/Business_Reviews.php:2350, ../includes/Elements/Woo_Product_Carousel.php:724, ../includes/Elements/Woo_Product_Carousel.php:2213 +#: ../includes/Elements/Business_Reviews.php:540, ../includes/Elements/Business_Reviews.php:2364, ../includes/Elements/Woo_Product_Carousel.php:744, ../includes/Elements/Woo_Product_Carousel.php:2256 msgid "Dots" msgstr "" -#: ../includes/Elements/Business_Reviews.php:553 +#: ../includes/Elements/Business_Reviews.php:567 msgid "Business" msgstr "" -#: ../includes/Elements/Business_Reviews.php:561 +#: ../includes/Elements/Business_Reviews.php:575 msgid "Logo" msgstr "" -#: ../includes/Elements/Business_Reviews.php:573 +#: ../includes/Elements/Business_Reviews.php:587 msgid "Custom Logo" msgstr "" -#: ../includes/Elements/Business_Reviews.php:585, ../includes/Elements/Business_Reviews.php:744, ../includes/Elements/Team_Member.php:111, ../includes/Elements/Woo_Cart.php:481, ../includes/Traits/Controls.php:343 +#: ../includes/Elements/Business_Reviews.php:599, ../includes/Elements/Business_Reviews.php:758, ../includes/Elements/Team_Member.php:115, ../includes/Elements/Woo_Cart.php:481, ../includes/Traits/Controls.php:349 msgid "Name" msgstr "" -#: ../includes/Elements/Business_Reviews.php:595, ../includes/Elements/Business_Reviews.php:621, ../includes/Elements/Woo_Product_List.php:924 +#: ../includes/Elements/Business_Reviews.php:609, ../includes/Elements/Business_Reviews.php:635, ../includes/Elements/Woo_Product_List.php:1041 msgid "Custom Text" msgstr "" -#: ../includes/Elements/Business_Reviews.php:597, ../includes/Elements/Business_Reviews.php:1170 +#: ../includes/Elements/Business_Reviews.php:611, ../includes/Elements/Business_Reviews.php:1184 msgid "Business Name" msgstr "" -#: ../includes/Elements/Business_Reviews.php:611, ../includes/Elements/Business_Reviews.php:683, ../includes/Elements/Formstack.php:1286, ../includes/Elements/Testimonial.php:610, ../includes/Elements/Woo_Product_List.php:260 +#: ../includes/Elements/Business_Reviews.php:625, ../includes/Elements/Business_Reviews.php:697, ../includes/Elements/Formstack.php:1286, ../includes/Elements/Testimonial.php:640, ../includes/Elements/Woo_Product_List.php:309 msgid "Rating" msgstr "" -#: ../includes/Elements/Business_Reviews.php:638 +#: ../includes/Elements/Business_Reviews.php:652 msgid "Address" msgstr "" -#: ../includes/Elements/Business_Reviews.php:650 +#: ../includes/Elements/Business_Reviews.php:664 msgid "Review" msgstr "" -#: ../includes/Elements/Business_Reviews.php:659, ../includes/Elements/Event_Calendar.php:2341, ../includes/Elements/Post_Timeline.php:514 +#: ../includes/Elements/Business_Reviews.php:673, ../includes/Elements/Event_Calendar.php:2341, ../includes/Elements/Post_Timeline.php:516 msgid "Time" msgstr "" -#: ../includes/Elements/Business_Reviews.php:671, ../includes/Elements/Tooltip.php:79, ../includes/Elements/Woo_Checkout.php:170, ../includes/Elements/Woo_Product_List.php:2441, ../includes/Elements/Woo_Product_List.php:2477, ../includes/Traits/Woo_Product_Comparable.php:1206 +#: ../includes/Elements/Business_Reviews.php:685, ../includes/Elements/Tooltip.php:83, ../includes/Elements/Woo_Checkout.php:186, ../includes/Elements/Woo_Product_List.php:2587, ../includes/Elements/Woo_Product_List.php:2623, ../includes/Traits/Woo_Product_Comparable.php:1206 msgid "Text" msgstr "" -#: ../includes/Elements/Business_Reviews.php:695 +#: ../includes/Elements/Business_Reviews.php:709 msgid "Translation" msgstr "" -#: ../includes/Elements/Business_Reviews.php:696 +#: ../includes/Elements/Business_Reviews.php:710 msgid "Reviews will be translated into English." msgstr "" -#: ../includes/Elements/Business_Reviews.php:711 +#: ../includes/Elements/Business_Reviews.php:725 msgid "Hide 1 Star Reviews" msgstr "" -#: ../includes/Elements/Business_Reviews.php:723, ../includes/Elements/Business_Reviews.php:2971, ../includes/Elements/Business_Reviews.php:3015, ../includes/Elements/Business_Reviews.php:3086 +#: ../includes/Elements/Business_Reviews.php:737, ../includes/Elements/Business_Reviews.php:2985, ../includes/Elements/Business_Reviews.php:3029, ../includes/Elements/Business_Reviews.php:3100 msgid "Reviewer" msgstr "" -#: ../includes/Elements/Business_Reviews.php:732, ../includes/Elements/Twitter_Feed.php:1073 +#: ../includes/Elements/Business_Reviews.php:746, ../includes/Elements/Twitter_Feed.php:1073 msgid "Avatar" msgstr "" -#: ../includes/Elements/Business_Reviews.php:761 +#: ../includes/Elements/Business_Reviews.php:775 msgid "Accessibilty" msgstr "" -#: ../includes/Elements/Business_Reviews.php:768 +#: ../includes/Elements/Business_Reviews.php:782 msgid "Enable Accessibilty" msgstr "" -#: ../includes/Elements/Business_Reviews.php:780 +#: ../includes/Elements/Business_Reviews.php:794 msgid "Open in same window" msgstr "" -#: ../includes/Elements/Business_Reviews.php:786 +#: ../includes/Elements/Business_Reviews.php:800 msgid "Recommended to open link in the same tab instead of a new tab" msgstr "" -#: ../includes/Elements/Business_Reviews.php:803, ../includes/Elements/Woo_Product_List.php:1128 +#: ../includes/Elements/Business_Reviews.php:817, ../includes/Elements/Woo_Product_List.php:1274 msgid "Container" msgstr "" -#: ../includes/Elements/Business_Reviews.php:932, ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1496, ../includes/Elements/Event_Calendar.php:2543, ../includes/Elements/Pricing_Table.php:924, ../includes/Traits/Woo_Product_Comparable.php:1088 +#: ../includes/Elements/Business_Reviews.php:946, ../includes/Elements/Data_Table.php:79, ../includes/Elements/Event_Calendar.php:1496, ../includes/Elements/Event_Calendar.php:2543, ../includes/Elements/Pricing_Table.php:925, ../includes/Traits/Woo_Product_Comparable.php:1088 msgid "Header" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1086 +#: ../includes/Elements/Business_Reviews.php:1100 msgid "Business Logo" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1098 +#: ../includes/Elements/Business_Reviews.php:1112 msgid "Logo Size" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1238 +#: ../includes/Elements/Business_Reviews.php:1252 msgid "Business Rating" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1277, ../includes/Elements/Business_Reviews.php:2003, ../includes/Elements/Filterable_Gallery.php:2299 +#: ../includes/Elements/Business_Reviews.php:1291, ../includes/Elements/Business_Reviews.php:2017, ../includes/Elements/Filterable_Gallery.php:2303 msgid "Star Color" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1292, ../includes/Elements/Business_Reviews.php:2018 +#: ../includes/Elements/Business_Reviews.php:1306, ../includes/Elements/Business_Reviews.php:2032 msgid "Star Size" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1345 +#: ../includes/Elements/Business_Reviews.php:1359 msgid "Business Address" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1548 +#: ../includes/Elements/Business_Reviews.php:1562 msgid "Reviews" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1671 +#: ../includes/Elements/Business_Reviews.php:1685 msgid "Reviewer Avatar" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1713 +#: ../includes/Elements/Business_Reviews.php:1727 msgid "Photo Size" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1736 +#: ../includes/Elements/Business_Reviews.php:1750 msgid "Reviewer Name" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1804 +#: ../includes/Elements/Business_Reviews.php:1818 msgid "Review Time" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1873 +#: ../includes/Elements/Business_Reviews.php:1887 msgid "Review Text" msgstr "" -#: ../includes/Elements/Business_Reviews.php:1991 +#: ../includes/Elements/Business_Reviews.php:2005 msgid "Review Rating" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2116, ../includes/Elements/Woo_Product_Carousel.php:2669 +#: ../includes/Elements/Business_Reviews.php:2130, ../includes/Elements/Woo_Product_Carousel.php:2712 msgid "Choose Arrow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2121, ../includes/Elements/Woo_Product_Carousel.php:2674, ../includes/Traits/Controls.php:1281 +#: ../includes/Elements/Business_Reviews.php:2135, ../includes/Elements/Woo_Product_Carousel.php:2717, ../includes/Traits/Controls.php:1403 msgid "Angle" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2122, ../includes/Elements/Woo_Product_Carousel.php:2675 +#: ../includes/Elements/Business_Reviews.php:2136, ../includes/Elements/Woo_Product_Carousel.php:2718 msgid "Double Angle" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2123, ../includes/Elements/Woo_Product_Carousel.php:2676, ../includes/Traits/Controls.php:1282 +#: ../includes/Elements/Business_Reviews.php:2137, ../includes/Elements/Woo_Product_Carousel.php:2719, ../includes/Traits/Controls.php:1404 msgid "Chevron" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2124, ../includes/Elements/Woo_Product_Carousel.php:2677, ../includes/Traits/Controls.php:1288 +#: ../includes/Elements/Business_Reviews.php:2138, ../includes/Elements/Woo_Product_Carousel.php:2720, ../includes/Traits/Controls.php:1410 msgid "Chevron Circle" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2125, ../includes/Elements/Post_Timeline.php:421, ../includes/Elements/Woo_Product_Carousel.php:2678, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1284 +#: ../includes/Elements/Business_Reviews.php:2139, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Woo_Product_Carousel.php:2721, ../includes/Extensions/Table_of_Content.php:1042, ../includes/Traits/Controls.php:1406 msgid "Arrow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2126, ../includes/Elements/Woo_Product_Carousel.php:2679, ../includes/Traits/Controls.php:1286 +#: ../includes/Elements/Business_Reviews.php:2140, ../includes/Elements/Woo_Product_Carousel.php:2722, ../includes/Traits/Controls.php:1408 msgid "Long Arrow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2128, ../includes/Elements/Woo_Product_Carousel.php:2681, ../includes/Traits/Controls.php:1289 +#: ../includes/Elements/Business_Reviews.php:2142, ../includes/Elements/Woo_Product_Carousel.php:2724, ../includes/Traits/Controls.php:1411 msgid "Caret Square" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2129, ../includes/Elements/Woo_Product_Carousel.php:2682, ../includes/Traits/Controls.php:1287 +#: ../includes/Elements/Business_Reviews.php:2143, ../includes/Elements/Woo_Product_Carousel.php:2725, ../includes/Traits/Controls.php:1409 msgid "Arrow Circle" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2130, ../includes/Elements/Woo_Product_Carousel.php:2683 +#: ../includes/Elements/Business_Reviews.php:2144, ../includes/Elements/Woo_Product_Carousel.php:2726 msgid "Arrow Circle O" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2132, ../includes/Elements/Woo_Product_Carousel.php:2685 +#: ../includes/Elements/Business_Reviews.php:2146, ../includes/Elements/Woo_Product_Carousel.php:2728 msgid "Hand" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2180, ../includes/Elements/Cta_Box.php:1449, ../includes/Elements/Pricing_Table.php:1411, ../includes/Elements/Twitter_Feed.php:1181 +#: ../includes/Elements/Business_Reviews.php:2194, ../includes/Elements/Cta_Box.php:1453, ../includes/Elements/Pricing_Table.php:1412, ../includes/Elements/Twitter_Feed.php:1181 msgid "Font Size" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2200, ../includes/Elements/Content_Ticker.php:554, ../includes/Elements/Woo_Product_Carousel.php:2733 +#: ../includes/Elements/Business_Reviews.php:2214, ../includes/Elements/Content_Ticker.php:554, ../includes/Elements/Woo_Product_Carousel.php:2776 msgid "Align Left Arrow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2219, ../includes/Elements/Content_Ticker.php:573, ../includes/Elements/Woo_Product_Carousel.php:2752 +#: ../includes/Elements/Business_Reviews.php:2233, ../includes/Elements/Content_Ticker.php:573, ../includes/Elements/Woo_Product_Carousel.php:2795 msgid "Align Right Arrow" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2421 +#: ../includes/Elements/Business_Reviews.php:2435 msgid "Active Color" msgstr "" -#: ../includes/Elements/Business_Reviews.php:2695 +#: ../includes/Elements/Business_Reviews.php:2709 msgid "The referenced location, place_id, was valid but no longer refers to a valid result. This may occur if the establishment is no longer in business." msgstr "" -#: ../includes/Elements/Business_Reviews.php:2699 +#: ../includes/Elements/Business_Reviews.php:2713 msgid "The referenced location, place_id, was not found in the Places database." msgstr "" -#: ../includes/Elements/Business_Reviews.php:2703 +#: ../includes/Elements/Business_Reviews.php:2717 msgid "The API request was malformed." msgstr "" -#: ../includes/Elements/Business_Reviews.php:2707 +#: ../includes/Elements/Business_Reviews.php:2721 msgid "You have exceeded the QPS limits. Or, Billing has not been enabled on your account. Or, The monthly $200 credit, or a self-imposed usage cap, has been exceeded. Or, The provided method of payment is no longer valid (for example, a credit card has expired)." msgstr "" -#: ../includes/Elements/Business_Reviews.php:2711 +#: ../includes/Elements/Business_Reviews.php:2725 msgid "The request is missing an API key. Or, The key parameter is invalid." msgstr "" -#: ../includes/Elements/Business_Reviews.php:2715 +#: ../includes/Elements/Business_Reviews.php:2729 msgid "An unknown error occurred." msgstr "" @@ -1958,7 +1805,7 @@ msgstr "" msgid "Custom Title & Description" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:137, ../includes/Elements/Caldera_Forms.php:322, ../includes/Elements/Contact_Form_7.php:190, ../includes/Elements/Contact_Form_7.php:504, ../includes/Elements/Event_Calendar.php:296, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1077, ../includes/Elements/Event_Calendar.php:1078, ../includes/Elements/Feature_List.php:874, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:357, ../includes/Elements/FluentForm.php:1187, ../includes/Elements/Formstack.php:220, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:709, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:207, ../includes/Elements/GravityForms.php:542, ../includes/Elements/NinjaForms.php:158, ../includes/Elements/NinjaForms.php:495, ../includes/Elements/Team_Member.php:141, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:165, ../includes/Elements/WpForms.php:462, ../includes/Traits/Controls.php:348, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:83 +#: ../includes/Elements/Caldera_Forms.php:137, ../includes/Elements/Caldera_Forms.php:322, ../includes/Elements/Contact_Form_7.php:190, ../includes/Elements/Contact_Form_7.php:504, ../includes/Elements/Event_Calendar.php:296, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1077, ../includes/Elements/Event_Calendar.php:1078, ../includes/Elements/Feature_List.php:878, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:357, ../includes/Elements/FluentForm.php:1187, ../includes/Elements/Formstack.php:220, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:709, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:207, ../includes/Elements/GravityForms.php:542, ../includes/Elements/NinjaForms.php:158, ../includes/Elements/NinjaForms.php:495, ../includes/Elements/Team_Member.php:145, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:165, ../includes/Elements/WpForms.php:462, ../includes/Traits/Controls.php:354, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:83 msgid "Description" msgstr "" @@ -1966,7 +1813,7 @@ msgstr "" msgid "Labels" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:183, ../includes/Elements/Caldera_Forms.php:1417, ../includes/Elements/Contact_Form_7.php:223, ../includes/Elements/Contact_Form_7.php:1399, ../includes/Elements/FluentForm.php:224, ../includes/Elements/FluentForm.php:2155, ../includes/Elements/Formstack.php:265, ../includes/Elements/Formstack.php:1909, ../includes/Elements/GravityForms.php:264, ../includes/Elements/GravityForms.php:2659, ../includes/Elements/NinjaForms.php:204, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/WpForms.php:208, ../includes/Elements/WpForms.php:1372 +#: ../includes/Elements/Caldera_Forms.php:183, ../includes/Elements/Caldera_Forms.php:1417, ../includes/Elements/Contact_Form_7.php:223, ../includes/Elements/Contact_Form_7.php:1399, ../includes/Elements/FluentForm.php:224, ../includes/Elements/FluentForm.php:2155, ../includes/Elements/Formstack.php:265, ../includes/Elements/Formstack.php:1909, ../includes/Elements/GravityForms.php:264, ../includes/Elements/GravityForms.php:2659, ../includes/Elements/NinjaForms.php:204, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/WpForms.php:208, ../includes/Elements/WpForms.php:1388 msgid "Errors" msgstr "" @@ -1994,7 +1841,7 @@ msgstr "" msgid "Form Alignment" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:173, ../includes/Elements/Cta_Box.php:823, ../includes/Elements/Cta_Box.php:1251, ../includes/Elements/Dual_Color_Header.php:82, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Flip_Box.php:899, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Product_Grid.php:251, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:395, ../includes/Elements/Team_Member.php:408, ../includes/Elements/Testimonial.php:262, ../includes/Elements/Testimonial.php:319, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:133, ../includes/Elements/WpForms.php:270, ../includes/Traits/Controls.php:609, ../includes/Traits/Controls.php:2236, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 +#: ../includes/Elements/Caldera_Forms.php:416, ../includes/Elements/Contact_Form_7.php:330, ../includes/Elements/Contact_Form_7.php:840, ../includes/Elements/Countdown.php:77, ../includes/Elements/Creative_Button.php:237, ../includes/Elements/Cta_Box.php:177, ../includes/Elements/Cta_Box.php:827, ../includes/Elements/Cta_Box.php:1255, ../includes/Elements/Dual_Color_Header.php:86, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Flip_Box.php:903, ../includes/Elements/FluentForm.php:463, ../includes/Elements/Formstack.php:333, ../includes/Elements/GravityForms.php:346, ../includes/Elements/Login_Register.php:579, ../includes/Elements/Login_Register.php:834, ../includes/Elements/Login_Register.php:1021, ../includes/Elements/Login_Register.php:1152, ../includes/Elements/Login_Register.php:2205, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2734, ../includes/Elements/Login_Register.php:2995, ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3432, ../includes/Elements/Login_Register.php:3523, ../includes/Elements/Login_Register.php:3621, ../includes/Elements/Login_Register.php:3823, ../includes/Elements/Login_Register.php:3868, ../includes/Elements/Login_Register.php:3900, ../includes/Elements/Login_Register.php:4331, ../includes/Elements/Login_Register.php:4479, ../includes/Elements/Login_Register.php:4608, ../includes/Elements/Login_Register.php:4868, ../includes/Elements/Login_Register.php:5196, ../includes/Elements/NinjaForms.php:281, ../includes/Elements/Pricing_Table.php:91, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Product_Grid.php:263, ../includes/Elements/Simple_Menu.php:393, ../includes/Elements/Simple_Menu.php:519, ../includes/Elements/Simple_Menu.php:881, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Sticky_Video.php:399, ../includes/Elements/Team_Member.php:427, ../includes/Elements/Testimonial.php:267, ../includes/Elements/Testimonial.php:349, ../includes/Elements/TypeForm.php:195, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:127, ../includes/Elements/WpForms.php:270, ../includes/Extensions/Hover_Effect.php:688, ../includes/Extensions/Hover_Effect.php:1331, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:1478, ../includes/Traits/Controls.php:2352, ../includes/Traits/Login_Registration.php:1257, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../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:4, ../includes/Template/Woo-Product-Gallery/default.php:3 msgid "Default" msgstr "" @@ -2022,59 +1869,63 @@ msgstr "" msgid "Input Width" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:689, ../includes/Elements/Contact_Form_7.php:663, ../includes/Elements/FluentForm.php:738, ../includes/Elements/Formstack.php:937, ../includes/Elements/GravityForms.php:1047, ../includes/Elements/NinjaForms.php:732, ../includes/Elements/Woo_Checkout.php:2437, ../includes/Elements/WpForms.php:702 +#: ../includes/Elements/Caldera_Forms.php:689, ../includes/Elements/Contact_Form_7.php:663, ../includes/Elements/FluentForm.php:738, ../includes/Elements/Formstack.php:937, ../includes/Elements/GravityForms.php:1047, ../includes/Elements/NinjaForms.php:732, ../includes/Elements/Woo_Checkout.php:2478, ../includes/Elements/WpForms.php:702 msgid "Input Height" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:708, ../includes/Elements/Contact_Form_7.php:682, ../includes/Elements/FluentForm.php:757, ../includes/Elements/Formstack.php:956, ../includes/Elements/GravityForms.php:1066, ../includes/Elements/NinjaForms.php:751, ../includes/Elements/WeForms.php:336, ../includes/Elements/WpForms.php:721 +#: ../includes/Elements/Caldera_Forms.php:708, ../includes/Elements/Contact_Form_7.php:682, ../includes/Elements/FluentForm.php:757, ../includes/Elements/Formstack.php:956, ../includes/Elements/GravityForms.php:1066, ../includes/Elements/NinjaForms.php:751, ../includes/Elements/WeForms.php:336, ../includes/Elements/WpForms.php:725 msgid "Textarea Width" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:727, ../includes/Elements/Contact_Form_7.php:701, ../includes/Elements/FluentForm.php:776, ../includes/Elements/Formstack.php:975, ../includes/Elements/GravityForms.php:1085, ../includes/Elements/NinjaForms.php:770, ../includes/Elements/WpForms.php:740 +#: ../includes/Elements/Caldera_Forms.php:727, ../includes/Elements/Contact_Form_7.php:701, ../includes/Elements/FluentForm.php:776, ../includes/Elements/Formstack.php:975, ../includes/Elements/GravityForms.php:1085, ../includes/Elements/NinjaForms.php:770, ../includes/Elements/WpForms.php:744 msgid "Textarea Height" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:798, ../includes/Elements/Contact_Form_7.php:768, ../includes/Elements/FluentForm.php:847, ../includes/Elements/Formstack.php:1046, ../includes/Elements/GravityForms.php:1154, ../includes/Elements/Login_Register.php:3777, ../includes/Elements/NinjaForms.php:842, ../includes/Elements/WpForms.php:815 +#: ../includes/Elements/Caldera_Forms.php:798, ../includes/Elements/Contact_Form_7.php:768, ../includes/Elements/FluentForm.php:847, ../includes/Elements/Formstack.php:1046, ../includes/Elements/GravityForms.php:1154, ../includes/Elements/Login_Register.php:3777, ../includes/Elements/NinjaForms.php:842, ../includes/Elements/WpForms.php:819 msgid "Focus" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:847, ../includes/Elements/Formstack.php:582, ../includes/Elements/GravityForms.php:1203, ../includes/Elements/NinjaForms.php:891, ../includes/Elements/WpForms.php:852 +#: ../includes/Elements/Caldera_Forms.php:847, ../includes/Elements/Formstack.php:582, ../includes/Elements/GravityForms.php:1203, ../includes/Elements/NinjaForms.php:891, ../includes/Elements/WpForms.php:856 msgid "Field Description" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:931, ../includes/Elements/Contact_Form_7.php:969, ../includes/Elements/FluentForm.php:927, ../includes/Elements/Formstack.php:1123, ../includes/Elements/NinjaForms.php:978, ../includes/Elements/WpForms.php:936 +#: ../includes/Elements/Caldera_Forms.php:931, ../includes/Elements/Contact_Form_7.php:969, ../includes/Elements/FluentForm.php:927, ../includes/Elements/Formstack.php:1123, ../includes/Elements/NinjaForms.php:978, ../includes/Elements/WpForms.php:940 msgid "Radio & Checkbox" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:939, ../includes/Elements/Contact_Form_7.php:977, ../includes/Elements/FluentForm.php:935, ../includes/Elements/Formstack.php:1131, ../includes/Elements/GravityForms.php:1481, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/NinjaForms.php:986, ../includes/Elements/WpForms.php:944 +#: ../includes/Elements/Caldera_Forms.php:939, ../includes/Elements/Contact_Form_7.php:977, ../includes/Elements/FluentForm.php:935, ../includes/Elements/Formstack.php:1131, ../includes/Elements/GravityForms.php:1481, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/NinjaForms.php:986, ../includes/Elements/WpForms.php:948 msgid "Custom Styles" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1003, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Feature_List.php:701, ../includes/Elements/FluentForm.php:999, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/GravityForms.php:1741, ../includes/Elements/NinjaForms.php:1050, ../includes/Elements/Sticky_Video.php:613, ../includes/Elements/WpForms.php:1008 +#: ../includes/Elements/Caldera_Forms.php:1003, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Feature_List.php:705, ../includes/Elements/FluentForm.php:999, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/GravityForms.php:1741, ../includes/Elements/NinjaForms.php:1050, ../includes/Elements/Sticky_Video.php:617, ../includes/Elements/WpForms.php:1012 msgid "Border Width" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1040, ../includes/Elements/Contact_Form_7.php:1078, ../includes/Elements/FluentForm.php:1036, ../includes/Elements/Formstack.php:1196, ../includes/Elements/GravityForms.php:1473, ../includes/Elements/GravityForms.php:1582, ../includes/Elements/Login_Register.php:1622, ../includes/Elements/Login_Register.php:4345, ../includes/Elements/NinjaForms.php:1087, ../includes/Elements/NinjaForms.php:1169, ../includes/Elements/WpForms.php:1045 +#: ../includes/Elements/Caldera_Forms.php:1040, ../includes/Elements/Contact_Form_7.php:1078, ../includes/Elements/FluentForm.php:1036, ../includes/Elements/Formstack.php:1196, ../includes/Elements/GravityForms.php:1473, ../includes/Elements/GravityForms.php:1582, ../includes/Elements/Login_Register.php:1622, ../includes/Elements/Login_Register.php:4345, ../includes/Elements/NinjaForms.php:1087, ../includes/Elements/NinjaForms.php:1169, ../includes/Elements/WpForms.php:1049 msgid "Checkbox" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1066, ../includes/Elements/Contact_Form_7.php:1104, ../includes/Elements/FluentForm.php:1062, ../includes/Elements/Formstack.php:1222, ../includes/Elements/GravityForms.php:1778, ../includes/Elements/NinjaForms.php:1114, ../includes/Elements/NinjaForms.php:1225, ../includes/Elements/WpForms.php:1071 +#: ../includes/Elements/Caldera_Forms.php:1066, ../includes/Elements/Contact_Form_7.php:1104, ../includes/Elements/FluentForm.php:1062, ../includes/Elements/Formstack.php:1222, ../includes/Elements/GravityForms.php:1778, ../includes/Elements/NinjaForms.php:1114, ../includes/Elements/NinjaForms.php:1225, ../includes/Elements/WpForms.php:1075 msgid "Radio Buttons" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1094, ../includes/Elements/Contact_Form_7.php:1132, ../includes/Elements/FluentForm.php:1090, ../includes/Elements/Formstack.php:1250, ../includes/Elements/GravityForms.php:1634, ../includes/Elements/GravityForms.php:1830, ../includes/Elements/NinjaForms.php:1143, ../includes/Elements/WpForms.php:1099 +#: ../includes/Elements/Caldera_Forms.php:1094, ../includes/Elements/Contact_Form_7.php:1132, ../includes/Elements/FluentForm.php:1090, ../includes/Elements/Formstack.php:1250, ../includes/Elements/GravityForms.php:1634, ../includes/Elements/GravityForms.php:1830, ../includes/Elements/NinjaForms.php:1143, ../includes/Elements/WpForms.php:1103 msgid "Checked" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1129, ../includes/Elements/Contact_Form_7.php:1166, ../includes/Elements/FluentForm.php:1479, ../includes/Elements/Formstack.php:1365, ../includes/Elements/GravityForms.php:2173, ../includes/Elements/NinjaForms.php:1291, ../includes/Elements/WpForms.php:1134 +#: ../includes/Elements/Caldera_Forms.php:1129, ../includes/Elements/Contact_Form_7.php:1166, ../includes/Elements/FluentForm.php:1479, ../includes/Elements/Formstack.php:1365, ../includes/Elements/GravityForms.php:2173, ../includes/Elements/NinjaForms.php:1291, ../includes/Elements/WpForms.php:1138 msgid "Submit Button" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1168, ../includes/Elements/Contact_Form_7.php:1205, ../includes/Elements/FluentForm.php:1518, ../includes/Elements/Formstack.php:1404, ../includes/Elements/GravityForms.php:2216, ../includes/Elements/NinjaForms.php:1332, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Woo_Checkout.php:703, ../includes/Elements/WpForms.php:1176 +#: ../includes/Elements/Caldera_Forms.php:1168, ../includes/Elements/Contact_Form_7.php:1205, ../includes/Elements/FluentForm.php:1518, ../includes/Elements/Formstack.php:1404, ../includes/Elements/GravityForms.php:2216, ../includes/Elements/NinjaForms.php:1332, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Woo_Checkout.php:719, ../includes/Elements/WpForms.php:1180 msgid "Full Width" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1268, ../includes/Elements/Contact_Form_7.php:1304, ../includes/Elements/FluentForm.php:1619, ../includes/Elements/Formstack.php:1339, ../includes/Elements/Formstack.php:1504, ../includes/Elements/GravityForms.php:2386, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/NinjaForms.php:1442, ../includes/Elements/WpForms.php:1276 +#: ../includes/Elements/Caldera_Forms.php:1169, ../includes/Elements/Contact_Form_7.php:1206, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/Cta_Box.php:178, ../includes/Elements/FluentForm.php:1519, ../includes/Elements/Formstack.php:1405, ../includes/Elements/GravityForms.php:2217, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:580, ../includes/Elements/Login_Register.php:647, ../includes/Elements/Login_Register.php:835, ../includes/Elements/Login_Register.php:1022, ../includes/Elements/Login_Register.php:1153, ../includes/Elements/Login_Register.php:1648, ../includes/Elements/Login_Register.php:2273, ../includes/Elements/Login_Register.php:2382, ../includes/Elements/Login_Register.php:2553, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:2996, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3290, ../includes/Elements/Login_Register.php:3433, ../includes/Elements/Login_Register.php:3524, ../includes/Elements/Login_Register.php:3622, ../includes/Elements/Login_Register.php:3824, ../includes/Elements/Login_Register.php:3869, ../includes/Elements/Login_Register.php:3901, ../includes/Elements/Login_Register.php:4332, ../includes/Elements/Login_Register.php:4480, ../includes/Elements/Login_Register.php:4609, ../includes/Elements/Login_Register.php:4869, ../includes/Elements/Login_Register.php:5197, ../includes/Elements/NinjaForms.php:1333, ../includes/Elements/Sticky_Video.php:400, ../includes/Elements/WpForms.php:1181, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694 +msgid "Custom" +msgstr "" + +#: ../includes/Elements/Caldera_Forms.php:1268, ../includes/Elements/Contact_Form_7.php:1304, ../includes/Elements/FluentForm.php:1619, ../includes/Elements/Formstack.php:1339, ../includes/Elements/Formstack.php:1504, ../includes/Elements/GravityForms.php:2386, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/NinjaForms.php:1442, ../includes/Elements/WpForms.php:1280 msgid "Margin Top" msgstr "" @@ -2086,7 +1937,7 @@ msgstr "" msgid "Error Fields" msgstr "" -#: ../includes/Elements/Caldera_Forms.php:1460, ../includes/Elements/Countdown.php:796, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:1021, ../includes/Elements/Countdown.php:1093, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/WeForms.php:513 +#: ../includes/Elements/Caldera_Forms.php:1460, ../includes/Elements/Countdown.php:800, ../includes/Elements/Countdown.php:881, ../includes/Elements/Countdown.php:953, ../includes/Elements/Countdown.php:1025, ../includes/Elements/Countdown.php:1097, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/WeForms.php:513 msgid "Label Color" msgstr "" @@ -2114,11 +1965,11 @@ msgstr "" msgid "Form Title" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:151, ../includes/Elements/Contact_Form_7.php:181, ../includes/Elements/Flip_Box.php:104, ../includes/Elements/Sticky_Video.php:103 +#: ../includes/Elements/Contact_Form_7.php:151, ../includes/Elements/Contact_Form_7.php:181, ../includes/Elements/Flip_Box.php:108, ../includes/Elements/Sticky_Video.php:107, ../includes/Extensions/Hover_Effect.php:1347 msgid "On" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:152, ../includes/Elements/Contact_Form_7.php:182, ../includes/Elements/Flip_Box.php:105, ../includes/Elements/Sticky_Video.php:104 +#: ../includes/Elements/Contact_Form_7.php:152, ../includes/Elements/Contact_Form_7.php:182, ../includes/Elements/Flip_Box.php:109, ../includes/Elements/Sticky_Video.php:108, ../includes/Extensions/Hover_Effect.php:1348 msgid "Off" msgstr "" @@ -2134,7 +1985,7 @@ msgstr "" msgid "Contact Form 7 is not installed/activated on your site. Please install and activate Contact Form 7 first." msgstr "" -#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:960, ../includes/Elements/Cta_Box.php:1154, ../includes/Elements/Cta_Box.php:1327, ../includes/Elements/Cta_Box.php:1396, ../includes/Elements/Dual_Color_Header.php:819, ../includes/Elements/Dual_Color_Header.php:899, ../includes/Elements/Event_Calendar.php:1956, ../includes/Elements/Event_Calendar.php:2087, ../includes/Elements/Event_Calendar.php:2154, ../includes/Elements/Event_Calendar.php:2208, ../includes/Elements/Event_Calendar.php:2323, ../includes/Elements/Event_Calendar.php:2418, ../includes/Elements/Event_Calendar.php:2516, ../includes/Elements/Event_Calendar.php:2908, ../includes/Elements/Event_Calendar.php:3017, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:379, ../includes/Elements/Filterable_Gallery.php:2359, ../includes/Elements/Filterable_Gallery.php:2580, ../includes/Elements/Flip_Box.php:1402, ../includes/Elements/Flip_Box.php:1486, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:350, ../includes/Elements/Pricing_Table.php:1031, ../includes/Elements/Pricing_Table.php:2009, ../includes/Elements/Pricing_Table.php:2079, ../includes/Elements/Product_Grid.php:1691, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:1770, ../includes/Elements/Product_Grid.php:1785, ../includes/Elements/Product_Grid.php:3095, ../includes/Elements/Product_Grid.php:3152, ../includes/Elements/Progress_Bar.php:388, ../includes/Elements/Team_Member.php:782, ../includes/Elements/Team_Member.php:860, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2173, ../includes/Elements/Woo_Checkout.php:2217, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Product_Carousel.php:2128, ../includes/Elements/Woo_Product_Carousel.php:2185, ../includes/Elements/Woo_Product_Gallery.php:1099, ../includes/Elements/Woo_Product_Gallery.php:1113, ../includes/Elements/Woo_Product_Gallery.php:1171, ../includes/Elements/Woo_Product_Gallery.php:1184, ../includes/Elements/Woo_Product_Gallery.php:1232, ../includes/Elements/Woo_Product_Gallery.php:1399, ../includes/Elements/Woo_Product_Gallery.php:1433, ../includes/Elements/Woo_Product_Gallery.php:1471, ../includes/Elements/Woo_Product_Gallery.php:2367, ../includes/Elements/Woo_Product_Gallery.php:2424, ../includes/Elements/Woo_Product_List.php:1354, ../includes/Elements/Woo_Product_List.php:1979, ../includes/Elements/Woo_Product_List.php:2036, ../includes/Elements/Woo_Product_List.php:2584, ../includes/Elements/Woo_Product_List.php:2630, ../includes/Elements/Woo_Product_List.php:2703, ../includes/Elements/Woo_Product_List.php:2746, ../includes/Elements/Woo_Product_List.php:2808, ../includes/Elements/Woo_Product_List.php:2843, ../includes/Elements/Woo_Product_List.php:3203, ../includes/Elements/Woo_Product_List.php:3260, ../includes/Traits/Controls.php:1849, ../includes/Traits/Controls.php:1961, ../includes/Traits/Controls.php:1907, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 +#: ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/Contact_Form_7.php:1627, ../includes/Elements/Cta_Box.php:964, ../includes/Elements/Cta_Box.php:1158, ../includes/Elements/Cta_Box.php:1331, ../includes/Elements/Cta_Box.php:1400, ../includes/Elements/Dual_Color_Header.php:798, ../includes/Elements/Dual_Color_Header.php:878, ../includes/Elements/Event_Calendar.php:1956, ../includes/Elements/Event_Calendar.php:2087, ../includes/Elements/Event_Calendar.php:2154, ../includes/Elements/Event_Calendar.php:2208, ../includes/Elements/Event_Calendar.php:2323, ../includes/Elements/Event_Calendar.php:2418, ../includes/Elements/Event_Calendar.php:2516, ../includes/Elements/Event_Calendar.php:2908, ../includes/Elements/Event_Calendar.php:3017, ../includes/Elements/Facebook_Feed.php:571, ../includes/Elements/Facebook_Feed.php:584, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:771, ../includes/Elements/Facebook_Feed.php:842, ../includes/Elements/Facebook_Feed.php:880, ../includes/Elements/Facebook_Feed.php:920, ../includes/Elements/Fancy_Text.php:383, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Filterable_Gallery.php:2584, ../includes/Elements/Flip_Box.php:1406, ../includes/Elements/Flip_Box.php:1490, ../includes/Elements/FluentForm.php:1910, ../includes/Elements/FluentForm.php:1935, ../includes/Elements/FluentForm.php:2002, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:643, ../includes/Elements/Formstack.php:1717, ../includes/Elements/Formstack.php:1742, ../includes/Elements/Formstack.php:1808, ../includes/Elements/Formstack.php:1873, ../includes/Elements/Formstack.php:1928, ../includes/Elements/Formstack.php:2011, ../includes/Elements/GravityForms.php:677, ../includes/Elements/Post_Grid.php:363, ../includes/Elements/Pricing_Table.php:1032, ../includes/Elements/Pricing_Table.php:2010, ../includes/Elements/Pricing_Table.php:2080, ../includes/Elements/Product_Grid.php:1803, ../includes/Elements/Product_Grid.php:1819, ../includes/Elements/Product_Grid.php:1882, ../includes/Elements/Product_Grid.php:1897, ../includes/Elements/Product_Grid.php:3236, ../includes/Elements/Product_Grid.php:3293, ../includes/Elements/Progress_Bar.php:392, ../includes/Elements/Team_Member.php:801, ../includes/Elements/Team_Member.php:879, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:934, ../includes/Elements/Woo_Cart.php:1370, ../includes/Elements/Woo_Cart.php:1552, ../includes/Elements/Woo_Cart.php:1784, ../includes/Elements/Woo_Cart.php:2420, ../includes/Elements/Woo_Cart.php:2502, ../includes/Elements/Woo_Cart.php:2590, ../includes/Elements/Woo_Checkout.php:2214, ../includes/Elements/Woo_Checkout.php:2258, ../includes/Elements/Woo_Checkout.php:2302, ../includes/Elements/Woo_Product_Carousel.php:2171, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Gallery.php:1222, ../includes/Elements/Woo_Product_Gallery.php:1236, ../includes/Elements/Woo_Product_Gallery.php:1294, ../includes/Elements/Woo_Product_Gallery.php:1307, ../includes/Elements/Woo_Product_Gallery.php:1355, ../includes/Elements/Woo_Product_Gallery.php:1522, ../includes/Elements/Woo_Product_Gallery.php:1556, ../includes/Elements/Woo_Product_Gallery.php:1594, ../includes/Elements/Woo_Product_Gallery.php:2519, ../includes/Elements/Woo_Product_Gallery.php:2576, ../includes/Elements/Woo_Product_List.php:1500, ../includes/Elements/Woo_Product_List.php:2125, ../includes/Elements/Woo_Product_List.php:2182, ../includes/Elements/Woo_Product_List.php:2730, ../includes/Elements/Woo_Product_List.php:2776, ../includes/Elements/Woo_Product_List.php:2849, ../includes/Elements/Woo_Product_List.php:2892, ../includes/Elements/Woo_Product_List.php:2954, ../includes/Elements/Woo_Product_List.php:2989, ../includes/Elements/Woo_Product_List.php:3349, ../includes/Elements/Woo_Product_List.php:3406, ../includes/Traits/Controls.php:1965, ../includes/Traits/Controls.php:2077, ../includes/Traits/Controls.php:2023, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712 msgid "Background" msgstr "" @@ -2146,11 +1997,11 @@ msgstr "" msgid "Display" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:841, ../includes/Elements/Cta_Box.php:231 +#: ../includes/Elements/Contact_Form_7.php:841, ../includes/Elements/Cta_Box.php:235 msgid "Inherit" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:842, ../includes/Elements/Cta_Box.php:232 +#: ../includes/Elements/Contact_Form_7.php:842, ../includes/Elements/Cta_Box.php:236 msgid "Initial" msgstr "" @@ -2174,7 +2025,7 @@ msgstr "" msgid "Alert" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:1530, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Woo_Checkout.php:2429 +#: ../includes/Elements/Contact_Form_7.php:1530, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Woo_Checkout.php:2470 msgid "Fields" msgstr "" @@ -2182,7 +2033,7 @@ msgstr "" msgid "After Submit Feedback" msgstr "" -#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:782, ../includes/Elements/Dual_Color_Header.php:862, ../includes/Elements/Flip_Box.php:898, ../includes/Elements/Info_Box.php:599, ../includes/Elements/Info_Box.php:654, ../includes/Elements/Info_Box.php:822, ../includes/Elements/Info_Box.php:902, ../includes/Elements/Info_Box.php:1040, ../includes/Elements/Info_Box.php:1136, ../includes/Elements/Post_Grid.php:322, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Woo_Product_Gallery.php:1056, ../includes/Elements/Woo_Product_Gallery.php:1310, ../includes/Elements/Woo_Product_Gallery.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1629 +#: ../includes/Elements/Contact_Form_7.php:1649, ../includes/Elements/Dual_Color_Header.php:786, ../includes/Elements/Dual_Color_Header.php:866, ../includes/Elements/Flip_Box.php:902, ../includes/Elements/Info_Box.php:604, ../includes/Elements/Info_Box.php:659, ../includes/Elements/Info_Box.php:827, ../includes/Elements/Info_Box.php:907, ../includes/Elements/Info_Box.php:1045, ../includes/Elements/Info_Box.php:1141, ../includes/Elements/Post_Grid.php:335, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Woo_Product_Gallery.php:1179, ../includes/Elements/Woo_Product_Gallery.php:1433, ../includes/Elements/Woo_Product_Gallery.php:1495, ../includes/Traits/Woo_Product_Comparable.php:1629 msgid "Radius" msgstr "" @@ -2190,11 +2041,11 @@ msgstr "" msgid "Ticker Settings" msgstr "" -#: ../includes/Elements/Content_Ticker.php:80, ../includes/Traits/Controls.php:542 +#: ../includes/Elements/Content_Ticker.php:80, ../includes/Traits/Controls.php:584, ../includes/Traits/Controls.php:571 msgid "Template Layout" msgstr "" -#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:367, ../includes/Elements/Progress_Bar.php:197, ../includes/Elements/Woo_Product_Gallery.php:390, ../includes/Elements/Woo_Product_List.php:398, ../includes/Traits/Controls.php:30 +#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:422, ../includes/Elements/Progress_Bar.php:201, ../includes/Elements/Woo_Product_Gallery.php:417, ../includes/Elements/Woo_Product_List.php:450, ../includes/Traits/Controls.php:30 msgid "Dynamic" msgstr "" @@ -2218,11 +2069,11 @@ msgstr "" msgid "Animation Settings" msgstr "" -#: ../includes/Elements/Content_Ticker.php:162, ../includes/Elements/Woo_Product_Carousel.php:504 +#: ../includes/Elements/Content_Ticker.php:162, ../includes/Elements/Woo_Product_Carousel.php:524 msgid "Sets transition effect" msgstr "" -#: ../includes/Elements/Content_Ticker.php:167, ../includes/Elements/Fancy_Text.php:216, ../includes/Elements/Pricing_Table.php:464, ../includes/Elements/Simple_Menu.php:630 +#: ../includes/Elements/Content_Ticker.php:167, ../includes/Elements/Fancy_Text.php:220, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Simple_Menu.php:630 msgid "Fade" msgstr "" @@ -2230,15 +2081,15 @@ msgstr "" msgid "Slider Speed" msgstr "" -#: ../includes/Elements/Content_Ticker.php:207, ../includes/Elements/Woo_Product_Carousel.php:642 +#: ../includes/Elements/Content_Ticker.php:207, ../includes/Elements/Woo_Product_Carousel.php:662 msgid "Autoplay Speed" msgstr "" -#: ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Woo_Product_Carousel.php:662 +#: ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Woo_Product_Carousel.php:682 msgid "Pause On Hover" msgstr "" -#: ../includes/Elements/Content_Ticker.php:289, ../includes/Elements/Image_Accordion.php:82, ../includes/Elements/SVG_Draw.php:323, ../includes/Elements/Woo_Product_Carousel.php:767, ../includes/Elements/Woo_Product_List.php:654 +#: ../includes/Elements/Content_Ticker.php:289, ../includes/Elements/Image_Accordion.php:86, ../includes/Elements/SVG_Draw.php:327, ../includes/Elements/Woo_Product_Carousel.php:787, ../includes/Elements/Woo_Product_List.php:734 msgid "Direction" msgstr "" @@ -2262,7 +2113,7 @@ msgstr "" msgid "Choose Next Arrow" msgstr "" -#: ../includes/Elements/Content_Ticker.php:532, ../includes/Elements/Woo_Product_Carousel.php:2693 +#: ../includes/Elements/Content_Ticker.php:532, ../includes/Elements/Woo_Product_Carousel.php:2736 msgid "Arrows Size" msgstr "" @@ -2270,355 +2121,355 @@ msgstr "" msgid "No content found!" msgstr "" -#: ../includes/Elements/Countdown.php:63 +#: ../includes/Elements/Countdown.php:67 msgid "Timer Settings" msgstr "" -#: ../includes/Elements/Countdown.php:70, ../includes/Elements/Login_Register.php:1931, ../includes/Elements/NFT_Gallery.php:104, ../includes/Traits/Woo_Product_Comparable.php:241 +#: ../includes/Elements/Countdown.php:74, ../includes/Elements/Login_Register.php:1931, ../includes/Elements/NFT_Gallery.php:104, ../includes/Traits/Woo_Product_Comparable.php:241 msgid "Type" msgstr "" -#: ../includes/Elements/Countdown.php:74 +#: ../includes/Elements/Countdown.php:78 msgid "Evergreen Timer" msgstr "" -#: ../includes/Elements/Countdown.php:83, ../includes/Elements/Countdown.php:86, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:298, ../includes/Elements/Countdown.php:901 +#: ../includes/Elements/Countdown.php:87, ../includes/Elements/Countdown.php:90, ../includes/Elements/Countdown.php:130, ../includes/Elements/Countdown.php:302, ../includes/Elements/Countdown.php:905 msgid "Hours" msgstr "" -#: ../includes/Elements/Countdown.php:96, ../includes/Elements/Countdown.php:99, ../includes/Elements/Countdown.php:327, ../includes/Elements/Countdown.php:973 +#: ../includes/Elements/Countdown.php:100, ../includes/Elements/Countdown.php:103, ../includes/Elements/Countdown.php:331, ../includes/Elements/Countdown.php:977 msgid "Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:109 +#: ../includes/Elements/Countdown.php:113 msgid "Recurring Countdown" msgstr "" -#: ../includes/Elements/Countdown.php:122 +#: ../includes/Elements/Countdown.php:126 msgid "Restart After (In Hours)" msgstr "" -#: ../includes/Elements/Countdown.php:125 +#: ../includes/Elements/Countdown.php:129 msgid "Specify how much time it will take to restart the countdown. If you set 0, the countdown will restart immediately." msgstr "" -#: ../includes/Elements/Countdown.php:137 +#: ../includes/Elements/Countdown.php:141 msgid "Recurring Countdown End Date" msgstr "" -#: ../includes/Elements/Countdown.php:140 +#: ../includes/Elements/Countdown.php:144 msgid "Set the countdown end time" msgstr "" -#: ../includes/Elements/Countdown.php:151 +#: ../includes/Elements/Countdown.php:155 msgid "Countdown Due Date" msgstr "" -#: ../includes/Elements/Countdown.php:154 +#: ../includes/Elements/Countdown.php:158 msgid "Set the due date and time" msgstr "" -#: ../includes/Elements/Countdown.php:164 +#: ../includes/Elements/Countdown.php:168 msgid "Label Position" msgstr "" -#: ../includes/Elements/Countdown.php:168, ../includes/Elements/Login_Register.php:4913, ../includes/Elements/Login_Register.php:5242, ../includes/Traits/Controls.php:449 +#: ../includes/Elements/Countdown.php:172, ../includes/Elements/Login_Register.php:4913, ../includes/Elements/Login_Register.php:5242, ../includes/Traits/Controls.php:455 msgid "Block" msgstr "" -#: ../includes/Elements/Countdown.php:177 +#: ../includes/Elements/Countdown.php:181 msgid "Left spacing for Labels" msgstr "" -#: ../includes/Elements/Countdown.php:179 +#: ../includes/Elements/Countdown.php:183 msgid "Use when you select inline labels" msgstr "" -#: ../includes/Elements/Countdown.php:236, ../includes/Elements/Event_Calendar.php:2532 +#: ../includes/Elements/Countdown.php:240, ../includes/Elements/Event_Calendar.php:2532 msgid "List view" msgstr "" -#: ../includes/Elements/Countdown.php:240 +#: ../includes/Elements/Countdown.php:244 msgid "Grid View" msgstr "" -#: ../includes/Elements/Countdown.php:254 +#: ../includes/Elements/Countdown.php:258 msgid "Display Days" msgstr "" -#: ../includes/Elements/Countdown.php:264 +#: ../includes/Elements/Countdown.php:268 msgid "Custom Label for Days" msgstr "" -#: ../includes/Elements/Countdown.php:269, ../includes/Elements/Countdown.php:829 +#: ../includes/Elements/Countdown.php:273, ../includes/Elements/Countdown.php:833 msgid "Days" msgstr "" -#: ../includes/Elements/Countdown.php:270, ../includes/Elements/Countdown.php:299, ../includes/Elements/Countdown.php:328, ../includes/Elements/Countdown.php:357 +#: ../includes/Elements/Countdown.php:274, ../includes/Elements/Countdown.php:303, ../includes/Elements/Countdown.php:332, ../includes/Elements/Countdown.php:361 msgid "Leave blank to hide" msgstr "" -#: ../includes/Elements/Countdown.php:283 +#: ../includes/Elements/Countdown.php:287 msgid "Display Hours" msgstr "" -#: ../includes/Elements/Countdown.php:293 +#: ../includes/Elements/Countdown.php:297 msgid "Custom Label for Hours" msgstr "" -#: ../includes/Elements/Countdown.php:312 +#: ../includes/Elements/Countdown.php:316 msgid "Display Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:322 +#: ../includes/Elements/Countdown.php:326 msgid "Custom Label for Minutes" msgstr "" -#: ../includes/Elements/Countdown.php:341 +#: ../includes/Elements/Countdown.php:345 msgid "Display Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:351 +#: ../includes/Elements/Countdown.php:355 msgid "Custom Label for Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:356, ../includes/Elements/Countdown.php:1045 +#: ../includes/Elements/Countdown.php:360, ../includes/Elements/Countdown.php:1049 msgid "Seconds" msgstr "" -#: ../includes/Elements/Countdown.php:370 +#: ../includes/Elements/Countdown.php:374 msgid "Countdown Separator" msgstr "" -#: ../includes/Elements/Countdown.php:378 +#: ../includes/Elements/Countdown.php:382 msgid "Display Separator" msgstr "" -#: ../includes/Elements/Countdown.php:388 +#: ../includes/Elements/Countdown.php:392 msgid "Separator Style" msgstr "" -#: ../includes/Elements/Countdown.php:392, ../includes/Elements/Feature_List.php:517, ../includes/Elements/GravityForms.php:1294, ../includes/Elements/Sticky_Video.php:599, ../includes/Extensions/Table_of_Content.php:1176 +#: ../includes/Elements/Countdown.php:396, ../includes/Elements/Feature_List.php:521, ../includes/Elements/GravityForms.php:1294, ../includes/Elements/Sticky_Video.php:603, ../includes/Extensions/Table_of_Content.php:1261 msgid "Solid" msgstr "" -#: ../includes/Elements/Countdown.php:393, ../includes/Elements/Feature_List.php:519, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/Sticky_Video.php:601, ../includes/Extensions/Table_of_Content.php:1178 +#: ../includes/Elements/Countdown.php:397, ../includes/Elements/Feature_List.php:523, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/Sticky_Video.php:605, ../includes/Extensions/Table_of_Content.php:1263 msgid "Dotted" msgstr "" -#: ../includes/Elements/Countdown.php:404 +#: ../includes/Elements/Countdown.php:408 msgid "Position Top" msgstr "" -#: ../includes/Elements/Countdown.php:430 +#: ../includes/Elements/Countdown.php:434 msgid "Position Left" msgstr "" -#: ../includes/Elements/Countdown.php:457, ../includes/Elements/Filterable_Gallery.php:2559 +#: ../includes/Elements/Countdown.php:461, ../includes/Elements/Filterable_Gallery.php:2563 msgid "Separator Color" msgstr "" -#: ../includes/Elements/Countdown.php:488 +#: ../includes/Elements/Countdown.php:492 msgid "Expire Action" msgstr "" -#: ../includes/Elements/Countdown.php:495 +#: ../includes/Elements/Countdown.php:499 msgid "Expire Type" msgstr "" -#: ../includes/Elements/Countdown.php:498 +#: ../includes/Elements/Countdown.php:502 msgid "Choose whether if you want to set a message or a redirect link" msgstr "" -#: ../includes/Elements/Countdown.php:501, ../includes/Elements/Woo_Cart.php:2578, ../includes/Elements/Woo_Checkout.php:518, ../includes/Elements/Woo_Checkout.php:2254 +#: ../includes/Elements/Countdown.php:505, ../includes/Elements/Woo_Cart.php:2578, ../includes/Elements/Woo_Checkout.php:534, ../includes/Elements/Woo_Checkout.php:2295 msgid "Message" msgstr "" -#: ../includes/Elements/Countdown.php:502 +#: ../includes/Elements/Countdown.php:506 msgid "Redirection Link" msgstr "" -#: ../includes/Elements/Countdown.php:512 +#: ../includes/Elements/Countdown.php:516 msgid "On Expiry Title" msgstr "" -#: ../includes/Elements/Countdown.php:515 +#: ../includes/Elements/Countdown.php:519 msgid "Countdown is finished!" msgstr "" -#: ../includes/Elements/Countdown.php:525 +#: ../includes/Elements/Countdown.php:529 msgid "On Expiry Content" msgstr "" -#: ../includes/Elements/Countdown.php:527 +#: ../includes/Elements/Countdown.php:531 msgid "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s" msgstr "" -#: ../includes/Elements/Countdown.php:537 +#: ../includes/Elements/Countdown.php:541 msgid "Redirect To (URL)" msgstr "" -#: ../includes/Elements/Countdown.php:594 +#: ../includes/Elements/Countdown.php:598 msgid "Countdown Styles" msgstr "" -#: ../includes/Elements/Countdown.php:602, ../includes/Elements/Facebook_Feed.php:510 +#: ../includes/Elements/Countdown.php:606, ../includes/Elements/Facebook_Feed.php:510 msgid "Use Gradient Background?" msgstr "" -#: ../includes/Elements/Countdown.php:614, ../includes/Elements/Countdown.php:626 +#: ../includes/Elements/Countdown.php:618, ../includes/Elements/Countdown.php:630 msgid "Box Background Color" msgstr "" -#: ../includes/Elements/Countdown.php:640, ../includes/Elements/Countdown.php:663 +#: ../includes/Elements/Countdown.php:644, ../includes/Elements/Countdown.php:667 msgid "Space Between Boxes" msgstr "" -#: ../includes/Elements/Countdown.php:687 +#: ../includes/Elements/Countdown.php:691 msgid "Space Below Container" msgstr "" -#: ../includes/Elements/Countdown.php:749, ../includes/Elements/Dual_Color_Header.php:448, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Flip_Box.php:1190, ../includes/Elements/Image_Accordion.php:489, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Product_Grid.php:1313, ../includes/Elements/Team_Member.php:569, ../includes/Elements/Twitter_Feed.php:959, ../includes/Elements/Woo_Product_Carousel.php:1182, ../includes/Elements/Woo_Product_Gallery.php:802, ../includes/Elements/Woo_Product_List.php:1924 +#: ../includes/Elements/Countdown.php:753, ../includes/Elements/Dual_Color_Header.php:452, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Flip_Box.php:1194, ../includes/Elements/Image_Accordion.php:493, ../includes/Elements/Info_Box.php:1356, ../includes/Elements/Product_Grid.php:1425, ../includes/Elements/Team_Member.php:588, ../includes/Elements/Twitter_Feed.php:959, ../includes/Elements/Woo_Product_Carousel.php:1225, ../includes/Elements/Woo_Product_Gallery.php:925, ../includes/Elements/Woo_Product_List.php:2070 msgid "Color & Typography" msgstr "" -#: ../includes/Elements/Countdown.php:757 +#: ../includes/Elements/Countdown.php:761 msgid "Countdown Digits" msgstr "" -#: ../includes/Elements/Countdown.php:765 +#: ../includes/Elements/Countdown.php:769 msgid "Digits Color" msgstr "" -#: ../includes/Elements/Countdown.php:788 +#: ../includes/Elements/Countdown.php:792 msgid "Countdown Labels" msgstr "" -#: ../includes/Elements/Countdown.php:821 +#: ../includes/Elements/Countdown.php:825 msgid "Individual Box Styling" msgstr "" -#: ../includes/Elements/Countdown.php:865, ../includes/Elements/Countdown.php:937, ../includes/Elements/Countdown.php:1009, ../includes/Elements/Countdown.php:1081 +#: ../includes/Elements/Countdown.php:869, ../includes/Elements/Countdown.php:941, ../includes/Elements/Countdown.php:1013, ../includes/Elements/Countdown.php:1085 msgid "Digit Color" msgstr "" -#: ../includes/Elements/Countdown.php:1119 +#: ../includes/Elements/Countdown.php:1123 msgid "Expire Message" msgstr "" -#: ../includes/Elements/Countdown.php:1157, ../includes/Elements/Cta_Box.php:692, ../includes/Elements/Dual_Color_Header.php:456, ../includes/Elements/Flip_Box.php:1206, ../includes/Elements/Flip_Box.php:1274, ../includes/Elements/Info_Box.php:1365, ../includes/Elements/Post_Grid.php:589, ../includes/Elements/Post_Timeline.php:295, ../includes/Elements/Pricing_Table.php:932, ../includes/Elements/Twitter_Feed.php:967 +#: ../includes/Elements/Countdown.php:1161, ../includes/Elements/Cta_Box.php:696, ../includes/Elements/Dual_Color_Header.php:460, ../includes/Elements/Flip_Box.php:1210, ../includes/Elements/Flip_Box.php:1278, ../includes/Elements/Info_Box.php:1370, ../includes/Elements/Post_Grid.php:602, ../includes/Elements/Post_Timeline.php:295, ../includes/Elements/Pricing_Table.php:933, ../includes/Elements/Twitter_Feed.php:967 msgid "Title Style" msgstr "" -#: ../includes/Elements/Countdown.php:1166, ../includes/Elements/Event_Calendar.php:2725, ../includes/Elements/FluentForm.php:1865, ../includes/Elements/Formstack.php:1638, ../includes/Elements/Info_Box.php:1475, ../includes/Elements/Post_Grid.php:598, ../includes/Elements/Post_Timeline.php:304, ../includes/Elements/Product_Grid.php:2635, ../includes/Elements/Product_Grid.php:2990, ../includes/Elements/Progress_Bar.php:793, ../includes/Elements/Twitter_Feed.php:871, ../includes/Elements/Woo_Checkout.php:2555, ../includes/Elements/Woo_Checkout.php:2655, ../includes/Elements/Woo_Product_Carousel.php:1659, ../includes/Elements/Woo_Product_Carousel.php:2025, ../includes/Elements/Woo_Product_Gallery.php:1867, ../includes/Elements/Woo_Product_Gallery.php:2262, ../includes/Elements/Woo_Product_List.php:3098, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249 +#: ../includes/Elements/Countdown.php:1170, ../includes/Elements/Event_Calendar.php:2725, ../includes/Elements/FluentForm.php:1865, ../includes/Elements/Formstack.php:1638, ../includes/Elements/Info_Box.php:1480, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Timeline.php:304, ../includes/Elements/Product_Grid.php:2776, ../includes/Elements/Product_Grid.php:3131, ../includes/Elements/Progress_Bar.php:797, ../includes/Elements/Twitter_Feed.php:871, ../includes/Elements/Woo_Checkout.php:2600, ../includes/Elements/Woo_Checkout.php:2700, ../includes/Elements/Woo_Product_Carousel.php:1702, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Gallery.php:2019, ../includes/Elements/Woo_Product_Gallery.php:2414, ../includes/Elements/Woo_Product_List.php:3244, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249 msgid "Title Color" msgstr "" -#: ../includes/Elements/Creative_Button.php:73 +#: ../includes/Elements/Creative_Button.php:77 msgid "Button Content" msgstr "" -#: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:423 +#: ../includes/Elements/Creative_Button.php:91, ../includes/Elements/Info_Box.php:428 msgid "Enter button text" msgstr "" -#: ../includes/Elements/Creative_Button.php:88, ../includes/Elements/Info_Box.php:424 +#: ../includes/Elements/Creative_Button.php:92, ../includes/Elements/Info_Box.php:429 msgid "Enter button text here" msgstr "" -#: ../includes/Elements/Creative_Button.php:98 +#: ../includes/Elements/Creative_Button.php:102 msgid "Button Secondary Text" msgstr "" -#: ../includes/Elements/Creative_Button.php:105 +#: ../includes/Elements/Creative_Button.php:109 msgid "Enter button secondary text" msgstr "" -#: ../includes/Elements/Creative_Button.php:106 +#: ../includes/Elements/Creative_Button.php:110 msgid "Enter button secondary text here" msgstr "" -#: ../includes/Elements/Creative_Button.php:116, ../includes/Elements/Info_Box.php:437 +#: ../includes/Elements/Creative_Button.php:120, ../includes/Elements/Info_Box.php:442 msgid "Link URL" msgstr "" -#: ../includes/Elements/Creative_Button.php:166, ../includes/Elements/Filterable_Gallery.php:3030, ../includes/Elements/Info_Box.php:485, ../includes/Elements/NFT_Gallery.php:2216, ../includes/Elements/Pricing_Table.php:601, ../includes/Elements/Twitter_Feed.php:1369 +#: ../includes/Elements/Creative_Button.php:170, ../includes/Elements/Filterable_Gallery.php:3034, ../includes/Elements/Info_Box.php:490, ../includes/Elements/NFT_Gallery.php:2216, ../includes/Elements/Pricing_Table.php:602, ../includes/Elements/Twitter_Feed.php:1369 msgid "Icon Spacing" msgstr "" -#: ../includes/Elements/Creative_Button.php:221 +#: ../includes/Elements/Creative_Button.php:225 msgid "Button Effects & Styles" msgstr "" -#: ../includes/Elements/Creative_Button.php:229 +#: ../includes/Elements/Creative_Button.php:233 msgid "Set Button Effect" msgstr "" -#: ../includes/Elements/Creative_Button.php:234 +#: ../includes/Elements/Creative_Button.php:238 msgid "Winona" msgstr "" -#: ../includes/Elements/Creative_Button.php:235 +#: ../includes/Elements/Creative_Button.php:239 msgid "Ujarak" msgstr "" -#: ../includes/Elements/Creative_Button.php:236 +#: ../includes/Elements/Creative_Button.php:240 msgid "Wayra" msgstr "" -#: ../includes/Elements/Creative_Button.php:237 +#: ../includes/Elements/Creative_Button.php:241 msgid "Tamaya" msgstr "" -#: ../includes/Elements/Creative_Button.php:238 +#: ../includes/Elements/Creative_Button.php:242 msgid "Rayen" msgstr "" -#: ../includes/Elements/Creative_Button.php:239 +#: ../includes/Elements/Creative_Button.php:243 msgid "Pipaluk (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:240 +#: ../includes/Elements/Creative_Button.php:244 msgid "Moema (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:241 +#: ../includes/Elements/Creative_Button.php:245 msgid "Wave (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:242 +#: ../includes/Elements/Creative_Button.php:246 msgid "Aylen (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:243 +#: ../includes/Elements/Creative_Button.php:247 msgid "Saqui (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:244 +#: ../includes/Elements/Creative_Button.php:248 msgid "Wapasha (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:245 +#: ../includes/Elements/Creative_Button.php:249 msgid "Nuka (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:246 +#: ../includes/Elements/Creative_Button.php:250 msgid "Antiman (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:247 +#: ../includes/Elements/Creative_Button.php:251 msgid "Quidel (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:248 +#: ../includes/Elements/Creative_Button.php:252 msgid "Shikoba (Pro)" msgstr "" -#: ../includes/Elements/Creative_Button.php:256, ../includes/Elements/Cta_Box.php:864, ../includes/Elements/Product_Grid.php:1659, ../includes/Elements/Team_Member.php:738, ../includes/Elements/Testimonial.php:277, ../includes/Elements/Woo_Product_Gallery.php:1069 +#: ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Product_Grid.php:1771, ../includes/Elements/Team_Member.php:757, ../includes/Elements/Testimonial.php:305, ../includes/Elements/Woo_Product_Gallery.php:1192 msgid "Use Gradient Background" msgstr "" -#: ../includes/Elements/Creative_Button.php:537, ../includes/Elements/Info_Box.php:1218, ../includes/Elements/NFT_Gallery.php:1917 +#: ../includes/Elements/Creative_Button.php:541, ../includes/Elements/Info_Box.php:1223, ../includes/Elements/NFT_Gallery.php:1917 msgid "Button Padding" msgstr "" @@ -2626,451 +2477,451 @@ msgstr "" msgid "Call to Action" msgstr "" -#: ../includes/Elements/Cta_Box.php:85 +#: ../includes/Elements/Cta_Box.php:89 msgid "Basic" msgstr "" -#: ../includes/Elements/Cta_Box.php:86 +#: ../includes/Elements/Cta_Box.php:90 msgid "Flex Grid" msgstr "" -#: ../includes/Elements/Cta_Box.php:87 +#: ../includes/Elements/Cta_Box.php:91 msgid "Flex Grid with Icon" msgstr "" -#: ../includes/Elements/Cta_Box.php:95 +#: ../includes/Elements/Cta_Box.php:99 msgid "Content Preset" msgstr "" -#: ../includes/Elements/Cta_Box.php:132 +#: ../includes/Elements/Cta_Box.php:136 msgid "Color Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:138, ../includes/Elements/Cta_Box.php:150, ../includes/Elements/Image_Accordion.php:185 +#: ../includes/Elements/Cta_Box.php:142, ../includes/Elements/Cta_Box.php:154, ../includes/Elements/Image_Accordion.php:189 msgid "Background Image" msgstr "" -#: ../includes/Elements/Cta_Box.php:139 +#: ../includes/Elements/Cta_Box.php:143 msgid "Background Fixed Image" msgstr "" -#: ../includes/Elements/Cta_Box.php:171 +#: ../includes/Elements/Cta_Box.php:175 msgid "Background Image Options" msgstr "" -#: ../includes/Elements/Cta_Box.php:187, ../includes/Elements/Cta_Box.php:192 +#: ../includes/Elements/Cta_Box.php:191, ../includes/Elements/Cta_Box.php:196 msgid "Repeat" msgstr "" -#: ../includes/Elements/Cta_Box.php:191 +#: ../includes/Elements/Cta_Box.php:195 msgid "No Repeat" msgstr "" -#: ../includes/Elements/Cta_Box.php:193 +#: ../includes/Elements/Cta_Box.php:197 msgid "Repeat X" msgstr "" -#: ../includes/Elements/Cta_Box.php:194 +#: ../includes/Elements/Cta_Box.php:198 msgid "Repeat Y" msgstr "" -#: ../includes/Elements/Cta_Box.php:195 +#: ../includes/Elements/Cta_Box.php:199 msgid "Round" msgstr "" -#: ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2239, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Elements/Woo_Product_List.php:620, ../includes/Elements/Woo_Product_List.php:637, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Traits/Controls.php:652, ../includes/Traits/Controls.php:669, ../includes/Traits/Controls.php:2215, ../includes/Traits/Woo_Product_Comparable.php:1473 +#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Sticky_Video.php:120, ../includes/Elements/Woo_Product_Carousel.php:2282, ../includes/Elements/Woo_Product_Gallery.php:177, ../includes/Elements/Woo_Product_List.php:686, ../includes/Elements/Woo_Product_List.php:710, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:550, ../includes/Extensions/Table_of_Content.php:579, ../includes/Traits/Controls.php:695, ../includes/Traits/Controls.php:722, ../includes/Traits/Controls.php:2348, ../includes/Traits/Woo_Product_Comparable.php:1473 msgid "Position" msgstr "" -#: ../includes/Elements/Cta_Box.php:210, ../includes/Elements/Feature_List.php:328, ../includes/Elements/Feature_List.php:352, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:488, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Tooltip.php:296, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:673, ../includes/Traits/Controls.php:2343 +#: ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Feature_List.php:332, ../includes/Elements/Feature_List.php:356, ../includes/Elements/Flip_Box.php:351, ../includes/Elements/Flip_Box.php:591, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Login_Register.php:1405, ../includes/Elements/Post_Timeline.php:490, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Tooltip.php:300, ../includes/Elements/Twitter_Feed.php:645, ../includes/Extensions/Reading_Progress.php:115, ../includes/Extensions/Table_of_Content.php:584, ../includes/Traits/Controls.php:726, ../includes/Traits/Controls.php:2476 msgid "Top" msgstr "" -#: ../includes/Elements/Cta_Box.php:213, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:496, ../includes/Elements/Pricing_Table.php:431, ../includes/Elements/Tooltip.php:297, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:675, ../includes/Traits/Controls.php:2347 +#: ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Feature_List.php:364, ../includes/Elements/Flip_Box.php:359, ../includes/Elements/Flip_Box.php:599, ../includes/Elements/Image_Accordion.php:144, ../includes/Elements/Info_Box.php:142, ../includes/Elements/Post_Timeline.php:498, ../includes/Elements/Pricing_Table.php:435, ../includes/Elements/Tooltip.php:301, ../includes/Elements/Twitter_Feed.php:653, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Extensions/Table_of_Content.php:585, ../includes/Traits/Controls.php:734, ../includes/Traits/Controls.php:2480 msgid "Bottom" msgstr "" -#: ../includes/Elements/Cta_Box.php:229 +#: ../includes/Elements/Cta_Box.php:233 msgid "Cover" msgstr "" -#: ../includes/Elements/Cta_Box.php:230 +#: ../includes/Elements/Cta_Box.php:234 msgid "Contain" msgstr "" -#: ../includes/Elements/Cta_Box.php:245 +#: ../includes/Elements/Cta_Box.php:249 msgid "Background Overlay" msgstr "" -#: ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Pricing_Table.php:174 +#: ../includes/Elements/Cta_Box.php:285, ../includes/Elements/Pricing_Table.php:178 msgid "Sub Title" msgstr "" -#: ../includes/Elements/Cta_Box.php:303 +#: ../includes/Elements/Cta_Box.php:307 msgid "Sample Call to Action Heading" msgstr "" -#: ../includes/Elements/Cta_Box.php:361 +#: ../includes/Elements/Cta_Box.php:365 msgid "

Add a strong one liner supporting the heading above and giving users a reason to click on the button below.

" msgstr "" -#: ../includes/Elements/Cta_Box.php:373 +#: ../includes/Elements/Cta_Box.php:377 msgid "Button Preset" msgstr "" -#: ../includes/Elements/Cta_Box.php:407 +#: ../includes/Elements/Cta_Box.php:411 msgid "Primary Button Text" msgstr "" -#: ../includes/Elements/Cta_Box.php:411 +#: ../includes/Elements/Cta_Box.php:415 msgid "Click Here" msgstr "" -#: ../includes/Elements/Cta_Box.php:421 +#: ../includes/Elements/Cta_Box.php:425 msgid "Primary Button Link" msgstr "" -#: ../includes/Elements/Cta_Box.php:438 +#: ../includes/Elements/Cta_Box.php:442 msgid "Show Secondary Button" msgstr "" -#: ../includes/Elements/Cta_Box.php:448 +#: ../includes/Elements/Cta_Box.php:452 msgid "Secondary Button Text" msgstr "" -#: ../includes/Elements/Cta_Box.php:452 +#: ../includes/Elements/Cta_Box.php:456 msgid "Click Now" msgstr "" -#: ../includes/Elements/Cta_Box.php:465 +#: ../includes/Elements/Cta_Box.php:469 msgid "Secondary Button Link" msgstr "" -#: ../includes/Elements/Cta_Box.php:518 +#: ../includes/Elements/Cta_Box.php:522 msgid "Call to Action Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:526 +#: ../includes/Elements/Cta_Box.php:530 msgid "Set max width for the container?" msgstr "" -#: ../includes/Elements/Cta_Box.php:528, ../includes/Elements/Cta_Box.php:866, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Twitter_Feed.php:310, ../includes/Elements/Twitter_Feed.php:331, ../includes/Elements/Twitter_Feed.php:343, ../includes/Elements/Twitter_Feed.php:355, ../includes/Elements/Twitter_Feed.php:383, ../includes/Elements/Twitter_Feed.php:395 +#: ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:870, ../includes/Elements/Data_Table.php:144, ../includes/Elements/Twitter_Feed.php:310, ../includes/Elements/Twitter_Feed.php:331, ../includes/Elements/Twitter_Feed.php:343, ../includes/Elements/Twitter_Feed.php:355, ../includes/Elements/Twitter_Feed.php:383, ../includes/Elements/Twitter_Feed.php:395 msgid "yes" msgstr "" -#: ../includes/Elements/Cta_Box.php:529, ../includes/Elements/Data_Table.php:141, ../includes/Elements/Twitter_Feed.php:311, ../includes/Elements/Twitter_Feed.php:332, ../includes/Elements/Twitter_Feed.php:344, ../includes/Elements/Twitter_Feed.php:356, ../includes/Elements/Twitter_Feed.php:384, ../includes/Elements/Twitter_Feed.php:396 +#: ../includes/Elements/Cta_Box.php:533, ../includes/Elements/Data_Table.php:145, ../includes/Elements/Twitter_Feed.php:311, ../includes/Elements/Twitter_Feed.php:332, ../includes/Elements/Twitter_Feed.php:344, ../includes/Elements/Twitter_Feed.php:356, ../includes/Elements/Twitter_Feed.php:384, ../includes/Elements/Twitter_Feed.php:396 msgid "no" msgstr "" -#: ../includes/Elements/Cta_Box.php:537 +#: ../includes/Elements/Cta_Box.php:541 msgid "Container Max Width (% or px)" msgstr "" -#: ../includes/Elements/Cta_Box.php:580 +#: ../includes/Elements/Cta_Box.php:584 msgid "Background Color Opacity" msgstr "" -#: ../includes/Elements/Cta_Box.php:684 +#: ../includes/Elements/Cta_Box.php:688 msgid "Color & Typography " msgstr "" -#: ../includes/Elements/Cta_Box.php:720, ../includes/Elements/Cta_Box.php:761, ../includes/Elements/Event_Calendar.php:2119, ../includes/Elements/Event_Calendar.php:2240 +#: ../includes/Elements/Cta_Box.php:724, ../includes/Elements/Cta_Box.php:765, ../includes/Elements/Event_Calendar.php:2119, ../includes/Elements/Event_Calendar.php:2240 msgid "Space" msgstr "" -#: ../includes/Elements/Cta_Box.php:732 +#: ../includes/Elements/Cta_Box.php:736 msgid "Sub Title Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:810 +#: ../includes/Elements/Cta_Box.php:814 msgid "Primary Button Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:824, ../includes/Elements/Cta_Box.php:1252, ../includes/Extensions/Table_of_Content.php:782 +#: ../includes/Elements/Cta_Box.php:828, ../includes/Elements/Cta_Box.php:1256, ../includes/Extensions/Table_of_Content.php:867 msgid "Top to Bottom" msgstr "" -#: ../includes/Elements/Cta_Box.php:825, ../includes/Elements/Cta_Box.php:1253, ../includes/Elements/Woo_Product_List.php:659 +#: ../includes/Elements/Cta_Box.php:829, ../includes/Elements/Cta_Box.php:1257, ../includes/Elements/Woo_Product_List.php:739 msgid "Left to Right" msgstr "" -#: ../includes/Elements/Cta_Box.php:1048, ../includes/Elements/Cta_Box.php:1182 +#: ../includes/Elements/Cta_Box.php:1052, ../includes/Elements/Cta_Box.php:1186 msgid "Icon Background Color" msgstr "" -#: ../includes/Elements/Cta_Box.php:1235 +#: ../includes/Elements/Cta_Box.php:1239 msgid "Secondary Button Style" msgstr "" -#: ../includes/Elements/Cta_Box.php:1438, ../includes/Elements/Data_Table.php:1074, ../includes/Elements/Dual_Color_Header.php:393, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:942, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1075, ../includes/Elements/Info_Box.php:940 +#: ../includes/Elements/Cta_Box.php:1442, ../includes/Elements/Data_Table.php:1078, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Feature_List.php:111, ../includes/Elements/Flip_Box.php:946, ../includes/Elements/Flip_Box.php:965, ../includes/Elements/Flip_Box.php:1079, ../includes/Elements/Info_Box.php:945 msgid "Icon Style" msgstr "" -#: ../includes/Elements/Data_Table.php:85 +#: ../includes/Elements/Data_Table.php:89 msgid "Enable Table Sorting %s" msgstr "" -#: ../includes/Elements/Data_Table.php:85 +#: ../includes/Elements/Data_Table.php:89 msgid "" msgstr "" -#: ../includes/Elements/Data_Table.php:96 +#: ../includes/Elements/Data_Table.php:100 msgid "Sorting feature is available in pro version!" msgstr "" -#: ../includes/Elements/Data_Table.php:110 +#: ../includes/Elements/Data_Table.php:114 msgid "Column Name" msgstr "" -#: ../includes/Elements/Data_Table.php:111 +#: ../includes/Elements/Data_Table.php:115 msgid "Table Header" msgstr "" -#: ../includes/Elements/Data_Table.php:124 +#: ../includes/Elements/Data_Table.php:128 msgid "Column Span" msgstr "" -#: ../includes/Elements/Data_Table.php:138 +#: ../includes/Elements/Data_Table.php:142 msgid "Enable Header Icon" msgstr "" -#: ../includes/Elements/Data_Table.php:150 +#: ../includes/Elements/Data_Table.php:154 msgid "Header Icon Type" msgstr "" -#: ../includes/Elements/Data_Table.php:211 +#: ../includes/Elements/Data_Table.php:215 msgid "Image Size(px)" msgstr "" -#: ../includes/Elements/Data_Table.php:224, ../includes/Elements/Data_Table.php:431 +#: ../includes/Elements/Data_Table.php:228, ../includes/Elements/Data_Table.php:435 msgid "CSS Class" msgstr "" -#: ../includes/Elements/Data_Table.php:237, ../includes/Elements/Data_Table.php:447 +#: ../includes/Elements/Data_Table.php:241, ../includes/Elements/Data_Table.php:451 msgid "CSS ID" msgstr "" -#: ../includes/Elements/Data_Table.php:280 +#: ../includes/Elements/Data_Table.php:284 msgid "Row Type" msgstr "" -#: ../includes/Elements/Data_Table.php:285 +#: ../includes/Elements/Data_Table.php:289 msgid "Row" msgstr "" -#: ../includes/Elements/Data_Table.php:286, ../includes/Traits/Controls.php:523, ../includes/Traits/Controls.php:568 +#: ../includes/Elements/Data_Table.php:290, ../includes/Traits/Controls.php:536, ../includes/Traits/Controls.php:611 msgid "Column" msgstr "" -#: ../includes/Elements/Data_Table.php:294 +#: ../includes/Elements/Data_Table.php:298 msgid "Col Span" msgstr "" -#: ../includes/Elements/Data_Table.php:317 +#: ../includes/Elements/Data_Table.php:321 msgid "Textarea" msgstr "" -#: ../includes/Elements/Data_Table.php:321, ../includes/Elements/Login_Register.php:1647 +#: ../includes/Elements/Data_Table.php:325, ../includes/Elements/Login_Register.php:1647 msgid "Editor" msgstr "" -#: ../includes/Elements/Data_Table.php:325 +#: ../includes/Elements/Data_Table.php:329 msgid "Templates" msgstr "" -#: ../includes/Elements/Data_Table.php:339 +#: ../includes/Elements/Data_Table.php:343 msgid "Row Span" msgstr "" -#: ../includes/Elements/Data_Table.php:382, ../includes/Elements/Data_Table.php:397 +#: ../includes/Elements/Data_Table.php:386, ../includes/Elements/Data_Table.php:401 msgid "Cell Text" msgstr "" -#: ../includes/Elements/Data_Table.php:411, ../includes/Elements/Feature_List.php:208, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:658, ../includes/Elements/Flip_Box.php:683, ../includes/Elements/NFT_Gallery.php:1508, ../includes/Elements/NFT_Gallery.php:1761, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:176, ../includes/Elements/Sticky_Video.php:194, ../includes/Elements/Sticky_Video.php:245, ../includes/Elements/SVG_Draw.php:210, ../includes/Elements/Team_Member.php:189, ../includes/Elements/Woo_Product_List.php:374, ../includes/Extensions/Wrapper_Link.php:45 +#: ../includes/Elements/Data_Table.php:415, ../includes/Elements/Feature_List.php:212, ../includes/Elements/Filterable_Gallery.php:377, ../includes/Elements/Flip_Box.php:662, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/Interactive_Circle.php:227, ../includes/Elements/NFT_Gallery.php:1508, ../includes/Elements/NFT_Gallery.php:1761, ../includes/Elements/Sticky_Video.php:162, ../includes/Elements/Sticky_Video.php:180, ../includes/Elements/Sticky_Video.php:198, ../includes/Elements/Sticky_Video.php:249, ../includes/Elements/SVG_Draw.php:214, ../includes/Elements/Team_Member.php:193, ../includes/Elements/Woo_Product_List.php:423, ../includes/Extensions/Wrapper_Link.php:45 msgid "Link" msgstr "" -#: ../includes/Elements/Data_Table.php:600, ../includes/Elements/Facebook_Feed.php:632, ../includes/Elements/Facebook_Feed.php:830 +#: ../includes/Elements/Data_Table.php:604, ../includes/Elements/Facebook_Feed.php:632, ../includes/Elements/Facebook_Feed.php:830 msgid "Header Style" msgstr "" -#: ../includes/Elements/Data_Table.php:609 +#: ../includes/Elements/Data_Table.php:613 msgid "Header Border Radius" msgstr "" -#: ../includes/Elements/Data_Table.php:776, ../includes/Elements/Filterable_Gallery.php:2415 +#: ../includes/Elements/Data_Table.php:780, ../includes/Elements/Filterable_Gallery.php:2419 msgid "Icon Space" msgstr "" -#: ../includes/Elements/Data_Table.php:794, ../includes/Elements/Post_Grid.php:624, ../includes/Elements/Post_Timeline.php:318 +#: ../includes/Elements/Data_Table.php:798, ../includes/Elements/Post_Grid.php:637, ../includes/Elements/Post_Timeline.php:318 msgid "Title Alignment" msgstr "" -#: ../includes/Elements/Data_Table.php:838 +#: ../includes/Elements/Data_Table.php:842 msgid "ODD Cell" msgstr "" -#: ../includes/Elements/Data_Table.php:846, ../includes/Elements/Data_Table.php:929 +#: ../includes/Elements/Data_Table.php:850, ../includes/Elements/Data_Table.php:933 msgid "Color ( Odd Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:858, ../includes/Elements/Data_Table.php:940 +#: ../includes/Elements/Data_Table.php:862, ../includes/Elements/Data_Table.php:944 msgid "Background ( Odd Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:870, ../includes/Elements/Data_Table.php:951 +#: ../includes/Elements/Data_Table.php:874, ../includes/Elements/Data_Table.php:955 msgid "Even Cell" msgstr "" -#: ../includes/Elements/Data_Table.php:879, ../includes/Elements/Data_Table.php:959 +#: ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:963 msgid "Color ( Even Row )" msgstr "" -#: ../includes/Elements/Data_Table.php:891, ../includes/Elements/Data_Table.php:971 +#: ../includes/Elements/Data_Table.php:895, ../includes/Elements/Data_Table.php:975 msgid "Background Color (Even Row)" msgstr "" -#: ../includes/Elements/Data_Table.php:1043, ../includes/Elements/Filterable_Gallery.php:1517, ../includes/Elements/Filterable_Gallery.php:1977, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:617, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Pricing_Table.php:867, ../includes/Elements/Tooltip.php:385 +#: ../includes/Elements/Data_Table.php:1047, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1981, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:621, ../includes/Elements/Info_Box.php:315, ../includes/Elements/Pricing_Table.php:868, ../includes/Elements/Tooltip.php:389 msgid "Content Alignment" msgstr "" -#: ../includes/Elements/Data_Table.php:1153 +#: ../includes/Elements/Data_Table.php:1157 msgid "Responsive Options" msgstr "" -#: ../includes/Elements/Data_Table.php:1162 +#: ../includes/Elements/Data_Table.php:1166 msgid "Enable Responsive Table" msgstr "" -#: ../includes/Elements/Data_Table.php:1163 +#: ../includes/Elements/Data_Table.php:1167 msgid "If enabled, table header will be automatically responsive for mobile." msgstr "" -#: ../includes/Elements/Data_Table.php:1174 +#: ../includes/Elements/Data_Table.php:1178 msgid "Custom Breakpoint" msgstr "" -#: ../includes/Elements/Data_Table.php:1178 +#: ../includes/Elements/Data_Table.php:1182 msgid "Responsive styles working till this screen size." msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:83 +#: ../includes/Elements/Dual_Color_Header.php:87 msgid "Icon on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:84 +#: ../includes/Elements/Dual_Color_Header.php:88 msgid "Icon & sub-text on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:85 +#: ../includes/Elements/Dual_Color_Header.php:89 msgid "Sub-text on top" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:104 +#: ../includes/Elements/Dual_Color_Header.php:108 msgid "Show Separator" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:135, ../includes/Elements/Woo_Product_Carousel.php:253, ../includes/Elements/Woo_Product_List.php:1033, ../includes/Traits/Controls.php:1076 +#: ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Woo_Product_Carousel.php:273, ../includes/Elements/Woo_Product_List.php:1150, ../includes/Traits/Controls.php:1169 msgid "Title Tag" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:155 +#: ../includes/Elements/Dual_Color_Header.php:159 msgid "Title ( First Part )" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:158 +#: ../includes/Elements/Dual_Color_Header.php:162 msgid "Dual Heading" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:169 +#: ../includes/Elements/Dual_Color_Header.php:173 msgid "Title ( Last Part )" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:172 +#: ../includes/Elements/Dual_Color_Header.php:176 msgid "Example" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:183 +#: ../includes/Elements/Dual_Color_Header.php:187 msgid "Sub Text" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:186 +#: ../includes/Elements/Dual_Color_Header.php:190 msgid "Insert a meaningful line to evaluate the headline." msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:252, ../includes/Elements/Dual_Color_Header.php:579, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Extensions/Table_of_Content.php:1163 +#: ../includes/Elements/Dual_Color_Header.php:256, ../includes/Elements/Dual_Color_Header.php:583, ../includes/Elements/Filterable_Gallery.php:2535, ../includes/Extensions/Table_of_Content.php:1248 msgid "Separator" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:263 +#: ../includes/Elements/Dual_Color_Header.php:267 msgid "Separator Position" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:267, ../includes/Elements/Woo_Product_List.php:625, ../includes/Elements/Woo_Product_List.php:642 +#: ../includes/Elements/Dual_Color_Header.php:271, ../includes/Elements/Woo_Product_List.php:691, ../includes/Elements/Woo_Product_List.php:715 msgid "Before Title" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:268, ../includes/Elements/Woo_Product_List.php:626, ../includes/Elements/Woo_Product_List.php:643 +#: ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Woo_Product_List.php:695, ../includes/Elements/Woo_Product_List.php:719 msgid "After Title" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:275 +#: ../includes/Elements/Dual_Color_Header.php:279 msgid "Separator Type" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:279, ../includes/Elements/Post_Timeline.php:592, ../includes/Elements/Progress_Bar.php:84 +#: ../includes/Elements/Dual_Color_Header.php:283, ../includes/Elements/Post_Timeline.php:594, ../includes/Elements/Progress_Bar.php:88 msgid "Line" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:309 +#: ../includes/Elements/Dual_Color_Header.php:313 msgid "Dual Heading Style" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:464 +#: ../includes/Elements/Dual_Color_Header.php:468 msgid "Main Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:476 +#: ../includes/Elements/Dual_Color_Header.php:480 msgid "Dual Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:484, ../includes/Elements/Fancy_Text.php:364 +#: ../includes/Elements/Dual_Color_Header.php:488, ../includes/Elements/Fancy_Text.php:368 msgid "Gradient" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:496, ../includes/Elements/Fancy_Text.php:452 +#: ../includes/Elements/Dual_Color_Header.php:500, ../includes/Elements/Fancy_Text.php:456 msgid "Solid Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:511 +#: ../includes/Elements/Dual_Color_Header.php:515 msgid "First Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:523 +#: ../includes/Elements/Dual_Color_Header.php:527 msgid "Second Color" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:543 +#: ../includes/Elements/Dual_Color_Header.php:547 msgid "Sub-title Style " msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:636 +#: ../includes/Elements/Dual_Color_Header.php:640 msgid "Flex Start" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:644 +#: ../includes/Elements/Dual_Color_Header.php:648 msgid "Flex End" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:658 +#: ../includes/Elements/Dual_Color_Header.php:662 msgid "Distance Between Lines" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:722 +#: ../includes/Elements/Dual_Color_Header.php:726 msgid "Left Line" msgstr "" -#: ../includes/Elements/Dual_Color_Header.php:804 +#: ../includes/Elements/Dual_Color_Header.php:808 msgid "Right Line" msgstr "" @@ -3174,7 +3025,7 @@ msgstr "" msgid "Get Events" msgstr "" -#: ../includes/Elements/Event_Calendar.php:413, ../includes/Elements/Filterable_Gallery.php:408, ../includes/Elements/Filterable_Gallery.php:3235, ../includes/Elements/Woo_Product_Gallery.php:261, ../includes/Extensions/Table_of_Content.php:89, ../includes/Extensions/Table_of_Content.php:348 +#: ../includes/Elements/Event_Calendar.php:413, ../includes/Elements/Filterable_Gallery.php:412, ../includes/Elements/Filterable_Gallery.php:3239, ../includes/Elements/Woo_Product_Gallery.php:269, ../includes/Extensions/Table_of_Content.php:89, ../includes/Extensions/Table_of_Content.php:348 msgid "All" msgstr "" @@ -3186,7 +3037,7 @@ msgstr "" msgid "Event Category" msgstr "" -#: ../includes/Elements/Event_Calendar.php:485, ../includes/Traits/Admin.php:79 +#: ../includes/Elements/Event_Calendar.php:485 msgid "Language" msgstr "" @@ -3218,7 +3069,7 @@ msgstr "" msgid "Custom Date" msgstr "" -#: ../includes/Elements/Event_Calendar.php:591, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Filterable_Gallery.php:210, ../includes/Elements/Filterable_Gallery.php:481, ../includes/Elements/Woo_Cart.php:385, ../includes/Elements/Woo_Cart.php:393, ../includes/Traits/Controls.php:1485 +#: ../includes/Elements/Event_Calendar.php:591, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Filterable_Gallery.php:214, ../includes/Elements/Filterable_Gallery.php:485, ../includes/Elements/Woo_Cart.php:385, ../includes/Elements/Woo_Cart.php:393, ../includes/Traits/Controls.php:1618 msgid "" msgstr "" @@ -3330,7 +3181,7 @@ msgstr "" msgid "Current Day" msgstr "" -#: ../includes/Elements/Event_Calendar.php:1014, ../includes/Elements/Event_Calendar.php:1074, ../includes/Elements/Event_Calendar.php:1144, ../includes/Elements/Facebook_Feed.php:483, ../includes/Elements/FluentForm.php:1133, ../includes/Elements/FluentForm.php:1753, ../includes/Elements/Formstack.php:655, ../includes/Elements/Login_Register.php:1029, ../includes/Elements/Login_Register.php:1947, ../includes/Elements/NFT_Gallery.php:534, ../includes/Elements/NFT_Gallery.php:1459, ../includes/Elements/NFT_Gallery.php:1712, ../includes/Elements/Woo_Checkout.php:2364, ../includes/Elements/Woo_Checkout.php:2706, ../includes/Traits/Woo_Product_Comparable.php:247 +#: ../includes/Elements/Event_Calendar.php:1014, ../includes/Elements/Event_Calendar.php:1074, ../includes/Elements/Event_Calendar.php:1144, ../includes/Elements/Facebook_Feed.php:483, ../includes/Elements/FluentForm.php:1133, ../includes/Elements/FluentForm.php:1753, ../includes/Elements/Formstack.php:655, ../includes/Elements/Login_Register.php:1029, ../includes/Elements/Login_Register.php:1947, ../includes/Elements/NFT_Gallery.php:534, ../includes/Elements/NFT_Gallery.php:1459, ../includes/Elements/NFT_Gallery.php:1712, ../includes/Elements/Woo_Checkout.php:2405, ../includes/Elements/Woo_Checkout.php:2751, ../includes/Traits/Woo_Product_Comparable.php:247 msgid "Label" msgstr "" @@ -3346,11 +3197,11 @@ msgstr "" msgid "Word Count" msgstr "" -#: ../includes/Elements/Event_Calendar.php:1101, ../includes/Elements/Event_Calendar.php:1687, ../includes/Elements/Product_Grid.php:618, ../includes/Elements/Woo_Product_Carousel.php:324, ../includes/Elements/Woo_Product_List.php:838, ../includes/Traits/Controls.php:1212, ../includes/Traits/Controls.php:1184 +#: ../includes/Elements/Event_Calendar.php:1101, ../includes/Elements/Event_Calendar.php:1687, ../includes/Elements/Product_Grid.php:702, ../includes/Elements/Woo_Product_Carousel.php:344, ../includes/Elements/Woo_Product_List.php:955, ../includes/Traits/Controls.php:1334, ../includes/Traits/Controls.php:1306 msgid "Expansion Indicator" msgstr "" -#: ../includes/Elements/Event_Calendar.php:1104, ../includes/Traits/Controls.php:1217, ../includes/Traits/Controls.php:1189 +#: ../includes/Elements/Event_Calendar.php:1104, ../includes/Traits/Controls.php:1339, ../includes/Traits/Controls.php:1311 msgid "..." msgstr "" @@ -3462,7 +3313,7 @@ msgstr "" msgid "Event Popup" msgstr "" -#: ../includes/Elements/Event_Calendar.php:2754, ../includes/Elements/Event_Calendar.php:2982, ../includes/Elements/Post_Grid.php:448, ../includes/Elements/Twitter_Feed.php:901 +#: ../includes/Elements/Event_Calendar.php:2754, ../includes/Elements/Event_Calendar.php:2982, ../includes/Elements/Post_Grid.php:461, ../includes/Elements/Twitter_Feed.php:901 msgid "Date Color" msgstr "" @@ -3470,15 +3321,15 @@ msgstr "" msgid "Date Icon" msgstr "" -#: ../includes/Elements/Event_Calendar.php:2822, ../includes/Elements/Info_Box.php:1487, ../includes/Elements/Product_Grid.php:2708, ../includes/Elements/Product_Grid.php:3001, ../includes/Elements/Twitter_Feed.php:881, ../includes/Elements/Woo_Product_Carousel.php:1731, ../includes/Elements/Woo_Product_Carousel.php:2035, ../includes/Elements/Woo_Product_Gallery.php:1939, ../includes/Elements/Woo_Product_Gallery.php:2273, ../includes/Elements/Woo_Product_List.php:3109 +#: ../includes/Elements/Event_Calendar.php:2822, ../includes/Elements/Info_Box.php:1492, ../includes/Elements/Product_Grid.php:2849, ../includes/Elements/Product_Grid.php:3142, ../includes/Elements/Twitter_Feed.php:881, ../includes/Elements/Woo_Product_Carousel.php:1774, ../includes/Elements/Woo_Product_Carousel.php:2078, ../includes/Elements/Woo_Product_Gallery.php:2091, ../includes/Elements/Woo_Product_Gallery.php:2425, ../includes/Elements/Woo_Product_List.php:3255 msgid "Content Color" msgstr "" -#: ../includes/Elements/Event_Calendar.php:2835, ../includes/Elements/Product_Grid.php:3023, ../includes/Elements/Woo_Product_Carousel.php:2056, ../includes/Elements/Woo_Product_Gallery.php:2295, ../includes/Elements/Woo_Product_List.php:3131, ../includes/Traits/Woo_Product_Comparable.php:1336 +#: ../includes/Elements/Event_Calendar.php:2835, ../includes/Elements/Product_Grid.php:3164, ../includes/Elements/Woo_Product_Carousel.php:2099, ../includes/Elements/Woo_Product_Gallery.php:2447, ../includes/Elements/Woo_Product_List.php:3277, ../includes/Traits/Woo_Product_Comparable.php:1336 msgid " Close Button" msgstr "" -#: ../includes/Elements/Event_Calendar.php:2870, ../includes/Elements/Product_Grid.php:3058, ../includes/Elements/Woo_Product_Carousel.php:2091, ../includes/Elements/Woo_Product_Gallery.php:2330, ../includes/Elements/Woo_Product_List.php:3166, ../includes/Extensions/Table_of_Content.php:818 +#: ../includes/Elements/Event_Calendar.php:2870, ../includes/Elements/Product_Grid.php:3199, ../includes/Elements/Woo_Product_Carousel.php:2134, ../includes/Elements/Woo_Product_Gallery.php:2482, ../includes/Elements/Woo_Product_List.php:3312, ../includes/Extensions/Table_of_Content.php:903 msgid "Button Size" msgstr "" @@ -3558,23 +3409,23 @@ msgstr "" msgid "Image Dimension (px)" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:251, ../includes/Elements/Twitter_Feed.php:232, ../includes/Elements/Woo_Product_Carousel.php:212, ../includes/Traits/Controls.php:437 +#: ../includes/Elements/Facebook_Feed.php:251, ../includes/Elements/Twitter_Feed.php:232, ../includes/Elements/Woo_Product_Carousel.php:213, ../includes/Traits/Controls.php:443 msgid "Layout Settings" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:262, ../includes/Elements/Filterable_Gallery.php:186, ../includes/Template/Post-Timeline/card.php:4 +#: ../includes/Elements/Facebook_Feed.php:262, ../includes/Elements/Filterable_Gallery.php:190, ../includes/Template/Post-Timeline/card.php:4 msgid "Card" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:263, ../includes/Elements/Filterable_Gallery.php:185, ../includes/Traits/Controls.php:557, ../includes/Traits/Controls.php:610 +#: ../includes/Elements/Facebook_Feed.php:263, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:653 msgid "Overlay" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:280, ../includes/Elements/Filterable_Gallery.php:718, ../includes/Elements/NFT_Gallery.php:278, ../includes/Elements/Product_Grid.php:295, ../includes/Elements/Testimonial.php:208, ../includes/Elements/Woo_Product_Carousel.php:524, ../includes/Elements/Woo_Product_Gallery.php:352, ../includes/Traits/Controls.php:578 +#: ../includes/Elements/Facebook_Feed.php:280, ../includes/Elements/Filterable_Gallery.php:722, ../includes/Elements/NFT_Gallery.php:278, ../includes/Elements/Product_Grid.php:350, ../includes/Elements/Testimonial.php:212, ../includes/Elements/Woo_Product_Carousel.php:544, ../includes/Elements/Woo_Product_Gallery.php:376, ../includes/Traits/Controls.php:621 msgid "5" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:281, ../includes/Elements/NFT_Gallery.php:279, ../includes/Elements/Product_Grid.php:296, ../includes/Elements/Woo_Product_Carousel.php:525, ../includes/Elements/Woo_Product_Gallery.php:353, ../includes/Traits/Controls.php:579 +#: ../includes/Elements/Facebook_Feed.php:281, ../includes/Elements/NFT_Gallery.php:279, ../includes/Elements/Product_Grid.php:351, ../includes/Elements/Woo_Product_Carousel.php:545, ../includes/Elements/Woo_Product_Gallery.php:377, ../includes/Traits/Controls.php:622 msgid "6" msgstr "" @@ -3626,11 +3477,11 @@ msgstr "" msgid "Show Preview Description" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:464, ../includes/Elements/NFT_Gallery.php:620, ../includes/Elements/Product_Grid.php:809, ../includes/Elements/Twitter_Feed.php:450, ../includes/Elements/Woo_Product_Gallery.php:581, ../includes/Traits/Controls.php:721 +#: ../includes/Elements/Facebook_Feed.php:464, ../includes/Elements/NFT_Gallery.php:620, ../includes/Elements/Twitter_Feed.php:450 msgid "Show Load More" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:486, ../includes/Elements/Filterable_Gallery.php:904, ../includes/Elements/NFT_Gallery.php:649, ../includes/Elements/Product_Grid.php:780, ../includes/Elements/Product_Grid.php:821, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Woo_Product_Gallery.php:577, ../includes/Elements/Woo_Product_Gallery.php:593, ../includes/Elements/Woo_Product_List.php:233, ../includes/Elements/Woo_Product_List.php:1101, ../includes/Elements/Woo_Product_List.php:1111, ../includes/Traits/Controls.php:737 +#: ../includes/Elements/Facebook_Feed.php:486, ../includes/Elements/Filterable_Gallery.php:908, ../includes/Elements/NFT_Gallery.php:649, ../includes/Elements/Product_Grid.php:864, ../includes/Elements/Product_Grid.php:895, ../includes/Elements/Product_Grid.php:935, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Woo_Product_Gallery.php:670, ../includes/Elements/Woo_Product_Gallery.php:676, ../includes/Elements/Woo_Product_Gallery.php:716, ../includes/Elements/Woo_Product_List.php:254, ../includes/Elements/Woo_Product_List.php:1247, ../includes/Elements/Woo_Product_List.php:1257, ../includes/Traits/Controls.php:784, ../includes/Traits/Controls.php:830, ../includes/Traits/Controls.php:2149 msgid "Load More" msgstr "" @@ -3642,7 +3493,7 @@ msgstr "" msgid "Space Between Items" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:609, ../includes/Elements/Post_Grid.php:314 +#: ../includes/Elements/Facebook_Feed.php:609, ../includes/Elements/Post_Grid.php:327 msgid "Thumbnail Style" msgstr "" @@ -3690,819 +3541,819 @@ msgstr "" msgid "Likes & Comments" msgstr "" -#: ../includes/Elements/Facebook_Feed.php:1244, ../includes/Elements/Image_Accordion.php:400, ../includes/Elements/NFT_Gallery.php:942, ../includes/Elements/Post_Timeline.php:139, ../includes/Elements/Team_Member.php:362, ../includes/Elements/Woo_Product_Carousel.php:1021 +#: ../includes/Elements/Facebook_Feed.php:1244, ../includes/Elements/Image_Accordion.php:404, ../includes/Elements/NFT_Gallery.php:942, ../includes/Elements/Post_Timeline.php:139, ../includes/Elements/Team_Member.php:381, ../includes/Elements/Woo_Product_Carousel.php:1064 msgid "Overlay Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:78 +#: ../includes/Elements/Fancy_Text.php:82 msgid "Prefix Text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:79 +#: ../includes/Elements/Fancy_Text.php:83 msgid "Place your prefix text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:81 +#: ../includes/Elements/Fancy_Text.php:85 msgid "This is the " msgstr "" -#: ../includes/Elements/Fancy_Text.php:94 +#: ../includes/Elements/Fancy_Text.php:98 msgid "Fancy String" msgstr "" -#: ../includes/Elements/Fancy_Text.php:107 +#: ../includes/Elements/Fancy_Text.php:111 msgid "Fancy Text Strings" msgstr "" -#: ../includes/Elements/Fancy_Text.php:114 +#: ../includes/Elements/Fancy_Text.php:118 msgid "First string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:117 +#: ../includes/Elements/Fancy_Text.php:121 msgid "Second string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:120 +#: ../includes/Elements/Fancy_Text.php:124 msgid "Third string" msgstr "" -#: ../includes/Elements/Fancy_Text.php:129 +#: ../includes/Elements/Fancy_Text.php:133 msgid "Suffix Text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:130 +#: ../includes/Elements/Fancy_Text.php:134 msgid "Place your suffix text" msgstr "" -#: ../includes/Elements/Fancy_Text.php:132 +#: ../includes/Elements/Fancy_Text.php:136 msgid " of the sentence." msgstr "" -#: ../includes/Elements/Fancy_Text.php:146 +#: ../includes/Elements/Fancy_Text.php:150 msgid "Fancy Text Settings" msgstr "" -#: ../includes/Elements/Fancy_Text.php:154, ../includes/Elements/Pricing_Table.php:683, ../includes/Elements/Woo_Cart.php:149 +#: ../includes/Elements/Fancy_Text.php:158, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Woo_Cart.php:149 msgid "Style 1" msgstr "" -#: ../includes/Elements/Fancy_Text.php:155 +#: ../includes/Elements/Fancy_Text.php:159 msgid "Style 2 (Pro)" msgstr "" -#: ../includes/Elements/Fancy_Text.php:164 +#: ../includes/Elements/Fancy_Text.php:168 msgid "Style Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Pricing_Table.php:111, ../includes/Elements/Team_Member.php:306 +#: ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Pricing_Table.php:115, ../includes/Elements/Team_Member.php:325 msgid "Only available in pro version!" msgstr "" -#: ../includes/Elements/Fancy_Text.php:211 +#: ../includes/Elements/Fancy_Text.php:215 msgid "Animation Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:215 +#: ../includes/Elements/Fancy_Text.php:219 msgid "Typing" msgstr "" -#: ../includes/Elements/Fancy_Text.php:217 +#: ../includes/Elements/Fancy_Text.php:221 msgid "Fade Up" msgstr "" -#: ../includes/Elements/Fancy_Text.php:218 +#: ../includes/Elements/Fancy_Text.php:222 msgid "Fade Down" msgstr "" -#: ../includes/Elements/Fancy_Text.php:219 +#: ../includes/Elements/Fancy_Text.php:223 msgid "Fade Left" msgstr "" -#: ../includes/Elements/Fancy_Text.php:220 +#: ../includes/Elements/Fancy_Text.php:224 msgid "Fade Right" msgstr "" -#: ../includes/Elements/Fancy_Text.php:221 +#: ../includes/Elements/Fancy_Text.php:225 msgid "Zoom" msgstr "" -#: ../includes/Elements/Fancy_Text.php:222 +#: ../includes/Elements/Fancy_Text.php:226 msgid "Bounce" msgstr "" -#: ../includes/Elements/Fancy_Text.php:223, ../includes/Elements/Pricing_Table.php:466 +#: ../includes/Elements/Fancy_Text.php:227, ../includes/Elements/Pricing_Table.php:470 msgid "Swing" msgstr "" -#: ../includes/Elements/Fancy_Text.php:232 +#: ../includes/Elements/Fancy_Text.php:236 msgid "Typing Speed" msgstr "" -#: ../includes/Elements/Fancy_Text.php:244 +#: ../includes/Elements/Fancy_Text.php:248 msgid "Delay on Change" msgstr "" -#: ../includes/Elements/Fancy_Text.php:253 +#: ../includes/Elements/Fancy_Text.php:257 msgid "Loop the animation" msgstr "" -#: ../includes/Elements/Fancy_Text.php:263 +#: ../includes/Elements/Fancy_Text.php:267 msgid "Display Type Cursor" msgstr "" -#: ../includes/Elements/Fancy_Text.php:308 +#: ../includes/Elements/Fancy_Text.php:312 msgid "Prefix Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:316 +#: ../includes/Elements/Fancy_Text.php:320 msgid "Prefix Text Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:348 +#: ../includes/Elements/Fancy_Text.php:352 msgid "Fancy Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:356 +#: ../includes/Elements/Fancy_Text.php:360 msgid "Choose Background Type" msgstr "" -#: ../includes/Elements/Fancy_Text.php:482 +#: ../includes/Elements/Fancy_Text.php:486 msgid "Typing Cursor Color" msgstr "" -#: ../includes/Elements/Fancy_Text.php:553 +#: ../includes/Elements/Fancy_Text.php:557 msgid "Suffix Text Styles" msgstr "" -#: ../includes/Elements/Fancy_Text.php:561 +#: ../includes/Elements/Fancy_Text.php:565 msgid "Suffix Text Color" msgstr "" -#: ../includes/Elements/Feature_List.php:109, ../includes/Elements/Product_Grid.php:341, ../includes/Elements/Woo_Product_Gallery.php:365 +#: ../includes/Elements/Feature_List.php:113, ../includes/Elements/Product_Grid.php:396, ../includes/Elements/Woo_Product_Gallery.php:389 msgid "ON" msgstr "" -#: ../includes/Elements/Feature_List.php:110, ../includes/Elements/Product_Grid.php:342, ../includes/Elements/Woo_Product_Gallery.php:366 +#: ../includes/Elements/Feature_List.php:114, ../includes/Elements/Product_Grid.php:397, ../includes/Elements/Woo_Product_Gallery.php:390 msgid "OFF" msgstr "" -#: ../includes/Elements/Feature_List.php:138 +#: ../includes/Elements/Feature_List.php:142 msgid "Icon Background" msgstr "" -#: ../includes/Elements/Feature_List.php:152 +#: ../includes/Elements/Feature_List.php:156 msgid "Icon Box Background" msgstr "" -#: ../includes/Elements/Feature_List.php:211, ../includes/Elements/SVG_Draw.php:212 +#: ../includes/Elements/Feature_List.php:215, ../includes/Elements/SVG_Draw.php:216 msgid "https://your-link.com" msgstr "" -#: ../includes/Elements/Feature_List.php:219 +#: ../includes/Elements/Feature_List.php:223 msgid "Feature Item" msgstr "" -#: ../includes/Elements/Feature_List.php:228 +#: ../includes/Elements/Feature_List.php:232 msgid "Feature Item 1" msgstr "" -#: ../includes/Elements/Feature_List.php:229, ../includes/Elements/Feature_List.php:237, ../includes/Elements/Feature_List.php:245 +#: ../includes/Elements/Feature_List.php:233, ../includes/Elements/Feature_List.php:241, ../includes/Elements/Feature_List.php:249 msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna" msgstr "" -#: ../includes/Elements/Feature_List.php:236 +#: ../includes/Elements/Feature_List.php:240 msgid "Feature Item 2" msgstr "" -#: ../includes/Elements/Feature_List.php:244 +#: ../includes/Elements/Feature_List.php:248 msgid "Feature Item 3" msgstr "" -#: ../includes/Elements/Feature_List.php:291 +#: ../includes/Elements/Feature_List.php:295 msgid "Icon Shape" msgstr "" -#: ../includes/Elements/Feature_List.php:296, ../includes/Elements/Flip_Box.php:897, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:653, ../includes/Elements/Info_Box.php:821, ../includes/Elements/Info_Box.php:901, ../includes/Elements/Info_Box.php:1039, ../includes/Elements/Info_Box.php:1135, ../includes/Elements/Progress_Bar.php:86 +#: ../includes/Elements/Feature_List.php:300, ../includes/Elements/Flip_Box.php:901, ../includes/Elements/Info_Box.php:603, ../includes/Elements/Info_Box.php:658, ../includes/Elements/Info_Box.php:826, ../includes/Elements/Info_Box.php:906, ../includes/Elements/Info_Box.php:1044, ../includes/Elements/Info_Box.php:1140, ../includes/Elements/Progress_Bar.php:90 msgid "Circle" msgstr "" -#: ../includes/Elements/Feature_List.php:297, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:652, ../includes/Elements/Info_Box.php:823, ../includes/Elements/Info_Box.php:903, ../includes/Elements/Info_Box.php:1041, ../includes/Elements/Info_Box.php:1137 +#: ../includes/Elements/Feature_List.php:301, ../includes/Elements/Info_Box.php:602, ../includes/Elements/Info_Box.php:657, ../includes/Elements/Info_Box.php:828, ../includes/Elements/Info_Box.php:908, ../includes/Elements/Info_Box.php:1046, ../includes/Elements/Info_Box.php:1142 msgid "Square" msgstr "" -#: ../includes/Elements/Feature_List.php:298 +#: ../includes/Elements/Feature_List.php:302 msgid "Rhombus" msgstr "" -#: ../includes/Elements/Feature_List.php:306 +#: ../includes/Elements/Feature_List.php:310 msgid "Shape View" msgstr "" -#: ../includes/Elements/Feature_List.php:311 +#: ../includes/Elements/Feature_List.php:315 msgid "Framed" msgstr "" -#: ../includes/Elements/Feature_List.php:348 +#: ../includes/Elements/Feature_List.php:352 msgid "Icon Vertical Position" msgstr "" -#: ../includes/Elements/Feature_List.php:356, ../includes/Elements/Flip_Box.php:351, ../includes/Elements/Flip_Box.php:591, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Post_Timeline.php:492, ../includes/Elements/Twitter_Feed.php:649 +#: ../includes/Elements/Feature_List.php:360, ../includes/Elements/Flip_Box.php:355, ../includes/Elements/Flip_Box.php:595, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:494, ../includes/Elements/Twitter_Feed.php:649, ../includes/Traits/Controls.php:730 msgid "Middle" msgstr "" -#: ../includes/Elements/Feature_List.php:379 +#: ../includes/Elements/Feature_List.php:383 msgid "Arrow Indicator Position" msgstr "" -#: ../includes/Elements/Feature_List.php:410 +#: ../includes/Elements/Feature_List.php:414 msgid "Show Connector" msgstr "" -#: ../includes/Elements/Feature_List.php:441 +#: ../includes/Elements/Feature_List.php:445 msgid "Item Width" msgstr "" -#: ../includes/Elements/Feature_List.php:470, ../includes/Elements/Login_Register.php:4930, ../includes/Elements/Login_Register.php:5258, ../includes/Elements/Woo_Product_Gallery.php:1545 +#: ../includes/Elements/Feature_List.php:474, ../includes/Elements/Login_Register.php:4930, ../includes/Elements/Login_Register.php:5258, ../includes/Elements/Woo_Product_Gallery.php:1668 msgid "Space Between" msgstr "" -#: ../includes/Elements/Feature_List.php:493 +#: ../includes/Elements/Feature_List.php:497 msgid "Connector Type" msgstr "" -#: ../includes/Elements/Feature_List.php:498, ../includes/Elements/Testimonial.php:263 +#: ../includes/Elements/Feature_List.php:502, ../includes/Elements/Testimonial.php:271 msgid "Classic" msgstr "" -#: ../includes/Elements/Feature_List.php:499 +#: ../includes/Elements/Feature_List.php:503 msgid "Modern" msgstr "" -#: ../includes/Elements/Feature_List.php:512 +#: ../includes/Elements/Feature_List.php:516 msgid "Connector Styles" msgstr "" -#: ../includes/Elements/Feature_List.php:518, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/Sticky_Video.php:602, ../includes/Extensions/Table_of_Content.php:1177 +#: ../includes/Elements/Feature_List.php:522, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/Sticky_Video.php:606, ../includes/Extensions/Table_of_Content.php:1262 msgid "Dashed" msgstr "" -#: ../includes/Elements/Feature_List.php:534 +#: ../includes/Elements/Feature_List.php:538 msgid "Connector Color" msgstr "" -#: ../includes/Elements/Feature_List.php:553 +#: ../includes/Elements/Feature_List.php:557 msgid "Connector Width" msgstr "" -#: ../includes/Elements/Feature_List.php:610, ../includes/Elements/Woo_Cart.php:1439, ../includes/Elements/Woo_Cart.php:1656 +#: ../includes/Elements/Feature_List.php:614, ../includes/Elements/Woo_Cart.php:1439, ../includes/Elements/Woo_Cart.php:1656 msgid "Secondary Color" msgstr "" -#: ../includes/Elements/Feature_List.php:828 +#: ../includes/Elements/Feature_List.php:832 msgid "Title Bottom Space" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:97, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:79, ../includes/Traits/Core.php:44 +#: ../includes/Elements/Filterable_Gallery.php:101, ../includes/Elements/Flip_Box.php:81, ../includes/Elements/Pricing_Table.php:83, ../includes/Traits/Core.php:44 msgid "Settings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:104 +#: ../includes/Elements/Filterable_Gallery.php:108 msgid "Items to show" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:118 +#: ../includes/Elements/Filterable_Gallery.php:122 msgid "Animation Duration (ms)" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:150 +#: ../includes/Elements/Filterable_Gallery.php:154 msgid "Grid Style" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:163, ../includes/Traits/Controls.php:816, ../includes/Traits/Controls.php:880 +#: ../includes/Elements/Filterable_Gallery.php:167, ../includes/Traits/Controls.php:909, ../includes/Traits/Controls.php:973 msgid "Image Height" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:187 +#: ../includes/Elements/Filterable_Gallery.php:191 msgid "Search & Filter" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:195 +#: ../includes/Elements/Filterable_Gallery.php:199 msgid "Search Full Gallery ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:212 +#: ../includes/Elements/Filterable_Gallery.php:216 msgid "Enabling this will load all prior items up to the one you searched for." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:224, ../includes/Elements/Filterable_Gallery.php:227 +#: ../includes/Elements/Filterable_Gallery.php:228, ../includes/Elements/Filterable_Gallery.php:231 msgid "Not Found Text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:226 +#: ../includes/Elements/Filterable_Gallery.php:230 msgid "No Items Found" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:240 +#: ../includes/Elements/Filterable_Gallery.php:244 msgid "Hover Style" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:245 +#: ../includes/Elements/Filterable_Gallery.php:249 msgid "Slide In Up" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:246, ../includes/Elements/Flip_Box.php:95 +#: ../includes/Elements/Filterable_Gallery.php:250, ../includes/Elements/Flip_Box.php:99 msgid "Fade In" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:247 +#: ../includes/Elements/Filterable_Gallery.php:251 msgid "Zoom In " msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:258 +#: ../includes/Elements/Filterable_Gallery.php:262 msgid "Hover Transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:281 +#: ../includes/Elements/Filterable_Gallery.php:285 msgid "Link to" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:286 +#: ../includes/Elements/Filterable_Gallery.php:290 msgid "Media" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:287, ../includes/Elements/Product_Grid.php:1908, ../includes/Elements/Woo_Product_Gallery.php:1639, ../includes/Elements/Woo_Product_List.php:596, ../includes/Traits/Woo_Product_Comparable.php:879 +#: ../includes/Elements/Filterable_Gallery.php:291, ../includes/Elements/Product_Grid.php:2020, ../includes/Elements/Woo_Product_Gallery.php:1762, ../includes/Elements/Woo_Product_List.php:662, ../includes/Traits/Woo_Product_Comparable.php:879 msgid "Buttons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:298 +#: ../includes/Elements/Filterable_Gallery.php:302 msgid "Title Clickable" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:310, ../includes/Traits/Controls.php:1141 +#: ../includes/Elements/Filterable_Gallery.php:314, ../includes/Traits/Controls.php:1263 msgid "Image Clickable" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:322 +#: ../includes/Elements/Filterable_Gallery.php:326 msgid "Show Popup Caption" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:334 +#: ../includes/Elements/Filterable_Gallery.php:338 msgid "Lightbox Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:351 +#: ../includes/Elements/Filterable_Gallery.php:355 msgid "Link Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:368 +#: ../includes/Elements/Filterable_Gallery.php:372 msgid "Full Image Action" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:372 +#: ../includes/Elements/Filterable_Gallery.php:376 msgid "Lightbox" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:389 +#: ../includes/Elements/Filterable_Gallery.php:393 msgid "Filterable Controls" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:396 +#: ../includes/Elements/Filterable_Gallery.php:400 msgid "Enable Filter" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:405 +#: ../includes/Elements/Filterable_Gallery.php:409 msgid "Gallery All Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:421 +#: ../includes/Elements/Filterable_Gallery.php:425 msgid "All label icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:437, ../includes/Elements/Info_Box.php:239 +#: ../includes/Elements/Filterable_Gallery.php:441, ../includes/Elements/Info_Box.php:243 msgid "Select Title Tag" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:465, ../includes/Elements/Pricing_Table.php:342 +#: ../includes/Elements/Filterable_Gallery.php:469, ../includes/Elements/Pricing_Table.php:346 msgid "List Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:469 +#: ../includes/Elements/Filterable_Gallery.php:473 msgid "Gallery Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:477 +#: ../includes/Elements/Filterable_Gallery.php:481 msgid "Adding a custom ID will function as an anchor tag. For instance, if you input \"test\" as your custom ID, the link will change to \"https://www.example.com/#test\" and it will immediately open the corresponding tab." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:488 +#: ../includes/Elements/Filterable_Gallery.php:492 msgid "Custom Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:496 +#: ../includes/Elements/Filterable_Gallery.php:500 msgid "Item Label" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:528 +#: ../includes/Elements/Filterable_Gallery.php:532 msgid "Gallery Items" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:535 +#: ../includes/Elements/Filterable_Gallery.php:539 msgid "Enable Photo Gallery" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:546 +#: ../includes/Elements/Filterable_Gallery.php:550 msgid "Video Privacy Mode" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:548 +#: ../includes/Elements/Filterable_Gallery.php:552 msgid "If enabled, YouTube won't store information about visitors unless they play the video." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:558 +#: ../includes/Elements/Filterable_Gallery.php:562 msgid "Display Consent Notice" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:560 -msgid "If enabled, The consent motice will appear before playing the video." +#: ../includes/Elements/Filterable_Gallery.php:564 +msgid "If enabled, The consent notice will appear before playing the video." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:568 +#: ../includes/Elements/Filterable_Gallery.php:572 msgid "Privacy Notice" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:578 +#: ../includes/Elements/Filterable_Gallery.php:582 msgid "Randomize Item" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:580 +#: ../includes/Elements/Filterable_Gallery.php:584 msgid "YES" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:581 +#: ../includes/Elements/Filterable_Gallery.php:585 msgid "NO" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:584 +#: ../includes/Elements/Filterable_Gallery.php:588 msgid "Items will be displayed in a random order." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:593 +#: ../includes/Elements/Filterable_Gallery.php:597 msgid "Video Gallery?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:605 +#: ../includes/Elements/Filterable_Gallery.php:609 msgid "Video Link" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:621 +#: ../includes/Elements/Filterable_Gallery.php:625 msgid "Video Layout Type" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:645 +#: ../includes/Elements/Filterable_Gallery.php:649 msgid "Control Name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:650 +#: ../includes/Elements/Filterable_Gallery.php:654 msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. Gallery Item, Gallery Item 2)" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:660 +#: ../includes/Elements/Filterable_Gallery.php:664 msgid "Item Name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:664 +#: ../includes/Elements/Filterable_Gallery.php:668 msgid "Gallery item name" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:675 +#: ../includes/Elements/Filterable_Gallery.php:679 msgid "Enable Price ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:687 +#: ../includes/Elements/Filterable_Gallery.php:691 msgid "Item Price" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:690 +#: ../includes/Elements/Filterable_Gallery.php:694 msgid "$20.00" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:703 +#: ../includes/Elements/Filterable_Gallery.php:707 msgid "Enable Ratings ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:715 +#: ../includes/Elements/Filterable_Gallery.php:719 msgid "Item Ratings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:731 +#: ../includes/Elements/Filterable_Gallery.php:735 msgid "Enable Category ?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:743 +#: ../includes/Elements/Filterable_Gallery.php:747 msgid "Item Category" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:746, ../includes/Traits/Elements.php:39 +#: ../includes/Elements/Filterable_Gallery.php:750, ../includes/Traits/Admin.php:30, ../includes/Traits/Elements.php:40 msgid "Essential Addons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:759 +#: ../includes/Elements/Filterable_Gallery.php:763 msgid "Item Content" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:762 +#: ../includes/Elements/Filterable_Gallery.php:766 msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:784 +#: ../includes/Elements/Filterable_Gallery.php:788 msgid "Video play icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:801 +#: ../includes/Elements/Filterable_Gallery.php:805 msgid "Gallery Lightbox Button?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:816 +#: ../includes/Elements/Filterable_Gallery.php:820 msgid "Gallery Link Button?" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:2885, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224, ../includes/Traits/Controls.php:2016 +#: ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:879, ../includes/Elements/Filterable_Gallery.php:2889, ../includes/Elements/NFT_Gallery.php:613, ../includes/Elements/NFT_Gallery.php:2071, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:1224 msgid "Load More Button" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:885 +#: ../includes/Elements/Filterable_Gallery.php:889 msgid "Images Per Page" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:917, ../includes/Elements/NFT_Gallery.php:662, ../includes/Elements/Twitter_Feed.php:492 +#: ../includes/Elements/Filterable_Gallery.php:921, ../includes/Elements/NFT_Gallery.php:662, ../includes/Elements/Twitter_Feed.php:492 msgid "No More Items Text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/NFT_Gallery.php:665, ../includes/Elements/Twitter_Feed.php:495 +#: ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/NFT_Gallery.php:665, ../includes/Elements/Twitter_Feed.php:495 msgid "No more items!" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:937, ../includes/Elements/NFT_Gallery.php:682, ../includes/Elements/Twitter_Feed.php:512 +#: ../includes/Elements/Filterable_Gallery.php:941, ../includes/Elements/NFT_Gallery.php:682, ../includes/Elements/Twitter_Feed.php:512 msgid "Extra Small" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:938, ../includes/Elements/NFT_Gallery.php:683, ../includes/Elements/Twitter_Feed.php:513 +#: ../includes/Elements/Filterable_Gallery.php:942, ../includes/Elements/NFT_Gallery.php:683, ../includes/Elements/Twitter_Feed.php:513 msgid "Small" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/NFT_Gallery.php:684, ../includes/Elements/Twitter_Feed.php:514 +#: ../includes/Elements/Filterable_Gallery.php:943, ../includes/Elements/NFT_Gallery.php:684, ../includes/Elements/Twitter_Feed.php:514 msgid "Medium" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:940, ../includes/Elements/NFT_Gallery.php:685, ../includes/Elements/Twitter_Feed.php:515 +#: ../includes/Elements/Filterable_Gallery.php:944, ../includes/Elements/NFT_Gallery.php:685, ../includes/Elements/Twitter_Feed.php:515 msgid "Large" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:941, ../includes/Elements/NFT_Gallery.php:686, ../includes/Elements/Twitter_Feed.php:516 +#: ../includes/Elements/Filterable_Gallery.php:945, ../includes/Elements/NFT_Gallery.php:686, ../includes/Elements/Twitter_Feed.php:516 msgid "Extra Large" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:953, ../includes/Elements/Filterable_Gallery.php:3076, ../includes/Elements/Flip_Box.php:723, ../includes/Elements/NFT_Gallery.php:698, ../includes/Elements/NFT_Gallery.php:2262, ../includes/Elements/Pricing_Table.php:572, ../includes/Elements/Twitter_Feed.php:528, ../includes/Elements/Twitter_Feed.php:1415, ../includes/Elements/Woo_Cart.php:1066 +#: ../includes/Elements/Filterable_Gallery.php:957, ../includes/Elements/Filterable_Gallery.php:3080, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/NFT_Gallery.php:698, ../includes/Elements/NFT_Gallery.php:2262, ../includes/Elements/Pricing_Table.php:573, ../includes/Elements/Twitter_Feed.php:528, ../includes/Elements/Twitter_Feed.php:1415, ../includes/Elements/Woo_Cart.php:1066 msgid "Button Icon" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1131 +#: ../includes/Elements/Filterable_Gallery.php:1135 msgid "Control" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1390, ../includes/Elements/Filterable_Gallery.php:1586 +#: ../includes/Elements/Filterable_Gallery.php:1394, ../includes/Elements/Filterable_Gallery.php:1590 msgid "Mouseover Effect" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1596 +#: ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1600 msgid "These controls will be in effect when the mouse hovers over the items." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1431, ../includes/Elements/Filterable_Gallery.php:1870, ../includes/Elements/Login_Register.php:3515, ../includes/Elements/Post_Timeline.php:344 +#: ../includes/Elements/Filterable_Gallery.php:1435, ../includes/Elements/Filterable_Gallery.php:1874, ../includes/Elements/Login_Register.php:3515, ../includes/Elements/Post_Timeline.php:345 msgid "Title Typography" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1471, ../includes/Elements/Filterable_Gallery.php:1930 +#: ../includes/Elements/Filterable_Gallery.php:1475, ../includes/Elements/Filterable_Gallery.php:1934 msgid "Content Typography" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1546, ../includes/Elements/Image_Accordion.php:432, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Product_Gallery.php:1507 +#: ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Image_Accordion.php:436, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Product_Gallery.php:1630 msgid "Thumbnail" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1622, ../includes/Elements/Sticky_Video.php:136 +#: ../includes/Elements/Filterable_Gallery.php:1626, ../includes/Elements/Sticky_Video.php:140 msgid "Video" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1633 +#: ../includes/Elements/Filterable_Gallery.php:1637 msgid "Mouseover Effects" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1653 +#: ../includes/Elements/Filterable_Gallery.php:1657 msgid "Background transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1673 +#: ../includes/Elements/Filterable_Gallery.php:1677 msgid "Icon size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1696 +#: ../includes/Elements/Filterable_Gallery.php:1700 msgid "Hover icon scale" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1711 +#: ../includes/Elements/Filterable_Gallery.php:1715 msgid "Icon transition" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1731 +#: ../includes/Elements/Filterable_Gallery.php:1735 msgid "Custom Width" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1745 +#: ../includes/Elements/Filterable_Gallery.php:1749 msgid "Video Content Width" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:1798 +#: ../includes/Elements/Filterable_Gallery.php:1802 msgid "Item Card" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2010 +#: ../includes/Elements/Filterable_Gallery.php:2014 msgid "Icons" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2101 +#: ../includes/Elements/Filterable_Gallery.php:2105 msgid "Icon Font Size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2277 +#: ../includes/Elements/Filterable_Gallery.php:2281 msgid "Ratings" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2324, ../includes/Elements/Woo_Product_Carousel.php:365, ../includes/Elements/Woo_Product_List.php:278, ../includes/Elements/Woo_Product_List.php:2170, ../includes/Traits/Controls.php:1450 +#: ../includes/Elements/Filterable_Gallery.php:2328, ../includes/Elements/Woo_Product_Carousel.php:385, ../includes/Elements/Woo_Product_List.php:327, ../includes/Elements/Woo_Product_List.php:2316, ../includes/Traits/Controls.php:1583 msgid "Category" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2383 +#: ../includes/Elements/Filterable_Gallery.php:2387 msgid "Search Form" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2394, ../includes/Elements/Login_Register.php:411, ../includes/Elements/Login_Register.php:646 +#: ../includes/Elements/Filterable_Gallery.php:2398, ../includes/Elements/Login_Register.php:411, ../includes/Elements/Login_Register.php:646 msgid "Controls" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2488 +#: ../includes/Elements/Filterable_Gallery.php:2492 msgid "Controls Background" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2540 +#: ../includes/Elements/Filterable_Gallery.php:2544 msgid "Separator Size" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2571, ../includes/Elements/Login_Register.php:2732, ../includes/Elements/Woo_Checkout.php:1538, ../includes/Elements/Woo_Checkout.php:1935 +#: ../includes/Elements/Filterable_Gallery.php:2575, ../includes/Elements/Login_Register.php:2732, ../includes/Elements/Woo_Checkout.php:1579, ../includes/Elements/Woo_Checkout.php:1976 msgid "Form" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2593 +#: ../includes/Elements/Filterable_Gallery.php:2597 msgid "Search Gallery Item..." msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2603, ../includes/Elements/Login_Register.php:3743, ../includes/Elements/Login_Register.php:3781, ../includes/Elements/Woo_Cart.php:1807 +#: ../includes/Elements/Filterable_Gallery.php:2607, ../includes/Elements/Login_Register.php:3743, ../includes/Elements/Login_Register.php:3781, ../includes/Elements/Woo_Cart.php:1807 msgid "Placeholder Color" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2659 +#: ../includes/Elements/Filterable_Gallery.php:2663 msgid "Dropdown" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2755 +#: ../includes/Elements/Filterable_Gallery.php:2759 msgid "Not found text" msgstr "" -#: ../includes/Elements/Filterable_Gallery.php:2897, ../includes/Elements/NFT_Gallery.php:2083, ../includes/Elements/Product_Grid.php:2199, ../includes/Elements/Product_Grid.php:2399, ../includes/Elements/Twitter_Feed.php:1236, ../includes/Elements/Woo_Checkout.php:957, ../includes/Elements/Woo_Checkout.php:1272, ../includes/Elements/Woo_Checkout.php:1381, ../includes/Elements/Woo_Checkout.php:3019, ../includes/Elements/Woo_Product_Carousel.php:1565 +#: ../includes/Elements/Filterable_Gallery.php:2901, ../includes/Elements/NFT_Gallery.php:2083, ../includes/Elements/Product_Grid.php:2340, ../includes/Elements/Product_Grid.php:2540, ../includes/Elements/Twitter_Feed.php:1236, ../includes/Elements/Woo_Checkout.php:973, ../includes/Elements/Woo_Checkout.php:1313, ../includes/Elements/Woo_Checkout.php:1422, ../includes/Elements/Woo_Checkout.php:3072, ../includes/Elements/Woo_Product_Carousel.php:1608 msgid "Top Spacing" msgstr "" -#: ../includes/Elements/Flip_Box.php:84 +#: ../includes/Elements/Flip_Box.php:88 msgid "Flipbox Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:89 +#: ../includes/Elements/Flip_Box.php:93 msgid "Flip Left" msgstr "" -#: ../includes/Elements/Flip_Box.php:90 +#: ../includes/Elements/Flip_Box.php:94 msgid "Flip Right" msgstr "" -#: ../includes/Elements/Flip_Box.php:91 +#: ../includes/Elements/Flip_Box.php:95 msgid "Flip Top" msgstr "" -#: ../includes/Elements/Flip_Box.php:92 +#: ../includes/Elements/Flip_Box.php:96 msgid "Flip Bottom" msgstr "" -#: ../includes/Elements/Flip_Box.php:93 +#: ../includes/Elements/Flip_Box.php:97 msgid "Zoom In" msgstr "" -#: ../includes/Elements/Flip_Box.php:94 +#: ../includes/Elements/Flip_Box.php:98 msgid "Zoom Out" msgstr "" -#: ../includes/Elements/Flip_Box.php:102 +#: ../includes/Elements/Flip_Box.php:106 msgid "3D Depth" msgstr "" -#: ../includes/Elements/Flip_Box.php:166, ../includes/Elements/Flip_Box.php:952, ../includes/Elements/Flip_Box.php:1197 +#: ../includes/Elements/Flip_Box.php:170, ../includes/Elements/Flip_Box.php:956, ../includes/Elements/Flip_Box.php:1201 msgid "Front" msgstr "" -#: ../includes/Elements/Flip_Box.php:218, ../includes/Elements/Flip_Box.php:458 +#: ../includes/Elements/Flip_Box.php:222, ../includes/Elements/Flip_Box.php:462 msgid "Flipbox Image" msgstr "" -#: ../includes/Elements/Flip_Box.php:251, ../includes/Elements/Flip_Box.php:491, ../includes/Elements/Info_Box.php:670 +#: ../includes/Elements/Flip_Box.php:255, ../includes/Elements/Flip_Box.php:495, ../includes/Elements/Info_Box.php:675 msgid "Image Resizer" msgstr "" -#: ../includes/Elements/Flip_Box.php:285, ../includes/Elements/Flip_Box.php:291 +#: ../includes/Elements/Flip_Box.php:289, ../includes/Elements/Flip_Box.php:295 msgid "Front Title" msgstr "" -#: ../includes/Elements/Flip_Box.php:304 +#: ../includes/Elements/Flip_Box.php:308 msgid "Select Front Title Tag" msgstr "" -#: ../includes/Elements/Flip_Box.php:327 +#: ../includes/Elements/Flip_Box.php:331 msgid "Front Content" msgstr "" -#: ../includes/Elements/Flip_Box.php:330 +#: ../includes/Elements/Flip_Box.php:334 msgid "

This is front side content.

" msgstr "" -#: ../includes/Elements/Flip_Box.php:343, ../includes/Elements/Flip_Box.php:583 +#: ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:587 msgid "Vertical Position" msgstr "" -#: ../includes/Elements/Flip_Box.php:407, ../includes/Elements/Flip_Box.php:1066, ../includes/Elements/Flip_Box.php:1265 +#: ../includes/Elements/Flip_Box.php:411, ../includes/Elements/Flip_Box.php:1070, ../includes/Elements/Flip_Box.php:1269 msgid "Back" msgstr "" -#: ../includes/Elements/Flip_Box.php:525, ../includes/Elements/Flip_Box.php:531 +#: ../includes/Elements/Flip_Box.php:529, ../includes/Elements/Flip_Box.php:535 msgid "Back Title" msgstr "" -#: ../includes/Elements/Flip_Box.php:544 +#: ../includes/Elements/Flip_Box.php:548 msgid "Select Back Title Tag" msgstr "" -#: ../includes/Elements/Flip_Box.php:567 +#: ../includes/Elements/Flip_Box.php:571 msgid "Back Content" msgstr "" -#: ../includes/Elements/Flip_Box.php:570 +#: ../includes/Elements/Flip_Box.php:574 msgid "

This is back side content.

" msgstr "" -#: ../includes/Elements/Flip_Box.php:668 +#: ../includes/Elements/Flip_Box.php:672 msgid "Link Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:710 +#: ../includes/Elements/Flip_Box.php:714 msgid "Get Started" msgstr "" -#: ../includes/Elements/Flip_Box.php:785 +#: ../includes/Elements/Flip_Box.php:789 msgid "Filp Box Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:793, ../includes/Elements/Flip_Box.php:802 +#: ../includes/Elements/Flip_Box.php:797, ../includes/Elements/Flip_Box.php:806 msgid "Front Background Color" msgstr "" -#: ../includes/Elements/Flip_Box.php:811, ../includes/Elements/Flip_Box.php:821 +#: ../includes/Elements/Flip_Box.php:815, ../includes/Elements/Flip_Box.php:825 msgid "Back Background Color" msgstr "" -#: ../includes/Elements/Flip_Box.php:831, ../includes/Elements/Team_Member.php:432 +#: ../includes/Elements/Flip_Box.php:835, ../includes/Elements/Team_Member.php:451 msgid "Content Padding" msgstr "" -#: ../includes/Elements/Flip_Box.php:845 +#: ../includes/Elements/Flip_Box.php:849 msgid "Border Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:881, ../includes/Elements/Info_Box.php:539 +#: ../includes/Elements/Flip_Box.php:885, ../includes/Elements/Info_Box.php:544 msgid "Image Style" msgstr "" -#: ../includes/Elements/Flip_Box.php:892 +#: ../includes/Elements/Flip_Box.php:896 msgid "Image Type" msgstr "" -#: ../includes/Elements/Flip_Box.php:1345 +#: ../includes/Elements/Flip_Box.php:1349 msgid "Button Style" msgstr "" @@ -4626,11 +4477,11 @@ msgstr "" msgid "Section Field" msgstr "" -#: ../includes/Elements/GravityForms.php:1289, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:1617, ../includes/Elements/Sticky_Video.php:594 +#: ../includes/Elements/GravityForms.php:1289, ../includes/Elements/Pricing_Table.php:829, ../includes/Elements/Pricing_Table.php:1618, ../includes/Elements/Sticky_Video.php:598 msgid "Border Type" msgstr "" -#: ../includes/Elements/GravityForms.php:1295, ../includes/Elements/Sticky_Video.php:600 +#: ../includes/Elements/GravityForms.php:1295, ../includes/Elements/Sticky_Video.php:604 msgid "Double" msgstr "" @@ -4642,7 +4493,7 @@ msgstr "" msgid "Price Label Color" msgstr "" -#: ../includes/Elements/GravityForms.php:1388, ../includes/Elements/Product_Grid.php:1357, ../includes/Elements/Product_Grid.php:2666, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Gallery.php:846, ../includes/Elements/Woo_Product_Gallery.php:1897 +#: ../includes/Elements/GravityForms.php:1388, ../includes/Elements/Product_Grid.php:1469, ../includes/Elements/Product_Grid.php:2807, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Gallery.php:969, ../includes/Elements/Woo_Product_Gallery.php:2049 msgid "Price Color" msgstr "" @@ -4686,11 +4537,11 @@ msgstr "" msgid "Error Field Label Color" msgstr "" -#: ../includes/Elements/GravityForms.php:2766, ../includes/Elements/NinjaForms.php:1694, ../includes/Elements/WpForms.php:1398 +#: ../includes/Elements/GravityForms.php:2766, ../includes/Elements/NinjaForms.php:1694, ../includes/Elements/WpForms.php:1414 msgid "Error Field Input Border Color" msgstr "" -#: ../includes/Elements/GravityForms.php:2781, ../includes/Elements/WpForms.php:1413 +#: ../includes/Elements/GravityForms.php:2781, ../includes/Elements/WpForms.php:1429 msgid "Error Field Input Border Width" msgstr "" @@ -4698,315 +4549,323 @@ msgstr "" msgid "Thank You Message" msgstr "" -#: ../includes/Elements/Image_Accordion.php:68 +#: ../includes/Elements/Image_Accordion.php:72 msgid "Accordion Style" msgstr "" -#: ../includes/Elements/Image_Accordion.php:73, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_List.php:603 +#: ../includes/Elements/Image_Accordion.php:77, ../includes/Elements/Woo_Product_Carousel.php:420, ../includes/Elements/Woo_Product_List.php:669 msgid "On Hover" msgstr "" -#: ../includes/Elements/Image_Accordion.php:74 +#: ../includes/Elements/Image_Accordion.php:78 msgid "On Click" msgstr "" -#: ../includes/Elements/Image_Accordion.php:105, ../includes/Elements/Login_Register.php:4009, ../includes/Elements/Login_Register.php:4105, ../includes/Elements/Login_Register.php:4202, ../includes/Elements/Login_Register.php:4299 +#: ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Login_Register.php:4009, ../includes/Elements/Login_Register.php:4105, ../includes/Elements/Login_Register.php:4202, ../includes/Elements/Login_Register.php:4299 msgid "Horizontal Alignment" msgstr "" -#: ../includes/Elements/Image_Accordion.php:128, ../includes/Elements/Login_Register.php:3988, ../includes/Elements/Login_Register.php:4084, ../includes/Elements/Login_Register.php:4181, ../includes/Elements/Login_Register.php:4278 +#: ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Login_Register.php:3988, ../includes/Elements/Login_Register.php:4084, ../includes/Elements/Login_Register.php:4181, ../includes/Elements/Login_Register.php:4278 msgid "Vertical Alignment" msgstr "" -#: ../includes/Elements/Image_Accordion.php:174 +#: ../includes/Elements/Image_Accordion.php:178 msgid "Make it active?" msgstr "" -#: ../includes/Elements/Image_Accordion.php:203 +#: ../includes/Elements/Image_Accordion.php:207 msgid "Accordion item title" msgstr "" -#: ../includes/Elements/Image_Accordion.php:217 +#: ../includes/Elements/Image_Accordion.php:221 msgid "Accordion content goes here!" msgstr "" -#: ../includes/Elements/Image_Accordion.php:224 +#: ../includes/Elements/Image_Accordion.php:228 msgid "Enable Title Link" msgstr "" -#: ../includes/Elements/Image_Accordion.php:237 +#: ../includes/Elements/Image_Accordion.php:241 msgid "Title Link" msgstr "" -#: ../includes/Elements/Image_Accordion.php:259 +#: ../includes/Elements/Image_Accordion.php:263 msgid "Image Accordion #1" msgstr "" -#: ../includes/Elements/Image_Accordion.php:260, ../includes/Elements/Image_Accordion.php:267, ../includes/Elements/Image_Accordion.php:274, ../includes/Elements/Image_Accordion.php:281 +#: ../includes/Elements/Image_Accordion.php:264, ../includes/Elements/Image_Accordion.php:271, ../includes/Elements/Image_Accordion.php:278, ../includes/Elements/Image_Accordion.php:285 msgid "Image Accordion Content Goes Here! Click edit button to change this text." msgstr "" -#: ../includes/Elements/Image_Accordion.php:266 +#: ../includes/Elements/Image_Accordion.php:270 msgid "Image Accordion #2" msgstr "" -#: ../includes/Elements/Image_Accordion.php:273 +#: ../includes/Elements/Image_Accordion.php:277 msgid "Image Accordion #3" msgstr "" -#: ../includes/Elements/Image_Accordion.php:280 +#: ../includes/Elements/Image_Accordion.php:284 msgid "Image Accordion #4" msgstr "" -#: ../includes/Elements/Image_Accordion.php:412 +#: ../includes/Elements/Image_Accordion.php:416 msgid "Hover Overlay Color" msgstr "" -#: ../includes/Elements/Info_Box.php:72, ../includes/Elements/Info_Box.php:159 +#: ../includes/Elements/Info_Box.php:76, ../includes/Elements/Info_Box.php:163 msgid "Infobox Image" msgstr "" -#: ../includes/Elements/Info_Box.php:79 +#: ../includes/Elements/Info_Box.php:83 msgid "Infobox Type" msgstr "" -#: ../includes/Elements/Info_Box.php:84 +#: ../includes/Elements/Info_Box.php:88 msgid "Image/Icon On Top" msgstr "" -#: ../includes/Elements/Info_Box.php:85 +#: ../includes/Elements/Info_Box.php:89 msgid "Image/Icon On Left" msgstr "" -#: ../includes/Elements/Info_Box.php:86 +#: ../includes/Elements/Info_Box.php:90 msgid "Image/Icon On Right" msgstr "" -#: ../includes/Elements/Info_Box.php:94 +#: ../includes/Elements/Info_Box.php:98 msgid "Image or Icon" msgstr "" -#: ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:198, ../includes/Extensions/Table_of_Content.php:574 +#: ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:202, ../includes/Extensions/Table_of_Content.php:659 msgid "Number" msgstr "" -#: ../includes/Elements/Info_Box.php:218, ../includes/Elements/Info_Box.php:282 +#: ../includes/Elements/Info_Box.php:222, ../includes/Elements/Info_Box.php:286 msgid "Infobox Content" msgstr "" -#: ../includes/Elements/Info_Box.php:224 +#: ../includes/Elements/Info_Box.php:228 msgid "Infobox Title" msgstr "" -#: ../includes/Elements/Info_Box.php:230 +#: ../includes/Elements/Info_Box.php:234 msgid "This is an icon box" msgstr "" -#: ../includes/Elements/Info_Box.php:291 +#: ../includes/Elements/Info_Box.php:295 msgid "

Write a short description, that will describe the title or something informational and useful.

" msgstr "" -#: ../includes/Elements/Info_Box.php:300 +#: ../includes/Elements/Info_Box.php:304 msgid "Show Content" msgstr "" -#: ../includes/Elements/Info_Box.php:339, ../includes/Elements/Post_Grid.php:735 +#: ../includes/Elements/Info_Box.php:344, ../includes/Elements/Post_Grid.php:748 msgid "Content Height" msgstr "" -#: ../includes/Elements/Info_Box.php:369 +#: ../includes/Elements/Info_Box.php:374 msgid "Show Infobox Button" msgstr "" -#: ../includes/Elements/Info_Box.php:382 +#: ../includes/Elements/Info_Box.php:387 msgid "Infobox Clickable" msgstr "" -#: ../includes/Elements/Info_Box.php:397 +#: ../includes/Elements/Info_Box.php:402 msgid "Infobox Link" msgstr "" -#: ../includes/Elements/Info_Box.php:441 +#: ../includes/Elements/Info_Box.php:446 msgid "Enter link URL for the button" msgstr "" -#: ../includes/Elements/Info_Box.php:446 +#: ../includes/Elements/Info_Box.php:451 msgid "Enter heading for the button" msgstr "" -#: ../includes/Elements/Info_Box.php:592, ../includes/Elements/Info_Box.php:647 +#: ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:652 msgid "Image Shape" msgstr "" -#: ../includes/Elements/Info_Box.php:630, ../includes/Elements/Info_Box.php:858, ../includes/Elements/Info_Box.php:1091, ../includes/Elements/Interactive_Circle.php:414, ../includes/Elements/Post_Grid.php:924, ../includes/Elements/Simple_Menu.php:627, ../includes/Elements/SVG_Draw.php:261 +#: ../includes/Elements/Info_Box.php:635, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1096, ../includes/Elements/Interactive_Circle.php:456, ../includes/Elements/Post_Grid.php:937, ../includes/Elements/Simple_Menu.php:627, ../includes/Elements/SVG_Draw.php:265 msgid "Animation" msgstr "" -#: ../includes/Elements/Info_Box.php:723 +#: ../includes/Elements/Info_Box.php:728 msgid "Number Icon Style" msgstr "" -#: ../includes/Elements/Info_Box.php:742, ../includes/Elements/Info_Box.php:974 +#: ../includes/Elements/Info_Box.php:747, ../includes/Elements/Info_Box.php:979 msgid "Icon Background Size" msgstr "" -#: ../includes/Elements/Info_Box.php:815, ../includes/Elements/Info_Box.php:895, ../includes/Elements/Info_Box.php:1033, ../includes/Elements/Info_Box.php:1129 +#: ../includes/Elements/Info_Box.php:820, ../includes/Elements/Info_Box.php:900, ../includes/Elements/Info_Box.php:1038, ../includes/Elements/Info_Box.php:1134 msgid "Background Shape" msgstr "" -#: ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Product_Grid.php:1611 +#: ../includes/Elements/Info_Box.php:1179, ../includes/Elements/Product_Grid.php:1723 msgid "Button Styles" msgstr "" -#: ../includes/Elements/Info_Box.php:1413 +#: ../includes/Elements/Info_Box.php:1418 msgid "Content Only Margin" msgstr "" -#: ../includes/Elements/Info_Box.php:1425 +#: ../includes/Elements/Info_Box.php:1430 msgid "Content Only Background" msgstr "" -#: ../includes/Elements/Info_Box.php:1437 +#: ../includes/Elements/Info_Box.php:1442 msgid "Content Only Padding" msgstr "" -#: ../includes/Elements/Info_Box.php:1500 +#: ../includes/Elements/Info_Box.php:1505 msgid "Transition will applied to ms (ex: 300ms)." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:69, ../includes/Elements/Simple_Menu.php:138, ../includes/Elements/Woo_Product_Carousel.php:2224, ../includes/Elements/Woo_Product_List.php:679, ../includes/Elements/Woo_Product_List.php:697, ../includes/Traits/Controls.php:458 +#: ../includes/Elements/Interactive_Circle.php:73, ../includes/Elements/Simple_Menu.php:138, ../includes/Elements/Woo_Product_Carousel.php:2267, ../includes/Elements/Woo_Product_List.php:766, ../includes/Elements/Woo_Product_List.php:784, ../includes/Traits/Controls.php:471 msgid "Preset" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:77, ../includes/Elements/Product_Grid.php:276, ../includes/Elements/Product_Grid.php:1846, ../includes/Elements/Woo_Product_Carousel.php:912, ../includes/Elements/Woo_Product_Carousel.php:2230, ../includes/Elements/Woo_Product_Gallery.php:336, ../includes/Elements/Woo_Product_Gallery.php:1585, ../includes/Traits/Controls.php:465, ../includes/Template/Woo-Product-Carousel/preset-4.php:4 +#: ../includes/Elements/Interactive_Circle.php:81, ../includes/Elements/Product_Grid.php:325, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Woo_Product_Carousel.php:955, ../includes/Elements/Woo_Product_Carousel.php:2273, ../includes/Elements/Woo_Product_Gallery.php:354, ../includes/Elements/Woo_Product_Gallery.php:1708, ../includes/Traits/Controls.php:478, ../includes/Template/Woo-Product-Carousel/preset-4.php:4 msgid "Preset 4" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:104 +#: ../includes/Elements/Interactive_Circle.php:108 msgid "Show Text" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:152 +#: ../includes/Elements/Interactive_Circle.php:156 msgid "Circle Item limit max 8. If the item is more than 8 it will break the preset layout design." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:190 +#: ../includes/Elements/Interactive_Circle.php:194 msgid "Short Title" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:226, ../includes/Elements/Login_Register.php:4329, ../includes/Elements/Login_Register.php:4341, ../includes/Elements/Login_Register.php:4477, ../includes/Elements/Login_Register.php:4606, ../includes/Elements/SVG_Draw.php:358, ../includes/Extensions/Table_of_Content.php:1172 +#: ../includes/Elements/Interactive_Circle.php:207 +msgid "Item Link" +msgstr "" + +#: ../includes/Elements/Interactive_Circle.php:217 +msgid "To be able to view detailed content, Please go to > Additional Settings, then Mouse Event, and choose Hover" +msgstr "" + +#: ../includes/Elements/Interactive_Circle.php:268, ../includes/Elements/Login_Register.php:4329, ../includes/Elements/Login_Register.php:4341, ../includes/Elements/Login_Register.php:4477, ../includes/Elements/Login_Register.php:4606, ../includes/Elements/SVG_Draw.php:362, ../includes/Extensions/Table_of_Content.php:1257 msgid "Style" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:240 +#: ../includes/Elements/Interactive_Circle.php:282 msgid "Reload needed on first change" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:263 +#: ../includes/Elements/Interactive_Circle.php:305 msgid "Item 1" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:264 +#: ../includes/Elements/Interactive_Circle.php:306 msgid "active" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:265 +#: ../includes/Elements/Interactive_Circle.php:307 msgid "Present your content in an attractive Circle layout item 1. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:272 +#: ../includes/Elements/Interactive_Circle.php:314 msgid "Item 2" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:273 +#: ../includes/Elements/Interactive_Circle.php:315 msgid "Present your content in an attractive Circle layout item 2. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:280 +#: ../includes/Elements/Interactive_Circle.php:322 msgid "Item 3" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:281 +#: ../includes/Elements/Interactive_Circle.php:323 msgid "Present your content in an attractive Circle layout item 3. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:288 +#: ../includes/Elements/Interactive_Circle.php:330 msgid "Item 4" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:289 +#: ../includes/Elements/Interactive_Circle.php:331 msgid "Present your content in an attractive Circle layout item 4. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:296 +#: ../includes/Elements/Interactive_Circle.php:338 msgid "Item 5" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:297 +#: ../includes/Elements/Interactive_Circle.php:339 msgid "Present your content in an attractive Circle layout item 5. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:304 +#: ../includes/Elements/Interactive_Circle.php:346 msgid "Item 6" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:305 +#: ../includes/Elements/Interactive_Circle.php:347 msgid "Present your content in an attractive Circle layout item 6. You can highlight key information with click or hover effects and style it as per your preference." msgstr "" -#: ../includes/Elements/Interactive_Circle.php:319 +#: ../includes/Elements/Interactive_Circle.php:361 msgid "Additional Settings" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:327 +#: ../includes/Elements/Interactive_Circle.php:369 msgid "Rotate Animation" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:340 +#: ../includes/Elements/Interactive_Circle.php:382 msgid "Rotation Speed" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:367 +#: ../includes/Elements/Interactive_Circle.php:409 msgid "Pause on hover" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:380 +#: ../includes/Elements/Interactive_Circle.php:422 msgid "Mouse Event" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:385, ../includes/Elements/Pricing_Table.php:449 +#: ../includes/Elements/Interactive_Circle.php:427, ../includes/Elements/Pricing_Table.php:453 msgid "Click" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:420 +#: ../includes/Elements/Interactive_Circle.php:462 msgid "Bounce In" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:421, ../includes/Elements/Woo_Product_Carousel.php:539 +#: ../includes/Elements/Interactive_Circle.php:463, ../includes/Elements/Woo_Product_Carousel.php:559, ../includes/Extensions/Hover_Effect.php:433, ../includes/Extensions/Hover_Effect.php:1079 msgid "Rotate" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:422 +#: ../includes/Elements/Interactive_Circle.php:464 msgid "Spinning" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:443 +#: ../includes/Elements/Interactive_Circle.php:485 msgid "Interval (Miliseconds)" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:479 +#: ../includes/Elements/Interactive_Circle.php:521 msgid "Circle Width" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:545 +#: ../includes/Elements/Interactive_Circle.php:587 msgid "Connectors" msgstr "" -#: ../includes/Elements/Interactive_Circle.php:569 +#: ../includes/Elements/Interactive_Circle.php:611 msgid "Desktop view for mobile" msgstr "" -#: ../includes/Elements/Login_Register.php:165, ../includes/templates/admin/elements.php:491 +#: ../includes/Elements/Login_Register.php:165, ../includes/Traits/Admin.php:1219 msgid "Login | Register Form" msgstr "" @@ -5054,7 +4913,7 @@ msgstr "" msgid "Default Form Type" msgstr "" -#: ../includes/Elements/Login_Register.php:325, ../includes/Elements/Login_Register.php:5163, ../includes/Elements/Login_Register.php:5188, ../includes/Elements/Login_Register.php:5921, ../includes/Elements/Login_Register.php:6234, ../includes/Elements/Woo_Checkout.php:458, ../includes/Elements/Woo_Checkout.php:1411, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341 +#: ../includes/Elements/Login_Register.php:325, ../includes/Elements/Login_Register.php:5163, ../includes/Elements/Login_Register.php:5188, ../includes/Elements/Login_Register.php:5921, ../includes/Elements/Login_Register.php:6234, ../includes/Elements/Woo_Checkout.php:474, ../includes/Elements/Woo_Checkout.php:1452, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341 msgid "Login" msgstr "" @@ -5694,7 +5553,7 @@ msgstr "" msgid "Eg. Something went wrong" msgstr "" -#: ../includes/Elements/Login_Register.php:1821, ../includes/Traits/Admin.php:75, ../includes/Traits/Login_Registration.php:185 +#: ../includes/Elements/Login_Register.php:1821, ../includes/Traits/Login_Registration.php:185 msgid "Something went wrong!" msgstr "" @@ -6190,7 +6049,7 @@ msgstr "" msgid "Forgot Password" msgstr "" -#: ../includes/Elements/Login_Register.php:4581, ../includes/Elements/Pricing_Table.php:1745 +#: ../includes/Elements/Login_Register.php:4581, ../includes/Elements/Pricing_Table.php:1746 msgid "Background Hover Color" msgstr "" @@ -6250,7 +6109,7 @@ msgstr "" msgid "Theme" msgstr "" -#: ../includes/Elements/Login_Register.php:5138, ../includes/Elements/Pricing_Table.php:513 +#: ../includes/Elements/Login_Register.php:5138, ../includes/Elements/Pricing_Table.php:517 msgid "Light" msgstr "" @@ -6274,7 +6133,7 @@ msgstr "" msgid "Align Items" msgstr "" -#: ../includes/Elements/Login_Register.php:5278, ../includes/Elements/Woo_Product_Carousel.php:575 +#: ../includes/Elements/Login_Register.php:5278, ../includes/Elements/Woo_Product_Carousel.php:595 msgid "Stretch" msgstr "" @@ -6317,7 +6176,7 @@ msgstr "" msgid "Error! It is required to use %s field with %s Field." msgstr "" -#: ../includes/Elements/NFT_Gallery.php:71, ../includes/Elements/Woo_Product_Carousel.php:785, ../includes/Elements/Woo_Product_List.php:387, ../includes/Traits/Controls.php:59, ../includes/Traits/Controls.php:247 +#: ../includes/Elements/NFT_Gallery.php:71, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_List.php:436, ../includes/Traits/Controls.php:59, ../includes/Traits/Controls.php:253 msgid "Query" msgstr "" @@ -6337,15 +6196,15 @@ msgstr "" msgid "Collections" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:120, ../includes/Elements/Product_Grid.php:397, ../includes/Elements/Woo_Product_Carousel.php:789, ../includes/Elements/Woo_Product_Gallery.php:408, ../includes/Elements/Woo_Product_List.php:427 +#: ../includes/Elements/NFT_Gallery.php:120, ../includes/Elements/Product_Grid.php:452, ../includes/Elements/Woo_Product_Carousel.php:809, ../includes/Elements/Woo_Product_Gallery.php:439, ../includes/Elements/Woo_Product_List.php:483 msgid "Filter By" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:124, ../includes/Elements/NFT_Gallery.php:136 +#: ../includes/Elements/NFT_Gallery.php:124, ../includes/Elements/NFT_Gallery.php:136, ../includes/Elements/NFT_Gallery.php:153 msgid "Collection Slug" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:125, ../includes/Elements/NFT_Gallery.php:153 +#: ../includes/Elements/NFT_Gallery.php:125 msgid "Wallet Address" msgstr "" @@ -6357,7 +6216,7 @@ msgstr "" msgid "Checkout this document to learn how to obtain a wallet address." msgstr "" -#: ../includes/Elements/NFT_Gallery.php:192, ../includes/Elements/Product_Grid.php:431, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Gallery.php:426, ../includes/Elements/Woo_Product_List.php:447, ../includes/Traits/Controls.php:224, ../includes/Traits/Controls.php:359, ../includes/Traits/Controls.php:402 +#: ../includes/Elements/NFT_Gallery.php:192, ../includes/Elements/Product_Grid.php:486, ../includes/Elements/Woo_Product_Carousel.php:836, ../includes/Elements/Woo_Product_Gallery.php:459, ../includes/Elements/Woo_Product_List.php:505, ../includes/Traits/Controls.php:224, ../includes/Traits/Controls.php:365, ../includes/Traits/Controls.php:408 msgid "Order" msgstr "" @@ -6373,7 +6232,7 @@ msgstr "" msgid "NFT Image" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:305, ../includes/Elements/Product_Grid.php:650, ../includes/Elements/Woo_Product_Carousel.php:456, ../includes/Elements/Woo_Product_Gallery.php:1713 +#: ../includes/Elements/NFT_Gallery.php:305, ../includes/Elements/Product_Grid.php:734, ../includes/Elements/Woo_Product_Carousel.php:476, ../includes/Elements/Woo_Product_Gallery.php:1865 msgid "Image Clickable?" msgstr "" @@ -6397,11 +6256,11 @@ msgstr "" msgid "Chain" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:540, ../includes/Elements/NFT_Gallery.php:543, ../includes/Elements/NFT_Gallery.php:1593, ../includes/Elements/NFT_Gallery.php:2608, ../includes/Elements/NFT_Gallery.php:2609 +#: ../includes/Elements/NFT_Gallery.php:540, ../includes/Elements/NFT_Gallery.php:543, ../includes/Elements/NFT_Gallery.php:1593, ../includes/Elements/NFT_Gallery.php:2610, ../includes/Elements/NFT_Gallery.php:2611 msgid "Owner" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:566, ../includes/Elements/NFT_Gallery.php:569, ../includes/Elements/NFT_Gallery.php:2610 +#: ../includes/Elements/NFT_Gallery.php:566, ../includes/Elements/NFT_Gallery.php:569, ../includes/Elements/NFT_Gallery.php:2612 msgid "View Details" msgstr "" @@ -6437,11 +6296,11 @@ msgstr "" msgid "Make sure this value is less than Post Limit" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:762, ../includes/Elements/Woo_Product_Gallery.php:168 +#: ../includes/Elements/NFT_Gallery.php:762, ../includes/Elements/Woo_Product_Gallery.php:169 msgid "Gallery" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:890, ../includes/Elements/Simple_Menu.php:357, ../includes/Elements/Woo_Product_Gallery.php:1331 +#: ../includes/Elements/NFT_Gallery.php:890, ../includes/Elements/Simple_Menu.php:357, ../includes/Elements/Woo_Product_Gallery.php:1454 msgid "Items" msgstr "" @@ -6453,27 +6312,27 @@ msgstr "" msgid "EA NFT Owner Thumbnail" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2718 +#: ../includes/Elements/NFT_Gallery.php:2720 msgid " days" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2719 +#: ../includes/Elements/NFT_Gallery.php:2721 msgid " hours" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2798 +#: ../includes/Elements/NFT_Gallery.php:2801 msgid "Please provide a valid Type!" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2831 +#: ../includes/Elements/NFT_Gallery.php:2835 msgid "Please provide a valid collection slug!" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2837, ../includes/Elements/NFT_Gallery.php:2835 +#: ../includes/Elements/NFT_Gallery.php:2841, ../includes/Elements/NFT_Gallery.php:2839 msgid "Please provide a valid wallet address!" msgstr "" -#: ../includes/Elements/NFT_Gallery.php:2928 +#: ../includes/Elements/NFT_Gallery.php:2932 msgid "Please insert a valid API Key" msgstr "" @@ -6509,7 +6368,7 @@ msgstr "" msgid "Target Blank" msgstr "" -#: ../includes/Elements/Post_Grid.php:203, ../includes/Elements/Product_Grid.php:764, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/Woo_Product_List.php:1008, ../includes/Traits/Controls.php:1247, ../includes/Traits/Controls.php:1338, ../includes/Traits/Controls.php:1764, ../includes/Traits/Twitter_Feed.php:264 +#: ../includes/Elements/Post_Grid.php:203, ../includes/Elements/Product_Grid.php:848, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/Woo_Product_List.php:1125, ../includes/Traits/Controls.php:1369, ../includes/Traits/Controls.php:1460, ../includes/Traits/Controls.php:1897, ../includes/Traits/Twitter_Feed.php:264 msgid "Read More" msgstr "" @@ -6517,103 +6376,107 @@ msgstr "" msgid "Post Grid Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:255 -msgid "Post Background Color" +#: ../includes/Elements/Post_Grid.php:256 +msgid "Make sure to enable Show Date option from Layout Settings" msgstr "" #: ../includes/Elements/Post_Grid.php:268 +msgid "Post Background Color" +msgstr "" + +#: ../includes/Elements/Post_Grid.php:281 msgid "Spacing Between Items" msgstr "" -#: ../includes/Elements/Post_Grid.php:338 +#: ../includes/Elements/Post_Grid.php:351 msgid "Meta Date Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:408 +#: ../includes/Elements/Post_Grid.php:421 msgid "Meta Date Position" msgstr "" -#: ../includes/Elements/Post_Grid.php:422 +#: ../includes/Elements/Post_Grid.php:435 msgid "Meta Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:555, ../includes/Elements/Post_Grid.php:567, ../includes/Traits/Controls.php:1528 +#: ../includes/Elements/Post_Grid.php:568, ../includes/Elements/Post_Grid.php:580, ../includes/Traits/Controls.php:1661 msgid "Meta Position" msgstr "" -#: ../includes/Elements/Post_Grid.php:581 +#: ../includes/Elements/Post_Grid.php:594 msgid "Color, Typography & Spacing" msgstr "" -#: ../includes/Elements/Post_Grid.php:611 +#: ../includes/Elements/Post_Grid.php:624 msgid "Title Hover Color" msgstr "" -#: ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Timeline.php:355 +#: ../includes/Elements/Post_Grid.php:686, ../includes/Elements/Post_Timeline.php:357 msgid "Excerpt Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:682, ../includes/Elements/Post_Timeline.php:364 +#: ../includes/Elements/Post_Grid.php:695, ../includes/Elements/Post_Timeline.php:366 msgid "Excerpt Color" msgstr "" -#: ../includes/Elements/Post_Grid.php:694, ../includes/Elements/Post_Timeline.php:376 +#: ../includes/Elements/Post_Grid.php:707, ../includes/Elements/Post_Timeline.php:378 msgid "Excerpt Alignment" msgstr "" -#: ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Tooltip.php:227, ../includes/Elements/Tooltip.php:402 +#: ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Timeline.php:394, ../includes/Elements/Tooltip.php:231, ../includes/Elements/Tooltip.php:406 msgid "Justified" msgstr "" -#: ../includes/Elements/Post_Grid.php:724, ../includes/Elements/Post_Timeline.php:406 +#: ../includes/Elements/Post_Grid.php:737, ../includes/Elements/Post_Timeline.php:408 msgid "Excerpt Typography" msgstr "" -#: ../includes/Elements/Post_Grid.php:768 +#: ../includes/Elements/Post_Grid.php:781 msgid "Terms Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:779 +#: ../includes/Elements/Post_Grid.php:792 msgid "Terms Color" msgstr "" -#: ../includes/Elements/Post_Grid.php:818 +#: ../includes/Elements/Post_Grid.php:831 msgid "Meta Typography" msgstr "" -#: ../includes/Elements/Post_Grid.php:843, ../includes/Traits/Controls.php:1683 +#: ../includes/Elements/Post_Grid.php:856, ../includes/Traits/Controls.php:1816 msgid "Terms" msgstr "" -#: ../includes/Elements/Post_Grid.php:916 +#: ../includes/Elements/Post_Grid.php:929 msgid "Hover Card Style" msgstr "" -#: ../includes/Elements/Post_Grid.php:929 +#: ../includes/Elements/Post_Grid.php:942 msgid "FadeIn" msgstr "" -#: ../includes/Elements/Post_Grid.php:930, ../includes/Elements/Simple_Menu.php:632 +#: ../includes/Elements/Post_Grid.php:943, ../includes/Elements/Simple_Menu.php:632 msgid "ZoomIn" msgstr "" -#: ../includes/Elements/Post_Grid.php:931 +#: ../includes/Elements/Post_Grid.php:944 msgid "SlideUp" msgstr "" -#: ../includes/Elements/Post_Grid.php:939 +#: ../includes/Elements/Post_Grid.php:952 msgid "Post Hover Icon" msgstr "" -#: ../includes/Elements/Post_Grid.php:967 +#: ../includes/Elements/Post_Grid.php:980 msgid "Cards Radius" msgstr "" -#: ../includes/Elements/Post_Grid.php:990 +#: ../includes/Elements/Post_Grid.php:1003 msgid "Icon font size" msgstr "" -#: ../includes/Elements/Post_Grid.php:1104 +#: ../includes/Elements/Post_Grid.php:1117 msgid "

No Layout Found!

" msgstr "" @@ -6629,339 +6492,339 @@ msgstr "" msgid "Leave blank or Clear to use default gradient overlay" msgstr "" -#: ../includes/Elements/Post_Timeline.php:429 +#: ../includes/Elements/Post_Timeline.php:431 msgid "Border & Arrow Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:446, ../includes/Elements/Tooltip.php:700 +#: ../includes/Elements/Post_Timeline.php:448, ../includes/Elements/Tooltip.php:704 msgid "Arrow Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:522 +#: ../includes/Elements/Post_Timeline.php:524 msgid "Date Background Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:536 +#: ../includes/Elements/Post_Timeline.php:538 msgid "Date Text Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:584 +#: ../includes/Elements/Post_Timeline.php:586 msgid "Line & Bullet" msgstr "" -#: ../includes/Elements/Post_Timeline.php:601 +#: ../includes/Elements/Post_Timeline.php:603 msgid "Line Width" msgstr "" -#: ../includes/Elements/Post_Timeline.php:619 +#: ../includes/Elements/Post_Timeline.php:621 msgid "Line Position From Right" msgstr "" -#: ../includes/Elements/Post_Timeline.php:641, ../includes/Extensions/Table_of_Content.php:585 +#: ../includes/Elements/Post_Timeline.php:643, ../includes/Extensions/Table_of_Content.php:670 msgid "Bullet Size" msgstr "" -#: ../includes/Elements/Post_Timeline.php:659 +#: ../includes/Elements/Post_Timeline.php:661 msgid "Left-sided Bullet Positon" msgstr "" -#: ../includes/Elements/Post_Timeline.php:680 +#: ../includes/Elements/Post_Timeline.php:682 msgid "Right-sided Bullet Position" msgstr "" -#: ../includes/Elements/Post_Timeline.php:702 +#: ../includes/Elements/Post_Timeline.php:704 msgid "Timeline Bullet Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:715 +#: ../includes/Elements/Post_Timeline.php:717 msgid "Timeline Bullet Border Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:728 +#: ../includes/Elements/Post_Timeline.php:730 msgid "Timeline Vertical Line Color" msgstr "" -#: ../includes/Elements/Post_Timeline.php:792, ../includes/Elements/Product_Grid.php:3293 +#: ../includes/Elements/Post_Timeline.php:794, ../includes/Elements/Product_Grid.php:3434 msgid "

No layout found!

" msgstr "" -#: ../includes/Elements/Pricing_Table.php:88 +#: ../includes/Elements/Pricing_Table.php:92 msgid "Pricing Style 2" msgstr "" -#: ../includes/Elements/Pricing_Table.php:89 +#: ../includes/Elements/Pricing_Table.php:93 msgid "Pricing Style 3 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:90 +#: ../includes/Elements/Pricing_Table.php:94 msgid "Pricing Style 4 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:91 +#: ../includes/Elements/Pricing_Table.php:95 msgid "Pricing Style 5 (Pro)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:100 +#: ../includes/Elements/Pricing_Table.php:104 msgid "Pricing Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:127, ../includes/Elements/Pricing_Table.php:356, ../includes/Extensions/Table_of_Content.php:568 +#: ../includes/Elements/Pricing_Table.php:131, ../includes/Elements/Pricing_Table.php:360, ../includes/Extensions/Table_of_Content.php:653 msgid "List Icon" msgstr "" -#: ../includes/Elements/Pricing_Table.php:137 +#: ../includes/Elements/Pricing_Table.php:141 msgid "Icon Placement" msgstr "" -#: ../includes/Elements/Pricing_Table.php:160 +#: ../includes/Elements/Pricing_Table.php:164 msgid "Startup" msgstr "" -#: ../includes/Elements/Pricing_Table.php:180 +#: ../includes/Elements/Pricing_Table.php:184 msgid "A tagline here." msgstr "" -#: ../includes/Elements/Pricing_Table.php:232 +#: ../includes/Elements/Pricing_Table.php:236 msgid "99" msgstr "" -#: ../includes/Elements/Pricing_Table.php:241 +#: ../includes/Elements/Pricing_Table.php:245 msgid "On Sale?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:252, ../includes/Elements/Pricing_Table.php:1156, ../includes/Elements/Woo_Product_List.php:2374 +#: ../includes/Elements/Pricing_Table.php:256, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Woo_Product_List.php:2520 msgid "Sale Price" msgstr "" -#: ../includes/Elements/Pricing_Table.php:258 +#: ../includes/Elements/Pricing_Table.php:262 msgid "89" msgstr "" -#: ../includes/Elements/Pricing_Table.php:270 +#: ../includes/Elements/Pricing_Table.php:274 msgid "Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:274 +#: ../includes/Elements/Pricing_Table.php:278 msgid "$" msgstr "" -#: ../includes/Elements/Pricing_Table.php:284 +#: ../includes/Elements/Pricing_Table.php:288 msgid "Currency Placement" msgstr "" -#: ../includes/Elements/Pricing_Table.php:300 +#: ../includes/Elements/Pricing_Table.php:304 msgid "Price Period (per)" msgstr "" -#: ../includes/Elements/Pricing_Table.php:304 +#: ../includes/Elements/Pricing_Table.php:308 msgid "month" msgstr "" -#: ../includes/Elements/Pricing_Table.php:314 +#: ../includes/Elements/Pricing_Table.php:318 msgid "Period Separator" msgstr "" -#: ../includes/Elements/Pricing_Table.php:318 +#: ../includes/Elements/Pricing_Table.php:322 msgid "/" msgstr "" -#: ../includes/Elements/Pricing_Table.php:333 +#: ../includes/Elements/Pricing_Table.php:337 msgid "Feature" msgstr "" -#: ../includes/Elements/Pricing_Table.php:346 +#: ../includes/Elements/Pricing_Table.php:350 msgid "Pricing table list item" msgstr "" -#: ../includes/Elements/Pricing_Table.php:369 +#: ../includes/Elements/Pricing_Table.php:373 msgid "Item Active?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:392 +#: ../includes/Elements/Pricing_Table.php:396 msgid "Enable Tooltip?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:402 +#: ../includes/Elements/Pricing_Table.php:406 msgid "Tooltip Content" msgstr "" -#: ../includes/Elements/Pricing_Table.php:405 +#: ../includes/Elements/Pricing_Table.php:409 msgid "I'm a awesome tooltip!!" msgstr "" -#: ../includes/Elements/Pricing_Table.php:415 +#: ../includes/Elements/Pricing_Table.php:419 msgid "Tooltip Side" msgstr "" -#: ../includes/Elements/Pricing_Table.php:445 +#: ../includes/Elements/Pricing_Table.php:449 msgid "Tooltip Trigger" msgstr "" -#: ../includes/Elements/Pricing_Table.php:461 +#: ../includes/Elements/Pricing_Table.php:465 msgid "Tooltip Animation" msgstr "" -#: ../includes/Elements/Pricing_Table.php:465 +#: ../includes/Elements/Pricing_Table.php:469 msgid "Grow" msgstr "" -#: ../includes/Elements/Pricing_Table.php:468 +#: ../includes/Elements/Pricing_Table.php:472 msgid "Fall" msgstr "" -#: ../includes/Elements/Pricing_Table.php:480, ../includes/Elements/Progress_Bar.php:257 +#: ../includes/Elements/Pricing_Table.php:484, ../includes/Elements/Progress_Bar.php:261 msgid "Animation Duration" msgstr "" -#: ../includes/Elements/Pricing_Table.php:495, ../includes/Elements/Pricing_Table.php:1647 +#: ../includes/Elements/Pricing_Table.php:499, ../includes/Elements/Pricing_Table.php:1648 msgid "Tooltip Arrow" msgstr "" -#: ../includes/Elements/Pricing_Table.php:508 +#: ../includes/Elements/Pricing_Table.php:512 msgid "Tooltip Theme" msgstr "" -#: ../includes/Elements/Pricing_Table.php:512 +#: ../includes/Elements/Pricing_Table.php:516 msgid "Noir" msgstr "" -#: ../includes/Elements/Pricing_Table.php:514 +#: ../includes/Elements/Pricing_Table.php:518 msgid "Punk" msgstr "" -#: ../includes/Elements/Pricing_Table.php:516 +#: ../includes/Elements/Pricing_Table.php:520 msgid "Borderless" msgstr "" -#: ../includes/Elements/Pricing_Table.php:557 +#: ../includes/Elements/Pricing_Table.php:561 msgid "Display Button" msgstr "" -#: ../includes/Elements/Pricing_Table.php:626 +#: ../includes/Elements/Pricing_Table.php:627 msgid "Choose Plan" msgstr "" -#: ../includes/Elements/Pricing_Table.php:639, ../includes/Elements/Tooltip.php:251 +#: ../includes/Elements/Pricing_Table.php:640, ../includes/Elements/Tooltip.php:255 msgid "Button Link" msgstr "" -#: ../includes/Elements/Pricing_Table.php:662, ../includes/Elements/Pricing_Table.php:1351 +#: ../includes/Elements/Pricing_Table.php:663, ../includes/Elements/Pricing_Table.php:1352 msgid "Ribbon" msgstr "" -#: ../includes/Elements/Pricing_Table.php:669 +#: ../includes/Elements/Pricing_Table.php:670 msgid "Featured?" msgstr "" -#: ../includes/Elements/Pricing_Table.php:679 +#: ../includes/Elements/Pricing_Table.php:680 msgid "Ribbon Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Woo_Cart.php:150 +#: ../includes/Elements/Pricing_Table.php:685, ../includes/Elements/Woo_Cart.php:150 msgid "Style 2" msgstr "" -#: ../includes/Elements/Pricing_Table.php:685 +#: ../includes/Elements/Pricing_Table.php:686 msgid "Style 3" msgstr "" -#: ../includes/Elements/Pricing_Table.php:686 +#: ../includes/Elements/Pricing_Table.php:687 msgid "Style 4" msgstr "" -#: ../includes/Elements/Pricing_Table.php:700 +#: ../includes/Elements/Pricing_Table.php:701 msgid "Featured Tag Text" msgstr "" -#: ../includes/Elements/Pricing_Table.php:704 +#: ../includes/Elements/Pricing_Table.php:705 msgid "Featured" msgstr "" -#: ../includes/Elements/Pricing_Table.php:726 +#: ../includes/Elements/Pricing_Table.php:727 msgid "Ribbon Alignment" msgstr "" -#: ../includes/Elements/Pricing_Table.php:783 +#: ../includes/Elements/Pricing_Table.php:784 msgid "Pricing Table Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:969, ../includes/Elements/Pricing_Table.php:1362 +#: ../includes/Elements/Pricing_Table.php:970, ../includes/Elements/Pricing_Table.php:1363 msgid "Line Color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:992 +#: ../includes/Elements/Pricing_Table.php:993 msgid "Subtitle Style" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1078 +#: ../includes/Elements/Pricing_Table.php:1079 msgid "Pricing" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1086 +#: ../includes/Elements/Pricing_Table.php:1087 msgid "Original Price" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1115 +#: ../includes/Elements/Pricing_Table.php:1116 msgid "Original Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1185 +#: ../includes/Elements/Pricing_Table.php:1186 msgid "Sale Price Currency" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1225 +#: ../includes/Elements/Pricing_Table.php:1226 msgid "Pricing Period" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1281 +#: ../includes/Elements/Pricing_Table.php:1282 msgid "Disable item color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1315 +#: ../includes/Elements/Pricing_Table.php:1316 msgid "SVG Icon Size" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1383, ../includes/Extensions/Table_of_Content.php:836 +#: ../includes/Elements/Pricing_Table.php:1384, ../includes/Extensions/Table_of_Content.php:921 msgid "Line Height" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1573 +#: ../includes/Elements/Pricing_Table.php:1574 msgid "Arrow Background" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1606 +#: ../includes/Elements/Pricing_Table.php:1607 msgid "Refresh your browser after saving the padding value for see changes." msgstr "" -#: ../includes/Elements/Pricing_Table.php:1656, ../includes/Elements/Tooltip.php:674 +#: ../includes/Elements/Pricing_Table.php:1657, ../includes/Elements/Tooltip.php:678 msgid "Arrow Size" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1701 +#: ../includes/Elements/Pricing_Table.php:1702 msgid "Icon Settings" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1712 +#: ../includes/Elements/Pricing_Table.php:1713 msgid "Show Background" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1782 +#: ../includes/Elements/Pricing_Table.php:1783 msgid "Icon Area Width" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1807 +#: ../includes/Elements/Pricing_Table.php:1808 msgid "Icon Area Height" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1839, ../includes/Elements/Team_Member.php:832, ../includes/Elements/Woo_Cart.php:253, ../includes/Elements/Woo_Cart.php:841 +#: ../includes/Elements/Pricing_Table.php:1840, ../includes/Elements/Team_Member.php:851, ../includes/Elements/Woo_Cart.php:253, ../includes/Elements/Woo_Cart.php:841 msgid "Icon Hover Color" msgstr "" -#: ../includes/Elements/Pricing_Table.php:1965 +#: ../includes/Elements/Pricing_Table.php:1966 msgid "Button Gradient Background" msgstr "" -#: ../includes/Elements/Product_Grid.php:131, ../includes/Elements/Woo_Product_List.php:134, ../includes/templates/admin/go-pro.php:144 +#: ../includes/Elements/Product_Grid.php:131, ../includes/Elements/Woo_Product_List.php:134 msgid "View More" msgstr "" @@ -6969,11 +6832,11 @@ msgstr "" msgid "Product ID" msgstr "" -#: ../includes/Elements/Product_Grid.php:141, ../includes/Elements/Product_Grid.php:1321, ../includes/Elements/Woo_Cart.php:208, ../includes/Elements/Woo_Cart.php:444, ../includes/Elements/Woo_Product_Carousel.php:123, ../includes/Elements/Woo_Product_Carousel.php:1190, ../includes/Elements/Woo_Product_Gallery.php:112, ../includes/Elements/Woo_Product_Gallery.php:810, ../includes/Elements/Woo_Product_List.php:144 +#: ../includes/Elements/Product_Grid.php:141, ../includes/Elements/Product_Grid.php:1433, ../includes/Elements/Woo_Cart.php:208, ../includes/Elements/Woo_Cart.php:444, ../includes/Elements/Woo_Product_Carousel.php:123, ../includes/Elements/Woo_Product_Carousel.php:1233, ../includes/Elements/Woo_Product_Gallery.php:112, ../includes/Elements/Woo_Product_Gallery.php:933, ../includes/Elements/Woo_Product_List.php:144 msgid "Product Title" msgstr "" -#: ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:2971, ../includes/Elements/Woo_Product_Carousel.php:125, ../includes/Elements/Woo_Product_Carousel.php:2008, ../includes/Elements/Woo_Product_Gallery.php:114, ../includes/Elements/Woo_Product_Gallery.php:2243, ../includes/Elements/Woo_Product_List.php:146, ../includes/Elements/Woo_Product_List.php:3079, ../includes/Traits/Woo_Product_Comparable.php:45, ../includes/Traits/Woo_Product_Comparable.php:91 +#: ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:3112, ../includes/Elements/Woo_Product_Carousel.php:125, ../includes/Elements/Woo_Product_Carousel.php:2051, ../includes/Elements/Woo_Product_Gallery.php:114, ../includes/Elements/Woo_Product_Gallery.php:2395, ../includes/Elements/Woo_Product_List.php:146, ../includes/Elements/Woo_Product_List.php:3225, ../includes/Traits/Woo_Product_Comparable.php:45, ../includes/Traits/Woo_Product_Comparable.php:91 msgid "SKU" msgstr "" @@ -7001,471 +6864,479 @@ msgstr "" msgid "Related Products" msgstr "" -#: ../includes/Elements/Product_Grid.php:161, ../includes/Elements/Woo_Product_List.php:163, ../includes/Traits/Controls.php:27 +#: ../includes/Elements/Product_Grid.php:161, ../includes/Elements/Woo_Product_Carousel.php:142, ../includes/Elements/Woo_Product_Gallery.php:130, ../includes/Elements/Woo_Product_List.php:163, ../includes/Traits/Controls.php:27 msgid "Manual Selection" msgstr "" -#: ../includes/Elements/Product_Grid.php:227, ../includes/Elements/Woo_Product_Gallery.php:161 +#: ../includes/Elements/Product_Grid.php:227, ../includes/Elements/Woo_Product_Gallery.php:162 msgid "Layouts" msgstr "" -#: ../includes/Elements/Product_Grid.php:252, ../includes/Elements/Team_Member.php:278 +#: ../includes/Elements/Product_Grid.php:267, ../includes/Elements/Team_Member.php:282 msgid "Simple Style" msgstr "" -#: ../includes/Elements/Product_Grid.php:253 +#: ../includes/Elements/Product_Grid.php:271 msgid "Reveal Style" msgstr "" -#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Team_Member.php:279 +#: ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Team_Member.php:283 msgid "Overlay Style" msgstr "" -#: ../includes/Elements/Product_Grid.php:255, ../includes/Elements/Product_Grid.php:1847, ../includes/Elements/Woo_Product_Carousel.php:913, ../includes/Elements/Woo_Product_Gallery.php:1586, ../includes/Traits/Controls.php:466 +#: ../includes/Elements/Product_Grid.php:279, ../includes/Elements/Product_Grid.php:1959, ../includes/Elements/Woo_Product_Carousel.php:956, ../includes/Elements/Woo_Product_Gallery.php:1709, ../includes/Traits/Controls.php:479 msgid "Preset 5" msgstr "" -#: ../includes/Elements/Product_Grid.php:256 +#: ../includes/Elements/Product_Grid.php:283 msgid "Preset 6" msgstr "" -#: ../includes/Elements/Product_Grid.php:257 +#: ../includes/Elements/Product_Grid.php:287 msgid "Preset 7" msgstr "" -#: ../includes/Elements/Product_Grid.php:258 +#: ../includes/Elements/Product_Grid.php:291 msgid "Preset 8" msgstr "" -#: ../includes/Elements/Product_Grid.php:327 +#: ../includes/Elements/Product_Grid.php:382 msgid "Show Badge ?" msgstr "" -#: ../includes/Elements/Product_Grid.php:339, ../includes/Elements/Woo_Product_Gallery.php:363 +#: ../includes/Elements/Product_Grid.php:394, ../includes/Elements/Woo_Product_Gallery.php:387 msgid "WooCommerce Loop Hooks" msgstr "" -#: ../includes/Elements/Product_Grid.php:346, ../includes/Elements/Woo_Product_Gallery.php:370 +#: ../includes/Elements/Product_Grid.php:401, ../includes/Elements/Woo_Product_Gallery.php:394 msgid "This will enable WooCommerce loop Before and After hooks. It may break your layout." msgstr "" -#: ../includes/Elements/Product_Grid.php:356, ../includes/Elements/Woo_Product_Gallery.php:379 +#: ../includes/Elements/Product_Grid.php:411, ../includes/Elements/Woo_Product_Gallery.php:403 msgid "Product Settings" msgstr "" -#: ../includes/Elements/Product_Grid.php:366, ../includes/Elements/Product_Grid.php:838, ../includes/Elements/Woo_Product_Carousel.php:969, ../includes/Elements/Woo_Product_Gallery.php:389, ../includes/Elements/Woo_Product_Gallery.php:609, ../includes/Elements/Woo_Product_List.php:397, ../includes/Traits/Woo_Product_Comparable.php:164 +#: ../includes/Elements/Product_Grid.php:421, ../includes/Elements/Product_Grid.php:950, ../includes/Elements/Woo_Product_Carousel.php:1012, ../includes/Elements/Woo_Product_Gallery.php:413, ../includes/Elements/Woo_Product_Gallery.php:732, ../includes/Elements/Woo_Product_List.php:446, ../includes/Traits/Woo_Product_Comparable.php:164 msgid "Products" msgstr "" -#: ../includes/Elements/Product_Grid.php:368 -msgid "Archive" -msgstr "" - -#: ../includes/Elements/Product_Grid.php:377, ../includes/Elements/Woo_Product_Gallery.php:399, ../includes/Elements/Woo_Product_List.php:407, ../includes/Traits/Controls.php:78 +#: ../includes/Elements/Product_Grid.php:432, ../includes/Elements/Woo_Product_Gallery.php:430, ../includes/Elements/Woo_Product_List.php:463, ../includes/Traits/Controls.php:78 msgid "This option will only affect in Archive page of Elementor Theme Builder dynamically." msgstr "" -#: ../includes/Elements/Product_Grid.php:390, ../includes/Elements/Woo_Cart.php:120, ../includes/Elements/Woo_Checkout.php:105, ../includes/Elements/Woo_Product_Carousel.php:194, ../includes/Elements/Woo_Product_Gallery.php:99, ../includes/Elements/Woo_Product_List.php:196, ../includes/Elements/Woo_Product_List.php:420, ../includes/Traits/Woo_Product_Comparable.php:135 +#: ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Woo_Cart.php:120, ../includes/Elements/Woo_Checkout.php:105, ../includes/Elements/Woo_Product_Carousel.php:195, ../includes/Elements/Woo_Product_Gallery.php:99, ../includes/Elements/Woo_Product_List.php:196, ../includes/Elements/Woo_Product_List.php:476, ../includes/Traits/Woo_Product_Comparable.php:135 msgid "WooCommerce is not installed/activated on your site. Please install and activate WooCommerce first." msgstr "" -#: ../includes/Elements/Product_Grid.php:410, ../includes/Elements/Woo_Product_Carousel.php:799 +#: ../includes/Elements/Product_Grid.php:465, ../includes/Elements/Woo_Product_Carousel.php:819 msgid "This filter will only affect in Single Product page of Elementor Theme Builder dynamically." msgstr "" -#: ../includes/Elements/Product_Grid.php:419, ../includes/Elements/Woo_Product_Carousel.php:808, ../includes/Elements/Woo_Product_Gallery.php:418, ../includes/Elements/Woo_Product_List.php:437, ../includes/Traits/Controls.php:213, ../includes/Traits/Controls.php:340, ../includes/Traits/Controls.php:392 +#: ../includes/Elements/Product_Grid.php:474, ../includes/Elements/Woo_Product_Carousel.php:828, ../includes/Elements/Woo_Product_Gallery.php:449, ../includes/Elements/Woo_Product_List.php:493, ../includes/Traits/Controls.php:213, ../includes/Traits/Controls.php:346, ../includes/Traits/Controls.php:398 msgid "Order By" msgstr "" -#: ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Woo_Product_Carousel.php:827, ../includes/Elements/Woo_Product_Gallery.php:437 +#: ../includes/Elements/Product_Grid.php:500, ../includes/Elements/Woo_Product_Carousel.php:847, ../includes/Elements/Woo_Product_Gallery.php:477 msgid "Products Count" msgstr "" -#: ../includes/Elements/Product_Grid.php:457, ../includes/Elements/Woo_Product_Carousel.php:836, ../includes/Elements/Woo_Product_Gallery.php:446, ../includes/Elements/Woo_Product_List.php:470, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:331, ../includes/Traits/Controls.php:2259, ../includes/Traits/Controls.php:2298, ../includes/Traits/Controls.php:2361, ../includes/Traits/Controls.php:2399 +#: ../includes/Elements/Product_Grid.php:512, ../includes/Elements/Woo_Product_Carousel.php:856, ../includes/Elements/Woo_Product_Gallery.php:486, ../includes/Elements/Woo_Product_List.php:536, ../includes/Extensions/Hover_Effect.php:345, ../includes/Extensions/Hover_Effect.php:990, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:337, ../includes/Traits/Controls.php:2392, ../includes/Traits/Controls.php:2431, ../includes/Traits/Controls.php:2494, ../includes/Traits/Controls.php:2532 msgid "Offset" msgstr "" -#: ../includes/Elements/Product_Grid.php:470, ../includes/Elements/Woo_Product_Carousel.php:844 +#: ../includes/Elements/Product_Grid.php:525, ../includes/Elements/Woo_Product_Carousel.php:880 msgid "Product Status" msgstr "" -#: ../includes/Elements/Product_Grid.php:485, ../includes/Elements/Woo_Product_Gallery.php:453 +#: ../includes/Elements/Product_Grid.php:540, ../includes/Elements/Woo_Product_Gallery.php:511 msgid "Product Categories" msgstr "" -#: ../includes/Elements/Product_Grid.php:497, ../includes/Elements/Woo_Product_Gallery.php:464 +#: ../includes/Elements/Product_Grid.php:552, ../includes/Elements/Woo_Product_Gallery.php:522 msgid "Product Tags" msgstr "" -#: ../includes/Elements/Product_Grid.php:509, ../includes/Elements/Woo_Product_List.php:507 +#: ../includes/Elements/Product_Grid.php:564, ../includes/Elements/Woo_Product_Carousel.php:867, ../includes/Elements/Woo_Product_Gallery.php:497, ../includes/Elements/Woo_Product_List.php:573 msgid "Select Products" msgstr "" -#: ../includes/Elements/Product_Grid.php:522, ../includes/Elements/Woo_Product_List.php:520 +#: ../includes/Elements/Product_Grid.php:577, ../includes/Elements/Woo_Product_List.php:586 msgid "Product Type" msgstr "" -#: ../includes/Elements/Product_Grid.php:524, ../includes/Elements/Woo_Product_Carousel.php:856, ../includes/Elements/Woo_Product_Gallery.php:476, ../includes/Elements/Woo_Product_List.php:522 +#: ../includes/Elements/Product_Grid.php:579, ../includes/Elements/Woo_Product_Carousel.php:897, ../includes/Elements/Woo_Product_Gallery.php:539, ../includes/Elements/Woo_Product_List.php:588 msgid "For logged in users only!" msgstr "" -#: ../includes/Elements/Product_Grid.php:527, ../includes/Elements/Woo_Product_Carousel.php:859, ../includes/Elements/Woo_Product_Gallery.php:479, ../includes/Elements/Woo_Product_List.php:525 +#: ../includes/Elements/Product_Grid.php:582, ../includes/Elements/Woo_Product_Carousel.php:900, ../includes/Elements/Woo_Product_Gallery.php:542, ../includes/Elements/Woo_Product_List.php:591 msgid "Purchased Only" msgstr "" -#: ../includes/Elements/Product_Grid.php:528, ../includes/Elements/Woo_Product_Carousel.php:860, ../includes/Elements/Woo_Product_Gallery.php:480, ../includes/Elements/Woo_Product_List.php:526 +#: ../includes/Elements/Product_Grid.php:583, ../includes/Elements/Woo_Product_Carousel.php:901, ../includes/Elements/Woo_Product_Gallery.php:543, ../includes/Elements/Woo_Product_List.php:592 msgid "Not Purchased Only" msgstr "" -#: ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Progress_Bar.php:147, ../includes/Elements/Woo_Product_Gallery.php:508 -msgid "div" -msgstr "" - -#: ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Progress_Bar.php:148, ../includes/Elements/Woo_Product_Gallery.php:509 -msgid "span" -msgstr "" - -#: ../includes/Elements/Product_Grid.php:559, ../includes/Elements/Progress_Bar.php:149, ../includes/Elements/Woo_Product_Gallery.php:510 -msgid "p" -msgstr "" - -#: ../includes/Elements/Product_Grid.php:568, ../includes/Elements/Woo_Product_Carousel.php:285, ../includes/Elements/Woo_Product_Gallery.php:516 +#: ../includes/Elements/Product_Grid.php:652, ../includes/Elements/Woo_Product_Carousel.php:305, ../includes/Elements/Woo_Product_Gallery.php:609 msgid "Show Product Rating?" msgstr "" -#: ../includes/Elements/Product_Grid.php:581, ../includes/Elements/Woo_Product_Carousel.php:294, ../includes/Elements/Woo_Product_Gallery.php:552 +#: ../includes/Elements/Product_Grid.php:665, ../includes/Elements/Woo_Product_Carousel.php:314, ../includes/Elements/Woo_Product_Gallery.php:645 msgid "Show Product Price?" msgstr "" -#: ../includes/Elements/Product_Grid.php:593, ../includes/Elements/Woo_Product_Carousel.php:303 +#: ../includes/Elements/Product_Grid.php:677, ../includes/Elements/Woo_Product_Carousel.php:323 msgid "Short Description?" msgstr "" -#: ../includes/Elements/Product_Grid.php:605, ../includes/Elements/Woo_Product_Carousel.php:312, ../includes/Traits/Controls.php:1200, ../includes/Traits/Controls.php:1171 +#: ../includes/Elements/Product_Grid.php:689, ../includes/Elements/Woo_Product_Carousel.php:332, ../includes/Traits/Controls.php:1322, ../includes/Traits/Controls.php:1293 msgid "Excerpt Words" msgstr "" -#: ../includes/Elements/Product_Grid.php:643, ../includes/Traits/Woo_Product_Comparable.php:158 +#: ../includes/Elements/Product_Grid.php:727, ../includes/Traits/Woo_Product_Comparable.php:158 msgid "Show Product Compare?" msgstr "" -#: ../includes/Elements/Product_Grid.php:661 +#: ../includes/Elements/Product_Grid.php:745 msgid "Show Wishlist?" msgstr "" -#: ../includes/Elements/Product_Grid.php:677 +#: ../includes/Elements/Product_Grid.php:761 msgid "Add To Cart" msgstr "" -#: ../includes/Elements/Product_Grid.php:684 +#: ../includes/Elements/Product_Grid.php:768 msgid "Show Add to cart custom text" msgstr "" -#: ../includes/Elements/Product_Grid.php:696, ../includes/Elements/Woo_Product_List.php:936 +#: ../includes/Elements/Product_Grid.php:780, ../includes/Elements/Woo_Product_List.php:1053 msgid "Simple Product" msgstr "" -#: ../includes/Elements/Product_Grid.php:700, ../includes/Elements/Product_Grid.php:748, ../includes/Elements/Woo_Product_List.php:940, ../includes/Elements/Woo_Product_List.php:991, ../includes/Elements/Woo_Product_List.php:3592, ../includes/Elements/Woo_Product_List.php:3593, ../includes/Elements/Woo_Product_List.php:3594, ../includes/Elements/Woo_Product_List.php:3595, ../includes/Elements/Woo_Product_List.php:3596 +#: ../includes/Elements/Product_Grid.php:784, ../includes/Elements/Product_Grid.php:832, ../includes/Elements/Woo_Product_List.php:1057, ../includes/Elements/Woo_Product_List.php:1108, ../includes/Elements/Woo_Product_List.php:3738, ../includes/Elements/Woo_Product_List.php:3739, ../includes/Elements/Woo_Product_List.php:3740, ../includes/Elements/Woo_Product_List.php:3741, ../includes/Elements/Woo_Product_List.php:3742 msgid "Buy Now" msgstr "" -#: ../includes/Elements/Product_Grid.php:712, ../includes/Elements/Woo_Product_List.php:953 +#: ../includes/Elements/Product_Grid.php:796, ../includes/Elements/Woo_Product_List.php:1070 msgid "Variable Product" msgstr "" -#: ../includes/Elements/Product_Grid.php:716, ../includes/Elements/Woo_Product_List.php:957 +#: ../includes/Elements/Product_Grid.php:800, ../includes/Elements/Woo_Product_List.php:1074 msgid "Select options" msgstr "" -#: ../includes/Elements/Product_Grid.php:728, ../includes/Elements/Woo_Product_List.php:970 +#: ../includes/Elements/Product_Grid.php:812, ../includes/Elements/Woo_Product_List.php:1087 msgid "Grouped Product" msgstr "" -#: ../includes/Elements/Product_Grid.php:732, ../includes/Elements/Woo_Product_List.php:974 +#: ../includes/Elements/Product_Grid.php:816, ../includes/Elements/Woo_Product_List.php:1091 msgid "View products" msgstr "" -#: ../includes/Elements/Product_Grid.php:744, ../includes/Elements/Woo_Product_List.php:987 +#: ../includes/Elements/Product_Grid.php:828, ../includes/Elements/Woo_Product_List.php:1104 msgid "External Product" msgstr "" -#: ../includes/Elements/Product_Grid.php:760, ../includes/Elements/Woo_Product_List.php:1004 +#: ../includes/Elements/Product_Grid.php:844, ../includes/Elements/Woo_Product_List.php:1121 msgid "Default Product" msgstr "" -#: ../includes/Elements/Product_Grid.php:818, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Traits/Controls.php:733, ../includes/Traits/Controls.php:1243 +#: ../includes/Elements/Product_Grid.php:907, ../includes/Elements/Woo_Product_Gallery.php:688, ../includes/Elements/Woo_Product_List.php:266, ../includes/Traits/Controls.php:796 +msgid "Infinity Scroll" +msgstr "" + +#: ../includes/Elements/Product_Grid.php:919, ../includes/Elements/Woo_Product_Gallery.php:700, ../includes/Elements/Woo_Product_List.php:278, ../includes/Traits/Controls.php:809 +msgid "Scroll Offset (px)" +msgstr "" + +#: ../includes/Elements/Product_Grid.php:924, ../includes/Elements/Woo_Product_Gallery.php:705, ../includes/Elements/Woo_Product_List.php:283, ../includes/Traits/Controls.php:815 +msgid "Set the position of loading to the viewport before it ends from view" +msgstr "" + +#: ../includes/Elements/Product_Grid.php:932, ../includes/Elements/Woo_Product_Gallery.php:713, ../includes/Traits/Controls.php:825, ../includes/Traits/Controls.php:1365 msgid "Label Text" msgstr "" -#: ../includes/Elements/Product_Grid.php:896, ../includes/Elements/Team_Member.php:390, ../includes/Elements/Woo_Product_Gallery.php:647 +#: ../includes/Elements/Product_Grid.php:1008, ../includes/Elements/Team_Member.php:409, ../includes/Elements/Woo_Product_Gallery.php:770 msgid "Content Background Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1112 +#: ../includes/Elements/Product_Grid.php:1224 msgid "Image Width(%)" msgstr "" -#: ../includes/Elements/Product_Grid.php:1132, ../includes/Elements/Woo_Product_Carousel.php:1137 +#: ../includes/Elements/Product_Grid.php:1244, ../includes/Elements/Woo_Product_Carousel.php:1180 msgid "Product Details" msgstr "" -#: ../includes/Elements/Product_Grid.php:1266 +#: ../includes/Elements/Product_Grid.php:1378 msgid "Padding (PX)" msgstr "" -#: ../includes/Elements/Product_Grid.php:1288 +#: ../includes/Elements/Product_Grid.php:1400 msgid "Width (%)" msgstr "" -#: ../includes/Elements/Product_Grid.php:1329, ../includes/Elements/Woo_Product_Carousel.php:1198, ../includes/Elements/Woo_Product_Gallery.php:818 +#: ../includes/Elements/Product_Grid.php:1441, ../includes/Elements/Woo_Product_Carousel.php:1241, ../includes/Elements/Woo_Product_Gallery.php:941 msgid "Product Title Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1349, ../includes/Elements/Woo_Product_Carousel.php:1218, ../includes/Elements/Woo_Product_Gallery.php:838 +#: ../includes/Elements/Product_Grid.php:1461, ../includes/Elements/Woo_Product_Carousel.php:1261, ../includes/Elements/Woo_Product_Gallery.php:961 msgid "Product Price" msgstr "" -#: ../includes/Elements/Product_Grid.php:1369, ../includes/Elements/Product_Grid.php:2678, ../includes/Elements/Woo_Product_Carousel.php:1238, ../includes/Elements/Woo_Product_Carousel.php:1701, ../includes/Elements/Woo_Product_Gallery.php:858, ../includes/Elements/Woo_Product_Gallery.php:1909 +#: ../includes/Elements/Product_Grid.php:1481, ../includes/Elements/Product_Grid.php:2819, ../includes/Elements/Woo_Product_Carousel.php:1281, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Gallery.php:981, ../includes/Elements/Woo_Product_Gallery.php:2061 msgid "Sale Price Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1258, ../includes/Elements/Woo_Product_Gallery.php:877, ../includes/Elements/Woo_Product_List.php:2087 +#: ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Woo_Product_Carousel.php:1301, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/Woo_Product_List.php:2233 msgid "Star Rating" msgstr "" -#: ../includes/Elements/Product_Grid.php:1396, ../includes/Elements/Testimonial.php:619, ../includes/Elements/Woo_Product_Carousel.php:1266, ../includes/Elements/Woo_Product_Gallery.php:885, ../includes/Elements/Woo_Product_List.php:2095 +#: ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Testimonial.php:649, ../includes/Elements/Woo_Product_Carousel.php:1309, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_List.php:2241 msgid "Rating Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1475, ../includes/Elements/Woo_Product_Carousel.php:1301 +#: ../includes/Elements/Product_Grid.php:1587, ../includes/Elements/Woo_Product_Carousel.php:1344 msgid "Product Description" msgstr "" -#: ../includes/Elements/Product_Grid.php:1519 +#: ../includes/Elements/Product_Grid.php:1631 msgid "Sale Badge Style" msgstr "" -#: ../includes/Elements/Product_Grid.php:1530, ../includes/Elements/Woo_Product_Carousel.php:1346, ../includes/Elements/Woo_Product_Gallery.php:946 +#: ../includes/Elements/Product_Grid.php:1642, ../includes/Elements/Woo_Product_Carousel.php:1389, ../includes/Elements/Woo_Product_Gallery.php:1069 msgid "Sale Badge Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1542, ../includes/Elements/Woo_Product_Carousel.php:1358, ../includes/Elements/Woo_Product_Gallery.php:958 +#: ../includes/Elements/Product_Grid.php:1654, ../includes/Elements/Woo_Product_Carousel.php:1401, ../includes/Elements/Woo_Product_Gallery.php:1081 msgid "Sale Badge Background" msgstr "" -#: ../includes/Elements/Product_Grid.php:1564, ../includes/Elements/Woo_Product_Carousel.php:1380, ../includes/Elements/Woo_Product_Gallery.php:980, ../includes/Elements/Woo_Product_Gallery.php:2028 +#: ../includes/Elements/Product_Grid.php:1676, ../includes/Elements/Woo_Product_Carousel.php:1423, ../includes/Elements/Woo_Product_Gallery.php:1103, ../includes/Elements/Woo_Product_Gallery.php:2180 msgid "Stock Out Badge" msgstr "" -#: ../includes/Elements/Product_Grid.php:1572, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Gallery.php:988 +#: ../includes/Elements/Product_Grid.php:1684, ../includes/Elements/Woo_Product_Carousel.php:1431, ../includes/Elements/Woo_Product_Gallery.php:1111 msgid "Stock Out Badge Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Woo_Product_Carousel.php:1400, ../includes/Elements/Woo_Product_Gallery.php:1000 +#: ../includes/Elements/Product_Grid.php:1696, ../includes/Elements/Woo_Product_Carousel.php:1443, ../includes/Elements/Woo_Product_Gallery.php:1123 msgid "Stock Out Badge Background" msgstr "" -#: ../includes/Elements/Product_Grid.php:1674, ../includes/Elements/Product_Grid.php:1754, ../includes/Elements/Woo_Product_Gallery.php:1084, ../includes/Elements/Woo_Product_Gallery.php:1157 +#: ../includes/Elements/Product_Grid.php:1786, ../includes/Elements/Product_Grid.php:1866, ../includes/Elements/Woo_Product_Gallery.php:1207, ../includes/Elements/Woo_Product_Gallery.php:1280 msgid "Button Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:1829, ../includes/Elements/Woo_Product_Carousel.php:898, ../includes/Elements/Woo_Product_Gallery.php:1572 +#: ../includes/Elements/Product_Grid.php:1941, ../includes/Elements/Woo_Product_Carousel.php:941, ../includes/Elements/Woo_Product_Gallery.php:1695 msgid "Sale / Stock Out Badge" msgstr "" -#: ../includes/Elements/Product_Grid.php:1881, ../includes/Elements/Woo_Product_Carousel.php:943, ../includes/Elements/Woo_Product_Gallery.php:1613, ../includes/Elements/Woo_Product_List.php:736 +#: ../includes/Elements/Product_Grid.php:1993, ../includes/Elements/Woo_Product_Carousel.php:986, ../includes/Elements/Woo_Product_Gallery.php:1736, ../includes/Elements/Woo_Product_List.php:823 msgid "Sale Text" msgstr "" -#: ../includes/Elements/Product_Grid.php:1893, ../includes/Elements/Woo_Product_Carousel.php:954, ../includes/Elements/Woo_Product_Gallery.php:1624, ../includes/Elements/Woo_Product_List.php:751 +#: ../includes/Elements/Product_Grid.php:2005, ../includes/Elements/Woo_Product_Carousel.php:997, ../includes/Elements/Woo_Product_Gallery.php:1747, ../includes/Elements/Woo_Product_List.php:838 msgid "Stock Out Text" msgstr "" -#: ../includes/Elements/Product_Grid.php:1895 +#: ../includes/Elements/Product_Grid.php:2007 msgid "Out of stock" msgstr "" -#: ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Woo_Product_Gallery.php:1646 +#: ../includes/Elements/Product_Grid.php:2047, ../includes/Elements/Woo_Product_Gallery.php:1769 msgid "Show Quick view?" msgstr "" -#: ../includes/Elements/Product_Grid.php:1945, ../includes/Elements/Woo_Product_Gallery.php:1661 +#: ../includes/Elements/Product_Grid.php:2057, ../includes/Elements/Woo_Product_Gallery.php:1784 msgid "Quick view Title Tag" msgstr "" -#: ../includes/Elements/Product_Grid.php:2048, ../includes/Elements/Woo_Product_Carousel.php:1471 +#: ../includes/Elements/Product_Grid.php:2189, ../includes/Elements/Woo_Product_Carousel.php:1514 msgid "Icons Size" msgstr "" -#: ../includes/Elements/Product_Grid.php:2300 +#: ../includes/Elements/Product_Grid.php:2441 msgid "Show pagination" msgstr "" -#: ../includes/Elements/Product_Grid.php:2312 +#: ../includes/Elements/Product_Grid.php:2453 msgid "Previous Label" msgstr "" -#: ../includes/Elements/Product_Grid.php:2313 +#: ../includes/Elements/Product_Grid.php:2454 msgid "←" msgstr "" -#: ../includes/Elements/Product_Grid.php:2323 +#: ../includes/Elements/Product_Grid.php:2464 msgid "Next Label" msgstr "" -#: ../includes/Elements/Product_Grid.php:2324 +#: ../includes/Elements/Product_Grid.php:2465 msgid "→" msgstr "" -#: ../includes/Elements/Product_Grid.php:2584 +#: ../includes/Elements/Product_Grid.php:2725 msgid "Loader" msgstr "" -#: ../includes/Elements/Product_Grid.php:2610, ../includes/Elements/Woo_Product_Carousel.php:1634, ../includes/Elements/Woo_Product_Gallery.php:1836, ../includes/Elements/Woo_Product_List.php:2873 +#: ../includes/Elements/Product_Grid.php:2751, ../includes/Elements/Woo_Product_Carousel.php:1677, ../includes/Elements/Woo_Product_Gallery.php:1988, ../includes/Elements/Woo_Product_List.php:3019 msgid "Popup" msgstr "" -#: ../includes/Elements/Product_Grid.php:2720, ../includes/Elements/Woo_Product_Carousel.php:1755, ../includes/Elements/Woo_Product_Gallery.php:1951 +#: ../includes/Elements/Product_Grid.php:2861, ../includes/Elements/Woo_Product_Carousel.php:1798, ../includes/Elements/Woo_Product_Gallery.php:2103 msgid "Review Link Color" msgstr "" -#: ../includes/Elements/Product_Grid.php:2731, ../includes/Elements/Woo_Product_Carousel.php:1767, ../includes/Elements/Woo_Product_Gallery.php:1962 +#: ../includes/Elements/Product_Grid.php:2872, ../includes/Elements/Woo_Product_Carousel.php:1810, ../includes/Elements/Woo_Product_Gallery.php:2114 msgid "Review Link Hover" msgstr "" -#: ../includes/Elements/Product_Grid.php:2756, ../includes/Elements/Woo_Product_Carousel.php:1792, ../includes/Elements/Woo_Product_List.php:737, ../includes/Elements/Woo_Product_List.php:1954, ../includes/Elements/Woo_Product_List.php:3572 +#: ../includes/Elements/Product_Grid.php:2897, ../includes/Elements/Woo_Product_Carousel.php:1835, ../includes/Elements/Woo_Product_List.php:824, ../includes/Elements/Woo_Product_List.php:2100, ../includes/Elements/Woo_Product_List.php:3718 msgid "Sale" msgstr "" -#: ../includes/Elements/Product_Grid.php:2854, ../includes/Elements/Woo_Product_Carousel.php:1889, ../includes/Elements/Woo_Product_Gallery.php:2126, ../includes/Elements/Woo_Product_List.php:2939 +#: ../includes/Elements/Product_Grid.php:2995, ../includes/Elements/Woo_Product_Carousel.php:1932, ../includes/Elements/Woo_Product_Gallery.php:2278, ../includes/Elements/Woo_Product_List.php:3085 msgid "Cart Button" msgstr "" -#: ../includes/Elements/Product_Grid.php:3480, ../includes/Elements/Woo_Product_Carousel.php:147, ../includes/Elements/Woo_Product_List.php:3408 +#: ../includes/Elements/Product_Grid.php:3618, ../includes/Elements/Woo_Product_Carousel.php:148, ../includes/Elements/Woo_Product_List.php:3554 msgid "Publish" msgstr "" -#: ../includes/Elements/Product_Grid.php:3481, ../includes/Elements/Woo_Product_Carousel.php:148, ../includes/Elements/Woo_Product_List.php:3409 +#: ../includes/Elements/Product_Grid.php:3619, ../includes/Elements/Woo_Product_Carousel.php:149, ../includes/Elements/Woo_Product_List.php:3555 msgid "Draft" msgstr "" -#: ../includes/Elements/Product_Grid.php:3482, ../includes/Elements/Woo_Product_Carousel.php:149, ../includes/Elements/Woo_Product_List.php:3410 +#: ../includes/Elements/Product_Grid.php:3620, ../includes/Elements/Woo_Product_Carousel.php:150, ../includes/Elements/Woo_Product_List.php:3556 msgid "Pending Review" msgstr "" -#: ../includes/Elements/Product_Grid.php:3483, ../includes/Elements/Woo_Product_Carousel.php:150, ../includes/Elements/Woo_Product_List.php:3411 +#: ../includes/Elements/Product_Grid.php:3621, ../includes/Elements/Woo_Product_Carousel.php:151, ../includes/Elements/Woo_Product_List.php:3557 msgid "Schedule" msgstr "" -#: ../includes/Elements/Progress_Bar.php:85 +#: ../includes/Elements/Progress_Bar.php:89 msgid "Line Rainbow (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:87 +#: ../includes/Elements/Progress_Bar.php:91 msgid "Circle Fill (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:88 +#: ../includes/Elements/Progress_Bar.php:92 msgid "Half Circle" msgstr "" -#: ../includes/Elements/Progress_Bar.php:89 +#: ../includes/Elements/Progress_Bar.php:93 msgid "Half Circle Fill (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:90 +#: ../includes/Elements/Progress_Bar.php:94 msgid "Box (Pro)" msgstr "" -#: ../includes/Elements/Progress_Bar.php:161, ../includes/Elements/Progress_Bar.php:174, ../includes/Elements/Progress_Bar.php:807 +#: ../includes/Elements/Progress_Bar.php:151 +msgid "div" +msgstr "" + +#: ../includes/Elements/Progress_Bar.php:152 +msgid "span" +msgstr "" + +#: ../includes/Elements/Progress_Bar.php:153 +msgid "p" +msgstr "" + +#: ../includes/Elements/Progress_Bar.php:165, ../includes/Elements/Progress_Bar.php:178, ../includes/Elements/Progress_Bar.php:811 msgid "Inner Title" msgstr "" -#: ../includes/Elements/Progress_Bar.php:193 +#: ../includes/Elements/Progress_Bar.php:197 msgid "Counter Value Type" msgstr "" -#: ../includes/Elements/Progress_Bar.php:196, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_List.php:602 +#: ../includes/Elements/Progress_Bar.php:200, ../includes/Elements/Woo_Product_Carousel.php:421, ../includes/Elements/Woo_Product_List.php:668 msgid "Static" msgstr "" -#: ../includes/Elements/Progress_Bar.php:207, ../includes/Elements/Progress_Bar.php:230 +#: ../includes/Elements/Progress_Bar.php:211, ../includes/Elements/Progress_Bar.php:234 msgid "Counter Value" msgstr "" -#: ../includes/Elements/Progress_Bar.php:247 +#: ../includes/Elements/Progress_Bar.php:251 msgid "Display Count" msgstr "" -#: ../includes/Elements/Progress_Bar.php:278 +#: ../includes/Elements/Progress_Bar.php:282 msgid "Prefix Label" msgstr "" -#: ../includes/Elements/Progress_Bar.php:295 +#: ../includes/Elements/Progress_Bar.php:299 msgid "Postfix Label" msgstr "" -#: ../includes/Elements/Progress_Bar.php:298 +#: ../includes/Elements/Progress_Bar.php:302 msgid "Postfix" msgstr "" -#: ../includes/Elements/Progress_Bar.php:497 +#: ../includes/Elements/Progress_Bar.php:501 msgid "Fill" msgstr "" -#: ../includes/Elements/Progress_Bar.php:582 +#: ../includes/Elements/Progress_Bar.php:586 msgid "Show Stripe" msgstr "" -#: ../includes/Elements/Progress_Bar.php:596 +#: ../includes/Elements/Progress_Bar.php:600 msgid "Stripe Animation" msgstr "" -#: ../includes/Elements/Progress_Bar.php:599 +#: ../includes/Elements/Progress_Bar.php:603 msgid "Left To Right" msgstr "" -#: ../includes/Elements/Progress_Bar.php:600 +#: ../includes/Elements/Progress_Bar.php:604 msgid "Right To Left" msgstr "" -#: ../includes/Elements/Progress_Bar.php:601 +#: ../includes/Elements/Progress_Bar.php:605 msgid "Disabled" msgstr "" -#: ../includes/Elements/Progress_Bar.php:692 +#: ../includes/Elements/Progress_Bar.php:696 msgid "Stroke Width" msgstr "" -#: ../includes/Elements/Progress_Bar.php:717 +#: ../includes/Elements/Progress_Bar.php:721 msgid "Stroke Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:741, ../includes/Elements/SVG_Draw.php:408, ../includes/Extensions/Reading_Progress.php:172 +#: ../includes/Elements/Progress_Bar.php:745, ../includes/Elements/SVG_Draw.php:412, ../includes/Extensions/Reading_Progress.php:172 msgid "Fill Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:818 +#: ../includes/Elements/Progress_Bar.php:822 msgid "Inner Title Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:844, ../includes/Traits/Elements.php:148, ../includes/templates/admin/elements.php:288 +#: ../includes/Elements/Progress_Bar.php:848, ../includes/Traits/Admin.php:986, ../includes/Traits/Elements.php:149 msgid "Counter" msgstr "" -#: ../includes/Elements/Progress_Bar.php:855 +#: ../includes/Elements/Progress_Bar.php:859 msgid "Counter Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:869 +#: ../includes/Elements/Progress_Bar.php:873 msgid "Prefix/Postfix" msgstr "" -#: ../includes/Elements/Progress_Bar.php:883 +#: ../includes/Elements/Progress_Bar.php:887 msgid "Prefix/Postfix Color" msgstr "" -#: ../includes/Elements/Progress_Bar.php:946, ../includes/Elements/Progress_Bar.php:977, ../includes/Elements/Progress_Bar.php:977, ../includes/Elements/Progress_Bar.php:1023 +#: ../includes/Elements/Progress_Bar.php:950, ../includes/Elements/Progress_Bar.php:983, ../includes/Elements/Progress_Bar.php:983, ../includes/Elements/Progress_Bar.php:1029 msgid "%" msgstr "" @@ -7521,7 +7392,7 @@ msgstr "" msgid "Dropdown Indicator" msgstr "" -#: ../includes/Elements/Simple_Menu.php:597, ../includes/Extensions/Table_of_Content.php:611 +#: ../includes/Elements/Simple_Menu.php:597, ../includes/Extensions/Table_of_Content.php:696 msgid "Top Position" msgstr "" @@ -7578,587 +7449,587 @@ msgstr "" msgid "Humberger Toggle Menu" msgstr "" -#: ../includes/Elements/Sticky_Video.php:92 +#: ../includes/Elements/Sticky_Video.php:96 msgid "Sticky Options" msgstr "" -#: ../includes/Elements/Sticky_Video.php:100 +#: ../includes/Elements/Sticky_Video.php:104 msgid "Sticky" msgstr "" -#: ../includes/Elements/Sticky_Video.php:119 +#: ../includes/Elements/Sticky_Video.php:123 msgid "Top Left" msgstr "" -#: ../includes/Elements/Sticky_Video.php:120 +#: ../includes/Elements/Sticky_Video.php:124 msgid "Top Right" msgstr "" -#: ../includes/Elements/Sticky_Video.php:121, ../includes/Extensions/Scroll_to_Top.php:116 +#: ../includes/Elements/Sticky_Video.php:125, ../includes/Extensions/Scroll_to_Top.php:116 msgid "Bottom Left" msgstr "" -#: ../includes/Elements/Sticky_Video.php:122, ../includes/Extensions/Scroll_to_Top.php:117 +#: ../includes/Elements/Sticky_Video.php:126, ../includes/Extensions/Scroll_to_Top.php:117 msgid "Bottom Right" msgstr "" -#: ../includes/Elements/Sticky_Video.php:148 +#: ../includes/Elements/Sticky_Video.php:152 msgid "YouTube" msgstr "" -#: ../includes/Elements/Sticky_Video.php:149 +#: ../includes/Elements/Sticky_Video.php:153 msgid "Vimeo" msgstr "" -#: ../includes/Elements/Sticky_Video.php:150 +#: ../includes/Elements/Sticky_Video.php:154 msgid "Self Hosted" msgstr "" -#: ../includes/Elements/Sticky_Video.php:161 +#: ../includes/Elements/Sticky_Video.php:165 msgid "Enter your URL (YouTube)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:179 +#: ../includes/Elements/Sticky_Video.php:183 msgid "Enter your URL (Vimeo)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:197 +#: ../includes/Elements/Sticky_Video.php:201 msgid "Enter your URL (Dailymotion)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:211 +#: ../includes/Elements/Sticky_Video.php:215 msgid "External URL" msgstr "" -#: ../includes/Elements/Sticky_Video.php:248 +#: ../includes/Elements/Sticky_Video.php:252 msgid "Enter your URL" msgstr "" -#: ../includes/Elements/Sticky_Video.php:264 +#: ../includes/Elements/Sticky_Video.php:268 msgid "Choose File" msgstr "" -#: ../includes/Elements/Sticky_Video.php:280 +#: ../includes/Elements/Sticky_Video.php:284 msgid "Start Time" msgstr "" -#: ../includes/Elements/Sticky_Video.php:296 +#: ../includes/Elements/Sticky_Video.php:300 msgid "End Time" msgstr "" -#: ../includes/Elements/Sticky_Video.php:312 +#: ../includes/Elements/Sticky_Video.php:316 msgid "Video Options" msgstr "" -#: ../includes/Elements/Sticky_Video.php:332 +#: ../includes/Elements/Sticky_Video.php:336 msgid "Autoplay requires mute volume." msgstr "" -#: ../includes/Elements/Sticky_Video.php:344 +#: ../includes/Elements/Sticky_Video.php:348 msgid "Mute" msgstr "" -#: ../includes/Elements/Sticky_Video.php:358 +#: ../includes/Elements/Sticky_Video.php:362 msgid "Loop" msgstr "" -#: ../includes/Elements/Sticky_Video.php:369 +#: ../includes/Elements/Sticky_Video.php:373 msgid "Show Bar" msgstr "" -#: ../includes/Elements/Sticky_Video.php:384, ../includes/Elements/Sticky_Video.php:392 +#: ../includes/Elements/Sticky_Video.php:388, ../includes/Elements/Sticky_Video.php:396 msgid "Image Overlay" msgstr "" -#: ../includes/Elements/Sticky_Video.php:397 +#: ../includes/Elements/Sticky_Video.php:401 msgid "Transparent" msgstr "" -#: ../includes/Elements/Sticky_Video.php:406 +#: ../includes/Elements/Sticky_Video.php:410 msgid "Choose Image" msgstr "" -#: ../includes/Elements/Sticky_Video.php:434 +#: ../includes/Elements/Sticky_Video.php:438 msgid "Play Icon" msgstr "" -#: ../includes/Elements/Sticky_Video.php:448 +#: ../includes/Elements/Sticky_Video.php:452 msgid "Choose Icon" msgstr "" -#: ../includes/Elements/Sticky_Video.php:460 +#: ../includes/Elements/Sticky_Video.php:464 msgid "Play icon appears on top of overlay image." msgstr "" -#: ../includes/Elements/Sticky_Video.php:475 +#: ../includes/Elements/Sticky_Video.php:479 msgid "Sticky Video Interface" msgstr "" -#: ../includes/Elements/Sticky_Video.php:525 +#: ../includes/Elements/Sticky_Video.php:529 msgid "Scroll Height To Display Sticky (%)" msgstr "" -#: ../includes/Elements/Sticky_Video.php:547, ../includes/Extensions/Table_of_Content.php:866 +#: ../includes/Elements/Sticky_Video.php:551, ../includes/Extensions/Table_of_Content.php:951 msgid "Close Button Color" msgstr "" -#: ../includes/Elements/Sticky_Video.php:563 +#: ../includes/Elements/Sticky_Video.php:567 msgid "Player" msgstr "" -#: ../includes/Elements/Sticky_Video.php:653 +#: ../includes/Elements/Sticky_Video.php:657 msgid "Interface" msgstr "" -#: ../includes/Elements/Sticky_Video.php:661 +#: ../includes/Elements/Sticky_Video.php:665 msgid "Interface Color" msgstr "" -#: ../includes/Elements/Sticky_Video.php:677 +#: ../includes/Elements/Sticky_Video.php:681 msgid "Play Button Size" msgstr "" -#: ../includes/Elements/Sticky_Video.php:702, ../includes/Extensions/Table_of_Content.php:958 +#: ../includes/Elements/Sticky_Video.php:706, ../includes/Extensions/Table_of_Content.php:1043 msgid "Bar" msgstr "" -#: ../includes/Elements/Sticky_Video.php:710 +#: ../includes/Elements/Sticky_Video.php:714 msgid "Bar Padding" msgstr "" -#: ../includes/Elements/Sticky_Video.php:733 +#: ../includes/Elements/Sticky_Video.php:737 msgid "Bar Margin" msgstr "" -#: ../includes/Elements/SVG_Draw.php:86 +#: ../includes/Elements/SVG_Draw.php:90 msgid "Custom SVG" msgstr "" -#: ../includes/Elements/SVG_Draw.php:111 +#: ../includes/Elements/SVG_Draw.php:115 msgid "SVG Code" msgstr "" -#: ../includes/Elements/SVG_Draw.php:117 +#: ../includes/Elements/SVG_Draw.php:121 msgid "SVG draw works best on path elements." msgstr "" -#: ../includes/Elements/SVG_Draw.php:125 +#: ../includes/Elements/SVG_Draw.php:129 msgid "Exclude Style" msgstr "" -#: ../includes/Elements/SVG_Draw.php:130 +#: ../includes/Elements/SVG_Draw.php:134 msgid "Exclude style from SVG Source (If any)." msgstr "" -#: ../includes/Elements/SVG_Draw.php:224 +#: ../includes/Elements/SVG_Draw.php:228 msgid "Appearance" msgstr "" -#: ../includes/Elements/SVG_Draw.php:232 +#: ../includes/Elements/SVG_Draw.php:236 msgid "SVG Fill Type" msgstr "" -#: ../includes/Elements/SVG_Draw.php:237 +#: ../includes/Elements/SVG_Draw.php:241 msgid "Fill After Draw" msgstr "" -#: ../includes/Elements/SVG_Draw.php:238 +#: ../includes/Elements/SVG_Draw.php:242 msgid "Fill Before Draw" msgstr "" -#: ../includes/Elements/SVG_Draw.php:247 +#: ../includes/Elements/SVG_Draw.php:251 msgid "Fill Transition" msgstr "" -#: ../includes/Elements/SVG_Draw.php:254 +#: ../includes/Elements/SVG_Draw.php:258 msgid "Duration on SVG fills (in seconds)" msgstr "" -#: ../includes/Elements/SVG_Draw.php:266 +#: ../includes/Elements/SVG_Draw.php:270 msgid "On Page Load" msgstr "" -#: ../includes/Elements/SVG_Draw.php:267 +#: ../includes/Elements/SVG_Draw.php:271 msgid "On Page Scroll" msgstr "" -#: ../includes/Elements/SVG_Draw.php:268 +#: ../includes/Elements/SVG_Draw.php:272 msgid "Mouse Hover" msgstr "" -#: ../includes/Elements/SVG_Draw.php:277 +#: ../includes/Elements/SVG_Draw.php:281 msgid "Drawing Start Point" msgstr "" -#: ../includes/Elements/SVG_Draw.php:286 +#: ../includes/Elements/SVG_Draw.php:290 msgid "The point at which the drawing begins to animate as scrolls down (in pixels)." msgstr "" -#: ../includes/Elements/SVG_Draw.php:293 +#: ../includes/Elements/SVG_Draw.php:297 msgid "Pause on Hover Off" msgstr "" -#: ../includes/Elements/SVG_Draw.php:301 +#: ../includes/Elements/SVG_Draw.php:305 msgid "Pause SVG drawing on mouse leave" msgstr "" -#: ../includes/Elements/SVG_Draw.php:308 +#: ../includes/Elements/SVG_Draw.php:312 msgid "Repeat Drawing" msgstr "" -#: ../includes/Elements/SVG_Draw.php:327 +#: ../includes/Elements/SVG_Draw.php:331 msgid "Reverse" msgstr "" -#: ../includes/Elements/SVG_Draw.php:328 +#: ../includes/Elements/SVG_Draw.php:332 msgid "Restart" msgstr "" -#: ../includes/Elements/SVG_Draw.php:340, ../includes/Elements/Woo_Product_Carousel.php:611 +#: ../includes/Elements/SVG_Draw.php:344, ../includes/Elements/Woo_Product_Carousel.php:631 msgid "Speed" msgstr "" -#: ../includes/Elements/SVG_Draw.php:349 +#: ../includes/Elements/SVG_Draw.php:353 msgid "Duration on SVG draws (in ms)" msgstr "" -#: ../includes/Elements/SVG_Draw.php:366 +#: ../includes/Elements/SVG_Draw.php:370 msgid "Path Thickness" msgstr "" -#: ../includes/Elements/Team_Member.php:66 +#: ../includes/Elements/Team_Member.php:70 msgid "Team Member Image" msgstr "" -#: ../includes/Elements/Team_Member.php:74 +#: ../includes/Elements/Team_Member.php:78 msgid "Team Member Avatar" msgstr "" -#: ../includes/Elements/Team_Member.php:103 +#: ../includes/Elements/Team_Member.php:107 msgid "Team Member Content" msgstr "" -#: ../includes/Elements/Team_Member.php:116, ../includes/Elements/Testimonial.php:140 +#: ../includes/Elements/Team_Member.php:120, ../includes/Elements/Testimonial.php:144 msgid "John Doe" msgstr "" -#: ../includes/Elements/Team_Member.php:126 +#: ../includes/Elements/Team_Member.php:130 msgid "Job Position" msgstr "" -#: ../includes/Elements/Team_Member.php:131 +#: ../includes/Elements/Team_Member.php:135 msgid "Software Engineer" msgstr "" -#: ../includes/Elements/Team_Member.php:146 +#: ../includes/Elements/Team_Member.php:150 msgid "Add team member description here. Remove the text if not necessary." msgstr "" -#: ../includes/Elements/Team_Member.php:157 +#: ../includes/Elements/Team_Member.php:161 msgid "Social Profiles" msgstr "" -#: ../includes/Elements/Team_Member.php:164 +#: ../includes/Elements/Team_Member.php:168 msgid "Display Social Profiles?" msgstr "" -#: ../includes/Elements/Team_Member.php:197 +#: ../includes/Elements/Team_Member.php:201 msgid "Place URL here" msgstr "" -#: ../includes/Elements/Team_Member.php:272 +#: ../includes/Elements/Team_Member.php:276 msgid "Team Member Styles" msgstr "" -#: ../includes/Elements/Team_Member.php:280 +#: ../includes/Elements/Team_Member.php:284 msgid "Centered Style" msgstr "" -#: ../includes/Elements/Team_Member.php:281 +#: ../includes/Elements/Team_Member.php:285 msgid "Circle Style" msgstr "" -#: ../includes/Elements/Team_Member.php:282 +#: ../includes/Elements/Team_Member.php:286 msgid "Social on Bottom" msgstr "" -#: ../includes/Elements/Team_Member.php:283 +#: ../includes/Elements/Team_Member.php:287 msgid "Social on Right" msgstr "" -#: ../includes/Elements/Team_Member.php:317 +#: ../includes/Elements/Team_Member.php:336 msgid "Content Card" msgstr "" -#: ../includes/Elements/Team_Member.php:349 +#: ../includes/Elements/Team_Member.php:368 msgid "Enable Description Overlay" msgstr "" -#: ../includes/Elements/Team_Member.php:403 +#: ../includes/Elements/Team_Member.php:422 msgid "Set Alignment" msgstr "" -#: ../includes/Elements/Team_Member.php:467 +#: ../includes/Elements/Team_Member.php:486 msgid "Team Member Image Style" msgstr "" -#: ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:370 +#: ../includes/Elements/Team_Member.php:494, ../includes/Elements/Testimonial.php:400 msgid "Image Width" msgstr "" -#: ../includes/Elements/Team_Member.php:541, ../includes/Elements/Testimonial.php:452 +#: ../includes/Elements/Team_Member.php:560, ../includes/Elements/Testimonial.php:482 msgid "Rounded Avatar?" msgstr "" -#: ../includes/Elements/Team_Member.php:577 +#: ../includes/Elements/Team_Member.php:596 msgid "Member Name" msgstr "" -#: ../includes/Elements/Team_Member.php:585 +#: ../includes/Elements/Team_Member.php:604 msgid "Member Name Color" msgstr "" -#: ../includes/Elements/Team_Member.php:605 +#: ../includes/Elements/Team_Member.php:624 msgid "Member Job Position" msgstr "" -#: ../includes/Elements/Team_Member.php:614 +#: ../includes/Elements/Team_Member.php:633 msgid "Job Position Color" msgstr "" -#: ../includes/Elements/Team_Member.php:634 +#: ../includes/Elements/Team_Member.php:653 msgid "Member Description" msgstr "" -#: ../includes/Elements/Team_Member.php:643 +#: ../includes/Elements/Team_Member.php:662 msgid "Description Color" msgstr "" -#: ../includes/Elements/Team_Member.php:668 +#: ../includes/Elements/Team_Member.php:687 msgid "Social Profiles Style" msgstr "" -#: ../includes/Elements/Team_Member.php:701 +#: ../includes/Elements/Team_Member.php:720 msgid "Social Profiles Margin" msgstr "" -#: ../includes/Elements/Team_Member.php:714 +#: ../includes/Elements/Team_Member.php:733 msgid "Social Icon Padding" msgstr "" -#: ../includes/Elements/Team_Member.php:726 +#: ../includes/Elements/Team_Member.php:745 msgid "Social Icon Distance" msgstr "" -#: ../includes/Elements/Team_Member.php:845 +#: ../includes/Elements/Team_Member.php:864 msgid "Hover Background" msgstr "" -#: ../includes/Elements/Team_Member.php:872 +#: ../includes/Elements/Team_Member.php:891 msgid "Hover Border Color" msgstr "" -#: ../includes/Elements/Testimonial.php:82 +#: ../includes/Elements/Testimonial.php:86 msgid "Testimonial Image" msgstr "" -#: ../includes/Elements/Testimonial.php:89 +#: ../includes/Elements/Testimonial.php:93 msgid "Display Avatar?" msgstr "" -#: ../includes/Elements/Testimonial.php:98 +#: ../includes/Elements/Testimonial.php:102 msgid "Testimonial Avatar" msgstr "" -#: ../includes/Elements/Testimonial.php:131 +#: ../includes/Elements/Testimonial.php:135 msgid "Testimonial Content" msgstr "" -#: ../includes/Elements/Testimonial.php:138, ../includes/Elements/Testimonial.php:488 +#: ../includes/Elements/Testimonial.php:142, ../includes/Elements/Testimonial.php:518 msgid "User Name" msgstr "" -#: ../includes/Elements/Testimonial.php:151, ../includes/Elements/Testimonial.php:528 +#: ../includes/Elements/Testimonial.php:155, ../includes/Elements/Testimonial.php:558 msgid "Company Name" msgstr "" -#: ../includes/Elements/Testimonial.php:153 +#: ../includes/Elements/Testimonial.php:157 msgid "Codetic" msgstr "" -#: ../includes/Elements/Testimonial.php:164 +#: ../includes/Elements/Testimonial.php:168 msgid "Testimonial Description" msgstr "" -#: ../includes/Elements/Testimonial.php:166 +#: ../includes/Elements/Testimonial.php:170 msgid "Add testimonial description here. Edit and place your own text." msgstr "" -#: ../includes/Elements/Testimonial.php:173 +#: ../includes/Elements/Testimonial.php:177 msgid "Description Height" msgstr "" -#: ../includes/Elements/Testimonial.php:190 +#: ../includes/Elements/Testimonial.php:194 msgid "Display Rating?" msgstr "" -#: ../includes/Elements/Testimonial.php:200 +#: ../includes/Elements/Testimonial.php:204 msgid "Rating Number" msgstr "" -#: ../includes/Elements/Testimonial.php:250 +#: ../includes/Elements/Testimonial.php:254 msgid "Testimonial Styles" msgstr "" -#: ../includes/Elements/Testimonial.php:258 +#: ../includes/Elements/Testimonial.php:263, ../includes/Traits/Controls.php:1474 msgid "Select Style" msgstr "" -#: ../includes/Elements/Testimonial.php:264 +#: ../includes/Elements/Testimonial.php:275 msgid "Content | Icon/Image | Bio" msgstr "" -#: ../includes/Elements/Testimonial.php:265 +#: ../includes/Elements/Testimonial.php:279 msgid "Icon/Image | Content" msgstr "" -#: ../includes/Elements/Testimonial.php:266 +#: ../includes/Elements/Testimonial.php:283 msgid "Content | Icon/Image" msgstr "" -#: ../includes/Elements/Testimonial.php:267 +#: ../includes/Elements/Testimonial.php:287 msgid "Content Top | Icon Title Inline" msgstr "" -#: ../includes/Elements/Testimonial.php:268 +#: ../includes/Elements/Testimonial.php:291 msgid "Content Bottom | Icon Title Inline" msgstr "" -#: ../includes/Elements/Testimonial.php:302 +#: ../includes/Elements/Testimonial.php:332 msgid "Gradient Background" msgstr "" -#: ../includes/Elements/Testimonial.php:314 +#: ../includes/Elements/Testimonial.php:344 msgid "Layout Alignment" msgstr "" -#: ../includes/Elements/Testimonial.php:346 +#: ../includes/Elements/Testimonial.php:376 msgid "Display User & Company Block?" msgstr "" -#: ../includes/Elements/Testimonial.php:359 +#: ../includes/Elements/Testimonial.php:389 msgid "Testimonial Image Style" msgstr "" -#: ../includes/Elements/Testimonial.php:396 +#: ../includes/Elements/Testimonial.php:426 msgid "Image Max Width" msgstr "" -#: ../includes/Elements/Testimonial.php:480 +#: ../includes/Elements/Testimonial.php:510 msgid "Color, Typography & Spacing" msgstr "" -#: ../includes/Elements/Testimonial.php:496 +#: ../includes/Elements/Testimonial.php:526 msgid "User Name Color" msgstr "" -#: ../includes/Elements/Testimonial.php:537 +#: ../includes/Elements/Testimonial.php:567 msgid "Company Color" msgstr "" -#: ../includes/Elements/Testimonial.php:569 +#: ../includes/Elements/Testimonial.php:599 msgid "Testimonial Text" msgstr "" -#: ../includes/Elements/Testimonial.php:578 +#: ../includes/Elements/Testimonial.php:608 msgid "Testimonial Text Color" msgstr "" -#: ../includes/Elements/Testimonial.php:635 +#: ../includes/Elements/Testimonial.php:665 msgid "Rating Size" msgstr "" -#: ../includes/Elements/Testimonial.php:647 +#: ../includes/Elements/Testimonial.php:677 msgid "Distance Between Rating Item" msgstr "" -#: ../includes/Elements/Testimonial.php:673 +#: ../includes/Elements/Testimonial.php:703 msgid "Quotation Style" msgstr "" -#: ../includes/Elements/Testimonial.php:681 +#: ../includes/Elements/Testimonial.php:711 msgid "Quotation Mark Color" msgstr "" -#: ../includes/Elements/Testimonial.php:701 +#: ../includes/Elements/Testimonial.php:731 msgid "Quotation Postion From Top" msgstr "" -#: ../includes/Elements/Testimonial.php:723 +#: ../includes/Elements/Testimonial.php:753 msgid "Quotation Postion From Right" msgstr "" -#: ../includes/Elements/Tooltip.php:87, ../includes/Elements/Tooltip.php:197 +#: ../includes/Elements/Tooltip.php:91, ../includes/Elements/Tooltip.php:201 msgid "Shortcode" msgstr "" -#: ../includes/Elements/Tooltip.php:146 +#: ../includes/Elements/Tooltip.php:150 msgid "Hover Me!" msgstr "" -#: ../includes/Elements/Tooltip.php:156 +#: ../includes/Elements/Tooltip.php:160 msgid "Content Tag" msgstr "" -#: ../includes/Elements/Tooltip.php:167 +#: ../includes/Elements/Tooltip.php:171 msgid "DIV" msgstr "" -#: ../includes/Elements/Tooltip.php:168 +#: ../includes/Elements/Tooltip.php:172 msgid "SPAN" msgstr "" -#: ../includes/Elements/Tooltip.php:200 +#: ../includes/Elements/Tooltip.php:204 msgid "[shortcode-here]" msgstr "" -#: ../includes/Elements/Tooltip.php:239 +#: ../includes/Elements/Tooltip.php:243 msgid "Enable Link" msgstr "" -#: ../includes/Elements/Tooltip.php:273 +#: ../includes/Elements/Tooltip.php:277 msgid "Tooltip Settings" msgstr "" -#: ../includes/Elements/Tooltip.php:282 +#: ../includes/Elements/Tooltip.php:286 msgid "Tooltip content" msgstr "" -#: ../includes/Elements/Tooltip.php:289 +#: ../includes/Elements/Tooltip.php:293 msgid "Hover Direction" msgstr "" -#: ../includes/Elements/Tooltip.php:304 +#: ../includes/Elements/Tooltip.php:308 msgid "Hover Speed" msgstr "" -#: ../includes/Elements/Tooltip.php:307 +#: ../includes/Elements/Tooltip.php:311 msgid "300" msgstr "" -#: ../includes/Elements/Tooltip.php:336 +#: ../includes/Elements/Tooltip.php:340 msgid "Content Max Width" msgstr "" -#: ../includes/Elements/Tooltip.php:559 +#: ../includes/Elements/Tooltip.php:563 msgid "Tooltip Style" msgstr "" -#: ../includes/Elements/Tooltip.php:566 +#: ../includes/Elements/Tooltip.php:570 msgid "Tooltip Width" msgstr "" -#: ../includes/Elements/Tooltip.php:591 +#: ../includes/Elements/Tooltip.php:595 msgid "Tooltip Max Width" msgstr "" @@ -8246,15 +8117,15 @@ msgstr "" msgid "Card Settings" msgstr "" -#: ../includes/Elements/Twitter_Feed.php:329, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1578, ../includes/Traits/Controls.php:1629 +#: ../includes/Elements/Twitter_Feed.php:329, ../includes/Traits/Controls.php:1678, ../includes/Traits/Controls.php:1711, ../includes/Traits/Controls.php:1762 msgid "Show Avatar" msgstr "" -#: ../includes/Elements/Twitter_Feed.php:341, ../includes/Traits/Controls.php:1661 +#: ../includes/Elements/Twitter_Feed.php:341, ../includes/Traits/Controls.php:1794 msgid "Show Date" msgstr "" -#: ../includes/Elements/Twitter_Feed.php:353, ../includes/Traits/Controls.php:1228 +#: ../includes/Elements/Twitter_Feed.php:353, ../includes/Traits/Controls.php:1350 msgid "Show Read More" msgstr "" @@ -8346,7 +8217,7 @@ msgstr "" msgid "Form Height" msgstr "" -#: ../includes/Elements/TypeForm.php:266, ../includes/Extensions/Scroll_to_Top.php:319 +#: ../includes/Elements/TypeForm.php:266, ../includes/Extensions/Hover_Effect.php:96, ../includes/Extensions/Hover_Effect.php:109, ../includes/Extensions/Hover_Effect.php:718, ../includes/Extensions/Hover_Effect.php:732, ../includes/Extensions/Scroll_to_Top.php:319 msgid "Opacity" msgstr "" @@ -8454,11 +8325,11 @@ msgstr "" msgid "Table Items" msgstr "" -#: ../includes/Elements/Woo_Cart.php:389, ../includes/Elements/Woo_Checkout.php:211, ../includes/Elements/Woo_Product_Gallery.php:308 +#: ../includes/Elements/Woo_Cart.php:389, ../includes/Elements/Woo_Checkout.php:227, ../includes/Elements/Woo_Product_Gallery.php:316 msgid "Product" msgstr "" -#: ../includes/Elements/Woo_Cart.php:405, ../includes/Elements/Woo_Cart.php:1173, ../includes/Elements/Woo_Checkout.php:302, ../includes/Elements/Woo_Checkout.php:1292, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:329, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:534 +#: ../includes/Elements/Woo_Cart.php:405, ../includes/Elements/Woo_Cart.php:1173, ../includes/Elements/Woo_Checkout.php:318, ../includes/Elements/Woo_Checkout.php:1333, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:329, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:534 msgid "Total" msgstr "" @@ -8506,15 +8377,15 @@ msgstr "" msgid "Coupon Form" msgstr "" -#: ../includes/Elements/Woo_Cart.php:1010, ../includes/Elements/Woo_Checkout.php:439 +#: ../includes/Elements/Woo_Cart.php:1010, ../includes/Elements/Woo_Checkout.php:455 msgid "Apply Coupon" msgstr "" -#: ../includes/Elements/Woo_Cart.php:1025, ../includes/Elements/Woo_Checkout.php:424 +#: ../includes/Elements/Woo_Cart.php:1025, ../includes/Elements/Woo_Checkout.php:440 msgid "Coupon code" msgstr "" -#: ../includes/Elements/Woo_Cart.php:1038, ../includes/Elements/Woo_Cart.php:1053, ../includes/Elements/Woo_Cart.php:2022, ../includes/Elements/Woo_Checkout.php:333 +#: ../includes/Elements/Woo_Cart.php:1038, ../includes/Elements/Woo_Cart.php:1053, ../includes/Elements/Woo_Cart.php:2022, ../includes/Elements/Woo_Checkout.php:349 msgid "Continue Shopping" msgstr "" @@ -8562,11 +8433,11 @@ msgstr "" msgid "Background Color Right Side" msgstr "" -#: ../includes/Elements/Woo_Cart.php:1329, ../includes/Elements/Woo_Checkout.php:922 +#: ../includes/Elements/Woo_Cart.php:1329, ../includes/Elements/Woo_Checkout.php:938 msgid "Table Head" msgstr "" -#: ../includes/Elements/Woo_Cart.php:1358, ../includes/Elements/Woo_Checkout.php:980 +#: ../includes/Elements/Woo_Cart.php:1358, ../includes/Elements/Woo_Checkout.php:996 msgid "Table Body" msgstr "" @@ -8606,587 +8477,595 @@ msgstr "" msgid "Notice" msgstr "" -#: ../includes/Elements/Woo_Cart.php:2409, ../includes/Elements/Woo_Checkout.php:2210 +#: ../includes/Elements/Woo_Cart.php:2409, ../includes/Elements/Woo_Checkout.php:2251 msgid "Error" msgstr "" -#: ../includes/Elements/Woo_Cart.php:2490, ../includes/Elements/Woo_Checkout.php:2167 +#: ../includes/Elements/Woo_Cart.php:2490, ../includes/Elements/Woo_Checkout.php:2208 msgid "Info" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:134 +#: ../includes/Elements/Woo_Checkout.php:128 msgid "Multi Steps (Pro)" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:135 +#: ../includes/Elements/Woo_Checkout.php:129 msgid "Split (Pro)" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:163, ../includes/Elements/Woo_Checkout.php:866 +#: ../includes/Elements/Woo_Checkout.php:179, ../includes/Elements/Woo_Checkout.php:882 msgid "Order Details" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:172 +#: ../includes/Elements/Woo_Checkout.php:188 msgid "Your Order" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:186 +#: ../includes/Elements/Woo_Checkout.php:202 msgid "Enable Cart Update" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:197 +#: ../includes/Elements/Woo_Checkout.php:213 msgid "Change Labels" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:206 +#: ../includes/Elements/Woo_Checkout.php:222 msgid "Product Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:226 +#: ../includes/Elements/Woo_Checkout.php:242 msgid "Quantity Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:246 +#: ../includes/Elements/Woo_Checkout.php:262 msgid "Price Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:266 +#: ../includes/Elements/Woo_Checkout.php:282 msgid "Subtotal Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:283 +#: ../includes/Elements/Woo_Checkout.php:299 msgid "Shipping Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:300 +#: ../includes/Elements/Woo_Checkout.php:316 msgid "Total Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:319, ../includes/Elements/Woo_Checkout.php:1328 +#: ../includes/Elements/Woo_Checkout.php:335, ../includes/Elements/Woo_Checkout.php:1369 msgid "Shop Link" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:328, ../includes/Elements/Woo_Checkout.php:395, ../includes/Elements/Woo_Checkout.php:530 +#: ../includes/Elements/Woo_Checkout.php:344, ../includes/Elements/Woo_Checkout.php:411, ../includes/Elements/Woo_Checkout.php:546 msgid "Link Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:356, ../includes/Elements/Woo_Checkout.php:1770 +#: ../includes/Elements/Woo_Checkout.php:372, ../includes/Elements/Woo_Checkout.php:1811 msgid "Coupon" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:383 +#: ../includes/Elements/Woo_Checkout.php:399 msgid "Have a coupon?" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:397 +#: ../includes/Elements/Woo_Checkout.php:413 msgid "Click here to enter your code" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:410 +#: ../includes/Elements/Woo_Checkout.php:426 msgid "Form Content" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:412 +#: ../includes/Elements/Woo_Checkout.php:428 msgid "If you have a coupon code, please apply it below." msgstr "" -#: ../includes/Elements/Woo_Checkout.php:422 +#: ../includes/Elements/Woo_Checkout.php:438 msgid "Placeholder Text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:464 +#: ../includes/Elements/Woo_Checkout.php:480 msgid "Show Preview of Login" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:505 +#: ../includes/Elements/Woo_Checkout.php:521 msgid "Returning customer?" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:520 +#: ../includes/Elements/Woo_Checkout.php:536 msgid "If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section." msgstr "" -#: ../includes/Elements/Woo_Checkout.php:532 +#: ../includes/Elements/Woo_Checkout.php:548 msgid "Click here to login" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:551, ../includes/Elements/Woo_Checkout.php:2357 +#: ../includes/Elements/Woo_Checkout.php:567, ../includes/Elements/Woo_Checkout.php:2398 msgid "Customer Details" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:557 +#: ../includes/Elements/Woo_Checkout.php:573 msgid "Billing Title" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:559 +#: ../includes/Elements/Woo_Checkout.php:575 msgid "Billing Details" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:571 +#: ../includes/Elements/Woo_Checkout.php:587 msgid "Shipping Title" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:573 +#: ../includes/Elements/Woo_Checkout.php:589 msgid "Ship to a different address?" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:585 +#: ../includes/Elements/Woo_Checkout.php:601 msgid "Additional Info Title" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:587 +#: ../includes/Elements/Woo_Checkout.php:603 msgid "Additional Information" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:607 +#: ../includes/Elements/Woo_Checkout.php:623 msgid "Billing/Shipping Fields" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:614 +#: ../includes/Elements/Woo_Checkout.php:630 msgid "Enable Reordering" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:626 +#: ../includes/Elements/Woo_Checkout.php:642 msgid "Unlisted Fields Appears " msgstr "" -#: ../includes/Elements/Woo_Checkout.php:633 +#: ../includes/Elements/Woo_Checkout.php:649 msgid "If there is some conditional fields. you can defined where the fields will appear." msgstr "" -#: ../includes/Elements/Woo_Checkout.php:644 +#: ../includes/Elements/Woo_Checkout.php:660 msgid "If you didn't find your custom checkout fields. Please remove this widget and again add this. " msgstr "" -#: ../includes/Elements/Woo_Checkout.php:668, ../includes/Elements/Woo_Checkout.php:741 +#: ../includes/Elements/Woo_Checkout.php:684, ../includes/Elements/Woo_Checkout.php:757 msgid "Here you can reorder the fields by drag and drop." msgstr "" -#: ../includes/Elements/Woo_Checkout.php:679, ../includes/Elements/Woo_Checkout.php:691 +#: ../includes/Elements/Woo_Checkout.php:695, ../includes/Elements/Woo_Checkout.php:707 msgid "List Title" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:698 +#: ../includes/Elements/Woo_Checkout.php:714 msgid "Field Spacing" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:701 +#: ../includes/Elements/Woo_Checkout.php:717 msgid "First Half" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:702 +#: ../includes/Elements/Woo_Checkout.php:718 msgid "Last Half" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:771, ../includes/Elements/Woo_Checkout.php:2637 +#: ../includes/Elements/Woo_Checkout.php:787, ../includes/Elements/Woo_Checkout.php:2682 msgid "Payment" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:779 +#: ../includes/Elements/Woo_Checkout.php:795 msgid "Payment Methods" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:791 +#: ../includes/Elements/Woo_Checkout.php:807 msgid "Button text" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:793 +#: ../includes/Elements/Woo_Checkout.php:809 msgid "Place Order" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:814 +#: ../includes/Elements/Woo_Checkout.php:830 msgid "Section Title" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:839 +#: ../includes/Elements/Woo_Checkout.php:855 msgid "Bottom Gap" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:943 +#: ../includes/Elements/Woo_Checkout.php:959 msgid "Header Color" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:1095 +#: ../includes/Elements/Woo_Checkout.php:1123 msgid "Table Footer" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:1478, ../includes/Elements/Woo_Checkout.php:1856 +#: ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1897 msgid "Links Color" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:1489, ../includes/Elements/Woo_Checkout.php:1867 +#: ../includes/Elements/Woo_Checkout.php:1530, ../includes/Elements/Woo_Checkout.php:1908 msgid "Links Hover Color" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:1590 +#: ../includes/Elements/Woo_Checkout.php:1631 msgid "Form Label" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2142 +#: ../includes/Elements/Woo_Checkout.php:2183 msgid "Notices" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2409 +#: ../includes/Elements/Woo_Checkout.php:2450 msgid "Required (*)" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2524 +#: ../includes/Elements/Woo_Checkout.php:2569 msgid "Bottom Spacing (PX)" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2547 +#: ../includes/Elements/Woo_Checkout.php:2592 msgid "Pickup Point" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2744 +#: ../includes/Elements/Woo_Checkout.php:2789 msgid "Selected" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2766 +#: ../includes/Elements/Woo_Checkout.php:2811 msgid "Methods Info" msgstr "" -#: ../includes/Elements/Woo_Checkout.php:2799 +#: ../includes/Elements/Woo_Checkout.php:2852 msgid "Privacy Policy" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Elements/Woo_Product_List.php:356, ../includes/Elements/Woo_Product_List.php:913, ../includes/Elements/Woo_Product_List.php:1717, ../includes/Elements/Woo_Product_List.php:2542 +#: ../includes/Elements/Woo_Product_Carousel.php:261, ../includes/Elements/Woo_Product_List.php:405, ../includes/Elements/Woo_Product_List.php:1030, ../includes/Elements/Woo_Product_List.php:1863, ../includes/Elements/Woo_Product_List.php:2688 msgid "Add to Cart" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:276, ../includes/Traits/Controls.php:1100 +#: ../includes/Elements/Woo_Product_Carousel.php:296, ../includes/Traits/Controls.php:1222 msgid "Title Length" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:350 +#: ../includes/Elements/Woo_Product_Carousel.php:370 msgid "Image Stretch" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:362, ../includes/Traits/Controls.php:1411, ../includes/Traits/Controls.php:1447 +#: ../includes/Elements/Woo_Product_Carousel.php:382, ../includes/Traits/Controls.php:1563, ../includes/Traits/Controls.php:1580 msgid "Show Terms From" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:366, ../includes/Traits/Controls.php:1451 +#: ../includes/Elements/Woo_Product_Carousel.php:386, ../includes/Traits/Controls.php:1584 msgid "Tags" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:378, ../includes/Traits/Controls.php:1465 +#: ../includes/Elements/Woo_Product_Carousel.php:398, ../includes/Traits/Controls.php:1598 msgid "Max Terms to Show" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:395 +#: ../includes/Elements/Woo_Product_Carousel.php:415 msgid "Button Appears" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:402 +#: ../includes/Elements/Woo_Product_Carousel.php:422 msgid "No Buttons" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:411 +#: ../includes/Elements/Woo_Product_Carousel.php:431 msgid "Static option will not work for Preset 4." msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:423 +#: ../includes/Elements/Woo_Product_Carousel.php:443 msgid "Show Quick View?" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:433 +#: ../includes/Elements/Woo_Product_Carousel.php:453 msgid "Quick View Title Tag" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:468 +#: ../includes/Elements/Woo_Product_Carousel.php:488 msgid "Title Clickable?" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:478, ../includes/Traits/Controls.php:2487 +#: ../includes/Elements/Woo_Product_Carousel.php:498, ../includes/Traits/Controls.php:2620 msgid "Not Found Message" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:480, ../includes/Elements/Woo_Product_List.php:1083 +#: ../includes/Elements/Woo_Product_Carousel.php:500, ../includes/Elements/Woo_Product_List.php:1229 msgid "Products Not Found" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:496 +#: ../includes/Elements/Woo_Product_Carousel.php:516 msgid "Carousel Settings" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:517 +#: ../includes/Elements/Woo_Product_Carousel.php:537 msgid "Visible Product" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:557 +#: ../includes/Elements/Woo_Product_Carousel.php:577 msgid "Depth" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:594 +#: ../includes/Elements/Woo_Product_Carousel.php:614 msgid "Items Gap" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:736 +#: ../includes/Elements/Woo_Product_Carousel.php:756 msgid "Image Dots" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:751 +#: ../includes/Elements/Woo_Product_Carousel.php:771 msgid "Image Dots Visibility" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:854, ../includes/Elements/Woo_Product_Gallery.php:474 +#: ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Gallery.php:537 msgid "Purchase Type" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:858, ../includes/Elements/Woo_Product_Gallery.php:478, ../includes/Elements/Woo_Product_List.php:524, ../includes/Elements/Woo_Product_List.php:601 +#: ../includes/Elements/Woo_Product_Carousel.php:899, ../includes/Elements/Woo_Product_Gallery.php:541, ../includes/Elements/Woo_Product_List.php:590, ../includes/Elements/Woo_Product_List.php:667 msgid "Both" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:1023 +#: ../includes/Elements/Woo_Product_Carousel.php:1066 msgid "Use opacity color for overlay design." msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:1226 +#: ../includes/Elements/Woo_Product_Carousel.php:1269 msgid "Regular Price Color" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:1338, ../includes/Elements/Woo_Product_Gallery.php:938, ../includes/Elements/Woo_Product_Gallery.php:1987 +#: ../includes/Elements/Woo_Product_Carousel.php:1381, ../includes/Elements/Woo_Product_Gallery.php:1061, ../includes/Elements/Woo_Product_Gallery.php:2139 msgid "Sale Badge" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:1743 +#: ../includes/Elements/Woo_Product_Carousel.php:1786 msgid "Review Color" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:2242, ../includes/Traits/Controls.php:690, ../includes/Traits/Controls.php:707 +#: ../includes/Elements/Woo_Product_Carousel.php:2285, ../includes/Traits/Controls.php:753, ../includes/Traits/Controls.php:770 msgid "Inside" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:2243, ../includes/Traits/Controls.php:691, ../includes/Traits/Controls.php:708 +#: ../includes/Elements/Woo_Product_Carousel.php:2286, ../includes/Traits/Controls.php:754, ../includes/Traits/Controls.php:771 msgid "Outside" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:2252 +#: ../includes/Elements/Woo_Product_Carousel.php:2295 msgid "Use Custom Width/Height?" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:2536 +#: ../includes/Elements/Woo_Product_Carousel.php:2579 msgid "Images Dots" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:2601 +#: ../includes/Elements/Woo_Product_Carousel.php:2644 msgid "Image Size" msgstr "" -#: ../includes/Elements/Woo_Product_Carousel.php:3074, ../includes/Elements/Woo_Product_List.php:3778 +#: ../includes/Elements/Woo_Product_Carousel.php:3114, ../includes/Elements/Woo_Product_List.php:3924 msgid "

No layout found!

" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:245 +#: ../includes/Elements/Woo_Product_Gallery.php:253 msgid "Show All Category Tab" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:257 +#: ../includes/Elements/Woo_Product_Gallery.php:265 msgid "Change All Text" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:274 +#: ../includes/Elements/Woo_Product_Gallery.php:282 msgid "Show Terms Thumbnail" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:280 +#: ../includes/Elements/Woo_Product_Gallery.php:288 msgid "Display thumbnail if a term (Category/Tag) has a thumbnail." msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:529 +#: ../includes/Elements/Woo_Product_Gallery.php:463, ../includes/Elements/Woo_Product_List.php:509, ../includes/Traits/Controls.php:228 +msgid "Ascending" +msgstr "" + +#: ../includes/Elements/Woo_Product_Gallery.php:467, ../includes/Elements/Woo_Product_List.php:513, ../includes/Traits/Controls.php:232 +msgid "Descending" +msgstr "" + +#: ../includes/Elements/Woo_Product_Gallery.php:622 msgid "Show Stock Out Products?" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:539 +#: ../includes/Elements/Woo_Product_Gallery.php:632 msgid "Show Secondary Image on Hover" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:545 +#: ../includes/Elements/Woo_Product_Gallery.php:638 msgid "Enable to show a secondary image from the product gallery on hover." msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1027 +#: ../includes/Elements/Woo_Product_Gallery.php:1150 msgid "Add to Cart Button Styles" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1224 +#: ../includes/Elements/Woo_Product_Gallery.php:1347 msgid "Gallery Styles" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1265 +#: ../includes/Elements/Woo_Product_Gallery.php:1388 msgid "Gap" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1519 +#: ../includes/Elements/Woo_Product_Gallery.php:1642 msgid "Width (PX)" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1688 +#: ../includes/Elements/Woo_Product_Gallery.php:1840 msgid "Show Add to Cart?" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:1698 +#: ../includes/Elements/Woo_Product_Gallery.php:1850 msgid "Show Link?" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:2543 +#: ../includes/Elements/Woo_Product_Gallery.php:2695 msgid "No Layout Found" msgstr "" -#: ../includes/Elements/Woo_Product_Gallery.php:2537 +#: ../includes/Elements/Woo_Product_Gallery.php:2689 msgid "No Product Found" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:244, ../includes/Elements/Woo_Product_List.php:611, ../includes/Elements/Woo_Product_List.php:1463, ../includes/Elements/Woo_Product_List.php:1932 +#: ../includes/Elements/Woo_Product_List.php:293, ../includes/Elements/Woo_Product_List.php:677, ../includes/Elements/Woo_Product_List.php:1609, ../includes/Elements/Woo_Product_List.php:2078 msgid "Content Header" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:251, ../includes/Elements/Woo_Product_List.php:668, ../includes/Elements/Woo_Product_List.php:1941 +#: ../includes/Elements/Woo_Product_List.php:300, ../includes/Elements/Woo_Product_List.php:755, ../includes/Elements/Woo_Product_List.php:2087 msgid "Badge" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:269, ../includes/Elements/Woo_Product_List.php:2133 +#: ../includes/Elements/Woo_Product_List.php:318, ../includes/Elements/Woo_Product_List.php:2279 msgid "Review Count" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:289, ../includes/Elements/Woo_Product_List.php:766, ../includes/Elements/Woo_Product_List.php:1523, ../includes/Elements/Woo_Product_List.php:2207 +#: ../includes/Elements/Woo_Product_List.php:338, ../includes/Elements/Woo_Product_List.php:853, ../includes/Elements/Woo_Product_List.php:1669, ../includes/Elements/Woo_Product_List.php:2353 msgid "Content Body" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:305, ../includes/Elements/Woo_Product_List.php:818, ../includes/Elements/Woo_Product_List.php:1573, ../includes/Elements/Woo_Product_List.php:2298 +#: ../includes/Elements/Woo_Product_List.php:354, ../includes/Elements/Woo_Product_List.php:935, ../includes/Elements/Woo_Product_List.php:1719, ../includes/Elements/Woo_Product_List.php:2444 msgid "Excerpt" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:325, ../includes/Elements/Woo_Product_List.php:854, ../includes/Elements/Woo_Product_List.php:1647, ../includes/Elements/Woo_Product_List.php:2413 +#: ../includes/Elements/Woo_Product_List.php:374, ../includes/Elements/Woo_Product_List.php:971, ../includes/Elements/Woo_Product_List.php:1793, ../includes/Elements/Woo_Product_List.php:2559 msgid "Content Footer" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:332, ../includes/Elements/Woo_Product_List.php:344, ../includes/Elements/Woo_Product_List.php:863, ../includes/Elements/Woo_Product_List.php:1656, ../includes/Elements/Woo_Product_List.php:2422, ../includes/Elements/Woo_Product_List.php:2433 +#: ../includes/Elements/Woo_Product_List.php:381, ../includes/Elements/Woo_Product_List.php:393, ../includes/Elements/Woo_Product_List.php:980, ../includes/Elements/Woo_Product_List.php:1802, ../includes/Elements/Woo_Product_List.php:2568, ../includes/Elements/Woo_Product_List.php:2579 msgid "Total Sold" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:365, ../includes/Elements/Woo_Product_List.php:1022, ../includes/Elements/Woo_Product_List.php:2663 +#: ../includes/Elements/Woo_Product_List.php:414, ../includes/Elements/Woo_Product_List.php:1139, ../includes/Elements/Woo_Product_List.php:2809 msgid "Quick View" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:481 +#: ../includes/Elements/Woo_Product_List.php:547 msgid "Status" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:495 +#: ../includes/Elements/Woo_Product_List.php:561 msgid "Categories" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:552, ../includes/Elements/Woo_Product_List.php:805 +#: ../includes/Elements/Woo_Product_List.php:618, ../includes/Elements/Woo_Product_List.php:922 msgid "Clickable" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:597 +#: ../includes/Elements/Woo_Product_List.php:663 msgid "Add to Cart, Quick View, Link buttons/icons on content footer or on image hover or in both positions" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:621 +#: ../includes/Elements/Woo_Product_List.php:688 msgid "Whether to show content header before or after the title" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:638 +#: ../includes/Elements/Woo_Product_List.php:712 msgid "Content header items before or after the title" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:655 +#: ../includes/Elements/Woo_Product_List.php:736 msgid "Content header items alignment" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:660 +#: ../includes/Elements/Woo_Product_List.php:743 msgid "Right to Left" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:752, ../includes/Elements/Woo_Product_List.php:2012, ../includes/Elements/Woo_Product_List.php:3573 +#: ../includes/Elements/Woo_Product_List.php:839, ../includes/Elements/Woo_Product_List.php:2158, ../includes/Elements/Woo_Product_List.php:3719 msgid "Stock Out" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:783 -msgid "Tag" +#: ../includes/Elements/Woo_Product_List.php:870, ../includes/Extensions/Table_of_Content.php:141 +msgid "HTML Tag" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:826 +#: ../includes/Elements/Woo_Product_List.php:943 msgid "Words Count" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:872, ../includes/Elements/Woo_Product_List.php:2469 +#: ../includes/Elements/Woo_Product_List.php:989, ../includes/Elements/Woo_Product_List.php:2615 msgid "Remaining" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:885 +#: ../includes/Elements/Woo_Product_List.php:1002 msgid "Total Sold Text" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:888, ../includes/Elements/Woo_Product_List.php:3586 +#: ../includes/Elements/Woo_Product_List.php:1005, ../includes/Elements/Woo_Product_List.php:3732 msgid "Total Sold:" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:899 +#: ../includes/Elements/Woo_Product_List.php:1016 msgid "Remaining Text" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:902, ../includes/Elements/Woo_Product_List.php:3587 +#: ../includes/Elements/Woo_Product_List.php:1019, ../includes/Elements/Woo_Product_List.php:3733 msgid "Remaining:" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1059, ../includes/Elements/Woo_Product_List.php:1782, ../includes/Elements/Woo_Product_List.php:3588 +#: ../includes/Elements/Woo_Product_List.php:1205, ../includes/Elements/Woo_Product_List.php:1928, ../includes/Elements/Woo_Product_List.php:3734 msgid "View Product" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1072 +#: ../includes/Elements/Woo_Product_List.php:1218 msgid "Not Found" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1086, ../includes/Elements/Woo_Product_List.php:3589, ../includes/Template/Content/Product_Grid.php:82, ../includes/Template/Content/Woo_Product_List.php:82 +#: ../includes/Elements/Woo_Product_List.php:1232, ../includes/Elements/Woo_Product_List.php:3735, ../includes/Template/Content/Product_Grid.php:93, ../includes/Template/Content/Woo_Product_List.php:95 msgid "No products found!" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1329 +#: ../includes/Elements/Woo_Product_List.php:1475 msgid "Image Wrapper" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1426 +#: ../includes/Elements/Woo_Product_List.php:1572 msgid "Content Wrapper" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1469 +#: ../includes/Elements/Woo_Product_List.php:1615 msgid "Custom Spacing" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1479 +#: ../includes/Elements/Woo_Product_List.php:1625 msgid "Title spacing can be added from Style => Content => Content Body => Title " msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1665 +#: ../includes/Elements/Woo_Product_List.php:1811 msgid "Progress Height" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1707 +#: ../includes/Elements/Woo_Product_List.php:1853 msgid "Static Buttons" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:1849, ../includes/Elements/Woo_Product_List.php:2777 +#: ../includes/Elements/Woo_Product_List.php:1995, ../includes/Elements/Woo_Product_List.php:2923 msgid "On Hover Buttons" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:2067 +#: ../includes/Elements/Woo_Product_List.php:2213 msgid "Badge Size" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:2336 +#: ../includes/Elements/Woo_Product_List.php:2482 msgid "Regular Price" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:2507 +#: ../includes/Elements/Woo_Product_List.php:2653 msgid "Progress Outer" msgstr "" -#: ../includes/Elements/Woo_Product_List.php:2520 +#: ../includes/Elements/Woo_Product_List.php:2666 msgid "Progress Inner" msgstr "" @@ -9194,7 +9073,7 @@ msgstr "" msgid "WPForms is not installed/activated on your site. Please install and activate WPForms first." msgstr "" -#: ../includes/Extensions/Custom_JS.php:22, ../includes/templates/admin/extensions.php:58 +#: ../includes/Extensions/Custom_JS.php:22, ../includes/Traits/Admin.php:332, ../includes/Traits/Admin.php:408, ../includes/Traits/Admin.php:593 msgid "Custom JS" msgstr "" @@ -9214,74 +9093,214 @@ msgstr "" msgid "For more information, click here" msgstr "" +#: ../includes/Extensions/Hover_Effect.php:26 +msgid " Hover Interactions" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:34 +msgid "Enable Hover Interactions" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:43 +msgid "Enabling this option will disable Elementor's Transform feature within the Elementor Editor." +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:51 +msgid "Show Preview in Editor" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:64 +msgid "Enabling this option will let you preview the Hover Interactions inside the Elementor Editor." +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:131, ../includes/Extensions/Hover_Effect.php:755 +msgid "Filter" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:146, ../includes/Extensions/Hover_Effect.php:770 +msgid "Blur" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:157, ../includes/Extensions/Hover_Effect.php:190, ../includes/Extensions/Hover_Effect.php:223, ../includes/Extensions/Hover_Effect.php:256, ../includes/Extensions/Hover_Effect.php:289, ../includes/Extensions/Hover_Effect.php:322, ../includes/Extensions/Hover_Effect.php:781, ../includes/Extensions/Hover_Effect.php:817, ../includes/Extensions/Hover_Effect.php:854, ../includes/Extensions/Hover_Effect.php:890, ../includes/Extensions/Hover_Effect.php:927, ../includes/Extensions/Hover_Effect.php:964 +msgid "Value" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:179, ../includes/Extensions/Hover_Effect.php:806 +msgid "Contrast" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:212, ../includes/Extensions/Hover_Effect.php:843 +msgid "Grayscale" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:245, ../includes/Extensions/Hover_Effect.php:879 +msgid "Invert" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:278, ../includes/Extensions/Hover_Effect.php:916 +msgid "Saturate" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:311, ../includes/Extensions/Hover_Effect.php:953 +msgid "Sepia" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:358, ../includes/Extensions/Hover_Effect.php:1003 +msgid "Offset Top" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:387, ../includes/Extensions/Hover_Effect.php:1032 +msgid "Offset Left" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:418, ../includes/Extensions/Hover_Effect.php:1064 +msgid "Transform" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:445, ../includes/Extensions/Hover_Effect.php:1090 +msgid "RotateX (deg)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:468, ../includes/Extensions/Hover_Effect.php:1112 +msgid "RotateY (deg)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:491, ../includes/Extensions/Hover_Effect.php:1134 +msgid "RotateZ (deg)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:514, ../includes/Extensions/Hover_Effect.php:1158 +msgid "Scale" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:526, ../includes/Extensions/Hover_Effect.php:1169 +msgid "ScaleX" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:548, ../includes/Extensions/Hover_Effect.php:1190 +msgid "ScaleY" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:570, ../includes/Extensions/Hover_Effect.php:1213 +msgid "Skew" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:582, ../includes/Extensions/Hover_Effect.php:1224 +msgid "SkewX (deg)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:605, ../includes/Extensions/Hover_Effect.php:1246 +msgid "SkewY (deg)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:643, ../includes/Extensions/Hover_Effect.php:1284 +msgid "Duration (ms)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:665, ../includes/Extensions/Hover_Effect.php:1307 +msgid "Delay (ms)" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:683, ../includes/Extensions/Hover_Effect.php:1326 +msgid "Easing" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:689, ../includes/Extensions/Hover_Effect.php:1332 +msgid "Ease-in" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:690, ../includes/Extensions/Hover_Effect.php:1333 +msgid "Ease-out" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:691, ../includes/Extensions/Hover_Effect.php:1334 +msgid "Ease-in-out" +msgstr "" + +#: ../includes/Extensions/Hover_Effect.php:1345 +msgid "Tilt Effect" +msgstr "" + #: ../includes/Extensions/Post_Duplicator.php:35, ../includes/Extensions/Post_Duplicator.php:56 msgid "EA Duplicator" msgstr "" -#: ../includes/Extensions/Promotion.php:33 +#: ../includes/Extensions/Promotion.php:35 msgid "Upgrade Essential Addons" msgstr "" -#: ../includes/Extensions/Promotion.php:45 +#: ../includes/Extensions/Promotion.php:47 msgid " Parallax" msgstr "" -#: ../includes/Extensions/Promotion.php:55 +#: ../includes/Extensions/Promotion.php:57 msgid "Meet EA Parallax" msgstr "" -#: ../includes/Extensions/Promotion.php:56 +#: ../includes/Extensions/Promotion.php:58 msgid "Create stunning Parallax effects on your site and blow everyone away." msgstr "" -#: ../includes/Extensions/Promotion.php:69 +#: ../includes/Extensions/Promotion.php:71 msgid " Particles" msgstr "" -#: ../includes/Extensions/Promotion.php:79 +#: ../includes/Extensions/Promotion.php:81 msgid "Meet EA Particles" msgstr "" -#: ../includes/Extensions/Promotion.php:80 +#: ../includes/Extensions/Promotion.php:82 msgid "Create stunning Particles effects on your site and blow everyone away." msgstr "" -#: ../includes/Extensions/Promotion.php:93 +#: ../includes/Extensions/Promotion.php:95 msgid " Content Protection" msgstr "" -#: ../includes/Extensions/Promotion.php:103 +#: ../includes/Extensions/Promotion.php:105 msgid "Meet EA Content Protection" msgstr "" -#: ../includes/Extensions/Promotion.php:104 +#: ../includes/Extensions/Promotion.php:106 msgid "Put a restriction on any of your content and protect your privacy." msgstr "" -#: ../includes/Extensions/Promotion.php:117 +#: ../includes/Extensions/Promotion.php:119 msgid " Advanced Tooltip" msgstr "" -#: ../includes/Extensions/Promotion.php:127 +#: ../includes/Extensions/Promotion.php:129 msgid "Meet EA Advanced Tooltip" msgstr "" -#: ../includes/Extensions/Promotion.php:128 +#: ../includes/Extensions/Promotion.php:130 msgid "Highlight any Elementor widgets with a key message when they are hovered." msgstr "" -#: ../includes/Extensions/Promotion.php:140 +#: ../includes/Extensions/Promotion.php:142 msgid " Conditional Display" msgstr "" -#: ../includes/Extensions/Promotion.php:150 +#: ../includes/Extensions/Promotion.php:152 msgid "Meet EA Conditional Display" msgstr "" -#: ../includes/Extensions/Promotion.php:151 +#: ../includes/Extensions/Promotion.php:153 msgid "Control any section, column, container or widget’s visibility with your own logic." msgstr "" +#: ../includes/Extensions/Promotion.php:165 +msgid " Interactive Animations" +msgstr "" + +#: ../includes/Extensions/Promotion.php:175 +msgid "Meet EA Interactive Animations" +msgstr "" + +#: ../includes/Extensions/Promotion.php:176 +msgid "Witness magic in Elementor - animate any section, column, container, or widget" +msgstr "" + #: ../includes/Extensions/Reading_Progress.php:30 msgid " Reading Progress Bar" msgstr "" @@ -9338,6 +9357,10 @@ msgstr "" msgid "Z Index" msgstr "" +#: ../includes/Extensions/Scroll_to_Top.php:361 +msgid "If a page is not supported Font Awesome Icon please use SVG icon instead of it." +msgstr "" + #: ../includes/Extensions/Table_of_Content.php:34 msgid " Table of Contents" msgstr "" @@ -9354,15 +9377,11 @@ msgstr "" msgid "All %s" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:127, ../includes/templates/admin/extensions.php:44 +#: ../includes/Extensions/Table_of_Content.php:127, ../includes/Traits/Admin.php:575 msgid "Table of Contents" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:141 -msgid "HTML Tag" -msgstr "" - -#: ../includes/Extensions/Table_of_Content.php:180, ../includes/Traits/Controls.php:287 +#: ../includes/Extensions/Table_of_Content.php:180, ../includes/Traits/Controls.php:293 msgid "Include" msgstr "" @@ -9378,7 +9397,7 @@ msgstr "" msgid "Which content are searched for heading tag, Provide unique selector to replace default selector" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:237, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:299 +#: ../includes/Extensions/Table_of_Content.php:237, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:305 msgid "Exclude" msgstr "" @@ -9446,51 +9465,63 @@ msgstr "" msgid "EA TOC" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:573, ../includes/Traits/Controls.php:919 +#: ../includes/Extensions/Table_of_Content.php:568 +msgid "Position For Mobile Device" +msgstr "" + +#: ../includes/Extensions/Table_of_Content.php:597 +msgid "Top Offset" +msgstr "" + +#: ../includes/Extensions/Table_of_Content.php:625 +msgid "Bottom Offset" +msgstr "" + +#: ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Controls.php:1012 msgid "Bullet" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:695 +#: ../includes/Extensions/Table_of_Content.php:780 msgid "EA TOC Header" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:755 +#: ../includes/Extensions/Table_of_Content.php:840 msgid "Collapse" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:778 +#: ../includes/Extensions/Table_of_Content.php:863 msgid "Text Orientation" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:783 +#: ../includes/Extensions/Table_of_Content.php:868 msgid "Bottom to Top" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:791 +#: ../includes/Extensions/Table_of_Content.php:876 msgid "Close Button" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:907 +#: ../includes/Extensions/Table_of_Content.php:992 msgid "EA TOC Body" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:952 +#: ../includes/Extensions/Table_of_Content.php:1037 msgid "Indicator Style" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:966 +#: ../includes/Extensions/Table_of_Content.php:1051 msgid "Indicator Size" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:992 +#: ../includes/Extensions/Table_of_Content.php:1077 msgid "Indicator Position" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:1111 +#: ../includes/Extensions/Table_of_Content.php:1196 msgid "Top Level Space" msgstr "" -#: ../includes/Extensions/Table_of_Content.php:1137 +#: ../includes/Extensions/Table_of_Content.php:1222 msgid "Sub Item Space" msgstr "" @@ -9503,571 +9534,1051 @@ msgid "Enable Wrapper Link" msgstr "" #: ../includes/Traits/Admin.php:31 -msgid "Essential Addons a" +msgid "Essential Addons %s" msgstr "" -#: ../includes/Traits/Admin.php:32 -msgid "Essential Addons %s" +#: ../includes/Traits/Admin.php:72, ../includes/Traits/Admin.php:529 +msgid "Extensions" msgstr "" -#: ../includes/Traits/Admin.php:68, ../includes/templates/admin/popup.php:104 -msgid "Login | Register Form Settings" +#: ../includes/Traits/Admin.php:76 +msgid "Tools" msgstr "" -#: ../includes/Traits/Admin.php:69, ../includes/templates/admin/popup.php:68, ../includes/templates/admin/popup.php:288 -msgid "To configure the API Keys, check out this doc" +#: ../includes/Traits/Admin.php:84 +msgid "Go Premium" msgstr "" -#: ../includes/Traits/Admin.php:69 -msgid "To retrieve your API Keys, click here" +#: ../includes/Traits/Admin.php:89 +msgid "Enable All" msgstr "" -#: ../includes/Traits/Admin.php:70, ../includes/templates/admin/popup.php:62, ../includes/templates/admin/popup.php:282 -msgid "Save" +#: ../includes/Traits/Admin.php:90 +msgid "Disable All" msgstr "" -#: ../includes/Traits/Admin.php:71, ../includes/templates/admin/popup.php:64, ../includes/templates/admin/popup.php:284 -msgid "Cancel" +#: ../includes/Traits/Admin.php:91 +msgid "Enable All Elements" msgstr "" -#: ../includes/Traits/Admin.php:72 -msgid "Login | Register Form Settings Saved" +#: ../includes/Traits/Admin.php:92 +msgid "Disable All Elements" msgstr "" -#: ../includes/Traits/Admin.php:73 -msgid "Reload the page to see updated data" +#: ../includes/Traits/Admin.php:93 +msgid "Save Settings" msgstr "" -#: ../includes/Traits/Admin.php:74 -msgid "Oops..." +#: ../includes/Traits/Admin.php:94 +msgid "Search Results for :" msgstr "" -#: ../includes/Traits/Admin.php:76, ../includes/templates/admin/popup.php:111 -msgid "reCAPTCHA v2" +#: ../includes/Traits/Admin.php:95 +msgid "All Widgets" msgstr "" -#: ../includes/Traits/Admin.php:77 -msgid "Site Key" +#: ../includes/Traits/Admin.php:96 +msgid "Your changes have been saved successfully." msgstr "" -#: ../includes/Traits/Admin.php:78 -msgid "Site Secret" +#: ../includes/Traits/Admin.php:97 +msgid "Oops! Something went wrong. Please try again." msgstr "" -#: ../includes/Traits/Admin.php:80 -msgid "reCAPTCHA Language Code" +#: ../includes/Traits/Admin.php:98 +msgid "Sorry, no results found" msgstr "" -#: ../includes/Traits/Admin.php:81, ../includes/templates/admin/popup.php:188 -msgid "Google Login" +#: ../includes/Traits/Admin.php:99 +msgid "Enabling..." msgstr "" -#: ../includes/Traits/Admin.php:82 -msgid "Google Client ID" +#: ../includes/Traits/Admin.php:100 +msgid "Total Elements" msgstr "" -#: ../includes/Traits/Admin.php:83, ../includes/templates/admin/popup.php:205 -msgid "Facebook Login" +#: ../includes/Traits/Admin.php:102 +msgid "Inactive" msgstr "" -#: ../includes/Traits/Admin.php:84 -msgid "Facebook APP ID" +#: ../includes/Traits/Admin.php:105 +msgid "What's New In Essential Addons 6.0?" msgstr "" -#: ../includes/Traits/Admin.php:85 -msgid "Facebook APP Secret" +#: ../includes/Traits/Admin.php:109 +msgid "Dynamic Tags, Hover Interactions, Interactive Animation" msgstr "" -#: ../includes/Traits/Admin.php:115 -msgid "Extensions" +#: ../includes/Traits/Admin.php:113 +msgid "Dynamic Widgets, Conditional Display" msgstr "" -#: ../includes/Traits/Admin.php:116 -msgid "Tools" +#: ../includes/Traits/Admin.php:117 +msgid "Elevate your Workflow with the New Essential Addons Dashboard!" msgstr "" -#: ../includes/Traits/Admin.php:119 -msgid "Go Premium" +#: ../includes/Traits/Admin.php:121 +msgid "View Changelog" msgstr "" -#: ../includes/Traits/Admin.php:167 -msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?" +#: ../includes/Traits/Admin.php:126 +msgid "Unlock 5000+ Ready Templates" msgstr "" -#: ../includes/Traits/Admin.php:175 -msgid "Ok, you deserve it!" +#: ../includes/Traits/Admin.php:128 +msgid "Stunning Templates For All" msgstr "" -#: ../includes/Traits/Admin.php:179 -msgid "I already did" +#: ../includes/Traits/Admin.php:129 +msgid "One-Click Full Site Import" msgstr "" -#: ../includes/Traits/Admin.php:186 -msgid "Maybe Later" +#: ../includes/Traits/Admin.php:130 +msgid "Collaborate in Team WorkSpace" msgstr "" -#: ../includes/Traits/Admin.php:194 -msgid "I need help" +#: ../includes/Traits/Admin.php:131 +msgid "Unlimited Cloud Storage" msgstr "" -#: ../includes/Traits/Admin.php:198 -msgid "Never show again" +#: ../includes/Traits/Admin.php:134 +msgid "Enable Templates" msgstr "" -#: ../includes/Traits/Admin.php:294, ../includes/Traits/Admin.php:429 -msgid "Install Essential Blocks" +#: ../includes/Traits/Admin.php:138 +msgid "Design Your Website With Most Popular Elementor Addons" msgstr "" -#: ../includes/Traits/Admin.php:303, ../includes/Traits/Admin.php:482 -msgid "Using Gutenberg? Check out Essential Blocks!" +#: ../includes/Traits/Admin.php:139 +msgid "Learn to build stunning websites with 100+ elements & extensions of Essential Addons through our easy tutorials and enhance your Elementor site-building experience." msgstr "" -#: ../includes/Traits/Admin.php:304, ../includes/Traits/Admin.php:483 -msgid "Are you using the Gutenberg Editor for your website? Then try out Essential Blocks for Gutenberg, and explore 40+ unique blocks to make your web design experience in WordPress even more powerful. 🚀" +#: ../includes/Traits/Admin.php:142 +msgid "Watch Tutorials" msgstr "" -#: ../includes/Traits/Admin.php:305, ../includes/Traits/Admin.php:484 -msgid "For more information, check out the demo here." +#: ../includes/Traits/Admin.php:149 +msgid "Need Any Help?" msgstr "" -#: ../includes/Traits/Admin.php:603, ../includes/Traits/Admin.php:614 -msgid "You are not allowed to do this action" +#: ../includes/Traits/Admin.php:150 +msgid "If you encounter issues or need assistance, we're here to help or report specific problems on GitHub issues page." msgstr "" -#: ../includes/Traits/Admin.php:673 -msgid "Join us in celebrating 2 MILLION+ happy users and grab up to an exclusive 30% OFF on the most used Elementor addons!" +#: ../includes/Traits/Admin.php:152 +msgid "Create a Ticket" msgstr "" -#: ../includes/Traits/Admin.php:675 -msgid "Upgrade To PRO Now" +#: ../includes/Traits/Admin.php:159 +msgid "Join Our Community" msgstr "" -#: ../includes/Traits/Admin.php:677 -msgid "Give Me LIFETIME access" +#: ../includes/Traits/Admin.php:160 +msgid "Join the Facebook community to discuss with fellow developers, connect with others, and stay updated." msgstr "" -#: ../includes/Traits/Admin.php:679 -msgid "I don’t want to save money" +#: ../includes/Traits/Admin.php:162 +msgid "Join with us" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:95, ../includes/Traits/Ajax_Handler.php:610, ../includes/Traits/Login_Registration.php:96, ../includes/Traits/Login_Registration.php:248, ../includes/Traits/Login_Registration.php:776, ../includes/Traits/Login_Registration.php:951 -msgid "Insecure form submitted without security token" +#: ../includes/Traits/Admin.php:169 +msgid "View Knowledge Base" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:104, ../includes/Traits/Ajax_Handler.php:619, ../includes/Traits/Login_Registration.php:108, ../includes/Traits/Login_Registration.php:258, ../includes/Traits/Login_Registration.php:788, ../includes/Traits/Login_Registration.php:963, ../includes/Traits/Woo_Product_Comparable.php:2171 -msgid "Security token did not match" +#: ../includes/Traits/Admin.php:170 +msgid "Read comprehensive documentation & learn to build a website easily with Essential Addons." msgstr "" -#: ../includes/Traits/Ajax_Handler.php:115, ../includes/Traits/Ajax_Handler.php:306, ../includes/Traits/Ajax_Handler.php:387, ../includes/Traits/Ajax_Handler.php:630, ../includes/Traits/Login_Registration.php:72, ../includes/Traits/Login_Registration.php:273, ../includes/Traits/Login_Registration.php:752, ../includes/Traits/Login_Registration.php:926, ../includes/Traits/Woo_Product_Comparable.php:2129 -msgid "Page ID is missing" +#: ../includes/Traits/Admin.php:172 +msgid "Read Documentation" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:126, ../includes/Traits/Ajax_Handler.php:313, ../includes/Traits/Ajax_Handler.php:394, ../includes/Traits/Ajax_Handler.php:641, ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:278, ../includes/Traits/Login_Registration.php:759, ../includes/Traits/Login_Registration.php:933, ../includes/Traits/Woo_Product_Comparable.php:2134 -msgid "Widget ID is missing" +#: ../includes/Traits/Admin.php:179 +msgid "Show Your Love" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:137, ../includes/Traits/Ajax_Handler.php:319, ../includes/Traits/Ajax_Handler.php:401, ../includes/Traits/Ajax_Handler.php:651 -msgid "Widget settings are not found. Did you save the widget before using load more??" +#: ../includes/Traits/Admin.php:180 +msgid "We love having you in our Essential Addons family every day. Please take 2 minutes to review us and show some love." msgstr "" -#: ../includes/Traits/Ajax_Handler.php:955 -msgid "Login | Register Settings updated" +#: ../includes/Traits/Admin.php:182 +msgid "Leave a Review" msgstr "" -#: ../includes/Traits/Controls.php:49, ../includes/Traits/Controls.php:39 -msgid "Dynamic Content Settings" +#: ../includes/Traits/Admin.php:189 +msgid "Continuous Features & Security Updates" msgstr "" -#: ../includes/Traits/Controls.php:89 -msgid "Search & Select" +#: ../includes/Traits/Admin.php:190 +msgid "Keep your website secure and up-to-date with regular security updates. Enjoy the convenience of continuous updates with exciting new features." msgstr "" -#: ../includes/Traits/Controls.php:104 -msgid "Author" +#: ../includes/Traits/Admin.php:195 +msgid "Priority Support" msgstr "" -#: ../includes/Traits/Controls.php:143 -msgid "Show Child Category Items" +#: ../includes/Traits/Admin.php:196 +msgid "Are you encountering issues? Do not worry! Our expert support team is available 24/7 through live chat or support tickets. Our team will reach out to you within 12-24 hours." msgstr "" -#: ../includes/Traits/Controls.php:200 -msgid "Fetch All Posts" +#: ../includes/Traits/Admin.php:202 +msgid "Want Advanced Features?" msgstr "" -#: ../includes/Traits/Controls.php:205 -msgid "By Enabling this option all posts will be fetch for \"All\" tab except exclude." +#: ../includes/Traits/Admin.php:203 +msgid "Get more powerful widgets & extensions to elevate your Elementor website" msgstr "" -#: ../includes/Traits/Controls.php:260 -msgid "Knowledge Bases" +#: ../includes/Traits/Admin.php:205, ../includes/Traits/Admin.php:373 +msgid "3300+" msgstr "" -#: ../includes/Traits/Controls.php:267 -msgid "All Knowledge Base" +#: ../includes/Traits/Admin.php:206, ../includes/Traits/Admin.php:374 +msgid "Five Star Reviews" msgstr "" -#: ../includes/Traits/Controls.php:278 -msgid "Category Grid" +#: ../includes/Traits/Admin.php:209, ../includes/Traits/Admin.php:1595 +msgid "Upgrade to PRO" msgstr "" -#: ../includes/Traits/Controls.php:321 -msgid "Box Per Page" +#: ../includes/Traits/Admin.php:215, ../includes/Traits/Admin.php:1805, ../includes/Traits/Admin.php:1940, ../includes/Traits/Helper.php:615 +msgid "Activate" msgstr "" -#: ../includes/Traits/Controls.php:312 -msgid "Grid Per Page" +#: ../includes/Traits/Admin.php:216 +msgid "Deactivate" msgstr "" -#: ../includes/Traits/Controls.php:344 -msgid "Slug" +#: ../includes/Traits/Admin.php:287, ../includes/Traits/Admin.php:413, ../includes/Traits/Admin.php:1003, ../includes/Traits/Elements.php:275 +msgid "Protected Content" msgstr "" -#: ../includes/Traits/Controls.php:345 -msgid "Term Group" +#: ../includes/Traits/Admin.php:288 +msgid "Restrict important data by setting up user permission or giving passwords to a particular area." msgstr "" -#: ../includes/Traits/Controls.php:346 -msgid "Term ID" +#: ../includes/Traits/Admin.php:290, ../includes/Traits/Admin.php:299, ../includes/Traits/Admin.php:308, ../includes/Traits/Admin.php:317, ../includes/Traits/Admin.php:326, ../includes/Traits/Admin.php:335, ../includes/Traits/Admin.php:344, ../includes/Traits/Admin.php:353, ../includes/Traits/Admin.php:362 +msgid "View Demo" msgstr "" -#: ../includes/Traits/Controls.php:347, ../includes/Traits/Login_Registration.php:1614 -msgid "ID" +#: ../includes/Traits/Admin.php:296, ../includes/Traits/Admin.php:398, ../includes/Traits/Admin.php:894, ../includes/Traits/Elements.php:263 +msgid "Smart Post List" msgstr "" -#: ../includes/Traits/Controls.php:349 -msgid "Parent" +#: ../includes/Traits/Admin.php:297 +msgid "Display your blog posts in an amazing grid layout with advanced search & filter options." msgstr "" -#: ../includes/Traits/Controls.php:350 -msgid "BetterDocs Order" +#: ../includes/Traits/Admin.php:305, ../includes/Traits/Admin.php:433, ../includes/Traits/Admin.php:1339, ../includes/Traits/Elements.php:317 +msgid "Woo Product Slider" msgstr "" -#: ../includes/Traits/Controls.php:374 -msgid "Grid List Posts" +#: ../includes/Traits/Admin.php:306 +msgid "Showcase your WooCommerce products beautifully with amazing ready slider layouts." msgstr "" -#: ../includes/Traits/Controls.php:383 -msgid "Post Per Page" +#: ../includes/Traits/Admin.php:314, ../includes/Traits/Admin.php:443, ../includes/Traits/Admin.php:885, ../includes/Traits/Elements.php:257 +msgid "Post Carousel" msgstr "" -#: ../includes/Traits/Controls.php:415 -msgid "Enable Nested Subcategory" +#: ../includes/Traits/Admin.php:315 +msgid "Amaze site visitors by displaying your posts creatively. Add transition effects, overlays, & more to showcase your posts beautifully on your site." msgstr "" -#: ../includes/Traits/Controls.php:450 -msgid "Tiled" +#: ../includes/Traits/Admin.php:323, ../includes/Traits/Admin.php:428, ../includes/Traits/Admin.php:1250, ../includes/Traits/Elements.php:197 +msgid "Instagram Feed" msgstr "" -#: ../includes/Traits/Controls.php:477 -msgid "Note: Use 5 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +#: ../includes/Traits/Admin.php:324 +msgid "Allows you to display a beautiful & responsive feed of your latest Instagram posts with customizable options and stunning layouts." msgstr "" -#: ../includes/Traits/Controls.php:489 -msgid "Note: Use 3 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +#: ../includes/Traits/Admin.php:333 +msgid "Add custom JavaScript to your WordPress site effortlessly with advanced customization and functionality without modifying core files." msgstr "" -#: ../includes/Traits/Controls.php:500 -msgid "Note: Use 4 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +#: ../includes/Traits/Admin.php:341, ../includes/Traits/Admin.php:423 +msgid "MailChimp" msgstr "" -#: ../includes/Traits/Controls.php:511 -msgid "Note: Use 2 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +#: ../includes/Traits/Admin.php:342 +msgid "Helps you easily connect your site with MailChimp. You can create and manage subscription forms directly on your website." msgstr "" -#: ../includes/Traits/Controls.php:527 -msgid "Column 2" +#: ../includes/Traits/Admin.php:350, ../includes/Traits/Admin.php:418, ../includes/Traits/Admin.php:866 +msgid "Advanced Google Map" msgstr "" -#: ../includes/Traits/Controls.php:528 -msgid "Column 3" +#: ../includes/Traits/Admin.php:351 +msgid "Integrates Google Maps to display locations, routes, and markers easily on your site as your preferences." msgstr "" -#: ../includes/Traits/Controls.php:529 -msgid "Column 4" +#: ../includes/Traits/Admin.php:359, ../includes/Traits/Admin.php:403, ../includes/Traits/Admin.php:911, ../includes/Traits/Elements.php:161 +msgid "Dynamic Gallery" msgstr "" -#: ../includes/Traits/Controls.php:531 -msgid "Note: Column layout will be applied from second row." +#: ../includes/Traits/Admin.php:360 +msgid "Showcase posts, Woo Products and more images in a captivating and interactive gallery format to highlight visual content dynamically." msgstr "" -#: ../includes/Traits/Controls.php:553 -msgid "Item Style" +#: ../includes/Traits/Admin.php:370 +msgid "2+ Million Active Users" msgstr "" -#: ../includes/Traits/Controls.php:558 -msgid "Cards" +#: ../includes/Traits/Admin.php:371 +msgid "Enhance Your Elementor Experience By
Unlocking 40+ Advanced PRO Elements" msgstr "" -#: ../includes/Traits/Controls.php:605 -msgid "Post Block Style Preset" +#: ../includes/Traits/Admin.php:377 +msgid "Upgrade To PRO" msgstr "" -#: ../includes/Traits/Controls.php:618, ../includes/Traits/Controls.php:1034 -msgid "Fallback Image" +#: ../includes/Traits/Admin.php:383 +msgid "Get Access to Advanced Features!" msgstr "" -#: ../includes/Traits/Controls.php:686, ../includes/Traits/Controls.php:703 -msgid "Date Position" +#: ../includes/Traits/Admin.php:384 +msgid "Discover the premium features of the most popular elements library for Elementor. Experience the web building experience with:" msgstr "" -#: ../includes/Traits/Controls.php:751, ../includes/Traits/Controls.php:1113 -msgid "Show Image" +#: ../includes/Traits/Admin.php:386, ../includes/Traits/Admin.php:1590 +msgid "Customization Flexibility in Design with Premium Creative Elements." msgstr "" -#: ../includes/Traits/Controls.php:776, ../includes/Traits/Controls.php:840, ../includes/Traits/Controls.php:992 -msgid "Enable Image Ratio" +#: ../includes/Traits/Admin.php:387, ../includes/Traits/Admin.php:1591 +msgid "Advanced WooCommerce Widgets like Checkout, Cross-Sells & more." msgstr "" -#: ../includes/Traits/Controls.php:790, ../includes/Traits/Controls.php:854, ../includes/Traits/Controls.php:1006 -msgid "Image Ratio" +#: ../includes/Traits/Admin.php:388, ../includes/Traits/Admin.php:1592 +msgid "Cutting-edge Extensions Like Custom JS, Content Protection & more." msgstr "" -#: ../includes/Traits/Controls.php:907 -msgid "Show Circle Image / Icon" +#: ../includes/Traits/Admin.php:392 +msgid "More Premium Features" msgstr "" -#: ../includes/Traits/Controls.php:933 -msgid "Icon Image" +#: ../includes/Traits/Admin.php:438, ../includes/Traits/Admin.php:533 +msgid "Parallax" msgstr "" -#: ../includes/Traits/Controls.php:949 -msgid "Icon Image Size" +#: ../includes/Traits/Admin.php:448, ../includes/Traits/Admin.php:1273, ../includes/Traits/Elements.php:215 +msgid "LearnDash Course List" msgstr "" -#: ../includes/Traits/Controls.php:1158 -msgid "Show Excerpt" +#: ../includes/Traits/Admin.php:453 +msgid "Particle Effect" msgstr "" -#: ../includes/Traits/Controls.php:1283 -msgid "Angle Double" +#: ../includes/Traits/Admin.php:458, ../includes/Traits/Admin.php:1030, ../includes/Traits/Elements.php:227 +msgid "Logo Carousel" msgstr "" -#: ../includes/Traits/Controls.php:1322 -msgid "Show Read More Button" +#: ../includes/Traits/Admin.php:463, ../includes/Traits/Admin.php:1055, ../includes/Traits/Elements.php:185 +msgid "Image Hotspots" msgstr "" -#: ../includes/Traits/Controls.php:1363 -msgid "Show Post Terms" +#: ../includes/Traits/Admin.php:468, ../includes/Traits/Admin.php:618 +msgid "Conditional Display" msgstr "" -#: ../includes/Traits/Controls.php:1430 -msgid "Select Terms Style" +#: ../includes/Traits/Admin.php:473, ../includes/Traits/Admin.php:815, ../includes/Traits/Elements.php:323 +msgid "Advanced Search" msgstr "" -#: ../includes/Traits/Controls.php:1433 -msgid "Style One" +#: ../includes/Traits/Admin.php:478, ../includes/Traits/Admin.php:784, ../includes/Traits/Elements.php:287 +msgid "Team Member Carousel" msgstr "" -#: ../includes/Traits/Controls.php:1434 -msgid "Style Two" +#: ../includes/Traits/Admin.php:488, ../includes/Traits/Admin.php:1402, ../includes/Traits/Elements.php:341 +msgid "Woo Account Dashboard" msgstr "" -#: ../includes/Traits/Controls.php:1481 -msgid "Terms Separator" +#: ../includes/Traits/Admin.php:493 +msgid "Lightbox And Modal" msgstr "" -#: ../includes/Traits/Controls.php:1496 -msgid "Show Terms on Image Hover" +#: ../includes/Traits/Admin.php:501, ../includes/Traits/Admin.php:505 +msgid "Regenerate Assets" msgstr "" -#: ../includes/Traits/Controls.php:1516 -msgid "Show Meta" +#: ../includes/Traits/Admin.php:502 +msgid "Essential Addons styles & scripts are saved in Uploads folder. This option will clear all those generated files." msgstr "" -#: ../includes/Traits/Controls.php:1532 -msgid "Entry Header" +#: ../includes/Traits/Admin.php:509 +msgid "Assets Embed Method" msgstr "" -#: ../includes/Traits/Controls.php:1533 -msgid "Entry Footer" +#: ../includes/Traits/Admin.php:510 +msgid "Configure the Essential Addons assets embed method. Keep it as default (recommended)." msgstr "" -#: ../includes/Traits/Controls.php:1561, ../includes/Traits/Controls.php:1594, ../includes/Traits/Controls.php:1610, ../includes/Traits/Controls.php:1645 -msgid "Show Author Name" +#: ../includes/Traits/Admin.php:513 +msgid "CSS Print Method" msgstr "" -#: ../includes/Traits/Controls.php:2220 -msgid "Absolute" +#: ../includes/Traits/Admin.php:518 +msgid "JS Print Method" msgstr "" -#: ../includes/Traits/Controls.php:2234 -msgid "Horizontal Orientation" +#: ../includes/Traits/Admin.php:519 +msgid "CSS Print Method is handled by Elementor Settings itself. Use External CSS Files for better performance (recommended)." msgstr "" -#: ../includes/Traits/Controls.php:2337 -msgid "Vertical Orientation" +#: ../includes/Traits/Admin.php:521 +msgid "External file" msgstr "" -#: ../includes/Traits/Controls.php:2456 -msgid "Ninja Tables is not installed/activated on your site. Please install and activate Ninja Tables first." +#: ../includes/Traits/Admin.php:522 +msgid "Internal Embedding" msgstr "" -#: ../includes/Traits/Controls.php:2443 -msgid "Table ID" +#: ../includes/Traits/Admin.php:542 +msgid "Particles" msgstr "" -#: ../includes/Traits/Controls.php:2477 -msgid "EventON (Pro) " +#: ../includes/Traits/Admin.php:550 +msgid "Advanced Tooltip" msgstr "" -#: ../includes/Traits/Controls.php:2475 -msgid "EventON" +#: ../includes/Traits/Admin.php:558 +msgid "Content Protection" msgstr "" -#: ../includes/Traits/Controls.php:2494 -msgid "Style the message when no posts are found." +#: ../includes/Traits/Admin.php:567 +msgid "Reading Progress Bar" msgstr "" -#: ../includes/Traits/Core.php:48 -msgid "Go Pro" +#: ../includes/Traits/Admin.php:584 +msgid "Duplicator" msgstr "" -#: ../includes/Traits/Core.php:63 -msgid "Docs & FAQs" +#: ../includes/Traits/Admin.php:602 +msgid "Cross-Domain Copy Paste" msgstr "" -#: ../includes/Traits/Core.php:66 -msgid "Video Tutorials" +#: ../includes/Traits/Admin.php:610 +msgid "Scroll to Top" msgstr "" -#: ../includes/Traits/Core.php:110 -msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be installed and activated. Please install Elementor to continue." +#: ../includes/Traits/Admin.php:627 +msgid "Wrapper Link" msgstr "" -#: ../includes/Traits/Core.php:111 -msgid "Install Elementor" +#: ../includes/Traits/Admin.php:635 +msgid "Dynamic Tags" msgstr "" -#: ../includes/Traits/Core.php:104 -msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be active. Please activate Elementor to continue." +#: ../includes/Traits/Admin.php:644 +msgid "Interactive Animations" msgstr "" -#: ../includes/Traits/Core.php:106 -msgid "Activate Elementor" +#: ../includes/Traits/Admin.php:653 +msgid "Hover Interactions" msgstr "" -#: ../includes/Traits/Core.php:132 -msgid "Want to help make Essential Addons for Elementor even more awesome? You can get a 10% discount coupon for Pro upgrade if you allow." +#: ../includes/Traits/Admin.php:742, ../includes/Traits/Elements.php:239 +msgid "Offcanvas" msgstr "" -#: ../includes/Traits/Core.php:133 -msgid "" -"We collect non-sensitive diagnostic data and plugin usage information.\n" -" Your site URL, WordPress & PHP version, plugins & themes and email address to send you the\n" -" discount coupon. This data lets us make sure this plugin always stays compatible with the most\n" -" popular plugins and themes. No spam, I promise." +#: ../includes/Traits/Admin.php:751, ../includes/Traits/Elements.php:137 +msgid "Advanced Menu" msgstr "" -#: ../includes/Traits/Elements.php:136, ../includes/templates/admin/elements.php:80 -msgid "Advanced Menu" +#: ../includes/Traits/Admin.php:767, ../includes/Traits/Elements.php:293 +msgid "Testimonial Slider" +msgstr "" + +#: ../includes/Traits/Admin.php:776, ../includes/Traits/Elements.php:281 +msgid "Static Product" msgstr "" -#: ../includes/Traits/Elements.php:142, ../includes/templates/admin/elements.php:212 +#: ../includes/Traits/Admin.php:876, ../includes/Traits/Elements.php:251 +msgid "Post Block" +msgstr "" + +#: ../includes/Traits/Admin.php:903, ../includes/Traits/Elements.php:143 msgid "Content Timeline" msgstr "" -#: ../includes/Traits/Elements.php:154, ../includes/templates/admin/elements.php:355 -msgid "Divider" +#: ../includes/Traits/Admin.php:978, ../includes/Traits/Elements.php:209 +msgid "Interactive Promo" +msgstr "" + +#: ../includes/Traits/Admin.php:994, ../includes/Traits/Elements.php:221 +msgid "Lightbox & Modal" msgstr "" -#: ../includes/Traits/Elements.php:166, ../includes/templates/admin/elements.php:318 +#: ../includes/Traits/Admin.php:1012, ../includes/Traits/Elements.php:179 +msgid "Image Comparison" +msgstr "" + +#: ../includes/Traits/Admin.php:1021, ../includes/Traits/Elements.php:167 msgid "Flip Carousel" msgstr "" -#: ../includes/Traits/Elements.php:172 -msgid "Google Map" +#: ../includes/Traits/Admin.php:1039 +msgid "Interactive Cards" msgstr "" -#: ../includes/Traits/Elements.php:178, ../includes/templates/admin/elements.php:311 -msgid "Image Comparison" +#: ../includes/Traits/Admin.php:1047, ../includes/Traits/Elements.php:245 +msgid "One Page Navigation" +msgstr "" + +#: ../includes/Traits/Admin.php:1064, ../includes/Traits/Elements.php:155 +msgid "Divider" msgstr "" -#: ../includes/Traits/Elements.php:190, ../includes/templates/admin/elements.php:362 +#: ../includes/Traits/Admin.php:1072, ../includes/Traits/Elements.php:191 msgid "Image Scroller" msgstr "" -#: ../includes/Traits/Elements.php:202 -msgid "Interactive Card" +#: ../includes/Traits/Admin.php:1104 +msgid "Marketing Elements" msgstr "" -#: ../includes/Traits/Elements.php:208, ../includes/templates/admin/elements.php:281 -msgid "Interactive Promo" +#: ../includes/Traits/Admin.php:1124, ../includes/Traits/Elements.php:269 +msgid "Price Menu" msgstr "" -#: ../includes/Traits/Elements.php:214, ../includes/templates/admin/elements.php:538, ../includes/templates/admin/go-pro.php:119 -msgid "LearnDash Course List" +#: ../includes/Traits/Admin.php:1209, ../includes/Traits/Elements.php:233 +msgid "Mailchimp" msgstr "" -#: ../includes/Traits/Elements.php:220, ../includes/templates/admin/elements.php:295 -msgid "Lightbox & Modal" +#: ../includes/Traits/Admin.php:1229 +msgid "Social Feed Elements" msgstr "" -#: ../includes/Traits/Elements.php:226, ../includes/templates/admin/elements.php:325 -msgid "Logo Carousel" +#: ../includes/Traits/Admin.php:1242 +msgid "Twitter Feed Carousel" msgstr "" -#: ../includes/Traits/Elements.php:238, ../includes/templates/admin/elements.php:72 -msgid "Offcanvas" +#: ../includes/Traits/Admin.php:1268 +msgid "LearnDash Elements" msgstr "" -#: ../includes/Traits/Elements.php:244, ../includes/templates/admin/elements.php:340 -msgid "One Page Navigation" +#: ../includes/Traits/Admin.php:1331, ../includes/Traits/Elements.php:311 +msgid "Woo Product Collections" msgstr "" -#: ../includes/Traits/Elements.php:250, ../includes/templates/admin/elements.php:190 -msgid "Post Block" +#: ../includes/Traits/Admin.php:1371, ../includes/Traits/Elements.php:329 +msgid "Woo Thank You" msgstr "" -#: ../includes/Traits/Elements.php:256, ../includes/templates/admin/elements.php:197 -msgid "Post Carousel" +#: ../includes/Traits/Admin.php:1413 +msgid "Select Post Types" msgstr "" -#: ../includes/Traits/Elements.php:262, ../includes/templates/admin/elements.php:204, ../includes/templates/admin/go-pro.php:39 -msgid "Smart Post List" +#: ../includes/Traits/Admin.php:1419 +msgid "Google Map API Key" msgstr "" -#: ../includes/Traits/Elements.php:268 -msgid "Price Menu" +#: ../includes/Traits/Admin.php:1421, ../includes/Traits/Admin.php:1429, ../includes/Traits/Admin.php:1441 +msgid "Set API Key" msgstr "" -#: ../includes/Traits/Elements.php:274, ../includes/templates/admin/elements.php:303, ../includes/templates/admin/go-pro.php:23 -msgid "Protected Content" +#: ../includes/Traits/Admin.php:1427 +msgid "Google Place API Key" msgstr "" -#: ../includes/Traits/Elements.php:280, ../includes/templates/admin/elements.php:101 -msgid "Static Product" +#: ../includes/Traits/Admin.php:1434, ../includes/Traits/Admin.php:1446, ../includes/Traits/Admin.php:1577 +msgid "To configure the API Keys, check out this doc" msgstr "" -#: ../includes/Traits/Elements.php:286, ../includes/templates/admin/elements.php:108 -msgid "Team Member Carousel" +#: ../includes/Traits/Admin.php:1439 +msgid "MailChimp API Key" +msgstr "" + +#: ../includes/Traits/Admin.php:1453 +msgid "reCAPTCHA v2" +msgstr "" + +#: ../includes/Traits/Admin.php:1459, ../includes/Traits/Admin.php:1483 +msgid "Site Key:" +msgstr "" + +#: ../includes/Traits/Admin.php:1460, ../includes/Traits/Admin.php:1484 +msgid "Site Key" +msgstr "" + +#: ../includes/Traits/Admin.php:1465, ../includes/Traits/Admin.php:1489 +msgid "Site Secret:" +msgstr "" + +#: ../includes/Traits/Admin.php:1466, ../includes/Traits/Admin.php:1490 +msgid "Site Secret" +msgstr "" + +#: ../includes/Traits/Admin.php:1471, ../includes/Traits/Admin.php:1495 +msgid "Language:" +msgstr "" + +#: ../includes/Traits/Admin.php:1472, ../includes/Traits/Admin.php:1496 +msgid "reCAPTCHA Language Code" +msgstr "" + +#: ../includes/Traits/Admin.php:1477 +msgid "reCAPTCHA v3" +msgstr "" + +#: ../includes/Traits/Admin.php:1501 +msgid "Hide Badge" +msgstr "" + +#: ../includes/Traits/Admin.php:1503 +msgid "We are allowed to hide the badge as long as we include the reCAPTCHA branding visibly in the user flow." +msgstr "" + +#: ../includes/Traits/Admin.php:1508 +msgid "Google Login" +msgstr "" + +#: ../includes/Traits/Admin.php:1514 +msgid "Google Client ID:" +msgstr "" + +#: ../includes/Traits/Admin.php:1515 +msgid "Google Client ID" +msgstr "" + +#: ../includes/Traits/Admin.php:1521 +msgid "Facebook Login" +msgstr "" + +#: ../includes/Traits/Admin.php:1527 +msgid "Facebook App ID:" +msgstr "" + +#: ../includes/Traits/Admin.php:1528 +msgid "Facebook App ID" +msgstr "" + +#: ../includes/Traits/Admin.php:1533 +msgid "Facebook App Secret:" +msgstr "" + +#: ../includes/Traits/Admin.php:1534 +msgid "Facebook App Secret" +msgstr "" + +#: ../includes/Traits/Admin.php:1540 +msgid "Mailchimp Integration" +msgstr "" + +#: ../includes/Traits/Admin.php:1546 +msgid "Mailchimp API Key:" +msgstr "" + +#: ../includes/Traits/Admin.php:1547 +msgid "Mailchimp API" +msgstr "" + +#: ../includes/Traits/Admin.php:1553 +msgid "Enable Custom Fields" +msgstr "" + +#: ../includes/Traits/Admin.php:1555 +msgid "Fields will be available on both the edit profile page and the EA Login | Register Form." +msgstr "" + +#: ../includes/Traits/Admin.php:1560 +msgid "Text Type Fields:" +msgstr "" + +#: ../includes/Traits/Admin.php:1561, ../includes/Traits/Admin.php:1567 +msgid "Field 1, Field 2 ..." +msgstr "" + +#: ../includes/Traits/Admin.php:1566 +msgid "File Type Fields:" +msgstr "" + +#: ../includes/Traits/Admin.php:1584 +msgid "

📣 NEW: Introducing EA 6.0 with revamped 'Dashboard', 'Interactive Animations', 'Hover Interactions', 'Dynamic Tags' & more! Check out the Changelog 🎉

" +msgstr "" + +#: ../includes/Traits/Admin.php:1587 +msgid "Unlock the PRO Features" +msgstr "" + +#: ../includes/Traits/Admin.php:1588 +msgid "Upgrade to Essential Addons PRO and gain access to advanced elements and functionalities to build websites more efficiently" +msgstr "" + +#: ../includes/Traits/Admin.php:1678 +msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?" +msgstr "" + +#: ../includes/Traits/Admin.php:1686 +msgid "Ok, you deserve it!" +msgstr "" + +#: ../includes/Traits/Admin.php:1690 +msgid "I already did" +msgstr "" + +#: ../includes/Traits/Admin.php:1697 +msgid "Maybe Later" +msgstr "" + +#: ../includes/Traits/Admin.php:1705 +msgid "I need help" +msgstr "" + +#: ../includes/Traits/Admin.php:1709 +msgid "Never show again" +msgstr "" + +#: ../includes/Traits/Admin.php:1805, ../includes/Traits/Admin.php:1940 +msgid "Install Essential Blocks" +msgstr "" + +#: ../includes/Traits/Admin.php:1814, ../includes/Traits/Admin.php:1994 +msgid "Using Gutenberg? Check out Essential Blocks!" +msgstr "" + +#: ../includes/Traits/Admin.php:1815, ../includes/Traits/Admin.php:1995 +msgid "Are you using the Gutenberg Editor for your website? Then try out Essential Blocks for Gutenberg, and explore 40+ unique blocks to make your web design experience in WordPress even more powerful. 🚀" +msgstr "" + +#: ../includes/Traits/Admin.php:1816, ../includes/Traits/Admin.php:1996 +msgid "For more information, check out the demo here." +msgstr "" + +#: ../includes/Traits/Admin.php:2115, ../includes/Traits/Admin.php:2126 +msgid "You are not allowed to do this action" +msgstr "" + +#: ../includes/Traits/Admin.php:2185 +msgid "Join us in celebrating 2 MILLION+ happy users and grab up to an exclusive 30% OFF on the most used Elementor addons!" +msgstr "" + +#: ../includes/Traits/Admin.php:2187 +msgid "Upgrade To PRO Now" +msgstr "" + +#: ../includes/Traits/Admin.php:2189 +msgid "Give Me LIFETIME access" +msgstr "" + +#: ../includes/Traits/Admin.php:2191 +msgid "I don’t want to save money" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:96, ../includes/Traits/Ajax_Handler.php:611, ../includes/Traits/Login_Registration.php:96, ../includes/Traits/Login_Registration.php:248, ../includes/Traits/Login_Registration.php:776, ../includes/Traits/Login_Registration.php:951 +msgid "Insecure form submitted without security token" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:105, ../includes/Traits/Ajax_Handler.php:620, ../includes/Traits/Login_Registration.php:108, ../includes/Traits/Login_Registration.php:258, ../includes/Traits/Login_Registration.php:788, ../includes/Traits/Login_Registration.php:963, ../includes/Traits/Woo_Product_Comparable.php:2171 +msgid "Security token did not match" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:116, ../includes/Traits/Ajax_Handler.php:307, ../includes/Traits/Ajax_Handler.php:388, ../includes/Traits/Ajax_Handler.php:631, ../includes/Traits/Login_Registration.php:72, ../includes/Traits/Login_Registration.php:273, ../includes/Traits/Login_Registration.php:752, ../includes/Traits/Login_Registration.php:926, ../includes/Traits/Woo_Product_Comparable.php:2129 +msgid "Page ID is missing" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:127, ../includes/Traits/Ajax_Handler.php:314, ../includes/Traits/Ajax_Handler.php:395, ../includes/Traits/Ajax_Handler.php:642, ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:278, ../includes/Traits/Login_Registration.php:759, ../includes/Traits/Login_Registration.php:933, ../includes/Traits/Woo_Product_Comparable.php:2134 +msgid "Widget ID is missing" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:138, ../includes/Traits/Ajax_Handler.php:320, ../includes/Traits/Ajax_Handler.php:402, ../includes/Traits/Ajax_Handler.php:652 +msgid "Widget settings are not found. Did you save the widget before using load more??" +msgstr "" + +#: ../includes/Traits/Ajax_Handler.php:956 +msgid "Login | Register Settings updated" +msgstr "" + +#: ../includes/Traits/Controls.php:49, ../includes/Traits/Controls.php:39 +msgid "Dynamic Content Settings" +msgstr "" + +#: ../includes/Traits/Controls.php:89 +msgid "Search & Select" +msgstr "" + +#: ../includes/Traits/Controls.php:104 +msgid "Author" +msgstr "" + +#: ../includes/Traits/Controls.php:143 +msgid "Show Child Category Items" +msgstr "" + +#: ../includes/Traits/Controls.php:200 +msgid "Fetch All Posts" +msgstr "" + +#: ../includes/Traits/Controls.php:205 +msgid "By Enabling this option all posts will be fetch for \"All\" tab except exclude." +msgstr "" + +#: ../includes/Traits/Controls.php:266 +msgid "Knowledge Bases" +msgstr "" + +#: ../includes/Traits/Controls.php:273 +msgid "All Knowledge Base" +msgstr "" + +#: ../includes/Traits/Controls.php:284 +msgid "Category Grid" +msgstr "" + +#: ../includes/Traits/Controls.php:327 +msgid "Box Per Page" +msgstr "" + +#: ../includes/Traits/Controls.php:318 +msgid "Grid Per Page" +msgstr "" + +#: ../includes/Traits/Controls.php:350 +msgid "Slug" +msgstr "" + +#: ../includes/Traits/Controls.php:351 +msgid "Term Group" +msgstr "" + +#: ../includes/Traits/Controls.php:352 +msgid "Term ID" +msgstr "" + +#: ../includes/Traits/Controls.php:353, ../includes/Traits/Login_Registration.php:1614 +msgid "ID" +msgstr "" + +#: ../includes/Traits/Controls.php:355 +msgid "Parent" +msgstr "" + +#: ../includes/Traits/Controls.php:356 +msgid "BetterDocs Order" +msgstr "" + +#: ../includes/Traits/Controls.php:380 +msgid "Grid List Posts" +msgstr "" + +#: ../includes/Traits/Controls.php:389 +msgid "Post Per Page" +msgstr "" + +#: ../includes/Traits/Controls.php:421 +msgid "Enable Nested Subcategory" +msgstr "" + +#: ../includes/Traits/Controls.php:459 +msgid "Tiled" +msgstr "" + +#: ../includes/Traits/Controls.php:490 +msgid "Note: Use 5 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +msgstr "" + +#: ../includes/Traits/Controls.php:502 +msgid "Note: Use 3 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +msgstr "" + +#: ../includes/Traits/Controls.php:513 +msgid "Note: Use 4 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +msgstr "" + +#: ../includes/Traits/Controls.php:524 +msgid "Note: Use 2 posts per page from Content » Query » Posts Per Page, to view this layout perfectly." +msgstr "" + +#: ../includes/Traits/Controls.php:540 +msgid "Column 2" +msgstr "" + +#: ../includes/Traits/Controls.php:541 +msgid "Column 3" +msgstr "" + +#: ../includes/Traits/Controls.php:542 +msgid "Column 4" +msgstr "" + +#: ../includes/Traits/Controls.php:544 +msgid "Note: Column layout will be applied from second row." +msgstr "" + +#: ../includes/Traits/Controls.php:596 +msgid "Item Style" +msgstr "" + +#: ../includes/Traits/Controls.php:601 +msgid "Cards" +msgstr "" + +#: ../includes/Traits/Controls.php:648 +msgid "Post Block Style Preset" +msgstr "" + +#: ../includes/Traits/Controls.php:661, ../includes/Traits/Controls.php:1127 +msgid "Fallback Image" +msgstr "" + +#: ../includes/Traits/Controls.php:749, ../includes/Traits/Controls.php:766 +msgid "Date Position" +msgstr "" + +#: ../includes/Traits/Controls.php:844, ../includes/Traits/Controls.php:1235 +msgid "Show Image" +msgstr "" + +#: ../includes/Traits/Controls.php:869, ../includes/Traits/Controls.php:933, ../includes/Traits/Controls.php:1085 +msgid "Enable Image Ratio" +msgstr "" + +#: ../includes/Traits/Controls.php:883, ../includes/Traits/Controls.php:947, ../includes/Traits/Controls.php:1099 +msgid "Image Ratio" +msgstr "" + +#: ../includes/Traits/Controls.php:1000 +msgid "Show Circle Image / Icon" +msgstr "" + +#: ../includes/Traits/Controls.php:1026 +msgid "Icon Image" +msgstr "" + +#: ../includes/Traits/Controls.php:1042 +msgid "Icon Image Size" +msgstr "" + +#: ../includes/Traits/Controls.php:1280 +msgid "Show Excerpt" +msgstr "" + +#: ../includes/Traits/Controls.php:1405 +msgid "Angle Double" +msgstr "" + +#: ../includes/Traits/Controls.php:1444 +msgid "Show Read More Button" +msgstr "" + +#: ../includes/Traits/Controls.php:1482 +msgid "Two" +msgstr "" + +#: ../includes/Traits/Controls.php:1486 +msgid "Three" +msgstr "" + +#: ../includes/Traits/Controls.php:1515 +msgid "Show Post Terms" +msgstr "" + +#: ../includes/Traits/Controls.php:1614 +msgid "Terms Separator" +msgstr "" + +#: ../includes/Traits/Controls.php:1629 +msgid "Show Terms on Image Hover" +msgstr "" + +#: ../includes/Traits/Controls.php:1649 +msgid "Show Meta" +msgstr "" + +#: ../includes/Traits/Controls.php:1665 +msgid "Entry Header" +msgstr "" + +#: ../includes/Traits/Controls.php:1666 +msgid "Entry Footer" +msgstr "" + +#: ../includes/Traits/Controls.php:1694, ../includes/Traits/Controls.php:1727, ../includes/Traits/Controls.php:1743, ../includes/Traits/Controls.php:1778 +msgid "Show Author Name" +msgstr "" + +#: ../includes/Traits/Controls.php:2353 +msgid "Absolute" +msgstr "" + +#: ../includes/Traits/Controls.php:2367 +msgid "Horizontal Orientation" +msgstr "" + +#: ../includes/Traits/Controls.php:2470 +msgid "Vertical Orientation" +msgstr "" + +#: ../includes/Traits/Controls.php:2589 +msgid "Ninja Tables is not installed/activated on your site. Please install and activate Ninja Tables first." +msgstr "" + +#: ../includes/Traits/Controls.php:2576 +msgid "Table ID" +msgstr "" + +#: ../includes/Traits/Controls.php:2610 +msgid "EventON (Pro) " +msgstr "" + +#: ../includes/Traits/Controls.php:2608 +msgid "EventON" +msgstr "" + +#: ../includes/Traits/Controls.php:2627 +msgid "Style the message when no posts are found." +msgstr "" + +#: ../includes/Traits/Core.php:48 +msgid "Go Pro" +msgstr "" + +#: ../includes/Traits/Core.php:63 +msgid "Docs & FAQs" +msgstr "" + +#: ../includes/Traits/Core.php:66 +msgid "Video Tutorials" +msgstr "" + +#: ../includes/Traits/Core.php:110 +msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be installed and activated. Please install Elementor to continue." +msgstr "" + +#: ../includes/Traits/Core.php:111 +msgid "Install Elementor" msgstr "" -#: ../includes/Traits/Elements.php:292, ../includes/templates/admin/elements.php:94 -msgid "Testimonial Slider" +#: ../includes/Traits/Core.php:104 +msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be active. Please activate Elementor to continue." msgstr "" -#: ../includes/Traits/Elements.php:304 -msgid "X (Twitter) Feed Carousel" +#: ../includes/Traits/Core.php:106 +msgid "Activate Elementor" msgstr "" -#: ../includes/Traits/Elements.php:310, ../includes/templates/admin/elements.php:587 -msgid "Woo Product Collections" +#: ../includes/Traits/Core.php:132 +msgid "Want to help make Essential Addons for Elementor even more awesome? You can get a 10% discount coupon for Pro upgrade if you allow." msgstr "" -#: ../includes/Traits/Elements.php:316, ../includes/templates/admin/elements.php:594, ../includes/templates/admin/go-pro.php:55 -msgid "Woo Product Slider" +#: ../includes/Traits/Core.php:133 +msgid "" +"We collect non-sensitive diagnostic data and plugin usage information.\n" +" Your site URL, WordPress & PHP version, plugins & themes and email address to send you the\n" +" discount coupon. This data lets us make sure this plugin always stays compatible with the most\n" +" popular plugins and themes. No spam, I promise." msgstr "" -#: ../includes/Traits/Elements.php:322, ../includes/templates/admin/elements.php:136 -msgid "Advanced Search" +#: ../includes/Traits/Elements.php:173 +msgid "Google Map" msgstr "" -#: ../includes/Traits/Elements.php:328, ../includes/templates/admin/elements.php:622 -msgid "Woo Thank You" +#: ../includes/Traits/Elements.php:203 +msgid "Interactive Card" msgstr "" -#: ../includes/Traits/Elements.php:340, ../includes/templates/admin/elements.php:650 -msgid "Woo Account Dashboard" +#: ../includes/Traits/Elements.php:305 +msgid "X (Twitter) Feed Carousel" msgstr "" #: ../includes/Traits/Facebook_Feed.php:31 @@ -10078,103 +10589,107 @@ msgstr "" msgid "Essential Addons for Elementor" msgstr "" -#: ../includes/Traits/Helper.php:328 +#: ../includes/Traits/Helper.php:340 msgid "Quantity update failed." msgstr "" -#: ../includes/Traits/Helper.php:317 +#: ../includes/Traits/Helper.php:329 msgid "Quantity updated successfully." msgstr "" -#: ../includes/Traits/Helper.php:372 +#: ../includes/Traits/Helper.php:384 msgid "5,000+ Stunning Templates" msgstr "" -#: ../includes/Traits/Helper.php:373 +#: ../includes/Traits/Helper.php:385 msgid "Supports Elementor & Gutenberg" msgstr "" -#: ../includes/Traits/Helper.php:374 +#: ../includes/Traits/Helper.php:386 msgid "Powering up 300,000+ Websites" msgstr "" -#: ../includes/Traits/Helper.php:375 +#: ../includes/Traits/Helper.php:387 msgid "Cloud Collaboration with Team" msgstr "" -#: ../includes/Traits/Helper.php:384 +#: ../includes/Traits/Helper.php:396 msgid "Don’t Show This Again" msgstr "" -#: ../includes/Traits/Helper.php:396 +#: ../includes/Traits/Helper.php:408 msgid "Activate Templately" msgstr "" -#: ../includes/Traits/Helper.php:393 +#: ../includes/Traits/Helper.php:405 msgid "Activated Templately" msgstr "" -#: ../includes/Traits/Helper.php:390 +#: ../includes/Traits/Helper.php:402 msgid "Install Templately" msgstr "" -#: ../includes/Traits/Helper.php:399, ../includes/templates/admin/popup.php:311 +#: ../includes/Traits/Helper.php:411 msgid "Submit" msgstr "" -#: ../includes/Traits/Helper.php:555 -msgid "

📣 NEW: Essential Addons 5.9 is here, with new 'Woo Product List' widget & more! Check out the Changelog for more details 🎉

" -msgstr "" - -#: ../includes/Traits/Helper.php:617 +#: ../includes/Traits/Helper.php:615 msgid "Try Essential Blocks" msgstr "" -#: ../includes/Traits/Helper.php:630 +#: ../includes/Traits/Helper.php:628 msgid "Close dialog" msgstr "" -#: ../includes/Traits/Helper.php:645, ../includes/Traits/Helper.php:665 +#: ../includes/Traits/Helper.php:643, ../includes/Traits/Helper.php:663 msgid "Supercharge Your Gutenberg Experience With Essential Blocks" msgstr "" -#: ../includes/Traits/Helper.php:646, ../includes/Traits/Helper.php:666 +#: ../includes/Traits/Helper.php:644, ../includes/Traits/Helper.php:664 msgid "If you like Essential Addons for Elementor, check out Essential Blocks, the ultimate block library for Gutenberg that is trusted by more than 60,000+ web creators." msgstr "" -#: ../includes/Traits/Helper.php:651, ../includes/Traits/Helper.php:720 +#: ../includes/Traits/Helper.php:649, ../includes/Traits/Helper.php:718 msgid "Never Show Again" msgstr "" -#: ../includes/Traits/Helper.php:678 +#: ../includes/Traits/Helper.php:650 +msgid "Previous" +msgstr "" + +#: ../includes/Traits/Helper.php:651 +msgid "Next" +msgstr "" + +#: ../includes/Traits/Helper.php:676 msgid "40+ Amazing Gutenberg Blocks" msgstr "" -#: ../includes/Traits/Helper.php:679 +#: ../includes/Traits/Helper.php:677 msgid "Create & design your WordPress websites just the way you want with more than 40 amazing, ready blocks from Essential Blocks for Gutenberg." msgstr "" -#: ../includes/Traits/Helper.php:691 +#: ../includes/Traits/Helper.php:689 msgid "Useful Block Control Option" msgstr "" -#: ../includes/Traits/Helper.php:692 +#: ../includes/Traits/Helper.php:690 msgid "Get the fastest loading time and smoothest experience on your web page by enabling and disabling individual blocks as per your requirements." msgstr "" -#: ../includes/Traits/Helper.php:704 +#: ../includes/Traits/Helper.php:702 msgid "Access To Thousands Of Ready Gutenberg Templates" msgstr "" -#: ../includes/Traits/Helper.php:705 +#: ../includes/Traits/Helper.php:703 msgid "Design unique websites using ready Gutenberg templates from Templately with absolute ease and instantly grab attention." msgstr "" -#: ../includes/Traits/Helper.php:717 +#: ../includes/Traits/Helper.php:715 msgid "Try Essential Blocks Today!" msgstr "" -#: ../includes/Traits/Helper.php:718 +#: ../includes/Traits/Helper.php:716 msgid "Want to get started with Essential Blocks now? Check out %scomplete guides for each blocks%s to learn more about this ultimate block library for Gutenberg." msgstr "" @@ -10686,365 +11201,14 @@ msgstr "" msgid "Layout 2" msgstr "" -#: ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Content/Woo_Product_List.php:63, ../includes/Template/Content/Woo_Product_List.php:29, ../includes/Template/Eicon-Woocommerce/default.php:50 +#: ../includes/Template/Content/Product_Grid.php:74, ../includes/Template/Content/Product_Grid.php:35, ../includes/Template/Content/Woo_Product_List.php:76, ../includes/Template/Content/Woo_Product_List.php:37, ../includes/Template/Eicon-Woocommerce/default.php:50 msgid "Sale!" msgstr "" -#: ../includes/Template/Content/Product_Grid.php:27, ../includes/Template/Content/Woo_Product_List.php:27, ../includes/Template/Eicon-Woocommerce/default.php:51 +#: ../includes/Template/Content/Product_Grid.php:33, ../includes/Template/Content/Woo_Product_List.php:35, ../includes/Template/Eicon-Woocommerce/default.php:51 msgid "Stock
Out" msgstr "" -#: ../includes/templates/admin/elements.php:333 -msgid "Interactive Cards" -msgstr "" - -#: ../includes/templates/admin/elements.php:392 -msgid "Marketing Elements" -msgstr "" - -#: ../includes/templates/admin/elements.php:409 -msgid "Price menu" -msgstr "" - -#: ../includes/templates/admin/elements.php:500 -msgid "Social Feed Elements" -msgstr "" - -#: ../includes/templates/admin/elements.php:511 -msgid "Twitter Feed Carousel" -msgstr "" - -#: ../includes/templates/admin/elements.php:534 -msgid "LearnDash Elements" -msgstr "" - -#: ../includes/templates/admin/elements.php:667, ../includes/templates/admin/extensions.php:103 -msgid "Global Control" -msgstr "" - -#: ../includes/templates/admin/elements.php:668 -msgid "Use the Toggle Button to Activate or Deactivate all the Elements of Essential Addons at once." -msgstr "" - -#: ../includes/templates/admin/elements.php:675, ../includes/templates/admin/extensions.php:111 -msgid "Enable All" -msgstr "" - -#: ../includes/templates/admin/elements.php:676, ../includes/templates/admin/extensions.php:112 -msgid "Disable All" -msgstr "" - -#: ../includes/templates/admin/elements.php:679, ../includes/templates/admin/elements.php:740, ../includes/templates/admin/extensions.php:115, ../includes/templates/admin/extensions.php:170, ../includes/templates/admin/tools.php:71 -msgid "Save Settings" -msgstr "" - -#: ../includes/templates/admin/elements.php:701, ../includes/templates/admin/extensions.php:139 -msgid "Setting" -msgstr "" - -#: ../includes/templates/admin/elements.php:706, ../includes/templates/admin/extensions.php:144 -msgid "Documentation" -msgstr "" - -#: ../includes/templates/admin/elements.php:710, ../includes/templates/admin/extensions.php:148 -msgid "Demo" -msgstr "" - -#: ../includes/templates/admin/extensions.php:5 -msgid "Premium Extensions" -msgstr "" - -#: ../includes/templates/admin/extensions.php:9, ../includes/templates/admin/go-pro.php:133 -msgid "Parallax" -msgstr "" - -#: ../includes/templates/admin/extensions.php:16, ../includes/templates/admin/go-pro.php:139 -msgid "Particles" -msgstr "" - -#: ../includes/templates/admin/extensions.php:23, ../includes/templates/admin/go-pro.php:126 -msgid "Advanced Tooltip" -msgstr "" - -#: ../includes/templates/admin/extensions.php:30 -msgid "Content Protection" -msgstr "" - -#: ../includes/templates/admin/extensions.php:38 -msgid "Reading Progress Bar" -msgstr "" - -#: ../includes/templates/admin/extensions.php:51 -msgid "Duplicator" -msgstr "" - -#: ../includes/templates/admin/extensions.php:65 -msgid "Cross-Domain Copy Paste" -msgstr "" - -#: ../includes/templates/admin/extensions.php:73 -msgid "Scroll to Top" -msgstr "" - -#: ../includes/templates/admin/extensions.php:80 -msgid "Conditional Display" -msgstr "" - -#: ../includes/templates/admin/extensions.php:88 -msgid "Wrapper Link" -msgstr "" - -#: ../includes/templates/admin/extensions.php:104 -msgid "Use the Toggle Button to Activate or Deactivate all the Extensions of Essential Addons at once." -msgstr "" - -#: ../includes/templates/admin/general.php:7 -msgid "" -"Check out the changes & features we have added with our\n" -" new updates" -msgstr "" - -#: ../includes/templates/admin/general.php:94 -msgid "Get Started with Essential Addons for Elementor" -msgstr "" - -#: ../includes/templates/admin/general.php:95 -msgid "Thank you for choosing Essential Addons for Elementor. Get ready to enhance your Elementor site building experience by using 90+ Essential Addons elements & extensions." -msgstr "" - -#: ../includes/templates/admin/general.php:97 -msgid "YouTube Tutorials" -msgstr "" - -#: ../includes/templates/admin/general.php:123 -msgid "Manage your License for your sites from your WPDeveloper account" -msgstr "" - -#: ../includes/templates/admin/general.php:127 -msgid "%s" -msgstr "" - -#: ../includes/templates/admin/general.php:139 -msgid "Total Elements" -msgstr "" - -#: ../includes/templates/admin/general.php:143 -msgid "Active Elements" -msgstr "" - -#: ../includes/templates/admin/general.php:147 -msgid "Inactive Elements" -msgstr "" - -#: ../includes/templates/admin/general.php:152 -msgid "View Knowledgebase" -msgstr "" - -#: ../includes/templates/admin/general.php:153 -msgid "Get started by spending some time with the documentation to get familiar with Essential Addons." -msgstr "" - -#: ../includes/templates/admin/general.php:157 -msgid "Show Your Love" -msgstr "" - -#: ../includes/templates/admin/general.php:158 -msgid "Take your 2 minutes to review the plugin and spread the love to encourage us to keep it going." -msgstr "" - -#: ../includes/templates/admin/general.php:161 -msgid " Need Help?" -msgstr "" - -#: ../includes/templates/admin/general.php:162 -msgid "Stuck with something? Get help from live chat or submit a support ticket." -msgstr "" - -#: ../includes/templates/admin/general.php:166 -msgid "Join the Community" -msgstr "" - -#: ../includes/templates/admin/general.php:167 -msgid "Join the Facebook community and discuss with fellow developers & users." -msgstr "" - -#: ../includes/templates/admin/go-pro.php:24 -msgid "Restrict important data by setting up user permission or giving passwords to certain area" -msgstr "" - -#: ../includes/templates/admin/go-pro.php:25, ../includes/templates/admin/go-pro.php:41 -msgid "View Demo" -msgstr "" - -#: ../includes/templates/admin/go-pro.php:40 -msgid "Display your blog posts in an amazing grid layout with advanced search & filter options." -msgstr "" - -#: ../includes/templates/admin/go-pro.php:56 -msgid "Showcase your WooCommerce products beautifully with amazing ready slider layouts." -msgstr "" - -#: ../includes/templates/admin/go-pro.php:57 -msgid "" -"View\n" -" Demo" -msgstr "" - -#: ../includes/templates/admin/go-pro.php:106 -msgid "MailChimp" -msgstr "" - -#: ../includes/templates/admin/go-pro.php:152 -msgid "Automatic Updates & Priority Support" -msgstr "" - -#: ../includes/templates/admin/go-pro.php:153 -msgid "" -"Get access to automatic updates & keep your website up-to-date with constantly developing features.\n" -" Having any trouble? Don’t worry as you can reach out to our expert Support team any time through\n" -" live\n" -" chat or support tickets." -msgstr "" - -#: ../includes/templates/admin/popup.php:14 -msgid "Unlock 30+ amazing widgets to build awesome websites." -msgstr "" - -#: ../includes/templates/admin/popup.php:16 -msgid "" -"Upgrade\n" -" Now" -msgstr "" - -#: ../includes/templates/admin/popup.php:27 -msgid "Google Map API Key" -msgstr "" - -#: ../includes/templates/admin/popup.php:40 -msgid "Business Reviews Settings" -msgstr "" - -#: ../includes/templates/admin/popup.php:51 -msgid "Google Place API Key:" -msgstr "" - -#: ../includes/templates/admin/popup.php:79 -msgid "Mailchimp API Key" -msgstr "" - -#: ../includes/templates/admin/popup.php:114, ../includes/templates/admin/popup.php:144 -msgid "Site Key:" -msgstr "" - -#: ../includes/templates/admin/popup.php:120, ../includes/templates/admin/popup.php:150 -msgid "Site Secret:" -msgstr "" - -#: ../includes/templates/admin/popup.php:126, ../includes/templates/admin/popup.php:156 -msgid "Language:" -msgstr "" - -#: ../includes/templates/admin/popup.php:141 -msgid "reCAPTCHA v3" -msgstr "" - -#: ../includes/templates/admin/popup.php:167 -msgid "Hide Badge" -msgstr "" - -#: ../includes/templates/admin/popup.php:171 -msgid "We are allowed to hide the badge as long as we include the reCAPTCHA branding visibly in the user flow." -msgstr "" - -#: ../includes/templates/admin/popup.php:191 -msgid "Google Client ID:" -msgstr "" - -#: ../includes/templates/admin/popup.php:208 -msgid "Facebook App ID:" -msgstr "" - -#: ../includes/templates/admin/popup.php:214 -msgid "Facebook App Secret:" -msgstr "" - -#: ../includes/templates/admin/popup.php:229 -msgid "Mailchimp Integration" -msgstr "" - -#: ../includes/templates/admin/popup.php:232 -msgid "Mailchimp API Key:" -msgstr "" - -#: ../includes/templates/admin/popup.php:246 -msgid "Enable Custom Fields" -msgstr "" - -#: ../includes/templates/admin/popup.php:250 -msgid "Fields will be available on both the edit profile page and the EA Login | Register Form." -msgstr "" - -#: ../includes/templates/admin/popup.php:264 -msgid "Text Type Fields:" -msgstr "" - -#: ../includes/templates/admin/popup.php:270 -msgid "File Type Fields:" -msgstr "" - -#: ../includes/templates/admin/popup.php:296 -msgid "Select Post Types" -msgstr "" - -#: ../includes/templates/admin/tools.php:11, ../includes/templates/admin/tools.php:20 -msgid "Regenerate Assets" -msgstr "" - -#: ../includes/templates/admin/tools.php:12 -msgid "" -"Essential Addons styles & scripts are saved in Uploads folder. This option will clear all\n" -" those generated files." -msgstr "" - -#: ../includes/templates/admin/tools.php:35 -msgid "Assets Embed Method" -msgstr "" - -#: ../includes/templates/admin/tools.php:36 -msgid "Configure the Essential Addons assets embed method. Keep it as default (Recommended)." -msgstr "" - -#: ../includes/templates/admin/tools.php:43 -msgid "CSS Print Method" -msgstr "" - -#: ../includes/templates/admin/tools.php:44 -msgid "" -"CSS Print Method is handled by Elementor Settings itself. Use External CSS Files for\n" -" better\n" -" performance (Recommended)." -msgstr "" - -#: ../includes/templates/admin/tools.php:53 -msgid "JS Print Method" -msgstr "" - -#: ../includes/templates/admin/tools.php:56 -msgid "External File" -msgstr "" - -#: ../includes/templates/admin/tools.php:57 -msgid "Internal Embedding" -msgstr "" - -#: ../includes/templates/admin/tools.php:61 -msgid "Use external JS files for all generated scripts. Choose this setting for better performance (Recommended)." -msgstr "" - -#: ../includes/templates/admin/tools.php:62 -msgid "Use internal JS that is embedded in the head of the page. For troubleshooting server configuration conflicts and managing development environments." -msgstr "" - #: ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:101, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:491, ../includes/Template/Woocommerce/Cart/Woo_Cart_Helper.php:596 msgid "Remove this item" msgstr "" From 3be360f2b0fe4e768d899754de0b98faa1efa346 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Thu, 5 Sep 2024 18:16:10 +0600 Subject: [PATCH 31/42] fixed php warning --- includes/Elements/Woo_Product_Gallery.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Elements/Woo_Product_Gallery.php b/includes/Elements/Woo_Product_Gallery.php index f6d7cbbad..4ecb2863c 100755 --- a/includes/Elements/Woo_Product_Gallery.php +++ b/includes/Elements/Woo_Product_Gallery.php @@ -2734,10 +2734,10 @@ protected function render() { * @return array */ public function build_product_query( $settings ) { - $get_product_cats = $settings[ 'eael_product_gallery_categories' ]; + $get_product_cats = $settings[ 'eael_product_gallery_categories' ] ?: ''; $product_cats = str_replace( ' ', '', $get_product_cats ); - $get_product_tags = $settings[ 'eael_product_gallery_tags' ]; + $get_product_tags = $settings[ 'eael_product_gallery_tags' ] ?: ''; $product_tags_items = str_replace( ' ', '', $get_product_tags ); // Category retrieve @@ -2917,10 +2917,10 @@ public function load_quick_view_asset() { } public function eael_product_terms_render( $settings, $args ) { - $get_product_cats = $settings[ 'eael_product_gallery_categories' ]; + $get_product_cats = $settings[ 'eael_product_gallery_categories' ] ?: ''; $product_cats = str_replace( ' ', '', $get_product_cats ); - $get_product_tags = $settings[ 'eael_product_gallery_tags' ]; + $get_product_tags = $settings[ 'eael_product_gallery_tags' ] ?: ''; $product_tags_items = str_replace( ' ', '', $get_product_tags ); if ( $settings[ 'eael_woo_product_gallery_terms_show_all' ] == '' && empty( $get_product_cats ) && empty( $get_product_tags ) ) { From e7988918b335fb18ce4593c772deda2c222f640b Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Thu, 5 Sep 2024 19:00:33 +0600 Subject: [PATCH 32/42] fixed quick view not working --- assets/front-end/js/view/quick-view.js | 2 +- assets/front-end/js/view/quick-view.min.js | 2 +- src/js/view/quick-view.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/front-end/js/view/quick-view.js b/assets/front-end/js/view/quick-view.js index 3ff9ce110..07c811d40 100644 --- a/assets/front-end/js/view/quick-view.js +++ b/assets/front-end/js/view/quick-view.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar QuickView = {\n quickViewAddMarkup: function quickViewAddMarkup($scope, jq) {\n var popupMarkup = \"
\\n \\t\\t\\t
\\n \\t\\t\\t
\\n \\t\\t\\t\\t
\";\n if (!jq('body > .eael-woocommerce-popup-view').length) {\n jq('body').prepend(popupMarkup);\n }\n },\n openPopup: function openPopup($scope, $) {\n // Quick view\n jQuery(document).on(\"click\", \".open-popup-link\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n var $this = $(this);\n if (!$this.hasClass('eael-product-grid-open-popup')) {\n return;\n }\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('
');\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 popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n setTimeout(function () {\n var setHeight = product_gallery.find('.woocommerce-product-gallery__image').height();\n $('body').prepend('');\n product_gallery.wc_product_gallery();\n product_gallery.closest('.eael-product-image-wrap').css('background', 'none');\n }, 500);\n setTimeout(function () {\n $('.eael-quick-view-dynamic-css').remove();\n }, 1500);\n }\n }\n });\n });\n },\n closePopup: function closePopup($scope, jq) {\n jq(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n QuickView.remove_product_popup(jq);\n });\n jq(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n QuickView.remove_product_popup(jq);\n });\n },\n singlePageAddToCartButton: function singlePageAddToCartButton($scope, $) {\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button:not(.wc-variation-selection-needed)\", 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 if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\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 $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 if (localize.cart_redirectition == 'yes') {\n window.location.href = localize.cart_page_url;\n }\n }\n }\n });\n });\n },\n preventStringInNumberField: function preventStringInNumberField($scope, $) {\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 if (!isValid) {\n return false;\n }\n return isValid;\n });\n },\n remove_product_popup: function remove_product_popup(jq) {\n var selector = jq(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\");\n selector.addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n selector.find('.eael-popup-details-render').html('');\n }\n};\n\n//This is only for YITH WooCommerce Ajax Product Filter\njQuery(document).on('click', '.yith-wcan-filters', function () {\n window.forceFullyRun = true;\n});\nif (!eael.elementStatusCheck('eaelQuickView') || window.forceFullyRun !== undefined) {\n eael.hooks.addAction('quickViewAddMarkup', 'ea', QuickView.quickViewAddMarkup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.openPopup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.closePopup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.singlePageAddToCartButton, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.preventStringInNumberField, 10);\n}\n\n//# sourceURL=webpack:///./src/js/view/quick-view.js?"); +eval("function _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nvar QuickView = {\n quickViewAddMarkup: function quickViewAddMarkup($scope, jq) {\n var popupMarkup = \"
\\n \\t\\t\\t
\\n \\t\\t\\t
\\n \\t\\t\\t\\t
\";\n if (!jq('body > .eael-woocommerce-popup-view').length) {\n jq('body').prepend(popupMarkup);\n }\n },\n openPopup: function openPopup($scope, $) {\n // Quick view\n jQuery(document).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 if (quickview_setting === undefined) {\n return;\n }\n var popup_view = $(\".eael-woocommerce-popup-view\");\n popup_view.find(\".eael-popup-details-render\").html('
');\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 popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n setTimeout(function () {\n var setHeight = product_gallery.find('.woocommerce-product-gallery__image').height();\n $('body').prepend('');\n product_gallery.wc_product_gallery();\n product_gallery.closest('.eael-product-image-wrap').css('background', 'none');\n }, 500);\n setTimeout(function () {\n $('.eael-quick-view-dynamic-css').remove();\n }, 1500);\n }\n }\n });\n });\n },\n closePopup: function closePopup($scope, jq) {\n jq(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n QuickView.remove_product_popup(jq);\n });\n jq(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n QuickView.remove_product_popup(jq);\n });\n },\n singlePageAddToCartButton: function singlePageAddToCartButton($scope, $) {\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button:not(.wc-variation-selection-needed)\", 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 if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\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 $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 if (localize.cart_redirectition == 'yes') {\n window.location.href = localize.cart_page_url;\n }\n }\n }\n });\n });\n },\n preventStringInNumberField: function preventStringInNumberField($scope, $) {\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 if (!isValid) {\n return false;\n }\n return isValid;\n });\n },\n remove_product_popup: function remove_product_popup(jq) {\n var selector = jq(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\");\n selector.addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n selector.find('.eael-popup-details-render').html('');\n }\n};\n\n//This is only for YITH WooCommerce Ajax Product Filter\njQuery(document).on('click', '.yith-wcan-filters', function () {\n window.forceFullyRun = true;\n});\nif (!eael.elementStatusCheck('eaelQuickView') || window.forceFullyRun !== undefined) {\n eael.hooks.addAction('quickViewAddMarkup', 'ea', QuickView.quickViewAddMarkup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.openPopup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.closePopup, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.singlePageAddToCartButton, 10);\n eael.hooks.addAction('quickViewPopupViewInit', 'ea', QuickView.preventStringInNumberField, 10);\n}\n\n//# sourceURL=webpack:///./src/js/view/quick-view.js?"); /***/ }) diff --git a/assets/front-end/js/view/quick-view.min.js b/assets/front-end/js/view/quick-view.min.js index 24abef549..5b0ab305d 100644 --- a/assets/front-end/js/view/quick-view.min.js +++ b/assets/front-end/js/view/quick-view.min.js @@ -1 +1 @@ -!function(e){var t={};function o(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.m=e,o.c=t,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=23)}({23:function(e,t){function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function r(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,r)}return o}function n(e){for(var t=1;t .eael-woocommerce-popup-view").length||t("body").prepend('')},openPopup:function(e,t){jQuery(document).on("click",".open-popup-link",(function(e){e.preventDefault(),e.stopPropagation();var o=t(this);if(o.hasClass("eael-product-grid-open-popup")){var r=o.data("quickview-setting"),a=t(".eael-woocommerce-popup-view");a.find(".eael-popup-details-render").html('
'),a.addClass("eael-product-popup-ready").removeClass("eael-product-modal-removing"),a.show(),t.ajax({url:localize.ajaxurl,type:"post",data:n(n({action:"eael_product_quickview_popup"},r),{},{security:localize.nonce}),success:function(e){if(e.success){var o=t(e.data).children(".eael-product-popup-details");o.find(".variations_form").wc_variation_form();var n=a.find(".eael-popup-details-render");a.find(".eael-popup-details-render").html(o);var i=a.find(".woocommerce-product-gallery");n.addClass("elementor-"+r.page_id),n.children().addClass("elementor-element elementor-element-"+r.widget_id),o.height()>400?o.css("height","75vh"):o.css("height","auto"),setTimeout((function(){var e=i.find(".woocommerce-product-gallery__image").height();t("body").prepend('"),i.wc_product_gallery(),i.closest(".eael-product-image-wrap").css("background","none")}),500),setTimeout((function(){t(".eael-quick-view-dynamic-css").remove()}),1500)}}})}}))},closePopup:function(e,t){t(document).on("click",".eael-product-popup-close",(function(e){e.stopPropagation(),i.remove_product_popup(t)})),t(document).on("click",(function(e){e.target.closest(".eael-product-popup-details")||i.remove_product_popup(t)}))},singlePageAddToCartButton:function(e,t){t(document).on("click",".eael-woo-slider-popup .single_add_to_cart_button:not(.wc-variation-selection-needed)",(function(e){e.preventDefault(),e.stopImmediatePropagation();var o=t(this),r=t(this).val(),n=o.closest("form.cart").find('input[name="variation_id"]').val()||"",a=o.closest("form.cart").find('input[name="quantity"]').val(),i=o.closest("form.cart.grouped_form"),c=o.closest("form.cart"),u=[];i=i.serializeArray(),c.hasClass("variations_form")&&(r=c.find('input[name="product_id"]').val()),i.length>0?i.forEach((function(e,t){var o=parseInt(e.name.replace(/[^\d.]/g,""),10);e.name.indexOf("quantity[")>=0&&""!=e.value&&o>0&&(u[u.length]={product_id:o,quantity:e.value,variation_id:0})})):u[0]={product_id:r,quantity:a,variation_id:n},o.removeClass("eael-addtocart-added"),o.addClass("eael-addtocart-loading"),t.ajax({url:localize.ajaxurl,type:"post",data:{action:"eael_product_add_to_cart",product_data:u,eael_add_to_cart_nonce:localize.nonce,cart_item_data:c.serializeArray()},success:function(e){e.success&&(t(document.body).trigger("wc_fragment_refresh"),o.removeClass("eael-addtocart-loading"),o.addClass("eael-addtocart-added"),"yes"==localize.cart_redirectition&&(window.location.href=localize.cart_page_url))}})}))},preventStringInNumberField:function(e,t){t(document).on("keypress",".eael-product-details-wrap input[type=number]",(function(e){var t=e.keyCode||e.which,o=/^[0-9]+$/.test(String.fromCharCode(t));return o||!1}))},remove_product_popup:function(e){var t=e(".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready");t.addClass("eael-product-modal-removing").removeClass("eael-product-popup-ready"),t.find(".eael-popup-details-render").html("")}};jQuery(document).on("click",".yith-wcan-filters",(function(){window.forceFullyRun=!0})),eael.elementStatusCheck("eaelQuickView")&&void 0===window.forceFullyRun||(eael.hooks.addAction("quickViewAddMarkup","ea",i.quickViewAddMarkup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.openPopup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.closePopup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.singlePageAddToCartButton,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.preventStringInNumberField,10))}}); \ No newline at end of file +!function(e){var t={};function o(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.m=e,o.c=t,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=23)}({23:function(e,t){function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function r(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,r)}return o}function n(e){for(var t=1;t .eael-woocommerce-popup-view").length||t("body").prepend('')},openPopup:function(e,t){jQuery(document).on("click",".open-popup-link",(function(e){e.preventDefault(),e.stopPropagation();var o=t(this).data("quickview-setting");if(void 0!==o){var r=t(".eael-woocommerce-popup-view");r.find(".eael-popup-details-render").html('
'),r.addClass("eael-product-popup-ready").removeClass("eael-product-modal-removing"),r.show(),t.ajax({url:localize.ajaxurl,type:"post",data:n(n({action:"eael_product_quickview_popup"},o),{},{security:localize.nonce}),success:function(e){if(e.success){var n=t(e.data).children(".eael-product-popup-details");n.find(".variations_form").wc_variation_form();var a=r.find(".eael-popup-details-render");r.find(".eael-popup-details-render").html(n);var i=r.find(".woocommerce-product-gallery");a.addClass("elementor-"+o.page_id),a.children().addClass("elementor-element elementor-element-"+o.widget_id),n.height()>400?n.css("height","75vh"):n.css("height","auto"),setTimeout((function(){var e=i.find(".woocommerce-product-gallery__image").height();t("body").prepend('"),i.wc_product_gallery(),i.closest(".eael-product-image-wrap").css("background","none")}),500),setTimeout((function(){t(".eael-quick-view-dynamic-css").remove()}),1500)}}})}}))},closePopup:function(e,t){t(document).on("click",".eael-product-popup-close",(function(e){e.stopPropagation(),i.remove_product_popup(t)})),t(document).on("click",(function(e){e.target.closest(".eael-product-popup-details")||i.remove_product_popup(t)}))},singlePageAddToCartButton:function(e,t){t(document).on("click",".eael-woo-slider-popup .single_add_to_cart_button:not(.wc-variation-selection-needed)",(function(e){e.preventDefault(),e.stopImmediatePropagation();var o=t(this),r=t(this).val(),n=o.closest("form.cart").find('input[name="variation_id"]').val()||"",a=o.closest("form.cart").find('input[name="quantity"]').val(),i=o.closest("form.cart.grouped_form"),c=o.closest("form.cart"),u=[];i=i.serializeArray(),c.hasClass("variations_form")&&(r=c.find('input[name="product_id"]').val()),i.length>0?i.forEach((function(e,t){var o=parseInt(e.name.replace(/[^\d.]/g,""),10);e.name.indexOf("quantity[")>=0&&""!=e.value&&o>0&&(u[u.length]={product_id:o,quantity:e.value,variation_id:0})})):u[0]={product_id:r,quantity:a,variation_id:n},o.removeClass("eael-addtocart-added"),o.addClass("eael-addtocart-loading"),t.ajax({url:localize.ajaxurl,type:"post",data:{action:"eael_product_add_to_cart",product_data:u,eael_add_to_cart_nonce:localize.nonce,cart_item_data:c.serializeArray()},success:function(e){e.success&&(t(document.body).trigger("wc_fragment_refresh"),o.removeClass("eael-addtocart-loading"),o.addClass("eael-addtocart-added"),"yes"==localize.cart_redirectition&&(window.location.href=localize.cart_page_url))}})}))},preventStringInNumberField:function(e,t){t(document).on("keypress",".eael-product-details-wrap input[type=number]",(function(e){var t=e.keyCode||e.which,o=/^[0-9]+$/.test(String.fromCharCode(t));return o||!1}))},remove_product_popup:function(e){var t=e(".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready");t.addClass("eael-product-modal-removing").removeClass("eael-product-popup-ready"),t.find(".eael-popup-details-render").html("")}};jQuery(document).on("click",".yith-wcan-filters",(function(){window.forceFullyRun=!0})),eael.elementStatusCheck("eaelQuickView")&&void 0===window.forceFullyRun||(eael.hooks.addAction("quickViewAddMarkup","ea",i.quickViewAddMarkup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.openPopup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.closePopup,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.singlePageAddToCartButton,10),eael.hooks.addAction("quickViewPopupViewInit","ea",i.preventStringInNumberField,10))}}); \ No newline at end of file diff --git a/src/js/view/quick-view.js b/src/js/view/quick-view.js index a56a5b445..602be136a 100755 --- a/src/js/view/quick-view.js +++ b/src/js/view/quick-view.js @@ -17,10 +17,10 @@ const QuickView = { e.stopPropagation(); const $this = $(this); - if( ! $this.hasClass( 'eael-product-grid-open-popup' ) ) { + const quickview_setting = $this.data('quickview-setting'); + if (quickview_setting === undefined) { return; } - const quickview_setting = $this.data('quickview-setting'); const popup_view = $(".eael-woocommerce-popup-view"); popup_view.find(".eael-popup-details-render").html('
') popup_view From 2dbbe88ecbc785d448e104c792311233c096bdb0 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Thu, 5 Sep 2024 19:33:26 +0600 Subject: [PATCH 33/42] fixed php warning undefined index 'offset' --- includes/Traits/Ajax_Handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/Traits/Ajax_Handler.php b/includes/Traits/Ajax_Handler.php index 7940b64de..87a0a405f 100644 --- a/includes/Traits/Ajax_Handler.php +++ b/includes/Traits/Ajax_Handler.php @@ -602,6 +602,7 @@ public function ajax_eael_product_gallery() { wp_parse_str( $_POST['args'], $args ); $args['post_status'] = 'publish'; + $args['offset'] = $args['offset'] ?? 0; if ( isset( $args['date_query']['relation'] ) ) { $args['date_query']['relation'] = HelperClass::eael_sanitize_relation( $args['date_query']['relation'] ); From 1f3d170d96279f052cf6fdc5bde3c53c03ff9a55 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Sun, 8 Sep 2024 15:20:45 +0600 Subject: [PATCH 34/42] Fixed: Quick view not open when use YITH product filter plugin --- assets/front-end/js/view/content-ticker.js | 2 +- assets/front-end/js/view/general.js | 164 ++++++++++-------- assets/front-end/js/view/general.min.js | 2 +- assets/front-end/js/view/hover-effect.js | 2 +- assets/front-end/js/view/hover-effect.min.js | 2 +- assets/front-end/js/view/product-grid.js | 2 +- assets/front-end/js/view/product-grid.min.js | 2 +- .../front-end/js/view/woo-product-carousel.js | 2 +- .../js/view/woo-product-carousel.min.js | 2 +- .../front-end/js/view/woo-product-gallery.js | 2 +- .../js/view/woo-product-gallery.min.js | 2 +- .../essential-addons-for-elementor-lite.pot | 14 +- src/js/view/product-grid.js | 5 + src/js/view/woo-product-carousel.js | 4 +- src/js/view/woo-product-gallery.js | 4 +- 15 files changed, 114 insertions(+), 97 deletions(-) diff --git a/assets/front-end/js/view/content-ticker.js b/assets/front-end/js/view/content-ticker.js index a1ad88eb8..0608f52fb 100644 --- a/assets/front-end/js/view/content-ticker.js +++ b/assets/front-end/js/view/content-ticker.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n function get_configurations($contentTicker) {\n var $items = $contentTicker.data(\"items\") !== undefined ? $contentTicker.data(\"items\") : 1,\n $items_tablet = $contentTicker.data(\"items-tablet\") !== undefined ? $contentTicker.data(\"items-tablet\") : 1,\n $items_mobile = $contentTicker.data(\"items-mobile\") !== undefined ? $contentTicker.data(\"items-mobile\") : 1,\n $margin = $contentTicker.data(\"margin\") !== undefined ? $contentTicker.data(\"margin\") : 10,\n $margin_tablet = $contentTicker.data(\"margin-tablet\") !== undefined ? $contentTicker.data(\"margin-tablet\") : 10,\n $margin_mobile = $contentTicker.data(\"margin-mobile\") !== undefined ? $contentTicker.data(\"margin-mobile\") : 10,\n $effect = $contentTicker.data(\"effect\") !== undefined ? $contentTicker.data(\"effect\") : \"slide\",\n $speed = $contentTicker.data(\"speed\") !== undefined ? $contentTicker.data(\"speed\") : 400,\n $autoplay = $contentTicker.data(\"autoplay\") !== undefined ? $contentTicker.data(\"autoplay\") : 5000,\n $loop = $contentTicker.data(\"loop\") !== undefined ? $contentTicker.data(\"loop\") : false,\n $grab_cursor = $contentTicker.data(\"grab-cursor\") !== undefined ? $contentTicker.data(\"grab-cursor\") : false,\n $pagination = $contentTicker.data(\"pagination\") !== undefined ? $contentTicker.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $contentTicker.data(\"arrow-next\") !== undefined ? $contentTicker.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $contentTicker.data(\"arrow-prev\") !== undefined ? $contentTicker.data(\"arrow-prev\") : \".swiper-button-prev\",\n $pause_on_hover = $contentTicker.data(\"pause-on-hover\") !== undefined ? $contentTicker.data(\"pause-on-hover\") : \"\";\n return {\n pauseOnHover: $pause_on_hover,\n direction: \"horizontal\",\n loop: $loop,\n speed: $speed,\n effect: $effect,\n slidesPerView: $items,\n spaceBetween: $margin,\n grabCursor: $grab_cursor,\n paginationClickable: true,\n autoHeight: true,\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 breakpoints: {\n // when window width is <= 480px\n 480: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n },\n // when window width is <= 640px\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n }\n }\n };\n }\n function autoPlayManager(element, options, event) {\n if (options.autoplay.delay === 0) {\n var _event$autoplay;\n event === null || event === void 0 ? void 0 : (_event$autoplay = event.autoplay) === null || _event$autoplay === void 0 ? void 0 : _event$autoplay.stop();\n }\n if (options.pauseOnHover && options.autoplay.delay !== 0) {\n element.on(\"mouseenter\", function () {\n var _event$autoplay2;\n event === null || event === void 0 ? void 0 : (_event$autoplay2 = event.autoplay) === null || _event$autoplay2 === void 0 ? void 0 : _event$autoplay2.pause();\n });\n element.on(\"mouseleave\", function () {\n var _event$autoplay3;\n event === null || event === void 0 ? void 0 : (_event$autoplay3 = event.autoplay) === null || _event$autoplay3 === void 0 ? void 0 : _event$autoplay3.run();\n });\n }\n }\n var ContentTicker = function ContentTicker($scope, $) {\n var $contentTicker = $scope.find(\".eael-content-ticker\").eq(0),\n contentOptions = get_configurations($contentTicker);\n swiperLoader($contentTicker, contentOptions).then(function (event) {\n autoPlayManager($contentTicker, event, contentOptions);\n });\n var ContentTickerSlider = function ContentTickerSlider(element) {\n var contentTickerElements = $(element).find('.eael-content-ticker');\n if (contentTickerElements.length) {\n contentTickerElements.each(function () {\n var $this = $(this);\n if ($this[0].swiper) {\n $this[0].swiper.destroy(true, true);\n var options = get_configurations($this);\n swiperLoader($this[0], options).then(function (event) {\n autoPlayManager($this, event, options);\n });\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ContentTickerSlider);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-content-ticker.default\", ContentTicker);\n});\n\n//# sourceURL=webpack:///./src/js/view/content-ticker.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n function get_configurations($contentTicker) {\n var $items = $contentTicker.data(\"items\") !== undefined ? $contentTicker.data(\"items\") : 1,\n $items_tablet = $contentTicker.data(\"items-tablet\") !== undefined ? $contentTicker.data(\"items-tablet\") : 1,\n $items_mobile = $contentTicker.data(\"items-mobile\") !== undefined ? $contentTicker.data(\"items-mobile\") : 1,\n $margin = $contentTicker.data(\"margin\") !== undefined ? $contentTicker.data(\"margin\") : 10,\n $margin_tablet = $contentTicker.data(\"margin-tablet\") !== undefined ? $contentTicker.data(\"margin-tablet\") : 10,\n $margin_mobile = $contentTicker.data(\"margin-mobile\") !== undefined ? $contentTicker.data(\"margin-mobile\") : 10,\n $effect = $contentTicker.data(\"effect\") !== undefined ? $contentTicker.data(\"effect\") : \"slide\",\n $speed = $contentTicker.data(\"speed\") !== undefined ? $contentTicker.data(\"speed\") : 400,\n $autoplay = $contentTicker.data(\"autoplay\") !== undefined ? $contentTicker.data(\"autoplay\") : 5000,\n $loop = $contentTicker.data(\"loop\") !== undefined ? $contentTicker.data(\"loop\") : false,\n $grab_cursor = $contentTicker.data(\"grab-cursor\") !== undefined ? $contentTicker.data(\"grab-cursor\") : false,\n $pagination = $contentTicker.data(\"pagination\") !== undefined ? $contentTicker.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $contentTicker.data(\"arrow-next\") !== undefined ? $contentTicker.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $contentTicker.data(\"arrow-prev\") !== undefined ? $contentTicker.data(\"arrow-prev\") : \".swiper-button-prev\",\n $pause_on_hover = $contentTicker.data(\"pause-on-hover\") !== undefined ? $contentTicker.data(\"pause-on-hover\") : \"\";\n return {\n pauseOnHover: $pause_on_hover,\n direction: \"horizontal\",\n loop: $loop,\n speed: $speed,\n effect: $effect,\n slidesPerView: $items,\n spaceBetween: $margin,\n grabCursor: $grab_cursor,\n paginationClickable: true,\n autoHeight: true,\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 breakpoints: {\n // when window width is <= 480px\n 480: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n },\n // when window width is <= 640px\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n }\n }\n };\n }\n function autoPlayManager(element, options, event) {\n if (options.autoplay.delay === 0) {\n var _event$autoplay;\n event === null || event === void 0 || (_event$autoplay = event.autoplay) === null || _event$autoplay === void 0 || _event$autoplay.stop();\n }\n if (options.pauseOnHover && options.autoplay.delay !== 0) {\n element.on(\"mouseenter\", function () {\n var _event$autoplay2;\n event === null || event === void 0 || (_event$autoplay2 = event.autoplay) === null || _event$autoplay2 === void 0 || _event$autoplay2.pause();\n });\n element.on(\"mouseleave\", function () {\n var _event$autoplay3;\n event === null || event === void 0 || (_event$autoplay3 = event.autoplay) === null || _event$autoplay3 === void 0 || _event$autoplay3.run();\n });\n }\n }\n var ContentTicker = function ContentTicker($scope, $) {\n var $contentTicker = $scope.find(\".eael-content-ticker\").eq(0),\n contentOptions = get_configurations($contentTicker);\n swiperLoader($contentTicker, contentOptions).then(function (event) {\n autoPlayManager($contentTicker, event, contentOptions);\n });\n var ContentTickerSlider = function ContentTickerSlider(element) {\n var contentTickerElements = $(element).find('.eael-content-ticker');\n if (contentTickerElements.length) {\n contentTickerElements.each(function () {\n var $this = $(this);\n if ($this[0].swiper) {\n $this[0].swiper.destroy(true, true);\n var options = get_configurations($this);\n swiperLoader($this[0], options).then(function (event) {\n autoPlayManager($this, event, options);\n });\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ContentTickerSlider);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-content-ticker.default\", ContentTicker);\n});\n\n//# sourceURL=webpack:///./src/js/view/content-ticker.js?"); /***/ }) diff --git a/assets/front-end/js/view/general.js b/assets/front-end/js/view/general.js index 332a3f78b..ff01460dd 100644 --- a/assets/front-end/js/view/general.js +++ b/assets/front-end/js/view/general.js @@ -86,207 +86,219 @@ /************************************************************************/ /******/ ({ -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js": /*!**************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***! \**************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayLikeToArray; });\nfunction _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayLikeToArray; });\nfunction _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(r) {\n if (Array.isArray(r)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(r) {\n if (Array.isArray(r)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js": +/*!************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***! + \************************************************************************************************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _classCallCheck; });\nfunction _classCallCheck(a, n) {\n if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\");\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js?"); + +/***/ }), + +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js": /*!*************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***! \*************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(r) {\n if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(r) {\n if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _nonIterableSpread; });\nfunction _nonIterableSpread() {\n 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}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _nonIterableSpread; });\nfunction _nonIterableSpread() {\n 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}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableSpread.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(r) {\n return Object(_arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r) || Object(_iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(r) || Object(_unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(r) || Object(_nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableSpread.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(r) {\n return Object(_arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r) || Object(_iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(r) || Object(_unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(r) || Object(_nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js": /*!************************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***! \************************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a) : void 0;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a) : void 0;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js": -/*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js ***! - \***************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js": +/*!****************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js ***! + \****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\n/**\n * Internal dependencies\n */\n\n\n\n/**\n * Returns a function which, when invoked, will add a hook.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that adds a new hook.\n */\n\nfunction createAddHook(hooks) {\n /**\n * Adds the hook to the appropriate hooks container.\n *\n * @param {string} hookName Name of hook to add\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n * @param {Function} callback Function to call when the hook is run\n * @param {?number} priority Priority of this hook (default=10)\n */\n return function addHook(hookName, namespace, callback) {\n var priority = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 10;\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n }\n\n if ('function' !== typeof callback) {\n // eslint-disable-next-line no-console\n console.error('The hook callback must be a function.');\n return;\n } // Validate numeric priority\n\n\n if ('number' !== typeof priority) {\n // eslint-disable-next-line no-console\n console.error('If specified, the hook priority must be a number.');\n return;\n }\n\n var handler = {\n callback: callback,\n priority: priority,\n namespace: namespace\n };\n\n if (hooks[hookName]) {\n // Find the correct insert index of the new hook.\n var handlers = hooks[hookName].handlers;\n var i;\n\n for (i = handlers.length; i > 0; i--) {\n if (priority >= handlers[i - 1].priority) {\n break;\n }\n }\n\n if (i === handlers.length) {\n // If append, operate via direct assignment.\n handlers[i] = handler;\n } else {\n // Otherwise, insert before index via splice.\n handlers.splice(i, 0, handler);\n } // We may also be currently executing this hook. If the callback\n // we're adding would come after the current callback, there's no\n // problem; otherwise we need to increase the execution index of\n // any other runs by 1 to account for the added element.\n\n\n (hooks.__current || []).forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex++;\n }\n });\n } else {\n // This is the first hook of its type.\n hooks[hookName] = {\n handlers: [handler],\n runs: 0\n };\n }\n\n if (hookName !== 'hookAdded') {\n Object(___WEBPACK_IMPORTED_MODULE_2__[\"doAction\"])('hookAdded', hookName, namespace, callback, priority);\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createAddHook);\n//# sourceMappingURL=createAddHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n\n/**\n * @callback AddHook\n *\n * Adds the hook to the appropriate hooks container.\n *\n * @param {string} hookName Name of hook to add\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n * @param {import('.').Callback} callback Function to call when the hook is run\n * @param {number} [priority=10] Priority of this hook\n */\n\n/**\n * Returns a function which, when invoked, will add a hook.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {AddHook} Function that adds a new hook.\n */\n\nfunction createAddHook(hooks, storeKey) {\n return function addHook(hookName, namespace, callback) {\n var priority = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 10;\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n }\n\n if ('function' !== typeof callback) {\n // eslint-disable-next-line no-console\n console.error('The hook callback must be a function.');\n return;\n } // Validate numeric priority\n\n\n if ('number' !== typeof priority) {\n // eslint-disable-next-line no-console\n console.error('If specified, the hook priority must be a number.');\n return;\n }\n\n var handler = {\n callback: callback,\n priority: priority,\n namespace: namespace\n };\n\n if (hooksStore[hookName]) {\n // Find the correct insert index of the new hook.\n var handlers = hooksStore[hookName].handlers;\n /** @type {number} */\n\n var i;\n\n for (i = handlers.length; i > 0; i--) {\n if (priority >= handlers[i - 1].priority) {\n break;\n }\n }\n\n if (i === handlers.length) {\n // If append, operate via direct assignment.\n handlers[i] = handler;\n } else {\n // Otherwise, insert before index via splice.\n handlers.splice(i, 0, handler);\n } // We may also be currently executing this hook. If the callback\n // we're adding would come after the current callback, there's no\n // problem; otherwise we need to increase the execution index of\n // any other runs by 1 to account for the added element.\n\n\n hooksStore.__current.forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex++;\n }\n });\n } else {\n // This is the first hook of its type.\n hooksStore[hookName] = {\n handlers: [handler],\n runs: 0\n };\n }\n\n if (hookName !== 'hookAdded') {\n hooks.doAction('hookAdded', hookName, namespace, callback, priority);\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createAddHook);\n//# sourceMappingURL=createAddHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js": -/*!*******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js ***! - \*******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js": +/*!********************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js ***! + \********************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return the name of the\n * currently running hook, or `null` if no hook of the given type is currently\n * running.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns the current hook.\n */\nfunction createCurrentHook(hooks) {\n /**\n * Returns the name of the currently running hook, or `null` if no hook of\n * the given type is currently running.\n *\n * @return {?string} The name of the currently running hook, or\n * `null` if no hook is currently running.\n */\n return function currentHook() {\n if (!hooks.__current || !hooks.__current.length) {\n return null;\n }\n\n return hooks.__current[hooks.__current.length - 1].name;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createCurrentHook);\n//# sourceMappingURL=createCurrentHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return the name of the\n * currently running hook, or `null` if no hook of the given type is currently\n * running.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {() => string | null} Function that returns the current hook name or null.\n */\nfunction createCurrentHook(hooks, storeKey) {\n return function currentHook() {\n var _hooksStore$__current, _hooksStore$__current2;\n\n var hooksStore = hooks[storeKey];\n return (_hooksStore$__current = (_hooksStore$__current2 = hooksStore.__current[hooksStore.__current.length - 1]) === null || _hooksStore$__current2 === void 0 ? void 0 : _hooksStore$__current2.name) !== null && _hooksStore$__current !== void 0 ? _hooksStore$__current : null;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createCurrentHook);\n//# sourceMappingURL=createCurrentHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js": -/*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js ***! - \***************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js": +/*!****************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js ***! + \****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n/**\n * Returns a function which, when invoked, will return the number of times a\n * hook has been called.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns a hook's call count.\n */\n\nfunction createDidHook(hooks) {\n /**\n * Returns the number of times an action has been fired.\n *\n * @param {string} hookName The hook name to check.\n *\n * @return {number} The number of times the hook has run.\n */\n return function didHook(hookName) {\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hookName)) {\n return;\n }\n\n return hooks[hookName] && hooks[hookName].runs ? hooks[hookName].runs : 0;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDidHook);\n//# sourceMappingURL=createDidHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n/**\n * @callback DidHook\n *\n * Returns the number of times an action has been fired.\n *\n * @param {string} hookName The hook name to check.\n *\n * @return {number | undefined} The number of times the hook has run.\n */\n\n/**\n * Returns a function which, when invoked, will return the number of times a\n * hook has been called.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {DidHook} Function that returns a hook's call count.\n */\n\nfunction createDidHook(hooks, storeKey) {\n return function didHook(hookName) {\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hookName)) {\n return;\n }\n\n return hooksStore[hookName] && hooksStore[hookName].runs ? hooksStore[hookName].runs : 0;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDidHook);\n//# sourceMappingURL=createDidHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js": -/*!*****************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js ***! - \*****************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js": +/*!******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js ***! + \******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return whether a hook is\n * currently being executed.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns whether a hook is currently\n * being executed.\n */\nfunction createDoingHook(hooks) {\n /**\n * Returns whether a hook is currently being executed.\n *\n * @param {?string} hookName The name of the hook to check for. If\n * omitted, will check for any hook being executed.\n *\n * @return {boolean} Whether the hook is being executed.\n */\n return function doingHook(hookName) {\n // If the hookName was not passed, check for any current hook.\n if ('undefined' === typeof hookName) {\n return 'undefined' !== typeof hooks.__current[0];\n } // Return the __current hook.\n\n\n return hooks.__current[0] ? hookName === hooks.__current[0].name : false;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDoingHook);\n//# sourceMappingURL=createDoingHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * @callback DoingHook\n * Returns whether a hook is currently being executed.\n *\n * @param {string} [hookName] The name of the hook to check for. If\n * omitted, will check for any hook being executed.\n *\n * @return {boolean} Whether the hook is being executed.\n */\n\n/**\n * Returns a function which, when invoked, will return whether a hook is\n * currently being executed.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {DoingHook} Function that returns whether a hook is currently\n * being executed.\n */\nfunction createDoingHook(hooks, storeKey) {\n return function doingHook(hookName) {\n var hooksStore = hooks[storeKey]; // If the hookName was not passed, check for any current hook.\n\n if ('undefined' === typeof hookName) {\n return 'undefined' !== typeof hooksStore.__current[0];\n } // Return the __current hook.\n\n\n return hooksStore.__current[0] ? hookName === hooksStore.__current[0].name : false;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDoingHook);\n//# sourceMappingURL=createDoingHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js": -/*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js ***! - \***************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js": +/*!****************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js ***! + \****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return whether any handlers are\n * attached to a particular hook.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns whether any handlers are\n * attached to a particular hook and optional namespace.\n */\nfunction createHasHook(hooks) {\n /**\n * Returns whether any handlers are attached for the given hookName and optional namespace.\n *\n * @param {string} hookName The name of the hook to check for.\n * @param {?string} namespace Optional. The unique namespace identifying the callback\n * in the form `vendor/plugin/function`.\n *\n * @return {boolean} Whether there are handlers that are attached to the given hook.\n */\n return function hasHook(hookName, namespace) {\n // Use the namespace if provided.\n if ('undefined' !== typeof namespace) {\n return hookName in hooks && hooks[hookName].handlers.some(function (hook) {\n return hook.namespace === namespace;\n });\n }\n\n return hookName in hooks;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHasHook);\n//# sourceMappingURL=createHasHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * @callback HasHook\n *\n * Returns whether any handlers are attached for the given hookName and optional namespace.\n *\n * @param {string} hookName The name of the hook to check for.\n * @param {string} [namespace] Optional. The unique namespace identifying the callback\n * in the form `vendor/plugin/function`.\n *\n * @return {boolean} Whether there are handlers that are attached to the given hook.\n */\n\n/**\n * Returns a function which, when invoked, will return whether any handlers are\n * attached to a particular hook.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {HasHook} Function that returns whether any handlers are\n * attached to a particular hook and optional namespace.\n */\nfunction createHasHook(hooks, storeKey) {\n return function hasHook(hookName, namespace) {\n var hooksStore = hooks[storeKey]; // Use the namespace if provided.\n\n if ('undefined' !== typeof namespace) {\n return hookName in hooksStore && hooksStore[hookName].handlers.some(function (hook) {\n return hook.namespace === namespace;\n });\n }\n\n return hookName in hooksStore;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHasHook);\n//# sourceMappingURL=createHasHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js": -/*!*************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js ***! - \*************************************************************************************************************/ -/*! exports provided: default */ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js": +/*!**************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js ***! + \**************************************************************************************************************/ +/*! exports provided: _Hooks, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _createAddHook__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createAddHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js\");\n/* harmony import */ var _createRemoveHook__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./createRemoveHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js\");\n/* harmony import */ var _createHasHook__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./createHasHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js\");\n/* harmony import */ var _createRunHook__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./createRunHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js\");\n/* harmony import */ var _createCurrentHook__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./createCurrentHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js\");\n/* harmony import */ var _createDoingHook__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./createDoingHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js\");\n/* harmony import */ var _createDidHook__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./createDidHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js\");\n/**\n * Internal dependencies\n */\n\n\n\n\n\n\n\n/**\n * Returns an instance of the hooks object.\n *\n * @return {Object} Object that contains all hooks.\n */\n\nfunction createHooks() {\n var actions = Object.create(null);\n var filters = Object.create(null);\n actions.__current = [];\n filters.__current = [];\n return {\n addAction: Object(_createAddHook__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(actions),\n addFilter: Object(_createAddHook__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(filters),\n removeAction: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(actions),\n removeFilter: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(filters),\n hasAction: Object(_createHasHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(actions),\n hasFilter: Object(_createHasHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(filters),\n removeAllActions: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(actions, true),\n removeAllFilters: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(filters, true),\n doAction: Object(_createRunHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(actions),\n applyFilters: Object(_createRunHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(filters, true),\n currentAction: Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(actions),\n currentFilter: Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(filters),\n doingAction: Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(actions),\n doingFilter: Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(filters),\n didAction: Object(_createDidHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(actions),\n didFilter: Object(_createDidHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(filters),\n actions: actions,\n filters: filters\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHooks);\n//# sourceMappingURL=createHooks.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Hooks\", function() { return _Hooks; });\n/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js\");\n/* harmony import */ var _createAddHook__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./createAddHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js\");\n/* harmony import */ var _createRemoveHook__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./createRemoveHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js\");\n/* harmony import */ var _createHasHook__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./createHasHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js\");\n/* harmony import */ var _createRunHook__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./createRunHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js\");\n/* harmony import */ var _createCurrentHook__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./createCurrentHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js\");\n/* harmony import */ var _createDoingHook__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./createDoingHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js\");\n/* harmony import */ var _createDidHook__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./createDidHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js\");\n\n\n/**\n * Internal dependencies\n */\n\n\n\n\n\n\n\n/**\n * Internal class for constructing hooks. Use `createHooks()` function\n *\n * Note, it is necessary to expose this class to make its type public.\n *\n * @private\n */\n\nvar _Hooks = function _Hooks() {\n Object(_babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(this, _Hooks);\n\n /** @type {import('.').Store} actions */\n this.actions = Object.create(null);\n this.actions.__current = [];\n /** @type {import('.').Store} filters */\n\n this.filters = Object.create(null);\n this.filters.__current = [];\n this.addAction = Object(_createAddHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(this, 'actions');\n this.addFilter = Object(_createAddHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(this, 'filters');\n this.removeAction = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'actions');\n this.removeFilter = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'filters');\n this.hasAction = Object(_createHasHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(this, 'actions');\n this.hasFilter = Object(_createHasHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(this, 'filters');\n this.removeAllActions = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'actions', true);\n this.removeAllFilters = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'filters', true);\n this.doAction = Object(_createRunHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this, 'actions');\n this.applyFilters = Object(_createRunHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this, 'filters', true);\n this.currentAction = Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(this, 'actions');\n this.currentFilter = Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(this, 'filters');\n this.doingAction = Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(this, 'actions');\n this.doingFilter = Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(this, 'filters');\n this.didAction = Object(_createDidHook__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(this, 'actions');\n this.didFilter = Object(_createDidHook__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(this, 'filters');\n};\n/** @typedef {_Hooks} Hooks */\n\n/**\n * Returns an instance of the hooks object.\n *\n * @return {Hooks} A Hooks instance.\n */\n\nfunction createHooks() {\n return new _Hooks();\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHooks);\n//# sourceMappingURL=createHooks.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js": -/*!******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js ***! - \******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js": +/*!*******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js ***! + \*******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\n/**\n * Internal dependencies\n */\n\n\n\n/**\n * Returns a function which, when invoked, will remove a specified hook or all\n * hooks by the given name.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n * @param {boolean} removeAll Whether to remove all callbacks for a hookName, without regard to namespace. Used to create `removeAll*` functions.\n *\n * @return {Function} Function that removes hooks.\n */\n\nfunction createRemoveHook(hooks, removeAll) {\n /**\n * Removes the specified callback (or all callbacks) from the hook with a\n * given hookName and namespace.\n *\n * @param {string} hookName The name of the hook to modify.\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n *\n * @return {number} The number of callbacks removed.\n */\n return function removeHook(hookName, namespace) {\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!removeAll && !Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n } // Bail if no hooks exist by this name\n\n\n if (!hooks[hookName]) {\n return 0;\n }\n\n var handlersRemoved = 0;\n\n if (removeAll) {\n handlersRemoved = hooks[hookName].handlers.length;\n hooks[hookName] = {\n runs: hooks[hookName].runs,\n handlers: []\n };\n } else {\n // Try to find the specified callback to remove.\n var handlers = hooks[hookName].handlers;\n\n var _loop = function _loop(i) {\n if (handlers[i].namespace === namespace) {\n handlers.splice(i, 1);\n handlersRemoved++; // This callback may also be part of a hook that is\n // currently executing. If the callback we're removing\n // comes after the current callback, there's no problem;\n // otherwise we need to decrease the execution index of any\n // other runs by 1 to account for the removed element.\n\n (hooks.__current || []).forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex--;\n }\n });\n }\n };\n\n for (var i = handlers.length - 1; i >= 0; i--) {\n _loop(i);\n }\n }\n\n if (hookName !== 'hookRemoved') {\n Object(___WEBPACK_IMPORTED_MODULE_2__[\"doAction\"])('hookRemoved', hookName, namespace);\n }\n\n return handlersRemoved;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRemoveHook);\n//# sourceMappingURL=createRemoveHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n\n/**\n * @callback RemoveHook\n * Removes the specified callback (or all callbacks) from the hook with a given hookName\n * and namespace.\n *\n * @param {string} hookName The name of the hook to modify.\n * @param {string} namespace The unique namespace identifying the callback in the\n * form `vendor/plugin/function`.\n *\n * @return {number | undefined} The number of callbacks removed.\n */\n\n/**\n * Returns a function which, when invoked, will remove a specified hook or all\n * hooks by the given name.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n * @param {boolean} [removeAll=false] Whether to remove all callbacks for a hookName,\n * without regard to namespace. Used to create\n * `removeAll*` functions.\n *\n * @return {RemoveHook} Function that removes hooks.\n */\n\nfunction createRemoveHook(hooks, storeKey) {\n var removeAll = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n return function removeHook(hookName, namespace) {\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!removeAll && !Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n } // Bail if no hooks exist by this name\n\n\n if (!hooksStore[hookName]) {\n return 0;\n }\n\n var handlersRemoved = 0;\n\n if (removeAll) {\n handlersRemoved = hooksStore[hookName].handlers.length;\n hooksStore[hookName] = {\n runs: hooksStore[hookName].runs,\n handlers: []\n };\n } else {\n // Try to find the specified callback to remove.\n var handlers = hooksStore[hookName].handlers;\n\n var _loop = function _loop(i) {\n if (handlers[i].namespace === namespace) {\n handlers.splice(i, 1);\n handlersRemoved++; // This callback may also be part of a hook that is\n // currently executing. If the callback we're removing\n // comes after the current callback, there's no problem;\n // otherwise we need to decrease the execution index of any\n // other runs by 1 to account for the removed element.\n\n hooksStore.__current.forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex--;\n }\n });\n }\n };\n\n for (var i = handlers.length - 1; i >= 0; i--) {\n _loop(i);\n }\n }\n\n if (hookName !== 'hookRemoved') {\n hooks.doAction('hookRemoved', hookName, namespace);\n }\n\n return handlersRemoved;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRemoveHook);\n//# sourceMappingURL=createRemoveHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js": -/*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js ***! - \***************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js": +/*!****************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js ***! + \****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\");\n\n\n/**\n * Returns a function which, when invoked, will execute all callbacks\n * registered to a hook of the specified type, optionally returning the final\n * value of the call chain.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n * @param {?boolean} returnFirstArg Whether each hook callback is expected to\n * return its first argument.\n *\n * @return {Function} Function that runs hook callbacks.\n */\nfunction createRunHook(hooks, returnFirstArg) {\n /**\n * Runs all callbacks for the specified hook.\n *\n * @param {string} hookName The name of the hook to run.\n * @param {...*} args Arguments to pass to the hook callbacks.\n *\n * @return {*} Return value of runner, if applicable.\n */\n return function runHooks(hookName) {\n if (!hooks[hookName]) {\n hooks[hookName] = {\n handlers: [],\n runs: 0\n };\n }\n\n hooks[hookName].runs++;\n var handlers = hooks[hookName].handlers; // The following code is stripped from production builds.\n\n if (true) {\n // Handle any 'all' hooks registered.\n if ('hookAdded' !== hookName && hooks.all) {\n handlers.push.apply(handlers, Object(_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hooks.all.handlers));\n }\n }\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n if (!handlers || !handlers.length) {\n return returnFirstArg ? args[0] : undefined;\n }\n\n var hookInfo = {\n name: hookName,\n currentIndex: 0\n };\n\n hooks.__current.push(hookInfo);\n\n while (hookInfo.currentIndex < handlers.length) {\n var handler = handlers[hookInfo.currentIndex];\n var result = handler.callback.apply(null, args);\n\n if (returnFirstArg) {\n args[0] = result;\n }\n\n hookInfo.currentIndex++;\n }\n\n hooks.__current.pop();\n\n if (returnFirstArg) {\n return args[0];\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRunHook);\n//# sourceMappingURL=createRunHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\");\n\n\n/**\n * Returns a function which, when invoked, will execute all callbacks\n * registered to a hook of the specified type, optionally returning the final\n * value of the call chain.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n * @param {boolean} [returnFirstArg=false] Whether each hook callback is expected to\n * return its first argument.\n *\n * @return {(hookName:string, ...args: unknown[]) => unknown} Function that runs hook callbacks.\n */\nfunction createRunHook(hooks, storeKey) {\n var returnFirstArg = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n return function runHooks(hookName) {\n var hooksStore = hooks[storeKey];\n\n if (!hooksStore[hookName]) {\n hooksStore[hookName] = {\n handlers: [],\n runs: 0\n };\n }\n\n hooksStore[hookName].runs++;\n var handlers = hooksStore[hookName].handlers; // The following code is stripped from production builds.\n\n if (true) {\n // Handle any 'all' hooks registered.\n if ('hookAdded' !== hookName && hooksStore.all) {\n handlers.push.apply(handlers, Object(_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hooksStore.all.handlers));\n }\n }\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n if (!handlers || !handlers.length) {\n return returnFirstArg ? args[0] : undefined;\n }\n\n var hookInfo = {\n name: hookName,\n currentIndex: 0\n };\n\n hooksStore.__current.push(hookInfo);\n\n while (hookInfo.currentIndex < handlers.length) {\n var handler = handlers[hookInfo.currentIndex];\n var result = handler.callback.apply(null, args);\n\n if (returnFirstArg) {\n args[0] = result;\n }\n\n hookInfo.currentIndex++;\n }\n\n hooksStore.__current.pop();\n\n if (returnFirstArg) {\n return args[0];\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRunHook);\n//# sourceMappingURL=createRunHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js": -/*!*******************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js ***! - \*******************************************************************************************************/ -/*! exports provided: createHooks, addAction, addFilter, removeAction, removeFilter, hasAction, hasFilter, removeAllActions, removeAllFilters, doAction, applyFilters, currentAction, currentFilter, doingAction, doingFilter, didAction, didFilter, actions, filters */ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js": +/*!********************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js ***! + \********************************************************************************************************/ +/*! exports provided: defaultHooks, createHooks, addAction, addFilter, removeAction, removeFilter, hasAction, hasFilter, removeAllActions, removeAllFilters, doAction, applyFilters, currentAction, currentFilter, doingAction, doingFilter, didAction, didFilter, actions, filters */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addAction\", function() { return addAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addFilter\", function() { return addFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAction\", function() { return removeAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeFilter\", function() { return removeFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasAction\", function() { return hasAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasFilter\", function() { return hasFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllActions\", function() { return removeAllActions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllFilters\", function() { return removeAllFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doAction\", function() { return doAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyFilters\", function() { return applyFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentAction\", function() { return currentAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentFilter\", function() { return currentFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingAction\", function() { return doingAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingFilter\", function() { return doingFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didAction\", function() { return didAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didFilter\", function() { return didFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"actions\", function() { return actions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filters\", function() { return filters; });\n/* harmony import */ var _createHooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createHooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createHooks\", function() { return _createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/**\n * Internal dependencies\n */\n\n\nvar _createHooks = Object(_createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(),\n addAction = _createHooks.addAction,\n addFilter = _createHooks.addFilter,\n removeAction = _createHooks.removeAction,\n removeFilter = _createHooks.removeFilter,\n hasAction = _createHooks.hasAction,\n hasFilter = _createHooks.hasFilter,\n removeAllActions = _createHooks.removeAllActions,\n removeAllFilters = _createHooks.removeAllFilters,\n doAction = _createHooks.doAction,\n applyFilters = _createHooks.applyFilters,\n currentAction = _createHooks.currentAction,\n currentFilter = _createHooks.currentFilter,\n doingAction = _createHooks.doingAction,\n doingFilter = _createHooks.doingFilter,\n didAction = _createHooks.didAction,\n didFilter = _createHooks.didFilter,\n actions = _createHooks.actions,\n filters = _createHooks.filters;\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultHooks\", function() { return defaultHooks; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addAction\", function() { return addAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addFilter\", function() { return addFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAction\", function() { return removeAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeFilter\", function() { return removeFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasAction\", function() { return hasAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasFilter\", function() { return hasFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllActions\", function() { return removeAllActions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllFilters\", function() { return removeAllFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doAction\", function() { return doAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyFilters\", function() { return applyFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentAction\", function() { return currentAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentFilter\", function() { return currentFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingAction\", function() { return doingAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingFilter\", function() { return doingFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didAction\", function() { return didAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didFilter\", function() { return didFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"actions\", function() { return actions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filters\", function() { return filters; });\n/* harmony import */ var _createHooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createHooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createHooks\", function() { return _createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/**\n * Internal dependencies\n */\n\n/** @typedef {(...args: any[])=>any} Callback */\n\n/**\n * @typedef Handler\n * @property {Callback} callback The callback\n * @property {string} namespace The namespace\n * @property {number} priority The namespace\n */\n\n/**\n * @typedef Hook\n * @property {Handler[]} handlers Array of handlers\n * @property {number} runs Run counter\n */\n\n/**\n * @typedef Current\n * @property {string} name Hook name\n * @property {number} currentIndex The index\n */\n\n/**\n * @typedef {Record & {__current: Current[]}} Store\n */\n\n/**\n * @typedef {'actions' | 'filters'} StoreKey\n */\n\n/**\n * @typedef {import('./createHooks').Hooks} Hooks\n */\n\nvar defaultHooks = Object(_createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\nvar addAction = defaultHooks.addAction,\n addFilter = defaultHooks.addFilter,\n removeAction = defaultHooks.removeAction,\n removeFilter = defaultHooks.removeFilter,\n hasAction = defaultHooks.hasAction,\n hasFilter = defaultHooks.hasFilter,\n removeAllActions = defaultHooks.removeAllActions,\n removeAllFilters = defaultHooks.removeAllFilters,\n doAction = defaultHooks.doAction,\n applyFilters = defaultHooks.applyFilters,\n currentAction = defaultHooks.currentAction,\n currentFilter = defaultHooks.currentFilter,\n doingAction = defaultHooks.doingAction,\n doingFilter = defaultHooks.doingFilter,\n didAction = defaultHooks.didAction,\n didFilter = defaultHooks.didFilter,\n actions = defaultHooks.actions,\n filters = defaultHooks.filters;\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js": -/*!******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js ***! - \******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js": +/*!*******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js ***! + \*******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a hookName string.\n *\n * @param {string} hookName The hook name to validate. Should be a non empty string containing\n * only numbers, letters, dashes, periods and underscores. Also,\n * the hook name cannot begin with `__`.\n *\n * @return {boolean} Whether the hook name is valid.\n */\nfunction validateHookName(hookName) {\n if ('string' !== typeof hookName || '' === hookName) {\n // eslint-disable-next-line no-console\n console.error('The hook name must be a non-empty string.');\n return false;\n }\n\n if (/^__/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name cannot begin with `__`.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateHookName);\n//# sourceMappingURL=validateHookName.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a hookName string.\n *\n * @param {string} hookName The hook name to validate. Should be a non empty string containing\n * only numbers, letters, dashes, periods and underscores. Also,\n * the hook name cannot begin with `__`.\n *\n * @return {boolean} Whether the hook name is valid.\n */\nfunction validateHookName(hookName) {\n if ('string' !== typeof hookName || '' === hookName) {\n // eslint-disable-next-line no-console\n console.error('The hook name must be a non-empty string.');\n return false;\n }\n\n if (/^__/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name cannot begin with `__`.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateHookName);\n//# sourceMappingURL=validateHookName.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js": -/*!*******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js ***! - \*******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js": +/*!********************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js ***! + \********************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace string.\n *\n * @param {string} namespace The namespace to validate - should take the form\n * `vendor/plugin/function`.\n *\n * @return {boolean} Whether the namespace is valid.\n */\nfunction validateNamespace(namespace) {\n if ('string' !== typeof namespace || '' === namespace) {\n // eslint-disable-next-line no-console\n console.error('The namespace must be a non-empty string.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.\\-\\/]*$/.test(namespace)) {\n // eslint-disable-next-line no-console\n console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateNamespace);\n//# sourceMappingURL=validateNamespace.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace string.\n *\n * @param {string} namespace The namespace to validate - should take the form\n * `vendor/plugin/function`.\n *\n * @return {boolean} Whether the namespace is valid.\n */\nfunction validateNamespace(namespace) {\n if ('string' !== typeof namespace || '' === namespace) {\n // eslint-disable-next-line no-console\n console.error('The namespace must be a non-empty string.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.\\-\\/]*$/.test(namespace)) {\n // eslint-disable-next-line no-console\n console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateNamespace);\n//# sourceMappingURL=validateNamespace.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js?"); /***/ }), @@ -298,7 +310,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.eael = window.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\neael.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n eael.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n eael.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n eael.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n eael.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n eael.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n eael.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\neael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\neael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.eael.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n eael.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (eael.isEditMode) {\n eael.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n eael.getToken = function () {\n if (localize.nonce && !eael.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n eael.noncegenerated = true;\n }\n }\n });\n }\n };\n eael.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tabs.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.eael = window.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\neael.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n eael.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n eael.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n eael.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n eael.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n eael.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n eael.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\neael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\neael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.eael.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n eael.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (eael.isEditMode) {\n eael.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n eael.getToken = function () {\n if (localize.nonce && !eael.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n eael.noncegenerated = true;\n }\n }\n });\n }\n };\n eael.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tabs.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); /***/ }) diff --git a/assets/front-end/js/view/general.min.js b/assets/front-end/js/view/general.min.js index 29ff76f05..6f61a47d3 100644 --- a/assets/front-end/js/view/general.min.js +++ b/assets/front-end/js/view/general.min.js @@ -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=101)}({101:function(e,t,r){"use strict";r.r(t);var n=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e){return function(t,r,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var l={callback:i,priority:a,namespace:r};if(e[t]){var c,s=e[t].handlers;for(c=s.length;c>0&&!(a>=s[c-1].priority);c--);c===s.length?s[c]=l:s.splice(c,0,l),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=c&&e.currentIndex++}))}else e[t]={handlers:[l],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var l=e[r].handlers,c=function(t){l[t].namespace===i&&(l.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},s=l.length-1;s>=0;s--)c(s);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var l=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var c=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var l=a.data("custom-id-offset");l=l?parseFloat(l):0,e("html, body").animate({scrollTop:e(o).offset().top-l},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(r)&&n(i))if("function"==typeof a)if("number"==typeof s){var c={callback:a,priority:s,namespace:i};if(l[r]){var u,d=l[r].handlers;for(u=d.length;u>0&&!(s>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===r&&e.currentIndex>=u&&e.currentIndex++}))}else l[r]={handlers:[c],runs:0};"hookAdded"!==r&&e.doAction("hookAdded",r,i,a,s)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,a){var s=e[t];if(o(i)&&(r||n(a))){if(!s[i])return 0;var l=0;if(r)l=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else for(var c=s[i].handlers,u=function(e){c[e].namespace===a&&(c.splice(e,1),l++,s.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,a),l}}};var s=function(e,t){return function(r,n){var o=e[t];return void 0!==n?r in o&&o[r].handlers.some((function(e){return e.namespace===n})):r in o}};var l=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(n){var o=e[t];o[n]||(o[n]={handlers:[],runs:0}),o[n].runs++;var i=o[n].handlers;for(var a=arguments.length,s=new Array(a>1?a-1:0),l=1;l0){var s=a.data("custom-id-offset");s=s?parseFloat(s):0,e("html, body").animate({scrollTop:e(o).offset().top-s},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t .elementor-widget-container\") : \"body .eael_hover_effect[data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\"),\n $hoverSelector = $(hoverSelector);\n\n //Opacity\n var $opacityVal = $Opacity ? (_$Opacity = $Opacity) === null || _$Opacity === void 0 ? void 0 : _$Opacity.opacity : '1';\n\n //Offset\n var $offsetX = (_$eaelOffsetTop = $eaelOffsetTop) !== null && _$eaelOffsetTop !== void 0 && _$eaelOffsetTop.size ? \"translateX(\".concat($eaelOffsetTop.size).concat($eaelOffsetTop.unit, \")\") : 'translateX(0)';\n var $offsetY = (_$eaelOffsetLeft = $eaelOffsetLeft) !== null && _$eaelOffsetLeft !== void 0 && _$eaelOffsetLeft.size ? \"translateY(\".concat($eaelOffsetLeft.size).concat($eaelOffsetLeft.unit, \")\") : 'translateY(0)';\n\n //Offset Hover\n var $offsetHoverX = (_$eaelOffsetHoverTop = $eaelOffsetHoverTop) !== null && _$eaelOffsetHoverTop !== void 0 && _$eaelOffsetHoverTop.size ? \"translateX(\".concat($eaelOffsetHoverTop.size).concat($eaelOffsetHoverTop.unit, \")\") : 'translateX(0)';\n var $offsetHoverY = (_$eaelOffsetHoverLeft = $eaelOffsetHoverLeft) !== null && _$eaelOffsetHoverLeft !== void 0 && _$eaelOffsetHoverLeft.size ? \"translateY(\".concat($eaelOffsetHoverLeft.size).concat($eaelOffsetHoverLeft.unit, \")\") : 'translateY(0)';\n\n //Transitions\n var $eaelDurationVal = $eaelDuration ? (_$eaelDuration = $eaelDuration) === null || _$eaelDuration === void 0 ? void 0 : _$eaelDuration.transitionDuration : '0';\n var $eaelDelayVal = $eaelDelay ? (_$eaelDelay = $eaelDelay) === null || _$eaelDelay === void 0 ? void 0 : _$eaelDelay.transitionDelay : '0';\n var $eaelEasingVal = $eaelEasing ? (_$eaelEasing = $eaelEasing) === null || _$eaelEasing === void 0 ? void 0 : _$eaelEasing.transitionEasing : '0';\n\n //Transitions Hover\n var $eaelDurationHoverVal = $eaelHoverDuration ? (_$eaelHoverDuration = $eaelHoverDuration) === null || _$eaelHoverDuration === void 0 ? void 0 : _$eaelHoverDuration.transitionDuration : '0';\n var $eaelDelayHoverVal = $eaelHoverDelay ? (_$eaelHoverDelay = $eaelHoverDelay) === null || _$eaelHoverDelay === void 0 ? void 0 : _$eaelHoverDelay.transitionDelay : '0';\n var $eaelEasingHoverVal = $eaelHoverEasing ? (_$eaelHoverEasing = $eaelHoverEasing) === null || _$eaelHoverEasing === void 0 ? void 0 : _$eaelHoverEasing.transitionEasing : '0';\n\n //Filter\n var $blur = (_$eaelBlurEffect = $eaelBlurEffect) !== null && _$eaelBlurEffect !== void 0 && _$eaelBlurEffect.blur ? \"blur(\".concat($eaelBlurEffect.blur, \"px)\") : 'blur(0px)';\n var $contrast = (_$eaelContrastEffect = $eaelContrastEffect) !== null && _$eaelContrastEffect !== void 0 && _$eaelContrastEffect.contrast ? \"contrast(\".concat($eaelContrastEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscale = (_$eaelGrayscaleEffect = $eaelGrayscaleEffect) !== null && _$eaelGrayscaleEffect !== void 0 && _$eaelGrayscaleEffect.grayscale ? \"grayscale(\".concat($eaelGrayscaleEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invert = (_$eaelInvertEffect = $eaelInvertEffect) !== null && _$eaelInvertEffect !== void 0 && _$eaelInvertEffect.invert ? \"invert(\".concat($eaelInvertEffect.invert, \"%)\") : 'invert(0%)';\n var $saturate = (_$eaelSaturateEffect = $eaelSaturateEffect) !== null && _$eaelSaturateEffect !== void 0 && _$eaelSaturateEffect.saturate ? \"saturate(\".concat($eaelSaturateEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepia = (_$eaelSepiaEffect = $eaelSepiaEffect) !== null && _$eaelSepiaEffect !== void 0 && _$eaelSepiaEffect.sepia ? \"sepia(\".concat($eaelSepiaEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Rotate\n var $rotateX = (_$eaelRotateEffect = $eaelRotateEffect) !== null && _$eaelRotateEffect !== void 0 && _$eaelRotateEffect.rotate_x ? \"rotateX(\".concat($eaelRotateEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateY = (_$eaelRotateEffect2 = $eaelRotateEffect) !== null && _$eaelRotateEffect2 !== void 0 && _$eaelRotateEffect2.rotate_y ? \"rotateY(\".concat($eaelRotateEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZ = (_$eaelRotateEffect3 = $eaelRotateEffect) !== null && _$eaelRotateEffect3 !== void 0 && _$eaelRotateEffect3.rotate_z ? \"rotateZ(\".concat($eaelRotateEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleX = (_$eaelScaleEffect = $eaelScaleEffect) !== null && _$eaelScaleEffect !== void 0 && _$eaelScaleEffect.scale_x ? \"scaleX(\".concat($eaelScaleEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleY = (_$eaelScaleEffect2 = $eaelScaleEffect) !== null && _$eaelScaleEffect2 !== void 0 && _$eaelScaleEffect2.scale_y ? \"scaleY(\".concat($eaelScaleEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewX = (_$eaelSkewEffect = $eaelSkewEffect) !== null && _$eaelSkewEffect !== void 0 && _$eaelSkewEffect.skew_x ? \"skewX(\".concat($eaelSkewEffect.skew_x, \"deg)\") : 'skewX(0deg)';\n var $skewY = (_$eaelSkewEffect2 = $eaelSkewEffect) !== null && _$eaelSkewEffect2 !== void 0 && _$eaelSkewEffect2.skew_y ? \"skewY(\".concat($eaelSkewEffect.skew_y, \"deg)\") : 'skewY(0deg)';\n\n //Hover\n var $opacityHoverVal = $opacityHover ? (_$opacityHover = $opacityHover) === null || _$opacityHover === void 0 ? void 0 : _$opacityHover.opacity : '1';\n //Rotate\n var $rotateXHover = (_$eaelRotateHoverEffe = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe !== void 0 && _$eaelRotateHoverEffe.rotate_x ? \"rotateX(\".concat($eaelRotateHoverEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateYHover = (_$eaelRotateHoverEffe2 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe2 !== void 0 && _$eaelRotateHoverEffe2.rotate_y ? \"rotateY(\".concat($eaelRotateHoverEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZHover = (_$eaelRotateHoverEffe3 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe3 !== void 0 && _$eaelRotateHoverEffe3.rotate_z ? \"rotateZ(\".concat($eaelRotateHoverEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleXHover = (_$eaelScaleHoverEffec = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec !== void 0 && _$eaelScaleHoverEffec.scale_x ? \"scaleX(\".concat($eaelScaleHoverEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleYHover = (_$eaelScaleHoverEffec2 = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec2 !== void 0 && _$eaelScaleHoverEffec2.scale_y ? \"scaleY(\".concat($eaelScaleHoverEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewXHover = (_$eaelSkewHoverEffect = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect !== void 0 && _$eaelSkewHoverEffect.skew_x ? \"skewX(\".concat($eaelSkewHoverEffect.skew_x, \"deg)\") : 'skewX(0)';\n var $skewYHover = (_$eaelSkewHoverEffect2 = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect2 !== void 0 && _$eaelSkewHoverEffect2.skew_y ? \"skewY(\".concat($eaelSkewHoverEffect.skew_y, \"deg)\") : 'skewY(0)';\n\n //Filter Hover\n var $blurHover = (_$eaelBurHoverEffect = $eaelBurHoverEffect) !== null && _$eaelBurHoverEffect !== void 0 && _$eaelBurHoverEffect.blur ? \"blur(\".concat($eaelBurHoverEffect.blur, \"px)\") : 'blur(0px)';\n var $contrastHover = (_$eaelContrastHoverEf = $eaelContrastHoverEffect) !== null && _$eaelContrastHoverEf !== void 0 && _$eaelContrastHoverEf.contrast ? \"contrast(\".concat($eaelContrastHoverEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscaleHover = (_$eaelGrayscalHoverEf = $eaelGrayscalHoverEffect) !== null && _$eaelGrayscalHoverEf !== void 0 && _$eaelGrayscalHoverEf.grayscale ? \"grayscale(\".concat($eaelGrayscalHoverEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invertHover = (_$eaelInvertHoverEffe = $eaelInvertHoverEffect) !== null && _$eaelInvertHoverEffe !== void 0 && _$eaelInvertHoverEffe.invert ? \"invert(\".concat($eaelInvertHoverEffect.invert, \"%)\") : 'invert(0%)';\n var $saturateHover = (_$eaelSaturateHoverEf = $eaelSaturateHoverEffect) !== null && _$eaelSaturateHoverEf !== void 0 && _$eaelSaturateHoverEf.saturate ? \"saturate(\".concat($eaelSaturateHoverEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepiaHover = (_$eaelSepiaHoverEffec = $eaelSepiaHoverEffect) !== null && _$eaelSepiaHoverEffec !== void 0 && _$eaelSepiaHoverEffec.sepia ? \"sepia(\".concat($eaelSepiaHoverEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Normal\n var normalStyles = {\n \"transform\": \"\".concat($rotateX, \" \").concat($rotateY, \" \").concat($rotateZ, \" \").concat($scaleX, \" \").concat($scaleY, \" \").concat($skewX, \" \").concat($skewY, \" \").concat($offsetX, \" \").concat($offsetY),\n \"opacity\": $opacityVal,\n \"filter\": \"\".concat($blur, \" \").concat($contrast, \" \").concat($grayscale, \" \").concat($invert, \" \").concat($saturate, \" \").concat($sepia),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingVal,\n \"z-index\": 1\n };\n\n //Hover\n var hoverStyles = {\n 'opacity': $opacityHoverVal,\n 'filter': \"\".concat($blurHover, \" \").concat($contrastHover, \" \").concat($grayscaleHover, \" \").concat($invertHover, \" \").concat($saturateHover, \" \").concat($sepiaHover),\n \"transform\": \"\".concat($rotateXHover, \" \").concat($rotateYHover, \" \").concat($rotateZHover, \" \").concat($scaleXHover, \" \").concat($scaleYHover, \" \").concat($skewXHover, \" \").concat($skewYHover, \" \").concat($offsetHoverX, \" \").concat($offsetHoverY),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationHoverVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayHoverVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingHoverVal,\n \"z-index\": 2\n };\n if (window.isEditMode && $enabledElementList.includes($scopeId) || !window.isEditMode && $hoverSelector.length) {\n $hoverSelector.hover(function () {\n $(this).css(hoverStyles);\n }, function () {\n $(this).css(normalStyles);\n });\n $hoverSelector.css(normalStyles);\n }\n\n //Tilt Effect\n if ($eaelTilt === 'eael_tilt') {\n $(\".elementor-element-\".concat($scopeId)).mousemove(function (e) {\n var cox = (e.pageX - $(this).offset().left - $(this).width() / 2) / 20;\n var coy = ($(this).height() / 2 - (e.pageY - $(this).offset().top)) / 20;\n $(this).find('.elementor-widget-container').css('transform', 'perspective(500px) rotateY(' + cox + 'deg) rotateX(' + coy + 'deg)');\n });\n $(\".elementor-element-\".concat($scopeId)).mouseleave(function (e) {\n $(this).find('.elementor-widget-container').css('transform', 'rotateY(0) rotateX(0)');\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelHoverEffect')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", HoverEffectHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/hover-effect.js?"); +eval("var HoverEffectHandler = function HoverEffectHandler($scope, $) {\n var _$Opacity, _$eaelOffsetTop, _$eaelOffsetLeft, _$eaelOffsetHoverTop, _$eaelOffsetHoverLeft, _$eaelDuration, _$eaelDelay, _$eaelEasing, _$eaelHoverDuration, _$eaelHoverDelay, _$eaelHoverEasing, _$eaelBlurEffect, _$eaelContrastEffect, _$eaelGrayscaleEffect, _$eaelInvertEffect, _$eaelSaturateEffect, _$eaelSepiaEffect, _$eaelRotateEffect, _$eaelRotateEffect2, _$eaelRotateEffect3, _$eaelScaleEffect, _$eaelScaleEffect2, _$eaelSkewEffect, _$eaelSkewEffect2, _$opacityHover, _$eaelRotateHoverEffe, _$eaelRotateHoverEffe2, _$eaelRotateHoverEffe3, _$eaelScaleHoverEffec, _$eaelScaleHoverEffec2, _$eaelSkewHoverEffect, _$eaelSkewHoverEffect2, _$eaelBurHoverEffect, _$eaelContrastHoverEf, _$eaelGrayscalHoverEf, _$eaelInvertHoverEffe, _$eaelSaturateHoverEf, _$eaelSepiaHoverEffec;\n var $eaelRotateEffect = $scope.data('eael_rotate_effect'),\n $eaelScaleEffect = $scope.data('eael_scale_effect'),\n $eaelSkewEffect = $scope.data('eael_skew_effect'),\n $Opacity = $scope.data('eael_opacity'),\n $eaelBlurEffect = $scope.data('eael_blur_effect'),\n $eaelContrastEffect = $scope.data('eael_contrast_effect'),\n $eaelGrayscaleEffect = $scope.data('eael_grayscale_effect'),\n $eaelInvertEffect = $scope.data('eael_invert_effect'),\n $eaelSaturateEffect = $scope.data('eael_saturate_effect'),\n $eaelSepiaEffect = $scope.data('eael_sepia_effect'),\n $scopeId = $scope.data('id'),\n $eaelBurHoverEffect = $scope.data('eael_blur_hover_effect'),\n $eaelContrastHoverEffect = $scope.data('eael_contrast_hover_effect'),\n $eaelGrayscalHoverEffect = $scope.data('eael_grayscal_hover_effect'),\n $eaelInvertHoverEffect = $scope.data('eael_invert_hover_effect'),\n $eaelSaturateHoverEffect = $scope.data('eael_saturate_hover_effect'),\n $eaelSepiaHoverEffect = $scope.data('eael_sepia_hover_effect'),\n $eaelRotateHoverEffect = $scope.data('eael_rotate_hover_effect'),\n $eaelScaleHoverEffect = $scope.data('eael_scale_hover_effect'),\n $eaelSkewHoverEffect = $scope.data('eael_skew_hover_effect'),\n $opacityHover = $scope.data('eael_opacity_hover'),\n $eaelDuration = $scope.data('eael_duration'),\n $eaelDelay = $scope.data('eael_delay'),\n $eaelEasing = $scope.data('eael_easing'),\n $eaelHoverDuration = $scope.data('eael_hover_duration'),\n $eaelHoverDelay = $scope.data('eael_hover_delay'),\n $eaelHoverEasing = $scope.data('eael_hover_easing'),\n $eaelOffsetTop = $scope.data('eael_offset_top'),\n $eaelOffsetLeft = $scope.data('eael_offset_left'),\n $eaelOffsetHoverTop = $scope.data('eael_offset_hover_top'),\n $eaelOffsetHoverLeft = $scope.data('eael_offset_hover_left'),\n $eaelTilt = $scope.data('eaeltilt'),\n $enabledElementList = [];\n\n /**\n * For editor page\n */\n if (window.isEditMode) {\n if (window.isRunFirstTime === undefined && window.isEditMode || 1) {\n var getHoverEffectSettingsVal = function getHoverEffectSettingsVal($el) {\n $.each($el, function (i, el) {\n // console.log(el.attributes.settings.attributes);\n var $getSettings = el.attributes.settings.attributes;\n if (el.attributes.elType === 'widget') {\n if ($getSettings['eael_hover_effect_switch'] === 'yes') {\n $enabledElementList.push(el.attributes.id);\n if ($getSettings['eael_hover_effect_enable_live_changes'] === 'yes') {\n eaelEditModeSettings[el.attributes.id] = el.attributes.settings.attributes;\n }\n }\n }\n if (el.attributes.elType === 'container') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n if (el.attributes.elType === 'section') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n if (el.attributes.elType === 'column') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n });\n };\n window.isRunFirstTime = true;\n var eaelEditModeSettings = [];\n getHoverEffectSettingsVal(window.elementor.elements.models);\n }\n for (var key in eaelEditModeSettings) {\n if ($scopeId === key) {\n var _eaelEditModeSettings, _eaelEditModeSettings2, _eaelEditModeSettings4, _eaelEditModeSettings6, _eaelEditModeSettings19, _eaelEditModeSettings32, _eaelEditModeSettings37, _eaelEditModeSettings42, _eaelEditModeSettings53, _eaelEditModeSettings64, _eaelEditModeSettings65, _eaelEditModeSettings66, _eaelEditModeSettings67, _eaelEditModeSettings68, _eaelEditModeSettings69;\n //Tilt\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings = eaelEditModeSettings[key]) === null || _eaelEditModeSettings === void 0 ? void 0 : _eaelEditModeSettings['eael_hover_effect_hover_tilt']) === 'yes') {\n $eaelTilt = 'eael_tilt';\n }\n\n //Opacity\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings2 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings2 === void 0 ? void 0 : _eaelEditModeSettings2['eael_hover_effect_opacity_popover']) === 'yes') {\n var _eaelEditModeSettings3;\n $Opacity = {\n 'opacity': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings3 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings3 === void 0 || (_eaelEditModeSettings3 = _eaelEditModeSettings3['eael_hover_effect_opacity']) === null || _eaelEditModeSettings3 === void 0 ? void 0 : _eaelEditModeSettings3['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings4 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings4 === void 0 ? void 0 : _eaelEditModeSettings4['eael_hover_effect_opacity_popover_hover']) === 'yes') {\n var _eaelEditModeSettings5;\n $opacityHover = {\n 'opacity': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings5 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings5 === void 0 || (_eaelEditModeSettings5 = _eaelEditModeSettings5['eael_hover_effect_opacity_hover']) === null || _eaelEditModeSettings5 === void 0 ? void 0 : _eaelEditModeSettings5['size']\n };\n }\n //Filter\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings6 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings6 === void 0 ? void 0 : _eaelEditModeSettings6['eael_hover_effect_filter_popover'])) {\n var _eaelEditModeSettings7, _eaelEditModeSettings9, _eaelEditModeSettings11, _eaelEditModeSettings13, _eaelEditModeSettings15, _eaelEditModeSettings17;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings7 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings7 === void 0 ? void 0 : _eaelEditModeSettings7['eael_hover_effect_blur_is_on']) === 'yes') {\n var _eaelEditModeSettings8;\n $eaelBlurEffect = {\n 'blur': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings8 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings8 === void 0 || (_eaelEditModeSettings8 = _eaelEditModeSettings8['eael_hover_effect_blur']) === null || _eaelEditModeSettings8 === void 0 ? void 0 : _eaelEditModeSettings8['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings9 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings9 === void 0 ? void 0 : _eaelEditModeSettings9['eael_hover_effect_contrast_is_on']) === 'yes') {\n var _eaelEditModeSettings10;\n $eaelContrastEffect = {\n 'contrast': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings10 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings10 === void 0 || (_eaelEditModeSettings10 = _eaelEditModeSettings10['eael_hover_effect_contrast']) === null || _eaelEditModeSettings10 === void 0 ? void 0 : _eaelEditModeSettings10['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings11 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings11 === void 0 ? void 0 : _eaelEditModeSettings11['eael_hover_effect_grayscale_is_on']) === 'yes') {\n var _eaelEditModeSettings12;\n $eaelGrayscaleEffect = {\n 'grayscale': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings12 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings12 === void 0 || (_eaelEditModeSettings12 = _eaelEditModeSettings12['eael_hover_effect_grayscal']) === null || _eaelEditModeSettings12 === void 0 ? void 0 : _eaelEditModeSettings12['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings13 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings13 === void 0 ? void 0 : _eaelEditModeSettings13['eael_hover_effect_invert_is_on']) === 'yes') {\n var _eaelEditModeSettings14;\n $eaelInvertEffect = {\n 'invert': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings14 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings14 === void 0 || (_eaelEditModeSettings14 = _eaelEditModeSettings14['eael_hover_effect_invert']) === null || _eaelEditModeSettings14 === void 0 ? void 0 : _eaelEditModeSettings14['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings15 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings15 === void 0 ? void 0 : _eaelEditModeSettings15['eael_hover_effect_saturate_is_on']) === 'yes') {\n var _eaelEditModeSettings16;\n $eaelSaturateEffect = {\n 'saturate': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings16 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings16 === void 0 || (_eaelEditModeSettings16 = _eaelEditModeSettings16['eael_hover_effect_saturate']) === null || _eaelEditModeSettings16 === void 0 ? void 0 : _eaelEditModeSettings16['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings17 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings17 === void 0 ? void 0 : _eaelEditModeSettings17['eael_hover_effect_sepia_is_on']) === 'yes') {\n var _eaelEditModeSettings18;\n $eaelSepiaEffect = {\n 'sepia': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings18 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings18 === void 0 || (_eaelEditModeSettings18 = _eaelEditModeSettings18['eael_hover_effect_sepia']) === null || _eaelEditModeSettings18 === void 0 ? void 0 : _eaelEditModeSettings18['size']\n };\n }\n }\n\n //Filter Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings19 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings19 === void 0 ? void 0 : _eaelEditModeSettings19['eael_hover_effect_filter_hover_popover'])) {\n var _eaelEditModeSettings20, _eaelEditModeSettings22, _eaelEditModeSettings24, _eaelEditModeSettings26, _eaelEditModeSettings28, _eaelEditModeSettings30;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings20 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings20 === void 0 ? void 0 : _eaelEditModeSettings20['eael_hover_effect_blur_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings21;\n $eaelBurHoverEffect = {\n 'blur': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings21 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings21 === void 0 || (_eaelEditModeSettings21 = _eaelEditModeSettings21['eael_hover_effect_blur_hover']) === null || _eaelEditModeSettings21 === void 0 ? void 0 : _eaelEditModeSettings21['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings22 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings22 === void 0 ? void 0 : _eaelEditModeSettings22['eael_hover_effect_contrast_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings23;\n $eaelContrastHoverEffect = {\n 'contrast': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings23 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings23 === void 0 || (_eaelEditModeSettings23 = _eaelEditModeSettings23['eael_hover_effect_contrast_hover']) === null || _eaelEditModeSettings23 === void 0 ? void 0 : _eaelEditModeSettings23['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings24 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings24 === void 0 ? void 0 : _eaelEditModeSettings24['eael_hover_effect_grayscale_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings25;\n $eaelGrayscalHoverEffect = {\n 'grayscale': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings25 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings25 === void 0 || (_eaelEditModeSettings25 = _eaelEditModeSettings25['eael_hover_effect_grayscal_hover']) === null || _eaelEditModeSettings25 === void 0 ? void 0 : _eaelEditModeSettings25['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings26 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings26 === void 0 ? void 0 : _eaelEditModeSettings26['eael_hover_effect_invert_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings27;\n $eaelInvertHoverEffect = {\n 'invert': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings27 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings27 === void 0 || (_eaelEditModeSettings27 = _eaelEditModeSettings27['eael_hover_effect_invert_hover']) === null || _eaelEditModeSettings27 === void 0 ? void 0 : _eaelEditModeSettings27['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings28 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings28 === void 0 ? void 0 : _eaelEditModeSettings28['eael_hover_effect_saturate_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings29;\n $eaelSaturateHoverEffect = {\n 'saturate': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings29 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings29 === void 0 || (_eaelEditModeSettings29 = _eaelEditModeSettings29['eael_hover_effect_saturate_hover']) === null || _eaelEditModeSettings29 === void 0 ? void 0 : _eaelEditModeSettings29['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings30 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings30 === void 0 ? void 0 : _eaelEditModeSettings30['eael_hover_effect_sepia_is_on']) === 'yes') {\n var _eaelEditModeSettings31;\n $eaelSepiaHoverEffect = {\n 'sepia': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings31 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings31 === void 0 || (_eaelEditModeSettings31 = _eaelEditModeSettings31['eael_hover_effect_sepia_hover']) === null || _eaelEditModeSettings31 === void 0 ? void 0 : _eaelEditModeSettings31['size']\n };\n }\n }\n\n //Offset\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings32 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings32 === void 0 ? void 0 : _eaelEditModeSettings32['eael_hover_effect_offset_popover'])) {\n var _eaelEditModeSettings33, _eaelEditModeSettings34, _eaelEditModeSettings35, _eaelEditModeSettings36;\n $eaelOffsetTop = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings33 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings33 === void 0 || (_eaelEditModeSettings33 = _eaelEditModeSettings33['eael_hover_effect_offset_top']) === null || _eaelEditModeSettings33 === void 0 ? void 0 : _eaelEditModeSettings33['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings34 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings34 === void 0 || (_eaelEditModeSettings34 = _eaelEditModeSettings34['eael_hover_effect_offset_top']) === null || _eaelEditModeSettings34 === void 0 ? void 0 : _eaelEditModeSettings34['unit']\n };\n $eaelOffsetLeft = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings35 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings35 === void 0 || (_eaelEditModeSettings35 = _eaelEditModeSettings35['eael_hover_effect_offset_left']) === null || _eaelEditModeSettings35 === void 0 ? void 0 : _eaelEditModeSettings35['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings36 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings36 === void 0 || (_eaelEditModeSettings36 = _eaelEditModeSettings36['eael_hover_effect_offset_left']) === null || _eaelEditModeSettings36 === void 0 ? void 0 : _eaelEditModeSettings36['unit']\n };\n }\n\n //Offset Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings37 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings37 === void 0 ? void 0 : _eaelEditModeSettings37['eael_hover_effect_offset_hover_popover'])) {\n var _eaelEditModeSettings38, _eaelEditModeSettings39, _eaelEditModeSettings40, _eaelEditModeSettings41;\n $eaelOffsetHoverTop = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings38 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings38 === void 0 || (_eaelEditModeSettings38 = _eaelEditModeSettings38['eael_hover_effect_offset_hover_top']) === null || _eaelEditModeSettings38 === void 0 ? void 0 : _eaelEditModeSettings38['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings39 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings39 === void 0 || (_eaelEditModeSettings39 = _eaelEditModeSettings39['eael_hover_effect_offset_hover_top']) === null || _eaelEditModeSettings39 === void 0 ? void 0 : _eaelEditModeSettings39['unit']\n };\n $eaelOffsetHoverLeft = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings40 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings40 === void 0 || (_eaelEditModeSettings40 = _eaelEditModeSettings40['eael_hover_effect_offset_hover_left']) === null || _eaelEditModeSettings40 === void 0 ? void 0 : _eaelEditModeSettings40['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings41 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings41 === void 0 || (_eaelEditModeSettings41 = _eaelEditModeSettings41['eael_hover_effect_offset_hover_left']) === null || _eaelEditModeSettings41 === void 0 ? void 0 : _eaelEditModeSettings41['unit']\n };\n }\n\n //Tranform\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings42 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings42 === void 0 ? void 0 : _eaelEditModeSettings42['eael_hover_effect_transform_popover'])) {\n var _eaelEditModeSettings43, _eaelEditModeSettings47, _eaelEditModeSettings50;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings43 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings43 === void 0 ? void 0 : _eaelEditModeSettings43['eael_hover_effect_rotate_is_on']) === 'yes') {\n var _eaelEditModeSettings44, _eaelEditModeSettings45, _eaelEditModeSettings46;\n $eaelRotateEffect = {\n 'rotate_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings44 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings44 === void 0 || (_eaelEditModeSettings44 = _eaelEditModeSettings44['eael_hover_effect_transform_rotatex']) === null || _eaelEditModeSettings44 === void 0 ? void 0 : _eaelEditModeSettings44['size'],\n 'rotate_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings45 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings45 === void 0 || (_eaelEditModeSettings45 = _eaelEditModeSettings45['eael_hover_effect_transform_rotatey']) === null || _eaelEditModeSettings45 === void 0 ? void 0 : _eaelEditModeSettings45['size'],\n 'rotate_z': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings46 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings46 === void 0 || (_eaelEditModeSettings46 = _eaelEditModeSettings46['eael_hover_effect_transform_rotatez']) === null || _eaelEditModeSettings46 === void 0 ? void 0 : _eaelEditModeSettings46['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings47 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings47 === void 0 ? void 0 : _eaelEditModeSettings47['eael_hover_effect_scale_is_on']) === 'yes') {\n var _eaelEditModeSettings48, _eaelEditModeSettings49;\n $eaelScaleEffect = {\n 'scale_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings48 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings48 === void 0 || (_eaelEditModeSettings48 = _eaelEditModeSettings48['eael_hover_effect_transform_scalex']) === null || _eaelEditModeSettings48 === void 0 ? void 0 : _eaelEditModeSettings48['size'],\n 'scale_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings49 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings49 === void 0 || (_eaelEditModeSettings49 = _eaelEditModeSettings49['eael_hover_effect_transform_scaley']) === null || _eaelEditModeSettings49 === void 0 ? void 0 : _eaelEditModeSettings49['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings50 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings50 === void 0 ? void 0 : _eaelEditModeSettings50['eael_hover_effect_skew_is_on']) === 'yes') {\n var _eaelEditModeSettings51, _eaelEditModeSettings52;\n $eaelSkewEffect = {\n 'skew_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings51 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings51 === void 0 || (_eaelEditModeSettings51 = _eaelEditModeSettings51['eael_hover_effect_transform_skewx']) === null || _eaelEditModeSettings51 === void 0 ? void 0 : _eaelEditModeSettings51['size'],\n 'skew_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings52 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings52 === void 0 || (_eaelEditModeSettings52 = _eaelEditModeSettings52['eael_hover_effect_transform_skewy']) === null || _eaelEditModeSettings52 === void 0 ? void 0 : _eaelEditModeSettings52['size']\n };\n }\n }\n\n //Tranform Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings53 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings53 === void 0 ? void 0 : _eaelEditModeSettings53['eael_hover_effect_transform_hover_popover'])) {\n var _eaelEditModeSettings54, _eaelEditModeSettings58, _eaelEditModeSettings61;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings54 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings54 === void 0 ? void 0 : _eaelEditModeSettings54['eael_hover_effect_rotate_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings55, _eaelEditModeSettings56, _eaelEditModeSettings57;\n $eaelRotateHoverEffect = {\n 'rotate_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings55 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings55 === void 0 || (_eaelEditModeSettings55 = _eaelEditModeSettings55['eael_hover_effect_transform_hover_rotatex']) === null || _eaelEditModeSettings55 === void 0 ? void 0 : _eaelEditModeSettings55['size'],\n 'rotate_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings56 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings56 === void 0 || (_eaelEditModeSettings56 = _eaelEditModeSettings56['eael_hover_effect_transform_hover_rotatey']) === null || _eaelEditModeSettings56 === void 0 ? void 0 : _eaelEditModeSettings56['size'],\n 'rotate_z': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings57 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings57 === void 0 || (_eaelEditModeSettings57 = _eaelEditModeSettings57['eael_hover_effect_transform_hover_rotatez']) === null || _eaelEditModeSettings57 === void 0 ? void 0 : _eaelEditModeSettings57['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings58 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings58 === void 0 ? void 0 : _eaelEditModeSettings58['eael_hover_effect_scale_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings59, _eaelEditModeSettings60;\n $eaelScaleHoverEffect = {\n 'scale_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings59 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings59 === void 0 || (_eaelEditModeSettings59 = _eaelEditModeSettings59['eael_hover_effect_transform_hover_scalex']) === null || _eaelEditModeSettings59 === void 0 ? void 0 : _eaelEditModeSettings59['size'],\n 'scale_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings60 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings60 === void 0 || (_eaelEditModeSettings60 = _eaelEditModeSettings60['eael_hover_effect_transform_hover_scaley']) === null || _eaelEditModeSettings60 === void 0 ? void 0 : _eaelEditModeSettings60['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings61 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings61 === void 0 ? void 0 : _eaelEditModeSettings61['eael_hover_effect_skew_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings62, _eaelEditModeSettings63;\n $eaelSkewHoverEffect = {\n 'skew_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings62 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings62 === void 0 || (_eaelEditModeSettings62 = _eaelEditModeSettings62['eael_hover_effect_transform_hover_skewx']) === null || _eaelEditModeSettings62 === void 0 ? void 0 : _eaelEditModeSettings62['size'],\n 'skew_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings63 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings63 === void 0 || (_eaelEditModeSettings63 = _eaelEditModeSettings63['eael_hover_effect_transform_hover_skewy']) === null || _eaelEditModeSettings63 === void 0 ? void 0 : _eaelEditModeSettings63['size']\n };\n }\n }\n\n //Transition\n $eaelDuration = {\n 'transitionDuration': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings64 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings64 === void 0 || (_eaelEditModeSettings64 = _eaelEditModeSettings64['eael_hover_effect_general_settings_duration']) === null || _eaelEditModeSettings64 === void 0 ? void 0 : _eaelEditModeSettings64['size']\n };\n $eaelDelay = {\n 'transitionDelay': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings65 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings65 === void 0 || (_eaelEditModeSettings65 = _eaelEditModeSettings65['eael_hover_effect_general_settings_delay']) === null || _eaelEditModeSettings65 === void 0 ? void 0 : _eaelEditModeSettings65['size']\n };\n $eaelEasing = {\n 'transitionEasing': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings66 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings66 === void 0 ? void 0 : _eaelEditModeSettings66['eael_hover_effect_general_settings_easing']\n };\n\n //Transition Hover\n $eaelHoverDuration = {\n 'transitionDuration': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings67 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings67 === void 0 || (_eaelEditModeSettings67 = _eaelEditModeSettings67['eael_hover_effect_general_settings_duration']) === null || _eaelEditModeSettings67 === void 0 ? void 0 : _eaelEditModeSettings67['size']\n };\n $eaelHoverDelay = {\n 'transitionDelay': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings68 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings68 === void 0 || (_eaelEditModeSettings68 = _eaelEditModeSettings68['eael_hover_effect_general_settings_delay']) === null || _eaelEditModeSettings68 === void 0 ? void 0 : _eaelEditModeSettings68['size']\n };\n $eaelHoverEasing = {\n 'transitionEasing': eaelEditModeSettings === null || eaelEditModeSettings === void 0 || (_eaelEditModeSettings69 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings69 === void 0 ? void 0 : _eaelEditModeSettings69['eael_hover_effect_general_settings_easing']\n };\n }\n }\n }\n var hoverSelector = window.isEditMode ? \"body [data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\") : \"body .eael_hover_effect[data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\"),\n $hoverSelector = $(hoverSelector);\n\n //Opacity\n var $opacityVal = $Opacity ? (_$Opacity = $Opacity) === null || _$Opacity === void 0 ? void 0 : _$Opacity.opacity : '1';\n\n //Offset\n var $offsetX = (_$eaelOffsetTop = $eaelOffsetTop) !== null && _$eaelOffsetTop !== void 0 && _$eaelOffsetTop.size ? \"translateX(\".concat($eaelOffsetTop.size).concat($eaelOffsetTop.unit, \")\") : 'translateX(0)';\n var $offsetY = (_$eaelOffsetLeft = $eaelOffsetLeft) !== null && _$eaelOffsetLeft !== void 0 && _$eaelOffsetLeft.size ? \"translateY(\".concat($eaelOffsetLeft.size).concat($eaelOffsetLeft.unit, \")\") : 'translateY(0)';\n\n //Offset Hover\n var $offsetHoverX = (_$eaelOffsetHoverTop = $eaelOffsetHoverTop) !== null && _$eaelOffsetHoverTop !== void 0 && _$eaelOffsetHoverTop.size ? \"translateX(\".concat($eaelOffsetHoverTop.size).concat($eaelOffsetHoverTop.unit, \")\") : 'translateX(0)';\n var $offsetHoverY = (_$eaelOffsetHoverLeft = $eaelOffsetHoverLeft) !== null && _$eaelOffsetHoverLeft !== void 0 && _$eaelOffsetHoverLeft.size ? \"translateY(\".concat($eaelOffsetHoverLeft.size).concat($eaelOffsetHoverLeft.unit, \")\") : 'translateY(0)';\n\n //Transitions\n var $eaelDurationVal = $eaelDuration ? (_$eaelDuration = $eaelDuration) === null || _$eaelDuration === void 0 ? void 0 : _$eaelDuration.transitionDuration : '0';\n var $eaelDelayVal = $eaelDelay ? (_$eaelDelay = $eaelDelay) === null || _$eaelDelay === void 0 ? void 0 : _$eaelDelay.transitionDelay : '0';\n var $eaelEasingVal = $eaelEasing ? (_$eaelEasing = $eaelEasing) === null || _$eaelEasing === void 0 ? void 0 : _$eaelEasing.transitionEasing : '0';\n\n //Transitions Hover\n var $eaelDurationHoverVal = $eaelHoverDuration ? (_$eaelHoverDuration = $eaelHoverDuration) === null || _$eaelHoverDuration === void 0 ? void 0 : _$eaelHoverDuration.transitionDuration : '0';\n var $eaelDelayHoverVal = $eaelHoverDelay ? (_$eaelHoverDelay = $eaelHoverDelay) === null || _$eaelHoverDelay === void 0 ? void 0 : _$eaelHoverDelay.transitionDelay : '0';\n var $eaelEasingHoverVal = $eaelHoverEasing ? (_$eaelHoverEasing = $eaelHoverEasing) === null || _$eaelHoverEasing === void 0 ? void 0 : _$eaelHoverEasing.transitionEasing : '0';\n\n //Filter\n var $blur = (_$eaelBlurEffect = $eaelBlurEffect) !== null && _$eaelBlurEffect !== void 0 && _$eaelBlurEffect.blur ? \"blur(\".concat($eaelBlurEffect.blur, \"px)\") : 'blur(0px)';\n var $contrast = (_$eaelContrastEffect = $eaelContrastEffect) !== null && _$eaelContrastEffect !== void 0 && _$eaelContrastEffect.contrast ? \"contrast(\".concat($eaelContrastEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscale = (_$eaelGrayscaleEffect = $eaelGrayscaleEffect) !== null && _$eaelGrayscaleEffect !== void 0 && _$eaelGrayscaleEffect.grayscale ? \"grayscale(\".concat($eaelGrayscaleEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invert = (_$eaelInvertEffect = $eaelInvertEffect) !== null && _$eaelInvertEffect !== void 0 && _$eaelInvertEffect.invert ? \"invert(\".concat($eaelInvertEffect.invert, \"%)\") : 'invert(0%)';\n var $saturate = (_$eaelSaturateEffect = $eaelSaturateEffect) !== null && _$eaelSaturateEffect !== void 0 && _$eaelSaturateEffect.saturate ? \"saturate(\".concat($eaelSaturateEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepia = (_$eaelSepiaEffect = $eaelSepiaEffect) !== null && _$eaelSepiaEffect !== void 0 && _$eaelSepiaEffect.sepia ? \"sepia(\".concat($eaelSepiaEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Rotate\n var $rotateX = (_$eaelRotateEffect = $eaelRotateEffect) !== null && _$eaelRotateEffect !== void 0 && _$eaelRotateEffect.rotate_x ? \"rotateX(\".concat($eaelRotateEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateY = (_$eaelRotateEffect2 = $eaelRotateEffect) !== null && _$eaelRotateEffect2 !== void 0 && _$eaelRotateEffect2.rotate_y ? \"rotateY(\".concat($eaelRotateEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZ = (_$eaelRotateEffect3 = $eaelRotateEffect) !== null && _$eaelRotateEffect3 !== void 0 && _$eaelRotateEffect3.rotate_z ? \"rotateZ(\".concat($eaelRotateEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleX = (_$eaelScaleEffect = $eaelScaleEffect) !== null && _$eaelScaleEffect !== void 0 && _$eaelScaleEffect.scale_x ? \"scaleX(\".concat($eaelScaleEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleY = (_$eaelScaleEffect2 = $eaelScaleEffect) !== null && _$eaelScaleEffect2 !== void 0 && _$eaelScaleEffect2.scale_y ? \"scaleY(\".concat($eaelScaleEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewX = (_$eaelSkewEffect = $eaelSkewEffect) !== null && _$eaelSkewEffect !== void 0 && _$eaelSkewEffect.skew_x ? \"skewX(\".concat($eaelSkewEffect.skew_x, \"deg)\") : 'skewX(0deg)';\n var $skewY = (_$eaelSkewEffect2 = $eaelSkewEffect) !== null && _$eaelSkewEffect2 !== void 0 && _$eaelSkewEffect2.skew_y ? \"skewY(\".concat($eaelSkewEffect.skew_y, \"deg)\") : 'skewY(0deg)';\n\n //Hover\n var $opacityHoverVal = $opacityHover ? (_$opacityHover = $opacityHover) === null || _$opacityHover === void 0 ? void 0 : _$opacityHover.opacity : '1';\n //Rotate\n var $rotateXHover = (_$eaelRotateHoverEffe = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe !== void 0 && _$eaelRotateHoverEffe.rotate_x ? \"rotateX(\".concat($eaelRotateHoverEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateYHover = (_$eaelRotateHoverEffe2 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe2 !== void 0 && _$eaelRotateHoverEffe2.rotate_y ? \"rotateY(\".concat($eaelRotateHoverEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZHover = (_$eaelRotateHoverEffe3 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe3 !== void 0 && _$eaelRotateHoverEffe3.rotate_z ? \"rotateZ(\".concat($eaelRotateHoverEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleXHover = (_$eaelScaleHoverEffec = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec !== void 0 && _$eaelScaleHoverEffec.scale_x ? \"scaleX(\".concat($eaelScaleHoverEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleYHover = (_$eaelScaleHoverEffec2 = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec2 !== void 0 && _$eaelScaleHoverEffec2.scale_y ? \"scaleY(\".concat($eaelScaleHoverEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewXHover = (_$eaelSkewHoverEffect = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect !== void 0 && _$eaelSkewHoverEffect.skew_x ? \"skewX(\".concat($eaelSkewHoverEffect.skew_x, \"deg)\") : 'skewX(0)';\n var $skewYHover = (_$eaelSkewHoverEffect2 = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect2 !== void 0 && _$eaelSkewHoverEffect2.skew_y ? \"skewY(\".concat($eaelSkewHoverEffect.skew_y, \"deg)\") : 'skewY(0)';\n\n //Filter Hover\n var $blurHover = (_$eaelBurHoverEffect = $eaelBurHoverEffect) !== null && _$eaelBurHoverEffect !== void 0 && _$eaelBurHoverEffect.blur ? \"blur(\".concat($eaelBurHoverEffect.blur, \"px)\") : 'blur(0px)';\n var $contrastHover = (_$eaelContrastHoverEf = $eaelContrastHoverEffect) !== null && _$eaelContrastHoverEf !== void 0 && _$eaelContrastHoverEf.contrast ? \"contrast(\".concat($eaelContrastHoverEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscaleHover = (_$eaelGrayscalHoverEf = $eaelGrayscalHoverEffect) !== null && _$eaelGrayscalHoverEf !== void 0 && _$eaelGrayscalHoverEf.grayscale ? \"grayscale(\".concat($eaelGrayscalHoverEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invertHover = (_$eaelInvertHoverEffe = $eaelInvertHoverEffect) !== null && _$eaelInvertHoverEffe !== void 0 && _$eaelInvertHoverEffe.invert ? \"invert(\".concat($eaelInvertHoverEffect.invert, \"%)\") : 'invert(0%)';\n var $saturateHover = (_$eaelSaturateHoverEf = $eaelSaturateHoverEffect) !== null && _$eaelSaturateHoverEf !== void 0 && _$eaelSaturateHoverEf.saturate ? \"saturate(\".concat($eaelSaturateHoverEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepiaHover = (_$eaelSepiaHoverEffec = $eaelSepiaHoverEffect) !== null && _$eaelSepiaHoverEffec !== void 0 && _$eaelSepiaHoverEffec.sepia ? \"sepia(\".concat($eaelSepiaHoverEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Normal\n var normalStyles = {\n \"transform\": \"\".concat($rotateX, \" \").concat($rotateY, \" \").concat($rotateZ, \" \").concat($scaleX, \" \").concat($scaleY, \" \").concat($skewX, \" \").concat($skewY, \" \").concat($offsetX, \" \").concat($offsetY),\n \"opacity\": $opacityVal,\n \"filter\": \"\".concat($blur, \" \").concat($contrast, \" \").concat($grayscale, \" \").concat($invert, \" \").concat($saturate, \" \").concat($sepia),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingVal,\n \"z-index\": 1\n };\n\n //Hover\n var hoverStyles = {\n 'opacity': $opacityHoverVal,\n 'filter': \"\".concat($blurHover, \" \").concat($contrastHover, \" \").concat($grayscaleHover, \" \").concat($invertHover, \" \").concat($saturateHover, \" \").concat($sepiaHover),\n \"transform\": \"\".concat($rotateXHover, \" \").concat($rotateYHover, \" \").concat($rotateZHover, \" \").concat($scaleXHover, \" \").concat($scaleYHover, \" \").concat($skewXHover, \" \").concat($skewYHover, \" \").concat($offsetHoverX, \" \").concat($offsetHoverY),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationHoverVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayHoverVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingHoverVal,\n \"z-index\": 2\n };\n if (window.isEditMode && $enabledElementList.includes($scopeId) || !window.isEditMode && $hoverSelector.length) {\n $hoverSelector.hover(function () {\n $(this).css(hoverStyles);\n }, function () {\n $(this).css(normalStyles);\n });\n $hoverSelector.css(normalStyles);\n }\n\n //Tilt Effect\n if ($eaelTilt === 'eael_tilt') {\n $(\".elementor-element-\".concat($scopeId)).mousemove(function (e) {\n var cox = (e.pageX - $(this).offset().left - $(this).width() / 2) / 20;\n var coy = ($(this).height() / 2 - (e.pageY - $(this).offset().top)) / 20;\n $(this).find('.elementor-widget-container').css('transform', 'perspective(500px) rotateY(' + cox + 'deg) rotateX(' + coy + 'deg)');\n });\n $(\".elementor-element-\".concat($scopeId)).mouseleave(function (e) {\n $(this).find('.elementor-widget-container').css('transform', 'rotateY(0) rotateX(0)');\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelHoverEffect')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", HoverEffectHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/hover-effect.js?"); /***/ }) diff --git a/assets/front-end/js/view/hover-effect.min.js b/assets/front-end/js/view/hover-effect.min.js index 600c1b36d..0c25b9007 100644 --- a/assets/front-end/js/view/hover-effect.min.js +++ b/assets/front-end/js/view/hover-effect.min.js @@ -1 +1 @@ -!function(e){var l={};function t(o){if(l[o])return l[o].exports;var n=l[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=l,t.d=function(e,l,o){t.o(e,l)||Object.defineProperty(e,l,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,l){if(1&l&&(e=t(e)),8&l)return e;if(4&l&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&l&&"string"!=typeof e)for(var n in e)t.d(o,n,function(l){return e[l]}.bind(null,n));return o},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,l){return Object.prototype.hasOwnProperty.call(e,l)},t.p="",t(t.s=13)}({13:function(e,l){var t=function(e,l){var t,o,n,a,i,r,_,v,s,c,d,u,f,h,y,p,g,m,z,w,b,x,k,X,Y,E,M,j,D,T,O,S,P,Z,F,R,A,C,H=e.data("eael_rotate_effect"),Q=e.data("eael_scale_effect"),q=e.data("eael_skew_effect"),B=e.data("eael_opacity"),G=e.data("eael_blur_effect"),I=e.data("eael_contrast_effect"),J=e.data("eael_grayscale_effect"),K=e.data("eael_invert_effect"),L=e.data("eael_saturate_effect"),N=e.data("eael_sepia_effect"),U=e.data("id"),V=e.data("eael_blur_hover_effect"),W=e.data("eael_contrast_hover_effect"),$=e.data("eael_grayscal_hover_effect"),ee=e.data("eael_invert_hover_effect"),le=e.data("eael_saturate_hover_effect"),te=e.data("eael_sepia_hover_effect"),oe=e.data("eael_rotate_hover_effect"),ne=e.data("eael_scale_hover_effect"),ae=e.data("eael_skew_hover_effect"),ie=e.data("eael_opacity_hover"),re=e.data("eael_duration"),_e=e.data("eael_delay"),ve=e.data("eael_easing"),se=e.data("eael_hover_duration"),ce=e.data("eael_hover_delay"),de=e.data("eael_hover_easing"),ue=e.data("eael_offset_top"),fe=e.data("eael_offset_left"),he=e.data("eael_offset_hover_top"),ye=e.data("eael_offset_hover_left"),pe=e.data("eaeltilt"),ge=[];if(window.isEditMode){void 0===window.isRunFirstTime&&window.isEditMode;window.isRunFirstTime=!0;var me=[];for(var ze in function e(t){l.each(t,(function(l,t){var o=t.attributes.settings.attributes;"widget"===t.attributes.elType&&"yes"===o.eael_hover_effect_switch&&(ge.push(t.attributes.id),"yes"===o.eael_hover_effect_enable_live_changes&&(me[t.attributes.id]=t.attributes.settings.attributes)),"container"===t.attributes.elType&&e(t.attributes.elements.models),"section"===t.attributes.elType&&e(t.attributes.elements.models),"column"===t.attributes.elType&&e(t.attributes.elements.models)}))}(window.elementor.elements.models),me)if(U===ze){var we,be,xe,ke,Xe,Ye,Ee,Me,je,De,Te,Oe,Se,Pe,Ze,Fe,Re,Ae,Ce,He,Qe,qe,Be,Ge,Ie,Je,Ke,Le,Ne,Ue,Ve,We,$e,el,ll,tl,ol,nl,al;if("yes"===(null==me||null===(we=me[ze])||void 0===we?void 0:we.eael_hover_effect_hover_tilt)&&(pe="eael_tilt"),"yes"===(null==me||null===(be=me[ze])||void 0===be?void 0:be.eael_hover_effect_opacity_popover))B={opacity:null==me||null===(He=me[ze])||void 0===He||null===(Qe=He.eael_hover_effect_opacity)||void 0===Qe?void 0:Qe.size};if("yes"===(null==me||null===(xe=me[ze])||void 0===xe?void 0:xe.eael_hover_effect_opacity_popover_hover))ie={opacity:null==me||null===(qe=me[ze])||void 0===qe||null===(Be=qe.eael_hover_effect_opacity_hover)||void 0===Be?void 0:Be.size};if("yes"===(null==me||null===(ke=me[ze])||void 0===ke?void 0:ke.eael_hover_effect_filter_popover)){var il,rl,_l,vl,sl,cl,dl,ul,fl,hl,yl,pl,gl,ml,zl,wl,bl,xl;if("yes"===(null==me||null===(il=me[ze])||void 0===il?void 0:il.eael_hover_effect_blur_is_on))G={blur:null==me||null===(dl=me[ze])||void 0===dl||null===(ul=dl.eael_hover_effect_blur)||void 0===ul?void 0:ul.size};if("yes"===(null==me||null===(rl=me[ze])||void 0===rl?void 0:rl.eael_hover_effect_contrast_is_on))I={contrast:null==me||null===(fl=me[ze])||void 0===fl||null===(hl=fl.eael_hover_effect_contrast)||void 0===hl?void 0:hl.size};if("yes"===(null==me||null===(_l=me[ze])||void 0===_l?void 0:_l.eael_hover_effect_grayscale_is_on))J={grayscale:null==me||null===(yl=me[ze])||void 0===yl||null===(pl=yl.eael_hover_effect_grayscal)||void 0===pl?void 0:pl.size};if("yes"===(null==me||null===(vl=me[ze])||void 0===vl?void 0:vl.eael_hover_effect_invert_is_on))K={invert:null==me||null===(gl=me[ze])||void 0===gl||null===(ml=gl.eael_hover_effect_invert)||void 0===ml?void 0:ml.size};if("yes"===(null==me||null===(sl=me[ze])||void 0===sl?void 0:sl.eael_hover_effect_saturate_is_on))L={saturate:null==me||null===(zl=me[ze])||void 0===zl||null===(wl=zl.eael_hover_effect_saturate)||void 0===wl?void 0:wl.size};if("yes"===(null==me||null===(cl=me[ze])||void 0===cl?void 0:cl.eael_hover_effect_sepia_is_on))N={sepia:null==me||null===(bl=me[ze])||void 0===bl||null===(xl=bl.eael_hover_effect_sepia)||void 0===xl?void 0:xl.size}}if("yes"===(null==me||null===(Xe=me[ze])||void 0===Xe?void 0:Xe.eael_hover_effect_filter_hover_popover)){var kl,Xl,Yl,El,Ml,jl,Dl,Tl,Ol,Sl,Pl,Zl,Fl,Rl,Al,Cl,Hl,Ql;if("yes"===(null==me||null===(kl=me[ze])||void 0===kl?void 0:kl.eael_hover_effect_blur_hover_is_on))V={blur:null==me||null===(Dl=me[ze])||void 0===Dl||null===(Tl=Dl.eael_hover_effect_blur_hover)||void 0===Tl?void 0:Tl.size};if("yes"===(null==me||null===(Xl=me[ze])||void 0===Xl?void 0:Xl.eael_hover_effect_contrast_hover_is_on))W={contrast:null==me||null===(Ol=me[ze])||void 0===Ol||null===(Sl=Ol.eael_hover_effect_contrast_hover)||void 0===Sl?void 0:Sl.size};if("yes"===(null==me||null===(Yl=me[ze])||void 0===Yl?void 0:Yl.eael_hover_effect_grayscale_hover_is_on))$={grayscale:null==me||null===(Pl=me[ze])||void 0===Pl||null===(Zl=Pl.eael_hover_effect_grayscal_hover)||void 0===Zl?void 0:Zl.size};if("yes"===(null==me||null===(El=me[ze])||void 0===El?void 0:El.eael_hover_effect_invert_hover_is_on))ee={invert:null==me||null===(Fl=me[ze])||void 0===Fl||null===(Rl=Fl.eael_hover_effect_invert_hover)||void 0===Rl?void 0:Rl.size};if("yes"===(null==me||null===(Ml=me[ze])||void 0===Ml?void 0:Ml.eael_hover_effect_saturate_hover_is_on))le={saturate:null==me||null===(Al=me[ze])||void 0===Al||null===(Cl=Al.eael_hover_effect_saturate_hover)||void 0===Cl?void 0:Cl.size};if("yes"===(null==me||null===(jl=me[ze])||void 0===jl?void 0:jl.eael_hover_effect_sepia_is_on))te={sepia:null==me||null===(Hl=me[ze])||void 0===Hl||null===(Ql=Hl.eael_hover_effect_sepia_hover)||void 0===Ql?void 0:Ql.size}}if("yes"===(null==me||null===(Ye=me[ze])||void 0===Ye?void 0:Ye.eael_hover_effect_offset_popover))ue={size:null==me||null===(Ge=me[ze])||void 0===Ge||null===(Ie=Ge.eael_hover_effect_offset_top)||void 0===Ie?void 0:Ie.size,unit:null==me||null===(Je=me[ze])||void 0===Je||null===(Ke=Je.eael_hover_effect_offset_top)||void 0===Ke?void 0:Ke.unit},fe={size:null==me||null===(Le=me[ze])||void 0===Le||null===(Ne=Le.eael_hover_effect_offset_left)||void 0===Ne?void 0:Ne.size,unit:null==me||null===(Ue=me[ze])||void 0===Ue||null===(Ve=Ue.eael_hover_effect_offset_left)||void 0===Ve?void 0:Ve.unit};if("yes"===(null==me||null===(Ee=me[ze])||void 0===Ee?void 0:Ee.eael_hover_effect_offset_hover_popover))he={size:null==me||null===(We=me[ze])||void 0===We||null===($e=We.eael_hover_effect_offset_hover_top)||void 0===$e?void 0:$e.size,unit:null==me||null===(el=me[ze])||void 0===el||null===(ll=el.eael_hover_effect_offset_hover_top)||void 0===ll?void 0:ll.unit},ye={size:null==me||null===(tl=me[ze])||void 0===tl||null===(ol=tl.eael_hover_effect_offset_hover_left)||void 0===ol?void 0:ol.size,unit:null==me||null===(nl=me[ze])||void 0===nl||null===(al=nl.eael_hover_effect_offset_hover_left)||void 0===al?void 0:al.unit};if("yes"===(null==me||null===(Me=me[ze])||void 0===Me?void 0:Me.eael_hover_effect_transform_popover)){var ql,Bl,Gl,Il,Jl,Kl,Ll,Nl,Ul,Vl,Wl,$l,et,lt,tt,ot,nt;if("yes"===(null==me||null===(ql=me[ze])||void 0===ql?void 0:ql.eael_hover_effect_rotate_is_on))H={rotate_x:null==me||null===(Il=me[ze])||void 0===Il||null===(Jl=Il.eael_hover_effect_transform_rotatex)||void 0===Jl?void 0:Jl.size,rotate_y:null==me||null===(Kl=me[ze])||void 0===Kl||null===(Ll=Kl.eael_hover_effect_transform_rotatey)||void 0===Ll?void 0:Ll.size,rotate_z:null==me||null===(Nl=me[ze])||void 0===Nl||null===(Ul=Nl.eael_hover_effect_transform_rotatez)||void 0===Ul?void 0:Ul.size};if("yes"===(null==me||null===(Bl=me[ze])||void 0===Bl?void 0:Bl.eael_hover_effect_scale_is_on))Q={scale_x:null==me||null===(Vl=me[ze])||void 0===Vl||null===(Wl=Vl.eael_hover_effect_transform_scalex)||void 0===Wl?void 0:Wl.size,scale_y:null==me||null===($l=me[ze])||void 0===$l||null===(et=$l.eael_hover_effect_transform_scaley)||void 0===et?void 0:et.size};if("yes"===(null==me||null===(Gl=me[ze])||void 0===Gl?void 0:Gl.eael_hover_effect_skew_is_on))q={skew_x:null==me||null===(lt=me[ze])||void 0===lt||null===(tt=lt.eael_hover_effect_transform_skewx)||void 0===tt?void 0:tt.size,skew_y:null==me||null===(ot=me[ze])||void 0===ot||null===(nt=ot.eael_hover_effect_transform_skewy)||void 0===nt?void 0:nt.size}}if("yes"===(null==me||null===(je=me[ze])||void 0===je?void 0:je.eael_hover_effect_transform_hover_popover)){var at,it,rt,_t,vt,st,ct,dt,ut,ft,ht,yt,pt,gt,mt,zt,wt;if("yes"===(null==me||null===(at=me[ze])||void 0===at?void 0:at.eael_hover_effect_rotate_hover_is_on))oe={rotate_x:null==me||null===(_t=me[ze])||void 0===_t||null===(vt=_t.eael_hover_effect_transform_hover_rotatex)||void 0===vt?void 0:vt.size,rotate_y:null==me||null===(st=me[ze])||void 0===st||null===(ct=st.eael_hover_effect_transform_hover_rotatey)||void 0===ct?void 0:ct.size,rotate_z:null==me||null===(dt=me[ze])||void 0===dt||null===(ut=dt.eael_hover_effect_transform_hover_rotatez)||void 0===ut?void 0:ut.size};if("yes"===(null==me||null===(it=me[ze])||void 0===it?void 0:it.eael_hover_effect_scale_hover_is_on))ne={scale_x:null==me||null===(ft=me[ze])||void 0===ft||null===(ht=ft.eael_hover_effect_transform_hover_scalex)||void 0===ht?void 0:ht.size,scale_y:null==me||null===(yt=me[ze])||void 0===yt||null===(pt=yt.eael_hover_effect_transform_hover_scaley)||void 0===pt?void 0:pt.size};if("yes"===(null==me||null===(rt=me[ze])||void 0===rt?void 0:rt.eael_hover_effect_skew_hover_is_on))ae={skew_x:null==me||null===(gt=me[ze])||void 0===gt||null===(mt=gt.eael_hover_effect_transform_hover_skewx)||void 0===mt?void 0:mt.size,skew_y:null==me||null===(zt=me[ze])||void 0===zt||null===(wt=zt.eael_hover_effect_transform_hover_skewy)||void 0===wt?void 0:wt.size}}re={transitionDuration:null==me||null===(De=me[ze])||void 0===De||null===(Te=De.eael_hover_effect_general_settings_duration)||void 0===Te?void 0:Te.size},_e={transitionDelay:null==me||null===(Oe=me[ze])||void 0===Oe||null===(Se=Oe.eael_hover_effect_general_settings_delay)||void 0===Se?void 0:Se.size},ve={transitionEasing:null==me||null===(Pe=me[ze])||void 0===Pe?void 0:Pe.eael_hover_effect_general_settings_easing},se={transitionDuration:null==me||null===(Ze=me[ze])||void 0===Ze||null===(Fe=Ze.eael_hover_effect_general_settings_duration)||void 0===Fe?void 0:Fe.size},ce={transitionDelay:null==me||null===(Re=me[ze])||void 0===Re||null===(Ae=Re.eael_hover_effect_general_settings_delay)||void 0===Ae?void 0:Ae.size},de={transitionEasing:null==me||null===(Ce=me[ze])||void 0===Ce?void 0:Ce.eael_hover_effect_general_settings_easing}}}var bt=window.isEditMode?'body [data-id="'.concat(U,'"] > .elementor-widget-container'):'body .eael_hover_effect[data-id="'.concat(U,'"] > .elementor-widget-container'),xt=l(bt),kt=B?null===(t=B)||void 0===t?void 0:t.opacity:"1",Xt=null!==(o=ue)&&void 0!==o&&o.size?"translateX(".concat(ue.size).concat(ue.unit,")"):"translateX(0)",Yt=null!==(n=fe)&&void 0!==n&&n.size?"translateY(".concat(fe.size).concat(fe.unit,")"):"translateY(0)",Et=null!==(a=he)&&void 0!==a&&a.size?"translateX(".concat(he.size).concat(he.unit,")"):"translateX(0)",Mt=null!==(i=ye)&&void 0!==i&&i.size?"translateY(".concat(ye.size).concat(ye.unit,")"):"translateY(0)",jt=re?null===(r=re)||void 0===r?void 0:r.transitionDuration:"0",Dt=_e?null===(_=_e)||void 0===_?void 0:_.transitionDelay:"0",Tt=ve?null===(v=ve)||void 0===v?void 0:v.transitionEasing:"0",Ot=se?null===(s=se)||void 0===s?void 0:s.transitionDuration:"0",St=ce?null===(c=ce)||void 0===c?void 0:c.transitionDelay:"0",Pt=de?null===(d=de)||void 0===d?void 0:d.transitionEasing:"0",Zt=null!==(u=G)&&void 0!==u&&u.blur?"blur(".concat(G.blur,"px)"):"blur(0px)",Ft=null!==(f=I)&&void 0!==f&&f.contrast?"contrast(".concat(I.contrast,"%)"):"contrast(100%)",Rt=null!==(h=J)&&void 0!==h&&h.grayscale?"grayscale(".concat(J.grayscale,"%)"):"grayscale(0%)",At=null!==(y=K)&&void 0!==y&&y.invert?"invert(".concat(K.invert,"%)"):"invert(0%)",Ct=null!==(p=L)&&void 0!==p&&p.saturate?"saturate(".concat(L.saturate,"%)"):"saturate(100%)",Ht=null!==(g=N)&&void 0!==g&&g.sepia?"sepia(".concat(N.sepia,"%)"):"sepia(0%)",Qt=null!==(m=H)&&void 0!==m&&m.rotate_x?"rotateX(".concat(H.rotate_x,"deg)"):"rotateX(0)",qt=null!==(z=H)&&void 0!==z&&z.rotate_y?"rotateY(".concat(H.rotate_y,"deg)"):"rotateY(0)",Bt=null!==(w=H)&&void 0!==w&&w.rotate_z?"rotateZ(".concat(H.rotate_z,"deg)"):"rotateZ(0)",Gt=null!==(b=Q)&&void 0!==b&&b.scale_x?"scaleX(".concat(Q.scale_x,")"):"scaleX(1)",It=null!==(x=Q)&&void 0!==x&&x.scale_y?"scaleY(".concat(Q.scale_y,")"):"scaleY(1)",Jt=null!==(k=q)&&void 0!==k&&k.skew_x?"skewX(".concat(q.skew_x,"deg)"):"skewX(0deg)",Kt=null!==(X=q)&&void 0!==X&&X.skew_y?"skewY(".concat(q.skew_y,"deg)"):"skewY(0deg)",Lt=ie?null===(Y=ie)||void 0===Y?void 0:Y.opacity:"1",Nt=null!==(E=oe)&&void 0!==E&&E.rotate_x?"rotateX(".concat(oe.rotate_x,"deg)"):"rotateX(0)",Ut=null!==(M=oe)&&void 0!==M&&M.rotate_y?"rotateY(".concat(oe.rotate_y,"deg)"):"rotateY(0)",Vt=null!==(j=oe)&&void 0!==j&&j.rotate_z?"rotateZ(".concat(oe.rotate_z,"deg)"):"rotateZ(0)",Wt=null!==(D=ne)&&void 0!==D&&D.scale_x?"scaleX(".concat(ne.scale_x,")"):"scaleX(1)",$t=null!==(T=ne)&&void 0!==T&&T.scale_y?"scaleY(".concat(ne.scale_y,")"):"scaleY(1)",eo=null!==(O=ae)&&void 0!==O&&O.skew_x?"skewX(".concat(ae.skew_x,"deg)"):"skewX(0)",lo=null!==(S=ae)&&void 0!==S&&S.skew_y?"skewY(".concat(ae.skew_y,"deg)"):"skewY(0)",to=null!==(P=V)&&void 0!==P&&P.blur?"blur(".concat(V.blur,"px)"):"blur(0px)",oo=null!==(Z=W)&&void 0!==Z&&Z.contrast?"contrast(".concat(W.contrast,"%)"):"contrast(100%)",no=null!==(F=$)&&void 0!==F&&F.grayscale?"grayscale(".concat($.grayscale,"%)"):"grayscale(0%)",ao=null!==(R=ee)&&void 0!==R&&R.invert?"invert(".concat(ee.invert,"%)"):"invert(0%)",io=null!==(A=le)&&void 0!==A&&A.saturate?"saturate(".concat(le.saturate,"%)"):"saturate(100%)",ro=null!==(C=te)&&void 0!==C&&C.sepia?"sepia(".concat(te.sepia,"%)"):"sepia(0%)",_o={transform:"".concat(Qt," ").concat(qt," ").concat(Bt," ").concat(Gt," ").concat(It," ").concat(Jt," ").concat(Kt," ").concat(Xt," ").concat(Yt),opacity:kt,filter:"".concat(Zt," ").concat(Ft," ").concat(Rt," ").concat(At," ").concat(Ct," ").concat(Ht),"transition-property":"all","transition-duration":"".concat(jt,"ms"),"transition-delay":"".concat(Dt,"ms"),"transition-timing-function":Tt,"z-index":1},vo={opacity:Lt,filter:"".concat(to," ").concat(oo," ").concat(no," ").concat(ao," ").concat(io," ").concat(ro),transform:"".concat(Nt," ").concat(Ut," ").concat(Vt," ").concat(Wt," ").concat($t," ").concat(eo," ").concat(lo," ").concat(Et," ").concat(Mt),"transition-property":"all","transition-duration":"".concat(Ot,"ms"),"transition-delay":"".concat(St,"ms"),"transition-timing-function":Pt,"z-index":2};(window.isEditMode&&ge.includes(U)||!window.isEditMode&&xt.length)&&(xt.hover((function(){l(this).css(vo)}),(function(){l(this).css(_o)})),xt.css(_o)),"eael_tilt"===pe&&(l(".elementor-element-".concat(U)).mousemove((function(e){var t=(e.pageX-l(this).offset().left-l(this).width()/2)/20,o=(l(this).height()/2-(e.pageY-l(this).offset().top))/20;l(this).find(".elementor-widget-container").css("transform","perspective(500px) rotateY("+t+"deg) rotateX("+o+"deg)")})),l(".elementor-element-".concat(U)).mouseleave((function(e){l(this).find(".elementor-widget-container").css("transform","rotateY(0) rotateX(0)")})))};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelHoverEffect"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/widget",t)}))}}); \ No newline at end of file +!function(e){var l={};function t(o){if(l[o])return l[o].exports;var n=l[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=l,t.d=function(e,l,o){t.o(e,l)||Object.defineProperty(e,l,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,l){if(1&l&&(e=t(e)),8&l)return e;if(4&l&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&l&&"string"!=typeof e)for(var n in e)t.d(o,n,function(l){return e[l]}.bind(null,n));return o},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,l){return Object.prototype.hasOwnProperty.call(e,l)},t.p="",t(t.s=13)}({13:function(e,l){var t=function(e,l){var t,o,n,a,i,r,_,v,s,c,d,u,f,h,y,p,g,m,z,w,b,x,k,X,Y,E,M,j,D,T,O,S,P,Z,F,R,A,C,H=e.data("eael_rotate_effect"),Q=e.data("eael_scale_effect"),q=e.data("eael_skew_effect"),B=e.data("eael_opacity"),G=e.data("eael_blur_effect"),I=e.data("eael_contrast_effect"),J=e.data("eael_grayscale_effect"),K=e.data("eael_invert_effect"),L=e.data("eael_saturate_effect"),N=e.data("eael_sepia_effect"),U=e.data("id"),V=e.data("eael_blur_hover_effect"),W=e.data("eael_contrast_hover_effect"),$=e.data("eael_grayscal_hover_effect"),ee=e.data("eael_invert_hover_effect"),le=e.data("eael_saturate_hover_effect"),te=e.data("eael_sepia_hover_effect"),oe=e.data("eael_rotate_hover_effect"),ne=e.data("eael_scale_hover_effect"),ae=e.data("eael_skew_hover_effect"),ie=e.data("eael_opacity_hover"),re=e.data("eael_duration"),_e=e.data("eael_delay"),ve=e.data("eael_easing"),se=e.data("eael_hover_duration"),ce=e.data("eael_hover_delay"),de=e.data("eael_hover_easing"),ue=e.data("eael_offset_top"),fe=e.data("eael_offset_left"),he=e.data("eael_offset_hover_top"),ye=e.data("eael_offset_hover_left"),pe=e.data("eaeltilt"),ge=[];if(window.isEditMode){void 0===window.isRunFirstTime&&window.isEditMode;window.isRunFirstTime=!0;var me=[];for(var ze in function e(t){l.each(t,(function(l,t){var o=t.attributes.settings.attributes;"widget"===t.attributes.elType&&"yes"===o.eael_hover_effect_switch&&(ge.push(t.attributes.id),"yes"===o.eael_hover_effect_enable_live_changes&&(me[t.attributes.id]=t.attributes.settings.attributes)),"container"===t.attributes.elType&&e(t.attributes.elements.models),"section"===t.attributes.elType&&e(t.attributes.elements.models),"column"===t.attributes.elType&&e(t.attributes.elements.models)}))}(window.elementor.elements.models),me)if(U===ze){var we,be,xe,ke,Xe,Ye,Ee,Me,je,De,Te,Oe,Se,Pe,Ze,Fe,Re,Ae,Ce,He,Qe,qe,Be,Ge,Ie;if("yes"===(null==me||null===(we=me[ze])||void 0===we?void 0:we.eael_hover_effect_hover_tilt)&&(pe="eael_tilt"),"yes"===(null==me||null===(be=me[ze])||void 0===be?void 0:be.eael_hover_effect_opacity_popover))B={opacity:null==me||null===(Fe=me[ze])||void 0===Fe||null===(Fe=Fe.eael_hover_effect_opacity)||void 0===Fe?void 0:Fe.size};if("yes"===(null==me||null===(xe=me[ze])||void 0===xe?void 0:xe.eael_hover_effect_opacity_popover_hover))ie={opacity:null==me||null===(Re=me[ze])||void 0===Re||null===(Re=Re.eael_hover_effect_opacity_hover)||void 0===Re?void 0:Re.size};if("yes"===(null==me||null===(ke=me[ze])||void 0===ke?void 0:ke.eael_hover_effect_filter_popover)){var Je,Ke,Le,Ne,Ue,Ve,We,$e,el,ll,tl,ol;if("yes"===(null==me||null===(Je=me[ze])||void 0===Je?void 0:Je.eael_hover_effect_blur_is_on))G={blur:null==me||null===(We=me[ze])||void 0===We||null===(We=We.eael_hover_effect_blur)||void 0===We?void 0:We.size};if("yes"===(null==me||null===(Ke=me[ze])||void 0===Ke?void 0:Ke.eael_hover_effect_contrast_is_on))I={contrast:null==me||null===($e=me[ze])||void 0===$e||null===($e=$e.eael_hover_effect_contrast)||void 0===$e?void 0:$e.size};if("yes"===(null==me||null===(Le=me[ze])||void 0===Le?void 0:Le.eael_hover_effect_grayscale_is_on))J={grayscale:null==me||null===(el=me[ze])||void 0===el||null===(el=el.eael_hover_effect_grayscal)||void 0===el?void 0:el.size};if("yes"===(null==me||null===(Ne=me[ze])||void 0===Ne?void 0:Ne.eael_hover_effect_invert_is_on))K={invert:null==me||null===(ll=me[ze])||void 0===ll||null===(ll=ll.eael_hover_effect_invert)||void 0===ll?void 0:ll.size};if("yes"===(null==me||null===(Ue=me[ze])||void 0===Ue?void 0:Ue.eael_hover_effect_saturate_is_on))L={saturate:null==me||null===(tl=me[ze])||void 0===tl||null===(tl=tl.eael_hover_effect_saturate)||void 0===tl?void 0:tl.size};if("yes"===(null==me||null===(Ve=me[ze])||void 0===Ve?void 0:Ve.eael_hover_effect_sepia_is_on))N={sepia:null==me||null===(ol=me[ze])||void 0===ol||null===(ol=ol.eael_hover_effect_sepia)||void 0===ol?void 0:ol.size}}if("yes"===(null==me||null===(Xe=me[ze])||void 0===Xe?void 0:Xe.eael_hover_effect_filter_hover_popover)){var nl,al,il,rl,_l,vl,sl,cl,dl,ul,fl,hl;if("yes"===(null==me||null===(nl=me[ze])||void 0===nl?void 0:nl.eael_hover_effect_blur_hover_is_on))V={blur:null==me||null===(sl=me[ze])||void 0===sl||null===(sl=sl.eael_hover_effect_blur_hover)||void 0===sl?void 0:sl.size};if("yes"===(null==me||null===(al=me[ze])||void 0===al?void 0:al.eael_hover_effect_contrast_hover_is_on))W={contrast:null==me||null===(cl=me[ze])||void 0===cl||null===(cl=cl.eael_hover_effect_contrast_hover)||void 0===cl?void 0:cl.size};if("yes"===(null==me||null===(il=me[ze])||void 0===il?void 0:il.eael_hover_effect_grayscale_hover_is_on))$={grayscale:null==me||null===(dl=me[ze])||void 0===dl||null===(dl=dl.eael_hover_effect_grayscal_hover)||void 0===dl?void 0:dl.size};if("yes"===(null==me||null===(rl=me[ze])||void 0===rl?void 0:rl.eael_hover_effect_invert_hover_is_on))ee={invert:null==me||null===(ul=me[ze])||void 0===ul||null===(ul=ul.eael_hover_effect_invert_hover)||void 0===ul?void 0:ul.size};if("yes"===(null==me||null===(_l=me[ze])||void 0===_l?void 0:_l.eael_hover_effect_saturate_hover_is_on))le={saturate:null==me||null===(fl=me[ze])||void 0===fl||null===(fl=fl.eael_hover_effect_saturate_hover)||void 0===fl?void 0:fl.size};if("yes"===(null==me||null===(vl=me[ze])||void 0===vl?void 0:vl.eael_hover_effect_sepia_is_on))te={sepia:null==me||null===(hl=me[ze])||void 0===hl||null===(hl=hl.eael_hover_effect_sepia_hover)||void 0===hl?void 0:hl.size}}if("yes"===(null==me||null===(Ye=me[ze])||void 0===Ye?void 0:Ye.eael_hover_effect_offset_popover))ue={size:null==me||null===(Ae=me[ze])||void 0===Ae||null===(Ae=Ae.eael_hover_effect_offset_top)||void 0===Ae?void 0:Ae.size,unit:null==me||null===(Ce=me[ze])||void 0===Ce||null===(Ce=Ce.eael_hover_effect_offset_top)||void 0===Ce?void 0:Ce.unit},fe={size:null==me||null===(He=me[ze])||void 0===He||null===(He=He.eael_hover_effect_offset_left)||void 0===He?void 0:He.size,unit:null==me||null===(Qe=me[ze])||void 0===Qe||null===(Qe=Qe.eael_hover_effect_offset_left)||void 0===Qe?void 0:Qe.unit};if("yes"===(null==me||null===(Ee=me[ze])||void 0===Ee?void 0:Ee.eael_hover_effect_offset_hover_popover))he={size:null==me||null===(qe=me[ze])||void 0===qe||null===(qe=qe.eael_hover_effect_offset_hover_top)||void 0===qe?void 0:qe.size,unit:null==me||null===(Be=me[ze])||void 0===Be||null===(Be=Be.eael_hover_effect_offset_hover_top)||void 0===Be?void 0:Be.unit},ye={size:null==me||null===(Ge=me[ze])||void 0===Ge||null===(Ge=Ge.eael_hover_effect_offset_hover_left)||void 0===Ge?void 0:Ge.size,unit:null==me||null===(Ie=me[ze])||void 0===Ie||null===(Ie=Ie.eael_hover_effect_offset_hover_left)||void 0===Ie?void 0:Ie.unit};if("yes"===(null==me||null===(Me=me[ze])||void 0===Me?void 0:Me.eael_hover_effect_transform_popover)){var yl,pl,gl,ml,zl,wl,bl,xl,kl,Xl;if("yes"===(null==me||null===(yl=me[ze])||void 0===yl?void 0:yl.eael_hover_effect_rotate_is_on))H={rotate_x:null==me||null===(ml=me[ze])||void 0===ml||null===(ml=ml.eael_hover_effect_transform_rotatex)||void 0===ml?void 0:ml.size,rotate_y:null==me||null===(zl=me[ze])||void 0===zl||null===(zl=zl.eael_hover_effect_transform_rotatey)||void 0===zl?void 0:zl.size,rotate_z:null==me||null===(wl=me[ze])||void 0===wl||null===(wl=wl.eael_hover_effect_transform_rotatez)||void 0===wl?void 0:wl.size};if("yes"===(null==me||null===(pl=me[ze])||void 0===pl?void 0:pl.eael_hover_effect_scale_is_on))Q={scale_x:null==me||null===(bl=me[ze])||void 0===bl||null===(bl=bl.eael_hover_effect_transform_scalex)||void 0===bl?void 0:bl.size,scale_y:null==me||null===(xl=me[ze])||void 0===xl||null===(xl=xl.eael_hover_effect_transform_scaley)||void 0===xl?void 0:xl.size};if("yes"===(null==me||null===(gl=me[ze])||void 0===gl?void 0:gl.eael_hover_effect_skew_is_on))q={skew_x:null==me||null===(kl=me[ze])||void 0===kl||null===(kl=kl.eael_hover_effect_transform_skewx)||void 0===kl?void 0:kl.size,skew_y:null==me||null===(Xl=me[ze])||void 0===Xl||null===(Xl=Xl.eael_hover_effect_transform_skewy)||void 0===Xl?void 0:Xl.size}}if("yes"===(null==me||null===(je=me[ze])||void 0===je?void 0:je.eael_hover_effect_transform_hover_popover)){var Yl,El,Ml,jl,Dl,Tl,Ol,Sl,Pl,Zl;if("yes"===(null==me||null===(Yl=me[ze])||void 0===Yl?void 0:Yl.eael_hover_effect_rotate_hover_is_on))oe={rotate_x:null==me||null===(jl=me[ze])||void 0===jl||null===(jl=jl.eael_hover_effect_transform_hover_rotatex)||void 0===jl?void 0:jl.size,rotate_y:null==me||null===(Dl=me[ze])||void 0===Dl||null===(Dl=Dl.eael_hover_effect_transform_hover_rotatey)||void 0===Dl?void 0:Dl.size,rotate_z:null==me||null===(Tl=me[ze])||void 0===Tl||null===(Tl=Tl.eael_hover_effect_transform_hover_rotatez)||void 0===Tl?void 0:Tl.size};if("yes"===(null==me||null===(El=me[ze])||void 0===El?void 0:El.eael_hover_effect_scale_hover_is_on))ne={scale_x:null==me||null===(Ol=me[ze])||void 0===Ol||null===(Ol=Ol.eael_hover_effect_transform_hover_scalex)||void 0===Ol?void 0:Ol.size,scale_y:null==me||null===(Sl=me[ze])||void 0===Sl||null===(Sl=Sl.eael_hover_effect_transform_hover_scaley)||void 0===Sl?void 0:Sl.size};if("yes"===(null==me||null===(Ml=me[ze])||void 0===Ml?void 0:Ml.eael_hover_effect_skew_hover_is_on))ae={skew_x:null==me||null===(Pl=me[ze])||void 0===Pl||null===(Pl=Pl.eael_hover_effect_transform_hover_skewx)||void 0===Pl?void 0:Pl.size,skew_y:null==me||null===(Zl=me[ze])||void 0===Zl||null===(Zl=Zl.eael_hover_effect_transform_hover_skewy)||void 0===Zl?void 0:Zl.size}}re={transitionDuration:null==me||null===(De=me[ze])||void 0===De||null===(De=De.eael_hover_effect_general_settings_duration)||void 0===De?void 0:De.size},_e={transitionDelay:null==me||null===(Te=me[ze])||void 0===Te||null===(Te=Te.eael_hover_effect_general_settings_delay)||void 0===Te?void 0:Te.size},ve={transitionEasing:null==me||null===(Oe=me[ze])||void 0===Oe?void 0:Oe.eael_hover_effect_general_settings_easing},se={transitionDuration:null==me||null===(Se=me[ze])||void 0===Se||null===(Se=Se.eael_hover_effect_general_settings_duration)||void 0===Se?void 0:Se.size},ce={transitionDelay:null==me||null===(Pe=me[ze])||void 0===Pe||null===(Pe=Pe.eael_hover_effect_general_settings_delay)||void 0===Pe?void 0:Pe.size},de={transitionEasing:null==me||null===(Ze=me[ze])||void 0===Ze?void 0:Ze.eael_hover_effect_general_settings_easing}}}var Fl=window.isEditMode?'body [data-id="'.concat(U,'"] > .elementor-widget-container'):'body .eael_hover_effect[data-id="'.concat(U,'"] > .elementor-widget-container'),Rl=l(Fl),Al=B?null===(t=B)||void 0===t?void 0:t.opacity:"1",Cl=null!==(o=ue)&&void 0!==o&&o.size?"translateX(".concat(ue.size).concat(ue.unit,")"):"translateX(0)",Hl=null!==(n=fe)&&void 0!==n&&n.size?"translateY(".concat(fe.size).concat(fe.unit,")"):"translateY(0)",Ql=null!==(a=he)&&void 0!==a&&a.size?"translateX(".concat(he.size).concat(he.unit,")"):"translateX(0)",ql=null!==(i=ye)&&void 0!==i&&i.size?"translateY(".concat(ye.size).concat(ye.unit,")"):"translateY(0)",Bl=re?null===(r=re)||void 0===r?void 0:r.transitionDuration:"0",Gl=_e?null===(_=_e)||void 0===_?void 0:_.transitionDelay:"0",Il=ve?null===(v=ve)||void 0===v?void 0:v.transitionEasing:"0",Jl=se?null===(s=se)||void 0===s?void 0:s.transitionDuration:"0",Kl=ce?null===(c=ce)||void 0===c?void 0:c.transitionDelay:"0",Ll=de?null===(d=de)||void 0===d?void 0:d.transitionEasing:"0",Nl=null!==(u=G)&&void 0!==u&&u.blur?"blur(".concat(G.blur,"px)"):"blur(0px)",Ul=null!==(f=I)&&void 0!==f&&f.contrast?"contrast(".concat(I.contrast,"%)"):"contrast(100%)",Vl=null!==(h=J)&&void 0!==h&&h.grayscale?"grayscale(".concat(J.grayscale,"%)"):"grayscale(0%)",Wl=null!==(y=K)&&void 0!==y&&y.invert?"invert(".concat(K.invert,"%)"):"invert(0%)",$l=null!==(p=L)&&void 0!==p&&p.saturate?"saturate(".concat(L.saturate,"%)"):"saturate(100%)",et=null!==(g=N)&&void 0!==g&&g.sepia?"sepia(".concat(N.sepia,"%)"):"sepia(0%)",lt=null!==(m=H)&&void 0!==m&&m.rotate_x?"rotateX(".concat(H.rotate_x,"deg)"):"rotateX(0)",tt=null!==(z=H)&&void 0!==z&&z.rotate_y?"rotateY(".concat(H.rotate_y,"deg)"):"rotateY(0)",ot=null!==(w=H)&&void 0!==w&&w.rotate_z?"rotateZ(".concat(H.rotate_z,"deg)"):"rotateZ(0)",nt=null!==(b=Q)&&void 0!==b&&b.scale_x?"scaleX(".concat(Q.scale_x,")"):"scaleX(1)",at=null!==(x=Q)&&void 0!==x&&x.scale_y?"scaleY(".concat(Q.scale_y,")"):"scaleY(1)",it=null!==(k=q)&&void 0!==k&&k.skew_x?"skewX(".concat(q.skew_x,"deg)"):"skewX(0deg)",rt=null!==(X=q)&&void 0!==X&&X.skew_y?"skewY(".concat(q.skew_y,"deg)"):"skewY(0deg)",_t=ie?null===(Y=ie)||void 0===Y?void 0:Y.opacity:"1",vt=null!==(E=oe)&&void 0!==E&&E.rotate_x?"rotateX(".concat(oe.rotate_x,"deg)"):"rotateX(0)",st=null!==(M=oe)&&void 0!==M&&M.rotate_y?"rotateY(".concat(oe.rotate_y,"deg)"):"rotateY(0)",ct=null!==(j=oe)&&void 0!==j&&j.rotate_z?"rotateZ(".concat(oe.rotate_z,"deg)"):"rotateZ(0)",dt=null!==(D=ne)&&void 0!==D&&D.scale_x?"scaleX(".concat(ne.scale_x,")"):"scaleX(1)",ut=null!==(T=ne)&&void 0!==T&&T.scale_y?"scaleY(".concat(ne.scale_y,")"):"scaleY(1)",ft=null!==(O=ae)&&void 0!==O&&O.skew_x?"skewX(".concat(ae.skew_x,"deg)"):"skewX(0)",ht=null!==(S=ae)&&void 0!==S&&S.skew_y?"skewY(".concat(ae.skew_y,"deg)"):"skewY(0)",yt=null!==(P=V)&&void 0!==P&&P.blur?"blur(".concat(V.blur,"px)"):"blur(0px)",pt=null!==(Z=W)&&void 0!==Z&&Z.contrast?"contrast(".concat(W.contrast,"%)"):"contrast(100%)",gt=null!==(F=$)&&void 0!==F&&F.grayscale?"grayscale(".concat($.grayscale,"%)"):"grayscale(0%)",mt=null!==(R=ee)&&void 0!==R&&R.invert?"invert(".concat(ee.invert,"%)"):"invert(0%)",zt=null!==(A=le)&&void 0!==A&&A.saturate?"saturate(".concat(le.saturate,"%)"):"saturate(100%)",wt=null!==(C=te)&&void 0!==C&&C.sepia?"sepia(".concat(te.sepia,"%)"):"sepia(0%)",bt={transform:"".concat(lt," ").concat(tt," ").concat(ot," ").concat(nt," ").concat(at," ").concat(it," ").concat(rt," ").concat(Cl," ").concat(Hl),opacity:Al,filter:"".concat(Nl," ").concat(Ul," ").concat(Vl," ").concat(Wl," ").concat($l," ").concat(et),"transition-property":"all","transition-duration":"".concat(Bl,"ms"),"transition-delay":"".concat(Gl,"ms"),"transition-timing-function":Il,"z-index":1},xt={opacity:_t,filter:"".concat(yt," ").concat(pt," ").concat(gt," ").concat(mt," ").concat(zt," ").concat(wt),transform:"".concat(vt," ").concat(st," ").concat(ct," ").concat(dt," ").concat(ut," ").concat(ft," ").concat(ht," ").concat(Ql," ").concat(ql),"transition-property":"all","transition-duration":"".concat(Jl,"ms"),"transition-delay":"".concat(Kl,"ms"),"transition-timing-function":Ll,"z-index":2};(window.isEditMode&&ge.includes(U)||!window.isEditMode&&Rl.length)&&(Rl.hover((function(){l(this).css(xt)}),(function(){l(this).css(bt)})),Rl.css(bt)),"eael_tilt"===pe&&(l(".elementor-element-".concat(U)).mousemove((function(e){var t=(e.pageX-l(this).offset().left-l(this).width()/2)/20,o=(l(this).height()/2-(e.pageY-l(this).offset().top))/20;l(this).find(".elementor-widget-container").css("transform","perspective(500px) rotateY("+t+"deg) rotateX("+o+"deg)")})),l(".elementor-element-".concat(U)).mouseleave((function(e){l(this).find(".elementor-widget-container").css("transform","rotateY(0) rotateX(0)")})))};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelHoverEffect"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/widget",t)}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/product-grid.js b/assets/front-end/js/view/product-grid.js index c1e407f0b..5fe7442ab 100644 --- a/assets/front-end/js/view/product-grid.js +++ b/assets/front-end/js/view/product-grid.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n console.log(err.toString());\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n console.log(err.toString());\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n if (eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); /***/ }) diff --git a/assets/front-end/js/view/product-grid.min.js b/assets/front-end/js/view/product-grid.min.js index 69d7c4d7f..ce6a5fff6 100644 --- a/assets/front-end/js/view/product-grid.min.js +++ b/assets/front-end/js/view/product-grid.min.js @@ -1 +1 @@ -!function(e){var t={};function a(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return e[o].call(i.exports,i,i.exports,a),i.l=!0,i.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)a.d(o,i,function(t){return e[t]}.bind(null,i));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=21)}({21:function(e,t){eael.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eicon-woocommerce.default",(function(e,t){eael.hooks.doAction("quickViewAddMarkup",e,t);var a=e.find("#eael-product-grid"),o=a.data("widget-id"),i=a.data("page-id"),l=a.data("nonce"),n=document.createElement("div");n.classList.add("wcpc-overlay"),n.setAttribute("id","wcpc-overlay");var c=document.getElementsByTagName("body")[0];c.appendChild(n);var d=document.getElementById("wcpc-overlay"),r=t(document),p=!1,s=!1,u=!1,m=!1,f=!1;t(c).append('\n
\n \n \n
\n ');var g=t("#eael_modal_content"),v=document.getElementsByClassName("eael-wcpc-modal")[0],y=[{name:"action",value:"eael_product_grid"},{name:"widget_id",value:o},{name:"page_id",value:i},{name:"nonce",value:l}],w=function(e,a,o,i,l){t.ajax({url:localize.ajaxurl,type:"POST",dataType:"json",data:e,beforeSend:i,success:a,error:o,complete:l})};function h(e){e&&e.success&&(g.html(e.data.compare_table),v.style.visibility="visible",v.style.opacity="1",d.style.visibility="visible",d.style.opacity="1",localStorage.setItem("productIds",JSON.stringify(e.data.product_ids))),p&&p.hide(),"compare"===f&&(m&&m.length?m.text(localize.i18n.added):u&&s.html('')),"remove"===f&&(m&&m.length?m.text(localize.i18n.compare):u&&s.html(''))}function _(e,t){console.log(t.toString())}a.hasClass("masonry")&&r.ajaxComplete((function(){t(window).trigger("resize")})),r.on("click",".eael-wc-compare",(function(e){e.preventDefault(),e.stopImmediatePropagation(),f="compare",s=t(this),(m=s.find(".eael-wc-compare-text")).length||(u=s.hasClass("eael-wc-compare-icon")),u||(p=s.find(".eael-wc-compare-loader")).show();var a=s.data("product-id"),o=localStorage.getItem("productIds");o?(o=JSON.parse(o)).push(a):o=[a],y.push({name:"product_id",value:s.data("product-id")}),y.push({name:"product_ids",value:JSON.stringify(o)}),w(y,h,_)})),r.on("click",".close-modal",(function(e){v.style.visibility="hidden",v.style.opacity="0",d.style.visibility="hidden",d.style.opacity="0"})),r.on("click",".eael-wc-remove",(function(e){e.preventDefault(),e.stopImmediatePropagation();var a=t(this),o=a.data("product-id");a.addClass("disable"),a.prop("disabled",!0);var i=localStorage.getItem("productIds");i?(i=JSON.parse(i)).push(o):i=[o];var l=Array.from(y);l.push({name:"product_id",value:o}),l.push({name:"remove_product",value:1}),l.push({name:"product_ids",value:JSON.stringify(i)}),f="remove";var n=t('button[data-product-id="'+o+'"]');(m=n.find(".eael-wc-compare-text")).length||(u=n.hasClass("eael-wc-compare-icon")),w(l,h,_)})),t(".eael-woo-pagination",e).on("click","a",(function(e){e.preventDefault();var a=t(this),o=a.closest(".eael-woo-pagination"),i=a.data("pnumber"),l=o.data("plimit"),n=localize.ajaxurl,c=o.data("args"),d=o.data("widgetid"),r=o.data("pageid"),p=".elementor-element-"+d,s=o.data("template");t.ajax({url:n,type:"post",data:{action:"woo_product_pagination_product",number:i,limit:l,args:c,widget_id:d,page_id:r,security:localize.nonce,templateInfo:s},beforeSend:function(){t(p).addClass("eael-product-loader")},success:function(e){t(p+" .eael-product-grid .products").html(e),t(p+" .woocommerce-product-gallery").each((function(){t(this).wc_product_gallery()})),t("html, body").animate({scrollTop:t(p+" .eael-product-grid").offset().top-50},500)},complete:function(){t(p).removeClass("eael-product-loader")}}),t.ajax({url:n,type:"post",data:{action:"woo_product_pagination",number:i,limit:l,args:c,widget_id:d,page_id:r,security:localize.nonce,template_name:s.name},success:function(e){t(p+" .eael-product-grid .eael-woo-pagination").html(e),t("html, body").animate({scrollTop:t(p+" .eael-product-grid").offset().top-50},500)}})})),eael.hooks.doAction("quickViewPopupViewInit",e,t),isEditMode&&t(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1"),t(document).find(".eael-woocommerce-popup-view").length<1&&t("body").append('')}))}))}}); \ No newline at end of file +!function(e){var t={};function a(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return e[o].call(i.exports,i,i.exports,a),i.l=!0,i.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)a.d(o,i,function(t){return e[t]}.bind(null,i));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=21)}({21:function(e,t){eael.hooks.addAction("init","ea",(function(){eael.elementStatusCheck("eaelProductGridLoad")&&void 0===window.forceFullyRun||elementorFrontend.hooks.addAction("frontend/element_ready/eicon-woocommerce.default",(function(e,t){eael.hooks.doAction("quickViewAddMarkup",e,t);var a=e.find("#eael-product-grid"),o=a.data("widget-id"),i=a.data("page-id"),l=a.data("nonce"),n=document.createElement("div");n.classList.add("wcpc-overlay"),n.setAttribute("id","wcpc-overlay");var c=document.getElementsByTagName("body")[0];c.appendChild(n);var d=document.getElementById("wcpc-overlay"),r=t(document),s=!1,p=!1,u=!1,m=!1,f=!1;t(c).append('\n
\n \n \n
\n ');var v=t("#eael_modal_content"),g=document.getElementsByClassName("eael-wcpc-modal")[0],y=[{name:"action",value:"eael_product_grid"},{name:"widget_id",value:o},{name:"page_id",value:i},{name:"nonce",value:l}],w=function(e,a,o,i,l){t.ajax({url:localize.ajaxurl,type:"POST",dataType:"json",data:e,beforeSend:i,success:a,error:o,complete:l})};function h(e){e&&e.success&&(v.html(e.data.compare_table),g.style.visibility="visible",g.style.opacity="1",d.style.visibility="visible",d.style.opacity="1",localStorage.setItem("productIds",JSON.stringify(e.data.product_ids))),s&&s.hide(),"compare"===f&&(m&&m.length?m.text(localize.i18n.added):u&&p.html('')),"remove"===f&&(m&&m.length?m.text(localize.i18n.compare):u&&p.html(''))}function _(e,t){console.log(t.toString())}a.hasClass("masonry")&&r.ajaxComplete((function(){t(window).trigger("resize")})),r.on("click",".eael-wc-compare",(function(e){e.preventDefault(),e.stopImmediatePropagation(),f="compare",p=t(this),(m=p.find(".eael-wc-compare-text")).length||(u=p.hasClass("eael-wc-compare-icon")),u||(s=p.find(".eael-wc-compare-loader")).show();var a=p.data("product-id"),o=localStorage.getItem("productIds");o?(o=JSON.parse(o)).push(a):o=[a],y.push({name:"product_id",value:p.data("product-id")}),y.push({name:"product_ids",value:JSON.stringify(o)}),w(y,h,_)})),r.on("click",".close-modal",(function(e){g.style.visibility="hidden",g.style.opacity="0",d.style.visibility="hidden",d.style.opacity="0"})),r.on("click",".eael-wc-remove",(function(e){e.preventDefault(),e.stopImmediatePropagation();var a=t(this),o=a.data("product-id");a.addClass("disable"),a.prop("disabled",!0);var i=localStorage.getItem("productIds");i?(i=JSON.parse(i)).push(o):i=[o];var l=Array.from(y);l.push({name:"product_id",value:o}),l.push({name:"remove_product",value:1}),l.push({name:"product_ids",value:JSON.stringify(i)}),f="remove";var n=t('button[data-product-id="'+o+'"]');(m=n.find(".eael-wc-compare-text")).length||(u=n.hasClass("eael-wc-compare-icon")),w(l,h,_)})),t(".eael-woo-pagination",e).on("click","a",(function(e){e.preventDefault();var a=t(this),o=a.closest(".eael-woo-pagination"),i=a.data("pnumber"),l=o.data("plimit"),n=localize.ajaxurl,c=o.data("args"),d=o.data("widgetid"),r=o.data("pageid"),s=".elementor-element-"+d,p=o.data("template");t.ajax({url:n,type:"post",data:{action:"woo_product_pagination_product",number:i,limit:l,args:c,widget_id:d,page_id:r,security:localize.nonce,templateInfo:p},beforeSend:function(){t(s).addClass("eael-product-loader")},success:function(e){t(s+" .eael-product-grid .products").html(e),t(s+" .woocommerce-product-gallery").each((function(){t(this).wc_product_gallery()})),t("html, body").animate({scrollTop:t(s+" .eael-product-grid").offset().top-50},500)},complete:function(){t(s).removeClass("eael-product-loader")}}),t.ajax({url:n,type:"post",data:{action:"woo_product_pagination",number:i,limit:l,args:c,widget_id:d,page_id:r,security:localize.nonce,template_name:p.name},success:function(e){t(s+" .eael-product-grid .eael-woo-pagination").html(e),t("html, body").animate({scrollTop:t(s+" .eael-product-grid").offset().top-50},500)}})})),eael.hooks.doAction("quickViewPopupViewInit",e,t),isEditMode&&t(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1"),t(document).find(".eael-woocommerce-popup-view").length<1&&t("body").append('')}))}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/woo-product-carousel.js b/assets/front-end/js/view/woo-product-carousel.js index 24ca95c62..5f999ed43 100644 --- a/assets/front-end/js/view/woo-product-carousel.js +++ b/assets/front-end/js/view/woo-product-carousel.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductCarousel = function wooProductCarousel($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $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 on: {\n init: function init() {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n }\n };\n if ($effect === 'slide') {\n if (typeof localize.el_breakpoints === 'string') {\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 } else {\n var el_breakpoints = {},\n breakpoints = {},\n bp_index = 0,\n desktopBreakPoint = localize.el_breakpoints.widescreen.is_enabled ? localize.el_breakpoints.widescreen.value - 1 : 4800;\n el_breakpoints[bp_index] = {\n breakpoint: 0,\n slidesPerView: 0,\n spaceBetween: 0\n };\n bp_index++;\n localize.el_breakpoints.desktop = {\n is_enabled: true,\n value: desktopBreakPoint\n };\n $.each(['mobile', 'mobile_extra', 'tablet', 'tablet_extra', 'laptop', 'desktop', 'widescreen'], function (index, device) {\n var breakpoint = localize.el_breakpoints[device];\n if (breakpoint.is_enabled) {\n var _items = $wooProductCarousel.data('items-' + device),\n _margin = $wooProductCarousel.data('margin-' + device);\n $margin = _margin !== undefined ? _margin : device === 'desktop' ? $margin : 10;\n $itemsPerView = _items !== undefined && _items !== \"\" ? _items : device === 'desktop' ? $items : 3;\n if (device === 'mobile' && _items === undefined) {\n $itemsPerView = 1;\n } else if (device === 'tablet' && _items === undefined) {\n $itemsPerView = 2;\n }\n el_breakpoints[bp_index] = {\n breakpoint: breakpoint.value,\n slidesPerView: $itemsPerView,\n spaceBetween: $margin\n };\n bp_index++;\n }\n });\n $.each(el_breakpoints, function (index, breakpoint) {\n var _index = parseInt(index);\n if (typeof el_breakpoints[_index + 1] !== 'undefined') {\n breakpoints[breakpoint.breakpoint] = {\n slidesPerView: el_breakpoints[_index + 1].slidesPerView,\n spaceBetween: el_breakpoints[_index + 1].spaceBetween\n };\n }\n });\n $carouselOptions.breakpoints = breakpoints;\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 $carouselOptions.breakpoints = {\n 1024: {\n slidesPerView: 3\n },\n 768: {\n slidesPerView: 1\n },\n 320: {\n slidesPerView: 1\n }\n };\n }\n if ($autoplay === 0) {\n $carouselOptions.autoplay = false;\n }\n swiperLoader($wooProductCarousel, $carouselOptions).then(function (eaelWooProductCarousel) {\n if ($autoplay === 0) {\n eaelWooProductCarousel.autoplay.stop();\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 }\n\n //gallery pagination\n var $paginationGallerySelector = $scope.find('.eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination').eq(0);\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 });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n var WooProductCarouselLoader = function WooProductCarouselLoader($src) {\n var productCarousels = $($src).find('.eael-woo-product-carousel');\n if (productCarousels.length) {\n productCarousels.each(function () {\n if ($(this)[0].swiper) {\n $(this)[0].swiper.destroy(true, true);\n swiperLoader($(this)[0], $carouselOptions);\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", WooProductCarouselLoader);\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", WooProductCarouselLoader);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 if (eael.elementStatusCheck('eaelWooProductSliderLoad')) {\n return false;\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?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductCarousel = function wooProductCarousel($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $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 on: {\n init: function init() {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n }\n };\n if ($effect === 'slide') {\n if (typeof localize.el_breakpoints === 'string') {\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 } else {\n var el_breakpoints = {},\n breakpoints = {},\n bp_index = 0,\n desktopBreakPoint = localize.el_breakpoints.widescreen.is_enabled ? localize.el_breakpoints.widescreen.value - 1 : 4800;\n el_breakpoints[bp_index] = {\n breakpoint: 0,\n slidesPerView: 0,\n spaceBetween: 0\n };\n bp_index++;\n localize.el_breakpoints.desktop = {\n is_enabled: true,\n value: desktopBreakPoint\n };\n $.each(['mobile', 'mobile_extra', 'tablet', 'tablet_extra', 'laptop', 'desktop', 'widescreen'], function (index, device) {\n var breakpoint = localize.el_breakpoints[device];\n if (breakpoint.is_enabled) {\n var _items = $wooProductCarousel.data('items-' + device),\n _margin = $wooProductCarousel.data('margin-' + device);\n $margin = _margin !== undefined ? _margin : device === 'desktop' ? $margin : 10;\n $itemsPerView = _items !== undefined && _items !== \"\" ? _items : device === 'desktop' ? $items : 3;\n if (device === 'mobile' && _items === undefined) {\n $itemsPerView = 1;\n } else if (device === 'tablet' && _items === undefined) {\n $itemsPerView = 2;\n }\n el_breakpoints[bp_index] = {\n breakpoint: breakpoint.value,\n slidesPerView: $itemsPerView,\n spaceBetween: $margin\n };\n bp_index++;\n }\n });\n $.each(el_breakpoints, function (index, breakpoint) {\n var _index = parseInt(index);\n if (typeof el_breakpoints[_index + 1] !== 'undefined') {\n breakpoints[breakpoint.breakpoint] = {\n slidesPerView: el_breakpoints[_index + 1].slidesPerView,\n spaceBetween: el_breakpoints[_index + 1].spaceBetween\n };\n }\n });\n $carouselOptions.breakpoints = breakpoints;\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 $carouselOptions.breakpoints = {\n 1024: {\n slidesPerView: 3\n },\n 768: {\n slidesPerView: 1\n },\n 320: {\n slidesPerView: 1\n }\n };\n }\n if ($autoplay === 0) {\n $carouselOptions.autoplay = false;\n }\n swiperLoader($wooProductCarousel, $carouselOptions).then(function (eaelWooProductCarousel) {\n if ($autoplay === 0) {\n eaelWooProductCarousel.autoplay.stop();\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 }\n\n //gallery pagination\n var $paginationGallerySelector = $scope.find('.eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination').eq(0);\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 });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n var WooProductCarouselLoader = function WooProductCarouselLoader($src) {\n var productCarousels = $($src).find('.eael-woo-product-carousel');\n if (productCarousels.length) {\n productCarousels.each(function () {\n if ($(this)[0].swiper) {\n $(this)[0].swiper.destroy(true, true);\n swiperLoader($(this)[0], $carouselOptions);\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", WooProductCarouselLoader);\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", WooProductCarouselLoader);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 if (eael.elementStatusCheck('eaelWooProductSliderLoad') && window.forceFullyRun === undefined) {\n return;\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?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-carousel.min.js b/assets/front-end/js/view/woo-product-carousel.min.js index e452d8562..440b654fc 100644 --- a/assets/front-end/js/view/woo-product-carousel.min.js +++ b/assets/front-end/js/view/woo-product-carousel.min.js @@ -1 +1 @@ -!function(e){var t={};function o(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,o),i.l=!0,i.exports}o.m=e,o.c=t,o.d=function(e,t,a){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(o.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(a,i,function(t){return e[t]}.bind(null,i));return a},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=34)}({34:function(e,t){eael.hooks.addAction("init","ea",(function(){var e=function(e,o){return"undefined"==typeof Swiper||"function"==typeof Swiper?new(0,elementorFrontend.utils.swiper)(e,o).then((function(e){return e})):t(e,o)},t=function(e,t){return new Promise((function(o,a){o(new Swiper(e,t))}))};if(eael.elementStatusCheck("eaelWooProductSliderLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-carousel.default",(function(t,o){eael.hooks.doAction("quickViewAddMarkup",t,o);var a=t.find(".eael-woo-product-carousel").eq(0),i=(a.data("type"),void 0!==a.data("autoplay")?a.data("autoplay"):999999),r=void 0!==a.data("pagination")?a.data("pagination"):".swiper-pagination",n=void 0!==a.data("arrow-next")?a.data("arrow-next"):".swiper-button-next",d=void 0!==a.data("arrow-prev")?a.data("arrow-prev"):".swiper-button-prev",l=void 0!==a.data("items")?a.data("items"):3,s=void 0!==a.data("items-tablet")?a.data("items-tablet"):3,c=void 0!==a.data("items-mobile")?a.data("items-mobile"):3,p=void 0!==a.data("margin")?a.data("margin"):10,u=void 0!==a.data("margin-tablet")?a.data("margin-tablet"):10,f=void 0!==a.data("margin-mobile")?a.data("margin-mobile"):0,w=void 0!==a.data("effect")?a.data("effect"):"slide",v=void 0!==a.data("speed")?a.data("speed"):400,m=void 0!==a.data("loop")?a.data("loop"):0,b=void 0!==a.data("grab-cursor")?a.data("grab-cursor"):0,g=void 0!==a.data("pause-on-hover")?a.data("pause-on-hover"):"",h="coverflow"==w,y=void 0!==a.data("depth")?a.data("depth"):100,k=void 0!==a.data("rotate")?a.data("rotate"):50,P=void 0!==a.data("stretch")?a.data("stretch"):10,V={direction:"horizontal",speed:v,effect:w,centeredSlides:h,grabCursor:b,autoHeight:!0,loop:m,slidesPerGroup:1,autoplay:{delay:i,disableOnInteraction:!1},pagination:{el:r,clickable:!0},navigation:{nextEl:n,prevEl:d},slidesPerView:l,on:{init:function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),200)}}};if("slide"===w)if("string"==typeof localize.el_breakpoints)V.breakpoints={1024:{slidesPerView:l,spaceBetween:p},768:{slidesPerView:s,spaceBetween:u},320:{slidesPerView:c,spaceBetween:f}};else{var _={},S={},x=0,z=localize.el_breakpoints.widescreen.is_enabled?localize.el_breakpoints.widescreen.value-1:4800;_[x]={breakpoint:0,slidesPerView:0,spaceBetween:0},x++,localize.el_breakpoints.desktop={is_enabled:!0,value:z},o.each(["mobile","mobile_extra","tablet","tablet_extra","laptop","desktop","widescreen"],(function(e,t){var o=localize.el_breakpoints[t];if(o.is_enabled){var i=a.data("items-"+t),r=a.data("margin-"+t);p=void 0!==r?r:"desktop"===t?p:10,$itemsPerView=void 0!==i&&""!==i?i:"desktop"===t?l:3,"mobile"===t&&void 0===i?$itemsPerView=1:"tablet"===t&&void 0===i&&($itemsPerView=2),_[x]={breakpoint:o.value,slidesPerView:$itemsPerView,spaceBetween:p},x++}})),o.each(_,(function(e,t){var o=parseInt(e);void 0!==_[o+1]&&(S[t.breakpoint]={slidesPerView:_[o+1].slidesPerView,spaceBetween:_[o+1].spaceBetween})})),V.breakpoints=S}"coverflow"===w&&(V.coverflowEffect={rotate:k,stretch:P,depth:y,modifier:1,slideShadows:!1},V.breakpoints={1024:{slidesPerView:3},768:{slidesPerView:1},320:{slidesPerView:1}}),0===i&&(V.autoplay=!1),e(a,V).then((function(o){0===i&&o.autoplay.stop(),g&&0!==i&&(a.on("mouseenter",(function(){o.autoplay.stop()})),a.on("mouseleave",(function(){o.autoplay.start()})));var r=t.find(".eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination").eq(0);r.length>0&&e(r,{spaceBetween:20,centeredSlides:h,touchRatio:.2,slideToClickedSlide:!0,loop:m,slidesPerGroup:1,slidesPerView:3}).then((function(e){o.controller.control=e,e.controller.control=o}))})),eael.hooks.doAction("quickViewPopupViewInit",t,o),isEditMode&&o(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1"),o(document).find(".eael-woocommerce-popup-view").length<1&&o("body").append('');var B=function(t){var a=o(t).find(".eael-woo-product-carousel");a.length&&a.each((function(){o(this)[0].swiper&&(o(this)[0].swiper.destroy(!0,!0),e(o(this)[0],V))}))};eael.hooks.addAction("ea-lightbox-triggered","ea",B),eael.hooks.addAction("ea-toggle-triggered","ea",B)}))}))}}); \ No newline at end of file +!function(e){var t={};function o(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,o),i.l=!0,i.exports}o.m=e,o.c=t,o.d=function(e,t,a){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(o.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(a,i,function(t){return e[t]}.bind(null,i));return a},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=34)}({34:function(e,t){eael.hooks.addAction("init","ea",(function(){var e=function(e,o){return"undefined"==typeof Swiper||"function"==typeof Swiper?new(0,elementorFrontend.utils.swiper)(e,o).then((function(e){return e})):t(e,o)},t=function(e,t){return new Promise((function(o,a){o(new Swiper(e,t))}))};eael.elementStatusCheck("eaelWooProductSliderLoad")&&void 0===window.forceFullyRun||elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-carousel.default",(function(t,o){eael.hooks.doAction("quickViewAddMarkup",t,o);var a=t.find(".eael-woo-product-carousel").eq(0),i=(a.data("type"),void 0!==a.data("autoplay")?a.data("autoplay"):999999),r=void 0!==a.data("pagination")?a.data("pagination"):".swiper-pagination",n=void 0!==a.data("arrow-next")?a.data("arrow-next"):".swiper-button-next",d=void 0!==a.data("arrow-prev")?a.data("arrow-prev"):".swiper-button-prev",l=void 0!==a.data("items")?a.data("items"):3,s=void 0!==a.data("items-tablet")?a.data("items-tablet"):3,c=void 0!==a.data("items-mobile")?a.data("items-mobile"):3,p=void 0!==a.data("margin")?a.data("margin"):10,u=void 0!==a.data("margin-tablet")?a.data("margin-tablet"):10,f=void 0!==a.data("margin-mobile")?a.data("margin-mobile"):0,w=void 0!==a.data("effect")?a.data("effect"):"slide",v=void 0!==a.data("speed")?a.data("speed"):400,m=void 0!==a.data("loop")?a.data("loop"):0,b=void 0!==a.data("grab-cursor")?a.data("grab-cursor"):0,g=void 0!==a.data("pause-on-hover")?a.data("pause-on-hover"):"",h="coverflow"==w,y=void 0!==a.data("depth")?a.data("depth"):100,k=void 0!==a.data("rotate")?a.data("rotate"):50,P=void 0!==a.data("stretch")?a.data("stretch"):10,V={direction:"horizontal",speed:v,effect:w,centeredSlides:h,grabCursor:b,autoHeight:!0,loop:m,slidesPerGroup:1,autoplay:{delay:i,disableOnInteraction:!1},pagination:{el:r,clickable:!0},navigation:{nextEl:n,prevEl:d},slidesPerView:l,on:{init:function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),200)}}};if("slide"===w)if("string"==typeof localize.el_breakpoints)V.breakpoints={1024:{slidesPerView:l,spaceBetween:p},768:{slidesPerView:s,spaceBetween:u},320:{slidesPerView:c,spaceBetween:f}};else{var _={},S={},x=0,z=localize.el_breakpoints.widescreen.is_enabled?localize.el_breakpoints.widescreen.value-1:4800;_[x]={breakpoint:0,slidesPerView:0,spaceBetween:0},x++,localize.el_breakpoints.desktop={is_enabled:!0,value:z},o.each(["mobile","mobile_extra","tablet","tablet_extra","laptop","desktop","widescreen"],(function(e,t){var o=localize.el_breakpoints[t];if(o.is_enabled){var i=a.data("items-"+t),r=a.data("margin-"+t);p=void 0!==r?r:"desktop"===t?p:10,$itemsPerView=void 0!==i&&""!==i?i:"desktop"===t?l:3,"mobile"===t&&void 0===i?$itemsPerView=1:"tablet"===t&&void 0===i&&($itemsPerView=2),_[x]={breakpoint:o.value,slidesPerView:$itemsPerView,spaceBetween:p},x++}})),o.each(_,(function(e,t){var o=parseInt(e);void 0!==_[o+1]&&(S[t.breakpoint]={slidesPerView:_[o+1].slidesPerView,spaceBetween:_[o+1].spaceBetween})})),V.breakpoints=S}"coverflow"===w&&(V.coverflowEffect={rotate:k,stretch:P,depth:y,modifier:1,slideShadows:!1},V.breakpoints={1024:{slidesPerView:3},768:{slidesPerView:1},320:{slidesPerView:1}}),0===i&&(V.autoplay=!1),e(a,V).then((function(o){0===i&&o.autoplay.stop(),g&&0!==i&&(a.on("mouseenter",(function(){o.autoplay.stop()})),a.on("mouseleave",(function(){o.autoplay.start()})));var r=t.find(".eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination").eq(0);r.length>0&&e(r,{spaceBetween:20,centeredSlides:h,touchRatio:.2,slideToClickedSlide:!0,loop:m,slidesPerGroup:1,slidesPerView:3}).then((function(e){o.controller.control=e,e.controller.control=o}))})),eael.hooks.doAction("quickViewPopupViewInit",t,o),isEditMode&&o(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1"),o(document).find(".eael-woocommerce-popup-view").length<1&&o("body").append('');var B=function(t){var a=o(t).find(".eael-woo-product-carousel");a.length&&a.each((function(){o(this)[0].swiper&&(o(this)[0].swiper.destroy(!0,!0),e(o(this)[0],V))}))};eael.hooks.addAction("ea-lightbox-triggered","ea",B),eael.hooks.addAction("ea-toggle-triggered","ea",B)}))}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/woo-product-gallery.js b/assets/front-end/js/view/woo-product-gallery.js index 96b7fb100..76295e5aa 100644 --- a/assets/front-end/js/view/woo-product-gallery.js +++ b/assets/front-end/js/view/woo-product-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-gallery.min.js b/assets/front-end/js/view/woo-product-gallery.min.js index 4985e1727..761df0f38 100644 --- a/assets/front-end/js/view/woo-product-gallery.min.js +++ b/assets/front-end/js/view/woo-product-gallery.min.js @@ -1 +1 @@ -!function(e){var t={};function a(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(o,r,function(t){return e[t]}.bind(null,r));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=35)}({35:function(e,t){eael.hooks.addAction("init","ea",(function(){if(eael.elementStatusCheck("productGalleryLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-gallery.default",(function(e,t){var a=e.find(".products.eael-post-appender").data("show-secondary-image");eael.hooks.doAction("quickViewAddMarkup",e,t);var o=t(".eael-cat-tab",e);t(".eael-cat-tab li:first a",e).addClass("active"),o.on("click","a",(function(a){a.preventDefault();var r=t(this);if(r.hasClass("active"))return!1;t(".eael-cat-tab li a",e).removeClass("active"),r.addClass("active"),localStorage.setItem("eael-cat-tab","true");var n=o.data("class"),d=o.data("widget"),i=o.data("page-id"),c=o.data("nonce"),s=o.data("args"),l=o.data("layout"),u=".elementor-element-"+d,p=o.data("template"),m={taxonomy:t(".eael-cat-tab li a.active",e).data("taxonomy"),field:"term_id",terms:t(".eael-cat-tab li a.active",e).data("id"),terms_tag:t(".eael-cat-tab li a.active",e).data("tagid")};t.ajax({url:localize.ajaxurl,type:"POST",data:{action:"eael_product_gallery",class:n,args:s,taxonomy:m,template_info:p,page:1,page_id:i,widget_id:d,nonce:c},beforeSend:function(){t(u+" .woocommerce").addClass("eael-product-loader")},success:function(a){var o=t(a);if(o.hasClass("no-posts-found")||0==o.length)t(".elementor-element-"+d+" .eael-product-gallery .woocommerce .eael-post-appender").empty().append('

No Product Found

'),t(".eael-load-more-button",e).addClass("hide-load-more");else{t(".elementor-element-"+d+" .eael-product-gallery .woocommerce .eael-post-appender").empty().append(o);var r=t("
"+a+"
").find(".eael-max-page").text(),n=t(".eael-load-more-button",e);if(r&&n.data("page")>=r?n.addClass("hide-load-more"):n.removeClass("hide-load-more"),n.data("max-page",r),"masonry"===l){var i=t(".eael-product-gallery .products",e);i.isotope("destroy");var c=i.isotope({itemSelector:"li.product",layoutMode:l,percentPosition:!0});c.imagesLoaded().progress((function(){c.isotope("layout")}))}}},complete:function(){t(u+" .woocommerce").removeClass("eael-product-loader")},error:function(e){console.log(e)}})})),eael.hooks.doAction("quickViewPopupViewInit",e,t),isEditMode&&t(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1");var r=dataSrcHover=srcset=srcsetHover="";a&&t(document).on("mouseover",".eael-product-wrap",(function(){r=t(this).data("src"),dataSrcHover=t(this).data("src-hover"),srcset=t(this).find("img").attr("srcset"),dataSrcHover&&(t(this).find("img").attr("srcset-hover",srcset),t(this).find("img").attr("src",dataSrcHover),t(this).find("img").attr("srcset",dataSrcHover))})).on("mouseout",".eael-product-wrap",(function(){r=t(this).data("src"),dataSrcHover=t(this).data("src-hover"),srcsetHover=t(this).find("img").attr("srcset-hover"),dataSrcHover&&(t(this).find("img").attr("src",r),t(this).find("img").attr("srcset",srcsetHover),t(this).find("img").attr("srcset-hover",""))})),window.addEventListener("pageshow",(function(e){e.persisted&&setTimeout((function(){window.location.reload()}),10)}),!1)}))}))}}); \ No newline at end of file +!function(e){var t={};function a(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(o,r,function(t){return e[t]}.bind(null,r));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=35)}({35:function(e,t){eael.hooks.addAction("init","ea",(function(){eael.elementStatusCheck("productGalleryLoad")&&void 0===window.forceFullyRun||elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-gallery.default",(function(e,t){var a=e.find(".products.eael-post-appender").data("show-secondary-image");eael.hooks.doAction("quickViewAddMarkup",e,t);var o=t(".eael-cat-tab",e);t(".eael-cat-tab li:first a",e).addClass("active"),o.on("click","a",(function(a){a.preventDefault();var r=t(this);if(r.hasClass("active"))return!1;t(".eael-cat-tab li a",e).removeClass("active"),r.addClass("active"),localStorage.setItem("eael-cat-tab","true");var n=o.data("class"),d=o.data("widget"),i=o.data("page-id"),c=o.data("nonce"),l=o.data("args"),s=o.data("layout"),u=".elementor-element-"+d,p=o.data("template"),m={taxonomy:t(".eael-cat-tab li a.active",e).data("taxonomy"),field:"term_id",terms:t(".eael-cat-tab li a.active",e).data("id"),terms_tag:t(".eael-cat-tab li a.active",e).data("tagid")};t.ajax({url:localize.ajaxurl,type:"POST",data:{action:"eael_product_gallery",class:n,args:l,taxonomy:m,template_info:p,page:1,page_id:i,widget_id:d,nonce:c},beforeSend:function(){t(u+" .woocommerce").addClass("eael-product-loader")},success:function(a){var o=t(a);if(o.hasClass("no-posts-found")||0==o.length)t(".elementor-element-"+d+" .eael-product-gallery .woocommerce .eael-post-appender").empty().append('

No Product Found

'),t(".eael-load-more-button",e).addClass("hide-load-more");else{t(".elementor-element-"+d+" .eael-product-gallery .woocommerce .eael-post-appender").empty().append(o);var r=t("
"+a+"
").find(".eael-max-page").text(),n=t(".eael-load-more-button",e);if(r&&n.data("page")>=r?n.addClass("hide-load-more"):n.removeClass("hide-load-more"),n.data("max-page",r),"masonry"===s){var i=t(".eael-product-gallery .products",e);i.isotope("destroy");var c=i.isotope({itemSelector:"li.product",layoutMode:s,percentPosition:!0});c.imagesLoaded().progress((function(){c.isotope("layout")}))}}},complete:function(){t(u+" .woocommerce").removeClass("eael-product-loader")},error:function(e){console.log(e)}})})),eael.hooks.doAction("quickViewPopupViewInit",e,t),isEditMode&&t(".eael-product-image-wrap .woocommerce-product-gallery").css("opacity","1");var r=dataSrcHover=srcset=srcsetHover="";a&&t(document).on("mouseover",".eael-product-wrap",(function(){r=t(this).data("src"),dataSrcHover=t(this).data("src-hover"),srcset=t(this).find("img").attr("srcset"),dataSrcHover&&(t(this).find("img").attr("srcset-hover",srcset),t(this).find("img").attr("src",dataSrcHover),t(this).find("img").attr("srcset",dataSrcHover))})).on("mouseout",".eael-product-wrap",(function(){r=t(this).data("src"),dataSrcHover=t(this).data("src-hover"),srcsetHover=t(this).find("img").attr("srcset-hover"),dataSrcHover&&(t(this).find("img").attr("src",r),t(this).find("img").attr("srcset",srcsetHover),t(this).find("img").attr("srcset-hover",""))})),window.addEventListener("pageshow",(function(e){e.persisted&&setTimeout((function(){window.location.reload()}),10)}),!1)}))}))}}); \ No newline at end of file diff --git a/languages/essential-addons-for-elementor-lite.pot b/languages/essential-addons-for-elementor-lite.pot index a5dd89bb7..3957b1bd6 100755 --- a/languages/essential-addons-for-elementor-lite.pot +++ b/languages/essential-addons-for-elementor-lite.pot @@ -133,7 +133,7 @@ msgstr "" msgid "Install Now!" msgstr "" -#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:152, ../includes/Classes/WPDeveloper_Plugin_Installer.php:170, ../includes/Classes/WPDeveloper_Plugin_Installer.php:189, ../includes/Classes/WPDeveloper_Plugin_Installer.php:210, ../includes/Classes/WPDeveloper_Setup_Wizard.php:383, ../includes/Classes/WPDeveloper_Setup_Wizard.php:407, ../includes/Classes/WPDeveloper_Setup_Wizard.php:428, ../includes/Traits/Ajax_Handler.php:913, ../includes/Traits/Ajax_Handler.php:1086, ../includes/Traits/Ajax_Handler.php:1116, ../includes/Traits/Ajax_Handler.php:1133, ../includes/Traits/Helper.php:426 +#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:152, ../includes/Classes/WPDeveloper_Plugin_Installer.php:170, ../includes/Classes/WPDeveloper_Plugin_Installer.php:189, ../includes/Classes/WPDeveloper_Plugin_Installer.php:210, ../includes/Classes/WPDeveloper_Setup_Wizard.php:383, ../includes/Classes/WPDeveloper_Setup_Wizard.php:407, ../includes/Classes/WPDeveloper_Setup_Wizard.php:428, ../includes/Traits/Ajax_Handler.php:914, ../includes/Traits/Ajax_Handler.php:1087, ../includes/Traits/Ajax_Handler.php:1117, ../includes/Traits/Ajax_Handler.php:1134, ../includes/Traits/Helper.php:426 msgid "you are not allowed to do this action" msgstr "" @@ -10265,27 +10265,27 @@ msgstr "" msgid "I don’t want to save money" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:96, ../includes/Traits/Ajax_Handler.php:611, ../includes/Traits/Login_Registration.php:96, ../includes/Traits/Login_Registration.php:248, ../includes/Traits/Login_Registration.php:776, ../includes/Traits/Login_Registration.php:951 +#: ../includes/Traits/Ajax_Handler.php:96, ../includes/Traits/Ajax_Handler.php:612, ../includes/Traits/Login_Registration.php:96, ../includes/Traits/Login_Registration.php:248, ../includes/Traits/Login_Registration.php:776, ../includes/Traits/Login_Registration.php:951 msgid "Insecure form submitted without security token" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:105, ../includes/Traits/Ajax_Handler.php:620, ../includes/Traits/Login_Registration.php:108, ../includes/Traits/Login_Registration.php:258, ../includes/Traits/Login_Registration.php:788, ../includes/Traits/Login_Registration.php:963, ../includes/Traits/Woo_Product_Comparable.php:2171 +#: ../includes/Traits/Ajax_Handler.php:105, ../includes/Traits/Ajax_Handler.php:621, ../includes/Traits/Login_Registration.php:108, ../includes/Traits/Login_Registration.php:258, ../includes/Traits/Login_Registration.php:788, ../includes/Traits/Login_Registration.php:963, ../includes/Traits/Woo_Product_Comparable.php:2171 msgid "Security token did not match" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:116, ../includes/Traits/Ajax_Handler.php:307, ../includes/Traits/Ajax_Handler.php:388, ../includes/Traits/Ajax_Handler.php:631, ../includes/Traits/Login_Registration.php:72, ../includes/Traits/Login_Registration.php:273, ../includes/Traits/Login_Registration.php:752, ../includes/Traits/Login_Registration.php:926, ../includes/Traits/Woo_Product_Comparable.php:2129 +#: ../includes/Traits/Ajax_Handler.php:116, ../includes/Traits/Ajax_Handler.php:307, ../includes/Traits/Ajax_Handler.php:388, ../includes/Traits/Ajax_Handler.php:632, ../includes/Traits/Login_Registration.php:72, ../includes/Traits/Login_Registration.php:273, ../includes/Traits/Login_Registration.php:752, ../includes/Traits/Login_Registration.php:926, ../includes/Traits/Woo_Product_Comparable.php:2129 msgid "Page ID is missing" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:127, ../includes/Traits/Ajax_Handler.php:314, ../includes/Traits/Ajax_Handler.php:395, ../includes/Traits/Ajax_Handler.php:642, ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:278, ../includes/Traits/Login_Registration.php:759, ../includes/Traits/Login_Registration.php:933, ../includes/Traits/Woo_Product_Comparable.php:2134 +#: ../includes/Traits/Ajax_Handler.php:127, ../includes/Traits/Ajax_Handler.php:314, ../includes/Traits/Ajax_Handler.php:395, ../includes/Traits/Ajax_Handler.php:643, ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:278, ../includes/Traits/Login_Registration.php:759, ../includes/Traits/Login_Registration.php:933, ../includes/Traits/Woo_Product_Comparable.php:2134 msgid "Widget ID is missing" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:138, ../includes/Traits/Ajax_Handler.php:320, ../includes/Traits/Ajax_Handler.php:402, ../includes/Traits/Ajax_Handler.php:652 +#: ../includes/Traits/Ajax_Handler.php:138, ../includes/Traits/Ajax_Handler.php:320, ../includes/Traits/Ajax_Handler.php:402, ../includes/Traits/Ajax_Handler.php:653 msgid "Widget settings are not found. Did you save the widget before using load more??" msgstr "" -#: ../includes/Traits/Ajax_Handler.php:956 +#: ../includes/Traits/Ajax_Handler.php:957 msgid "Login | Register Settings updated" msgstr "" diff --git a/src/js/view/product-grid.js b/src/js/view/product-grid.js index dd91fa2cb..8feb5d1fc 100644 --- a/src/js/view/product-grid.js +++ b/src/js/view/product-grid.js @@ -281,6 +281,11 @@ eael.hooks.addAction("init", "ea", () => { } }; + + if ( eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined ) { + return; + } + elementorFrontend.hooks.addAction( "frontend/element_ready/eicon-woocommerce.default", productGrid diff --git a/src/js/view/woo-product-carousel.js b/src/js/view/woo-product-carousel.js index eaf9f9f53..f462c481e 100644 --- a/src/js/view/woo-product-carousel.js +++ b/src/js/view/woo-product-carousel.js @@ -295,8 +295,8 @@ eael.hooks.addAction("init", "ea", () => { }); } - if (eael.elementStatusCheck('eaelWooProductSliderLoad')) { - return false; + if ( eael.elementStatusCheck('eaelWooProductSliderLoad') && window.forceFullyRun === undefined ) { + return; } elementorFrontend.hooks.addAction( diff --git a/src/js/view/woo-product-gallery.js b/src/js/view/woo-product-gallery.js index e6100c82d..9c2533e86 100644 --- a/src/js/view/woo-product-gallery.js +++ b/src/js/view/woo-product-gallery.js @@ -154,8 +154,8 @@ eael.hooks.addAction("init", "ea", () => { }, false ); }; - if (eael.elementStatusCheck('productGalleryLoad')) { - return false; + if ( eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined ) { + return; } elementorFrontend.hooks.addAction( From d23da6095f66b461aef01302acaf2ce843a9acb5 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Sun, 8 Sep 2024 15:30:00 +0600 Subject: [PATCH 35/42] Fixed: Quick view not open when use YITH product filter plugin --- assets/front-end/js/view/event-calendar.js | 2 +- assets/front-end/js/view/image-accordion.js | 2 +- assets/front-end/js/view/load-more.js | 2 +- assets/front-end/js/view/product-grid.js | 2 +- assets/front-end/js/view/woo-product-gallery.js | 2 +- assets/front-end/js/view/woo-product-list.js | 2 +- assets/front-end/js/view/woo-product-list.min.js | 2 +- src/js/view/woo-product-list.js | 4 ++++ 8 files changed, 11 insertions(+), 7 deletions(-) diff --git a/assets/front-end/js/view/event-calendar.js b/assets/front-end/js/view/event-calendar.js index 2555efb5d..c5cd2466c 100644 --- a/assets/front-end/js/view/event-calendar.js +++ b/assets/front-end/js/view/event-calendar.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n wrapper = $(\".eael-event-calendar-wrapper\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n defaultDate = element.data(\"defaultdate\"),\n multiDaysEventDayCount = typeof element.data(\"multidays_event_day_count\") !== 'undefined' ? element.data(\"multidays_event_day_count\") : 0,\n eventLimit = element.data(\"event_limit\"),\n popupDateFormate = element.data(\"popup_date_formate\"),\n monthColumnHeaderFormat = element.data(\"monthcolumnheaderformat\"),\n weekColumnHeaderFormat = element.data(\"weekcolumnheaderformat\"),\n time_format = element.data(\"time_format\") == \"yes\" ? true : false;\n if (wrapper.hasClass('layout-calendar')) {\n var refreshPopUpDetailsLink = function refreshPopUpDetailsLink() {\n var modalFooter = $(\".eaelec-modal-footer\"),\n modalFooterClass = modalFooter.find('a').attr('class'),\n modalFooterText = $(\".eael-event-calendar-cls\", $scope).attr('data-detailsButtonText');\n modalFooter.html('' + modalFooterText + '');\n };\n var calendar = new Calendar($scope[0].querySelector(\".eael-event-calendar-cls\"), {\n views: {\n month: {\n // will produce something like \"Tuesday, September 18, 2018\"\n dayHeaderContent: function dayHeaderContent(args) {\n console.log('monthColumnHeaderFormat', monthColumnHeaderFormat);\n if (args.view.type === 'dayGridMonth' && monthColumnHeaderFormat) {\n return moment(args.date).format(monthColumnHeaderFormat);\n }\n }\n },\n week: {\n dayHeaderContent: function dayHeaderContent(args) {\n console.log('weekColumnHeaderFormat', weekColumnHeaderFormat);\n if (weekColumnHeaderFormat) {\n return moment(args.date).format(weekColumnHeaderFormat);\n }\n }\n }\n },\n editable: false,\n selectable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: \"2-digit\",\n minute: \"2-digit\",\n hour12: !time_format\n },\n nextDayThreshold: \"00:00:00\",\n headerToolbar: {\n start: \"prev,next today\",\n center: \"title\",\n end: \"timeGridDay,timeGridWeek,dayGridMonth,listMonth\"\n },\n events: eventAll,\n locale: locale,\n dayMaxEventRows: typeof eventLimit !== \"undefined\" && eventLimit > 0 ? parseInt(eventLimit) : 3,\n initialView: defaultView,\n initialDate: defaultDate,\n eventClassNames: function eventClassNames(info) {},\n eventContent: function eventContent(info) {},\n eventDidMount: function eventDidMount(info) {\n var element = $(info.el),\n event = info.event;\n moment.locale(locale);\n if (multiDaysEventDayCount && event.endStr > event.startStr) {\n var _$$prevAll;\n var startDate = typeof event.startStr !== 'undefined' ? new Date(event.startStr) : '';\n var endDate = typeof event.endStr !== 'undefined' ? new Date(event.endStr) : '';\n var oneDay = 24 * 60 * 60 * 1000;\n var totalDays = (endDate - startDate) / oneDay;\n var currentCellDate = (_$$prevAll = $(element).prevAll('tr.fc-list-day:first')) === null || _$$prevAll === void 0 ? void 0 : _$$prevAll.data('date');\n currentCellDate = typeof currentCellDate !== 'undefined' ? new Date(currentCellDate) : '';\n var eventDayCount = startDate && currentCellDate ? Math.ceil((currentCellDate - startDate) / oneDay) + 1 : '';\n var eventTitle = \"\".concat(event.title, \" (Day \").concat(eventDayCount, \"/\").concat(totalDays, \" )\");\n element.find(\".fc-list-event-title a\").text(eventTitle);\n }\n\n // when event is finished event text are cross\n if (element.hasClass(\"fc-event-past\")) {\n element.find(\".fc-event-title\").addClass(\"eael-event-completed\");\n }\n translate.today = info.event._context.dateEnv.locale.options.buttonText.today;\n element.attr(\"style\", \"color:\" + event.textColor + \";background:\" + event.backgroundColor + \";\");\n element.find(\".fc-list-event-dot\").attr(\"style\", \"border-color:\" + event.backgroundColor + \";\");\n element.find(\".fc-daygrid-event-dot\").remove();\n if (event._def.extendedProps.is_redirect === 'yes') {\n element.attr(\"href\", event.url);\n if (event._def.extendedProps.external === \"on\") {\n element.attr(\"target\", \"_blank\");\n }\n if (event._def.extendedProps.nofollow === \"on\") {\n element.attr(\"rel\", \"nofollow\");\n }\n if (event._def.extendedProps.custom_attributes !== '') {\n $.each(event._def.extendedProps.custom_attributes, function (index, item) {\n element.attr(item.key, item.value);\n });\n }\n if (element.hasClass('fc-list-item')) {\n element.removeAttr(\"href target rel\");\n element.removeClass(\"fc-has-url\");\n element.css('cursor', 'default');\n }\n } else {\n element.attr(\"href\", \"javascript:void(0);\");\n element.click(function (e) {\n e.preventDefault();\n e.stopPropagation();\n var startDate = event.start,\n timeFormate = time_format ? \"H:mm\" : \"h:mm A\",\n endDate = event.end,\n startSelector = $(\"span.eaelec-event-date-start\"),\n endSelector = $(\"span.eaelec-event-date-end\"),\n modalFooterLink = $(\".eaelec-modal-footer a\");\n if (event.allDay) {\n var newEnd = moment(endDate).subtract(1, \"days\");\n endDate = newEnd._d;\n timeFormate = \" \";\n }\n moment.locale(locale);\n var startYear = moment(startDate).format(\"YYYY\"),\n endYear = moment(endDate).format(\"YYYY\"),\n yearDiff = endYear > startYear,\n startView = \"\",\n endView = \"\";\n startSelector.html(\" \");\n endSelector.html(\" \");\n ecModal.addClass(\"eael-ec-popup-ready\").removeClass(\"eael-ec-modal-removing\");\n if (event.allDay && moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n startView = moment(startDate).format(\"MMM Do\");\n if (moment(startDate).isSame(Date.now(), \"day\") === true) {\n startView = translate.today;\n } else if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow;\n }\n } else {\n if (moment(event.start).isSame(Date.now(), \"day\") === true) {\n startView = translate.today + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") < moment(new Date()).format(\"MM-DD-YYYY\") || moment(startDate).format(\"MM-DD-YYYY\") > moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = moment(event.start).format(popupDateFormate + \" \" + timeFormate);\n }\n startView = yearDiff ? startYear + \" \" + startView : startView;\n if (moment(endDate).isSame(Date.now(), \"day\") === true) {\n if (moment(startDate).isSame(Date.now(), \"day\") !== true) {\n endView = translate.today + \" \" + moment(endDate).format(timeFormate);\n } else {\n endView = moment(endDate).format(timeFormate);\n }\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") !== moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = translate.tomorrow + \" \" + moment(endDate).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n if (moment(endDate).diff(moment(startDate), \"days\") > 0 && endSelector.text().trim().length < 1) {\n endView = moment(endDate).format(popupDateFormate + \" \" + timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n endView = yearDiff ? endYear + \" \" + endView : endView;\n }\n if (event.extendedProps.hideEndDate !== undefined && event.extendedProps.hideEndDate === \"yes\") {\n endSelector.html(\" \");\n } else {\n endSelector.html(endView != \"\" ? \"- \" + endView : \"\");\n }\n startSelector.html(' ' + startView);\n $(\".eaelec-modal-header h2\").html(event.title);\n $(\".eaelec-modal-body\").html(event.extendedProps.description);\n if (event.extendedProps.description.length < 1) {\n $(\".eaelec-modal-body\").css(\"height\", \"auto\");\n } else {\n $(\".eaelec-modal-body\").css(\"height\", \"300px\");\n }\n if ($(\".eael-event-calendar-cls\", $scope).data('hidedetailslink') !== 'yes') {\n modalFooterLink.attr(\"href\", event.url).css(\"display\", \"block\");\n } else {\n modalFooterLink.css(\"display\", \"none\");\n }\n if (event.extendedProps.external === \"on\") {\n modalFooterLink.attr(\"target\", \"_blank\");\n }\n if (event.extendedProps.nofollow === \"on\") {\n modalFooterLink.attr(\"rel\", \"nofollow\");\n }\n if (event.extendedProps.custom_attributes != '') {\n $.each(event.extendedProps.custom_attributes, function (index, item) {\n modalFooterLink.attr(item.key, item.value);\n });\n }\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n });\n }\n },\n eventWillUnmount: function eventWillUnmount(arg) {}\n });\n CloseButton.on(\"click\", function (event) {\n event.stopPropagation();\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eaelec-modal-content\")) return;\n if (ecModal.hasClass(\"eael-ec-popup-ready\")) {\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n }\n });\n calendar.render();\n var observer = new IntersectionObserver(function (entries) {\n var _iterator = _createForOfIteratorHelper(entries),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var entry = _step.value;\n window.dispatchEvent(new Event('resize'));\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n });\n observer.observe(element[0]);\n eael.hooks.addAction(\"eventCalendar.reinit\", \"ea\", function () {\n calendar.today();\n });\n } else {\n var table = $('.eael-event-calendar-table', wrapper),\n pagination = table.hasClass('ea-ec-table-paginated'),\n itemPerPage = pagination ? table.data('items-per-page') : 10,\n sortColumn = $('.eael-ec-event-date', table).index();\n $(\".eael-event-calendar-table\", wrapper).fancyTable({\n sortColumn: sortColumn >= 0 ? sortColumn : 0,\n pagination: pagination,\n perPage: itemPerPage,\n globalSearch: true,\n searchInput: $(\".ea-ec-search-wrap\", wrapper),\n paginationElement: $(\".eael-event-calendar-pagination\", wrapper)\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelEventCalendar')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-event-calendar.default\", EventCalendar);\n});\n\n//# sourceURL=webpack:///./src/js/view/event-calendar.js?"); +eval("function _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n wrapper = $(\".eael-event-calendar-wrapper\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n defaultDate = element.data(\"defaultdate\"),\n multiDaysEventDayCount = typeof element.data(\"multidays_event_day_count\") !== 'undefined' ? element.data(\"multidays_event_day_count\") : 0,\n eventLimit = element.data(\"event_limit\"),\n popupDateFormate = element.data(\"popup_date_formate\"),\n monthColumnHeaderFormat = element.data(\"monthcolumnheaderformat\"),\n weekColumnHeaderFormat = element.data(\"weekcolumnheaderformat\"),\n time_format = element.data(\"time_format\") == \"yes\" ? true : false;\n if (wrapper.hasClass('layout-calendar')) {\n var refreshPopUpDetailsLink = function refreshPopUpDetailsLink() {\n var modalFooter = $(\".eaelec-modal-footer\"),\n modalFooterClass = modalFooter.find('a').attr('class'),\n modalFooterText = $(\".eael-event-calendar-cls\", $scope).attr('data-detailsButtonText');\n modalFooter.html('' + modalFooterText + '');\n };\n var calendar = new Calendar($scope[0].querySelector(\".eael-event-calendar-cls\"), {\n views: {\n month: {\n // will produce something like \"Tuesday, September 18, 2018\"\n dayHeaderContent: function dayHeaderContent(args) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1302249598_27_7_27_70_4\", 'monthColumnHeaderFormat', monthColumnHeaderFormat)));\n if (args.view.type === 'dayGridMonth' && monthColumnHeaderFormat) {\n return moment(args.date).format(monthColumnHeaderFormat);\n }\n }\n },\n week: {\n dayHeaderContent: function dayHeaderContent(args) {\n var _console2;\n /* eslint-disable */(_console2 = console).log.apply(_console2, _toConsumableArray(oo_oo(\"1302249598_35_7_35_68_4\", 'weekColumnHeaderFormat', weekColumnHeaderFormat)));\n if (weekColumnHeaderFormat) {\n return moment(args.date).format(weekColumnHeaderFormat);\n }\n }\n }\n },\n editable: false,\n selectable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: \"2-digit\",\n minute: \"2-digit\",\n hour12: !time_format\n },\n nextDayThreshold: \"00:00:00\",\n headerToolbar: {\n start: \"prev,next today\",\n center: \"title\",\n end: \"timeGridDay,timeGridWeek,dayGridMonth,listMonth\"\n },\n events: eventAll,\n locale: locale,\n dayMaxEventRows: typeof eventLimit !== \"undefined\" && eventLimit > 0 ? parseInt(eventLimit) : 3,\n initialView: defaultView,\n initialDate: defaultDate,\n eventClassNames: function eventClassNames(info) {},\n eventContent: function eventContent(info) {},\n eventDidMount: function eventDidMount(info) {\n var element = $(info.el),\n event = info.event;\n moment.locale(locale);\n if (multiDaysEventDayCount && event.endStr > event.startStr) {\n var _$$prevAll;\n var startDate = typeof event.startStr !== 'undefined' ? new Date(event.startStr) : '';\n var endDate = typeof event.endStr !== 'undefined' ? new Date(event.endStr) : '';\n var oneDay = 24 * 60 * 60 * 1000;\n var totalDays = (endDate - startDate) / oneDay;\n var currentCellDate = (_$$prevAll = $(element).prevAll('tr.fc-list-day:first')) === null || _$$prevAll === void 0 ? void 0 : _$$prevAll.data('date');\n currentCellDate = typeof currentCellDate !== 'undefined' ? new Date(currentCellDate) : '';\n var eventDayCount = startDate && currentCellDate ? Math.ceil((currentCellDate - startDate) / oneDay) + 1 : '';\n var eventTitle = \"\".concat(event.title, \" (Day \").concat(eventDayCount, \"/\").concat(totalDays, \" )\");\n element.find(\".fc-list-event-title a\").text(eventTitle);\n }\n\n // when event is finished event text are cross\n if (element.hasClass(\"fc-event-past\")) {\n element.find(\".fc-event-title\").addClass(\"eael-event-completed\");\n }\n translate.today = info.event._context.dateEnv.locale.options.buttonText.today;\n element.attr(\"style\", \"color:\" + event.textColor + \";background:\" + event.backgroundColor + \";\");\n element.find(\".fc-list-event-dot\").attr(\"style\", \"border-color:\" + event.backgroundColor + \";\");\n element.find(\".fc-daygrid-event-dot\").remove();\n if (event._def.extendedProps.is_redirect === 'yes') {\n element.attr(\"href\", event.url);\n if (event._def.extendedProps.external === \"on\") {\n element.attr(\"target\", \"_blank\");\n }\n if (event._def.extendedProps.nofollow === \"on\") {\n element.attr(\"rel\", \"nofollow\");\n }\n if (event._def.extendedProps.custom_attributes !== '') {\n $.each(event._def.extendedProps.custom_attributes, function (index, item) {\n element.attr(item.key, item.value);\n });\n }\n if (element.hasClass('fc-list-item')) {\n element.removeAttr(\"href target rel\");\n element.removeClass(\"fc-has-url\");\n element.css('cursor', 'default');\n }\n } else {\n element.attr(\"href\", \"javascript:void(0);\");\n element.click(function (e) {\n e.preventDefault();\n e.stopPropagation();\n var startDate = event.start,\n timeFormate = time_format ? \"H:mm\" : \"h:mm A\",\n endDate = event.end,\n startSelector = $(\"span.eaelec-event-date-start\"),\n endSelector = $(\"span.eaelec-event-date-end\"),\n modalFooterLink = $(\".eaelec-modal-footer a\");\n if (event.allDay) {\n var newEnd = moment(endDate).subtract(1, \"days\");\n endDate = newEnd._d;\n timeFormate = \" \";\n }\n moment.locale(locale);\n var startYear = moment(startDate).format(\"YYYY\"),\n endYear = moment(endDate).format(\"YYYY\"),\n yearDiff = endYear > startYear,\n startView = \"\",\n endView = \"\";\n startSelector.html(\" \");\n endSelector.html(\" \");\n ecModal.addClass(\"eael-ec-popup-ready\").removeClass(\"eael-ec-modal-removing\");\n if (event.allDay && moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n startView = moment(startDate).format(\"MMM Do\");\n if (moment(startDate).isSame(Date.now(), \"day\") === true) {\n startView = translate.today;\n } else if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow;\n }\n } else {\n if (moment(event.start).isSame(Date.now(), \"day\") === true) {\n startView = translate.today + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") < moment(new Date()).format(\"MM-DD-YYYY\") || moment(startDate).format(\"MM-DD-YYYY\") > moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = moment(event.start).format(popupDateFormate + \" \" + timeFormate);\n }\n startView = yearDiff ? startYear + \" \" + startView : startView;\n if (moment(endDate).isSame(Date.now(), \"day\") === true) {\n if (moment(startDate).isSame(Date.now(), \"day\") !== true) {\n endView = translate.today + \" \" + moment(endDate).format(timeFormate);\n } else {\n endView = moment(endDate).format(timeFormate);\n }\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") !== moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = translate.tomorrow + \" \" + moment(endDate).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n if (moment(endDate).diff(moment(startDate), \"days\") > 0 && endSelector.text().trim().length < 1) {\n endView = moment(endDate).format(popupDateFormate + \" \" + timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n endView = yearDiff ? endYear + \" \" + endView : endView;\n }\n if (event.extendedProps.hideEndDate !== undefined && event.extendedProps.hideEndDate === \"yes\") {\n endSelector.html(\" \");\n } else {\n endSelector.html(endView != \"\" ? \"- \" + endView : \"\");\n }\n startSelector.html(' ' + startView);\n $(\".eaelec-modal-header h2\").html(event.title);\n $(\".eaelec-modal-body\").html(event.extendedProps.description);\n if (event.extendedProps.description.length < 1) {\n $(\".eaelec-modal-body\").css(\"height\", \"auto\");\n } else {\n $(\".eaelec-modal-body\").css(\"height\", \"300px\");\n }\n if ($(\".eael-event-calendar-cls\", $scope).data('hidedetailslink') !== 'yes') {\n modalFooterLink.attr(\"href\", event.url).css(\"display\", \"block\");\n } else {\n modalFooterLink.css(\"display\", \"none\");\n }\n if (event.extendedProps.external === \"on\") {\n modalFooterLink.attr(\"target\", \"_blank\");\n }\n if (event.extendedProps.nofollow === \"on\") {\n modalFooterLink.attr(\"rel\", \"nofollow\");\n }\n if (event.extendedProps.custom_attributes != '') {\n $.each(event.extendedProps.custom_attributes, function (index, item) {\n modalFooterLink.attr(item.key, item.value);\n });\n }\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n });\n }\n },\n eventWillUnmount: function eventWillUnmount(arg) {}\n });\n CloseButton.on(\"click\", function (event) {\n event.stopPropagation();\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eaelec-modal-content\")) return;\n if (ecModal.hasClass(\"eael-ec-popup-ready\")) {\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n }\n });\n calendar.render();\n var observer = new IntersectionObserver(function (entries) {\n var _iterator = _createForOfIteratorHelper(entries),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var entry = _step.value;\n window.dispatchEvent(new Event('resize'));\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n });\n observer.observe(element[0]);\n eael.hooks.addAction(\"eventCalendar.reinit\", \"ea\", function () {\n calendar.today();\n });\n } else {\n var table = $('.eael-event-calendar-table', wrapper),\n pagination = table.hasClass('ea-ec-table-paginated'),\n itemPerPage = pagination ? table.data('items-per-page') : 10,\n sortColumn = $('.eael-ec-event-date', table).index();\n $(\".eael-event-calendar-table\", wrapper).fancyTable({\n sortColumn: sortColumn >= 0 ? sortColumn : 0,\n pagination: pagination,\n perPage: itemPerPage,\n globalSearch: true,\n searchInput: $(\".ea-ec-search-wrap\", wrapper),\n paginationElement: $(\".eael-event-calendar-pagination\", wrapper)\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelEventCalendar')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-event-calendar.default\", EventCalendar);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/event-calendar.js?"); /***/ }) diff --git a/assets/front-end/js/view/image-accordion.js b/assets/front-end/js/view/image-accordion.js index 24a50986f..976c885fc 100644 --- a/assets/front-end/js/view/image-accordion.js +++ b/assets/front-end/js/view/image-accordion.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("var ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n function hoverAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n element.find(\".overlay\").parent(\".eael-image-accordion-hover\").addClass(\"overlay-active\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n element.find(\".overlay-inner\").addClass(\"overlay-inner-show\");\n element.css(\"flex\", \"3\");\n }\n function hoverOutAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n }\n if (\"on-click\" === $type) {\n $(\".eael-image-accordion-hover\", $scope).on(\"click\", function (e) {\n hoverAction(e, $(this));\n });\n } else {\n $(\".eael-image-accordion-hover\", $scope).hover(function (e) {\n hoverAction(e, $(this));\n });\n $(\".eael-image-accordion-hover\", $scope).mouseleave(function (e) {\n console.log('leave');\n hoverOutAction(e, $(this));\n });\n }\n};\neael.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-image-accordion.default\", ImageAccordion);\n});\n\n//# sourceURL=webpack:///./src/js/view/image-accordion.js?"); +eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n function hoverAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n element.find(\".overlay\").parent(\".eael-image-accordion-hover\").addClass(\"overlay-active\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n element.find(\".overlay-inner\").addClass(\"overlay-inner-show\");\n element.css(\"flex\", \"3\");\n }\n function hoverOutAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n }\n if (\"on-click\" === $type) {\n $(\".eael-image-accordion-hover\", $scope).on(\"click\", function (e) {\n hoverAction(e, $(this));\n });\n } else {\n $(\".eael-image-accordion-hover\", $scope).hover(function (e) {\n hoverAction(e, $(this));\n });\n $(\".eael-image-accordion-hover\", $scope).mouseleave(function (e) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"12660125_48_12_48_32_4\", 'leave')));\n hoverOutAction(e, $(this));\n });\n }\n};\neael.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-image-accordion.default\", ImageAccordion);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/image-accordion.js?"); /***/ }) diff --git a/assets/front-end/js/view/load-more.js b/assets/front-end/js/view/load-more.js index 32ccf36a9..432b207c0 100644 --- a/assets/front-end/js/view/load-more.js +++ b/assets/front-end/js/view/load-more.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("(function ($) {\n \"use strict\";\n\n eael.getToken();\n $(document).on(\"click\", \".eael-load-more-button\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n e.stopImmediatePropagation();\n var $this = $(this),\n $LoaderSpan = $(\".eael_load_more_text\", $this),\n $text = $LoaderSpan.html(),\n $widget_id = $this.data(\"widget\"),\n $page_id = $this.data(\"page-id\"),\n $nonce = localize.nonce,\n $scope = $(\".elementor-element-\" + $widget_id),\n $class = $this.data(\"class\"),\n $args = $this.data(\"args\"),\n $layout = $this.data(\"layout\"),\n $template_info = $this.data(\"template\"),\n $page = parseInt($this.data(\"page\")) + 1,\n $max_page = $this.data(\"max-page\") != undefined ? parseInt($this.data(\"max-page\")) : false,\n $exclude_ids = [],\n $active_term_id = 0,\n $active_taxonomy = '';\n $this.attr('disabled', true);\n if (typeof $widget_id == \"undefined\" || typeof $args == \"undefined\") {\n return;\n }\n var obj = {};\n var $data = {\n action: \"load_more\",\n \"class\": $class,\n args: $args,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce,\n template_info: $template_info\n };\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n var $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n var eael_cat_tab = localStorage.getItem('eael-cat-tab');\n if (eael_cat_tab == 'true') {\n localStorage.removeItem('eael-cat-tab');\n var $gallery_page = 1 + 1;\n } else {\n var $gallery_page = parseInt($('.eael-cat-tab li a.active', $scope).data(\"page\")) + 1;\n }\n $data.taxonomy = $taxonomy;\n $data.page = isNaN($gallery_page) ? $page : $gallery_page;\n }\n if ($data[\"class\"] === \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $('.dynamic-gallery-item-inner', $scope).each(function () {\n $exclude_ids.push($(this).data('itemid'));\n });\n $active_term_id = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('termid');\n $active_taxonomy = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('taxonomy');\n $data.page = 1; //page flag is not needed since we are using exclude ids\n $data.exclude_ids = JSON.stringify($exclude_ids);\n $data.active_term_id = typeof $active_term_id === 'undefined' ? 0 : $active_term_id;\n $data.active_taxonomy = typeof $active_taxonomy === 'undefined' ? '' : $active_taxonomy;\n }\n String($args).split(\"&\").forEach(function (item, index) {\n var arr = String(item).split(\"=\");\n obj[arr[0]] = arr[1];\n });\n if (obj.orderby == \"rand\") {\n var $printed = $(\".eael-grid-post\");\n if ($printed.length) {\n var $ids = [];\n $printed.each(function (index, item) {\n var $id = $(item).data(\"id\");\n $ids.push($id);\n });\n $data.post__not_in = $ids;\n }\n }\n $this.addClass(\"button--loading\");\n $LoaderSpan.html(localize.i18n.loading);\n var filterable_gallery_load_more_btn = function filterable_gallery_load_more_btn($this) {\n var active_tab = $this.closest('.eael-filter-gallery-wrapper').find('.dynamic-gallery-category.active'),\n active_filter = active_tab.data('filter'),\n rest_filter = active_tab.siblings().not('.no-more-posts');\n $this.addClass('hide');\n active_tab.addClass('no-more-posts');\n if (rest_filter.length === 1 && rest_filter.data('filter') === '*') {\n rest_filter.addClass('no-more-posts');\n }\n if (active_filter === '*') {\n active_tab.siblings().addClass('no-more-posts');\n }\n };\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: $data,\n success: function success(response) {\n var $content = $(response);\n $this.removeAttr('disabled');\n if ($content.hasClass(\"no-posts-found\") || $content.length === 0) {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n $this.removeClass('button--loading').addClass('hide-load-more');\n $LoaderSpan.html($text);\n } else if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $this.removeClass('button--loading');\n $LoaderSpan.html($text);\n filterable_gallery_load_more_btn($this);\n } else {\n $this.remove();\n }\n } else {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Product_Grid\") {\n $content = $content.filter(\"li\");\n $(\".eael-product-grid .products\", $scope).append($content);\n if ($layout == \"masonry\") {\n var dynamicID = \"eael-product-\" + Date.now();\n var $isotope = $(\".eael-product-grid .products\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n $content.find(\".woocommerce-product-gallery\").addClass(dynamicID);\n $content.find(\".woocommerce-product-gallery\").addClass(\"eael-new-product\");\n $(\".woocommerce-product-gallery.\" + dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n } else {\n var _dynamicID = \"eael-product-\" + Date.now();\n $content.find('.woocommerce-product-gallery').addClass(_dynamicID);\n $content.find('.woocommerce-product-gallery').addClass('eael-new-product');\n $(\".woocommerce-product-gallery.\" + _dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n }\n } else {\n $(\".eael-post-appender\", $scope).append($content);\n if ($layout == \"masonry\") {\n var $isotope = $(\".eael-post-appender\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n }\n }\n $this.removeClass(\"button--loading\");\n $LoaderSpan.html($text);\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\" && $('.eael-cat-tab li a.active', $scope).length) {\n $('.eael-cat-tab li a.active', $scope).data(\"page\", $gallery_page);\n } else {\n $this.data(\"page\", $page);\n }\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n var found_posts = $($content[0]);\n if (found_posts.hasClass('found_posts') && found_posts.text() - obj.posts_per_page < 1) {\n filterable_gallery_load_more_btn($this);\n }\n } else {\n if ($max_page && $data.page >= $max_page) {\n $this.addClass('hide-load-more');\n }\n }\n }\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n $(window).on('scroll', function () {\n var scrollElements = $('.eael-infinity-scroll');\n if (scrollElements.length < 1) return false;\n $.each(scrollElements, function (index, element) {\n var scrollElement = $(element);\n var offset = scrollElement.data('offset');\n var elementTop = scrollElement.offset().top;\n var elementBottom = elementTop + scrollElement.outerHeight() - offset;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() - offset;\n var inView = elementBottom > viewportTop && elementTop < viewportHalf;\n if (inView) {\n $(\".eael-load-more-button\", scrollElement).trigger('click');\n }\n });\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/load-more.js?"); +eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\n(function ($) {\n \"use strict\";\n\n eael.getToken();\n $(document).on(\"click\", \".eael-load-more-button\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n e.stopImmediatePropagation();\n var $this = $(this),\n $LoaderSpan = $(\".eael_load_more_text\", $this),\n $text = $LoaderSpan.html(),\n $widget_id = $this.data(\"widget\"),\n $page_id = $this.data(\"page-id\"),\n $nonce = localize.nonce,\n $scope = $(\".elementor-element-\" + $widget_id),\n $class = $this.data(\"class\"),\n $args = $this.data(\"args\"),\n $layout = $this.data(\"layout\"),\n $template_info = $this.data(\"template\"),\n $page = parseInt($this.data(\"page\")) + 1,\n $max_page = $this.data(\"max-page\") != undefined ? parseInt($this.data(\"max-page\")) : false,\n $exclude_ids = [],\n $active_term_id = 0,\n $active_taxonomy = '';\n $this.attr('disabled', true);\n if (typeof $widget_id == \"undefined\" || typeof $args == \"undefined\") {\n return;\n }\n var obj = {};\n var $data = {\n action: \"load_more\",\n \"class\": $class,\n args: $args,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce,\n template_info: $template_info\n };\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n var $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n var eael_cat_tab = localStorage.getItem('eael-cat-tab');\n if (eael_cat_tab == 'true') {\n localStorage.removeItem('eael-cat-tab');\n var $gallery_page = 1 + 1;\n } else {\n var $gallery_page = parseInt($('.eael-cat-tab li a.active', $scope).data(\"page\")) + 1;\n }\n $data.taxonomy = $taxonomy;\n $data.page = isNaN($gallery_page) ? $page : $gallery_page;\n }\n if ($data[\"class\"] === \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $('.dynamic-gallery-item-inner', $scope).each(function () {\n $exclude_ids.push($(this).data('itemid'));\n });\n $active_term_id = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('termid');\n $active_taxonomy = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('taxonomy');\n $data.page = 1; //page flag is not needed since we are using exclude ids\n $data.exclude_ids = JSON.stringify($exclude_ids);\n $data.active_term_id = typeof $active_term_id === 'undefined' ? 0 : $active_term_id;\n $data.active_taxonomy = typeof $active_taxonomy === 'undefined' ? '' : $active_taxonomy;\n }\n String($args).split(\"&\").forEach(function (item, index) {\n var arr = String(item).split(\"=\");\n obj[arr[0]] = arr[1];\n });\n if (obj.orderby == \"rand\") {\n var $printed = $(\".eael-grid-post\");\n if ($printed.length) {\n var $ids = [];\n $printed.each(function (index, item) {\n var $id = $(item).data(\"id\");\n $ids.push($id);\n });\n $data.post__not_in = $ids;\n }\n }\n $this.addClass(\"button--loading\");\n $LoaderSpan.html(localize.i18n.loading);\n var filterable_gallery_load_more_btn = function filterable_gallery_load_more_btn($this) {\n var active_tab = $this.closest('.eael-filter-gallery-wrapper').find('.dynamic-gallery-category.active'),\n active_filter = active_tab.data('filter'),\n rest_filter = active_tab.siblings().not('.no-more-posts');\n $this.addClass('hide');\n active_tab.addClass('no-more-posts');\n if (rest_filter.length === 1 && rest_filter.data('filter') === '*') {\n rest_filter.addClass('no-more-posts');\n }\n if (active_filter === '*') {\n active_tab.siblings().addClass('no-more-posts');\n }\n };\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: $data,\n success: function success(response) {\n var $content = $(response);\n $this.removeAttr('disabled');\n if ($content.hasClass(\"no-posts-found\") || $content.length === 0) {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n $this.removeClass('button--loading').addClass('hide-load-more');\n $LoaderSpan.html($text);\n } else if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $this.removeClass('button--loading');\n $LoaderSpan.html($text);\n filterable_gallery_load_more_btn($this);\n } else {\n $this.remove();\n }\n } else {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Product_Grid\") {\n $content = $content.filter(\"li\");\n $(\".eael-product-grid .products\", $scope).append($content);\n if ($layout == \"masonry\") {\n var dynamicID = \"eael-product-\" + Date.now();\n var $isotope = $(\".eael-product-grid .products\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n $content.find(\".woocommerce-product-gallery\").addClass(dynamicID);\n $content.find(\".woocommerce-product-gallery\").addClass(\"eael-new-product\");\n $(\".woocommerce-product-gallery.\" + dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n } else {\n var _dynamicID = \"eael-product-\" + Date.now();\n $content.find('.woocommerce-product-gallery').addClass(_dynamicID);\n $content.find('.woocommerce-product-gallery').addClass('eael-new-product');\n $(\".woocommerce-product-gallery.\" + _dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n }\n } else {\n $(\".eael-post-appender\", $scope).append($content);\n if ($layout == \"masonry\") {\n var $isotope = $(\".eael-post-appender\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n }\n }\n $this.removeClass(\"button--loading\");\n $LoaderSpan.html($text);\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\" && $('.eael-cat-tab li a.active', $scope).length) {\n $('.eael-cat-tab li a.active', $scope).data(\"page\", $gallery_page);\n } else {\n $this.data(\"page\", $page);\n }\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n var found_posts = $($content[0]);\n if (found_posts.hasClass('found_posts') && found_posts.text() - obj.posts_per_page < 1) {\n filterable_gallery_load_more_btn($this);\n }\n } else {\n if ($max_page && $data.page >= $max_page) {\n $this.addClass('hide-load-more');\n }\n }\n }\n },\n error: function error(response) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1248887534_228_4_228_25_4\", response)));\n }\n });\n });\n $(window).on('scroll', function () {\n var scrollElements = $('.eael-infinity-scroll');\n if (scrollElements.length < 1) return false;\n $.each(scrollElements, function (index, element) {\n var scrollElement = $(element);\n var offset = scrollElement.data('offset');\n var elementTop = scrollElement.offset().top;\n var elementBottom = elementTop + scrollElement.outerHeight() - offset;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() - offset;\n var inView = elementBottom > viewportTop && elementTop < viewportHalf;\n if (inView) {\n $(\".eael-load-more-button\", scrollElement).trigger('click');\n }\n });\n });\n})(jQuery);\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/load-more.js?"); /***/ }) diff --git a/assets/front-end/js/view/product-grid.js b/assets/front-end/js/view/product-grid.js index 5fe7442ab..cf13b574a 100644 --- a/assets/front-end/js/view/product-grid.js +++ b/assets/front-end/js/view/product-grid.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n console.log(err.toString());\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n if (eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); +eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\neael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"2979086449_184_3_184_30_4\", err.toString())));\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n if (eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-gallery.js b/assets/front-end/js/view/woo-product-gallery.js index 76295e5aa..7318562fd 100644 --- a/assets/front-end/js/view/woo-product-gallery.js +++ b/assets/front-end/js/view/woo-product-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); +eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\neael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1424553466_103_5_103_26_4\", response)));\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-list.js b/assets/front-end/js/view/woo-product-list.js index 312302aed..3436b5dbf 100644 --- a/assets/front-end/js/view/woo-product-list.js +++ b/assets/front-end/js/view/woo-product-list.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductList = function wooProductList($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n };\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-list.default\", wooProductList);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-list.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductList = function wooProductList($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n };\n if (eael.elementStatusCheck('eaelProductListLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-list.default\", wooProductList);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-list.js?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-list.min.js b/assets/front-end/js/view/woo-product-list.min.js index 03ac857f0..013a6fb63 100644 --- a/assets/front-end/js/view/woo-product-list.min.js +++ b/assets/front-end/js/view/woo-product-list.min.js @@ -1 +1 @@ -!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},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 o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},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=36)}({36:function(e,t){eael.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-list.default",(function(e,t){eael.hooks.doAction("quickViewAddMarkup",e,t),eael.hooks.doAction("quickViewPopupViewInit",e,t)}))}))}}); \ No newline at end of file +!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},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 o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},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=36)}({36:function(e,t){eael.hooks.addAction("init","ea",(function(){eael.elementStatusCheck("eaelProductListLoad")&&void 0===window.forceFullyRun||elementorFrontend.hooks.addAction("frontend/element_ready/eael-woo-product-list.default",(function(e,t){eael.hooks.doAction("quickViewAddMarkup",e,t),eael.hooks.doAction("quickViewPopupViewInit",e,t)}))}))}}); \ No newline at end of file diff --git a/src/js/view/woo-product-list.js b/src/js/view/woo-product-list.js index a4a3905d5..214aa7247 100644 --- a/src/js/view/woo-product-list.js +++ b/src/js/view/woo-product-list.js @@ -5,6 +5,10 @@ eael.hooks.addAction("init", "ea", () => { eael.hooks.doAction("quickViewPopupViewInit", $scope, $); }; + if ( eael.elementStatusCheck('eaelProductListLoad') && window.forceFullyRun === undefined ) { + return; + } + elementorFrontend.hooks.addAction( "frontend/element_ready/eael-woo-product-list.default", wooProductList From d9c8c42ba1ad381cb9bc8676bbf50da581ad405e Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Sun, 8 Sep 2024 16:23:50 +0600 Subject: [PATCH 36/42] sanitize the title content by DOMPurify --- assets/front-end/js/view/content-ticker.js | 2 +- assets/front-end/js/view/event-calendar.js | 2 +- .../front-end/js/view/filterable-gallery.js | 2 +- .../js/view/filterable-gallery.min.js | 2 +- assets/front-end/js/view/general.js | 164 ++++++++---------- assets/front-end/js/view/general.min.js | 2 +- assets/front-end/js/view/hover-effect.js | 2 +- assets/front-end/js/view/hover-effect.min.js | 2 +- assets/front-end/js/view/image-accordion.js | 2 +- assets/front-end/js/view/load-more.js | 2 +- assets/front-end/js/view/product-grid.js | 2 +- .../front-end/js/view/woo-product-gallery.js | 2 +- config.php | 5 + src/js/view/filterable-gallery.js | 6 +- 14 files changed, 95 insertions(+), 102 deletions(-) diff --git a/assets/front-end/js/view/content-ticker.js b/assets/front-end/js/view/content-ticker.js index 0608f52fb..a1ad88eb8 100644 --- a/assets/front-end/js/view/content-ticker.js +++ b/assets/front-end/js/view/content-ticker.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n function get_configurations($contentTicker) {\n var $items = $contentTicker.data(\"items\") !== undefined ? $contentTicker.data(\"items\") : 1,\n $items_tablet = $contentTicker.data(\"items-tablet\") !== undefined ? $contentTicker.data(\"items-tablet\") : 1,\n $items_mobile = $contentTicker.data(\"items-mobile\") !== undefined ? $contentTicker.data(\"items-mobile\") : 1,\n $margin = $contentTicker.data(\"margin\") !== undefined ? $contentTicker.data(\"margin\") : 10,\n $margin_tablet = $contentTicker.data(\"margin-tablet\") !== undefined ? $contentTicker.data(\"margin-tablet\") : 10,\n $margin_mobile = $contentTicker.data(\"margin-mobile\") !== undefined ? $contentTicker.data(\"margin-mobile\") : 10,\n $effect = $contentTicker.data(\"effect\") !== undefined ? $contentTicker.data(\"effect\") : \"slide\",\n $speed = $contentTicker.data(\"speed\") !== undefined ? $contentTicker.data(\"speed\") : 400,\n $autoplay = $contentTicker.data(\"autoplay\") !== undefined ? $contentTicker.data(\"autoplay\") : 5000,\n $loop = $contentTicker.data(\"loop\") !== undefined ? $contentTicker.data(\"loop\") : false,\n $grab_cursor = $contentTicker.data(\"grab-cursor\") !== undefined ? $contentTicker.data(\"grab-cursor\") : false,\n $pagination = $contentTicker.data(\"pagination\") !== undefined ? $contentTicker.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $contentTicker.data(\"arrow-next\") !== undefined ? $contentTicker.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $contentTicker.data(\"arrow-prev\") !== undefined ? $contentTicker.data(\"arrow-prev\") : \".swiper-button-prev\",\n $pause_on_hover = $contentTicker.data(\"pause-on-hover\") !== undefined ? $contentTicker.data(\"pause-on-hover\") : \"\";\n return {\n pauseOnHover: $pause_on_hover,\n direction: \"horizontal\",\n loop: $loop,\n speed: $speed,\n effect: $effect,\n slidesPerView: $items,\n spaceBetween: $margin,\n grabCursor: $grab_cursor,\n paginationClickable: true,\n autoHeight: true,\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 breakpoints: {\n // when window width is <= 480px\n 480: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n },\n // when window width is <= 640px\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n }\n }\n };\n }\n function autoPlayManager(element, options, event) {\n if (options.autoplay.delay === 0) {\n var _event$autoplay;\n event === null || event === void 0 || (_event$autoplay = event.autoplay) === null || _event$autoplay === void 0 || _event$autoplay.stop();\n }\n if (options.pauseOnHover && options.autoplay.delay !== 0) {\n element.on(\"mouseenter\", function () {\n var _event$autoplay2;\n event === null || event === void 0 || (_event$autoplay2 = event.autoplay) === null || _event$autoplay2 === void 0 || _event$autoplay2.pause();\n });\n element.on(\"mouseleave\", function () {\n var _event$autoplay3;\n event === null || event === void 0 || (_event$autoplay3 = event.autoplay) === null || _event$autoplay3 === void 0 || _event$autoplay3.run();\n });\n }\n }\n var ContentTicker = function ContentTicker($scope, $) {\n var $contentTicker = $scope.find(\".eael-content-ticker\").eq(0),\n contentOptions = get_configurations($contentTicker);\n swiperLoader($contentTicker, contentOptions).then(function (event) {\n autoPlayManager($contentTicker, event, contentOptions);\n });\n var ContentTickerSlider = function ContentTickerSlider(element) {\n var contentTickerElements = $(element).find('.eael-content-ticker');\n if (contentTickerElements.length) {\n contentTickerElements.each(function () {\n var $this = $(this);\n if ($this[0].swiper) {\n $this[0].swiper.destroy(true, true);\n var options = get_configurations($this);\n swiperLoader($this[0], options).then(function (event) {\n autoPlayManager($this, event, options);\n });\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ContentTickerSlider);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-content-ticker.default\", ContentTicker);\n});\n\n//# sourceURL=webpack:///./src/js/view/content-ticker.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n function get_configurations($contentTicker) {\n var $items = $contentTicker.data(\"items\") !== undefined ? $contentTicker.data(\"items\") : 1,\n $items_tablet = $contentTicker.data(\"items-tablet\") !== undefined ? $contentTicker.data(\"items-tablet\") : 1,\n $items_mobile = $contentTicker.data(\"items-mobile\") !== undefined ? $contentTicker.data(\"items-mobile\") : 1,\n $margin = $contentTicker.data(\"margin\") !== undefined ? $contentTicker.data(\"margin\") : 10,\n $margin_tablet = $contentTicker.data(\"margin-tablet\") !== undefined ? $contentTicker.data(\"margin-tablet\") : 10,\n $margin_mobile = $contentTicker.data(\"margin-mobile\") !== undefined ? $contentTicker.data(\"margin-mobile\") : 10,\n $effect = $contentTicker.data(\"effect\") !== undefined ? $contentTicker.data(\"effect\") : \"slide\",\n $speed = $contentTicker.data(\"speed\") !== undefined ? $contentTicker.data(\"speed\") : 400,\n $autoplay = $contentTicker.data(\"autoplay\") !== undefined ? $contentTicker.data(\"autoplay\") : 5000,\n $loop = $contentTicker.data(\"loop\") !== undefined ? $contentTicker.data(\"loop\") : false,\n $grab_cursor = $contentTicker.data(\"grab-cursor\") !== undefined ? $contentTicker.data(\"grab-cursor\") : false,\n $pagination = $contentTicker.data(\"pagination\") !== undefined ? $contentTicker.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $contentTicker.data(\"arrow-next\") !== undefined ? $contentTicker.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $contentTicker.data(\"arrow-prev\") !== undefined ? $contentTicker.data(\"arrow-prev\") : \".swiper-button-prev\",\n $pause_on_hover = $contentTicker.data(\"pause-on-hover\") !== undefined ? $contentTicker.data(\"pause-on-hover\") : \"\";\n return {\n pauseOnHover: $pause_on_hover,\n direction: \"horizontal\",\n loop: $loop,\n speed: $speed,\n effect: $effect,\n slidesPerView: $items,\n spaceBetween: $margin,\n grabCursor: $grab_cursor,\n paginationClickable: true,\n autoHeight: true,\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 breakpoints: {\n // when window width is <= 480px\n 480: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n },\n // when window width is <= 640px\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n }\n }\n };\n }\n function autoPlayManager(element, options, event) {\n if (options.autoplay.delay === 0) {\n var _event$autoplay;\n event === null || event === void 0 ? void 0 : (_event$autoplay = event.autoplay) === null || _event$autoplay === void 0 ? void 0 : _event$autoplay.stop();\n }\n if (options.pauseOnHover && options.autoplay.delay !== 0) {\n element.on(\"mouseenter\", function () {\n var _event$autoplay2;\n event === null || event === void 0 ? void 0 : (_event$autoplay2 = event.autoplay) === null || _event$autoplay2 === void 0 ? void 0 : _event$autoplay2.pause();\n });\n element.on(\"mouseleave\", function () {\n var _event$autoplay3;\n event === null || event === void 0 ? void 0 : (_event$autoplay3 = event.autoplay) === null || _event$autoplay3 === void 0 ? void 0 : _event$autoplay3.run();\n });\n }\n }\n var ContentTicker = function ContentTicker($scope, $) {\n var $contentTicker = $scope.find(\".eael-content-ticker\").eq(0),\n contentOptions = get_configurations($contentTicker);\n swiperLoader($contentTicker, contentOptions).then(function (event) {\n autoPlayManager($contentTicker, event, contentOptions);\n });\n var ContentTickerSlider = function ContentTickerSlider(element) {\n var contentTickerElements = $(element).find('.eael-content-ticker');\n if (contentTickerElements.length) {\n contentTickerElements.each(function () {\n var $this = $(this);\n if ($this[0].swiper) {\n $this[0].swiper.destroy(true, true);\n var options = get_configurations($this);\n swiperLoader($this[0], options).then(function (event) {\n autoPlayManager($this, event, options);\n });\n }\n });\n }\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ContentTickerSlider);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ContentTickerSlider);\n };\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper || 'function' === 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 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 elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-content-ticker.default\", ContentTicker);\n});\n\n//# sourceURL=webpack:///./src/js/view/content-ticker.js?"); /***/ }) diff --git a/assets/front-end/js/view/event-calendar.js b/assets/front-end/js/view/event-calendar.js index c5cd2466c..2555efb5d 100644 --- a/assets/front-end/js/view/event-calendar.js +++ b/assets/front-end/js/view/event-calendar.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n wrapper = $(\".eael-event-calendar-wrapper\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n defaultDate = element.data(\"defaultdate\"),\n multiDaysEventDayCount = typeof element.data(\"multidays_event_day_count\") !== 'undefined' ? element.data(\"multidays_event_day_count\") : 0,\n eventLimit = element.data(\"event_limit\"),\n popupDateFormate = element.data(\"popup_date_formate\"),\n monthColumnHeaderFormat = element.data(\"monthcolumnheaderformat\"),\n weekColumnHeaderFormat = element.data(\"weekcolumnheaderformat\"),\n time_format = element.data(\"time_format\") == \"yes\" ? true : false;\n if (wrapper.hasClass('layout-calendar')) {\n var refreshPopUpDetailsLink = function refreshPopUpDetailsLink() {\n var modalFooter = $(\".eaelec-modal-footer\"),\n modalFooterClass = modalFooter.find('a').attr('class'),\n modalFooterText = $(\".eael-event-calendar-cls\", $scope).attr('data-detailsButtonText');\n modalFooter.html('' + modalFooterText + '');\n };\n var calendar = new Calendar($scope[0].querySelector(\".eael-event-calendar-cls\"), {\n views: {\n month: {\n // will produce something like \"Tuesday, September 18, 2018\"\n dayHeaderContent: function dayHeaderContent(args) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1302249598_27_7_27_70_4\", 'monthColumnHeaderFormat', monthColumnHeaderFormat)));\n if (args.view.type === 'dayGridMonth' && monthColumnHeaderFormat) {\n return moment(args.date).format(monthColumnHeaderFormat);\n }\n }\n },\n week: {\n dayHeaderContent: function dayHeaderContent(args) {\n var _console2;\n /* eslint-disable */(_console2 = console).log.apply(_console2, _toConsumableArray(oo_oo(\"1302249598_35_7_35_68_4\", 'weekColumnHeaderFormat', weekColumnHeaderFormat)));\n if (weekColumnHeaderFormat) {\n return moment(args.date).format(weekColumnHeaderFormat);\n }\n }\n }\n },\n editable: false,\n selectable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: \"2-digit\",\n minute: \"2-digit\",\n hour12: !time_format\n },\n nextDayThreshold: \"00:00:00\",\n headerToolbar: {\n start: \"prev,next today\",\n center: \"title\",\n end: \"timeGridDay,timeGridWeek,dayGridMonth,listMonth\"\n },\n events: eventAll,\n locale: locale,\n dayMaxEventRows: typeof eventLimit !== \"undefined\" && eventLimit > 0 ? parseInt(eventLimit) : 3,\n initialView: defaultView,\n initialDate: defaultDate,\n eventClassNames: function eventClassNames(info) {},\n eventContent: function eventContent(info) {},\n eventDidMount: function eventDidMount(info) {\n var element = $(info.el),\n event = info.event;\n moment.locale(locale);\n if (multiDaysEventDayCount && event.endStr > event.startStr) {\n var _$$prevAll;\n var startDate = typeof event.startStr !== 'undefined' ? new Date(event.startStr) : '';\n var endDate = typeof event.endStr !== 'undefined' ? new Date(event.endStr) : '';\n var oneDay = 24 * 60 * 60 * 1000;\n var totalDays = (endDate - startDate) / oneDay;\n var currentCellDate = (_$$prevAll = $(element).prevAll('tr.fc-list-day:first')) === null || _$$prevAll === void 0 ? void 0 : _$$prevAll.data('date');\n currentCellDate = typeof currentCellDate !== 'undefined' ? new Date(currentCellDate) : '';\n var eventDayCount = startDate && currentCellDate ? Math.ceil((currentCellDate - startDate) / oneDay) + 1 : '';\n var eventTitle = \"\".concat(event.title, \" (Day \").concat(eventDayCount, \"/\").concat(totalDays, \" )\");\n element.find(\".fc-list-event-title a\").text(eventTitle);\n }\n\n // when event is finished event text are cross\n if (element.hasClass(\"fc-event-past\")) {\n element.find(\".fc-event-title\").addClass(\"eael-event-completed\");\n }\n translate.today = info.event._context.dateEnv.locale.options.buttonText.today;\n element.attr(\"style\", \"color:\" + event.textColor + \";background:\" + event.backgroundColor + \";\");\n element.find(\".fc-list-event-dot\").attr(\"style\", \"border-color:\" + event.backgroundColor + \";\");\n element.find(\".fc-daygrid-event-dot\").remove();\n if (event._def.extendedProps.is_redirect === 'yes') {\n element.attr(\"href\", event.url);\n if (event._def.extendedProps.external === \"on\") {\n element.attr(\"target\", \"_blank\");\n }\n if (event._def.extendedProps.nofollow === \"on\") {\n element.attr(\"rel\", \"nofollow\");\n }\n if (event._def.extendedProps.custom_attributes !== '') {\n $.each(event._def.extendedProps.custom_attributes, function (index, item) {\n element.attr(item.key, item.value);\n });\n }\n if (element.hasClass('fc-list-item')) {\n element.removeAttr(\"href target rel\");\n element.removeClass(\"fc-has-url\");\n element.css('cursor', 'default');\n }\n } else {\n element.attr(\"href\", \"javascript:void(0);\");\n element.click(function (e) {\n e.preventDefault();\n e.stopPropagation();\n var startDate = event.start,\n timeFormate = time_format ? \"H:mm\" : \"h:mm A\",\n endDate = event.end,\n startSelector = $(\"span.eaelec-event-date-start\"),\n endSelector = $(\"span.eaelec-event-date-end\"),\n modalFooterLink = $(\".eaelec-modal-footer a\");\n if (event.allDay) {\n var newEnd = moment(endDate).subtract(1, \"days\");\n endDate = newEnd._d;\n timeFormate = \" \";\n }\n moment.locale(locale);\n var startYear = moment(startDate).format(\"YYYY\"),\n endYear = moment(endDate).format(\"YYYY\"),\n yearDiff = endYear > startYear,\n startView = \"\",\n endView = \"\";\n startSelector.html(\" \");\n endSelector.html(\" \");\n ecModal.addClass(\"eael-ec-popup-ready\").removeClass(\"eael-ec-modal-removing\");\n if (event.allDay && moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n startView = moment(startDate).format(\"MMM Do\");\n if (moment(startDate).isSame(Date.now(), \"day\") === true) {\n startView = translate.today;\n } else if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow;\n }\n } else {\n if (moment(event.start).isSame(Date.now(), \"day\") === true) {\n startView = translate.today + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") < moment(new Date()).format(\"MM-DD-YYYY\") || moment(startDate).format(\"MM-DD-YYYY\") > moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = moment(event.start).format(popupDateFormate + \" \" + timeFormate);\n }\n startView = yearDiff ? startYear + \" \" + startView : startView;\n if (moment(endDate).isSame(Date.now(), \"day\") === true) {\n if (moment(startDate).isSame(Date.now(), \"day\") !== true) {\n endView = translate.today + \" \" + moment(endDate).format(timeFormate);\n } else {\n endView = moment(endDate).format(timeFormate);\n }\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") !== moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = translate.tomorrow + \" \" + moment(endDate).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n if (moment(endDate).diff(moment(startDate), \"days\") > 0 && endSelector.text().trim().length < 1) {\n endView = moment(endDate).format(popupDateFormate + \" \" + timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n endView = yearDiff ? endYear + \" \" + endView : endView;\n }\n if (event.extendedProps.hideEndDate !== undefined && event.extendedProps.hideEndDate === \"yes\") {\n endSelector.html(\" \");\n } else {\n endSelector.html(endView != \"\" ? \"- \" + endView : \"\");\n }\n startSelector.html(' ' + startView);\n $(\".eaelec-modal-header h2\").html(event.title);\n $(\".eaelec-modal-body\").html(event.extendedProps.description);\n if (event.extendedProps.description.length < 1) {\n $(\".eaelec-modal-body\").css(\"height\", \"auto\");\n } else {\n $(\".eaelec-modal-body\").css(\"height\", \"300px\");\n }\n if ($(\".eael-event-calendar-cls\", $scope).data('hidedetailslink') !== 'yes') {\n modalFooterLink.attr(\"href\", event.url).css(\"display\", \"block\");\n } else {\n modalFooterLink.css(\"display\", \"none\");\n }\n if (event.extendedProps.external === \"on\") {\n modalFooterLink.attr(\"target\", \"_blank\");\n }\n if (event.extendedProps.nofollow === \"on\") {\n modalFooterLink.attr(\"rel\", \"nofollow\");\n }\n if (event.extendedProps.custom_attributes != '') {\n $.each(event.extendedProps.custom_attributes, function (index, item) {\n modalFooterLink.attr(item.key, item.value);\n });\n }\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n });\n }\n },\n eventWillUnmount: function eventWillUnmount(arg) {}\n });\n CloseButton.on(\"click\", function (event) {\n event.stopPropagation();\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eaelec-modal-content\")) return;\n if (ecModal.hasClass(\"eael-ec-popup-ready\")) {\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n }\n });\n calendar.render();\n var observer = new IntersectionObserver(function (entries) {\n var _iterator = _createForOfIteratorHelper(entries),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var entry = _step.value;\n window.dispatchEvent(new Event('resize'));\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n });\n observer.observe(element[0]);\n eael.hooks.addAction(\"eventCalendar.reinit\", \"ea\", function () {\n calendar.today();\n });\n } else {\n var table = $('.eael-event-calendar-table', wrapper),\n pagination = table.hasClass('ea-ec-table-paginated'),\n itemPerPage = pagination ? table.data('items-per-page') : 10,\n sortColumn = $('.eael-ec-event-date', table).index();\n $(\".eael-event-calendar-table\", wrapper).fancyTable({\n sortColumn: sortColumn >= 0 ? sortColumn : 0,\n pagination: pagination,\n perPage: itemPerPage,\n globalSearch: true,\n searchInput: $(\".ea-ec-search-wrap\", wrapper),\n paginationElement: $(\".eael-event-calendar-pagination\", wrapper)\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelEventCalendar')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-event-calendar.default\", EventCalendar);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/event-calendar.js?"); +eval("function _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n wrapper = $(\".eael-event-calendar-wrapper\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n defaultDate = element.data(\"defaultdate\"),\n multiDaysEventDayCount = typeof element.data(\"multidays_event_day_count\") !== 'undefined' ? element.data(\"multidays_event_day_count\") : 0,\n eventLimit = element.data(\"event_limit\"),\n popupDateFormate = element.data(\"popup_date_formate\"),\n monthColumnHeaderFormat = element.data(\"monthcolumnheaderformat\"),\n weekColumnHeaderFormat = element.data(\"weekcolumnheaderformat\"),\n time_format = element.data(\"time_format\") == \"yes\" ? true : false;\n if (wrapper.hasClass('layout-calendar')) {\n var refreshPopUpDetailsLink = function refreshPopUpDetailsLink() {\n var modalFooter = $(\".eaelec-modal-footer\"),\n modalFooterClass = modalFooter.find('a').attr('class'),\n modalFooterText = $(\".eael-event-calendar-cls\", $scope).attr('data-detailsButtonText');\n modalFooter.html('' + modalFooterText + '');\n };\n var calendar = new Calendar($scope[0].querySelector(\".eael-event-calendar-cls\"), {\n views: {\n month: {\n // will produce something like \"Tuesday, September 18, 2018\"\n dayHeaderContent: function dayHeaderContent(args) {\n console.log('monthColumnHeaderFormat', monthColumnHeaderFormat);\n if (args.view.type === 'dayGridMonth' && monthColumnHeaderFormat) {\n return moment(args.date).format(monthColumnHeaderFormat);\n }\n }\n },\n week: {\n dayHeaderContent: function dayHeaderContent(args) {\n console.log('weekColumnHeaderFormat', weekColumnHeaderFormat);\n if (weekColumnHeaderFormat) {\n return moment(args.date).format(weekColumnHeaderFormat);\n }\n }\n }\n },\n editable: false,\n selectable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: \"2-digit\",\n minute: \"2-digit\",\n hour12: !time_format\n },\n nextDayThreshold: \"00:00:00\",\n headerToolbar: {\n start: \"prev,next today\",\n center: \"title\",\n end: \"timeGridDay,timeGridWeek,dayGridMonth,listMonth\"\n },\n events: eventAll,\n locale: locale,\n dayMaxEventRows: typeof eventLimit !== \"undefined\" && eventLimit > 0 ? parseInt(eventLimit) : 3,\n initialView: defaultView,\n initialDate: defaultDate,\n eventClassNames: function eventClassNames(info) {},\n eventContent: function eventContent(info) {},\n eventDidMount: function eventDidMount(info) {\n var element = $(info.el),\n event = info.event;\n moment.locale(locale);\n if (multiDaysEventDayCount && event.endStr > event.startStr) {\n var _$$prevAll;\n var startDate = typeof event.startStr !== 'undefined' ? new Date(event.startStr) : '';\n var endDate = typeof event.endStr !== 'undefined' ? new Date(event.endStr) : '';\n var oneDay = 24 * 60 * 60 * 1000;\n var totalDays = (endDate - startDate) / oneDay;\n var currentCellDate = (_$$prevAll = $(element).prevAll('tr.fc-list-day:first')) === null || _$$prevAll === void 0 ? void 0 : _$$prevAll.data('date');\n currentCellDate = typeof currentCellDate !== 'undefined' ? new Date(currentCellDate) : '';\n var eventDayCount = startDate && currentCellDate ? Math.ceil((currentCellDate - startDate) / oneDay) + 1 : '';\n var eventTitle = \"\".concat(event.title, \" (Day \").concat(eventDayCount, \"/\").concat(totalDays, \" )\");\n element.find(\".fc-list-event-title a\").text(eventTitle);\n }\n\n // when event is finished event text are cross\n if (element.hasClass(\"fc-event-past\")) {\n element.find(\".fc-event-title\").addClass(\"eael-event-completed\");\n }\n translate.today = info.event._context.dateEnv.locale.options.buttonText.today;\n element.attr(\"style\", \"color:\" + event.textColor + \";background:\" + event.backgroundColor + \";\");\n element.find(\".fc-list-event-dot\").attr(\"style\", \"border-color:\" + event.backgroundColor + \";\");\n element.find(\".fc-daygrid-event-dot\").remove();\n if (event._def.extendedProps.is_redirect === 'yes') {\n element.attr(\"href\", event.url);\n if (event._def.extendedProps.external === \"on\") {\n element.attr(\"target\", \"_blank\");\n }\n if (event._def.extendedProps.nofollow === \"on\") {\n element.attr(\"rel\", \"nofollow\");\n }\n if (event._def.extendedProps.custom_attributes !== '') {\n $.each(event._def.extendedProps.custom_attributes, function (index, item) {\n element.attr(item.key, item.value);\n });\n }\n if (element.hasClass('fc-list-item')) {\n element.removeAttr(\"href target rel\");\n element.removeClass(\"fc-has-url\");\n element.css('cursor', 'default');\n }\n } else {\n element.attr(\"href\", \"javascript:void(0);\");\n element.click(function (e) {\n e.preventDefault();\n e.stopPropagation();\n var startDate = event.start,\n timeFormate = time_format ? \"H:mm\" : \"h:mm A\",\n endDate = event.end,\n startSelector = $(\"span.eaelec-event-date-start\"),\n endSelector = $(\"span.eaelec-event-date-end\"),\n modalFooterLink = $(\".eaelec-modal-footer a\");\n if (event.allDay) {\n var newEnd = moment(endDate).subtract(1, \"days\");\n endDate = newEnd._d;\n timeFormate = \" \";\n }\n moment.locale(locale);\n var startYear = moment(startDate).format(\"YYYY\"),\n endYear = moment(endDate).format(\"YYYY\"),\n yearDiff = endYear > startYear,\n startView = \"\",\n endView = \"\";\n startSelector.html(\" \");\n endSelector.html(\" \");\n ecModal.addClass(\"eael-ec-popup-ready\").removeClass(\"eael-ec-modal-removing\");\n if (event.allDay && moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n startView = moment(startDate).format(\"MMM Do\");\n if (moment(startDate).isSame(Date.now(), \"day\") === true) {\n startView = translate.today;\n } else if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow;\n }\n } else {\n if (moment(event.start).isSame(Date.now(), \"day\") === true) {\n startView = translate.today + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow + \" \" + moment(event.start).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") < moment(new Date()).format(\"MM-DD-YYYY\") || moment(startDate).format(\"MM-DD-YYYY\") > moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = moment(event.start).format(popupDateFormate + \" \" + timeFormate);\n }\n startView = yearDiff ? startYear + \" \" + startView : startView;\n if (moment(endDate).isSame(Date.now(), \"day\") === true) {\n if (moment(startDate).isSame(Date.now(), \"day\") !== true) {\n endView = translate.today + \" \" + moment(endDate).format(timeFormate);\n } else {\n endView = moment(endDate).format(timeFormate);\n }\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") !== moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = translate.tomorrow + \" \" + moment(endDate).format(timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n if (moment(endDate).diff(moment(startDate), \"days\") > 0 && endSelector.text().trim().length < 1) {\n endView = moment(endDate).format(popupDateFormate + \" \" + timeFormate);\n }\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n endView = yearDiff ? endYear + \" \" + endView : endView;\n }\n if (event.extendedProps.hideEndDate !== undefined && event.extendedProps.hideEndDate === \"yes\") {\n endSelector.html(\" \");\n } else {\n endSelector.html(endView != \"\" ? \"- \" + endView : \"\");\n }\n startSelector.html(' ' + startView);\n $(\".eaelec-modal-header h2\").html(event.title);\n $(\".eaelec-modal-body\").html(event.extendedProps.description);\n if (event.extendedProps.description.length < 1) {\n $(\".eaelec-modal-body\").css(\"height\", \"auto\");\n } else {\n $(\".eaelec-modal-body\").css(\"height\", \"300px\");\n }\n if ($(\".eael-event-calendar-cls\", $scope).data('hidedetailslink') !== 'yes') {\n modalFooterLink.attr(\"href\", event.url).css(\"display\", \"block\");\n } else {\n modalFooterLink.css(\"display\", \"none\");\n }\n if (event.extendedProps.external === \"on\") {\n modalFooterLink.attr(\"target\", \"_blank\");\n }\n if (event.extendedProps.nofollow === \"on\") {\n modalFooterLink.attr(\"rel\", \"nofollow\");\n }\n if (event.extendedProps.custom_attributes != '') {\n $.each(event.extendedProps.custom_attributes, function (index, item) {\n modalFooterLink.attr(item.key, item.value);\n });\n }\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n\n // Popup color\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n });\n }\n },\n eventWillUnmount: function eventWillUnmount(arg) {}\n });\n CloseButton.on(\"click\", function (event) {\n event.stopPropagation();\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eaelec-modal-content\")) return;\n if (ecModal.hasClass(\"eael-ec-popup-ready\")) {\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n refreshPopUpDetailsLink();\n }\n });\n calendar.render();\n var observer = new IntersectionObserver(function (entries) {\n var _iterator = _createForOfIteratorHelper(entries),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var entry = _step.value;\n window.dispatchEvent(new Event('resize'));\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 200);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n });\n observer.observe(element[0]);\n eael.hooks.addAction(\"eventCalendar.reinit\", \"ea\", function () {\n calendar.today();\n });\n } else {\n var table = $('.eael-event-calendar-table', wrapper),\n pagination = table.hasClass('ea-ec-table-paginated'),\n itemPerPage = pagination ? table.data('items-per-page') : 10,\n sortColumn = $('.eael-ec-event-date', table).index();\n $(\".eael-event-calendar-table\", wrapper).fancyTable({\n sortColumn: sortColumn >= 0 ? sortColumn : 0,\n pagination: pagination,\n perPage: itemPerPage,\n globalSearch: true,\n searchInput: $(\".ea-ec-search-wrap\", wrapper),\n paginationElement: $(\".eael-event-calendar-pagination\", wrapper)\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelEventCalendar')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-event-calendar.default\", EventCalendar);\n});\n\n//# sourceURL=webpack:///./src/js/view/event-calendar.js?"); /***/ }) diff --git a/assets/front-end/js/view/filterable-gallery.js b/assets/front-end/js/view/filterable-gallery.js index 0dfb88e82..1db835a92 100644 --- a/assets/front-end/js/view/filterable-gallery.js +++ b/assets/front-end/js/view/filterable-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\n function shuffleGalleryItems(items) {\n for (var i = 0; i < items.length - 1; i++) {\n var j = i + Math.floor(Math.random() * (items.length - i));\n var temp = items[j];\n items[j] = items[i];\n items[i] = temp;\n }\n return items;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\n });\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\"),\n $is_randomize = $gallery.data(\"is-randomize\");\n isRTL = $('body').hasClass('rtl');\n if ('yes' === $is_randomize) {\n fg_items = shuffleGalleryItems(fg_items);\n $gallery.empty();\n for (var i = 0; i < $init_show_setting; i++) {\n $gallery.append(fg_items[i]);\n }\n }\n fg_items.splice(0, $init_show_setting);\n\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = item.el.attr('title');\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n\n //Fix Safari pop video width issue. \n $('.e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe').on('load', function () {\n // Access the iframe's document\n var iframeDoc = this.contentDocument || this.contentWindow.document;\n var $video = $(iframeDoc).find('video');\n $video.removeClass('mac');\n });\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n var replaceWithDot = buttonFilter.replace('.', '');\n var restOfItem = fg_items.filter(function (galleryItem) {\n return galleryItem.includes(replaceWithDot);\n }).length;\n if (LoadMoreShow || restOfItem < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n if (LoadMoreShow || fg_items.length <= 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
');\n $this.children('.no-more-items-text').text($nomore_text);\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (eael.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); +eval("function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\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.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, 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 o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t[\"return\"] || t[\"return\"](); } finally { if (u) throw o; } } }; }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\njQuery(window).on(\"elementor/frontend/init\", function () {\n function getVideoId(url) {\n var vimeoMatch = url.match(/\\/\\/(?:player\\.)?vimeo.com\\/(?:video\\/)?([0-9]+)/);\n if (vimeoMatch) {\n return vimeoMatch[1];\n }\n var youtubeMatch = url.match(/(?:https?:\\/\\/)?(?:www\\.)?(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?)\\/|\\S*?[?&]v=)|youtu\\.be\\/)([a-zA-Z0-9_-]{11})/);\n if (youtubeMatch) {\n return youtubeMatch[1];\n }\n return null;\n }\n function shuffleGalleryItems(items) {\n for (var i = 0; i < items.length - 1; i++) {\n var j = i + Math.floor(Math.random() * (items.length - i));\n var temp = items[j];\n items[j] = items[i];\n items[i] = temp;\n }\n return items;\n }\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 fg_mfp_counter_text = localize.eael_translate_text.fg_mfp_counter_text;\n fg_mfp_counter_text = fg_mfp_counter_text ? '%curr% ' + fg_mfp_counter_text + ' %total%' : '%curr% of %total%';\n var $galleryWrap = $(\".eael-filter-gallery-wrapper\", $scope);\n var custom_default_control = $galleryWrap.data('custom_default_control');\n var default_control_key = $galleryWrap.data('default_control_key');\n custom_default_control = typeof custom_default_control !== 'undefined' ? parseInt(custom_default_control) : 0;\n default_control_key = typeof default_control_key !== 'undefined' ? parseInt(default_control_key) : 0;\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\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 $('.video-popup.eael-magnific-video-link.playout-vertical', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-iframe-holder').addClass('eael-gf-vertical-video-popup');\n }, 1);\n });\n $('.eael-magnific-link', $scope).on('click', function () {\n setTimeout(function () {\n $('.mfp-wrap').addClass('eael-gf-mfp-popup');\n }, 1);\n });\n $(document).on('click', '.mfp-arrow.mfp-arrow-left, .mfp-arrow.mfp-arrow-right', function () {\n setTimeout(function () {\n var container = $('.eael-gf-mfp-popup .mfp-container');\n if (container.hasClass('mfp-iframe-holder')) {\n var src = $('iframe', container).attr('src'),\n plyBtn = $('a[href=\"' + src + '\"]');\n if (plyBtn.length < 1) {\n var videoId = getVideoId(src),\n plyBtn = $('a[href*=\"' + videoId + '\"]');\n }\n if (plyBtn.hasClass('playout-vertical')) {\n container.addClass('eael-gf-vertical-video-popup');\n } else {\n container.removeClass('eael-gf-vertical-video-popup');\n }\n }\n }, 1);\n });\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $images_per_page = $gallery.data(\"images-per-page\"),\n $init_show_setting = $gallery.data(\"init-show\"),\n $is_randomize = $gallery.data(\"is-randomize\");\n isRTL = $('body').hasClass('rtl');\n if ('yes' === $is_randomize) {\n fg_items = shuffleGalleryItems(fg_items);\n $gallery.empty();\n for (var i = 0; i < $init_show_setting; i++) {\n $gallery.append(fg_items[i]);\n }\n }\n fg_items.splice(0, $init_show_setting);\n\n // init isotope\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\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 isOriginLeft: !isRTL,\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\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 var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n });\n\n // Popup\n $($scope).magnificPopup({\n delegate: \".eael-filterable-gallery-item-wrap:not([style*='display: none']) .eael-magnific-link.active\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled,\n tCounter: fg_mfp_counter_text\n },\n iframe: {\n markup: \"
\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\t\\t
\"\n },\n callbacks: {\n markupParse: function markupParse(template, values, item) {\n if (item.el.attr('title') !== \"\") {\n values.title = DOMPurify.sanitize(item.el.attr('title'));\n }\n },\n open: function open() {\n setTimeout(function () {\n $(\".eael-privacy-message\").remove();\n }, 5000);\n setTimeout(function () {\n var el_lightbox = $('.dialog-type-lightbox.elementor-lightbox');\n if (el_lightbox.length > 0) {\n el_lightbox.remove();\n }\n\n //Fix Safari pop video width issue. \n $('.e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe').on('load', function () {\n // Access the iframe's document\n var iframeDoc = this.contentDocument || this.contentWindow.document;\n var $video = $(iframeDoc).find('video');\n $video.removeClass('mac');\n });\n }, 100);\n }\n }\n });\n\n // filter\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var initData = $(\".eael-filter-gallery-container .eael-filterable-gallery-item-wrap\" + buttonFilter, $scope).length;\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n var firstInit = parseInt($this.data('first-init'));\n if (!firstInit) {\n $this.data('first-init', 1);\n var item_found = initData;\n var index_list = $items = [];\n if (typeof $images_per_page === 'string') {\n $images_per_page = $init_show_setting;\n }\n if (item_found < $images_per_page) {\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\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 if (buttonFilter !== '' && buttonFilter !== '*') {\n var element = $($(item)[0]);\n if (element.is(buttonFilter)) {\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 var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope);\n\n //hide load more button if selected control have no item to show\n var replaceWithDot = buttonFilter.replace('.', '');\n var restOfItem = fg_items.filter(function (galleryItem) {\n return galleryItem.includes(replaceWithDot);\n }).length;\n if (LoadMoreShow || restOfItem < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n if (!firstInit && $items.length > 0) {\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n } else {\n $isotope_gallery.isotope();\n }\n if ($this.hasClass('all-control')) {\n //All items are active\n if (LoadMoreShow || fg_items.length <= 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active').addClass('active');\n } else {\n $('.eael-filterable-gallery-item-wrap .eael-magnific-link-clone').removeClass('active');\n $(buttonFilter + ' .eael-magnific-link').addClass('active');\n }\n });\n\n //quick search\n var loaded_on_search = false;\n input.on(\"input\", function () {\n var $this = $(this),\n $items = [];\n if (!loaded_on_search && $gallery.data('search-all') === 'yes') {\n var _iterator2 = _createForOfIteratorHelper(fg_items.entries()),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var _step2$value = _slicedToArray(_step2.value, 2),\n index = _step2$value[0],\n item = _step2$value[1];\n $items.push($(item)[0]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n $isotope_gallery.isotope();\n $gallery.append($items);\n $isotope_gallery.isotope('appended', $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n $(\".eael-gallery-load-more\", $scope).hide();\n loaded_on_search = true;\n }\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n });\n\n // layout gal, while images are loading\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // layout gal, on click tabs\n $isotope_gallery.on(\"arrangeComplete\", function () {\n var notFoundDiv = $('#eael-fg-no-items-found', $scope),\n minHeight = notFoundDiv.css('font-size');\n $('.eael-filter-gallery-container', $scope).css('min-height', parseInt(minHeight) * 2 + 'px');\n if (!$isotope_gallery.data('isotope').filteredItems.length) {\n $('#eael-fg-no-items-found', $scope).show();\n } else {\n $('#eael-fg-no-items-found', $scope).hide();\n }\n });\n\n // layout gal, after window loaded\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n });\n\n // Load more button\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 $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 if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n if (filter_name === undefined) {\n filter_name = '*';\n }\n var item_found = 0;\n var index_list = [];\n var _iterator3 = _createForOfIteratorHelper(fg_items.entries()),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n index = _step3$value[0],\n item = _step3$value[1];\n var element = $($(item)[0]);\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n if (filter_name !== '' && filter_name !== '*' && fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\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 if (fg_items.length < 1) {\n $this.html('
');\n $this.children('.no-more-items-text').text($nomore_text);\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n }\n\n // append items\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n });\n\n // Fix issue on Safari: hide filter menu\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 $(document).ready(function () {\n if (window.location.hash) {\n jQuery('#' + window.location.hash.substring(1)).trigger('click');\n } else if (custom_default_control) {\n var increment = $settings.control_all_text ? 2 : 1;\n default_control_key = default_control_key + increment;\n jQuery(\".eael-filter-gallery-control li:nth-child(\".concat(default_control_key, \")\")).trigger('click');\n }\n });\n var FilterableGallery = function FilterableGallery(element) {\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n };\n eael.hooks.addAction(\"ea-toggle-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-lightbox-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", FilterableGallery);\n eael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", FilterableGallery);\n }\n };\n if (eael.elementStatusCheck('eaelFilterableGallery')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?"); /***/ }) diff --git a/assets/front-end/js/view/filterable-gallery.min.js b/assets/front-end/js/view/filterable-gallery.min.js index b879ccc40..dfec76292 100644 --- a/assets/front-end/js/view/filterable-gallery.min.js +++ b/assets/front-end/js/view/filterable-gallery.min.js @@ -1 +1 @@ -!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,o,i,l=[],f=!0,s=!1;try{if(o=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;f=!1}else for(;!(f=(r=o.call(a)).done)&&(l.push(r.value),l.length!==t);f=!0);}catch(e){s=!0,n=e}finally{try{if(!f&&null!=a.return&&(i=a.return(),Object(i)!==i))return}finally{if(s)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){f=!0,i=e},f:function(){try{l||null==a.return||a.return()}finally{if(f)throw i}}}}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=a.el.attr("title"))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove(),t(".e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe").on("load",(function(){var e=this.contentDocument||this.contentWindow.document;t(e).find("video").removeClass("mac")}))}),100)}}}),e.on("click",".control",(function(){var n=t(this);o=t(this).attr("data-filter");var i=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+o,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var f=parseInt(n.data("first-init"));if(!f){n.data("first-init",1);var s=i,c=$items=[];if("string"==typeof w&&(w=k),s=w)break}}catch(e){d.e(e)}finally{d.f()}}c.length>0&&(y=y.filter((function(e,t){return!c.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e),x=o.replace(".",""),C=y.filter((function(e){return e.includes(x)})).length;h||C<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!f&&$items.length>0?(S.isotope(),g.append($items),S.isotope("appended",$items),S.imagesLoaded().progress((function(){S.isotope("layout")}))):S.isotope(),n.hasClass("all-control")?(h||y.length<=1?b.hide():b.show(),t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active")):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(o+" .eael-magnific-link").addClass("active"))}));var j=!1;c.on("input",(function(){var o=t(this),l=[];if(!j&&"yes"===g.data("search-all")){var f,s=r(y.entries());try{for(s.s();!(f=s.n()).done;){var c=a(f.value,2),u=(c[0],c[1]);l.push(t(u)[0])}}catch(e){s.e(e)}finally{s.f()}S.isotope(),g.append(l),S.isotope("appended",l),S.imagesLoaded().progress((function(){S.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),j=!0}clearTimeout(i),i=setTimeout((function(){n=new RegExp(o.val(),"gi"),S.isotope()}),600)})),S.imagesLoaded().progress((function(){S.isotope("layout")})),S.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),S.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){S.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var o=t(this),i=g.data("nomore-item-text"),f=(t(".eael-filter-gallery-control",e).length,[]),s=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(s=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===s&&(s="*");var c,u=0,d=[],p=r(y.entries());try{for(p.s();!(c=p.n()).done;){var m=a(c.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(s)&&(++u,f.push(t(h)[0]),d.push(v)),""!==s&&"*"!==s&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),o.hide()),u===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(o.html('
'),o.children(".no-more-items-text").text(i),setTimeout((function(){o.fadeOut("slow")}),600)),g.append(f),S.isotope("appended",f),S.imagesLoaded().progress((function(){S.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var A=function(e){S.imagesLoaded().progress((function(){S.isotope("layout")}))};eael.hooks.addAction("ea-toggle-triggered","ea",A),eael.hooks.addAction("ea-lightbox-triggered","ea",A),eael.hooks.addAction("ea-advanced-tabs-triggered","ea",A),eael.hooks.addAction("ea-advanced-accordion-triggered","ea",A)}}))}))}}); \ No newline at end of file +!function(e){var t={};function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=12)}({12:function(e,t){function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=a){var r,n,i,o,l=[],f=!0,s=!1;try{if(i=(a=a.call(e)).next,0===t){if(Object(a)!==a)return;f=!1}else for(;!(f=(r=i.call(a)).done)&&(l.push(r.value),l.length!==t);f=!0);}catch(e){s=!0,n=e}finally{try{if(!f&&null!=a.return&&(o=a.return(),Object(o)!==o))return}finally{if(s)throw n}}return l}}(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 r(e,t){var a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!a){if(Array.isArray(e)||(a=n(e))||t&&e&&"number"==typeof e.length){a&&(e=a);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},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 o,l=!0,f=!1;return{s:function(){a=a.call(e)},n:function(){var e=a.next();return l=e.done,e},e:function(e){f=!0,o=e},f:function(){try{l||null==a.return||a.return()}finally{if(f)throw o}}}}function n(e,t){if(e){if("string"==typeof e)return i(e,t);var a={}.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?i(e,t):void 0}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,r=Array(t);a\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t'},callbacks:{markupParse:function(e,t,a){""!==a.el.attr("title")&&(t.title=DOMPurify.sanitize(a.el.attr("title")))},open:function(){setTimeout((function(){t(".eael-privacy-message").remove()}),5e3),setTimeout((function(){var e=t(".dialog-type-lightbox.elementor-lightbox");e.length>0&&e.remove(),t(".e--ua-safari .eael-gf-mfp-popup iframe.mfp-iframe").on("load",(function(){var e=this.contentDocument||this.contentWindow.document;t(e).find("video").removeClass("mac")}))}),100)}}}),e.on("click",".control",(function(){var n=t(this);i=t(this).attr("data-filter");var o=t(".eael-filter-gallery-container .eael-filterable-gallery-item-wrap"+i,e).length,l=e.find("#fg-filter-trigger > span");l.length&&l.text(n.text());var f=parseInt(n.data("first-init"));if(!f){n.data("first-init",1);var s=o,u=$items=[];if("string"==typeof w&&(w=k),s=w)break}}catch(e){d.e(e)}finally{d.f()}}u.length>0&&(y=y.filter((function(e,t){return!u.includes(t)})))}var h=t(this).data("load-more-status"),b=t(".eael-gallery-load-more",e),x=i.replace(".",""),C=y.filter((function(e){return e.includes(x)})).length;h||C<1?b.hide():b.show(),n.siblings().removeClass("active"),n.addClass("active"),!f&&$items.length>0?(S.isotope(),g.append($items),S.isotope("appended",$items),S.imagesLoaded().progress((function(){S.isotope("layout")}))):S.isotope(),n.hasClass("all-control")?(h||y.length<=1?b.hide():b.show(),t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active").addClass("active")):(t(".eael-filterable-gallery-item-wrap .eael-magnific-link-clone").removeClass("active"),t(i+" .eael-magnific-link").addClass("active"))}));var j=!1;u.on("input",(function(){var i=t(this),l=[];if(!j&&"yes"===g.data("search-all")){var f,s=r(y.entries());try{for(s.s();!(f=s.n()).done;){var u=a(f.value,2),c=(u[0],u[1]);l.push(t(c)[0])}}catch(e){s.e(e)}finally{s.f()}S.isotope(),g.append(l),S.isotope("appended",l),S.imagesLoaded().progress((function(){S.isotope("layout")})),t(".eael-gallery-load-more",e).hide(),j=!0}clearTimeout(o),o=setTimeout((function(){n=new RegExp(i.val(),"gi"),S.isotope()}),600)})),S.imagesLoaded().progress((function(){S.isotope("layout")})),S.on("arrangeComplete",(function(){var a=t("#eael-fg-no-items-found",e).css("font-size");t(".eael-filter-gallery-container",e).css("min-height",2*parseInt(a)+"px"),S.data("isotope").filteredItems.length?t("#eael-fg-no-items-found",e).hide():t("#eael-fg-no-items-found",e).show()})),t(window).on("load",(function(){S.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(n){n.preventDefault();var i=t(this),o=g.data("nomore-item-text"),f=(t(".eael-filter-gallery-control",e).length,[]),s=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(s=t(".fg-layout-3-filter-controls li.active",e).data("filter")),void 0===s&&(s="*");var u,c=0,d=[],p=r(y.entries());try{for(p.s();!(u=p.n()).done;){var m=a(u.value,2),v=m[0],h=m[1];if(t(t(h)[0]).is(s)&&(++c,f.push(t(h)[0]),d.push(v)),""!==s&&"*"!==s&&y.length-1===v&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),i.hide()),c===w)break}}catch(e){p.e(e)}finally{p.f()}d.length>0&&(y=y.filter((function(e,t){return!d.includes(t)}))),y.length<1&&(i.html('
'),i.children(".no-more-items-text").text(o),setTimeout((function(){i.fadeOut("slow")}),600)),g.append(f),S.isotope("appended",f),S.imagesLoaded().progress((function(){S.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")})),t(document).ready((function(){if(window.location.hash)jQuery("#"+window.location.hash.substring(1)).trigger("click");else if(p){var e=v.control_all_text?2:1;m+=e,jQuery(".eael-filter-gallery-control li:nth-child(".concat(m,")")).trigger("click")}}));var A=function(e){S.imagesLoaded().progress((function(){S.isotope("layout")}))};eael.hooks.addAction("ea-toggle-triggered","ea",A),eael.hooks.addAction("ea-lightbox-triggered","ea",A),eael.hooks.addAction("ea-advanced-tabs-triggered","ea",A),eael.hooks.addAction("ea-advanced-accordion-triggered","ea",A)}}))}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/general.js b/assets/front-end/js/view/general.js index ff01460dd..332a3f78b 100644 --- a/assets/front-end/js/view/general.js +++ b/assets/front-end/js/view/general.js @@ -86,219 +86,207 @@ /************************************************************************/ /******/ ({ -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js": /*!**************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***! \**************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayLikeToArray; });\nfunction _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayLikeToArray; });\nfunction _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(r) {\n if (Array.isArray(r)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(r) {\n if (Array.isArray(r)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js": -/*!************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***! - \************************************************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _classCallCheck; });\nfunction _classCallCheck(a, n) {\n if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\");\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js?"); - -/***/ }), - -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js": /*!*************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***! \*************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(r) {\n if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(r) {\n if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r);\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _nonIterableSpread; });\nfunction _nonIterableSpread() {\n 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}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _nonIterableSpread; });\nfunction _nonIterableSpread() {\n 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}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js": /*!***************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***! \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableSpread.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(r) {\n return Object(_arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r) || Object(_iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(r) || Object(_unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(r) || Object(_nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableSpread.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(r) {\n return Object(_arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r) || Object(_iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(r) || Object(_unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(r) || Object(_nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js": +/***/ "./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js": /*!************************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***! + !*** ./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***! \************************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a) : void 0;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(r, a) : void 0;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js": -/*!****************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js ***! - \****************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js": +/*!***************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js ***! + \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n\n/**\n * @callback AddHook\n *\n * Adds the hook to the appropriate hooks container.\n *\n * @param {string} hookName Name of hook to add\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n * @param {import('.').Callback} callback Function to call when the hook is run\n * @param {number} [priority=10] Priority of this hook\n */\n\n/**\n * Returns a function which, when invoked, will add a hook.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {AddHook} Function that adds a new hook.\n */\n\nfunction createAddHook(hooks, storeKey) {\n return function addHook(hookName, namespace, callback) {\n var priority = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 10;\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n }\n\n if ('function' !== typeof callback) {\n // eslint-disable-next-line no-console\n console.error('The hook callback must be a function.');\n return;\n } // Validate numeric priority\n\n\n if ('number' !== typeof priority) {\n // eslint-disable-next-line no-console\n console.error('If specified, the hook priority must be a number.');\n return;\n }\n\n var handler = {\n callback: callback,\n priority: priority,\n namespace: namespace\n };\n\n if (hooksStore[hookName]) {\n // Find the correct insert index of the new hook.\n var handlers = hooksStore[hookName].handlers;\n /** @type {number} */\n\n var i;\n\n for (i = handlers.length; i > 0; i--) {\n if (priority >= handlers[i - 1].priority) {\n break;\n }\n }\n\n if (i === handlers.length) {\n // If append, operate via direct assignment.\n handlers[i] = handler;\n } else {\n // Otherwise, insert before index via splice.\n handlers.splice(i, 0, handler);\n } // We may also be currently executing this hook. If the callback\n // we're adding would come after the current callback, there's no\n // problem; otherwise we need to increase the execution index of\n // any other runs by 1 to account for the added element.\n\n\n hooksStore.__current.forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex++;\n }\n });\n } else {\n // This is the first hook of its type.\n hooksStore[hookName] = {\n handlers: [handler],\n runs: 0\n };\n }\n\n if (hookName !== 'hookAdded') {\n hooks.doAction('hookAdded', hookName, namespace, callback, priority);\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createAddHook);\n//# sourceMappingURL=createAddHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\n/**\n * Internal dependencies\n */\n\n\n\n/**\n * Returns a function which, when invoked, will add a hook.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that adds a new hook.\n */\n\nfunction createAddHook(hooks) {\n /**\n * Adds the hook to the appropriate hooks container.\n *\n * @param {string} hookName Name of hook to add\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n * @param {Function} callback Function to call when the hook is run\n * @param {?number} priority Priority of this hook (default=10)\n */\n return function addHook(hookName, namespace, callback) {\n var priority = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 10;\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n }\n\n if ('function' !== typeof callback) {\n // eslint-disable-next-line no-console\n console.error('The hook callback must be a function.');\n return;\n } // Validate numeric priority\n\n\n if ('number' !== typeof priority) {\n // eslint-disable-next-line no-console\n console.error('If specified, the hook priority must be a number.');\n return;\n }\n\n var handler = {\n callback: callback,\n priority: priority,\n namespace: namespace\n };\n\n if (hooks[hookName]) {\n // Find the correct insert index of the new hook.\n var handlers = hooks[hookName].handlers;\n var i;\n\n for (i = handlers.length; i > 0; i--) {\n if (priority >= handlers[i - 1].priority) {\n break;\n }\n }\n\n if (i === handlers.length) {\n // If append, operate via direct assignment.\n handlers[i] = handler;\n } else {\n // Otherwise, insert before index via splice.\n handlers.splice(i, 0, handler);\n } // We may also be currently executing this hook. If the callback\n // we're adding would come after the current callback, there's no\n // problem; otherwise we need to increase the execution index of\n // any other runs by 1 to account for the added element.\n\n\n (hooks.__current || []).forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex++;\n }\n });\n } else {\n // This is the first hook of its type.\n hooks[hookName] = {\n handlers: [handler],\n runs: 0\n };\n }\n\n if (hookName !== 'hookAdded') {\n Object(___WEBPACK_IMPORTED_MODULE_2__[\"doAction\"])('hookAdded', hookName, namespace, callback, priority);\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createAddHook);\n//# sourceMappingURL=createAddHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js": -/*!********************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js ***! - \********************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js": +/*!*******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js ***! + \*******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return the name of the\n * currently running hook, or `null` if no hook of the given type is currently\n * running.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {() => string | null} Function that returns the current hook name or null.\n */\nfunction createCurrentHook(hooks, storeKey) {\n return function currentHook() {\n var _hooksStore$__current, _hooksStore$__current2;\n\n var hooksStore = hooks[storeKey];\n return (_hooksStore$__current = (_hooksStore$__current2 = hooksStore.__current[hooksStore.__current.length - 1]) === null || _hooksStore$__current2 === void 0 ? void 0 : _hooksStore$__current2.name) !== null && _hooksStore$__current !== void 0 ? _hooksStore$__current : null;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createCurrentHook);\n//# sourceMappingURL=createCurrentHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return the name of the\n * currently running hook, or `null` if no hook of the given type is currently\n * running.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns the current hook.\n */\nfunction createCurrentHook(hooks) {\n /**\n * Returns the name of the currently running hook, or `null` if no hook of\n * the given type is currently running.\n *\n * @return {?string} The name of the currently running hook, or\n * `null` if no hook is currently running.\n */\n return function currentHook() {\n if (!hooks.__current || !hooks.__current.length) {\n return null;\n }\n\n return hooks.__current[hooks.__current.length - 1].name;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createCurrentHook);\n//# sourceMappingURL=createCurrentHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js": -/*!****************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js ***! - \****************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js": +/*!***************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js ***! + \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n/**\n * @callback DidHook\n *\n * Returns the number of times an action has been fired.\n *\n * @param {string} hookName The hook name to check.\n *\n * @return {number | undefined} The number of times the hook has run.\n */\n\n/**\n * Returns a function which, when invoked, will return the number of times a\n * hook has been called.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {DidHook} Function that returns a hook's call count.\n */\n\nfunction createDidHook(hooks, storeKey) {\n return function didHook(hookName) {\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hookName)) {\n return;\n }\n\n return hooksStore[hookName] && hooksStore[hookName].runs ? hooksStore[hookName].runs : 0;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDidHook);\n//# sourceMappingURL=createDidHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n/**\n * Returns a function which, when invoked, will return the number of times a\n * hook has been called.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns a hook's call count.\n */\n\nfunction createDidHook(hooks) {\n /**\n * Returns the number of times an action has been fired.\n *\n * @param {string} hookName The hook name to check.\n *\n * @return {number} The number of times the hook has run.\n */\n return function didHook(hookName) {\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hookName)) {\n return;\n }\n\n return hooks[hookName] && hooks[hookName].runs ? hooks[hookName].runs : 0;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDidHook);\n//# sourceMappingURL=createDidHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js": -/*!******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js ***! - \******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js": +/*!*****************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js ***! + \*****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * @callback DoingHook\n * Returns whether a hook is currently being executed.\n *\n * @param {string} [hookName] The name of the hook to check for. If\n * omitted, will check for any hook being executed.\n *\n * @return {boolean} Whether the hook is being executed.\n */\n\n/**\n * Returns a function which, when invoked, will return whether a hook is\n * currently being executed.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {DoingHook} Function that returns whether a hook is currently\n * being executed.\n */\nfunction createDoingHook(hooks, storeKey) {\n return function doingHook(hookName) {\n var hooksStore = hooks[storeKey]; // If the hookName was not passed, check for any current hook.\n\n if ('undefined' === typeof hookName) {\n return 'undefined' !== typeof hooksStore.__current[0];\n } // Return the __current hook.\n\n\n return hooksStore.__current[0] ? hookName === hooksStore.__current[0].name : false;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDoingHook);\n//# sourceMappingURL=createDoingHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return whether a hook is\n * currently being executed.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns whether a hook is currently\n * being executed.\n */\nfunction createDoingHook(hooks) {\n /**\n * Returns whether a hook is currently being executed.\n *\n * @param {?string} hookName The name of the hook to check for. If\n * omitted, will check for any hook being executed.\n *\n * @return {boolean} Whether the hook is being executed.\n */\n return function doingHook(hookName) {\n // If the hookName was not passed, check for any current hook.\n if ('undefined' === typeof hookName) {\n return 'undefined' !== typeof hooks.__current[0];\n } // Return the __current hook.\n\n\n return hooks.__current[0] ? hookName === hooks.__current[0].name : false;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createDoingHook);\n//# sourceMappingURL=createDoingHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js": -/*!****************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js ***! - \****************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js": +/*!***************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js ***! + \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * @callback HasHook\n *\n * Returns whether any handlers are attached for the given hookName and optional namespace.\n *\n * @param {string} hookName The name of the hook to check for.\n * @param {string} [namespace] Optional. The unique namespace identifying the callback\n * in the form `vendor/plugin/function`.\n *\n * @return {boolean} Whether there are handlers that are attached to the given hook.\n */\n\n/**\n * Returns a function which, when invoked, will return whether any handlers are\n * attached to a particular hook.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n *\n * @return {HasHook} Function that returns whether any handlers are\n * attached to a particular hook and optional namespace.\n */\nfunction createHasHook(hooks, storeKey) {\n return function hasHook(hookName, namespace) {\n var hooksStore = hooks[storeKey]; // Use the namespace if provided.\n\n if ('undefined' !== typeof namespace) {\n return hookName in hooksStore && hooksStore[hookName].handlers.some(function (hook) {\n return hook.namespace === namespace;\n });\n }\n\n return hookName in hooksStore;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHasHook);\n//# sourceMappingURL=createHasHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Returns a function which, when invoked, will return whether any handlers are\n * attached to a particular hook.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n *\n * @return {Function} Function that returns whether any handlers are\n * attached to a particular hook and optional namespace.\n */\nfunction createHasHook(hooks) {\n /**\n * Returns whether any handlers are attached for the given hookName and optional namespace.\n *\n * @param {string} hookName The name of the hook to check for.\n * @param {?string} namespace Optional. The unique namespace identifying the callback\n * in the form `vendor/plugin/function`.\n *\n * @return {boolean} Whether there are handlers that are attached to the given hook.\n */\n return function hasHook(hookName, namespace) {\n // Use the namespace if provided.\n if ('undefined' !== typeof namespace) {\n return hookName in hooks && hooks[hookName].handlers.some(function (hook) {\n return hook.namespace === namespace;\n });\n }\n\n return hookName in hooks;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHasHook);\n//# sourceMappingURL=createHasHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js": -/*!**************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js ***! - \**************************************************************************************************************/ -/*! exports provided: _Hooks, default */ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js": +/*!*************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js ***! + \*************************************************************************************************************/ +/*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Hooks\", function() { return _Hooks; });\n/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js\");\n/* harmony import */ var _createAddHook__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./createAddHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createAddHook.js\");\n/* harmony import */ var _createRemoveHook__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./createRemoveHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js\");\n/* harmony import */ var _createHasHook__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./createHasHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHasHook.js\");\n/* harmony import */ var _createRunHook__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./createRunHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js\");\n/* harmony import */ var _createCurrentHook__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./createCurrentHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createCurrentHook.js\");\n/* harmony import */ var _createDoingHook__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./createDoingHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDoingHook.js\");\n/* harmony import */ var _createDidHook__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./createDidHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createDidHook.js\");\n\n\n/**\n * Internal dependencies\n */\n\n\n\n\n\n\n\n/**\n * Internal class for constructing hooks. Use `createHooks()` function\n *\n * Note, it is necessary to expose this class to make its type public.\n *\n * @private\n */\n\nvar _Hooks = function _Hooks() {\n Object(_babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(this, _Hooks);\n\n /** @type {import('.').Store} actions */\n this.actions = Object.create(null);\n this.actions.__current = [];\n /** @type {import('.').Store} filters */\n\n this.filters = Object.create(null);\n this.filters.__current = [];\n this.addAction = Object(_createAddHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(this, 'actions');\n this.addFilter = Object(_createAddHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(this, 'filters');\n this.removeAction = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'actions');\n this.removeFilter = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'filters');\n this.hasAction = Object(_createHasHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(this, 'actions');\n this.hasFilter = Object(_createHasHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(this, 'filters');\n this.removeAllActions = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'actions', true);\n this.removeAllFilters = Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this, 'filters', true);\n this.doAction = Object(_createRunHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this, 'actions');\n this.applyFilters = Object(_createRunHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this, 'filters', true);\n this.currentAction = Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(this, 'actions');\n this.currentFilter = Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(this, 'filters');\n this.doingAction = Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(this, 'actions');\n this.doingFilter = Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(this, 'filters');\n this.didAction = Object(_createDidHook__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(this, 'actions');\n this.didFilter = Object(_createDidHook__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(this, 'filters');\n};\n/** @typedef {_Hooks} Hooks */\n\n/**\n * Returns an instance of the hooks object.\n *\n * @return {Hooks} A Hooks instance.\n */\n\nfunction createHooks() {\n return new _Hooks();\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHooks);\n//# sourceMappingURL=createHooks.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _createAddHook__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createAddHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createAddHook.js\");\n/* harmony import */ var _createRemoveHook__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./createRemoveHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js\");\n/* harmony import */ var _createHasHook__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./createHasHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHasHook.js\");\n/* harmony import */ var _createRunHook__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./createRunHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js\");\n/* harmony import */ var _createCurrentHook__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./createCurrentHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createCurrentHook.js\");\n/* harmony import */ var _createDoingHook__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./createDoingHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDoingHook.js\");\n/* harmony import */ var _createDidHook__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./createDidHook */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createDidHook.js\");\n/**\n * Internal dependencies\n */\n\n\n\n\n\n\n\n/**\n * Returns an instance of the hooks object.\n *\n * @return {Object} Object that contains all hooks.\n */\n\nfunction createHooks() {\n var actions = Object.create(null);\n var filters = Object.create(null);\n actions.__current = [];\n filters.__current = [];\n return {\n addAction: Object(_createAddHook__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(actions),\n addFilter: Object(_createAddHook__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(filters),\n removeAction: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(actions),\n removeFilter: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(filters),\n hasAction: Object(_createHasHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(actions),\n hasFilter: Object(_createHasHook__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(filters),\n removeAllActions: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(actions, true),\n removeAllFilters: Object(_createRemoveHook__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(filters, true),\n doAction: Object(_createRunHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(actions),\n applyFilters: Object(_createRunHook__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(filters, true),\n currentAction: Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(actions),\n currentFilter: Object(_createCurrentHook__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(filters),\n doingAction: Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(actions),\n doingFilter: Object(_createDoingHook__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(filters),\n didAction: Object(_createDidHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(actions),\n didFilter: Object(_createDidHook__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(filters),\n actions: actions,\n filters: filters\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createHooks);\n//# sourceMappingURL=createHooks.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js": -/*!*******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js ***! - \*******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js": +/*!******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js ***! + \******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/**\n * Internal dependencies\n */\n\n\n/**\n * @callback RemoveHook\n * Removes the specified callback (or all callbacks) from the hook with a given hookName\n * and namespace.\n *\n * @param {string} hookName The name of the hook to modify.\n * @param {string} namespace The unique namespace identifying the callback in the\n * form `vendor/plugin/function`.\n *\n * @return {number | undefined} The number of callbacks removed.\n */\n\n/**\n * Returns a function which, when invoked, will remove a specified hook or all\n * hooks by the given name.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n * @param {boolean} [removeAll=false] Whether to remove all callbacks for a hookName,\n * without regard to namespace. Used to create\n * `removeAll*` functions.\n *\n * @return {RemoveHook} Function that removes hooks.\n */\n\nfunction createRemoveHook(hooks, storeKey) {\n var removeAll = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n return function removeHook(hookName, namespace) {\n var hooksStore = hooks[storeKey];\n\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!removeAll && !Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n } // Bail if no hooks exist by this name\n\n\n if (!hooksStore[hookName]) {\n return 0;\n }\n\n var handlersRemoved = 0;\n\n if (removeAll) {\n handlersRemoved = hooksStore[hookName].handlers.length;\n hooksStore[hookName] = {\n runs: hooksStore[hookName].runs,\n handlers: []\n };\n } else {\n // Try to find the specified callback to remove.\n var handlers = hooksStore[hookName].handlers;\n\n var _loop = function _loop(i) {\n if (handlers[i].namespace === namespace) {\n handlers.splice(i, 1);\n handlersRemoved++; // This callback may also be part of a hook that is\n // currently executing. If the callback we're removing\n // comes after the current callback, there's no problem;\n // otherwise we need to decrease the execution index of any\n // other runs by 1 to account for the removed element.\n\n hooksStore.__current.forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex--;\n }\n });\n }\n };\n\n for (var i = handlers.length - 1; i >= 0; i--) {\n _loop(i);\n }\n }\n\n if (hookName !== 'hookRemoved') {\n hooks.doAction('hookRemoved', hookName, namespace);\n }\n\n return handlersRemoved;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRemoveHook);\n//# sourceMappingURL=createRemoveHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRemoveHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validateNamespace.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js\");\n/* harmony import */ var _validateHookName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validateHookName.js */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js\");\n/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\n/**\n * Internal dependencies\n */\n\n\n\n/**\n * Returns a function which, when invoked, will remove a specified hook or all\n * hooks by the given name.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n * @param {boolean} removeAll Whether to remove all callbacks for a hookName, without regard to namespace. Used to create `removeAll*` functions.\n *\n * @return {Function} Function that removes hooks.\n */\n\nfunction createRemoveHook(hooks, removeAll) {\n /**\n * Removes the specified callback (or all callbacks) from the hook with a\n * given hookName and namespace.\n *\n * @param {string} hookName The name of the hook to modify.\n * @param {string} namespace The unique namespace identifying the callback in the form `vendor/plugin/function`.\n *\n * @return {number} The number of callbacks removed.\n */\n return function removeHook(hookName, namespace) {\n if (!Object(_validateHookName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(hookName)) {\n return;\n }\n\n if (!removeAll && !Object(_validateNamespace_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(namespace)) {\n return;\n } // Bail if no hooks exist by this name\n\n\n if (!hooks[hookName]) {\n return 0;\n }\n\n var handlersRemoved = 0;\n\n if (removeAll) {\n handlersRemoved = hooks[hookName].handlers.length;\n hooks[hookName] = {\n runs: hooks[hookName].runs,\n handlers: []\n };\n } else {\n // Try to find the specified callback to remove.\n var handlers = hooks[hookName].handlers;\n\n var _loop = function _loop(i) {\n if (handlers[i].namespace === namespace) {\n handlers.splice(i, 1);\n handlersRemoved++; // This callback may also be part of a hook that is\n // currently executing. If the callback we're removing\n // comes after the current callback, there's no problem;\n // otherwise we need to decrease the execution index of any\n // other runs by 1 to account for the removed element.\n\n (hooks.__current || []).forEach(function (hookInfo) {\n if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {\n hookInfo.currentIndex--;\n }\n });\n }\n };\n\n for (var i = handlers.length - 1; i >= 0; i--) {\n _loop(i);\n }\n }\n\n if (hookName !== 'hookRemoved') {\n Object(___WEBPACK_IMPORTED_MODULE_2__[\"doAction\"])('hookRemoved', hookName, namespace);\n }\n\n return handlersRemoved;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRemoveHook);\n//# sourceMappingURL=createRemoveHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRemoveHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js": -/*!****************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js ***! - \****************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js": +/*!***************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js ***! + \***************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ \"./node_modules/.pnpm/@babel+runtime@7.24.8/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\");\n\n\n/**\n * Returns a function which, when invoked, will execute all callbacks\n * registered to a hook of the specified type, optionally returning the final\n * value of the call chain.\n *\n * @param {import('.').Hooks} hooks Hooks instance.\n * @param {import('.').StoreKey} storeKey\n * @param {boolean} [returnFirstArg=false] Whether each hook callback is expected to\n * return its first argument.\n *\n * @return {(hookName:string, ...args: unknown[]) => unknown} Function that runs hook callbacks.\n */\nfunction createRunHook(hooks, storeKey) {\n var returnFirstArg = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n return function runHooks(hookName) {\n var hooksStore = hooks[storeKey];\n\n if (!hooksStore[hookName]) {\n hooksStore[hookName] = {\n handlers: [],\n runs: 0\n };\n }\n\n hooksStore[hookName].runs++;\n var handlers = hooksStore[hookName].handlers; // The following code is stripped from production builds.\n\n if (true) {\n // Handle any 'all' hooks registered.\n if ('hookAdded' !== hookName && hooksStore.all) {\n handlers.push.apply(handlers, Object(_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hooksStore.all.handlers));\n }\n }\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n if (!handlers || !handlers.length) {\n return returnFirstArg ? args[0] : undefined;\n }\n\n var hookInfo = {\n name: hookName,\n currentIndex: 0\n };\n\n hooksStore.__current.push(hookInfo);\n\n while (hookInfo.currentIndex < handlers.length) {\n var handler = handlers[hookInfo.currentIndex];\n var result = handler.callback.apply(null, args);\n\n if (returnFirstArg) {\n args[0] = result;\n }\n\n hookInfo.currentIndex++;\n }\n\n hooksStore.__current.pop();\n\n if (returnFirstArg) {\n return args[0];\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRunHook);\n//# sourceMappingURL=createRunHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createRunHook.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ \"./node_modules/.pnpm/@babel+runtime@7.24.6/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\");\n\n\n/**\n * Returns a function which, when invoked, will execute all callbacks\n * registered to a hook of the specified type, optionally returning the final\n * value of the call chain.\n *\n * @param {Object} hooks Stored hooks, keyed by hook name.\n * @param {?boolean} returnFirstArg Whether each hook callback is expected to\n * return its first argument.\n *\n * @return {Function} Function that runs hook callbacks.\n */\nfunction createRunHook(hooks, returnFirstArg) {\n /**\n * Runs all callbacks for the specified hook.\n *\n * @param {string} hookName The name of the hook to run.\n * @param {...*} args Arguments to pass to the hook callbacks.\n *\n * @return {*} Return value of runner, if applicable.\n */\n return function runHooks(hookName) {\n if (!hooks[hookName]) {\n hooks[hookName] = {\n handlers: [],\n runs: 0\n };\n }\n\n hooks[hookName].runs++;\n var handlers = hooks[hookName].handlers; // The following code is stripped from production builds.\n\n if (true) {\n // Handle any 'all' hooks registered.\n if ('hookAdded' !== hookName && hooks.all) {\n handlers.push.apply(handlers, Object(_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(hooks.all.handlers));\n }\n }\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n if (!handlers || !handlers.length) {\n return returnFirstArg ? args[0] : undefined;\n }\n\n var hookInfo = {\n name: hookName,\n currentIndex: 0\n };\n\n hooks.__current.push(hookInfo);\n\n while (hookInfo.currentIndex < handlers.length) {\n var handler = handlers[hookInfo.currentIndex];\n var result = handler.callback.apply(null, args);\n\n if (returnFirstArg) {\n args[0] = result;\n }\n\n hookInfo.currentIndex++;\n }\n\n hooks.__current.pop();\n\n if (returnFirstArg) {\n return args[0];\n }\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (createRunHook);\n//# sourceMappingURL=createRunHook.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createRunHook.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js": -/*!********************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js ***! - \********************************************************************************************************/ -/*! exports provided: defaultHooks, createHooks, addAction, addFilter, removeAction, removeFilter, hasAction, hasFilter, removeAllActions, removeAllFilters, doAction, applyFilters, currentAction, currentFilter, doingAction, doingFilter, didAction, didFilter, actions, filters */ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js": +/*!*******************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js ***! + \*******************************************************************************************************/ +/*! exports provided: createHooks, addAction, addFilter, removeAction, removeFilter, hasAction, hasFilter, removeAllActions, removeAllFilters, doAction, applyFilters, currentAction, currentFilter, doingAction, doingFilter, didAction, didFilter, actions, filters */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultHooks\", function() { return defaultHooks; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addAction\", function() { return addAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addFilter\", function() { return addFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAction\", function() { return removeAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeFilter\", function() { return removeFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasAction\", function() { return hasAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasFilter\", function() { return hasFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllActions\", function() { return removeAllActions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllFilters\", function() { return removeAllFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doAction\", function() { return doAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyFilters\", function() { return applyFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentAction\", function() { return currentAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentFilter\", function() { return currentFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingAction\", function() { return doingAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingFilter\", function() { return doingFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didAction\", function() { return didAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didFilter\", function() { return didFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"actions\", function() { return actions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filters\", function() { return filters; });\n/* harmony import */ var _createHooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createHooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/createHooks.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createHooks\", function() { return _createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/**\n * Internal dependencies\n */\n\n/** @typedef {(...args: any[])=>any} Callback */\n\n/**\n * @typedef Handler\n * @property {Callback} callback The callback\n * @property {string} namespace The namespace\n * @property {number} priority The namespace\n */\n\n/**\n * @typedef Hook\n * @property {Handler[]} handlers Array of handlers\n * @property {number} runs Run counter\n */\n\n/**\n * @typedef Current\n * @property {string} name Hook name\n * @property {number} currentIndex The index\n */\n\n/**\n * @typedef {Record & {__current: Current[]}} Store\n */\n\n/**\n * @typedef {'actions' | 'filters'} StoreKey\n */\n\n/**\n * @typedef {import('./createHooks').Hooks} Hooks\n */\n\nvar defaultHooks = Object(_createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\nvar addAction = defaultHooks.addAction,\n addFilter = defaultHooks.addFilter,\n removeAction = defaultHooks.removeAction,\n removeFilter = defaultHooks.removeFilter,\n hasAction = defaultHooks.hasAction,\n hasFilter = defaultHooks.hasFilter,\n removeAllActions = defaultHooks.removeAllActions,\n removeAllFilters = defaultHooks.removeAllFilters,\n doAction = defaultHooks.doAction,\n applyFilters = defaultHooks.applyFilters,\n currentAction = defaultHooks.currentAction,\n currentFilter = defaultHooks.currentFilter,\n doingAction = defaultHooks.doingAction,\n doingFilter = defaultHooks.doingFilter,\n didAction = defaultHooks.didAction,\n didFilter = defaultHooks.didFilter,\n actions = defaultHooks.actions,\n filters = defaultHooks.filters;\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addAction\", function() { return addAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addFilter\", function() { return addFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAction\", function() { return removeAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeFilter\", function() { return removeFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasAction\", function() { return hasAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasFilter\", function() { return hasFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllActions\", function() { return removeAllActions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeAllFilters\", function() { return removeAllFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doAction\", function() { return doAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyFilters\", function() { return applyFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentAction\", function() { return currentAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"currentFilter\", function() { return currentFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingAction\", function() { return doingAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doingFilter\", function() { return doingFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didAction\", function() { return didAction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"didFilter\", function() { return didFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"actions\", function() { return actions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filters\", function() { return filters; });\n/* harmony import */ var _createHooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createHooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/createHooks.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createHooks\", function() { return _createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/**\n * Internal dependencies\n */\n\n\nvar _createHooks = Object(_createHooks__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(),\n addAction = _createHooks.addAction,\n addFilter = _createHooks.addFilter,\n removeAction = _createHooks.removeAction,\n removeFilter = _createHooks.removeFilter,\n hasAction = _createHooks.hasAction,\n hasFilter = _createHooks.hasFilter,\n removeAllActions = _createHooks.removeAllActions,\n removeAllFilters = _createHooks.removeAllFilters,\n doAction = _createHooks.doAction,\n applyFilters = _createHooks.applyFilters,\n currentAction = _createHooks.currentAction,\n currentFilter = _createHooks.currentFilter,\n doingAction = _createHooks.doingAction,\n doingFilter = _createHooks.doingFilter,\n didAction = _createHooks.didAction,\n didFilter = _createHooks.didFilter,\n actions = _createHooks.actions,\n filters = _createHooks.filters;\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js": -/*!*******************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js ***! - \*******************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js": +/*!******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js ***! + \******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a hookName string.\n *\n * @param {string} hookName The hook name to validate. Should be a non empty string containing\n * only numbers, letters, dashes, periods and underscores. Also,\n * the hook name cannot begin with `__`.\n *\n * @return {boolean} Whether the hook name is valid.\n */\nfunction validateHookName(hookName) {\n if ('string' !== typeof hookName || '' === hookName) {\n // eslint-disable-next-line no-console\n console.error('The hook name must be a non-empty string.');\n return false;\n }\n\n if (/^__/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name cannot begin with `__`.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateHookName);\n//# sourceMappingURL=validateHookName.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateHookName.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a hookName string.\n *\n * @param {string} hookName The hook name to validate. Should be a non empty string containing\n * only numbers, letters, dashes, periods and underscores. Also,\n * the hook name cannot begin with `__`.\n *\n * @return {boolean} Whether the hook name is valid.\n */\nfunction validateHookName(hookName) {\n if ('string' !== typeof hookName || '' === hookName) {\n // eslint-disable-next-line no-console\n console.error('The hook name must be a non-empty string.');\n return false;\n }\n\n if (/^__/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name cannot begin with `__`.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(hookName)) {\n // eslint-disable-next-line no-console\n console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateHookName);\n//# sourceMappingURL=validateHookName.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateHookName.js?"); /***/ }), -/***/ "./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js": -/*!********************************************************************************************************************!*\ - !*** ./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js ***! - \********************************************************************************************************************/ +/***/ "./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js": +/*!*******************************************************************************************************************!*\ + !*** ./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js ***! + \*******************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace string.\n *\n * @param {string} namespace The namespace to validate - should take the form\n * `vendor/plugin/function`.\n *\n * @return {boolean} Whether the namespace is valid.\n */\nfunction validateNamespace(namespace) {\n if ('string' !== typeof namespace || '' === namespace) {\n // eslint-disable-next-line no-console\n console.error('The namespace must be a non-empty string.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.\\-\\/]*$/.test(namespace)) {\n // eslint-disable-next-line no-console\n console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateNamespace);\n//# sourceMappingURL=validateNamespace.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/validateNamespace.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace string.\n *\n * @param {string} namespace The namespace to validate - should take the form\n * `vendor/plugin/function`.\n *\n * @return {boolean} Whether the namespace is valid.\n */\nfunction validateNamespace(namespace) {\n if ('string' !== typeof namespace || '' === namespace) {\n // eslint-disable-next-line no-console\n console.error('The namespace must be a non-empty string.');\n return false;\n }\n\n if (!/^[a-zA-Z][a-zA-Z0-9_.\\-\\/]*$/.test(namespace)) {\n // eslint-disable-next-line no-console\n console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.');\n return false;\n }\n\n return true;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validateNamespace);\n//# sourceMappingURL=validateNamespace.js.map\n\n//# sourceURL=webpack:///./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/validateNamespace.js?"); /***/ }), @@ -310,7 +298,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.12.3/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.eael = window.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\neael.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n eael.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n eael.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n eael.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n eael.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n eael.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n eael.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\neael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\neael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.eael.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n eael.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (eael.isEditMode) {\n eael.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n eael.getToken = function () {\n if (localize.nonce && !eael.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n eael.noncegenerated = true;\n }\n }\n });\n }\n };\n eael.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tabs.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/.pnpm/@wordpress+hooks@2.6.0/node_modules/@wordpress/hooks/build-module/index.js\");\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\n\nwindow.isEditMode = false;\nwindow.eael = window.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\neael.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n eael.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n eael.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n eael.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n eael.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n eael.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n eael.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\nvar ea_swiper_slider_init_inside_template = function ea_swiper_slider_init_inside_template(content) {\n window.dispatchEvent(new Event('resize'));\n content = _typeof(content) === 'object' ? content : jQuery(content);\n content.find('.swiper-wrapper').each(function () {\n var transform = jQuery(this).css('transform');\n jQuery(this).css('transform', transform);\n });\n};\neael.hooks.addAction(\"ea-advanced-tabs-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\neael.hooks.addAction(\"ea-advanced-accordion-triggered\", \"ea\", ea_swiper_slider_init_inside_template);\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.eael.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n eael.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (eael.isEditMode) {\n eael.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n eael.getToken = function () {\n if (localize.nonce && !eael.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n eael.noncegenerated = true;\n }\n }\n });\n }\n };\n eael.sanitizeURL = function (url) {\n if (url.startsWith('/') || url.startsWith('#')) {\n return url;\n }\n try {\n var urlObject = new URL(url);\n\n // Check if the protocol is valid (allowing only 'http' and 'https')\n if (!['http:', 'https:', 'ftp:', 'ftps:', 'mailto:', 'news:', 'irc:', 'irc6:', 'ircs:', 'gopher:', 'nntp:', 'feed:', 'telnet:', 'mms:', 'rtsp:', 'sms:', 'svn:', 'tel:', 'fax:', 'xmpp:', 'webcal:', 'urn:'].includes(urlObject.protocol)) {\n throw new Error('Invalid protocol');\n }\n\n // If all checks pass, return the sanitized URL\n return urlObject.toString();\n } catch (error) {\n console.error('Error sanitizing URL:', error.message);\n return '#';\n }\n };\n\n //Add hashchange code form advanced-accordion\n var isTriggerOnHashchange = true;\n window.addEventListener('hashchange', function () {\n if (!isTriggerOnHashchange) {\n return;\n }\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n if (hashTag !== 'undefined' && hashTag) {\n jQuery('#' + hashTag).trigger('click');\n }\n });\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n if (isStartWithHash) {\n isTriggerOnHashchange = false;\n setTimeout(function () {\n isTriggerOnHashchange = true;\n }, 100);\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (hashURL.startsWith('#!')) {\n var replace_with_hash = hashURL.replace('#!', '#');\n $(replace_with_hash).trigger('click');\n } else {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n if (typeof hashURL !== 'undefined' && hashURL) {\n var tabs = $(hashURL).closest('.eael-advance-tabs');\n if (tabs.length > 0) {\n var idOffset = tabs.data('custom-id-offset');\n idOffset = idOffset ? parseFloat(idOffset) : 0;\n $('html, body').animate({\n scrollTop: $(hashURL).offset().top - idOffset\n }, 300);\n }\n }\n }\n }\n } catch (err) {\n // nothing to do\n }\n });\n $(document).on('click', '.e-n-tab-title', function () {\n setTimeout(function () {\n window.dispatchEvent(new Event('resize'));\n }, 100);\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n(function ($) {\n $.fn.isInViewport = function () {\n if ($(this).length < 1) return false;\n var elementTop = $(this).offset().top;\n var elementBottom = elementTop + $(this).outerHeight() / 2;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() / 2;\n return elementBottom > viewportTop && elementTop < viewportHalf;\n };\n $(document).ready(function () {\n var resetPasswordParams = new URLSearchParams(location.search);\n if (resetPasswordParams.has('popup-selector') && (resetPasswordParams.has('eael-lostpassword') || resetPasswordParams.has('eael-resetpassword'))) {\n var popupSelector = resetPasswordParams.get('popup-selector');\n if (popupSelector.length) {\n popupSelector = popupSelector.replace(/_/g, \" \");\n setTimeout(function () {\n jQuery(popupSelector).trigger('click');\n }, 300);\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?"); /***/ }) diff --git a/assets/front-end/js/view/general.min.js b/assets/front-end/js/view/general.min.js index 6f61a47d3..29ff76f05 100644 --- a/assets/front-end/js/view/general.min.js +++ b/assets/front-end/js/view/general.min.js @@ -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=101)}({101:function(e,t,r){"use strict";r.r(t);var n=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e,t){return function(r,i,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(r)&&n(i))if("function"==typeof a)if("number"==typeof s){var c={callback:a,priority:s,namespace:i};if(l[r]){var u,d=l[r].handlers;for(u=d.length;u>0&&!(s>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===r&&e.currentIndex>=u&&e.currentIndex++}))}else l[r]={handlers:[c],runs:0};"hookAdded"!==r&&e.doAction("hookAdded",r,i,a,s)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,a){var s=e[t];if(o(i)&&(r||n(a))){if(!s[i])return 0;var l=0;if(r)l=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else for(var c=s[i].handlers,u=function(e){c[e].namespace===a&&(c.splice(e,1),l++,s.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,a),l}}};var s=function(e,t){return function(r,n){var o=e[t];return void 0!==n?r in o&&o[r].handlers.some((function(e){return e.namespace===n})):r in o}};var l=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(n){var o=e[t];o[n]||(o[n]={handlers:[],runs:0}),o[n].runs++;var i=o[n].handlers;for(var a=arguments.length,s=new Array(a>1?a-1:0),l=1;l0){var s=a.data("custom-id-offset");s=s?parseFloat(s):0,e("html, body").animate({scrollTop:e(o).offset().top-s},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t3&&void 0!==arguments[3]?arguments[3]:10;if(o(t)&&n(r))if("function"==typeof i)if("number"==typeof a){var l={callback:i,priority:a,namespace:r};if(e[t]){var c,s=e[t].handlers;for(c=s.length;c>0&&!(a>=s[c-1].priority);c--);c===s.length?s[c]=l:s.splice(c,0,l),(e.__current||[]).forEach((function(e){e.name===t&&e.currentIndex>=c&&e.currentIndex++}))}else e[t]={handlers:[l],runs:0};"hookAdded"!==t&&h("hookAdded",t,r,i,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){return function(r,i){if(o(r)&&(t||n(i))){if(!e[r])return 0;var a=0;if(t)a=e[r].handlers.length,e[r]={runs:e[r].runs,handlers:[]};else for(var l=e[r].handlers,c=function(t){l[t].namespace===i&&(l.splice(t,1),a++,(e.__current||[]).forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},s=l.length-1;s>=0;s--)c(s);return"hookRemoved"!==r&&h("hookRemoved",r,i),a}}};var l=function(e){return function(t,r){return void 0!==r?t in e&&e[t].handlers.some((function(e){return e.namespace===r})):t in e}};var c=function(e,t){return function(r){e[r]||(e[r]={handlers:[],runs:0}),e[r].runs++;var n=e[r].handlers;for(var o=arguments.length,i=new Array(o>1?o-1:0),a=1;a0){var l=a.data("custom-id-offset");l=l?parseFloat(l):0,e("html, body").animate({scrollTop:e(o).offset().top-l},300)}}}catch(e){}})),e(document).on("click",".e-n-tab-title",(function(){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),100)}))}(jQuery),(b=jQuery)(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(e){var t=b(this),r=t.closest(".quantity").find(".qty"),n=parseFloat(r.val()),o=parseFloat(r.attr("max")),i=parseFloat(r.attr("min")),a=r.attr("step");n&&""!==n&&"NaN"!==n||(n=0),""!==o&&"NaN"!==o||(o=""),""!==i&&"NaN"!==i||(i=0),"any"!==a&&""!==a&&void 0!==a&&"NaN"!==parseFloat(a)||(a=1),t.hasClass("nm-qty-plus")?o&&(o==n||n>o)?r.val(o):r.val(n+parseFloat(a)):i&&(i==n||n0&&r.val(n-parseFloat(a))})),function(e){e.fn.isInViewport=function(){if(e(this).length<1)return!1;var t=e(this).offset().top,r=t+e(this).outerHeight()/2,n=e(window).scrollTop(),o=n+e(window).height()/2;return r>n&&t .elementor-widget-container\") : \"body .eael_hover_effect[data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\"),\n $hoverSelector = $(hoverSelector);\n\n //Opacity\n var $opacityVal = $Opacity ? (_$Opacity = $Opacity) === null || _$Opacity === void 0 ? void 0 : _$Opacity.opacity : '1';\n\n //Offset\n var $offsetX = (_$eaelOffsetTop = $eaelOffsetTop) !== null && _$eaelOffsetTop !== void 0 && _$eaelOffsetTop.size ? \"translateX(\".concat($eaelOffsetTop.size).concat($eaelOffsetTop.unit, \")\") : 'translateX(0)';\n var $offsetY = (_$eaelOffsetLeft = $eaelOffsetLeft) !== null && _$eaelOffsetLeft !== void 0 && _$eaelOffsetLeft.size ? \"translateY(\".concat($eaelOffsetLeft.size).concat($eaelOffsetLeft.unit, \")\") : 'translateY(0)';\n\n //Offset Hover\n var $offsetHoverX = (_$eaelOffsetHoverTop = $eaelOffsetHoverTop) !== null && _$eaelOffsetHoverTop !== void 0 && _$eaelOffsetHoverTop.size ? \"translateX(\".concat($eaelOffsetHoverTop.size).concat($eaelOffsetHoverTop.unit, \")\") : 'translateX(0)';\n var $offsetHoverY = (_$eaelOffsetHoverLeft = $eaelOffsetHoverLeft) !== null && _$eaelOffsetHoverLeft !== void 0 && _$eaelOffsetHoverLeft.size ? \"translateY(\".concat($eaelOffsetHoverLeft.size).concat($eaelOffsetHoverLeft.unit, \")\") : 'translateY(0)';\n\n //Transitions\n var $eaelDurationVal = $eaelDuration ? (_$eaelDuration = $eaelDuration) === null || _$eaelDuration === void 0 ? void 0 : _$eaelDuration.transitionDuration : '0';\n var $eaelDelayVal = $eaelDelay ? (_$eaelDelay = $eaelDelay) === null || _$eaelDelay === void 0 ? void 0 : _$eaelDelay.transitionDelay : '0';\n var $eaelEasingVal = $eaelEasing ? (_$eaelEasing = $eaelEasing) === null || _$eaelEasing === void 0 ? void 0 : _$eaelEasing.transitionEasing : '0';\n\n //Transitions Hover\n var $eaelDurationHoverVal = $eaelHoverDuration ? (_$eaelHoverDuration = $eaelHoverDuration) === null || _$eaelHoverDuration === void 0 ? void 0 : _$eaelHoverDuration.transitionDuration : '0';\n var $eaelDelayHoverVal = $eaelHoverDelay ? (_$eaelHoverDelay = $eaelHoverDelay) === null || _$eaelHoverDelay === void 0 ? void 0 : _$eaelHoverDelay.transitionDelay : '0';\n var $eaelEasingHoverVal = $eaelHoverEasing ? (_$eaelHoverEasing = $eaelHoverEasing) === null || _$eaelHoverEasing === void 0 ? void 0 : _$eaelHoverEasing.transitionEasing : '0';\n\n //Filter\n var $blur = (_$eaelBlurEffect = $eaelBlurEffect) !== null && _$eaelBlurEffect !== void 0 && _$eaelBlurEffect.blur ? \"blur(\".concat($eaelBlurEffect.blur, \"px)\") : 'blur(0px)';\n var $contrast = (_$eaelContrastEffect = $eaelContrastEffect) !== null && _$eaelContrastEffect !== void 0 && _$eaelContrastEffect.contrast ? \"contrast(\".concat($eaelContrastEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscale = (_$eaelGrayscaleEffect = $eaelGrayscaleEffect) !== null && _$eaelGrayscaleEffect !== void 0 && _$eaelGrayscaleEffect.grayscale ? \"grayscale(\".concat($eaelGrayscaleEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invert = (_$eaelInvertEffect = $eaelInvertEffect) !== null && _$eaelInvertEffect !== void 0 && _$eaelInvertEffect.invert ? \"invert(\".concat($eaelInvertEffect.invert, \"%)\") : 'invert(0%)';\n var $saturate = (_$eaelSaturateEffect = $eaelSaturateEffect) !== null && _$eaelSaturateEffect !== void 0 && _$eaelSaturateEffect.saturate ? \"saturate(\".concat($eaelSaturateEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepia = (_$eaelSepiaEffect = $eaelSepiaEffect) !== null && _$eaelSepiaEffect !== void 0 && _$eaelSepiaEffect.sepia ? \"sepia(\".concat($eaelSepiaEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Rotate\n var $rotateX = (_$eaelRotateEffect = $eaelRotateEffect) !== null && _$eaelRotateEffect !== void 0 && _$eaelRotateEffect.rotate_x ? \"rotateX(\".concat($eaelRotateEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateY = (_$eaelRotateEffect2 = $eaelRotateEffect) !== null && _$eaelRotateEffect2 !== void 0 && _$eaelRotateEffect2.rotate_y ? \"rotateY(\".concat($eaelRotateEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZ = (_$eaelRotateEffect3 = $eaelRotateEffect) !== null && _$eaelRotateEffect3 !== void 0 && _$eaelRotateEffect3.rotate_z ? \"rotateZ(\".concat($eaelRotateEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleX = (_$eaelScaleEffect = $eaelScaleEffect) !== null && _$eaelScaleEffect !== void 0 && _$eaelScaleEffect.scale_x ? \"scaleX(\".concat($eaelScaleEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleY = (_$eaelScaleEffect2 = $eaelScaleEffect) !== null && _$eaelScaleEffect2 !== void 0 && _$eaelScaleEffect2.scale_y ? \"scaleY(\".concat($eaelScaleEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewX = (_$eaelSkewEffect = $eaelSkewEffect) !== null && _$eaelSkewEffect !== void 0 && _$eaelSkewEffect.skew_x ? \"skewX(\".concat($eaelSkewEffect.skew_x, \"deg)\") : 'skewX(0deg)';\n var $skewY = (_$eaelSkewEffect2 = $eaelSkewEffect) !== null && _$eaelSkewEffect2 !== void 0 && _$eaelSkewEffect2.skew_y ? \"skewY(\".concat($eaelSkewEffect.skew_y, \"deg)\") : 'skewY(0deg)';\n\n //Hover\n var $opacityHoverVal = $opacityHover ? (_$opacityHover = $opacityHover) === null || _$opacityHover === void 0 ? void 0 : _$opacityHover.opacity : '1';\n //Rotate\n var $rotateXHover = (_$eaelRotateHoverEffe = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe !== void 0 && _$eaelRotateHoverEffe.rotate_x ? \"rotateX(\".concat($eaelRotateHoverEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateYHover = (_$eaelRotateHoverEffe2 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe2 !== void 0 && _$eaelRotateHoverEffe2.rotate_y ? \"rotateY(\".concat($eaelRotateHoverEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZHover = (_$eaelRotateHoverEffe3 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe3 !== void 0 && _$eaelRotateHoverEffe3.rotate_z ? \"rotateZ(\".concat($eaelRotateHoverEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleXHover = (_$eaelScaleHoverEffec = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec !== void 0 && _$eaelScaleHoverEffec.scale_x ? \"scaleX(\".concat($eaelScaleHoverEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleYHover = (_$eaelScaleHoverEffec2 = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec2 !== void 0 && _$eaelScaleHoverEffec2.scale_y ? \"scaleY(\".concat($eaelScaleHoverEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewXHover = (_$eaelSkewHoverEffect = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect !== void 0 && _$eaelSkewHoverEffect.skew_x ? \"skewX(\".concat($eaelSkewHoverEffect.skew_x, \"deg)\") : 'skewX(0)';\n var $skewYHover = (_$eaelSkewHoverEffect2 = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect2 !== void 0 && _$eaelSkewHoverEffect2.skew_y ? \"skewY(\".concat($eaelSkewHoverEffect.skew_y, \"deg)\") : 'skewY(0)';\n\n //Filter Hover\n var $blurHover = (_$eaelBurHoverEffect = $eaelBurHoverEffect) !== null && _$eaelBurHoverEffect !== void 0 && _$eaelBurHoverEffect.blur ? \"blur(\".concat($eaelBurHoverEffect.blur, \"px)\") : 'blur(0px)';\n var $contrastHover = (_$eaelContrastHoverEf = $eaelContrastHoverEffect) !== null && _$eaelContrastHoverEf !== void 0 && _$eaelContrastHoverEf.contrast ? \"contrast(\".concat($eaelContrastHoverEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscaleHover = (_$eaelGrayscalHoverEf = $eaelGrayscalHoverEffect) !== null && _$eaelGrayscalHoverEf !== void 0 && _$eaelGrayscalHoverEf.grayscale ? \"grayscale(\".concat($eaelGrayscalHoverEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invertHover = (_$eaelInvertHoverEffe = $eaelInvertHoverEffect) !== null && _$eaelInvertHoverEffe !== void 0 && _$eaelInvertHoverEffe.invert ? \"invert(\".concat($eaelInvertHoverEffect.invert, \"%)\") : 'invert(0%)';\n var $saturateHover = (_$eaelSaturateHoverEf = $eaelSaturateHoverEffect) !== null && _$eaelSaturateHoverEf !== void 0 && _$eaelSaturateHoverEf.saturate ? \"saturate(\".concat($eaelSaturateHoverEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepiaHover = (_$eaelSepiaHoverEffec = $eaelSepiaHoverEffect) !== null && _$eaelSepiaHoverEffec !== void 0 && _$eaelSepiaHoverEffec.sepia ? \"sepia(\".concat($eaelSepiaHoverEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Normal\n var normalStyles = {\n \"transform\": \"\".concat($rotateX, \" \").concat($rotateY, \" \").concat($rotateZ, \" \").concat($scaleX, \" \").concat($scaleY, \" \").concat($skewX, \" \").concat($skewY, \" \").concat($offsetX, \" \").concat($offsetY),\n \"opacity\": $opacityVal,\n \"filter\": \"\".concat($blur, \" \").concat($contrast, \" \").concat($grayscale, \" \").concat($invert, \" \").concat($saturate, \" \").concat($sepia),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingVal,\n \"z-index\": 1\n };\n\n //Hover\n var hoverStyles = {\n 'opacity': $opacityHoverVal,\n 'filter': \"\".concat($blurHover, \" \").concat($contrastHover, \" \").concat($grayscaleHover, \" \").concat($invertHover, \" \").concat($saturateHover, \" \").concat($sepiaHover),\n \"transform\": \"\".concat($rotateXHover, \" \").concat($rotateYHover, \" \").concat($rotateZHover, \" \").concat($scaleXHover, \" \").concat($scaleYHover, \" \").concat($skewXHover, \" \").concat($skewYHover, \" \").concat($offsetHoverX, \" \").concat($offsetHoverY),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationHoverVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayHoverVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingHoverVal,\n \"z-index\": 2\n };\n if (window.isEditMode && $enabledElementList.includes($scopeId) || !window.isEditMode && $hoverSelector.length) {\n $hoverSelector.hover(function () {\n $(this).css(hoverStyles);\n }, function () {\n $(this).css(normalStyles);\n });\n $hoverSelector.css(normalStyles);\n }\n\n //Tilt Effect\n if ($eaelTilt === 'eael_tilt') {\n $(\".elementor-element-\".concat($scopeId)).mousemove(function (e) {\n var cox = (e.pageX - $(this).offset().left - $(this).width() / 2) / 20;\n var coy = ($(this).height() / 2 - (e.pageY - $(this).offset().top)) / 20;\n $(this).find('.elementor-widget-container').css('transform', 'perspective(500px) rotateY(' + cox + 'deg) rotateX(' + coy + 'deg)');\n });\n $(\".elementor-element-\".concat($scopeId)).mouseleave(function (e) {\n $(this).find('.elementor-widget-container').css('transform', 'rotateY(0) rotateX(0)');\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelHoverEffect')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", HoverEffectHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/hover-effect.js?"); +eval("var HoverEffectHandler = function HoverEffectHandler($scope, $) {\n var _$Opacity, _$eaelOffsetTop, _$eaelOffsetLeft, _$eaelOffsetHoverTop, _$eaelOffsetHoverLeft, _$eaelDuration, _$eaelDelay, _$eaelEasing, _$eaelHoverDuration, _$eaelHoverDelay, _$eaelHoverEasing, _$eaelBlurEffect, _$eaelContrastEffect, _$eaelGrayscaleEffect, _$eaelInvertEffect, _$eaelSaturateEffect, _$eaelSepiaEffect, _$eaelRotateEffect, _$eaelRotateEffect2, _$eaelRotateEffect3, _$eaelScaleEffect, _$eaelScaleEffect2, _$eaelSkewEffect, _$eaelSkewEffect2, _$opacityHover, _$eaelRotateHoverEffe, _$eaelRotateHoverEffe2, _$eaelRotateHoverEffe3, _$eaelScaleHoverEffec, _$eaelScaleHoverEffec2, _$eaelSkewHoverEffect, _$eaelSkewHoverEffect2, _$eaelBurHoverEffect, _$eaelContrastHoverEf, _$eaelGrayscalHoverEf, _$eaelInvertHoverEffe, _$eaelSaturateHoverEf, _$eaelSepiaHoverEffec;\n var $eaelRotateEffect = $scope.data('eael_rotate_effect'),\n $eaelScaleEffect = $scope.data('eael_scale_effect'),\n $eaelSkewEffect = $scope.data('eael_skew_effect'),\n $Opacity = $scope.data('eael_opacity'),\n $eaelBlurEffect = $scope.data('eael_blur_effect'),\n $eaelContrastEffect = $scope.data('eael_contrast_effect'),\n $eaelGrayscaleEffect = $scope.data('eael_grayscale_effect'),\n $eaelInvertEffect = $scope.data('eael_invert_effect'),\n $eaelSaturateEffect = $scope.data('eael_saturate_effect'),\n $eaelSepiaEffect = $scope.data('eael_sepia_effect'),\n $scopeId = $scope.data('id'),\n $eaelBurHoverEffect = $scope.data('eael_blur_hover_effect'),\n $eaelContrastHoverEffect = $scope.data('eael_contrast_hover_effect'),\n $eaelGrayscalHoverEffect = $scope.data('eael_grayscal_hover_effect'),\n $eaelInvertHoverEffect = $scope.data('eael_invert_hover_effect'),\n $eaelSaturateHoverEffect = $scope.data('eael_saturate_hover_effect'),\n $eaelSepiaHoverEffect = $scope.data('eael_sepia_hover_effect'),\n $eaelRotateHoverEffect = $scope.data('eael_rotate_hover_effect'),\n $eaelScaleHoverEffect = $scope.data('eael_scale_hover_effect'),\n $eaelSkewHoverEffect = $scope.data('eael_skew_hover_effect'),\n $opacityHover = $scope.data('eael_opacity_hover'),\n $eaelDuration = $scope.data('eael_duration'),\n $eaelDelay = $scope.data('eael_delay'),\n $eaelEasing = $scope.data('eael_easing'),\n $eaelHoverDuration = $scope.data('eael_hover_duration'),\n $eaelHoverDelay = $scope.data('eael_hover_delay'),\n $eaelHoverEasing = $scope.data('eael_hover_easing'),\n $eaelOffsetTop = $scope.data('eael_offset_top'),\n $eaelOffsetLeft = $scope.data('eael_offset_left'),\n $eaelOffsetHoverTop = $scope.data('eael_offset_hover_top'),\n $eaelOffsetHoverLeft = $scope.data('eael_offset_hover_left'),\n $eaelTilt = $scope.data('eaeltilt'),\n $enabledElementList = [];\n\n /**\n * For editor page\n */\n if (window.isEditMode) {\n if (window.isRunFirstTime === undefined && window.isEditMode || 1) {\n var getHoverEffectSettingsVal = function getHoverEffectSettingsVal($el) {\n $.each($el, function (i, el) {\n // console.log(el.attributes.settings.attributes);\n var $getSettings = el.attributes.settings.attributes;\n if (el.attributes.elType === 'widget') {\n if ($getSettings['eael_hover_effect_switch'] === 'yes') {\n $enabledElementList.push(el.attributes.id);\n if ($getSettings['eael_hover_effect_enable_live_changes'] === 'yes') {\n eaelEditModeSettings[el.attributes.id] = el.attributes.settings.attributes;\n }\n }\n }\n if (el.attributes.elType === 'container') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n if (el.attributes.elType === 'section') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n if (el.attributes.elType === 'column') {\n getHoverEffectSettingsVal(el.attributes.elements.models);\n }\n });\n };\n window.isRunFirstTime = true;\n var eaelEditModeSettings = [];\n getHoverEffectSettingsVal(window.elementor.elements.models);\n }\n for (var key in eaelEditModeSettings) {\n if ($scopeId === key) {\n var _eaelEditModeSettings, _eaelEditModeSettings2, _eaelEditModeSettings5, _eaelEditModeSettings8, _eaelEditModeSettings27, _eaelEditModeSettings46, _eaelEditModeSettings55, _eaelEditModeSettings64, _eaelEditModeSettings82, _eaelEditModeSettings100, _eaelEditModeSettings101, _eaelEditModeSettings102, _eaelEditModeSettings103, _eaelEditModeSettings104, _eaelEditModeSettings105, _eaelEditModeSettings106, _eaelEditModeSettings107, _eaelEditModeSettings108, _eaelEditModeSettings109;\n //Tilt\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings = eaelEditModeSettings[key]) === null || _eaelEditModeSettings === void 0 ? void 0 : _eaelEditModeSettings['eael_hover_effect_hover_tilt']) === 'yes') {\n $eaelTilt = 'eael_tilt';\n }\n\n //Opacity\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings2 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings2 === void 0 ? void 0 : _eaelEditModeSettings2['eael_hover_effect_opacity_popover']) === 'yes') {\n var _eaelEditModeSettings3, _eaelEditModeSettings4;\n $Opacity = {\n 'opacity': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings3 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings3 === void 0 ? void 0 : (_eaelEditModeSettings4 = _eaelEditModeSettings3['eael_hover_effect_opacity']) === null || _eaelEditModeSettings4 === void 0 ? void 0 : _eaelEditModeSettings4['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings5 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings5 === void 0 ? void 0 : _eaelEditModeSettings5['eael_hover_effect_opacity_popover_hover']) === 'yes') {\n var _eaelEditModeSettings6, _eaelEditModeSettings7;\n $opacityHover = {\n 'opacity': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings6 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings6 === void 0 ? void 0 : (_eaelEditModeSettings7 = _eaelEditModeSettings6['eael_hover_effect_opacity_hover']) === null || _eaelEditModeSettings7 === void 0 ? void 0 : _eaelEditModeSettings7['size']\n };\n }\n //Filter\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings8 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings8 === void 0 ? void 0 : _eaelEditModeSettings8['eael_hover_effect_filter_popover'])) {\n var _eaelEditModeSettings9, _eaelEditModeSettings12, _eaelEditModeSettings15, _eaelEditModeSettings18, _eaelEditModeSettings21, _eaelEditModeSettings24;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings9 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings9 === void 0 ? void 0 : _eaelEditModeSettings9['eael_hover_effect_blur_is_on']) === 'yes') {\n var _eaelEditModeSettings10, _eaelEditModeSettings11;\n $eaelBlurEffect = {\n 'blur': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings10 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings10 === void 0 ? void 0 : (_eaelEditModeSettings11 = _eaelEditModeSettings10['eael_hover_effect_blur']) === null || _eaelEditModeSettings11 === void 0 ? void 0 : _eaelEditModeSettings11['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings12 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings12 === void 0 ? void 0 : _eaelEditModeSettings12['eael_hover_effect_contrast_is_on']) === 'yes') {\n var _eaelEditModeSettings13, _eaelEditModeSettings14;\n $eaelContrastEffect = {\n 'contrast': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings13 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings13 === void 0 ? void 0 : (_eaelEditModeSettings14 = _eaelEditModeSettings13['eael_hover_effect_contrast']) === null || _eaelEditModeSettings14 === void 0 ? void 0 : _eaelEditModeSettings14['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings15 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings15 === void 0 ? void 0 : _eaelEditModeSettings15['eael_hover_effect_grayscale_is_on']) === 'yes') {\n var _eaelEditModeSettings16, _eaelEditModeSettings17;\n $eaelGrayscaleEffect = {\n 'grayscale': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings16 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings16 === void 0 ? void 0 : (_eaelEditModeSettings17 = _eaelEditModeSettings16['eael_hover_effect_grayscal']) === null || _eaelEditModeSettings17 === void 0 ? void 0 : _eaelEditModeSettings17['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings18 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings18 === void 0 ? void 0 : _eaelEditModeSettings18['eael_hover_effect_invert_is_on']) === 'yes') {\n var _eaelEditModeSettings19, _eaelEditModeSettings20;\n $eaelInvertEffect = {\n 'invert': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings19 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings19 === void 0 ? void 0 : (_eaelEditModeSettings20 = _eaelEditModeSettings19['eael_hover_effect_invert']) === null || _eaelEditModeSettings20 === void 0 ? void 0 : _eaelEditModeSettings20['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings21 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings21 === void 0 ? void 0 : _eaelEditModeSettings21['eael_hover_effect_saturate_is_on']) === 'yes') {\n var _eaelEditModeSettings22, _eaelEditModeSettings23;\n $eaelSaturateEffect = {\n 'saturate': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings22 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings22 === void 0 ? void 0 : (_eaelEditModeSettings23 = _eaelEditModeSettings22['eael_hover_effect_saturate']) === null || _eaelEditModeSettings23 === void 0 ? void 0 : _eaelEditModeSettings23['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings24 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings24 === void 0 ? void 0 : _eaelEditModeSettings24['eael_hover_effect_sepia_is_on']) === 'yes') {\n var _eaelEditModeSettings25, _eaelEditModeSettings26;\n $eaelSepiaEffect = {\n 'sepia': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings25 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings25 === void 0 ? void 0 : (_eaelEditModeSettings26 = _eaelEditModeSettings25['eael_hover_effect_sepia']) === null || _eaelEditModeSettings26 === void 0 ? void 0 : _eaelEditModeSettings26['size']\n };\n }\n }\n\n //Filter Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings27 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings27 === void 0 ? void 0 : _eaelEditModeSettings27['eael_hover_effect_filter_hover_popover'])) {\n var _eaelEditModeSettings28, _eaelEditModeSettings31, _eaelEditModeSettings34, _eaelEditModeSettings37, _eaelEditModeSettings40, _eaelEditModeSettings43;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings28 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings28 === void 0 ? void 0 : _eaelEditModeSettings28['eael_hover_effect_blur_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings29, _eaelEditModeSettings30;\n $eaelBurHoverEffect = {\n 'blur': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings29 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings29 === void 0 ? void 0 : (_eaelEditModeSettings30 = _eaelEditModeSettings29['eael_hover_effect_blur_hover']) === null || _eaelEditModeSettings30 === void 0 ? void 0 : _eaelEditModeSettings30['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings31 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings31 === void 0 ? void 0 : _eaelEditModeSettings31['eael_hover_effect_contrast_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings32, _eaelEditModeSettings33;\n $eaelContrastHoverEffect = {\n 'contrast': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings32 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings32 === void 0 ? void 0 : (_eaelEditModeSettings33 = _eaelEditModeSettings32['eael_hover_effect_contrast_hover']) === null || _eaelEditModeSettings33 === void 0 ? void 0 : _eaelEditModeSettings33['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings34 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings34 === void 0 ? void 0 : _eaelEditModeSettings34['eael_hover_effect_grayscale_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings35, _eaelEditModeSettings36;\n $eaelGrayscalHoverEffect = {\n 'grayscale': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings35 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings35 === void 0 ? void 0 : (_eaelEditModeSettings36 = _eaelEditModeSettings35['eael_hover_effect_grayscal_hover']) === null || _eaelEditModeSettings36 === void 0 ? void 0 : _eaelEditModeSettings36['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings37 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings37 === void 0 ? void 0 : _eaelEditModeSettings37['eael_hover_effect_invert_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings38, _eaelEditModeSettings39;\n $eaelInvertHoverEffect = {\n 'invert': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings38 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings38 === void 0 ? void 0 : (_eaelEditModeSettings39 = _eaelEditModeSettings38['eael_hover_effect_invert_hover']) === null || _eaelEditModeSettings39 === void 0 ? void 0 : _eaelEditModeSettings39['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings40 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings40 === void 0 ? void 0 : _eaelEditModeSettings40['eael_hover_effect_saturate_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings41, _eaelEditModeSettings42;\n $eaelSaturateHoverEffect = {\n 'saturate': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings41 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings41 === void 0 ? void 0 : (_eaelEditModeSettings42 = _eaelEditModeSettings41['eael_hover_effect_saturate_hover']) === null || _eaelEditModeSettings42 === void 0 ? void 0 : _eaelEditModeSettings42['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings43 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings43 === void 0 ? void 0 : _eaelEditModeSettings43['eael_hover_effect_sepia_is_on']) === 'yes') {\n var _eaelEditModeSettings44, _eaelEditModeSettings45;\n $eaelSepiaHoverEffect = {\n 'sepia': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings44 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings44 === void 0 ? void 0 : (_eaelEditModeSettings45 = _eaelEditModeSettings44['eael_hover_effect_sepia_hover']) === null || _eaelEditModeSettings45 === void 0 ? void 0 : _eaelEditModeSettings45['size']\n };\n }\n }\n\n //Offset\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings46 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings46 === void 0 ? void 0 : _eaelEditModeSettings46['eael_hover_effect_offset_popover'])) {\n var _eaelEditModeSettings47, _eaelEditModeSettings48, _eaelEditModeSettings49, _eaelEditModeSettings50, _eaelEditModeSettings51, _eaelEditModeSettings52, _eaelEditModeSettings53, _eaelEditModeSettings54;\n $eaelOffsetTop = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings47 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings47 === void 0 ? void 0 : (_eaelEditModeSettings48 = _eaelEditModeSettings47['eael_hover_effect_offset_top']) === null || _eaelEditModeSettings48 === void 0 ? void 0 : _eaelEditModeSettings48['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings49 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings49 === void 0 ? void 0 : (_eaelEditModeSettings50 = _eaelEditModeSettings49['eael_hover_effect_offset_top']) === null || _eaelEditModeSettings50 === void 0 ? void 0 : _eaelEditModeSettings50['unit']\n };\n $eaelOffsetLeft = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings51 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings51 === void 0 ? void 0 : (_eaelEditModeSettings52 = _eaelEditModeSettings51['eael_hover_effect_offset_left']) === null || _eaelEditModeSettings52 === void 0 ? void 0 : _eaelEditModeSettings52['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings53 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings53 === void 0 ? void 0 : (_eaelEditModeSettings54 = _eaelEditModeSettings53['eael_hover_effect_offset_left']) === null || _eaelEditModeSettings54 === void 0 ? void 0 : _eaelEditModeSettings54['unit']\n };\n }\n\n //Offset Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings55 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings55 === void 0 ? void 0 : _eaelEditModeSettings55['eael_hover_effect_offset_hover_popover'])) {\n var _eaelEditModeSettings56, _eaelEditModeSettings57, _eaelEditModeSettings58, _eaelEditModeSettings59, _eaelEditModeSettings60, _eaelEditModeSettings61, _eaelEditModeSettings62, _eaelEditModeSettings63;\n $eaelOffsetHoverTop = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings56 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings56 === void 0 ? void 0 : (_eaelEditModeSettings57 = _eaelEditModeSettings56['eael_hover_effect_offset_hover_top']) === null || _eaelEditModeSettings57 === void 0 ? void 0 : _eaelEditModeSettings57['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings58 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings58 === void 0 ? void 0 : (_eaelEditModeSettings59 = _eaelEditModeSettings58['eael_hover_effect_offset_hover_top']) === null || _eaelEditModeSettings59 === void 0 ? void 0 : _eaelEditModeSettings59['unit']\n };\n $eaelOffsetHoverLeft = {\n 'size': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings60 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings60 === void 0 ? void 0 : (_eaelEditModeSettings61 = _eaelEditModeSettings60['eael_hover_effect_offset_hover_left']) === null || _eaelEditModeSettings61 === void 0 ? void 0 : _eaelEditModeSettings61['size'],\n 'unit': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings62 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings62 === void 0 ? void 0 : (_eaelEditModeSettings63 = _eaelEditModeSettings62['eael_hover_effect_offset_hover_left']) === null || _eaelEditModeSettings63 === void 0 ? void 0 : _eaelEditModeSettings63['unit']\n };\n }\n\n //Tranform\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings64 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings64 === void 0 ? void 0 : _eaelEditModeSettings64['eael_hover_effect_transform_popover'])) {\n var _eaelEditModeSettings65, _eaelEditModeSettings72, _eaelEditModeSettings77;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings65 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings65 === void 0 ? void 0 : _eaelEditModeSettings65['eael_hover_effect_rotate_is_on']) === 'yes') {\n var _eaelEditModeSettings66, _eaelEditModeSettings67, _eaelEditModeSettings68, _eaelEditModeSettings69, _eaelEditModeSettings70, _eaelEditModeSettings71;\n $eaelRotateEffect = {\n 'rotate_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings66 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings66 === void 0 ? void 0 : (_eaelEditModeSettings67 = _eaelEditModeSettings66['eael_hover_effect_transform_rotatex']) === null || _eaelEditModeSettings67 === void 0 ? void 0 : _eaelEditModeSettings67['size'],\n 'rotate_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings68 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings68 === void 0 ? void 0 : (_eaelEditModeSettings69 = _eaelEditModeSettings68['eael_hover_effect_transform_rotatey']) === null || _eaelEditModeSettings69 === void 0 ? void 0 : _eaelEditModeSettings69['size'],\n 'rotate_z': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings70 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings70 === void 0 ? void 0 : (_eaelEditModeSettings71 = _eaelEditModeSettings70['eael_hover_effect_transform_rotatez']) === null || _eaelEditModeSettings71 === void 0 ? void 0 : _eaelEditModeSettings71['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings72 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings72 === void 0 ? void 0 : _eaelEditModeSettings72['eael_hover_effect_scale_is_on']) === 'yes') {\n var _eaelEditModeSettings73, _eaelEditModeSettings74, _eaelEditModeSettings75, _eaelEditModeSettings76;\n $eaelScaleEffect = {\n 'scale_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings73 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings73 === void 0 ? void 0 : (_eaelEditModeSettings74 = _eaelEditModeSettings73['eael_hover_effect_transform_scalex']) === null || _eaelEditModeSettings74 === void 0 ? void 0 : _eaelEditModeSettings74['size'],\n 'scale_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings75 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings75 === void 0 ? void 0 : (_eaelEditModeSettings76 = _eaelEditModeSettings75['eael_hover_effect_transform_scaley']) === null || _eaelEditModeSettings76 === void 0 ? void 0 : _eaelEditModeSettings76['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings77 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings77 === void 0 ? void 0 : _eaelEditModeSettings77['eael_hover_effect_skew_is_on']) === 'yes') {\n var _eaelEditModeSettings78, _eaelEditModeSettings79, _eaelEditModeSettings80, _eaelEditModeSettings81;\n $eaelSkewEffect = {\n 'skew_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings78 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings78 === void 0 ? void 0 : (_eaelEditModeSettings79 = _eaelEditModeSettings78['eael_hover_effect_transform_skewx']) === null || _eaelEditModeSettings79 === void 0 ? void 0 : _eaelEditModeSettings79['size'],\n 'skew_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings80 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings80 === void 0 ? void 0 : (_eaelEditModeSettings81 = _eaelEditModeSettings80['eael_hover_effect_transform_skewy']) === null || _eaelEditModeSettings81 === void 0 ? void 0 : _eaelEditModeSettings81['size']\n };\n }\n }\n\n //Tranform Hover\n if ('yes' === (eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings82 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings82 === void 0 ? void 0 : _eaelEditModeSettings82['eael_hover_effect_transform_hover_popover'])) {\n var _eaelEditModeSettings83, _eaelEditModeSettings90, _eaelEditModeSettings95;\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings83 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings83 === void 0 ? void 0 : _eaelEditModeSettings83['eael_hover_effect_rotate_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings84, _eaelEditModeSettings85, _eaelEditModeSettings86, _eaelEditModeSettings87, _eaelEditModeSettings88, _eaelEditModeSettings89;\n $eaelRotateHoverEffect = {\n 'rotate_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings84 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings84 === void 0 ? void 0 : (_eaelEditModeSettings85 = _eaelEditModeSettings84['eael_hover_effect_transform_hover_rotatex']) === null || _eaelEditModeSettings85 === void 0 ? void 0 : _eaelEditModeSettings85['size'],\n 'rotate_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings86 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings86 === void 0 ? void 0 : (_eaelEditModeSettings87 = _eaelEditModeSettings86['eael_hover_effect_transform_hover_rotatey']) === null || _eaelEditModeSettings87 === void 0 ? void 0 : _eaelEditModeSettings87['size'],\n 'rotate_z': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings88 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings88 === void 0 ? void 0 : (_eaelEditModeSettings89 = _eaelEditModeSettings88['eael_hover_effect_transform_hover_rotatez']) === null || _eaelEditModeSettings89 === void 0 ? void 0 : _eaelEditModeSettings89['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings90 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings90 === void 0 ? void 0 : _eaelEditModeSettings90['eael_hover_effect_scale_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings91, _eaelEditModeSettings92, _eaelEditModeSettings93, _eaelEditModeSettings94;\n $eaelScaleHoverEffect = {\n 'scale_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings91 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings91 === void 0 ? void 0 : (_eaelEditModeSettings92 = _eaelEditModeSettings91['eael_hover_effect_transform_hover_scalex']) === null || _eaelEditModeSettings92 === void 0 ? void 0 : _eaelEditModeSettings92['size'],\n 'scale_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings93 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings93 === void 0 ? void 0 : (_eaelEditModeSettings94 = _eaelEditModeSettings93['eael_hover_effect_transform_hover_scaley']) === null || _eaelEditModeSettings94 === void 0 ? void 0 : _eaelEditModeSettings94['size']\n };\n }\n if ((eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings95 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings95 === void 0 ? void 0 : _eaelEditModeSettings95['eael_hover_effect_skew_hover_is_on']) === 'yes') {\n var _eaelEditModeSettings96, _eaelEditModeSettings97, _eaelEditModeSettings98, _eaelEditModeSettings99;\n $eaelSkewHoverEffect = {\n 'skew_x': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings96 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings96 === void 0 ? void 0 : (_eaelEditModeSettings97 = _eaelEditModeSettings96['eael_hover_effect_transform_hover_skewx']) === null || _eaelEditModeSettings97 === void 0 ? void 0 : _eaelEditModeSettings97['size'],\n 'skew_y': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings98 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings98 === void 0 ? void 0 : (_eaelEditModeSettings99 = _eaelEditModeSettings98['eael_hover_effect_transform_hover_skewy']) === null || _eaelEditModeSettings99 === void 0 ? void 0 : _eaelEditModeSettings99['size']\n };\n }\n }\n\n //Transition\n $eaelDuration = {\n 'transitionDuration': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings100 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings100 === void 0 ? void 0 : (_eaelEditModeSettings101 = _eaelEditModeSettings100['eael_hover_effect_general_settings_duration']) === null || _eaelEditModeSettings101 === void 0 ? void 0 : _eaelEditModeSettings101['size']\n };\n $eaelDelay = {\n 'transitionDelay': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings102 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings102 === void 0 ? void 0 : (_eaelEditModeSettings103 = _eaelEditModeSettings102['eael_hover_effect_general_settings_delay']) === null || _eaelEditModeSettings103 === void 0 ? void 0 : _eaelEditModeSettings103['size']\n };\n $eaelEasing = {\n 'transitionEasing': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings104 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings104 === void 0 ? void 0 : _eaelEditModeSettings104['eael_hover_effect_general_settings_easing']\n };\n\n //Transition Hover\n $eaelHoverDuration = {\n 'transitionDuration': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings105 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings105 === void 0 ? void 0 : (_eaelEditModeSettings106 = _eaelEditModeSettings105['eael_hover_effect_general_settings_duration']) === null || _eaelEditModeSettings106 === void 0 ? void 0 : _eaelEditModeSettings106['size']\n };\n $eaelHoverDelay = {\n 'transitionDelay': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings107 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings107 === void 0 ? void 0 : (_eaelEditModeSettings108 = _eaelEditModeSettings107['eael_hover_effect_general_settings_delay']) === null || _eaelEditModeSettings108 === void 0 ? void 0 : _eaelEditModeSettings108['size']\n };\n $eaelHoverEasing = {\n 'transitionEasing': eaelEditModeSettings === null || eaelEditModeSettings === void 0 ? void 0 : (_eaelEditModeSettings109 = eaelEditModeSettings[key]) === null || _eaelEditModeSettings109 === void 0 ? void 0 : _eaelEditModeSettings109['eael_hover_effect_general_settings_easing']\n };\n }\n }\n }\n var hoverSelector = window.isEditMode ? \"body [data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\") : \"body .eael_hover_effect[data-id=\\\"\".concat($scopeId, \"\\\"] > .elementor-widget-container\"),\n $hoverSelector = $(hoverSelector);\n\n //Opacity\n var $opacityVal = $Opacity ? (_$Opacity = $Opacity) === null || _$Opacity === void 0 ? void 0 : _$Opacity.opacity : '1';\n\n //Offset\n var $offsetX = (_$eaelOffsetTop = $eaelOffsetTop) !== null && _$eaelOffsetTop !== void 0 && _$eaelOffsetTop.size ? \"translateX(\".concat($eaelOffsetTop.size).concat($eaelOffsetTop.unit, \")\") : 'translateX(0)';\n var $offsetY = (_$eaelOffsetLeft = $eaelOffsetLeft) !== null && _$eaelOffsetLeft !== void 0 && _$eaelOffsetLeft.size ? \"translateY(\".concat($eaelOffsetLeft.size).concat($eaelOffsetLeft.unit, \")\") : 'translateY(0)';\n\n //Offset Hover\n var $offsetHoverX = (_$eaelOffsetHoverTop = $eaelOffsetHoverTop) !== null && _$eaelOffsetHoverTop !== void 0 && _$eaelOffsetHoverTop.size ? \"translateX(\".concat($eaelOffsetHoverTop.size).concat($eaelOffsetHoverTop.unit, \")\") : 'translateX(0)';\n var $offsetHoverY = (_$eaelOffsetHoverLeft = $eaelOffsetHoverLeft) !== null && _$eaelOffsetHoverLeft !== void 0 && _$eaelOffsetHoverLeft.size ? \"translateY(\".concat($eaelOffsetHoverLeft.size).concat($eaelOffsetHoverLeft.unit, \")\") : 'translateY(0)';\n\n //Transitions\n var $eaelDurationVal = $eaelDuration ? (_$eaelDuration = $eaelDuration) === null || _$eaelDuration === void 0 ? void 0 : _$eaelDuration.transitionDuration : '0';\n var $eaelDelayVal = $eaelDelay ? (_$eaelDelay = $eaelDelay) === null || _$eaelDelay === void 0 ? void 0 : _$eaelDelay.transitionDelay : '0';\n var $eaelEasingVal = $eaelEasing ? (_$eaelEasing = $eaelEasing) === null || _$eaelEasing === void 0 ? void 0 : _$eaelEasing.transitionEasing : '0';\n\n //Transitions Hover\n var $eaelDurationHoverVal = $eaelHoverDuration ? (_$eaelHoverDuration = $eaelHoverDuration) === null || _$eaelHoverDuration === void 0 ? void 0 : _$eaelHoverDuration.transitionDuration : '0';\n var $eaelDelayHoverVal = $eaelHoverDelay ? (_$eaelHoverDelay = $eaelHoverDelay) === null || _$eaelHoverDelay === void 0 ? void 0 : _$eaelHoverDelay.transitionDelay : '0';\n var $eaelEasingHoverVal = $eaelHoverEasing ? (_$eaelHoverEasing = $eaelHoverEasing) === null || _$eaelHoverEasing === void 0 ? void 0 : _$eaelHoverEasing.transitionEasing : '0';\n\n //Filter\n var $blur = (_$eaelBlurEffect = $eaelBlurEffect) !== null && _$eaelBlurEffect !== void 0 && _$eaelBlurEffect.blur ? \"blur(\".concat($eaelBlurEffect.blur, \"px)\") : 'blur(0px)';\n var $contrast = (_$eaelContrastEffect = $eaelContrastEffect) !== null && _$eaelContrastEffect !== void 0 && _$eaelContrastEffect.contrast ? \"contrast(\".concat($eaelContrastEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscale = (_$eaelGrayscaleEffect = $eaelGrayscaleEffect) !== null && _$eaelGrayscaleEffect !== void 0 && _$eaelGrayscaleEffect.grayscale ? \"grayscale(\".concat($eaelGrayscaleEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invert = (_$eaelInvertEffect = $eaelInvertEffect) !== null && _$eaelInvertEffect !== void 0 && _$eaelInvertEffect.invert ? \"invert(\".concat($eaelInvertEffect.invert, \"%)\") : 'invert(0%)';\n var $saturate = (_$eaelSaturateEffect = $eaelSaturateEffect) !== null && _$eaelSaturateEffect !== void 0 && _$eaelSaturateEffect.saturate ? \"saturate(\".concat($eaelSaturateEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepia = (_$eaelSepiaEffect = $eaelSepiaEffect) !== null && _$eaelSepiaEffect !== void 0 && _$eaelSepiaEffect.sepia ? \"sepia(\".concat($eaelSepiaEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Rotate\n var $rotateX = (_$eaelRotateEffect = $eaelRotateEffect) !== null && _$eaelRotateEffect !== void 0 && _$eaelRotateEffect.rotate_x ? \"rotateX(\".concat($eaelRotateEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateY = (_$eaelRotateEffect2 = $eaelRotateEffect) !== null && _$eaelRotateEffect2 !== void 0 && _$eaelRotateEffect2.rotate_y ? \"rotateY(\".concat($eaelRotateEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZ = (_$eaelRotateEffect3 = $eaelRotateEffect) !== null && _$eaelRotateEffect3 !== void 0 && _$eaelRotateEffect3.rotate_z ? \"rotateZ(\".concat($eaelRotateEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleX = (_$eaelScaleEffect = $eaelScaleEffect) !== null && _$eaelScaleEffect !== void 0 && _$eaelScaleEffect.scale_x ? \"scaleX(\".concat($eaelScaleEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleY = (_$eaelScaleEffect2 = $eaelScaleEffect) !== null && _$eaelScaleEffect2 !== void 0 && _$eaelScaleEffect2.scale_y ? \"scaleY(\".concat($eaelScaleEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewX = (_$eaelSkewEffect = $eaelSkewEffect) !== null && _$eaelSkewEffect !== void 0 && _$eaelSkewEffect.skew_x ? \"skewX(\".concat($eaelSkewEffect.skew_x, \"deg)\") : 'skewX(0deg)';\n var $skewY = (_$eaelSkewEffect2 = $eaelSkewEffect) !== null && _$eaelSkewEffect2 !== void 0 && _$eaelSkewEffect2.skew_y ? \"skewY(\".concat($eaelSkewEffect.skew_y, \"deg)\") : 'skewY(0deg)';\n\n //Hover\n var $opacityHoverVal = $opacityHover ? (_$opacityHover = $opacityHover) === null || _$opacityHover === void 0 ? void 0 : _$opacityHover.opacity : '1';\n //Rotate\n var $rotateXHover = (_$eaelRotateHoverEffe = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe !== void 0 && _$eaelRotateHoverEffe.rotate_x ? \"rotateX(\".concat($eaelRotateHoverEffect.rotate_x, \"deg)\") : 'rotateX(0)';\n var $rotateYHover = (_$eaelRotateHoverEffe2 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe2 !== void 0 && _$eaelRotateHoverEffe2.rotate_y ? \"rotateY(\".concat($eaelRotateHoverEffect.rotate_y, \"deg)\") : 'rotateY(0)';\n var $rotateZHover = (_$eaelRotateHoverEffe3 = $eaelRotateHoverEffect) !== null && _$eaelRotateHoverEffe3 !== void 0 && _$eaelRotateHoverEffe3.rotate_z ? \"rotateZ(\".concat($eaelRotateHoverEffect.rotate_z, \"deg)\") : 'rotateZ(0)';\n\n //Scale\n var $scaleXHover = (_$eaelScaleHoverEffec = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec !== void 0 && _$eaelScaleHoverEffec.scale_x ? \"scaleX(\".concat($eaelScaleHoverEffect.scale_x, \")\") : 'scaleX(1)';\n var $scaleYHover = (_$eaelScaleHoverEffec2 = $eaelScaleHoverEffect) !== null && _$eaelScaleHoverEffec2 !== void 0 && _$eaelScaleHoverEffec2.scale_y ? \"scaleY(\".concat($eaelScaleHoverEffect.scale_y, \")\") : 'scaleY(1)';\n\n //Skew\n var $skewXHover = (_$eaelSkewHoverEffect = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect !== void 0 && _$eaelSkewHoverEffect.skew_x ? \"skewX(\".concat($eaelSkewHoverEffect.skew_x, \"deg)\") : 'skewX(0)';\n var $skewYHover = (_$eaelSkewHoverEffect2 = $eaelSkewHoverEffect) !== null && _$eaelSkewHoverEffect2 !== void 0 && _$eaelSkewHoverEffect2.skew_y ? \"skewY(\".concat($eaelSkewHoverEffect.skew_y, \"deg)\") : 'skewY(0)';\n\n //Filter Hover\n var $blurHover = (_$eaelBurHoverEffect = $eaelBurHoverEffect) !== null && _$eaelBurHoverEffect !== void 0 && _$eaelBurHoverEffect.blur ? \"blur(\".concat($eaelBurHoverEffect.blur, \"px)\") : 'blur(0px)';\n var $contrastHover = (_$eaelContrastHoverEf = $eaelContrastHoverEffect) !== null && _$eaelContrastHoverEf !== void 0 && _$eaelContrastHoverEf.contrast ? \"contrast(\".concat($eaelContrastHoverEffect.contrast, \"%)\") : 'contrast(100%)';\n var $grayscaleHover = (_$eaelGrayscalHoverEf = $eaelGrayscalHoverEffect) !== null && _$eaelGrayscalHoverEf !== void 0 && _$eaelGrayscalHoverEf.grayscale ? \"grayscale(\".concat($eaelGrayscalHoverEffect.grayscale, \"%)\") : 'grayscale(0%)';\n var $invertHover = (_$eaelInvertHoverEffe = $eaelInvertHoverEffect) !== null && _$eaelInvertHoverEffe !== void 0 && _$eaelInvertHoverEffe.invert ? \"invert(\".concat($eaelInvertHoverEffect.invert, \"%)\") : 'invert(0%)';\n var $saturateHover = (_$eaelSaturateHoverEf = $eaelSaturateHoverEffect) !== null && _$eaelSaturateHoverEf !== void 0 && _$eaelSaturateHoverEf.saturate ? \"saturate(\".concat($eaelSaturateHoverEffect.saturate, \"%)\") : 'saturate(100%)';\n var $sepiaHover = (_$eaelSepiaHoverEffec = $eaelSepiaHoverEffect) !== null && _$eaelSepiaHoverEffec !== void 0 && _$eaelSepiaHoverEffec.sepia ? \"sepia(\".concat($eaelSepiaHoverEffect.sepia, \"%)\") : 'sepia(0%)';\n\n //Normal\n var normalStyles = {\n \"transform\": \"\".concat($rotateX, \" \").concat($rotateY, \" \").concat($rotateZ, \" \").concat($scaleX, \" \").concat($scaleY, \" \").concat($skewX, \" \").concat($skewY, \" \").concat($offsetX, \" \").concat($offsetY),\n \"opacity\": $opacityVal,\n \"filter\": \"\".concat($blur, \" \").concat($contrast, \" \").concat($grayscale, \" \").concat($invert, \" \").concat($saturate, \" \").concat($sepia),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingVal,\n \"z-index\": 1\n };\n\n //Hover\n var hoverStyles = {\n 'opacity': $opacityHoverVal,\n 'filter': \"\".concat($blurHover, \" \").concat($contrastHover, \" \").concat($grayscaleHover, \" \").concat($invertHover, \" \").concat($saturateHover, \" \").concat($sepiaHover),\n \"transform\": \"\".concat($rotateXHover, \" \").concat($rotateYHover, \" \").concat($rotateZHover, \" \").concat($scaleXHover, \" \").concat($scaleYHover, \" \").concat($skewXHover, \" \").concat($skewYHover, \" \").concat($offsetHoverX, \" \").concat($offsetHoverY),\n \"transition-property\": 'all',\n \"transition-duration\": \"\".concat($eaelDurationHoverVal, \"ms\"),\n \"transition-delay\": \"\".concat($eaelDelayHoverVal, \"ms\"),\n \"transition-timing-function\": $eaelEasingHoverVal,\n \"z-index\": 2\n };\n if (window.isEditMode && $enabledElementList.includes($scopeId) || !window.isEditMode && $hoverSelector.length) {\n $hoverSelector.hover(function () {\n $(this).css(hoverStyles);\n }, function () {\n $(this).css(normalStyles);\n });\n $hoverSelector.css(normalStyles);\n }\n\n //Tilt Effect\n if ($eaelTilt === 'eael_tilt') {\n $(\".elementor-element-\".concat($scopeId)).mousemove(function (e) {\n var cox = (e.pageX - $(this).offset().left - $(this).width() / 2) / 20;\n var coy = ($(this).height() / 2 - (e.pageY - $(this).offset().top)) / 20;\n $(this).find('.elementor-widget-container').css('transform', 'perspective(500px) rotateY(' + cox + 'deg) rotateX(' + coy + 'deg)');\n });\n $(\".elementor-element-\".concat($scopeId)).mouseleave(function (e) {\n $(this).find('.elementor-widget-container').css('transform', 'rotateY(0) rotateX(0)');\n });\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelHoverEffect')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", HoverEffectHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/hover-effect.js?"); /***/ }) diff --git a/assets/front-end/js/view/hover-effect.min.js b/assets/front-end/js/view/hover-effect.min.js index 0c25b9007..600c1b36d 100644 --- a/assets/front-end/js/view/hover-effect.min.js +++ b/assets/front-end/js/view/hover-effect.min.js @@ -1 +1 @@ -!function(e){var l={};function t(o){if(l[o])return l[o].exports;var n=l[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=l,t.d=function(e,l,o){t.o(e,l)||Object.defineProperty(e,l,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,l){if(1&l&&(e=t(e)),8&l)return e;if(4&l&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&l&&"string"!=typeof e)for(var n in e)t.d(o,n,function(l){return e[l]}.bind(null,n));return o},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,l){return Object.prototype.hasOwnProperty.call(e,l)},t.p="",t(t.s=13)}({13:function(e,l){var t=function(e,l){var t,o,n,a,i,r,_,v,s,c,d,u,f,h,y,p,g,m,z,w,b,x,k,X,Y,E,M,j,D,T,O,S,P,Z,F,R,A,C,H=e.data("eael_rotate_effect"),Q=e.data("eael_scale_effect"),q=e.data("eael_skew_effect"),B=e.data("eael_opacity"),G=e.data("eael_blur_effect"),I=e.data("eael_contrast_effect"),J=e.data("eael_grayscale_effect"),K=e.data("eael_invert_effect"),L=e.data("eael_saturate_effect"),N=e.data("eael_sepia_effect"),U=e.data("id"),V=e.data("eael_blur_hover_effect"),W=e.data("eael_contrast_hover_effect"),$=e.data("eael_grayscal_hover_effect"),ee=e.data("eael_invert_hover_effect"),le=e.data("eael_saturate_hover_effect"),te=e.data("eael_sepia_hover_effect"),oe=e.data("eael_rotate_hover_effect"),ne=e.data("eael_scale_hover_effect"),ae=e.data("eael_skew_hover_effect"),ie=e.data("eael_opacity_hover"),re=e.data("eael_duration"),_e=e.data("eael_delay"),ve=e.data("eael_easing"),se=e.data("eael_hover_duration"),ce=e.data("eael_hover_delay"),de=e.data("eael_hover_easing"),ue=e.data("eael_offset_top"),fe=e.data("eael_offset_left"),he=e.data("eael_offset_hover_top"),ye=e.data("eael_offset_hover_left"),pe=e.data("eaeltilt"),ge=[];if(window.isEditMode){void 0===window.isRunFirstTime&&window.isEditMode;window.isRunFirstTime=!0;var me=[];for(var ze in function e(t){l.each(t,(function(l,t){var o=t.attributes.settings.attributes;"widget"===t.attributes.elType&&"yes"===o.eael_hover_effect_switch&&(ge.push(t.attributes.id),"yes"===o.eael_hover_effect_enable_live_changes&&(me[t.attributes.id]=t.attributes.settings.attributes)),"container"===t.attributes.elType&&e(t.attributes.elements.models),"section"===t.attributes.elType&&e(t.attributes.elements.models),"column"===t.attributes.elType&&e(t.attributes.elements.models)}))}(window.elementor.elements.models),me)if(U===ze){var we,be,xe,ke,Xe,Ye,Ee,Me,je,De,Te,Oe,Se,Pe,Ze,Fe,Re,Ae,Ce,He,Qe,qe,Be,Ge,Ie;if("yes"===(null==me||null===(we=me[ze])||void 0===we?void 0:we.eael_hover_effect_hover_tilt)&&(pe="eael_tilt"),"yes"===(null==me||null===(be=me[ze])||void 0===be?void 0:be.eael_hover_effect_opacity_popover))B={opacity:null==me||null===(Fe=me[ze])||void 0===Fe||null===(Fe=Fe.eael_hover_effect_opacity)||void 0===Fe?void 0:Fe.size};if("yes"===(null==me||null===(xe=me[ze])||void 0===xe?void 0:xe.eael_hover_effect_opacity_popover_hover))ie={opacity:null==me||null===(Re=me[ze])||void 0===Re||null===(Re=Re.eael_hover_effect_opacity_hover)||void 0===Re?void 0:Re.size};if("yes"===(null==me||null===(ke=me[ze])||void 0===ke?void 0:ke.eael_hover_effect_filter_popover)){var Je,Ke,Le,Ne,Ue,Ve,We,$e,el,ll,tl,ol;if("yes"===(null==me||null===(Je=me[ze])||void 0===Je?void 0:Je.eael_hover_effect_blur_is_on))G={blur:null==me||null===(We=me[ze])||void 0===We||null===(We=We.eael_hover_effect_blur)||void 0===We?void 0:We.size};if("yes"===(null==me||null===(Ke=me[ze])||void 0===Ke?void 0:Ke.eael_hover_effect_contrast_is_on))I={contrast:null==me||null===($e=me[ze])||void 0===$e||null===($e=$e.eael_hover_effect_contrast)||void 0===$e?void 0:$e.size};if("yes"===(null==me||null===(Le=me[ze])||void 0===Le?void 0:Le.eael_hover_effect_grayscale_is_on))J={grayscale:null==me||null===(el=me[ze])||void 0===el||null===(el=el.eael_hover_effect_grayscal)||void 0===el?void 0:el.size};if("yes"===(null==me||null===(Ne=me[ze])||void 0===Ne?void 0:Ne.eael_hover_effect_invert_is_on))K={invert:null==me||null===(ll=me[ze])||void 0===ll||null===(ll=ll.eael_hover_effect_invert)||void 0===ll?void 0:ll.size};if("yes"===(null==me||null===(Ue=me[ze])||void 0===Ue?void 0:Ue.eael_hover_effect_saturate_is_on))L={saturate:null==me||null===(tl=me[ze])||void 0===tl||null===(tl=tl.eael_hover_effect_saturate)||void 0===tl?void 0:tl.size};if("yes"===(null==me||null===(Ve=me[ze])||void 0===Ve?void 0:Ve.eael_hover_effect_sepia_is_on))N={sepia:null==me||null===(ol=me[ze])||void 0===ol||null===(ol=ol.eael_hover_effect_sepia)||void 0===ol?void 0:ol.size}}if("yes"===(null==me||null===(Xe=me[ze])||void 0===Xe?void 0:Xe.eael_hover_effect_filter_hover_popover)){var nl,al,il,rl,_l,vl,sl,cl,dl,ul,fl,hl;if("yes"===(null==me||null===(nl=me[ze])||void 0===nl?void 0:nl.eael_hover_effect_blur_hover_is_on))V={blur:null==me||null===(sl=me[ze])||void 0===sl||null===(sl=sl.eael_hover_effect_blur_hover)||void 0===sl?void 0:sl.size};if("yes"===(null==me||null===(al=me[ze])||void 0===al?void 0:al.eael_hover_effect_contrast_hover_is_on))W={contrast:null==me||null===(cl=me[ze])||void 0===cl||null===(cl=cl.eael_hover_effect_contrast_hover)||void 0===cl?void 0:cl.size};if("yes"===(null==me||null===(il=me[ze])||void 0===il?void 0:il.eael_hover_effect_grayscale_hover_is_on))$={grayscale:null==me||null===(dl=me[ze])||void 0===dl||null===(dl=dl.eael_hover_effect_grayscal_hover)||void 0===dl?void 0:dl.size};if("yes"===(null==me||null===(rl=me[ze])||void 0===rl?void 0:rl.eael_hover_effect_invert_hover_is_on))ee={invert:null==me||null===(ul=me[ze])||void 0===ul||null===(ul=ul.eael_hover_effect_invert_hover)||void 0===ul?void 0:ul.size};if("yes"===(null==me||null===(_l=me[ze])||void 0===_l?void 0:_l.eael_hover_effect_saturate_hover_is_on))le={saturate:null==me||null===(fl=me[ze])||void 0===fl||null===(fl=fl.eael_hover_effect_saturate_hover)||void 0===fl?void 0:fl.size};if("yes"===(null==me||null===(vl=me[ze])||void 0===vl?void 0:vl.eael_hover_effect_sepia_is_on))te={sepia:null==me||null===(hl=me[ze])||void 0===hl||null===(hl=hl.eael_hover_effect_sepia_hover)||void 0===hl?void 0:hl.size}}if("yes"===(null==me||null===(Ye=me[ze])||void 0===Ye?void 0:Ye.eael_hover_effect_offset_popover))ue={size:null==me||null===(Ae=me[ze])||void 0===Ae||null===(Ae=Ae.eael_hover_effect_offset_top)||void 0===Ae?void 0:Ae.size,unit:null==me||null===(Ce=me[ze])||void 0===Ce||null===(Ce=Ce.eael_hover_effect_offset_top)||void 0===Ce?void 0:Ce.unit},fe={size:null==me||null===(He=me[ze])||void 0===He||null===(He=He.eael_hover_effect_offset_left)||void 0===He?void 0:He.size,unit:null==me||null===(Qe=me[ze])||void 0===Qe||null===(Qe=Qe.eael_hover_effect_offset_left)||void 0===Qe?void 0:Qe.unit};if("yes"===(null==me||null===(Ee=me[ze])||void 0===Ee?void 0:Ee.eael_hover_effect_offset_hover_popover))he={size:null==me||null===(qe=me[ze])||void 0===qe||null===(qe=qe.eael_hover_effect_offset_hover_top)||void 0===qe?void 0:qe.size,unit:null==me||null===(Be=me[ze])||void 0===Be||null===(Be=Be.eael_hover_effect_offset_hover_top)||void 0===Be?void 0:Be.unit},ye={size:null==me||null===(Ge=me[ze])||void 0===Ge||null===(Ge=Ge.eael_hover_effect_offset_hover_left)||void 0===Ge?void 0:Ge.size,unit:null==me||null===(Ie=me[ze])||void 0===Ie||null===(Ie=Ie.eael_hover_effect_offset_hover_left)||void 0===Ie?void 0:Ie.unit};if("yes"===(null==me||null===(Me=me[ze])||void 0===Me?void 0:Me.eael_hover_effect_transform_popover)){var yl,pl,gl,ml,zl,wl,bl,xl,kl,Xl;if("yes"===(null==me||null===(yl=me[ze])||void 0===yl?void 0:yl.eael_hover_effect_rotate_is_on))H={rotate_x:null==me||null===(ml=me[ze])||void 0===ml||null===(ml=ml.eael_hover_effect_transform_rotatex)||void 0===ml?void 0:ml.size,rotate_y:null==me||null===(zl=me[ze])||void 0===zl||null===(zl=zl.eael_hover_effect_transform_rotatey)||void 0===zl?void 0:zl.size,rotate_z:null==me||null===(wl=me[ze])||void 0===wl||null===(wl=wl.eael_hover_effect_transform_rotatez)||void 0===wl?void 0:wl.size};if("yes"===(null==me||null===(pl=me[ze])||void 0===pl?void 0:pl.eael_hover_effect_scale_is_on))Q={scale_x:null==me||null===(bl=me[ze])||void 0===bl||null===(bl=bl.eael_hover_effect_transform_scalex)||void 0===bl?void 0:bl.size,scale_y:null==me||null===(xl=me[ze])||void 0===xl||null===(xl=xl.eael_hover_effect_transform_scaley)||void 0===xl?void 0:xl.size};if("yes"===(null==me||null===(gl=me[ze])||void 0===gl?void 0:gl.eael_hover_effect_skew_is_on))q={skew_x:null==me||null===(kl=me[ze])||void 0===kl||null===(kl=kl.eael_hover_effect_transform_skewx)||void 0===kl?void 0:kl.size,skew_y:null==me||null===(Xl=me[ze])||void 0===Xl||null===(Xl=Xl.eael_hover_effect_transform_skewy)||void 0===Xl?void 0:Xl.size}}if("yes"===(null==me||null===(je=me[ze])||void 0===je?void 0:je.eael_hover_effect_transform_hover_popover)){var Yl,El,Ml,jl,Dl,Tl,Ol,Sl,Pl,Zl;if("yes"===(null==me||null===(Yl=me[ze])||void 0===Yl?void 0:Yl.eael_hover_effect_rotate_hover_is_on))oe={rotate_x:null==me||null===(jl=me[ze])||void 0===jl||null===(jl=jl.eael_hover_effect_transform_hover_rotatex)||void 0===jl?void 0:jl.size,rotate_y:null==me||null===(Dl=me[ze])||void 0===Dl||null===(Dl=Dl.eael_hover_effect_transform_hover_rotatey)||void 0===Dl?void 0:Dl.size,rotate_z:null==me||null===(Tl=me[ze])||void 0===Tl||null===(Tl=Tl.eael_hover_effect_transform_hover_rotatez)||void 0===Tl?void 0:Tl.size};if("yes"===(null==me||null===(El=me[ze])||void 0===El?void 0:El.eael_hover_effect_scale_hover_is_on))ne={scale_x:null==me||null===(Ol=me[ze])||void 0===Ol||null===(Ol=Ol.eael_hover_effect_transform_hover_scalex)||void 0===Ol?void 0:Ol.size,scale_y:null==me||null===(Sl=me[ze])||void 0===Sl||null===(Sl=Sl.eael_hover_effect_transform_hover_scaley)||void 0===Sl?void 0:Sl.size};if("yes"===(null==me||null===(Ml=me[ze])||void 0===Ml?void 0:Ml.eael_hover_effect_skew_hover_is_on))ae={skew_x:null==me||null===(Pl=me[ze])||void 0===Pl||null===(Pl=Pl.eael_hover_effect_transform_hover_skewx)||void 0===Pl?void 0:Pl.size,skew_y:null==me||null===(Zl=me[ze])||void 0===Zl||null===(Zl=Zl.eael_hover_effect_transform_hover_skewy)||void 0===Zl?void 0:Zl.size}}re={transitionDuration:null==me||null===(De=me[ze])||void 0===De||null===(De=De.eael_hover_effect_general_settings_duration)||void 0===De?void 0:De.size},_e={transitionDelay:null==me||null===(Te=me[ze])||void 0===Te||null===(Te=Te.eael_hover_effect_general_settings_delay)||void 0===Te?void 0:Te.size},ve={transitionEasing:null==me||null===(Oe=me[ze])||void 0===Oe?void 0:Oe.eael_hover_effect_general_settings_easing},se={transitionDuration:null==me||null===(Se=me[ze])||void 0===Se||null===(Se=Se.eael_hover_effect_general_settings_duration)||void 0===Se?void 0:Se.size},ce={transitionDelay:null==me||null===(Pe=me[ze])||void 0===Pe||null===(Pe=Pe.eael_hover_effect_general_settings_delay)||void 0===Pe?void 0:Pe.size},de={transitionEasing:null==me||null===(Ze=me[ze])||void 0===Ze?void 0:Ze.eael_hover_effect_general_settings_easing}}}var Fl=window.isEditMode?'body [data-id="'.concat(U,'"] > .elementor-widget-container'):'body .eael_hover_effect[data-id="'.concat(U,'"] > .elementor-widget-container'),Rl=l(Fl),Al=B?null===(t=B)||void 0===t?void 0:t.opacity:"1",Cl=null!==(o=ue)&&void 0!==o&&o.size?"translateX(".concat(ue.size).concat(ue.unit,")"):"translateX(0)",Hl=null!==(n=fe)&&void 0!==n&&n.size?"translateY(".concat(fe.size).concat(fe.unit,")"):"translateY(0)",Ql=null!==(a=he)&&void 0!==a&&a.size?"translateX(".concat(he.size).concat(he.unit,")"):"translateX(0)",ql=null!==(i=ye)&&void 0!==i&&i.size?"translateY(".concat(ye.size).concat(ye.unit,")"):"translateY(0)",Bl=re?null===(r=re)||void 0===r?void 0:r.transitionDuration:"0",Gl=_e?null===(_=_e)||void 0===_?void 0:_.transitionDelay:"0",Il=ve?null===(v=ve)||void 0===v?void 0:v.transitionEasing:"0",Jl=se?null===(s=se)||void 0===s?void 0:s.transitionDuration:"0",Kl=ce?null===(c=ce)||void 0===c?void 0:c.transitionDelay:"0",Ll=de?null===(d=de)||void 0===d?void 0:d.transitionEasing:"0",Nl=null!==(u=G)&&void 0!==u&&u.blur?"blur(".concat(G.blur,"px)"):"blur(0px)",Ul=null!==(f=I)&&void 0!==f&&f.contrast?"contrast(".concat(I.contrast,"%)"):"contrast(100%)",Vl=null!==(h=J)&&void 0!==h&&h.grayscale?"grayscale(".concat(J.grayscale,"%)"):"grayscale(0%)",Wl=null!==(y=K)&&void 0!==y&&y.invert?"invert(".concat(K.invert,"%)"):"invert(0%)",$l=null!==(p=L)&&void 0!==p&&p.saturate?"saturate(".concat(L.saturate,"%)"):"saturate(100%)",et=null!==(g=N)&&void 0!==g&&g.sepia?"sepia(".concat(N.sepia,"%)"):"sepia(0%)",lt=null!==(m=H)&&void 0!==m&&m.rotate_x?"rotateX(".concat(H.rotate_x,"deg)"):"rotateX(0)",tt=null!==(z=H)&&void 0!==z&&z.rotate_y?"rotateY(".concat(H.rotate_y,"deg)"):"rotateY(0)",ot=null!==(w=H)&&void 0!==w&&w.rotate_z?"rotateZ(".concat(H.rotate_z,"deg)"):"rotateZ(0)",nt=null!==(b=Q)&&void 0!==b&&b.scale_x?"scaleX(".concat(Q.scale_x,")"):"scaleX(1)",at=null!==(x=Q)&&void 0!==x&&x.scale_y?"scaleY(".concat(Q.scale_y,")"):"scaleY(1)",it=null!==(k=q)&&void 0!==k&&k.skew_x?"skewX(".concat(q.skew_x,"deg)"):"skewX(0deg)",rt=null!==(X=q)&&void 0!==X&&X.skew_y?"skewY(".concat(q.skew_y,"deg)"):"skewY(0deg)",_t=ie?null===(Y=ie)||void 0===Y?void 0:Y.opacity:"1",vt=null!==(E=oe)&&void 0!==E&&E.rotate_x?"rotateX(".concat(oe.rotate_x,"deg)"):"rotateX(0)",st=null!==(M=oe)&&void 0!==M&&M.rotate_y?"rotateY(".concat(oe.rotate_y,"deg)"):"rotateY(0)",ct=null!==(j=oe)&&void 0!==j&&j.rotate_z?"rotateZ(".concat(oe.rotate_z,"deg)"):"rotateZ(0)",dt=null!==(D=ne)&&void 0!==D&&D.scale_x?"scaleX(".concat(ne.scale_x,")"):"scaleX(1)",ut=null!==(T=ne)&&void 0!==T&&T.scale_y?"scaleY(".concat(ne.scale_y,")"):"scaleY(1)",ft=null!==(O=ae)&&void 0!==O&&O.skew_x?"skewX(".concat(ae.skew_x,"deg)"):"skewX(0)",ht=null!==(S=ae)&&void 0!==S&&S.skew_y?"skewY(".concat(ae.skew_y,"deg)"):"skewY(0)",yt=null!==(P=V)&&void 0!==P&&P.blur?"blur(".concat(V.blur,"px)"):"blur(0px)",pt=null!==(Z=W)&&void 0!==Z&&Z.contrast?"contrast(".concat(W.contrast,"%)"):"contrast(100%)",gt=null!==(F=$)&&void 0!==F&&F.grayscale?"grayscale(".concat($.grayscale,"%)"):"grayscale(0%)",mt=null!==(R=ee)&&void 0!==R&&R.invert?"invert(".concat(ee.invert,"%)"):"invert(0%)",zt=null!==(A=le)&&void 0!==A&&A.saturate?"saturate(".concat(le.saturate,"%)"):"saturate(100%)",wt=null!==(C=te)&&void 0!==C&&C.sepia?"sepia(".concat(te.sepia,"%)"):"sepia(0%)",bt={transform:"".concat(lt," ").concat(tt," ").concat(ot," ").concat(nt," ").concat(at," ").concat(it," ").concat(rt," ").concat(Cl," ").concat(Hl),opacity:Al,filter:"".concat(Nl," ").concat(Ul," ").concat(Vl," ").concat(Wl," ").concat($l," ").concat(et),"transition-property":"all","transition-duration":"".concat(Bl,"ms"),"transition-delay":"".concat(Gl,"ms"),"transition-timing-function":Il,"z-index":1},xt={opacity:_t,filter:"".concat(yt," ").concat(pt," ").concat(gt," ").concat(mt," ").concat(zt," ").concat(wt),transform:"".concat(vt," ").concat(st," ").concat(ct," ").concat(dt," ").concat(ut," ").concat(ft," ").concat(ht," ").concat(Ql," ").concat(ql),"transition-property":"all","transition-duration":"".concat(Jl,"ms"),"transition-delay":"".concat(Kl,"ms"),"transition-timing-function":Ll,"z-index":2};(window.isEditMode&&ge.includes(U)||!window.isEditMode&&Rl.length)&&(Rl.hover((function(){l(this).css(xt)}),(function(){l(this).css(bt)})),Rl.css(bt)),"eael_tilt"===pe&&(l(".elementor-element-".concat(U)).mousemove((function(e){var t=(e.pageX-l(this).offset().left-l(this).width()/2)/20,o=(l(this).height()/2-(e.pageY-l(this).offset().top))/20;l(this).find(".elementor-widget-container").css("transform","perspective(500px) rotateY("+t+"deg) rotateX("+o+"deg)")})),l(".elementor-element-".concat(U)).mouseleave((function(e){l(this).find(".elementor-widget-container").css("transform","rotateY(0) rotateX(0)")})))};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelHoverEffect"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/widget",t)}))}}); \ No newline at end of file +!function(e){var l={};function t(o){if(l[o])return l[o].exports;var n=l[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=l,t.d=function(e,l,o){t.o(e,l)||Object.defineProperty(e,l,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,l){if(1&l&&(e=t(e)),8&l)return e;if(4&l&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&l&&"string"!=typeof e)for(var n in e)t.d(o,n,function(l){return e[l]}.bind(null,n));return o},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,l){return Object.prototype.hasOwnProperty.call(e,l)},t.p="",t(t.s=13)}({13:function(e,l){var t=function(e,l){var t,o,n,a,i,r,_,v,s,c,d,u,f,h,y,p,g,m,z,w,b,x,k,X,Y,E,M,j,D,T,O,S,P,Z,F,R,A,C,H=e.data("eael_rotate_effect"),Q=e.data("eael_scale_effect"),q=e.data("eael_skew_effect"),B=e.data("eael_opacity"),G=e.data("eael_blur_effect"),I=e.data("eael_contrast_effect"),J=e.data("eael_grayscale_effect"),K=e.data("eael_invert_effect"),L=e.data("eael_saturate_effect"),N=e.data("eael_sepia_effect"),U=e.data("id"),V=e.data("eael_blur_hover_effect"),W=e.data("eael_contrast_hover_effect"),$=e.data("eael_grayscal_hover_effect"),ee=e.data("eael_invert_hover_effect"),le=e.data("eael_saturate_hover_effect"),te=e.data("eael_sepia_hover_effect"),oe=e.data("eael_rotate_hover_effect"),ne=e.data("eael_scale_hover_effect"),ae=e.data("eael_skew_hover_effect"),ie=e.data("eael_opacity_hover"),re=e.data("eael_duration"),_e=e.data("eael_delay"),ve=e.data("eael_easing"),se=e.data("eael_hover_duration"),ce=e.data("eael_hover_delay"),de=e.data("eael_hover_easing"),ue=e.data("eael_offset_top"),fe=e.data("eael_offset_left"),he=e.data("eael_offset_hover_top"),ye=e.data("eael_offset_hover_left"),pe=e.data("eaeltilt"),ge=[];if(window.isEditMode){void 0===window.isRunFirstTime&&window.isEditMode;window.isRunFirstTime=!0;var me=[];for(var ze in function e(t){l.each(t,(function(l,t){var o=t.attributes.settings.attributes;"widget"===t.attributes.elType&&"yes"===o.eael_hover_effect_switch&&(ge.push(t.attributes.id),"yes"===o.eael_hover_effect_enable_live_changes&&(me[t.attributes.id]=t.attributes.settings.attributes)),"container"===t.attributes.elType&&e(t.attributes.elements.models),"section"===t.attributes.elType&&e(t.attributes.elements.models),"column"===t.attributes.elType&&e(t.attributes.elements.models)}))}(window.elementor.elements.models),me)if(U===ze){var we,be,xe,ke,Xe,Ye,Ee,Me,je,De,Te,Oe,Se,Pe,Ze,Fe,Re,Ae,Ce,He,Qe,qe,Be,Ge,Ie,Je,Ke,Le,Ne,Ue,Ve,We,$e,el,ll,tl,ol,nl,al;if("yes"===(null==me||null===(we=me[ze])||void 0===we?void 0:we.eael_hover_effect_hover_tilt)&&(pe="eael_tilt"),"yes"===(null==me||null===(be=me[ze])||void 0===be?void 0:be.eael_hover_effect_opacity_popover))B={opacity:null==me||null===(He=me[ze])||void 0===He||null===(Qe=He.eael_hover_effect_opacity)||void 0===Qe?void 0:Qe.size};if("yes"===(null==me||null===(xe=me[ze])||void 0===xe?void 0:xe.eael_hover_effect_opacity_popover_hover))ie={opacity:null==me||null===(qe=me[ze])||void 0===qe||null===(Be=qe.eael_hover_effect_opacity_hover)||void 0===Be?void 0:Be.size};if("yes"===(null==me||null===(ke=me[ze])||void 0===ke?void 0:ke.eael_hover_effect_filter_popover)){var il,rl,_l,vl,sl,cl,dl,ul,fl,hl,yl,pl,gl,ml,zl,wl,bl,xl;if("yes"===(null==me||null===(il=me[ze])||void 0===il?void 0:il.eael_hover_effect_blur_is_on))G={blur:null==me||null===(dl=me[ze])||void 0===dl||null===(ul=dl.eael_hover_effect_blur)||void 0===ul?void 0:ul.size};if("yes"===(null==me||null===(rl=me[ze])||void 0===rl?void 0:rl.eael_hover_effect_contrast_is_on))I={contrast:null==me||null===(fl=me[ze])||void 0===fl||null===(hl=fl.eael_hover_effect_contrast)||void 0===hl?void 0:hl.size};if("yes"===(null==me||null===(_l=me[ze])||void 0===_l?void 0:_l.eael_hover_effect_grayscale_is_on))J={grayscale:null==me||null===(yl=me[ze])||void 0===yl||null===(pl=yl.eael_hover_effect_grayscal)||void 0===pl?void 0:pl.size};if("yes"===(null==me||null===(vl=me[ze])||void 0===vl?void 0:vl.eael_hover_effect_invert_is_on))K={invert:null==me||null===(gl=me[ze])||void 0===gl||null===(ml=gl.eael_hover_effect_invert)||void 0===ml?void 0:ml.size};if("yes"===(null==me||null===(sl=me[ze])||void 0===sl?void 0:sl.eael_hover_effect_saturate_is_on))L={saturate:null==me||null===(zl=me[ze])||void 0===zl||null===(wl=zl.eael_hover_effect_saturate)||void 0===wl?void 0:wl.size};if("yes"===(null==me||null===(cl=me[ze])||void 0===cl?void 0:cl.eael_hover_effect_sepia_is_on))N={sepia:null==me||null===(bl=me[ze])||void 0===bl||null===(xl=bl.eael_hover_effect_sepia)||void 0===xl?void 0:xl.size}}if("yes"===(null==me||null===(Xe=me[ze])||void 0===Xe?void 0:Xe.eael_hover_effect_filter_hover_popover)){var kl,Xl,Yl,El,Ml,jl,Dl,Tl,Ol,Sl,Pl,Zl,Fl,Rl,Al,Cl,Hl,Ql;if("yes"===(null==me||null===(kl=me[ze])||void 0===kl?void 0:kl.eael_hover_effect_blur_hover_is_on))V={blur:null==me||null===(Dl=me[ze])||void 0===Dl||null===(Tl=Dl.eael_hover_effect_blur_hover)||void 0===Tl?void 0:Tl.size};if("yes"===(null==me||null===(Xl=me[ze])||void 0===Xl?void 0:Xl.eael_hover_effect_contrast_hover_is_on))W={contrast:null==me||null===(Ol=me[ze])||void 0===Ol||null===(Sl=Ol.eael_hover_effect_contrast_hover)||void 0===Sl?void 0:Sl.size};if("yes"===(null==me||null===(Yl=me[ze])||void 0===Yl?void 0:Yl.eael_hover_effect_grayscale_hover_is_on))$={grayscale:null==me||null===(Pl=me[ze])||void 0===Pl||null===(Zl=Pl.eael_hover_effect_grayscal_hover)||void 0===Zl?void 0:Zl.size};if("yes"===(null==me||null===(El=me[ze])||void 0===El?void 0:El.eael_hover_effect_invert_hover_is_on))ee={invert:null==me||null===(Fl=me[ze])||void 0===Fl||null===(Rl=Fl.eael_hover_effect_invert_hover)||void 0===Rl?void 0:Rl.size};if("yes"===(null==me||null===(Ml=me[ze])||void 0===Ml?void 0:Ml.eael_hover_effect_saturate_hover_is_on))le={saturate:null==me||null===(Al=me[ze])||void 0===Al||null===(Cl=Al.eael_hover_effect_saturate_hover)||void 0===Cl?void 0:Cl.size};if("yes"===(null==me||null===(jl=me[ze])||void 0===jl?void 0:jl.eael_hover_effect_sepia_is_on))te={sepia:null==me||null===(Hl=me[ze])||void 0===Hl||null===(Ql=Hl.eael_hover_effect_sepia_hover)||void 0===Ql?void 0:Ql.size}}if("yes"===(null==me||null===(Ye=me[ze])||void 0===Ye?void 0:Ye.eael_hover_effect_offset_popover))ue={size:null==me||null===(Ge=me[ze])||void 0===Ge||null===(Ie=Ge.eael_hover_effect_offset_top)||void 0===Ie?void 0:Ie.size,unit:null==me||null===(Je=me[ze])||void 0===Je||null===(Ke=Je.eael_hover_effect_offset_top)||void 0===Ke?void 0:Ke.unit},fe={size:null==me||null===(Le=me[ze])||void 0===Le||null===(Ne=Le.eael_hover_effect_offset_left)||void 0===Ne?void 0:Ne.size,unit:null==me||null===(Ue=me[ze])||void 0===Ue||null===(Ve=Ue.eael_hover_effect_offset_left)||void 0===Ve?void 0:Ve.unit};if("yes"===(null==me||null===(Ee=me[ze])||void 0===Ee?void 0:Ee.eael_hover_effect_offset_hover_popover))he={size:null==me||null===(We=me[ze])||void 0===We||null===($e=We.eael_hover_effect_offset_hover_top)||void 0===$e?void 0:$e.size,unit:null==me||null===(el=me[ze])||void 0===el||null===(ll=el.eael_hover_effect_offset_hover_top)||void 0===ll?void 0:ll.unit},ye={size:null==me||null===(tl=me[ze])||void 0===tl||null===(ol=tl.eael_hover_effect_offset_hover_left)||void 0===ol?void 0:ol.size,unit:null==me||null===(nl=me[ze])||void 0===nl||null===(al=nl.eael_hover_effect_offset_hover_left)||void 0===al?void 0:al.unit};if("yes"===(null==me||null===(Me=me[ze])||void 0===Me?void 0:Me.eael_hover_effect_transform_popover)){var ql,Bl,Gl,Il,Jl,Kl,Ll,Nl,Ul,Vl,Wl,$l,et,lt,tt,ot,nt;if("yes"===(null==me||null===(ql=me[ze])||void 0===ql?void 0:ql.eael_hover_effect_rotate_is_on))H={rotate_x:null==me||null===(Il=me[ze])||void 0===Il||null===(Jl=Il.eael_hover_effect_transform_rotatex)||void 0===Jl?void 0:Jl.size,rotate_y:null==me||null===(Kl=me[ze])||void 0===Kl||null===(Ll=Kl.eael_hover_effect_transform_rotatey)||void 0===Ll?void 0:Ll.size,rotate_z:null==me||null===(Nl=me[ze])||void 0===Nl||null===(Ul=Nl.eael_hover_effect_transform_rotatez)||void 0===Ul?void 0:Ul.size};if("yes"===(null==me||null===(Bl=me[ze])||void 0===Bl?void 0:Bl.eael_hover_effect_scale_is_on))Q={scale_x:null==me||null===(Vl=me[ze])||void 0===Vl||null===(Wl=Vl.eael_hover_effect_transform_scalex)||void 0===Wl?void 0:Wl.size,scale_y:null==me||null===($l=me[ze])||void 0===$l||null===(et=$l.eael_hover_effect_transform_scaley)||void 0===et?void 0:et.size};if("yes"===(null==me||null===(Gl=me[ze])||void 0===Gl?void 0:Gl.eael_hover_effect_skew_is_on))q={skew_x:null==me||null===(lt=me[ze])||void 0===lt||null===(tt=lt.eael_hover_effect_transform_skewx)||void 0===tt?void 0:tt.size,skew_y:null==me||null===(ot=me[ze])||void 0===ot||null===(nt=ot.eael_hover_effect_transform_skewy)||void 0===nt?void 0:nt.size}}if("yes"===(null==me||null===(je=me[ze])||void 0===je?void 0:je.eael_hover_effect_transform_hover_popover)){var at,it,rt,_t,vt,st,ct,dt,ut,ft,ht,yt,pt,gt,mt,zt,wt;if("yes"===(null==me||null===(at=me[ze])||void 0===at?void 0:at.eael_hover_effect_rotate_hover_is_on))oe={rotate_x:null==me||null===(_t=me[ze])||void 0===_t||null===(vt=_t.eael_hover_effect_transform_hover_rotatex)||void 0===vt?void 0:vt.size,rotate_y:null==me||null===(st=me[ze])||void 0===st||null===(ct=st.eael_hover_effect_transform_hover_rotatey)||void 0===ct?void 0:ct.size,rotate_z:null==me||null===(dt=me[ze])||void 0===dt||null===(ut=dt.eael_hover_effect_transform_hover_rotatez)||void 0===ut?void 0:ut.size};if("yes"===(null==me||null===(it=me[ze])||void 0===it?void 0:it.eael_hover_effect_scale_hover_is_on))ne={scale_x:null==me||null===(ft=me[ze])||void 0===ft||null===(ht=ft.eael_hover_effect_transform_hover_scalex)||void 0===ht?void 0:ht.size,scale_y:null==me||null===(yt=me[ze])||void 0===yt||null===(pt=yt.eael_hover_effect_transform_hover_scaley)||void 0===pt?void 0:pt.size};if("yes"===(null==me||null===(rt=me[ze])||void 0===rt?void 0:rt.eael_hover_effect_skew_hover_is_on))ae={skew_x:null==me||null===(gt=me[ze])||void 0===gt||null===(mt=gt.eael_hover_effect_transform_hover_skewx)||void 0===mt?void 0:mt.size,skew_y:null==me||null===(zt=me[ze])||void 0===zt||null===(wt=zt.eael_hover_effect_transform_hover_skewy)||void 0===wt?void 0:wt.size}}re={transitionDuration:null==me||null===(De=me[ze])||void 0===De||null===(Te=De.eael_hover_effect_general_settings_duration)||void 0===Te?void 0:Te.size},_e={transitionDelay:null==me||null===(Oe=me[ze])||void 0===Oe||null===(Se=Oe.eael_hover_effect_general_settings_delay)||void 0===Se?void 0:Se.size},ve={transitionEasing:null==me||null===(Pe=me[ze])||void 0===Pe?void 0:Pe.eael_hover_effect_general_settings_easing},se={transitionDuration:null==me||null===(Ze=me[ze])||void 0===Ze||null===(Fe=Ze.eael_hover_effect_general_settings_duration)||void 0===Fe?void 0:Fe.size},ce={transitionDelay:null==me||null===(Re=me[ze])||void 0===Re||null===(Ae=Re.eael_hover_effect_general_settings_delay)||void 0===Ae?void 0:Ae.size},de={transitionEasing:null==me||null===(Ce=me[ze])||void 0===Ce?void 0:Ce.eael_hover_effect_general_settings_easing}}}var bt=window.isEditMode?'body [data-id="'.concat(U,'"] > .elementor-widget-container'):'body .eael_hover_effect[data-id="'.concat(U,'"] > .elementor-widget-container'),xt=l(bt),kt=B?null===(t=B)||void 0===t?void 0:t.opacity:"1",Xt=null!==(o=ue)&&void 0!==o&&o.size?"translateX(".concat(ue.size).concat(ue.unit,")"):"translateX(0)",Yt=null!==(n=fe)&&void 0!==n&&n.size?"translateY(".concat(fe.size).concat(fe.unit,")"):"translateY(0)",Et=null!==(a=he)&&void 0!==a&&a.size?"translateX(".concat(he.size).concat(he.unit,")"):"translateX(0)",Mt=null!==(i=ye)&&void 0!==i&&i.size?"translateY(".concat(ye.size).concat(ye.unit,")"):"translateY(0)",jt=re?null===(r=re)||void 0===r?void 0:r.transitionDuration:"0",Dt=_e?null===(_=_e)||void 0===_?void 0:_.transitionDelay:"0",Tt=ve?null===(v=ve)||void 0===v?void 0:v.transitionEasing:"0",Ot=se?null===(s=se)||void 0===s?void 0:s.transitionDuration:"0",St=ce?null===(c=ce)||void 0===c?void 0:c.transitionDelay:"0",Pt=de?null===(d=de)||void 0===d?void 0:d.transitionEasing:"0",Zt=null!==(u=G)&&void 0!==u&&u.blur?"blur(".concat(G.blur,"px)"):"blur(0px)",Ft=null!==(f=I)&&void 0!==f&&f.contrast?"contrast(".concat(I.contrast,"%)"):"contrast(100%)",Rt=null!==(h=J)&&void 0!==h&&h.grayscale?"grayscale(".concat(J.grayscale,"%)"):"grayscale(0%)",At=null!==(y=K)&&void 0!==y&&y.invert?"invert(".concat(K.invert,"%)"):"invert(0%)",Ct=null!==(p=L)&&void 0!==p&&p.saturate?"saturate(".concat(L.saturate,"%)"):"saturate(100%)",Ht=null!==(g=N)&&void 0!==g&&g.sepia?"sepia(".concat(N.sepia,"%)"):"sepia(0%)",Qt=null!==(m=H)&&void 0!==m&&m.rotate_x?"rotateX(".concat(H.rotate_x,"deg)"):"rotateX(0)",qt=null!==(z=H)&&void 0!==z&&z.rotate_y?"rotateY(".concat(H.rotate_y,"deg)"):"rotateY(0)",Bt=null!==(w=H)&&void 0!==w&&w.rotate_z?"rotateZ(".concat(H.rotate_z,"deg)"):"rotateZ(0)",Gt=null!==(b=Q)&&void 0!==b&&b.scale_x?"scaleX(".concat(Q.scale_x,")"):"scaleX(1)",It=null!==(x=Q)&&void 0!==x&&x.scale_y?"scaleY(".concat(Q.scale_y,")"):"scaleY(1)",Jt=null!==(k=q)&&void 0!==k&&k.skew_x?"skewX(".concat(q.skew_x,"deg)"):"skewX(0deg)",Kt=null!==(X=q)&&void 0!==X&&X.skew_y?"skewY(".concat(q.skew_y,"deg)"):"skewY(0deg)",Lt=ie?null===(Y=ie)||void 0===Y?void 0:Y.opacity:"1",Nt=null!==(E=oe)&&void 0!==E&&E.rotate_x?"rotateX(".concat(oe.rotate_x,"deg)"):"rotateX(0)",Ut=null!==(M=oe)&&void 0!==M&&M.rotate_y?"rotateY(".concat(oe.rotate_y,"deg)"):"rotateY(0)",Vt=null!==(j=oe)&&void 0!==j&&j.rotate_z?"rotateZ(".concat(oe.rotate_z,"deg)"):"rotateZ(0)",Wt=null!==(D=ne)&&void 0!==D&&D.scale_x?"scaleX(".concat(ne.scale_x,")"):"scaleX(1)",$t=null!==(T=ne)&&void 0!==T&&T.scale_y?"scaleY(".concat(ne.scale_y,")"):"scaleY(1)",eo=null!==(O=ae)&&void 0!==O&&O.skew_x?"skewX(".concat(ae.skew_x,"deg)"):"skewX(0)",lo=null!==(S=ae)&&void 0!==S&&S.skew_y?"skewY(".concat(ae.skew_y,"deg)"):"skewY(0)",to=null!==(P=V)&&void 0!==P&&P.blur?"blur(".concat(V.blur,"px)"):"blur(0px)",oo=null!==(Z=W)&&void 0!==Z&&Z.contrast?"contrast(".concat(W.contrast,"%)"):"contrast(100%)",no=null!==(F=$)&&void 0!==F&&F.grayscale?"grayscale(".concat($.grayscale,"%)"):"grayscale(0%)",ao=null!==(R=ee)&&void 0!==R&&R.invert?"invert(".concat(ee.invert,"%)"):"invert(0%)",io=null!==(A=le)&&void 0!==A&&A.saturate?"saturate(".concat(le.saturate,"%)"):"saturate(100%)",ro=null!==(C=te)&&void 0!==C&&C.sepia?"sepia(".concat(te.sepia,"%)"):"sepia(0%)",_o={transform:"".concat(Qt," ").concat(qt," ").concat(Bt," ").concat(Gt," ").concat(It," ").concat(Jt," ").concat(Kt," ").concat(Xt," ").concat(Yt),opacity:kt,filter:"".concat(Zt," ").concat(Ft," ").concat(Rt," ").concat(At," ").concat(Ct," ").concat(Ht),"transition-property":"all","transition-duration":"".concat(jt,"ms"),"transition-delay":"".concat(Dt,"ms"),"transition-timing-function":Tt,"z-index":1},vo={opacity:Lt,filter:"".concat(to," ").concat(oo," ").concat(no," ").concat(ao," ").concat(io," ").concat(ro),transform:"".concat(Nt," ").concat(Ut," ").concat(Vt," ").concat(Wt," ").concat($t," ").concat(eo," ").concat(lo," ").concat(Et," ").concat(Mt),"transition-property":"all","transition-duration":"".concat(Ot,"ms"),"transition-delay":"".concat(St,"ms"),"transition-timing-function":Pt,"z-index":2};(window.isEditMode&&ge.includes(U)||!window.isEditMode&&xt.length)&&(xt.hover((function(){l(this).css(vo)}),(function(){l(this).css(_o)})),xt.css(_o)),"eael_tilt"===pe&&(l(".elementor-element-".concat(U)).mousemove((function(e){var t=(e.pageX-l(this).offset().left-l(this).width()/2)/20,o=(l(this).height()/2-(e.pageY-l(this).offset().top))/20;l(this).find(".elementor-widget-container").css("transform","perspective(500px) rotateY("+t+"deg) rotateX("+o+"deg)")})),l(".elementor-element-".concat(U)).mouseleave((function(e){l(this).find(".elementor-widget-container").css("transform","rotateY(0) rotateX(0)")})))};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelHoverEffect"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/widget",t)}))}}); \ No newline at end of file diff --git a/assets/front-end/js/view/image-accordion.js b/assets/front-end/js/view/image-accordion.js index 976c885fc..24a50986f 100644 --- a/assets/front-end/js/view/image-accordion.js +++ b/assets/front-end/js/view/image-accordion.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nvar ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n function hoverAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n element.find(\".overlay\").parent(\".eael-image-accordion-hover\").addClass(\"overlay-active\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n element.find(\".overlay-inner\").addClass(\"overlay-inner-show\");\n element.css(\"flex\", \"3\");\n }\n function hoverOutAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n }\n if (\"on-click\" === $type) {\n $(\".eael-image-accordion-hover\", $scope).on(\"click\", function (e) {\n hoverAction(e, $(this));\n });\n } else {\n $(\".eael-image-accordion-hover\", $scope).hover(function (e) {\n hoverAction(e, $(this));\n });\n $(\".eael-image-accordion-hover\", $scope).mouseleave(function (e) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"12660125_48_12_48_32_4\", 'leave')));\n hoverOutAction(e, $(this));\n });\n }\n};\neael.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-image-accordion.default\", ImageAccordion);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/image-accordion.js?"); +eval("var ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n function hoverAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n element.find(\".overlay\").parent(\".eael-image-accordion-hover\").addClass(\"overlay-active\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n element.find(\".overlay-inner\").addClass(\"overlay-inner-show\");\n element.css(\"flex\", \"3\");\n }\n function hoverOutAction(event, element) {\n if (element.hasClass(\"overlay-active\") === false) {\n event.preventDefault();\n }\n var imageAccordion = $(\".eael-image-accordion-hover\", $scope);\n imageAccordion.removeClass(\"overlay-active\");\n imageAccordion.css(\"flex\", \"1\");\n imageAccordion.find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n }\n if (\"on-click\" === $type) {\n $(\".eael-image-accordion-hover\", $scope).on(\"click\", function (e) {\n hoverAction(e, $(this));\n });\n } else {\n $(\".eael-image-accordion-hover\", $scope).hover(function (e) {\n hoverAction(e, $(this));\n });\n $(\".eael-image-accordion-hover\", $scope).mouseleave(function (e) {\n console.log('leave');\n hoverOutAction(e, $(this));\n });\n }\n};\neael.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-image-accordion.default\", ImageAccordion);\n});\n\n//# sourceURL=webpack:///./src/js/view/image-accordion.js?"); /***/ }) diff --git a/assets/front-end/js/view/load-more.js b/assets/front-end/js/view/load-more.js index 432b207c0..32ccf36a9 100644 --- a/assets/front-end/js/view/load-more.js +++ b/assets/front-end/js/view/load-more.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\n(function ($) {\n \"use strict\";\n\n eael.getToken();\n $(document).on(\"click\", \".eael-load-more-button\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n e.stopImmediatePropagation();\n var $this = $(this),\n $LoaderSpan = $(\".eael_load_more_text\", $this),\n $text = $LoaderSpan.html(),\n $widget_id = $this.data(\"widget\"),\n $page_id = $this.data(\"page-id\"),\n $nonce = localize.nonce,\n $scope = $(\".elementor-element-\" + $widget_id),\n $class = $this.data(\"class\"),\n $args = $this.data(\"args\"),\n $layout = $this.data(\"layout\"),\n $template_info = $this.data(\"template\"),\n $page = parseInt($this.data(\"page\")) + 1,\n $max_page = $this.data(\"max-page\") != undefined ? parseInt($this.data(\"max-page\")) : false,\n $exclude_ids = [],\n $active_term_id = 0,\n $active_taxonomy = '';\n $this.attr('disabled', true);\n if (typeof $widget_id == \"undefined\" || typeof $args == \"undefined\") {\n return;\n }\n var obj = {};\n var $data = {\n action: \"load_more\",\n \"class\": $class,\n args: $args,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce,\n template_info: $template_info\n };\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n var $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n var eael_cat_tab = localStorage.getItem('eael-cat-tab');\n if (eael_cat_tab == 'true') {\n localStorage.removeItem('eael-cat-tab');\n var $gallery_page = 1 + 1;\n } else {\n var $gallery_page = parseInt($('.eael-cat-tab li a.active', $scope).data(\"page\")) + 1;\n }\n $data.taxonomy = $taxonomy;\n $data.page = isNaN($gallery_page) ? $page : $gallery_page;\n }\n if ($data[\"class\"] === \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $('.dynamic-gallery-item-inner', $scope).each(function () {\n $exclude_ids.push($(this).data('itemid'));\n });\n $active_term_id = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('termid');\n $active_taxonomy = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('taxonomy');\n $data.page = 1; //page flag is not needed since we are using exclude ids\n $data.exclude_ids = JSON.stringify($exclude_ids);\n $data.active_term_id = typeof $active_term_id === 'undefined' ? 0 : $active_term_id;\n $data.active_taxonomy = typeof $active_taxonomy === 'undefined' ? '' : $active_taxonomy;\n }\n String($args).split(\"&\").forEach(function (item, index) {\n var arr = String(item).split(\"=\");\n obj[arr[0]] = arr[1];\n });\n if (obj.orderby == \"rand\") {\n var $printed = $(\".eael-grid-post\");\n if ($printed.length) {\n var $ids = [];\n $printed.each(function (index, item) {\n var $id = $(item).data(\"id\");\n $ids.push($id);\n });\n $data.post__not_in = $ids;\n }\n }\n $this.addClass(\"button--loading\");\n $LoaderSpan.html(localize.i18n.loading);\n var filterable_gallery_load_more_btn = function filterable_gallery_load_more_btn($this) {\n var active_tab = $this.closest('.eael-filter-gallery-wrapper').find('.dynamic-gallery-category.active'),\n active_filter = active_tab.data('filter'),\n rest_filter = active_tab.siblings().not('.no-more-posts');\n $this.addClass('hide');\n active_tab.addClass('no-more-posts');\n if (rest_filter.length === 1 && rest_filter.data('filter') === '*') {\n rest_filter.addClass('no-more-posts');\n }\n if (active_filter === '*') {\n active_tab.siblings().addClass('no-more-posts');\n }\n };\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: $data,\n success: function success(response) {\n var $content = $(response);\n $this.removeAttr('disabled');\n if ($content.hasClass(\"no-posts-found\") || $content.length === 0) {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n $this.removeClass('button--loading').addClass('hide-load-more');\n $LoaderSpan.html($text);\n } else if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $this.removeClass('button--loading');\n $LoaderSpan.html($text);\n filterable_gallery_load_more_btn($this);\n } else {\n $this.remove();\n }\n } else {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Product_Grid\") {\n $content = $content.filter(\"li\");\n $(\".eael-product-grid .products\", $scope).append($content);\n if ($layout == \"masonry\") {\n var dynamicID = \"eael-product-\" + Date.now();\n var $isotope = $(\".eael-product-grid .products\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n $content.find(\".woocommerce-product-gallery\").addClass(dynamicID);\n $content.find(\".woocommerce-product-gallery\").addClass(\"eael-new-product\");\n $(\".woocommerce-product-gallery.\" + dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n } else {\n var _dynamicID = \"eael-product-\" + Date.now();\n $content.find('.woocommerce-product-gallery').addClass(_dynamicID);\n $content.find('.woocommerce-product-gallery').addClass('eael-new-product');\n $(\".woocommerce-product-gallery.\" + _dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n }\n } else {\n $(\".eael-post-appender\", $scope).append($content);\n if ($layout == \"masonry\") {\n var $isotope = $(\".eael-post-appender\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n }\n }\n $this.removeClass(\"button--loading\");\n $LoaderSpan.html($text);\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\" && $('.eael-cat-tab li a.active', $scope).length) {\n $('.eael-cat-tab li a.active', $scope).data(\"page\", $gallery_page);\n } else {\n $this.data(\"page\", $page);\n }\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n var found_posts = $($content[0]);\n if (found_posts.hasClass('found_posts') && found_posts.text() - obj.posts_per_page < 1) {\n filterable_gallery_load_more_btn($this);\n }\n } else {\n if ($max_page && $data.page >= $max_page) {\n $this.addClass('hide-load-more');\n }\n }\n }\n },\n error: function error(response) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1248887534_228_4_228_25_4\", response)));\n }\n });\n });\n $(window).on('scroll', function () {\n var scrollElements = $('.eael-infinity-scroll');\n if (scrollElements.length < 1) return false;\n $.each(scrollElements, function (index, element) {\n var scrollElement = $(element);\n var offset = scrollElement.data('offset');\n var elementTop = scrollElement.offset().top;\n var elementBottom = elementTop + scrollElement.outerHeight() - offset;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() - offset;\n var inView = elementBottom > viewportTop && elementTop < viewportHalf;\n if (inView) {\n $(\".eael-load-more-button\", scrollElement).trigger('click');\n }\n });\n });\n})(jQuery);\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/load-more.js?"); +eval("(function ($) {\n \"use strict\";\n\n eael.getToken();\n $(document).on(\"click\", \".eael-load-more-button\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n e.stopImmediatePropagation();\n var $this = $(this),\n $LoaderSpan = $(\".eael_load_more_text\", $this),\n $text = $LoaderSpan.html(),\n $widget_id = $this.data(\"widget\"),\n $page_id = $this.data(\"page-id\"),\n $nonce = localize.nonce,\n $scope = $(\".elementor-element-\" + $widget_id),\n $class = $this.data(\"class\"),\n $args = $this.data(\"args\"),\n $layout = $this.data(\"layout\"),\n $template_info = $this.data(\"template\"),\n $page = parseInt($this.data(\"page\")) + 1,\n $max_page = $this.data(\"max-page\") != undefined ? parseInt($this.data(\"max-page\")) : false,\n $exclude_ids = [],\n $active_term_id = 0,\n $active_taxonomy = '';\n $this.attr('disabled', true);\n if (typeof $widget_id == \"undefined\" || typeof $args == \"undefined\") {\n return;\n }\n var obj = {};\n var $data = {\n action: \"load_more\",\n \"class\": $class,\n args: $args,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce,\n template_info: $template_info\n };\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n var $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n var eael_cat_tab = localStorage.getItem('eael-cat-tab');\n if (eael_cat_tab == 'true') {\n localStorage.removeItem('eael-cat-tab');\n var $gallery_page = 1 + 1;\n } else {\n var $gallery_page = parseInt($('.eael-cat-tab li a.active', $scope).data(\"page\")) + 1;\n }\n $data.taxonomy = $taxonomy;\n $data.page = isNaN($gallery_page) ? $page : $gallery_page;\n }\n if ($data[\"class\"] === \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $('.dynamic-gallery-item-inner', $scope).each(function () {\n $exclude_ids.push($(this).data('itemid'));\n });\n $active_term_id = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('termid');\n $active_taxonomy = $(\".elementor-element-\" + $widget_id + ' .dynamic-gallery-category.active').data('taxonomy');\n $data.page = 1; //page flag is not needed since we are using exclude ids\n $data.exclude_ids = JSON.stringify($exclude_ids);\n $data.active_term_id = typeof $active_term_id === 'undefined' ? 0 : $active_term_id;\n $data.active_taxonomy = typeof $active_taxonomy === 'undefined' ? '' : $active_taxonomy;\n }\n String($args).split(\"&\").forEach(function (item, index) {\n var arr = String(item).split(\"=\");\n obj[arr[0]] = arr[1];\n });\n if (obj.orderby == \"rand\") {\n var $printed = $(\".eael-grid-post\");\n if ($printed.length) {\n var $ids = [];\n $printed.each(function (index, item) {\n var $id = $(item).data(\"id\");\n $ids.push($id);\n });\n $data.post__not_in = $ids;\n }\n }\n $this.addClass(\"button--loading\");\n $LoaderSpan.html(localize.i18n.loading);\n var filterable_gallery_load_more_btn = function filterable_gallery_load_more_btn($this) {\n var active_tab = $this.closest('.eael-filter-gallery-wrapper').find('.dynamic-gallery-category.active'),\n active_filter = active_tab.data('filter'),\n rest_filter = active_tab.siblings().not('.no-more-posts');\n $this.addClass('hide');\n active_tab.addClass('no-more-posts');\n if (rest_filter.length === 1 && rest_filter.data('filter') === '*') {\n rest_filter.addClass('no-more-posts');\n }\n if (active_filter === '*') {\n active_tab.siblings().addClass('no-more-posts');\n }\n };\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: $data,\n success: function success(response) {\n var $content = $(response);\n $this.removeAttr('disabled');\n if ($content.hasClass(\"no-posts-found\") || $content.length === 0) {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\") {\n $this.removeClass('button--loading').addClass('hide-load-more');\n $LoaderSpan.html($text);\n } else if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n $this.removeClass('button--loading');\n $LoaderSpan.html($text);\n filterable_gallery_load_more_btn($this);\n } else {\n $this.remove();\n }\n } else {\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Product_Grid\") {\n $content = $content.filter(\"li\");\n $(\".eael-product-grid .products\", $scope).append($content);\n if ($layout == \"masonry\") {\n var dynamicID = \"eael-product-\" + Date.now();\n var $isotope = $(\".eael-product-grid .products\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n $content.find(\".woocommerce-product-gallery\").addClass(dynamicID);\n $content.find(\".woocommerce-product-gallery\").addClass(\"eael-new-product\");\n $(\".woocommerce-product-gallery.\" + dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n } else {\n var _dynamicID = \"eael-product-\" + Date.now();\n $content.find('.woocommerce-product-gallery').addClass(_dynamicID);\n $content.find('.woocommerce-product-gallery').addClass('eael-new-product');\n $(\".woocommerce-product-gallery.\" + _dynamicID, $scope).each(function () {\n $(this).wc_product_gallery();\n });\n }\n } else {\n $(\".eael-post-appender\", $scope).append($content);\n if ($layout == \"masonry\") {\n var $isotope = $(\".eael-post-appender\", $scope).isotope();\n $isotope.isotope(\"appended\", $content).isotope(\"layout\");\n $isotope.imagesLoaded().progress(function () {\n $isotope.isotope(\"layout\");\n });\n }\n }\n $this.removeClass(\"button--loading\");\n $LoaderSpan.html($text);\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Elements\\\\Woo_Product_Gallery\" && $('.eael-cat-tab li a.active', $scope).length) {\n $('.eael-cat-tab li a.active', $scope).data(\"page\", $gallery_page);\n } else {\n $this.data(\"page\", $page);\n }\n if ($data[\"class\"] == \"Essential_Addons_Elementor\\\\Pro\\\\Elements\\\\Dynamic_Filterable_Gallery\") {\n var found_posts = $($content[0]);\n if (found_posts.hasClass('found_posts') && found_posts.text() - obj.posts_per_page < 1) {\n filterable_gallery_load_more_btn($this);\n }\n } else {\n if ($max_page && $data.page >= $max_page) {\n $this.addClass('hide-load-more');\n }\n }\n }\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n $(window).on('scroll', function () {\n var scrollElements = $('.eael-infinity-scroll');\n if (scrollElements.length < 1) return false;\n $.each(scrollElements, function (index, element) {\n var scrollElement = $(element);\n var offset = scrollElement.data('offset');\n var elementTop = scrollElement.offset().top;\n var elementBottom = elementTop + scrollElement.outerHeight() - offset;\n var viewportTop = $(window).scrollTop();\n var viewportHalf = viewportTop + $(window).height() - offset;\n var inView = elementBottom > viewportTop && elementTop < viewportHalf;\n if (inView) {\n $(\".eael-load-more-button\", scrollElement).trigger('click');\n }\n });\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/load-more.js?"); /***/ }) diff --git a/assets/front-end/js/view/product-grid.js b/assets/front-end/js/view/product-grid.js index cf13b574a..5fe7442ab 100644 --- a/assets/front-end/js/view/product-grid.js +++ b/assets/front-end/js/view/product-grid.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\neael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"2979086449_184_3_184_30_4\", err.toString())));\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n if (eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\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 var iconBeforeCompare = '';\n var iconAfterCompare = '';\n var modalTemplate = \"\\n
\\n \\n
\\n
\\n
\\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 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 if ($wrap.hasClass('masonry')) {\n $doc.ajaxComplete(function () {\n $(window).trigger('resize');\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\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 var oldProductIds = localStorage.getItem('productIds');\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\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 if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n sendData(rmData, handleSuccess, handleError);\n });\n function handleSuccess(data) {\n var success = data && data.success;\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 if (loader) {\n loader.hide();\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 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 function handleError(xhr, err) {\n console.log(err.toString());\n }\n\n // pagination\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n navClass = $this.closest(\".eael-woo-pagination\"),\n nth = $this.data(\"pnumber\"),\n lmt = navClass.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = navClass.data(\"args\"),\n widgetid = navClass.data(\"widgetid\"),\n pageid = navClass.data(\"pageid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = navClass.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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n templateInfo: template_info\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 widget_id: widgetid,\n page_id: pageid,\n security: localize.nonce,\n template_name: template_info.name\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 eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n function eael_add_popup() {\n var markup = \"
\\n
\\n
\\n
\";\n $(\"body\").append(markup);\n }\n };\n if (eael.elementStatusCheck('eaelProductGridLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?"); /***/ }) diff --git a/assets/front-end/js/view/woo-product-gallery.js b/assets/front-end/js/view/woo-product-gallery.js index 7318562fd..76295e5aa 100644 --- a/assets/front-end/js/view/woo-product-gallery.js +++ b/assets/front-end/js/view/woo-product-gallery.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\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.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\neael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n var _console;\n /* eslint-disable */(_console = console).log.apply(_console, _toConsumableArray(oo_oo(\"1424553466_103_5_103_26_4\", response)));\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n/* istanbul ignore next */ /* c8 ignore start */ /* eslint-disable */\n;\nfunction oo_cm() {\n try {\n return (0, eval)(\"globalThis._console_ninja\") || (0, eval)(\"/* https://github.com/wallabyjs/console-ninja#how-does-it-work */'use strict';var _0x277122=_0xc5ab;function _0x16b5(){var _0xa1823c=['_hasSetOnItsPath','_connecting','autoExpandLimit','sortProps','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host','_treeNodePropertiesBeforeFullValue','getPrototypeOf','replace','pathToFileURL','unshift','date','_additionalMetadata','default','stringify','process','setter','_isSet','now','[object\\\\x20Set]','autoExpandPropertyCount','elements','stackTraceLimit','18372740bHyhYr','toLowerCase','_setNodeLabel','_dateToString','edge','_propertyName','63361icYNzh','array','_connected','index','Number','concat','expId','WebSocket','getOwnPropertyDescriptor','_numberRegExp','current','negativeInfinity','match','next.js','map','HTMLAllCollection','_getOwnPropertyDescriptor','toString',[\\\"localhost\\\",\\\"127.0.0.1\\\",\\\"example.cypress.io\\\",\\\"Himadrees-MBP.localdomain\\\",\\\"192.168.1.224\\\"],'parse','autoExpand','props','webpack','positiveInfinity','join','disabledLog','%c\\\\x20Console\\\\x20Ninja\\\\x20extension\\\\x20is\\\\x20connected\\\\x20to\\\\x20','Buffer','_socket','name','null','_setNodeExpandableState','method','root_exp','49851','[object\\\\x20BigInt]','undefined','nodeModules','_sendErrorMessage','depth','global','_addProperty','defineProperty','nan','_blacklistedProperty','\\\\x20browser','3606463hpwOgk','test','_allowedToSend','send','some','object','see\\\\x20https://tinyurl.com/2vt8jxzw\\\\x20for\\\\x20more\\\\x20info.','_HTMLAllCollection','unknown','split','indexOf','Map','_getOwnPropertyNames','_setNodePermissions','1725787756708','_isMap','_isUndefined','Symbol','_property','RegExp','astro','_ws','3123JAjneK','get','totalStrLength','[object\\\\x20Map]','_connectAttemptCount','host','[object\\\\x20Array]','Boolean','_getOwnPropertySymbols','sort','root_exp_id','unref','reload','','3ABiXMk','\\\\x20server','error','gateway.docker.internal','bigint','_console_ninja','negativeZero','getOwnPropertySymbols','cappedProps','string','hostname','_objectToString','_setNodeExpressionPath','resolveGetters','_setNodeId','_reconnectTimeout','Set','console','onmessage','endsWith','_Symbol','_undefined','_inBrowser','timeStamp','127.0.0.1','getOwnPropertyNames','_addFunctionsNode','elapsed','enumerable','isExpressionToEvaluate','node','function','logger\\\\x20failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host,\\\\x20see\\\\x20','data','https://tinyurl.com/37x8b79t','_allowedToConnectOnSend','_addObjectProperty','noFunctions','startsWith','_isNegativeZero','reduceLimits','3574804wGdXXu','bind','log','substr','_isPrimitiveWrapperType','_isPrimitiveType','create','_treeNodePropertiesAfterFullValue','_connectToHostNow','_keyStrRegExp','1.0.0','performance','getWebSocketClass','message','prototype','constructor','38408OqGOST','then','ws://','18FXuSSO','stack','port','angular','_consoleNinjaAllowedToStart','5141040bNQfuK','number','','_console_ninja_session','warn','boolean','location','_isArray','allStrLength','_attemptToReconnectShortly','slice','versions','origin','perf_hooks','strLength','length','_p_name','onopen','eventReceivedCallback','autoExpandMaxDepth','_regExpToString','count','getter','set','String','capped','forEach','hasOwnProperty','ws/index.js','path','parent','_processTreeNodeResult','dockerizedApp','_p_','NEGATIVE_INFINITY','logger\\\\x20websocket\\\\x20error','1','charAt','...','trace','_maxConnectAttemptCount','value','onerror','args','_hasSymbolPropertyOnItsPath','_inNextEdge','hits','_WebSocketClass','_capIfString','_sortProps','time','onclose','failed\\\\x20to\\\\x20find\\\\x20and\\\\x20load\\\\x20WebSocket','level','_webSocketErrorDocsLink',\\\"/Users/himadree/.vscode/extensions/wallabyjs.console-ninja-1.0.357/node_modules\\\",'pop','env','valueOf','fromCharCode','_setNodeQueryPath','type','cappedElements','symbol','push','call','rootExpression','close','6452480sIuOir','hrtime','expressionsToEvaluate','serialize','readyState','Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20restarting\\\\x20the\\\\x20process\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20','autoExpandPreviousObjects','toUpperCase','_disposeWebsocket','_WebSocket','__es'+'Module','catch','_cleanNode','_type','NEXT_RUNTIME'];_0x16b5=function(){return _0xa1823c;};return _0x16b5();}(function(_0x3042d2,_0x53ea59){var _0x46f915=_0xc5ab,_0x23aa03=_0x3042d2();while(!![]){try{var _0x5b63f1=parseInt(_0x46f915(0x182))/0x1+parseInt(_0x46f915(0x1fd))/0x2*(parseInt(_0x46f915(0x1d4))/0x3)+-parseInt(_0x46f915(0x215))/0x4+-parseInt(_0x46f915(0x157))/0x5+-parseInt(_0x46f915(0x210))/0x6*(-parseInt(_0x46f915(0x1b0))/0x7)+-parseInt(_0x46f915(0x20d))/0x8*(parseInt(_0x46f915(0x1c6))/0x9)+parseInt(_0x46f915(0x17c))/0xa;if(_0x5b63f1===_0x53ea59)break;else _0x23aa03['push'](_0x23aa03['shift']());}catch(_0xcd60bd){_0x23aa03['push'](_0x23aa03['shift']());}}}(_0x16b5,0xf22d9));var K=Object[_0x277122(0x203)],Q=Object[_0x277122(0x1ac)],G=Object[_0x277122(0x18a)],ee=Object[_0x277122(0x1ed)],te=Object[_0x277122(0x16c)],ne=Object[_0x277122(0x20b)][_0x277122(0x12e)],re=(_0x371906,_0x55a3e2,_0x3af47c,_0x165ef5)=>{var _0x575e23=_0x277122;if(_0x55a3e2&&typeof _0x55a3e2==_0x575e23(0x1b5)||typeof _0x55a3e2=='function'){for(let _0x27bee9 of ee(_0x55a3e2))!ne[_0x575e23(0x154)](_0x371906,_0x27bee9)&&_0x27bee9!==_0x3af47c&&Q(_0x371906,_0x27bee9,{'get':()=>_0x55a3e2[_0x27bee9],'enumerable':!(_0x165ef5=G(_0x55a3e2,_0x27bee9))||_0x165ef5[_0x575e23(0x1f0)]});}return _0x371906;},V=(_0x169a06,_0x165248,_0x5c1060)=>(_0x5c1060=_0x169a06!=null?K(te(_0x169a06)):{},re(_0x165248||!_0x169a06||!_0x169a06[_0x277122(0x161)]?Q(_0x5c1060,_0x277122(0x172),{'value':_0x169a06,'enumerable':!0x0}):_0x5c1060,_0x169a06)),x=class{constructor(_0xba3f07,_0xbb405a,_0x4c765b,_0x167a4f,_0x38af46,_0x2c79b5){var _0x3fa3fb=_0x277122,_0x8aa9f5,_0x290311,_0x176214,_0xf92787;this[_0x3fa3fb(0x1aa)]=_0xba3f07,this[_0x3fa3fb(0x1cb)]=_0xbb405a,this[_0x3fa3fb(0x212)]=_0x4c765b,this[_0x3fa3fb(0x1a7)]=_0x167a4f,this[_0x3fa3fb(0x133)]=_0x38af46,this[_0x3fa3fb(0x125)]=_0x2c79b5,this[_0x3fa3fb(0x1b2)]=!0x0,this['_allowedToConnectOnSend']=!0x0,this[_0x3fa3fb(0x184)]=!0x1,this[_0x3fa3fb(0x167)]=!0x1,this['_inNextEdge']=((_0x290311=(_0x8aa9f5=_0xba3f07['process'])==null?void 0x0:_0x8aa9f5[_0x3fa3fb(0x14c)])==null?void 0x0:_0x290311[_0x3fa3fb(0x165)])===_0x3fa3fb(0x180),this[_0x3fa3fb(0x1ea)]=!((_0xf92787=(_0x176214=this[_0x3fa3fb(0x1aa)][_0x3fa3fb(0x174)])==null?void 0x0:_0x176214[_0x3fa3fb(0x220)])!=null&&_0xf92787[_0x3fa3fb(0x1f2)])&&!this[_0x3fa3fb(0x140)],this[_0x3fa3fb(0x142)]=null,this[_0x3fa3fb(0x1ca)]=0x0,this[_0x3fa3fb(0x13b)]=0x14,this[_0x3fa3fb(0x149)]=_0x3fa3fb(0x1f6),this['_sendErrorMessage']=(this[_0x3fa3fb(0x1ea)]?'Console\\\\x20Ninja\\\\x20failed\\\\x20to\\\\x20send\\\\x20logs,\\\\x20refreshing\\\\x20the\\\\x20page\\\\x20may\\\\x20help;\\\\x20also\\\\x20see\\\\x20':_0x3fa3fb(0x15c))+this[_0x3fa3fb(0x149)];}async['getWebSocketClass'](){var _0x166d81=_0x277122,_0x4a3567,_0x31201e;if(this['_WebSocketClass'])return this[_0x166d81(0x142)];let _0x15eef9;if(this[_0x166d81(0x1ea)]||this[_0x166d81(0x140)])_0x15eef9=this['global'][_0x166d81(0x189)];else{if((_0x4a3567=this[_0x166d81(0x1aa)][_0x166d81(0x174)])!=null&&_0x4a3567[_0x166d81(0x160)])_0x15eef9=(_0x31201e=this[_0x166d81(0x1aa)][_0x166d81(0x174)])==null?void 0x0:_0x31201e[_0x166d81(0x160)];else try{let _0x4e48a3=await import(_0x166d81(0x130));_0x15eef9=(await import((await import('url'))[_0x166d81(0x16e)](_0x4e48a3[_0x166d81(0x19a)](this['nodeModules'],_0x166d81(0x12f)))['toString']()))[_0x166d81(0x172)];}catch{try{_0x15eef9=require(require(_0x166d81(0x130))[_0x166d81(0x19a)](this[_0x166d81(0x1a7)],'ws'));}catch{throw new Error(_0x166d81(0x147));}}}return this[_0x166d81(0x142)]=_0x15eef9,_0x15eef9;}[_0x277122(0x205)](){var _0x51dc96=_0x277122;this['_connecting']||this['_connected']||this['_connectAttemptCount']>=this[_0x51dc96(0x13b)]||(this[_0x51dc96(0x1f7)]=!0x1,this[_0x51dc96(0x167)]=!0x0,this[_0x51dc96(0x1ca)]++,this[_0x51dc96(0x1c5)]=new Promise((_0x58c90f,_0x112630)=>{var _0x4c12d5=_0x51dc96;this[_0x4c12d5(0x209)]()[_0x4c12d5(0x20e)](_0x40518d=>{var _0x1b75d4=_0x4c12d5;let _0x49f47e=new _0x40518d(_0x1b75d4(0x20f)+(!this[_0x1b75d4(0x1ea)]&&this[_0x1b75d4(0x133)]?_0x1b75d4(0x1d7):this[_0x1b75d4(0x1cb)])+':'+this[_0x1b75d4(0x212)]);_0x49f47e[_0x1b75d4(0x13d)]=()=>{var _0x4ba6ce=_0x1b75d4;this[_0x4ba6ce(0x1b2)]=!0x1,this[_0x4ba6ce(0x15f)](_0x49f47e),this[_0x4ba6ce(0x21e)](),_0x112630(new Error(_0x4ba6ce(0x136)));},_0x49f47e[_0x1b75d4(0x124)]=()=>{var _0x8fc509=_0x1b75d4;this[_0x8fc509(0x1ea)]||_0x49f47e['_socket']&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)]&&_0x49f47e[_0x8fc509(0x19e)][_0x8fc509(0x1d1)](),_0x58c90f(_0x49f47e);},_0x49f47e['onclose']=()=>{var _0x163a4c=_0x1b75d4;this[_0x163a4c(0x1f7)]=!0x0,this[_0x163a4c(0x15f)](_0x49f47e),this[_0x163a4c(0x21e)]();},_0x49f47e[_0x1b75d4(0x1e6)]=_0x36072=>{var _0x53acf1=_0x1b75d4;try{if(!(_0x36072!=null&&_0x36072[_0x53acf1(0x1f5)])||!this[_0x53acf1(0x125)])return;let _0x23adf4=JSON[_0x53acf1(0x195)](_0x36072['data']);this[_0x53acf1(0x125)](_0x23adf4[_0x53acf1(0x1a2)],_0x23adf4['args'],this[_0x53acf1(0x1aa)],this[_0x53acf1(0x1ea)]);}catch{}};})[_0x4c12d5(0x20e)](_0x261db6=>(this[_0x4c12d5(0x184)]=!0x0,this['_connecting']=!0x1,this['_allowedToConnectOnSend']=!0x1,this['_allowedToSend']=!0x0,this['_connectAttemptCount']=0x0,_0x261db6))[_0x4c12d5(0x162)](_0xd17c7c=>(this[_0x4c12d5(0x184)]=!0x1,this['_connecting']=!0x1,console['warn'](_0x4c12d5(0x1f4)+this[_0x4c12d5(0x149)]),_0x112630(new Error('failed\\\\x20to\\\\x20connect\\\\x20to\\\\x20host:\\\\x20'+(_0xd17c7c&&_0xd17c7c[_0x4c12d5(0x20a)])))));}));}[_0x277122(0x15f)](_0x2d53d4){var _0x112345=_0x277122;this[_0x112345(0x184)]=!0x1,this[_0x112345(0x167)]=!0x1;try{_0x2d53d4[_0x112345(0x146)]=null,_0x2d53d4[_0x112345(0x13d)]=null,_0x2d53d4[_0x112345(0x124)]=null;}catch{}try{_0x2d53d4[_0x112345(0x15b)]<0x2&&_0x2d53d4[_0x112345(0x156)]();}catch{}}['_attemptToReconnectShortly'](){var _0x5da88c=_0x277122;clearTimeout(this[_0x5da88c(0x1e3)]),!(this[_0x5da88c(0x1ca)]>=this[_0x5da88c(0x13b)])&&(this[_0x5da88c(0x1e3)]=setTimeout(()=>{var _0x3b3ae8=_0x5da88c,_0x36cd16;this[_0x3b3ae8(0x184)]||this[_0x3b3ae8(0x167)]||(this['_connectToHostNow'](),(_0x36cd16=this['_ws'])==null||_0x36cd16[_0x3b3ae8(0x162)](()=>this[_0x3b3ae8(0x21e)]()));},0x1f4),this[_0x5da88c(0x1e3)][_0x5da88c(0x1d1)]&&this['_reconnectTimeout'][_0x5da88c(0x1d1)]());}async[_0x277122(0x1b3)](_0x441b31){var _0x3de3cf=_0x277122;try{if(!this[_0x3de3cf(0x1b2)])return;this[_0x3de3cf(0x1f7)]&&this['_connectToHostNow'](),(await this[_0x3de3cf(0x1c5)])[_0x3de3cf(0x1b3)](JSON[_0x3de3cf(0x173)](_0x441b31));}catch(_0x5a238c){console[_0x3de3cf(0x219)](this[_0x3de3cf(0x1a8)]+':\\\\x20'+(_0x5a238c&&_0x5a238c[_0x3de3cf(0x20a)])),this[_0x3de3cf(0x1b2)]=!0x1,this[_0x3de3cf(0x21e)]();}}};function q(_0x436ba9,_0x141603,_0x5dc200,_0x26756b,_0x1ff14a,_0x6a31ab,_0x390747,_0x39e67e=ie){var _0x4f2c74=_0x277122;let _0x2776b7=_0x5dc200[_0x4f2c74(0x1b9)](',')[_0x4f2c74(0x190)](_0x4893f9=>{var _0x262543=_0x4f2c74,_0x5cc178,_0x5c0c95,_0x273a6c,_0x11f45d;try{if(!_0x436ba9[_0x262543(0x218)]){let _0x5497ef=((_0x5c0c95=(_0x5cc178=_0x436ba9[_0x262543(0x174)])==null?void 0x0:_0x5cc178[_0x262543(0x220)])==null?void 0x0:_0x5c0c95[_0x262543(0x1f2)])||((_0x11f45d=(_0x273a6c=_0x436ba9['process'])==null?void 0x0:_0x273a6c['env'])==null?void 0x0:_0x11f45d[_0x262543(0x165)])===_0x262543(0x180);(_0x1ff14a==='next.js'||_0x1ff14a==='remix'||_0x1ff14a===_0x262543(0x1c4)||_0x1ff14a===_0x262543(0x213))&&(_0x1ff14a+=_0x5497ef?_0x262543(0x1d5):_0x262543(0x1af)),_0x436ba9[_0x262543(0x218)]={'id':+new Date(),'tool':_0x1ff14a},_0x390747&&_0x1ff14a&&!_0x5497ef&&console[_0x262543(0x1ff)](_0x262543(0x19c)+(_0x1ff14a[_0x262543(0x138)](0x0)[_0x262543(0x15e)]()+_0x1ff14a[_0x262543(0x200)](0x1))+',','background:\\\\x20rgb(30,30,30);\\\\x20color:\\\\x20rgb(255,213,92)',_0x262543(0x1b6));}let _0x5903dc=new x(_0x436ba9,_0x141603,_0x4893f9,_0x26756b,_0x6a31ab,_0x39e67e);return _0x5903dc['send'][_0x262543(0x1fe)](_0x5903dc);}catch(_0x3862d9){return console[_0x262543(0x219)](_0x262543(0x16a),_0x3862d9&&_0x3862d9[_0x262543(0x20a)]),()=>{};}});return _0x105a50=>_0x2776b7['forEach'](_0xb52cb0=>_0xb52cb0(_0x105a50));}function ie(_0x57c726,_0x25e1a6,_0x4b918e,_0x393acd){var _0x30aa88=_0x277122;_0x393acd&&_0x57c726===_0x30aa88(0x1d2)&&_0x4b918e[_0x30aa88(0x21b)][_0x30aa88(0x1d2)]();}function b(_0x51a80f){var _0x22a25f=_0x277122,_0x403a3b,_0x191ef6;let _0x1cc190=function(_0x2c9f39,_0x181012){return _0x181012-_0x2c9f39;},_0x4a578f;if(_0x51a80f['performance'])_0x4a578f=function(){var _0x3c9dfa=_0xc5ab;return _0x51a80f[_0x3c9dfa(0x208)]['now']();};else{if(_0x51a80f[_0x22a25f(0x174)]&&_0x51a80f[_0x22a25f(0x174)][_0x22a25f(0x158)]&&((_0x191ef6=(_0x403a3b=_0x51a80f['process'])==null?void 0x0:_0x403a3b[_0x22a25f(0x14c)])==null?void 0x0:_0x191ef6[_0x22a25f(0x165)])!==_0x22a25f(0x180))_0x4a578f=function(){var _0x2444fc=_0x22a25f;return _0x51a80f[_0x2444fc(0x174)][_0x2444fc(0x158)]();},_0x1cc190=function(_0x429c4e,_0x2e24d2){return 0x3e8*(_0x2e24d2[0x0]-_0x429c4e[0x0])+(_0x2e24d2[0x1]-_0x429c4e[0x1])/0xf4240;};else try{let {performance:_0x10386f}=require(_0x22a25f(0x120));_0x4a578f=function(){return _0x10386f['now']();};}catch{_0x4a578f=function(){return+new Date();};}}return{'elapsed':_0x1cc190,'timeStamp':_0x4a578f,'now':()=>Date['now']()};}function _0xc5ab(_0x2fbc92,_0x10d741){var _0x16b566=_0x16b5();return _0xc5ab=function(_0xc5ab16,_0x5acc82){_0xc5ab16=_0xc5ab16-0x120;var _0x534c80=_0x16b566[_0xc5ab16];return _0x534c80;},_0xc5ab(_0x2fbc92,_0x10d741);}function H(_0x410216,_0xd35cc7,_0xbf32c5){var _0x14cd8d=_0x277122,_0x16579a,_0x23a1e8,_0x5506c0,_0x31ef37,_0x53bbed;if(_0x410216[_0x14cd8d(0x214)]!==void 0x0)return _0x410216[_0x14cd8d(0x214)];let _0xdc0a0b=((_0x23a1e8=(_0x16579a=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x16579a['versions'])==null?void 0x0:_0x23a1e8[_0x14cd8d(0x1f2)])||((_0x31ef37=(_0x5506c0=_0x410216[_0x14cd8d(0x174)])==null?void 0x0:_0x5506c0[_0x14cd8d(0x14c)])==null?void 0x0:_0x31ef37['NEXT_RUNTIME'])===_0x14cd8d(0x180);function _0x164729(_0x2cc8cb){var _0x5dd6b2=_0x14cd8d;if(_0x2cc8cb[_0x5dd6b2(0x1fa)]('/')&&_0x2cc8cb[_0x5dd6b2(0x1e7)]('/')){let _0xc83b4c=new RegExp(_0x2cc8cb[_0x5dd6b2(0x21f)](0x1,-0x1));return _0x71c0d3=>_0xc83b4c[_0x5dd6b2(0x1b1)](_0x71c0d3);}else{if(_0x2cc8cb['includes']('*')||_0x2cc8cb['includes']('?')){let _0x3874c4=new RegExp('^'+_0x2cc8cb[_0x5dd6b2(0x16d)](/\\\\./g,String[_0x5dd6b2(0x14e)](0x5c)+'.')[_0x5dd6b2(0x16d)](/\\\\*/g,'.*')[_0x5dd6b2(0x16d)](/\\\\?/g,'.')+String[_0x5dd6b2(0x14e)](0x24));return _0x48cfa3=>_0x3874c4[_0x5dd6b2(0x1b1)](_0x48cfa3);}else return _0x4e1229=>_0x4e1229===_0x2cc8cb;}}let _0x12eb1d=_0xd35cc7[_0x14cd8d(0x190)](_0x164729);return _0x410216[_0x14cd8d(0x214)]=_0xdc0a0b||!_0xd35cc7,!_0x410216[_0x14cd8d(0x214)]&&((_0x53bbed=_0x410216['location'])==null?void 0x0:_0x53bbed[_0x14cd8d(0x1de)])&&(_0x410216[_0x14cd8d(0x214)]=_0x12eb1d[_0x14cd8d(0x1b4)](_0x59667b=>_0x59667b(_0x410216[_0x14cd8d(0x21b)][_0x14cd8d(0x1de)]))),_0x410216['_consoleNinjaAllowedToStart'];}function X(_0x2b666a,_0x4cdb6e,_0x2e19ea,_0x489f64){var _0xc83fb0=_0x277122;_0x2b666a=_0x2b666a,_0x4cdb6e=_0x4cdb6e,_0x2e19ea=_0x2e19ea,_0x489f64=_0x489f64;let _0x341dd5=b(_0x2b666a),_0xb59bb1=_0x341dd5[_0xc83fb0(0x1ef)],_0x7ae3d3=_0x341dd5[_0xc83fb0(0x1eb)];class _0x3433bd{constructor(){var _0x5f27e6=_0xc83fb0;this[_0x5f27e6(0x206)]=/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[_$a-zA-Z\\\\xA0-\\\\uFFFF][_$a-zA-Z0-9\\\\xA0-\\\\uFFFF]*$/,this[_0x5f27e6(0x18b)]=/^(0|[1-9][0-9]*)$/,this['_quotedRegExp']=/'([^\\\\\\\\']|\\\\\\\\')*'/,this[_0x5f27e6(0x1e9)]=_0x2b666a[_0x5f27e6(0x1a6)],this['_HTMLAllCollection']=_0x2b666a['HTMLAllCollection'],this[_0x5f27e6(0x192)]=Object[_0x5f27e6(0x18a)],this[_0x5f27e6(0x1bc)]=Object[_0x5f27e6(0x1ed)],this[_0x5f27e6(0x1e8)]=_0x2b666a[_0x5f27e6(0x1c1)],this[_0x5f27e6(0x127)]=RegExp[_0x5f27e6(0x20b)][_0x5f27e6(0x193)],this[_0x5f27e6(0x17f)]=Date[_0x5f27e6(0x20b)][_0x5f27e6(0x193)];}['serialize'](_0x2974e5,_0x3545b9,_0x3efb50,_0x496b06){var _0x481a9d=_0xc83fb0,_0x3b5534=this,_0x243f09=_0x3efb50['autoExpand'];function _0x29e913(_0x52177f,_0xff78c8,_0x71f387){var _0x3afd02=_0xc5ab;_0xff78c8['type']=_0x3afd02(0x1b8),_0xff78c8[_0x3afd02(0x1d6)]=_0x52177f[_0x3afd02(0x20a)],_0x8497a7=_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)],_0x71f387[_0x3afd02(0x1f2)][_0x3afd02(0x18c)]=_0xff78c8,_0x3b5534[_0x3afd02(0x16b)](_0xff78c8,_0x71f387);}try{_0x3efb50[_0x481a9d(0x148)]++,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x153)](_0x3545b9);var _0xd6bb22,_0x3aea1c,_0x31a2fd,_0x182842,_0x6ddd0=[],_0xab73e6=[],_0x4bcc75,_0xcd237d=this['_type'](_0x3545b9),_0x2ce24b=_0xcd237d===_0x481a9d(0x183),_0x22b2e9=!0x1,_0x3d29d9=_0xcd237d===_0x481a9d(0x1f3),_0x53ba8c=this[_0x481a9d(0x202)](_0xcd237d),_0x4af369=this[_0x481a9d(0x201)](_0xcd237d),_0x22bb70=_0x53ba8c||_0x4af369,_0x286ee0={},_0x1fe6b7=0x0,_0x598e0b=!0x1,_0x8497a7,_0x31a94=/^(([1-9]{1}[0-9]*)|0)$/;if(_0x3efb50['depth']){if(_0x2ce24b){if(_0x3aea1c=_0x3545b9['length'],_0x3aea1c>_0x3efb50[_0x481a9d(0x17a)]){for(_0x31a2fd=0x0,_0x182842=_0x3efb50[_0x481a9d(0x17a)],_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));_0x2974e5[_0x481a9d(0x151)]=!0x0;}else{for(_0x31a2fd=0x0,_0x182842=_0x3aea1c,_0xd6bb22=_0x31a2fd;_0xd6bb22<_0x182842;_0xd6bb22++)_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1ab)](_0x6ddd0,_0x3545b9,_0xcd237d,_0xd6bb22,_0x3efb50));}_0x3efb50[_0x481a9d(0x179)]+=_0xab73e6[_0x481a9d(0x122)];}if(!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&!_0x53ba8c&&_0xcd237d!==_0x481a9d(0x12b)&&_0xcd237d!==_0x481a9d(0x19d)&&_0xcd237d!=='bigint'){var _0x4aa6af=_0x496b06['props']||_0x3efb50['props'];if(this[_0x481a9d(0x176)](_0x3545b9)?(_0xd6bb22=0x0,_0x3545b9[_0x481a9d(0x12d)](function(_0x5c22f4){var _0x5623fa=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x5623fa(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50[_0x5623fa(0x1f1)]&&_0x3efb50[_0x5623fa(0x196)]&&_0x3efb50[_0x5623fa(0x179)]>_0x3efb50[_0x5623fa(0x168)]){_0x598e0b=!0x0;return;}_0xab73e6[_0x5623fa(0x153)](_0x3b5534['_addProperty'](_0x6ddd0,_0x3545b9,'Set',_0xd6bb22++,_0x3efb50,function(_0x1fd311){return function(){return _0x1fd311;};}(_0x5c22f4)));})):this[_0x481a9d(0x1bf)](_0x3545b9)&&_0x3545b9['forEach'](function(_0x55efdb,_0xab32c5){var _0x2c0851=_0x481a9d;if(_0x1fe6b7++,_0x3efb50[_0x2c0851(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;return;}if(!_0x3efb50['isExpressionToEvaluate']&&_0x3efb50[_0x2c0851(0x196)]&&_0x3efb50['autoExpandPropertyCount']>_0x3efb50[_0x2c0851(0x168)]){_0x598e0b=!0x0;return;}var _0x20c352=_0xab32c5[_0x2c0851(0x193)]();_0x20c352[_0x2c0851(0x122)]>0x64&&(_0x20c352=_0x20c352['slice'](0x0,0x64)+_0x2c0851(0x139)),_0xab73e6['push'](_0x3b5534[_0x2c0851(0x1ab)](_0x6ddd0,_0x3545b9,'Map',_0x20c352,_0x3efb50,function(_0x20b4d2){return function(){return _0x20b4d2;};}(_0x55efdb)));}),!_0x22b2e9){try{for(_0x4bcc75 in _0x3545b9)if(!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75))&&!this[_0x481a9d(0x1ae)](_0x3545b9,_0x4bcc75,_0x3efb50)){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}catch{}if(_0x286ee0['_p_length']=!0x0,_0x3d29d9&&(_0x286ee0[_0x481a9d(0x123)]=!0x0),!_0x598e0b){var _0x55fd1e=[][_0x481a9d(0x187)](this[_0x481a9d(0x1bc)](_0x3545b9))[_0x481a9d(0x187)](this['_getOwnPropertySymbols'](_0x3545b9));for(_0xd6bb22=0x0,_0x3aea1c=_0x55fd1e['length'];_0xd6bb22<_0x3aea1c;_0xd6bb22++)if(_0x4bcc75=_0x55fd1e[_0xd6bb22],!(_0x2ce24b&&_0x31a94[_0x481a9d(0x1b1)](_0x4bcc75[_0x481a9d(0x193)]()))&&!this['_blacklistedProperty'](_0x3545b9,_0x4bcc75,_0x3efb50)&&!_0x286ee0[_0x481a9d(0x134)+_0x4bcc75[_0x481a9d(0x193)]()]){if(_0x1fe6b7++,_0x3efb50[_0x481a9d(0x179)]++,_0x1fe6b7>_0x4aa6af){_0x598e0b=!0x0;break;}if(!_0x3efb50[_0x481a9d(0x1f1)]&&_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x179)]>_0x3efb50['autoExpandLimit']){_0x598e0b=!0x0;break;}_0xab73e6[_0x481a9d(0x153)](_0x3b5534[_0x481a9d(0x1f8)](_0x6ddd0,_0x286ee0,_0x3545b9,_0xcd237d,_0x4bcc75,_0x3efb50));}}}}}if(_0x2974e5[_0x481a9d(0x150)]=_0xcd237d,_0x22bb70?(_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9['valueOf'](),this[_0x481a9d(0x143)](_0xcd237d,_0x2974e5,_0x3efb50,_0x496b06)):_0xcd237d===_0x481a9d(0x170)?_0x2974e5['value']=this[_0x481a9d(0x17f)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d===_0x481a9d(0x1d8)?_0x2974e5[_0x481a9d(0x13c)]=_0x3545b9[_0x481a9d(0x193)]():_0xcd237d===_0x481a9d(0x1c3)?_0x2974e5['value']=this[_0x481a9d(0x127)][_0x481a9d(0x154)](_0x3545b9):_0xcd237d==='symbol'&&this['_Symbol']?_0x2974e5[_0x481a9d(0x13c)]=this[_0x481a9d(0x1e8)][_0x481a9d(0x20b)][_0x481a9d(0x193)][_0x481a9d(0x154)](_0x3545b9):!_0x3efb50[_0x481a9d(0x1a9)]&&!(_0xcd237d===_0x481a9d(0x1a0)||_0xcd237d===_0x481a9d(0x1a6))&&(delete _0x2974e5[_0x481a9d(0x13c)],_0x2974e5[_0x481a9d(0x12c)]=!0x0),_0x598e0b&&(_0x2974e5[_0x481a9d(0x1dc)]=!0x0),_0x8497a7=_0x3efb50[_0x481a9d(0x1f2)]['current'],_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x2974e5,this[_0x481a9d(0x16b)](_0x2974e5,_0x3efb50),_0xab73e6[_0x481a9d(0x122)]){for(_0xd6bb22=0x0,_0x3aea1c=_0xab73e6[_0x481a9d(0x122)];_0xd6bb22<_0x3aea1c;_0xd6bb22++)_0xab73e6[_0xd6bb22](_0xd6bb22);}_0x6ddd0[_0x481a9d(0x122)]&&(_0x2974e5[_0x481a9d(0x197)]=_0x6ddd0);}catch(_0x202c18){_0x29e913(_0x202c18,_0x2974e5,_0x3efb50);}return this[_0x481a9d(0x171)](_0x3545b9,_0x2974e5),this[_0x481a9d(0x204)](_0x2974e5,_0x3efb50),_0x3efb50[_0x481a9d(0x1f2)][_0x481a9d(0x18c)]=_0x8497a7,_0x3efb50[_0x481a9d(0x148)]--,_0x3efb50[_0x481a9d(0x196)]=_0x243f09,_0x3efb50[_0x481a9d(0x196)]&&_0x3efb50[_0x481a9d(0x15d)][_0x481a9d(0x14b)](),_0x2974e5;}[_0xc83fb0(0x1ce)](_0x453c25){var _0x1c6ef1=_0xc83fb0;return Object[_0x1c6ef1(0x1db)]?Object[_0x1c6ef1(0x1db)](_0x453c25):[];}[_0xc83fb0(0x176)](_0x26e14a){var _0x5c57ea=_0xc83fb0;return!!(_0x26e14a&&_0x2b666a['Set']&&this['_objectToString'](_0x26e14a)===_0x5c57ea(0x178)&&_0x26e14a[_0x5c57ea(0x12d)]);}[_0xc83fb0(0x1ae)](_0x3e947d,_0x4d1e75,_0x149612){var _0x3cf397=_0xc83fb0;return _0x149612[_0x3cf397(0x1f9)]?typeof _0x3e947d[_0x4d1e75]=='function':!0x1;}[_0xc83fb0(0x164)](_0x132cfb){var _0x123d06=_0xc83fb0,_0x1f311c='';return _0x1f311c=typeof _0x132cfb,_0x1f311c===_0x123d06(0x1b5)?this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1cc)?_0x1f311c='array':this[_0x123d06(0x1df)](_0x132cfb)==='[object\\\\x20Date]'?_0x1f311c=_0x123d06(0x170):this[_0x123d06(0x1df)](_0x132cfb)===_0x123d06(0x1a5)?_0x1f311c=_0x123d06(0x1d8):_0x132cfb===null?_0x1f311c=_0x123d06(0x1a0):_0x132cfb[_0x123d06(0x20c)]&&(_0x1f311c=_0x132cfb[_0x123d06(0x20c)][_0x123d06(0x19f)]||_0x1f311c):_0x1f311c===_0x123d06(0x1a6)&&this[_0x123d06(0x1b7)]&&_0x132cfb instanceof this[_0x123d06(0x1b7)]&&(_0x1f311c=_0x123d06(0x191)),_0x1f311c;}['_objectToString'](_0xe15424){var _0x2dfa4f=_0xc83fb0;return Object['prototype'][_0x2dfa4f(0x193)][_0x2dfa4f(0x154)](_0xe15424);}[_0xc83fb0(0x202)](_0x1c7e27){var _0x437108=_0xc83fb0;return _0x1c7e27===_0x437108(0x21a)||_0x1c7e27==='string'||_0x1c7e27===_0x437108(0x216);}[_0xc83fb0(0x201)](_0x2daba1){var _0x5ae4a7=_0xc83fb0;return _0x2daba1===_0x5ae4a7(0x1cd)||_0x2daba1===_0x5ae4a7(0x12b)||_0x2daba1===_0x5ae4a7(0x186);}[_0xc83fb0(0x1ab)](_0x20f9a1,_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251){var _0x4f6931=this;return function(_0x5c3cf3){var _0x7d5aec=_0xc5ab,_0xfcd658=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x18c)],_0xb428d1=_0x1f56f9[_0x7d5aec(0x1f2)]['index'],_0x50ca98=_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)];_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0xfcd658,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=typeof _0x48d02d=='number'?_0x48d02d:_0x5c3cf3,_0x20f9a1[_0x7d5aec(0x153)](_0x4f6931[_0x7d5aec(0x1c2)](_0x327b4a,_0xbf4be6,_0x48d02d,_0x1f56f9,_0x5da251)),_0x1f56f9[_0x7d5aec(0x1f2)][_0x7d5aec(0x131)]=_0x50ca98,_0x1f56f9[_0x7d5aec(0x1f2)]['index']=_0xb428d1;};}[_0xc83fb0(0x1f8)](_0x2a642f,_0x33d34f,_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6){var _0x58110a=_0xc83fb0,_0x145cac=this;return _0x33d34f[_0x58110a(0x134)+_0x155f6d[_0x58110a(0x193)]()]=!0x0,function(_0x4c8a4a){var _0x1eeefc=_0x58110a,_0x3e6bce=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x18c)],_0x57c08c=_0x230db2[_0x1eeefc(0x1f2)]['index'],_0x3070c4=_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)];_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3e6bce,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x4c8a4a,_0x2a642f[_0x1eeefc(0x153)](_0x145cac['_property'](_0x48f024,_0x3bdd75,_0x155f6d,_0x230db2,_0x20acf6)),_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x131)]=_0x3070c4,_0x230db2[_0x1eeefc(0x1f2)][_0x1eeefc(0x185)]=_0x57c08c;};}[_0xc83fb0(0x1c2)](_0x4bb40b,_0x2412f1,_0x415f45,_0x3d4542,_0xa974f0){var _0x2cc493=_0xc83fb0,_0x36d7ed=this;_0xa974f0||(_0xa974f0=function(_0x576be5,_0x26eb48){return _0x576be5[_0x26eb48];});var _0x4d18a9=_0x415f45['toString'](),_0x32e6ca=_0x3d4542[_0x2cc493(0x159)]||{},_0x4a8ccb=_0x3d4542[_0x2cc493(0x1a9)],_0x11c1e4=_0x3d4542[_0x2cc493(0x1f1)];try{var _0x256ca3=this[_0x2cc493(0x1bf)](_0x4bb40b),_0x4a8251=_0x4d18a9;_0x256ca3&&_0x4a8251[0x0]==='\\\\x27'&&(_0x4a8251=_0x4a8251[_0x2cc493(0x200)](0x1,_0x4a8251[_0x2cc493(0x122)]-0x2));var _0x4f325a=_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca[_0x2cc493(0x134)+_0x4a8251];_0x4f325a&&(_0x3d4542['depth']=_0x3d4542[_0x2cc493(0x1a9)]+0x1),_0x3d4542[_0x2cc493(0x1f1)]=!!_0x4f325a;var _0x5c5c9b=typeof _0x415f45==_0x2cc493(0x152),_0xe03d99={'name':_0x5c5c9b||_0x256ca3?_0x4d18a9:this[_0x2cc493(0x181)](_0x4d18a9)};if(_0x5c5c9b&&(_0xe03d99[_0x2cc493(0x152)]=!0x0),!(_0x2412f1===_0x2cc493(0x183)||_0x2412f1==='Error')){var _0x33f2ab=this[_0x2cc493(0x192)](_0x4bb40b,_0x415f45);if(_0x33f2ab&&(_0x33f2ab[_0x2cc493(0x12a)]&&(_0xe03d99[_0x2cc493(0x175)]=!0x0),_0x33f2ab[_0x2cc493(0x1c7)]&&!_0x4f325a&&!_0x3d4542[_0x2cc493(0x1e1)]))return _0xe03d99[_0x2cc493(0x129)]=!0x0,this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5932aa;try{_0x5932aa=_0xa974f0(_0x4bb40b,_0x415f45);}catch(_0x1c6417){return _0xe03d99={'name':_0x4d18a9,'type':_0x2cc493(0x1b8),'error':_0x1c6417[_0x2cc493(0x20a)]},this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542),_0xe03d99;}var _0x5608f4=this['_type'](_0x5932aa),_0x5934ea=this[_0x2cc493(0x202)](_0x5608f4);if(_0xe03d99['type']=_0x5608f4,_0x5934ea)this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0xacdd1e=_0x2cc493;_0xe03d99[_0xacdd1e(0x13c)]=_0x5932aa[_0xacdd1e(0x14d)](),!_0x4f325a&&_0x36d7ed['_capIfString'](_0x5608f4,_0xe03d99,_0x3d4542,{});});else{var _0x1e345c=_0x3d4542[_0x2cc493(0x196)]&&_0x3d4542[_0x2cc493(0x148)]<_0x3d4542[_0x2cc493(0x126)]&&_0x3d4542[_0x2cc493(0x15d)][_0x2cc493(0x1ba)](_0x5932aa)<0x0&&_0x5608f4!==_0x2cc493(0x1f3)&&_0x3d4542['autoExpandPropertyCount']<_0x3d4542[_0x2cc493(0x168)];_0x1e345c||_0x3d4542[_0x2cc493(0x148)]<_0x4a8ccb||_0x4f325a?(this[_0x2cc493(0x15a)](_0xe03d99,_0x5932aa,_0x3d4542,_0x4f325a||{}),this[_0x2cc493(0x171)](_0x5932aa,_0xe03d99)):this[_0x2cc493(0x132)](_0xe03d99,_0x3d4542,_0x5932aa,function(){var _0x10bd66=_0x2cc493;_0x5608f4==='null'||_0x5608f4===_0x10bd66(0x1a6)||(delete _0xe03d99[_0x10bd66(0x13c)],_0xe03d99[_0x10bd66(0x12c)]=!0x0);});}return _0xe03d99;}finally{_0x3d4542[_0x2cc493(0x159)]=_0x32e6ca,_0x3d4542[_0x2cc493(0x1a9)]=_0x4a8ccb,_0x3d4542['isExpressionToEvaluate']=_0x11c1e4;}}[_0xc83fb0(0x143)](_0x26e91d,_0x24781c,_0x5bd42e,_0x4a720a){var _0x3aa044=_0xc83fb0,_0x2b3bda=_0x4a720a[_0x3aa044(0x121)]||_0x5bd42e[_0x3aa044(0x121)];if((_0x26e91d===_0x3aa044(0x1dd)||_0x26e91d===_0x3aa044(0x12b))&&_0x24781c['value']){let _0x53f015=_0x24781c['value'][_0x3aa044(0x122)];_0x5bd42e[_0x3aa044(0x21d)]+=_0x53f015,_0x5bd42e['allStrLength']>_0x5bd42e[_0x3aa044(0x1c8)]?(_0x24781c[_0x3aa044(0x12c)]='',delete _0x24781c['value']):_0x53f015>_0x2b3bda&&(_0x24781c[_0x3aa044(0x12c)]=_0x24781c[_0x3aa044(0x13c)][_0x3aa044(0x200)](0x0,_0x2b3bda),delete _0x24781c[_0x3aa044(0x13c)]);}}['_isMap'](_0x13d4b6){var _0x5a2e33=_0xc83fb0;return!!(_0x13d4b6&&_0x2b666a[_0x5a2e33(0x1bb)]&&this[_0x5a2e33(0x1df)](_0x13d4b6)===_0x5a2e33(0x1c9)&&_0x13d4b6[_0x5a2e33(0x12d)]);}[_0xc83fb0(0x181)](_0x249276){var _0x265167=_0xc83fb0;if(_0x249276[_0x265167(0x18e)](/^\\\\d+$/))return _0x249276;var _0x249664;try{_0x249664=JSON['stringify'](''+_0x249276);}catch{_0x249664='\\\\x22'+this[_0x265167(0x1df)](_0x249276)+'\\\\x22';}return _0x249664[_0x265167(0x18e)](/^\\\"([a-zA-Z_][a-zA-Z_0-9]*)\\\"$/)?_0x249664=_0x249664[_0x265167(0x200)](0x1,_0x249664[_0x265167(0x122)]-0x2):_0x249664=_0x249664[_0x265167(0x16d)](/'/g,'\\\\x5c\\\\x27')[_0x265167(0x16d)](/\\\\\\\\\\\"/g,'\\\\x22')['replace'](/(^\\\"|\\\"$)/g,'\\\\x27'),_0x249664;}[_0xc83fb0(0x132)](_0x45f4f2,_0x1a9b2b,_0x2029c2,_0x31d872){var _0xb6755c=_0xc83fb0;this[_0xb6755c(0x16b)](_0x45f4f2,_0x1a9b2b),_0x31d872&&_0x31d872(),this[_0xb6755c(0x171)](_0x2029c2,_0x45f4f2),this['_treeNodePropertiesAfterFullValue'](_0x45f4f2,_0x1a9b2b);}[_0xc83fb0(0x16b)](_0x34c63e,_0xe2d82b){var _0x50a303=_0xc83fb0;this[_0x50a303(0x1e2)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x14f)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1e0)](_0x34c63e,_0xe2d82b),this[_0x50a303(0x1bd)](_0x34c63e,_0xe2d82b);}['_setNodeId'](_0x5e991e,_0x9dba11){}[_0xc83fb0(0x14f)](_0x252482,_0x2ec202){}[_0xc83fb0(0x17e)](_0xd737d3,_0x48958c){}[_0xc83fb0(0x1c0)](_0x25e050){var _0x86a0a0=_0xc83fb0;return _0x25e050===this[_0x86a0a0(0x1e9)];}[_0xc83fb0(0x204)](_0x59a6ad,_0x21713c){var _0x417cc8=_0xc83fb0;this[_0x417cc8(0x17e)](_0x59a6ad,_0x21713c),this[_0x417cc8(0x1a1)](_0x59a6ad),_0x21713c[_0x417cc8(0x169)]&&this[_0x417cc8(0x144)](_0x59a6ad),this[_0x417cc8(0x1ee)](_0x59a6ad,_0x21713c),this['_addLoadNode'](_0x59a6ad,_0x21713c),this[_0x417cc8(0x163)](_0x59a6ad);}[_0xc83fb0(0x171)](_0x368a80,_0x3bf559){var _0x5e4474=_0xc83fb0;let _0x15b644;try{_0x2b666a[_0x5e4474(0x1e5)]&&(_0x15b644=_0x2b666a[_0x5e4474(0x1e5)][_0x5e4474(0x1d6)],_0x2b666a[_0x5e4474(0x1e5)]['error']=function(){}),_0x368a80&&typeof _0x368a80['length']==_0x5e4474(0x216)&&(_0x3bf559[_0x5e4474(0x122)]=_0x368a80['length']);}catch{}finally{_0x15b644&&(_0x2b666a['console'][_0x5e4474(0x1d6)]=_0x15b644);}if(_0x3bf559['type']===_0x5e4474(0x216)||_0x3bf559['type']===_0x5e4474(0x186)){if(isNaN(_0x3bf559[_0x5e4474(0x13c)]))_0x3bf559[_0x5e4474(0x1ad)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];else switch(_0x3bf559[_0x5e4474(0x13c)]){case Number['POSITIVE_INFINITY']:_0x3bf559[_0x5e4474(0x199)]=!0x0,delete _0x3bf559['value'];break;case Number[_0x5e4474(0x135)]:_0x3bf559[_0x5e4474(0x18d)]=!0x0,delete _0x3bf559[_0x5e4474(0x13c)];break;case 0x0:this['_isNegativeZero'](_0x3bf559[_0x5e4474(0x13c)])&&(_0x3bf559[_0x5e4474(0x1da)]=!0x0);break;}}else _0x3bf559[_0x5e4474(0x150)]===_0x5e4474(0x1f3)&&typeof _0x368a80[_0x5e4474(0x19f)]==_0x5e4474(0x1dd)&&_0x368a80[_0x5e4474(0x19f)]&&_0x3bf559[_0x5e4474(0x19f)]&&_0x368a80[_0x5e4474(0x19f)]!==_0x3bf559[_0x5e4474(0x19f)]&&(_0x3bf559['funcName']=_0x368a80[_0x5e4474(0x19f)]);}[_0xc83fb0(0x1fb)](_0x340a19){var _0x2e6ef9=_0xc83fb0;return 0x1/_0x340a19===Number[_0x2e6ef9(0x135)];}[_0xc83fb0(0x144)](_0x2109f2){var _0x1074c3=_0xc83fb0;!_0x2109f2['props']||!_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x122)]||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x183)||_0x2109f2[_0x1074c3(0x150)]===_0x1074c3(0x1bb)||_0x2109f2['type']===_0x1074c3(0x1e4)||_0x2109f2[_0x1074c3(0x197)][_0x1074c3(0x1cf)](function(_0x579bbe,_0xd3668f){var _0x5c0a3c=_0x1074c3,_0x179ea1=_0x579bbe[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)](),_0x394e8a=_0xd3668f[_0x5c0a3c(0x19f)][_0x5c0a3c(0x17d)]();return _0x179ea1<_0x394e8a?-0x1:_0x179ea1>_0x394e8a?0x1:0x0;});}['_addFunctionsNode'](_0x5b4bf1,_0x74c4fe){var _0x87fdfe=_0xc83fb0;if(!(_0x74c4fe[_0x87fdfe(0x1f9)]||!_0x5b4bf1[_0x87fdfe(0x197)]||!_0x5b4bf1[_0x87fdfe(0x197)]['length'])){for(var _0x3ac3f4=[],_0x4ceb3a=[],_0x260f45=0x0,_0xf2dbe6=_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x122)];_0x260f45<_0xf2dbe6;_0x260f45++){var _0x22c70b=_0x5b4bf1[_0x87fdfe(0x197)][_0x260f45];_0x22c70b['type']===_0x87fdfe(0x1f3)?_0x3ac3f4[_0x87fdfe(0x153)](_0x22c70b):_0x4ceb3a[_0x87fdfe(0x153)](_0x22c70b);}if(!(!_0x4ceb3a[_0x87fdfe(0x122)]||_0x3ac3f4[_0x87fdfe(0x122)]<=0x1)){_0x5b4bf1['props']=_0x4ceb3a;var _0x4a6b3b={'functionsNode':!0x0,'props':_0x3ac3f4};this[_0x87fdfe(0x1e2)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x17e)](_0x4a6b3b,_0x74c4fe),this[_0x87fdfe(0x1a1)](_0x4a6b3b),this[_0x87fdfe(0x1bd)](_0x4a6b3b,_0x74c4fe),_0x4a6b3b['id']+='\\\\x20f',_0x5b4bf1[_0x87fdfe(0x197)][_0x87fdfe(0x16f)](_0x4a6b3b);}}}['_addLoadNode'](_0xe0c1f5,_0x16df52){}[_0xc83fb0(0x1a1)](_0x5e776f){}[_0xc83fb0(0x21c)](_0xed4fe0){var _0x3c283a=_0xc83fb0;return Array['isArray'](_0xed4fe0)||typeof _0xed4fe0==_0x3c283a(0x1b5)&&this[_0x3c283a(0x1df)](_0xed4fe0)===_0x3c283a(0x1cc);}[_0xc83fb0(0x1bd)](_0x45e6db,_0x317a4d){}[_0xc83fb0(0x163)](_0x403816){var _0x587472=_0xc83fb0;delete _0x403816[_0x587472(0x13f)],delete _0x403816[_0x587472(0x166)],delete _0x403816['_hasMapOnItsPath'];}[_0xc83fb0(0x1e0)](_0x420717,_0x51ec4d){}}let _0x4c6fbe=new _0x3433bd(),_0x1c73d6={'props':0x64,'elements':0x64,'strLength':0x400*0x32,'totalStrLength':0x400*0x32,'autoExpandLimit':0x1388,'autoExpandMaxDepth':0xa},_0x1300f9={'props':0x5,'elements':0x5,'strLength':0x100,'totalStrLength':0x100*0x3,'autoExpandLimit':0x1e,'autoExpandMaxDepth':0x2};function _0x3fb167(_0x4da0e2,_0x234c63,_0x2f0b10,_0x2a70ca,_0x22e30a,_0x32659a){var _0x31c0e5=_0xc83fb0;let _0x2e43e2,_0x3be46a;try{_0x3be46a=_0x7ae3d3(),_0x2e43e2=_0x2e19ea[_0x234c63],!_0x2e43e2||_0x3be46a-_0x2e43e2['ts']>0x1f4&&_0x2e43e2[_0x31c0e5(0x128)]&&_0x2e43e2[_0x31c0e5(0x145)]/_0x2e43e2[_0x31c0e5(0x128)]<0x64?(_0x2e19ea[_0x234c63]=_0x2e43e2={'count':0x0,'time':0x0,'ts':_0x3be46a},_0x2e19ea[_0x31c0e5(0x141)]={}):_0x3be46a-_0x2e19ea[_0x31c0e5(0x141)]['ts']>0x32&&_0x2e19ea[_0x31c0e5(0x141)]['count']&&_0x2e19ea[_0x31c0e5(0x141)]['time']/_0x2e19ea[_0x31c0e5(0x141)]['count']<0x64&&(_0x2e19ea[_0x31c0e5(0x141)]={});let _0x5d2500=[],_0x13b8c2=_0x2e43e2[_0x31c0e5(0x1fc)]||_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]?_0x1300f9:_0x1c73d6,_0x13c005=_0x48a809=>{var _0x12d5d2=_0x31c0e5;let _0x5f41a5={};return _0x5f41a5['props']=_0x48a809[_0x12d5d2(0x197)],_0x5f41a5[_0x12d5d2(0x17a)]=_0x48a809[_0x12d5d2(0x17a)],_0x5f41a5[_0x12d5d2(0x121)]=_0x48a809[_0x12d5d2(0x121)],_0x5f41a5['totalStrLength']=_0x48a809[_0x12d5d2(0x1c8)],_0x5f41a5[_0x12d5d2(0x168)]=_0x48a809[_0x12d5d2(0x168)],_0x5f41a5['autoExpandMaxDepth']=_0x48a809[_0x12d5d2(0x126)],_0x5f41a5['sortProps']=!0x1,_0x5f41a5[_0x12d5d2(0x1f9)]=!_0x4cdb6e,_0x5f41a5[_0x12d5d2(0x1a9)]=0x1,_0x5f41a5['level']=0x0,_0x5f41a5[_0x12d5d2(0x188)]=_0x12d5d2(0x1d0),_0x5f41a5[_0x12d5d2(0x155)]=_0x12d5d2(0x1a3),_0x5f41a5['autoExpand']=!0x0,_0x5f41a5[_0x12d5d2(0x15d)]=[],_0x5f41a5[_0x12d5d2(0x179)]=0x0,_0x5f41a5[_0x12d5d2(0x1e1)]=!0x0,_0x5f41a5[_0x12d5d2(0x21d)]=0x0,_0x5f41a5[_0x12d5d2(0x1f2)]={'current':void 0x0,'parent':void 0x0,'index':0x0},_0x5f41a5;};for(var _0x14027d=0x0;_0x14027d<_0x22e30a[_0x31c0e5(0x122)];_0x14027d++)_0x5d2500[_0x31c0e5(0x153)](_0x4c6fbe[_0x31c0e5(0x15a)]({'timeNode':_0x4da0e2===_0x31c0e5(0x145)||void 0x0},_0x22e30a[_0x14027d],_0x13c005(_0x13b8c2),{}));if(_0x4da0e2==='trace'){let _0xe6083e=Error[_0x31c0e5(0x17b)];try{Error[_0x31c0e5(0x17b)]=0x1/0x0,_0x5d2500['push'](_0x4c6fbe['serialize']({'stackNode':!0x0},new Error()[_0x31c0e5(0x211)],_0x13c005(_0x13b8c2),{'strLength':0x1/0x0}));}finally{Error[_0x31c0e5(0x17b)]=_0xe6083e;}}return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':_0x5d2500,'id':_0x234c63,'context':_0x32659a}]};}catch(_0x2b4f8b){return{'method':_0x31c0e5(0x1ff),'version':_0x489f64,'args':[{'ts':_0x2f0b10,'session':_0x2a70ca,'args':[{'type':'unknown','error':_0x2b4f8b&&_0x2b4f8b[_0x31c0e5(0x20a)]}],'id':_0x234c63,'context':_0x32659a}]};}finally{try{if(_0x2e43e2&&_0x3be46a){let _0xff9c1d=_0x7ae3d3();_0x2e43e2[_0x31c0e5(0x128)]++,_0x2e43e2[_0x31c0e5(0x145)]+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e43e2['ts']=_0xff9c1d,_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]++,_0x2e19ea['hits']['time']+=_0xb59bb1(_0x3be46a,_0xff9c1d),_0x2e19ea['hits']['ts']=_0xff9c1d,(_0x2e43e2['count']>0x32||_0x2e43e2[_0x31c0e5(0x145)]>0x64)&&(_0x2e43e2[_0x31c0e5(0x1fc)]=!0x0),(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x128)]>0x3e8||_0x2e19ea[_0x31c0e5(0x141)]['time']>0x12c)&&(_0x2e19ea[_0x31c0e5(0x141)][_0x31c0e5(0x1fc)]=!0x0);}}catch{}}}return _0x3fb167;}((_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0x3f8562,_0x3a0549,_0x3db78c,_0x46c513,_0xbfe5dd,_0x18f1a0)=>{var _0x320b2d=_0x277122;if(_0xd84dda[_0x320b2d(0x1d9)])return _0xd84dda['_console_ninja'];if(!H(_0xd84dda,_0x3db78c,_0x2a68c3))return _0xd84dda[_0x320b2d(0x1d9)]={'consoleLog':()=>{},'consoleTrace':()=>{},'consoleTime':()=>{},'consoleTimeEnd':()=>{},'autoLog':()=>{},'autoLogMany':()=>{},'autoTraceMany':()=>{},'coverage':()=>{},'autoTrace':()=>{},'autoTime':()=>{},'autoTimeEnd':()=>{}},_0xd84dda['_console_ninja'];let _0x4fb6c4=b(_0xd84dda),_0x5b3f8e=_0x4fb6c4[_0x320b2d(0x1ef)],_0x479531=_0x4fb6c4[_0x320b2d(0x1eb)],_0x177654=_0x4fb6c4[_0x320b2d(0x177)],_0x25d606={'hits':{},'ts':{}},_0x6aa2d2=X(_0xd84dda,_0x46c513,_0x25d606,_0x3f8562),_0x2f092d=_0x4d5c8f=>{_0x25d606['ts'][_0x4d5c8f]=_0x479531();},_0x492afb=(_0x3065ce,_0x3451d9)=>{var _0x43323f=_0x320b2d;let _0x378abc=_0x25d606['ts'][_0x3451d9];if(delete _0x25d606['ts'][_0x3451d9],_0x378abc){let _0xc54ea1=_0x5b3f8e(_0x378abc,_0x479531());_0x4abd9f(_0x6aa2d2(_0x43323f(0x145),_0x3065ce,_0x177654(),_0x1dcfcb,[_0xc54ea1],_0x3451d9));}},_0x4f8d09=_0x51145b=>{var _0x3296a6=_0x320b2d,_0x2e7901;return _0x2a68c3===_0x3296a6(0x18f)&&_0xd84dda[_0x3296a6(0x221)]&&((_0x2e7901=_0x51145b==null?void 0x0:_0x51145b[_0x3296a6(0x13e)])==null?void 0x0:_0x2e7901[_0x3296a6(0x122)])&&(_0x51145b[_0x3296a6(0x13e)][0x0][_0x3296a6(0x221)]=_0xd84dda[_0x3296a6(0x221)]),_0x51145b;};_0xd84dda['_console_ninja']={'consoleLog':(_0x34542f,_0x1e7acf)=>{var _0x33d79c=_0x320b2d;_0xd84dda[_0x33d79c(0x1e5)]['log'][_0x33d79c(0x19f)]!==_0x33d79c(0x19b)&&_0x4abd9f(_0x6aa2d2(_0x33d79c(0x1ff),_0x34542f,_0x177654(),_0x1dcfcb,_0x1e7acf));},'consoleTrace':(_0x58cfc2,_0x3b1473)=>{var _0x43d259=_0x320b2d;_0xd84dda[_0x43d259(0x1e5)][_0x43d259(0x1ff)][_0x43d259(0x19f)]!=='disabledTrace'&&_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x43d259(0x13a),_0x58cfc2,_0x177654(),_0x1dcfcb,_0x3b1473)));},'consoleTime':_0x19ca9e=>{_0x2f092d(_0x19ca9e);},'consoleTimeEnd':(_0x3c1c7d,_0x259c13)=>{_0x492afb(_0x259c13,_0x3c1c7d);},'autoLog':(_0x50a502,_0x2ec9ac)=>{var _0x11fb8c=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x11fb8c(0x1ff),_0x2ec9ac,_0x177654(),_0x1dcfcb,[_0x50a502]));},'autoLogMany':(_0x39367a,_0x33dff6)=>{var _0x3f364b=_0x320b2d;_0x4abd9f(_0x6aa2d2(_0x3f364b(0x1ff),_0x39367a,_0x177654(),_0x1dcfcb,_0x33dff6));},'autoTrace':(_0x4de991,_0x1c9190)=>{var _0x31dbb7=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x31dbb7(0x13a),_0x1c9190,_0x177654(),_0x1dcfcb,[_0x4de991])));},'autoTraceMany':(_0x48d7ba,_0x5770f9)=>{var _0x445bc1=_0x320b2d;_0x4abd9f(_0x4f8d09(_0x6aa2d2(_0x445bc1(0x13a),_0x48d7ba,_0x177654(),_0x1dcfcb,_0x5770f9)));},'autoTime':(_0x456f75,_0x2d3903,_0x58530c)=>{_0x2f092d(_0x58530c);},'autoTimeEnd':(_0x3faefd,_0x1c4496,_0x5d7ac7)=>{_0x492afb(_0x1c4496,_0x5d7ac7);},'coverage':_0x3e26ed=>{_0x4abd9f({'method':'coverage','version':_0x3f8562,'args':[{'id':_0x3e26ed}]});}};let _0x4abd9f=q(_0xd84dda,_0x5747d3,_0x5b0082,_0x477f21,_0x2a68c3,_0xbfe5dd,_0x18f1a0),_0x1dcfcb=_0xd84dda[_0x320b2d(0x218)];return _0xd84dda[_0x320b2d(0x1d9)];})(globalThis,_0x277122(0x1ec),_0x277122(0x1a4),_0x277122(0x14a),_0x277122(0x198),_0x277122(0x207),_0x277122(0x1be),_0x277122(0x194),_0x277122(0x217),_0x277122(0x1d3),_0x277122(0x137));\");\n } catch (e) {}\n}\n; /* istanbul ignore next */\nfunction oo_oo(i) {\n for (var _len = arguments.length, v = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n v[_key - 1] = arguments[_key];\n }\n try {\n oo_cm().consoleLog(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_tr(i) {\n for (var _len2 = arguments.length, v = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n v[_key2 - 1] = arguments[_key2];\n }\n try {\n oo_cm().consoleTrace(i, v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_ts(v) {\n try {\n oo_cm().consoleTime(v);\n } catch (e) {}\n return v;\n}\n; /* istanbul ignore next */\nfunction oo_te(v, i) {\n try {\n oo_cm().consoleTimeEnd(v, i);\n } catch (e) {}\n return v;\n}\n; /*eslint unicorn/no-abusive-eslint-disable:,eslint-comments/disable-enable-pair:,eslint-comments/no-unlimited-disable:,eslint-comments/no-aggregating-enable:,eslint-comments/no-duplicate-disable:,eslint-comments/no-unused-disable:,eslint-comments/no-unused-enable:,*/\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); +eval("eael.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductGallery = function wooProductGallery($scope, $) {\n var showSecondaryImageOnHover = $scope.find(\".products.eael-post-appender\").data(\"show-secondary-image\");\n // category\n eael.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $post_cat_wrap = $('.eael-cat-tab', $scope);\n $('.eael-cat-tab li:first a', $scope).addClass('active');\n $post_cat_wrap.on('click', 'a', function (e) {\n e.preventDefault();\n var $this = $(this);\n if ($this.hasClass('active')) {\n return false;\n }\n // tab class\n $('.eael-cat-tab li a', $scope).removeClass('active');\n $this.addClass('active');\n localStorage.setItem('eael-cat-tab', 'true');\n // collect props\n var $class = $post_cat_wrap.data('class'),\n $widget_id = $post_cat_wrap.data(\"widget\"),\n $page_id = $post_cat_wrap.data(\"page-id\"),\n $nonce = $post_cat_wrap.data(\"nonce\"),\n $args = $post_cat_wrap.data('args'),\n $layout = $post_cat_wrap.data('layout'),\n $widget_class = \".elementor-element-\" + $widget_id,\n $page = 1,\n $template_info = $post_cat_wrap.data('template'),\n $taxonomy = {\n taxonomy: $('.eael-cat-tab li a.active', $scope).data('taxonomy'),\n field: 'term_id',\n terms: $('.eael-cat-tab li a.active', $scope).data('id'),\n terms_tag: $('.eael-cat-tab li a.active', $scope).data('tagid')\n };\n\n // ajax\n $.ajax({\n url: localize.ajaxurl,\n type: 'POST',\n data: {\n action: 'eael_product_gallery',\n \"class\": $class,\n args: $args,\n taxonomy: $taxonomy,\n template_info: $template_info,\n page: $page,\n page_id: $page_id,\n widget_id: $widget_id,\n nonce: $nonce\n },\n beforeSend: function beforeSend() {\n $($widget_class + ' .woocommerce').addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n var $content = $(response);\n if ($content.hasClass('no-posts-found') || $content.length == 0) {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append(\"

No Product Found

\");\n $('.eael-load-more-button', $scope).addClass('hide-load-more');\n } else {\n $('.elementor-element-' + $widget_id + ' .eael-product-gallery .woocommerce' + ' .eael-post-appender').empty().append($content);\n var $max_page = $('
' + response + '
').find('.eael-max-page').text();\n var load_more = $('.eael-load-more-button', $scope);\n if ($max_page && load_more.data('page') >= $max_page) {\n load_more.addClass('hide-load-more');\n } else {\n load_more.removeClass('hide-load-more');\n }\n load_more.data('max-page', $max_page);\n if ($layout === 'masonry') {\n var $products = $('.eael-product-gallery .products', $scope);\n $products.isotope('destroy');\n\n // init isotope\n var $isotope_products = $products.isotope({\n itemSelector: \"li.product\",\n layoutMode: $layout,\n percentPosition: true\n });\n $isotope_products.imagesLoaded().progress(function () {\n $isotope_products.isotope('layout');\n });\n }\n }\n },\n complete: function complete() {\n $($widget_class + ' .woocommerce').removeClass(\"eael-product-loader\");\n },\n error: function error(response) {\n console.log(response);\n }\n });\n });\n eael.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n var dataSrc = dataSrcHover = srcset = srcsetHover = '';\n if (showSecondaryImageOnHover) {\n $(document).on(\"mouseover\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcset = $(this).find('img').attr('srcset');\n if (dataSrcHover) {\n $(this).find('img').attr('srcset-hover', srcset);\n $(this).find('img').attr('src', dataSrcHover);\n $(this).find('img').attr('srcset', dataSrcHover);\n }\n }).on(\"mouseout\", \".eael-product-wrap\", function () {\n dataSrc = $(this).data(\"src\");\n dataSrcHover = $(this).data(\"src-hover\");\n srcsetHover = $(this).find('img').attr('srcset-hover');\n if (dataSrcHover) {\n $(this).find('img').attr('src', dataSrc);\n $(this).find('img').attr('srcset', srcsetHover);\n $(this).find('img').attr('srcset-hover', '');\n }\n });\n }\n\n /*\n Returning to the page using the browser's forward or back buttons \n it will reload spatially [Safari] browser\n */\n window.addEventListener(\"pageshow\", function (evt) {\n if (evt.persisted) {\n setTimeout(function () {\n window.location.reload();\n }, 10);\n }\n }, false);\n };\n if (eael.elementStatusCheck('productGalleryLoad') && window.forceFullyRun === undefined) {\n return;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-gallery.default\", wooProductGallery);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-gallery.js?"); /***/ }) diff --git a/config.php b/config.php index ddafd281c..f3d72790e 100755 --- a/config.php +++ b/config.php @@ -383,6 +383,11 @@ ], ], 'js' => [ + [ + 'file' => EAEL_PLUGIN_PATH . '/assets/front-end/js/lib-view/dom-purify/purify.min.js', + 'type' => 'lib', + 'context' => 'view', + ], [ 'file' => EAEL_PLUGIN_PATH . 'assets/front-end/js/lib-view/imagesloaded/imagesloaded.pkgd.min.js', 'type' => 'lib', diff --git a/src/js/view/filterable-gallery.js b/src/js/view/filterable-gallery.js index f6cab9668..bf05df4a6 100644 --- a/src/js/view/filterable-gallery.js +++ b/src/js/view/filterable-gallery.js @@ -156,9 +156,9 @@ jQuery(window).on("elementor/frontend/init", function () { ` }, callbacks: { - markupParse: function(template, values, item) { - if( item.el.attr('title') !== "" ) { - values.title = item.el.attr('title'); + markupParse: function (template, values, item) { + if (item.el.attr('title') !== "") { + values.title = DOMPurify.sanitize(item.el.attr('title')); } }, open: function() { From 4ad9cca7277a853019794bfded17e17f20547287 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Sun, 8 Sep 2024 19:44:04 +0600 Subject: [PATCH 37/42] sanitize the string contents by DOMPurify -- fancy text --- assets/front-end/js/view/fancy-text.js | 2 +- assets/front-end/js/view/fancy-text.min.js | 2 +- config.php | 5 +++++ src/js/view/fancy-text.js | 3 ++- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/assets/front-end/js/view/fancy-text.js b/assets/front-end/js/view/fancy-text.js index 44dfd2ef3..ed72e3f44 100644 --- a/assets/front-end/js/view/fancy-text.js +++ b/assets/front-end/js/view/fancy-text.js @@ -93,7 +93,7 @@ /*! no static exports found */ /***/ (function(module, exports) { -eval("var FancyText = function FancyText($scope, $) {\n var $fancyText = $scope.find(\".eael-fancy-text-container\").eq(0),\n $id = $fancyText.data(\"fancy-text-id\") !== undefined ? $fancyText.data(\"fancy-text-id\") : \"\",\n $fancy_text = $fancyText.data(\"fancy-text\") !== undefined ? $fancyText.data(\"fancy-text\") : \"\",\n $transition_type = $fancyText.data(\"fancy-text-transition-type\") !== undefined ? $fancyText.data(\"fancy-text-transition-type\") : \"\",\n $fancy_text_speed = $fancyText.data(\"fancy-text-speed\") !== undefined ? $fancyText.data(\"fancy-text-speed\") : \"\",\n $fancy_text_delay = $fancyText.data(\"fancy-text-delay\") !== undefined ? $fancyText.data(\"fancy-text-delay\") : \"\",\n $fancy_text_cursor = $fancyText.data(\"fancy-text-cursor\") === \"yes\",\n $fancy_text_loop = $fancyText.data(\"fancy-text-loop\") !== undefined ? $fancyText.data(\"fancy-text-loop\") === \"yes\" : false;\n $fancy_text = $fancy_text.split(\"|\");\n if ($transition_type === \"typing\") {\n new Typed(\"#eael-fancy-text-\" + $id, {\n strings: $fancy_text,\n typeSpeed: $fancy_text_speed,\n backSpeed: 0,\n startDelay: 300,\n backDelay: $fancy_text_delay,\n showCursor: $fancy_text_cursor,\n loop: $fancy_text_loop\n });\n }\n if ($transition_type !== \"typing\") {\n $(\"#eael-fancy-text-\" + $id).Morphext({\n animation: $transition_type,\n separator: \", \",\n speed: $fancy_text_delay,\n complete: function complete() {\n if (!$fancy_text_loop && $(this)[0].index + 1 === $(this)[0].phrases.length) {\n $(this)[0].stop();\n }\n }\n });\n }\n $(document).ready(function () {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 500);\n });\n if (isEditMode) {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 800);\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelFancyTextLoad')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-fancy-text.default\", FancyText);\n});\n\n//# sourceURL=webpack:///./src/js/view/fancy-text.js?"); +eval("var FancyText = function FancyText($scope, $) {\n var $fancyText = $scope.find(\".eael-fancy-text-container\").eq(0),\n $id = $fancyText.data(\"fancy-text-id\") !== undefined ? $fancyText.data(\"fancy-text-id\") : \"\",\n $fancy_text = $fancyText.data(\"fancy-text\") !== undefined ? $fancyText.data(\"fancy-text\") : \"\",\n $transition_type = $fancyText.data(\"fancy-text-transition-type\") !== undefined ? $fancyText.data(\"fancy-text-transition-type\") : \"\",\n $fancy_text_speed = $fancyText.data(\"fancy-text-speed\") !== undefined ? $fancyText.data(\"fancy-text-speed\") : \"\",\n $fancy_text_delay = $fancyText.data(\"fancy-text-delay\") !== undefined ? $fancyText.data(\"fancy-text-delay\") : \"\",\n $fancy_text_cursor = $fancyText.data(\"fancy-text-cursor\") === \"yes\",\n $fancy_text_loop = $fancyText.data(\"fancy-text-loop\") !== undefined ? $fancyText.data(\"fancy-text-loop\") === \"yes\" : false;\n $fancy_text = DOMPurify.sanitize($fancy_text).split(\"|\");\n if ($transition_type === \"typing\") {\n new Typed(\"#eael-fancy-text-\" + $id, {\n strings: $fancy_text,\n typeSpeed: $fancy_text_speed,\n backSpeed: 0,\n startDelay: 300,\n backDelay: $fancy_text_delay,\n showCursor: $fancy_text_cursor,\n loop: $fancy_text_loop\n });\n }\n if ($transition_type !== \"typing\") {\n $(\"#eael-fancy-text-\" + $id).Morphext({\n animation: $transition_type,\n separator: \", \",\n speed: $fancy_text_delay,\n complete: function complete() {\n if (!$fancy_text_loop && $(this)[0].index + 1 === $(this)[0].phrases.length) {\n $(this)[0].stop();\n }\n }\n });\n }\n $(document).ready(function () {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 500);\n });\n if (isEditMode) {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 800);\n }\n};\njQuery(window).on(\"elementor/frontend/init\", function () {\n if (eael.elementStatusCheck('eaelFancyTextLoad')) {\n return false;\n }\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-fancy-text.default\", FancyText);\n});\n\n//# sourceURL=webpack:///./src/js/view/fancy-text.js?"); /***/ }) diff --git a/assets/front-end/js/view/fancy-text.min.js b/assets/front-end/js/view/fancy-text.min.js index 025e3bcbd..5a7b5fb81 100644 --- a/assets/front-end/js/view/fancy-text.min.js +++ b/assets/front-end/js/view/fancy-text.min.js @@ -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=11)}({11:function(e,t){var n=function(e,t){var n=e.find(".eael-fancy-text-container").eq(0),a=void 0!==n.data("fancy-text-id")?n.data("fancy-text-id"):"",o=void 0!==n.data("fancy-text")?n.data("fancy-text"):"",r=void 0!==n.data("fancy-text-transition-type")?n.data("fancy-text-transition-type"):"",i=void 0!==n.data("fancy-text-speed")?n.data("fancy-text-speed"):"",d=void 0!==n.data("fancy-text-delay")?n.data("fancy-text-delay"):"",c="yes"===n.data("fancy-text-cursor"),f=void 0!==n.data("fancy-text-loop")&&"yes"===n.data("fancy-text-loop");o=o.split("|"),"typing"===r&&new Typed("#eael-fancy-text-"+a,{strings:o,typeSpeed:i,backSpeed:0,startDelay:300,backDelay:d,showCursor:c,loop:f}),"typing"!==r&&t("#eael-fancy-text-"+a).Morphext({animation:r,separator:", ",speed:d,complete:function(){f||t(this)[0].index+1!==t(this)[0].phrases.length||t(this)[0].stop()}}),t(document).ready((function(){setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),500)})),isEditMode&&setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),800)};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelFancyTextLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-fancy-text.default",n)}))}}); \ No newline at end of file +!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=11)}({11:function(e,t){var n=function(e,t){var n=e.find(".eael-fancy-text-container").eq(0),a=void 0!==n.data("fancy-text-id")?n.data("fancy-text-id"):"",o=void 0!==n.data("fancy-text")?n.data("fancy-text"):"",r=void 0!==n.data("fancy-text-transition-type")?n.data("fancy-text-transition-type"):"",i=void 0!==n.data("fancy-text-speed")?n.data("fancy-text-speed"):"",d=void 0!==n.data("fancy-text-delay")?n.data("fancy-text-delay"):"",c="yes"===n.data("fancy-text-cursor"),f=void 0!==n.data("fancy-text-loop")&&"yes"===n.data("fancy-text-loop");o=DOMPurify.sanitize(o).split("|"),"typing"===r&&new Typed("#eael-fancy-text-"+a,{strings:o,typeSpeed:i,backSpeed:0,startDelay:300,backDelay:d,showCursor:c,loop:f}),"typing"!==r&&t("#eael-fancy-text-"+a).Morphext({animation:r,separator:", ",speed:d,complete:function(){f||t(this)[0].index+1!==t(this)[0].phrases.length||t(this)[0].stop()}}),t(document).ready((function(){setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),500)})),isEditMode&&setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),800)};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelFancyTextLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-fancy-text.default",n)}))}}); \ No newline at end of file diff --git a/config.php b/config.php index f3d72790e..3fe0a7ff8 100755 --- a/config.php +++ b/config.php @@ -81,6 +81,11 @@ ], ], 'js' => [ + [ + 'file' => EAEL_PLUGIN_PATH . '/assets/front-end/js/lib-view/dom-purify/purify.min.js', + 'type' => 'lib', + 'context' => 'view', + ], [ 'file' => EAEL_PLUGIN_PATH . 'assets/front-end/js/lib-view/morphext/morphext.min.js', 'type' => 'lib', diff --git a/src/js/view/fancy-text.js b/src/js/view/fancy-text.js index d9fb213ff..a513deb58 100755 --- a/src/js/view/fancy-text.js +++ b/src/js/view/fancy-text.js @@ -7,7 +7,8 @@ var FancyText = function ($scope, $) { $fancy_text_delay = $fancyText.data("fancy-text-delay") !== undefined ? $fancyText.data("fancy-text-delay") : "", $fancy_text_cursor = $fancyText.data("fancy-text-cursor") === "yes", $fancy_text_loop = $fancyText.data("fancy-text-loop") !== undefined ? ($fancyText.data("fancy-text-loop") === "yes") : false; - $fancy_text = $fancy_text.split("|"); + + $fancy_text = DOMPurify.sanitize($fancy_text).split("|"); if ($transition_type === "typing") { new Typed("#eael-fancy-text-" + $id, { From 78d059eb4f307e1fc761efc6343f2d58a6d8dd1b Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Mon, 9 Sep 2024 10:47:56 +0600 Subject: [PATCH 38/42] Fixed alignment issue --- assets/front-end/css/view/woo-product-gallery.css | 3 +++ assets/front-end/css/view/woo-product-gallery.min.css | 2 +- src/css/view/woo-product-gallery.scss | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/front-end/css/view/woo-product-gallery.css b/assets/front-end/css/view/woo-product-gallery.css index 44515b811..12e4a06ad 100644 --- a/assets/front-end/css/view/woo-product-gallery.css +++ b/assets/front-end/css/view/woo-product-gallery.css @@ -360,6 +360,9 @@ text-transform: capitalize; border: none; letter-spacing: normal; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .eael-product-gallery .woocommerce ul.products li.product .button:hover, .eael-product-gallery .woocommerce ul.products li.product .button:visited { text-decoration: none; diff --git a/assets/front-end/css/view/woo-product-gallery.min.css b/assets/front-end/css/view/woo-product-gallery.min.css index c77dace09..6c7f37174 100644 --- a/assets/front-end/css/view/woo-product-gallery.min.css +++ b/assets/front-end/css/view/woo-product-gallery.min.css @@ -1 +1 @@ -.eael-product-gallery{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-gallery.eael-terms-layout-horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab{margin:0 0 50px 0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:first-child a{margin-left:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:last-child a{margin-right:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab img{display:block;margin:0 auto 5px auto}.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:2%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:25%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:100%}}@media(min-width: 768px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li{display:block}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:first-child a{margin-top:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:last-child a{margin-bottom:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab a{padding:20px 30px}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab img{margin:0 5px 0 0}.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:75%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:100%}}.eael-product-gallery .eael-cat-tab{list-style:none;margin:0;padding:0;border-radius:5px}.eael-product-gallery .eael-cat-tab li{display:inline-block}.eael-product-gallery .eael-cat-tab img{width:35px}.eael-product-gallery .eael-cat-tab a{padding:20px 30px;display:block;background-color:#f8f6ff;color:#7d7a94;font-size:20px;line-height:1.2em;font-weight:600;border-radius:5px;margin:3px}.eael-product-gallery .eael-cat-tab a:hover,.eael-product-gallery .eael-cat-tab a.active{color:#fff;background-color:#8941ff}.eael-product-gallery .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0 !important;padding:0 !important}.eael-product-gallery .woocommerce ul.products:before,.eael-product-gallery .woocommerce ul.products:after{display:none}.eael-product-gallery .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-gallery .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product .ast-on-card-button.ast-onsale-card{display:none !important}.eael-product-gallery .woocommerce ul.products li.product{width:100%}.eael-product-gallery .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;border:1px solid #eee}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a{text-decoration:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price ins{font-weight:400;background-color:rgba(0,0,0,0);color:#ff2a13}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button:focus,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before{content:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:rgba(0,0,0,0)}.eael-product-gallery.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-2 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-1 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-gallery.masonry .woocommerce ul.products:before,.eael-product-gallery.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-gallery.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-gallery .woocommerce ul.products h2.eael-product-not-found{grid-column:1/-1;text-align:center;font-size:20px}.eael-product-gallery .woocommerce ul.products li.product a img,.eael-product-gallery .woocommerce ul.products li.product img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-gallery .woocommerce ul.products li.product ins{background:rgba(0,0,0,0)}.eael-product-gallery .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal}.eael-product-gallery .woocommerce ul.products li.product .button:hover,.eael-product-gallery .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-gallery .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product{overflow-y:auto}.eael-product-gallery .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-gallery .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid rgba(0,0,0,0);border-bottom:12px solid rgba(0,0,0,0);border-left:10px solid #23a454;content:""}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-gallery .eael-product-wrap .eael-product-title *{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-gallery .eael-product-wrap .eael-product-title *:before{content:none}.eael-product-gallery .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-gallery .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-gallery .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-gallery .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;transition:all ease .4s}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:rgba(0,0,0,0);margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:rgba(0,0,0,0);color:#000}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:3px;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.eael-product-gallery .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-gallery .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-gallery .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-gallery .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-gallery.eael-product-preset-1 .product-image-wrap{overflow:inherit}.eael-product-gallery.eael-product-preset-1 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-gallery.eael-product-preset-6 ul.products,.eael-product-gallery.eael-product-preset-2 ul.products,.eael-product-gallery.eael-product-preset-1 ul.products{padding:0;margin:0;list-style:none}.eael-product-gallery.eael-product-preset-6 ul.products li.product,.eael-product-gallery.eael-product-preset-2 ul.products li.product,.eael-product-gallery.eael-product-preset-1 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-gallery.eael-product-preset-6 ul.products li.product.first,.eael-product-gallery.eael-product-preset-2 ul.products li.product.first,.eael-product-gallery.eael-product-preset-1 ul.products li.product.first{clear:none}.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button{display:none}.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_variable{display:none !important}.eael-load-more-button.hide-load-more{display:none !important}@media only screen and (min-width: 1025px){.eael-product-gallery-column-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-gallery-column-tablet-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-tablet-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-tablet-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-tablet-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-tablet-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-tablet-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-tablet-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-tablet-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-tablet-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-tablet-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-tablet-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-tablet-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-gallery-column-mobile-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-mobile-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-mobile-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-mobile-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-mobile-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-mobile-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-mobile-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-mobile-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-gallery-column-mobile-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-gallery-column-mobile-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-gallery-column-mobile-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-gallery-column-mobile-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}@-webkit-keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-loader{opacity:.6 !important;pointer-events:none !important}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-astra .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{line-height:38px;width:90%;margin:12px auto}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{width:85px}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating:before{line-height:13px}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating span:before{line-height:11px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating{font-size:12px;letter-spacing:2px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating:before{font-size:12px;letter-spacing:2px;line-height:18px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span{font-size:12px;letter-spacing:2px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{font-size:12px;letter-spacing:2px;left:9px;line-height:18px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-1.eael-product-gallery .woocommerce li.product .button,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery .woocommerce li.product .button,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-3.eael-product-gallery .woocommerce li.product .button{width:42px;border-radius:4px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-1.eael-product-gallery .woocommerce li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery .woocommerce li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-3.eael-product-gallery .woocommerce li.product a.added_to_cart{width:42px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery li.product .button{margin-top:10px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product .button{width:92%;border-radius:4px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product .star-rating{display:inline-block}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product a.added_to_cart{height:55px;width:92%;margin:auto;float:initial;border-radius:4px;line-height:50px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-1 li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-2 li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-3 li.product a.added_to_cart{width:42px;line-height:0;font-size:0;margin-right:3px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce ul.products:not(.elementor-grid){display:grid}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product{max-width:100%;display:block}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product .star-rating{min-width:110px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product a.button.add_to_cart_button{margin-bottom:0}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product .eael-product-price ins{text-decoration:none}.theme-kadence .woocommerce ul.products:not(.woo-archive-btn-button) li:where(:not(.woo-archive-btn-button)) .button:not(.kb-button){display:-webkit-box;display:-ms-flexbox;display:flex} +.eael-product-gallery{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-gallery.eael-terms-layout-horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab{margin:0 0 50px 0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:first-child a{margin-left:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:last-child a{margin-right:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab img{display:block;margin:0 auto 5px auto}.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:2%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:25%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:100%}}@media(min-width: 768px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li{display:block}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:first-child a{margin-top:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:last-child a{margin-bottom:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab a{padding:20px 30px}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab img{margin:0 5px 0 0}.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:75%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:100%}}.eael-product-gallery .eael-cat-tab{list-style:none;margin:0;padding:0;border-radius:5px}.eael-product-gallery .eael-cat-tab li{display:inline-block}.eael-product-gallery .eael-cat-tab img{width:35px}.eael-product-gallery .eael-cat-tab a{padding:20px 30px;display:block;background-color:#f8f6ff;color:#7d7a94;font-size:20px;line-height:1.2em;font-weight:600;border-radius:5px;margin:3px}.eael-product-gallery .eael-cat-tab a:hover,.eael-product-gallery .eael-cat-tab a.active{color:#fff;background-color:#8941ff}.eael-product-gallery .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0 !important;padding:0 !important}.eael-product-gallery .woocommerce ul.products:before,.eael-product-gallery .woocommerce ul.products:after{display:none}.eael-product-gallery .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-gallery .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product .ast-on-card-button.ast-onsale-card{display:none !important}.eael-product-gallery .woocommerce ul.products li.product{width:100%}.eael-product-gallery .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;border:1px solid #eee}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a{text-decoration:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price ins{font-weight:400;background-color:rgba(0,0,0,0);color:#ff2a13}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button:focus,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before{content:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:rgba(0,0,0,0)}.eael-product-gallery.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-2 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-1 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-gallery.masonry .woocommerce ul.products:before,.eael-product-gallery.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-gallery.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-gallery .woocommerce ul.products h2.eael-product-not-found{grid-column:1/-1;text-align:center;font-size:20px}.eael-product-gallery .woocommerce ul.products li.product a img,.eael-product-gallery .woocommerce ul.products li.product img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-gallery .woocommerce ul.products li.product ins{background:rgba(0,0,0,0)}.eael-product-gallery .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-gallery .woocommerce ul.products li.product .button:hover,.eael-product-gallery .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-gallery .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product{overflow-y:auto}.eael-product-gallery .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-gallery .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid rgba(0,0,0,0);border-bottom:12px solid rgba(0,0,0,0);border-left:10px solid #23a454;content:""}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-gallery .eael-product-wrap .eael-product-title *{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-gallery .eael-product-wrap .eael-product-title *:before{content:none}.eael-product-gallery .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-gallery .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-gallery .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-gallery .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;transition:all ease .4s}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:rgba(0,0,0,0);margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:rgba(0,0,0,0);color:#000}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:3px;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.eael-product-gallery .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-gallery .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-gallery .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-gallery .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-gallery.eael-product-preset-1 .product-image-wrap{overflow:inherit}.eael-product-gallery.eael-product-preset-1 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-gallery.eael-product-preset-6 ul.products,.eael-product-gallery.eael-product-preset-2 ul.products,.eael-product-gallery.eael-product-preset-1 ul.products{padding:0;margin:0;list-style:none}.eael-product-gallery.eael-product-preset-6 ul.products li.product,.eael-product-gallery.eael-product-preset-2 ul.products li.product,.eael-product-gallery.eael-product-preset-1 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-gallery.eael-product-preset-6 ul.products li.product.first,.eael-product-gallery.eael-product-preset-2 ul.products li.product.first,.eael-product-gallery.eael-product-preset-1 ul.products li.product.first{clear:none}.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button{display:none}.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_variable{display:none !important}.eael-load-more-button.hide-load-more{display:none !important}@media only screen and (min-width: 1025px){.eael-product-gallery-column-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-gallery-column-tablet-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-tablet-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-tablet-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-tablet-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-tablet-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-tablet-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-tablet-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-tablet-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-tablet-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-tablet-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-tablet-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-tablet-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-gallery-column-mobile-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-mobile-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-mobile-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-mobile-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-mobile-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-mobile-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-mobile-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-mobile-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-gallery-column-mobile-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-gallery-column-mobile-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-gallery-column-mobile-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-gallery-column-mobile-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}@-webkit-keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-loader{opacity:.6 !important;pointer-events:none !important}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-astra .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{line-height:38px;width:90%;margin:12px auto}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{width:85px}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating:before{line-height:13px}.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating span:before{line-height:11px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating{font-size:12px;letter-spacing:2px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating:before{font-size:12px;letter-spacing:2px;line-height:18px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span{font-size:12px;letter-spacing:2px}.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{font-size:12px;letter-spacing:2px;left:9px;line-height:18px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-1.eael-product-gallery .woocommerce li.product .button,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery .woocommerce li.product .button,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-3.eael-product-gallery .woocommerce li.product .button{width:42px;border-radius:4px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-1.eael-product-gallery .woocommerce li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery .woocommerce li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-3.eael-product-gallery .woocommerce li.product a.added_to_cart{width:42px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-2.eael-product-gallery li.product .button{margin-top:10px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product .button{width:92%;border-radius:4px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product .star-rating{display:inline-block}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-preset-4.eael-product-gallery .woocommerce li.product a.added_to_cart{height:55px;width:92%;margin:auto;float:initial;border-radius:4px;line-height:50px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-1 li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-2 li.product a.added_to_cart,.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .eael-product-preset-3 li.product a.added_to_cart{width:42px;line-height:0;font-size:0;margin-right:3px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce ul.products:not(.elementor-grid){display:grid}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product{max-width:100%;display:block}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product .star-rating{min-width:110px}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product a.button.add_to_cart_button{margin-bottom:0}.theme-buddyboss-theme #content .elementor-widget-container .eael-product-gallery .woocommerce li.product .eael-product-price ins{text-decoration:none}.theme-kadence .woocommerce ul.products:not(.woo-archive-btn-button) li:where(:not(.woo-archive-btn-button)) .button:not(.kb-button){display:-webkit-box;display:-ms-flexbox;display:flex} diff --git a/src/css/view/woo-product-gallery.scss b/src/css/view/woo-product-gallery.scss index fe158657e..06f100068 100644 --- a/src/css/view/woo-product-gallery.scss +++ b/src/css/view/woo-product-gallery.scss @@ -434,6 +434,7 @@ text-transform: capitalize; border: none; letter-spacing: normal; + display: flex; &:hover, &:visited { From 1697ef62dc9f9e33c68ec0aa3cf029f4aa16b569 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Mon, 9 Sep 2024 12:04:47 +0600 Subject: [PATCH 39/42] sanitize title attribute on the editor page also --- includes/Elements/Fancy_Text.php | 3 --- includes/Elements/Filterable_Gallery.php | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/includes/Elements/Fancy_Text.php b/includes/Elements/Fancy_Text.php index 11fb40ad0..55b46e507 100755 --- a/includes/Elements/Fancy_Text.php +++ b/includes/Elements/Fancy_Text.php @@ -603,8 +603,6 @@ public function fancy_text($settings) { } protected function render() { - - $settings = $this->get_settings_for_display(); $fancy_text = $this->fancy_text($settings['eael_fancy_text_strings']); if(!apply_filters('eael/pro_enabled', false)) { $settings['eael_fancy_text_style'] = 'style-1'; } @@ -654,5 +652,4 @@ protected function render() { } - protected function content_template() {} } diff --git a/includes/Elements/Filterable_Gallery.php b/includes/Elements/Filterable_Gallery.php index b41464320..e2bb39294 100644 --- a/includes/Elements/Filterable_Gallery.php +++ b/includes/Elements/Filterable_Gallery.php @@ -4033,7 +4033,7 @@ protected function render_editor_script() callbacks: { markupParse: function(template, values, item) { if( item.el.attr('title') !== "" ) { - values.title = item.el.attr('title'); + values.title = DOMPurify.sanitize(item.el.attr('title')); } }, open: function() { From 87c3d2e27752c067ad5771285e429d7d5ca6e538 Mon Sep 17 00:00:00 2001 From: Himadree Shekhar Halder Date: Mon, 9 Sep 2024 12:18:47 +0600 Subject: [PATCH 40/42] Fixed quick thumb img alignment issue --- assets/front-end/css/view/quick-view.css | 28 ++++++++++++++-- assets/front-end/css/view/quick-view.min.css | 2 +- src/css/view/quick-view.scss | 34 ++++++++++++++++---- 3 files changed, 54 insertions(+), 10 deletions(-) diff --git a/assets/front-end/css/view/quick-view.css b/assets/front-end/css/view/quick-view.css index 629ade424..ff571e629 100644 --- a/assets/front-end/css/view/quick-view.css +++ b/assets/front-end/css/view/quick-view.css @@ -161,14 +161,38 @@ .eael-product-popup.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n) { margin-right: 0; } -.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li { +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li { width: calc(25% - 0.75em); margin-right: 1em; margin-bottom: 1em; } -.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child { +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img { + cursor: pointer; + opacity: 0.5; +} +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img:hover, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img:hover { + opacity: 1; +} +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img.flex-active, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img.flex-active { + opacity: 1; +} +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:last-child { margin-right: 0; } +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 ol.flex-control-thumbs, +.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 ol.flex-control-thumbs { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin: 0; + padding: 0; + list-style: none; +} .eael-product-popup.woocommerce div.product .product_title { font-size: 28px; line-height: 1.2em; diff --git a/assets/front-end/css/view/quick-view.min.css b/assets/front-end/css/view/quick-view.min.css index 2847d2813..cef1526be 100644 --- a/assets/front-end/css/view/quick-view.min.css +++ b/assets/front-end/css/view/quick-view.min.css @@ -1 +1 @@ -.eael-popup-details-render{width:80%;max-width:900px}.eael-popup-details-render .eael-preloader{margin:0 auto;border:5px solid #f3f3f3;border-radius:50%;border-top:5px solid #3498db;width:50px;height:50px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-popup{position:fixed;left:0;top:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:-1}.eael-product-popup.eael-product-popup-ready{z-index:999;opacity:1 !important}.eael-product-popup.eael-product-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup.eael-product-zoom-in .eael-product-popup-details{opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-popup-details{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-modal-bg{opacity:.7}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-modal-bg{opacity:0}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-popup-details{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eael-product-popup .eael-product-modal-bg{position:absolute;left:0;top:0;height:100%;width:100%;background:#000;opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup .eael-product-popup-details{position:relative;margin:5vh auto;padding:20px;border:1px solid #888;max-width:900px;-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);background-color:#fefefe;width:100%;border-radius:10px;height:auto;max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button{position:relative}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-added:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;display:inline-block;position:absolute;right:12px}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-loading:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;position:absolute;right:12px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.eael-product-popup.woocommerce div.product{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;overflow-y:auto;background:rgba(0,0,0,0);position:relative;width:inherit;float:inherit}.eael-product-popup.woocommerce div.product.ast-article-single,.eael-product-popup.woocommerce div.product .ast-article-single{background:rgba(0,0,0,0)}@media(max-width: 767px){.eael-product-popup.woocommerce div.product{display:block}}.eael-product-popup.woocommerce div.product div.images{width:100%;margin-bottom:0}.eael-product-popup.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n){margin-right:0}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child{margin-right:0}.eael-product-popup.woocommerce div.product .product_title{font-size:28px;line-height:1.2em;font-weight:700;margin-bottom:10px;letter-spacing:normal;text-transform:capitalize}.eael-product-popup.woocommerce div.product .product_title.entry-title{display:block}.eael-product-popup.woocommerce div.product .product_title:before{content:none}.eael-product-popup.woocommerce div.product .price{font-size:25px;line-height:1.2em;margin:0 0 15px;text-align:left !important}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description{font-size:18px;line-height:1.2em;margin:0}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p,.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p:last-child{margin-bottom:20px}.eael-product-popup.woocommerce div.product .button{margin:0 !important;line-height:1.5em}.eael-product-popup.woocommerce div.product form.cart{margin:0 0 1.2em;padding:0;border:none;width:100%}.eael-product-popup.woocommerce div.product form.cart table{border:none;margin:0 0 1.2em;border-collapse:collapse;width:100%}.eael-product-popup.woocommerce div.product form.cart table tbody{display:table-row-group;border:none}.eael-product-popup.woocommerce div.product form.cart p.stock{margin-bottom:0}.eael-product-popup.woocommerce div.product form.cart .group_table td{border:none}.eael-product-popup.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.eael-product-popup.woocommerce div.product form.cart div.quantity{margin-right:15px;width:auto}.eael-product-popup.woocommerce div.product form.cart div.quantity input,.eael-product-popup.woocommerce div.product form.cart div.quantity a{height:100%;border:1px solid}.eael-product-popup.woocommerce div.product form.cart div.quantity input[type=number]{min-width:90px}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty{text-align:center}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{outline:none}.eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.plus,.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.minus{display:none}.eael-product-popup.woocommerce div.product .woocommerce-product-rating{margin-bottom:5px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .star-rating{font-size:16px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link{display:inline-block;vertical-align:top;font-size:16px;line-height:18px}.eael-product-popup.woocommerce div.product table tbody tr{border-bottom:1px solid #ccc}.eael-product-popup.woocommerce div.product table tbody tr td{background:rgba(0,0,0,0);vertical-align:middle !important;padding:15px 15px 15px 0 !important}.eael-product-popup.woocommerce div.product .product_meta{font-size:14px;border-top:1px solid #ccc;border-bottom:0;padding:1em 0 0;margin:0 0 .8em}.eael-product-popup.woocommerce div.product .product_meta>span{display:block;border:none;padding:5px 0}.eael-product-popup .eael-product-image-wrap{width:40%;background-image:url("../../../wp-admin/images/spinner.gif");background-repeat:no-repeat;background-position:center center}@media(max-width: 767px){.eael-product-popup .eael-product-image-wrap{width:100%}}.eael-product-popup .eael-product-image-wrap .badge-container{display:none}.eael-product-popup .eael-product-image-wrap .eael-new-product .flex-viewport{height:auto !important}.eael-product-popup .eael-product-details-wrap{width:56%;margin-left:4%;text-align:left}@media(max-width: 767px){.eael-product-popup .eael-product-details-wrap{width:100%;margin-left:0;margin-top:25px}}.eael-product-popup .eael-product-details-wrap .is-divider{display:none}.eael-product-popup button.eael-product-popup-close{position:absolute;right:-15px;top:-18px;font-size:20px;padding:0;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;background:#fff !important;text-align:center;-webkit-box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);color:#000 !important;height:40px;width:40px;min-height:40px;max-width:40px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;opacity:1;border:0;margin:0}.eael-product-popup button.eael-product-popup-close:focus{outline:none}.eael-product-popup form.cart{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.eael-product-popup form.cart.variations_form{display:block}.eael-product-popup form.cart.variations_form .variations{border:none}.eael-product-popup form.cart.variations_form .variations tr{margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td{display:block;width:100%;border:none;padding:0;margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td select{width:100%}.eael-product-popup form.cart.variations_form .variations_button{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-popup form.cart.grouped_form{display:block}.eael-product-popup form.cart.grouped_form table .button{line-height:1.2em}.eael-product-popup form.cart.grouped_form .quantity{width:100%}.eael-product-popup form.cart.grouped_form .quantity input,.eael-product-popup form.cart.grouped_form .quantity a{height:auto !important;min-height:2.507em;line-height:1.2em}.eael-product-popup form.cart .quantity{width:37%;margin-right:20px}.eael-product-popup form.cart .quantity input{width:100%}.eael-product-popup .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-popup .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-popup .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-popup .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-popup .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-popup .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-popup .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid rgba(0,0,0,0);border-bottom:12px solid rgba(0,0,0,0);border-left:10px solid #23a454;content:""}.eael-product-popup .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-popup .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.theme-oceanwp.elementor-editor-active .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{max-width:150px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity *{min-height:33px;line-height:33px;margin-top:1px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty{min-width:100px}@media only screen and (max-width: 1023px){.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty{min-width:70px}}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}@media only screen and (max-width: 767px){.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity{width:50%}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .minus,.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .plus{width:20%}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{width:60%;min-width:auto !important}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 18px !important}}.theme-savoy #elementor-lightbox-slideshow-single-img{display:none !important}.theme-savoy .eael-product-popup.woocommerce .nm-quantity-wrap .quantity .input-text{height:42px}.theme-savoy .eael-product-popup .flex-control-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.theme-savoy .eael-product-popup .nm-quantity-wrap{width:auto;border:none}.theme-savoy .eael-product-popup .nm-quantity-wrap .quantity{display:-webkit-box;display:-ms-flexbox;display:flex}.theme-savoy .eael-product-popup .variations_form.nm-custom-select tr .value select{opacity:1;border:1px solid #ccc}.theme-savoy .eael-product-popup #nm-product-meta{padding-left:0;text-align:left}.theme-savoy .eael-product-popup #nm-product-meta .nm-row{padding-left:0}.theme-savoy .eael-product-popup #nm-product-meta .nm-row .col-xs-12{padding-left:0;display:grid;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.theme-savoy .eael-product-popup .eael-product-popup-ready~#elementor-lightbox-slideshow-single-img{display:none !important}.theme-buddyboss-theme .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:5px 36px} +.eael-popup-details-render{width:80%;max-width:900px}.eael-popup-details-render .eael-preloader{margin:0 auto;border:5px solid #f3f3f3;border-radius:50%;border-top:5px solid #3498db;width:50px;height:50px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-popup{position:fixed;left:0;top:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:-1}.eael-product-popup.eael-product-popup-ready{z-index:999;opacity:1 !important}.eael-product-popup.eael-product-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup.eael-product-zoom-in .eael-product-popup-details{opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-popup-details{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-modal-bg{opacity:.7}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-modal-bg{opacity:0}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-popup-details{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eael-product-popup .eael-product-modal-bg{position:absolute;left:0;top:0;height:100%;width:100%;background:#000;opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup .eael-product-popup-details{position:relative;margin:5vh auto;padding:20px;border:1px solid #888;max-width:900px;-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);background-color:#fefefe;width:100%;border-radius:10px;height:auto;max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button{position:relative}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-added:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;display:inline-block;position:absolute;right:12px}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-loading:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;position:absolute;right:12px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.eael-product-popup.woocommerce div.product{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;overflow-y:auto;background:rgba(0,0,0,0);position:relative;width:inherit;float:inherit}.eael-product-popup.woocommerce div.product.ast-article-single,.eael-product-popup.woocommerce div.product .ast-article-single{background:rgba(0,0,0,0)}@media(max-width: 767px){.eael-product-popup.woocommerce div.product{display:block}}.eael-product-popup.woocommerce div.product div.images{width:100%;margin-bottom:0}.eael-product-popup.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n){margin-right:0}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img{cursor:pointer;opacity:.5}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img:hover,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img:hover{opacity:1}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img.flex-active,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img.flex-active{opacity:1}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:last-child{margin-right:0}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 ol.flex-control-thumbs,.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 ol.flex-control-thumbs{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;padding:0;list-style:none}.eael-product-popup.woocommerce div.product .product_title{font-size:28px;line-height:1.2em;font-weight:700;margin-bottom:10px;letter-spacing:normal;text-transform:capitalize}.eael-product-popup.woocommerce div.product .product_title.entry-title{display:block}.eael-product-popup.woocommerce div.product .product_title:before{content:none}.eael-product-popup.woocommerce div.product .price{font-size:25px;line-height:1.2em;margin:0 0 15px;text-align:left !important}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description{font-size:18px;line-height:1.2em;margin:0}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p,.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p:last-child{margin-bottom:20px}.eael-product-popup.woocommerce div.product .button{margin:0 !important;line-height:1.5em}.eael-product-popup.woocommerce div.product form.cart{margin:0 0 1.2em;padding:0;border:none;width:100%}.eael-product-popup.woocommerce div.product form.cart table{border:none;margin:0 0 1.2em;border-collapse:collapse;width:100%}.eael-product-popup.woocommerce div.product form.cart table tbody{display:table-row-group;border:none}.eael-product-popup.woocommerce div.product form.cart p.stock{margin-bottom:0}.eael-product-popup.woocommerce div.product form.cart .group_table td{border:none}.eael-product-popup.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.eael-product-popup.woocommerce div.product form.cart div.quantity{margin-right:15px;width:auto}.eael-product-popup.woocommerce div.product form.cart div.quantity input,.eael-product-popup.woocommerce div.product form.cart div.quantity a{height:100%;border:1px solid}.eael-product-popup.woocommerce div.product form.cart div.quantity input[type=number]{min-width:90px}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty{text-align:center}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{outline:none}.eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.plus,.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.minus{display:none}.eael-product-popup.woocommerce div.product .woocommerce-product-rating{margin-bottom:5px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .star-rating{font-size:16px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link{display:inline-block;vertical-align:top;font-size:16px;line-height:18px}.eael-product-popup.woocommerce div.product table tbody tr{border-bottom:1px solid #ccc}.eael-product-popup.woocommerce div.product table tbody tr td{background:rgba(0,0,0,0);vertical-align:middle !important;padding:15px 15px 15px 0 !important}.eael-product-popup.woocommerce div.product .product_meta{font-size:14px;border-top:1px solid #ccc;border-bottom:0;padding:1em 0 0;margin:0 0 .8em}.eael-product-popup.woocommerce div.product .product_meta>span{display:block;border:none;padding:5px 0}.eael-product-popup .eael-product-image-wrap{width:40%;background-image:url("../../../wp-admin/images/spinner.gif");background-repeat:no-repeat;background-position:center center}@media(max-width: 767px){.eael-product-popup .eael-product-image-wrap{width:100%}}.eael-product-popup .eael-product-image-wrap .badge-container{display:none}.eael-product-popup .eael-product-image-wrap .eael-new-product .flex-viewport{height:auto !important}.eael-product-popup .eael-product-details-wrap{width:56%;margin-left:4%;text-align:left}@media(max-width: 767px){.eael-product-popup .eael-product-details-wrap{width:100%;margin-left:0;margin-top:25px}}.eael-product-popup .eael-product-details-wrap .is-divider{display:none}.eael-product-popup button.eael-product-popup-close{position:absolute;right:-15px;top:-18px;font-size:20px;padding:0;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;background:#fff !important;text-align:center;-webkit-box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);color:#000 !important;height:40px;width:40px;min-height:40px;max-width:40px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;opacity:1;border:0;margin:0}.eael-product-popup button.eael-product-popup-close:focus{outline:none}.eael-product-popup form.cart{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.eael-product-popup form.cart.variations_form{display:block}.eael-product-popup form.cart.variations_form .variations{border:none}.eael-product-popup form.cart.variations_form .variations tr{margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td{display:block;width:100%;border:none;padding:0;margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td select{width:100%}.eael-product-popup form.cart.variations_form .variations_button{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-popup form.cart.grouped_form{display:block}.eael-product-popup form.cart.grouped_form table .button{line-height:1.2em}.eael-product-popup form.cart.grouped_form .quantity{width:100%}.eael-product-popup form.cart.grouped_form .quantity input,.eael-product-popup form.cart.grouped_form .quantity a{height:auto !important;min-height:2.507em;line-height:1.2em}.eael-product-popup form.cart .quantity{width:37%;margin-right:20px}.eael-product-popup form.cart .quantity input{width:100%}.eael-product-popup .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-popup .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-popup .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-popup .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-popup .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-popup .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-popup .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid rgba(0,0,0,0);border-bottom:12px solid rgba(0,0,0,0);border-left:10px solid #23a454;content:""}.eael-product-popup .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-popup .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.theme-oceanwp.elementor-editor-active .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{max-width:150px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity *{min-height:33px;line-height:33px;margin-top:1px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty{min-width:100px}@media only screen and (max-width: 1023px){.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty{min-width:70px}}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}@media only screen and (max-width: 767px){.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity{width:50%}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .minus,.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .plus{width:20%}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{width:60%;min-width:auto !important}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 18px !important}}.theme-savoy #elementor-lightbox-slideshow-single-img{display:none !important}.theme-savoy .eael-product-popup.woocommerce .nm-quantity-wrap .quantity .input-text{height:42px}.theme-savoy .eael-product-popup .flex-control-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.theme-savoy .eael-product-popup .nm-quantity-wrap{width:auto;border:none}.theme-savoy .eael-product-popup .nm-quantity-wrap .quantity{display:-webkit-box;display:-ms-flexbox;display:flex}.theme-savoy .eael-product-popup .variations_form.nm-custom-select tr .value select{opacity:1;border:1px solid #ccc}.theme-savoy .eael-product-popup #nm-product-meta{padding-left:0;text-align:left}.theme-savoy .eael-product-popup #nm-product-meta .nm-row{padding-left:0}.theme-savoy .eael-product-popup #nm-product-meta .nm-row .col-xs-12{padding-left:0;display:grid;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.theme-savoy .eael-product-popup .eael-product-popup-ready~#elementor-lightbox-slideshow-single-img{display:none !important}.theme-buddyboss-theme .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:5px 36px} diff --git a/src/css/view/quick-view.scss b/src/css/view/quick-view.scss index 47c93124e..4c6e32823 100755 --- a/src/css/view/quick-view.scss +++ b/src/css/view/quick-view.scss @@ -164,15 +164,35 @@ } } - div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li { - width: calc(25% - .75em); - margin-right: 1em; - margin-bottom: 1em; - - &:last-child { - margin-right: 0; + div.woocommerce-product-gallery--columns-4, + div.woocommerce-product-gallery--columns-5 { + .flex-control-thumbs li { + width: calc(25% - .75em); + margin-right: 1em; + margin-bottom: 1em; + img { + cursor: pointer; + opacity: 0.5; + &:hover { + opacity: 1; + } + } + img.flex-active { + opacity: 1; + } + + &:last-child { + margin-right: 0; + } + } + ol.flex-control-thumbs { + display: flex; + margin: 0; + padding: 0; + list-style: none; } } + .product_title { font-size: 28px; From 9e99e2d42a79cc85edc10ce66cd77a290d5e0f48 Mon Sep 17 00:00:00 2001 From: Linkon Miyan Date: Mon, 9 Sep 2024 12:46:56 +0600 Subject: [PATCH 41/42] escape widget id in the js --- includes/Elements/Filterable_Gallery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Elements/Filterable_Gallery.php b/includes/Elements/Filterable_Gallery.php index e2bb39294..0f3e5a852 100644 --- a/includes/Elements/Filterable_Gallery.php +++ b/includes/Elements/Filterable_Gallery.php @@ -3969,7 +3969,7 @@ protected function render_editor_script()