Version Description
17/02/2022 =
Improved: Data sanitization and escaping for Security Enhancement
Few minor bug fixes & improvements
Download this release
Release Info
Developer | wpdevteam |
Plugin | Elementor Essential Addons |
Version | 5.0.9 |
Comparing to | |
See all releases |
Code changes from version 5.0.8 to 5.0.9
- assets/front-end/js/view/product-grid.js +1 -1
- assets/front-end/js/view/product-grid.min.js +1 -1
- essential_adons_elementor.php +2 -2
- includes/Classes/Helper.php +36 -56
- includes/Elements/Product_Grid.php +70 -85
- includes/Template/Post-Timeline/default.php +3 -3
- includes/Traits/Helper.php +74 -49
- languages/essential-addons-for-elementor-lite.pot +83 -83
- readme.txt +6 -1
assets/front-end/js/view/product-grid.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n ea.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\n\n var widgetId = $wrap.data(\"widget-id\");\n var pageId = $wrap.data(\"page-id\");\n var nonce = $wrap.data(\"nonce\");\n var overlay = document.createElement(\"div\");\n overlay.classList.add(\"wcpc-overlay\");\n overlay.setAttribute(\"id\", \"wcpc-overlay\");\n var body = document.getElementsByTagName(\"body\")[0];\n body.appendChild(overlay);\n var overlayNode = document.getElementById(\"wcpc-overlay\");\n var $doc = $(document);\n var loader = false;\n var compareBtn = false;\n var hasCompareIcon = false;\n var compareBtnSpan = false;\n var requestType = false; // compare | remove\n\n var iconBeforeCompare = '<i class=\"fas fa-exchange-alt\"></i>';\n var iconAfterCompare = '<i class=\"fas fa-check-circle\"></i>';\n var modalTemplate = \"\\n <div class=\\\"eael-wcpc-modal\\\">\\n <i title=\\\"Close\\\" class=\\\"close-modal far fa-times-circle\\\"></i>\\n <div class=\\\"modal__content\\\" id=\\\"eael_modal_content\\\">\\n </div>\\n </div>\\n \";\n $(body).append(modalTemplate);\n var $modalContentWraper = $(\"#eael_modal_content\");\n var modal = document.getElementsByClassName(\"eael-wcpc-modal\")[0];\n var ajaxData = [{\n name: \"action\",\n value: \"eael_product_grid\"\n }, {\n name: \"widget_id\",\n value: widgetId\n }, {\n name: \"page_id\",\n value: pageId\n }, {\n name: \"nonce\",\n value: nonce\n }];\n\n var sendData = function sendData(ajaxData, successCb, errorCb, beforeCb, completeCb) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"POST\",\n dataType: \"json\",\n data: ajaxData,\n beforeSend: beforeCb,\n success: successCb,\n error: errorCb,\n complete: completeCb\n });\n };\n\n $doc.on(\"click\", \".eael-wc-compare\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n requestType = \"compare\";\n compareBtn = $(this);\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\n }\n\n ajaxData.push({\n name: \"product_id\",\n value: compareBtn.data(\"product-id\")\n });\n ajaxData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n sendData(ajaxData, handleSuccess, handleError);\n });\n $doc.on(\"click\", \".close-modal\", function (e) {\n modal.style.visibility = \"hidden\";\n modal.style.opacity = \"0\";\n overlayNode.style.visibility = \"hidden\";\n overlayNode.style.opacity = \"0\";\n });\n $doc.on(\"click\", \".eael-wc-remove\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $rBtn = $(this);\n var productId = $rBtn.data(\"product-id\");\n $rBtn.addClass(\"disable\");\n $rBtn.prop(\"disabled\", true); // prevent additional ajax request\n\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\n }\n\n var rmData = Array.from(ajaxData);\n rmData.push({\n name: \"product_id\",\n value: productId\n });\n rmData.push({\n name: \"remove_product\",\n value: 1\n });\n rmData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n requestType = \"remove\";\n var compareBtn = $('button[data-product-id=\"' + productId + '\"]');\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n sendData(rmData, handleSuccess, handleError);\n });\n\n function handleSuccess(data) {\n var success = data && data.success;\n\n if (success) {\n $modalContentWraper.html(data.data.compare_table);\n modal.style.visibility = \"visible\";\n modal.style.opacity = \"1\";\n overlayNode.style.visibility = \"visible\";\n overlayNode.style.opacity = \"1\";\n localStorage.setItem('productIds', JSON.stringify(data.data.product_ids));\n }\n\n if (loader) {\n loader.hide();\n }\n\n if (\"compare\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.added);\n } else if (hasCompareIcon) {\n compareBtn.html(iconAfterCompare);\n }\n }\n\n if (\"remove\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.compare);\n } else if (hasCompareIcon) {\n compareBtn.html(iconBeforeCompare);\n }\n }\n }\n\n function handleError(xhr, err) {\n console.log(err.toString());\n } // pagination\n\n\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n nth = $this.data(\"pnumber\"),\n lmt =
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n ea.hooks.doAction(\"quickViewAddMarkup\", $scope, $);\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\n\n var widgetId = $wrap.data(\"widget-id\");\n var pageId = $wrap.data(\"page-id\");\n var nonce = $wrap.data(\"nonce\");\n var overlay = document.createElement(\"div\");\n overlay.classList.add(\"wcpc-overlay\");\n overlay.setAttribute(\"id\", \"wcpc-overlay\");\n var body = document.getElementsByTagName(\"body\")[0];\n body.appendChild(overlay);\n var overlayNode = document.getElementById(\"wcpc-overlay\");\n var $doc = $(document);\n var loader = false;\n var compareBtn = false;\n var hasCompareIcon = false;\n var compareBtnSpan = false;\n var requestType = false; // compare | remove\n\n var iconBeforeCompare = '<i class=\"fas fa-exchange-alt\"></i>';\n var iconAfterCompare = '<i class=\"fas fa-check-circle\"></i>';\n var modalTemplate = \"\\n <div class=\\\"eael-wcpc-modal\\\">\\n <i title=\\\"Close\\\" class=\\\"close-modal far fa-times-circle\\\"></i>\\n <div class=\\\"modal__content\\\" id=\\\"eael_modal_content\\\">\\n </div>\\n </div>\\n \";\n $(body).append(modalTemplate);\n var $modalContentWraper = $(\"#eael_modal_content\");\n var modal = document.getElementsByClassName(\"eael-wcpc-modal\")[0];\n var ajaxData = [{\n name: \"action\",\n value: \"eael_product_grid\"\n }, {\n name: \"widget_id\",\n value: widgetId\n }, {\n name: \"page_id\",\n value: pageId\n }, {\n name: \"nonce\",\n value: nonce\n }];\n\n var sendData = function sendData(ajaxData, successCb, errorCb, beforeCb, completeCb) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"POST\",\n dataType: \"json\",\n data: ajaxData,\n beforeSend: beforeCb,\n success: successCb,\n error: errorCb,\n complete: completeCb\n });\n };\n\n $doc.on(\"click\", \".eael-wc-compare\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n requestType = \"compare\";\n compareBtn = $(this);\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\n }\n\n ajaxData.push({\n name: \"product_id\",\n value: compareBtn.data(\"product-id\")\n });\n ajaxData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n sendData(ajaxData, handleSuccess, handleError);\n });\n $doc.on(\"click\", \".close-modal\", function (e) {\n modal.style.visibility = \"hidden\";\n modal.style.opacity = \"0\";\n overlayNode.style.visibility = \"hidden\";\n overlayNode.style.opacity = \"0\";\n });\n $doc.on(\"click\", \".eael-wc-remove\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $rBtn = $(this);\n var productId = $rBtn.data(\"product-id\");\n $rBtn.addClass(\"disable\");\n $rBtn.prop(\"disabled\", true); // prevent additional ajax request\n\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\n }\n\n var rmData = Array.from(ajaxData);\n rmData.push({\n name: \"product_id\",\n value: productId\n });\n rmData.push({\n name: \"remove_product\",\n value: 1\n });\n rmData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n requestType = \"remove\";\n var compareBtn = $('button[data-product-id=\"' + productId + '\"]');\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n sendData(rmData, handleSuccess, handleError);\n });\n\n function handleSuccess(data) {\n var success = data && data.success;\n\n if (success) {\n $modalContentWraper.html(data.data.compare_table);\n modal.style.visibility = \"visible\";\n modal.style.opacity = \"1\";\n overlayNode.style.visibility = \"visible\";\n overlayNode.style.opacity = \"1\";\n localStorage.setItem('productIds', JSON.stringify(data.data.product_ids));\n }\n\n if (loader) {\n loader.hide();\n }\n\n if (\"compare\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.added);\n } else if (hasCompareIcon) {\n compareBtn.html(iconAfterCompare);\n }\n }\n\n if (\"remove\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.compare);\n } else if (hasCompareIcon) {\n compareBtn.html(iconBeforeCompare);\n }\n }\n }\n\n function handleError(xhr, err) {\n console.log(err.toString());\n } // pagination\n\n\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n 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 ea.hooks.doAction(\"quickViewPopupViewInit\", $scope, $);\n\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n\n var eael_popup = $(document).find(\".eael-woocommerce-popup-view\");\n\n if (eael_popup.length < 1) {\n eael_add_popup();\n }\n\n function eael_add_popup() {\n var markup = \"<div style=\\\"display: none\\\" class=\\\"eael-woocommerce-popup-view eael-product-popup eael-product-zoom-in woocommerce\\\">\\n <div class=\\\"eael-product-modal-bg\\\"></div>\\n <div class=\\\"eael-popup-details-render eael-woo-slider-popup\\\"><div class=\\\"eael-preloader\\\"></div></div>\\n </div>\";\n $(\"body\").append(markup);\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/product-grid.min.js
CHANGED
@@ -1 +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=18)}({18:function(e,t){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eicon-woocommerce.default",(function(e,t){ea.hooks.doAction("quickViewAddMarkup",e,t);var a=e.find("#eael-product-grid"),o=a.data("widget-id"),i=a.data("page-id"),n=a.data("nonce"),l=document.createElement("div");l.classList.add("wcpc-overlay"),l.setAttribute("id","wcpc-overlay");var c=document.getElementsByTagName("body")[0];c.appendChild(l);var
|
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=18)}({18:function(e,t){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eicon-woocommerce.default",(function(e,t){ea.hooks.doAction("quickViewAddMarkup",e,t);var a=e.find("#eael-product-grid"),o=a.data("widget-id"),i=a.data("page-id"),n=a.data("nonce"),l=document.createElement("div");l.classList.add("wcpc-overlay"),l.setAttribute("id","wcpc-overlay");var c=document.getElementsByTagName("body")[0];c.appendChild(l);var d=document.getElementById("wcpc-overlay"),r=t(document),p=!1,s=!1,u=!1,m=!1,f=!1;t(c).append('\n <div class="eael-wcpc-modal">\n <i title="Close" class="close-modal far fa-times-circle"></i>\n <div class="modal__content" id="eael_modal_content">\n </div>\n </div>\n ');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:n}],h=function(e,a,o,i,n){t.ajax({url:localize.ajaxurl,type:"POST",dataType:"json",data:e,beforeSend:i,success:a,error:o,complete:n})};function w(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))),p&&p.hide(),"compare"===f&&(m&&m.length?m.text(localize.i18n.added):u&&s.html('<i class="fas fa-check-circle"></i>')),"remove"===f&&(m&&m.length?m.text(localize.i18n.compare):u&&s.html('<i class="fas fa-exchange-alt"></i>'))}function _(e,t){console.log(t.toString())}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)}),h(y,w,_)})),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 n=Array.from(y);n.push({name:"product_id",value:o}),n.push({name:"remove_product",value:1}),n.push({name:"product_ids",value:JSON.stringify(i)}),f="remove";var l=t('button[data-product-id="'+o+'"]');(m=l.find(".eael-wc-compare-text")).length||(u=l.hasClass("eael-wc-compare-icon")),h(n,w,_)})),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"),n=o.data("plimit"),l=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:l,type:"post",data:{action:"woo_product_pagination_product",number:i,limit:n,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:l,type:"post",data:{action:"woo_product_pagination",number:i,limit:n,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)}})})),ea.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('<div style="display: none" class="eael-woocommerce-popup-view eael-product-popup eael-product-zoom-in woocommerce">\n <div class="eael-product-modal-bg"></div>\n <div class="eael-popup-details-render eael-woo-slider-popup"><div class="eael-preloader"></div></div>\n </div>')}))}))}});
|
essential_adons_elementor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 5.0.
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
-
define('EAEL_PLUGIN_VERSION', '5.0.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 5.0.9
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
+
define('EAEL_PLUGIN_VERSION', '5.0.9');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Classes/Helper.php
CHANGED
@@ -846,80 +846,60 @@ class Helper
|
|
846 |
|
847 |
return false;
|
848 |
}
|
|
|
849 |
/**
|
850 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
*/
|
852 |
public static function eael_pagination ($args, $settings) {
|
853 |
-
$args['posts_per_page'] = -1;
|
854 |
|
855 |
-
$
|
856 |
-
$pagination_Count = count( $pagination_Query->posts );
|
857 |
$paginationLimit = intval( $settings['eael_product_grid_products_count'] ) ?: 4;
|
858 |
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
859 |
-
$last = ceil( $pagination_Paginationlist );
|
860 |
$widget_id = sanitize_key( $settings['eael_widget_id'] );
|
|
|
861 |
$next_label = $settings['pagination_next_label'];
|
862 |
$adjacents = "2";
|
863 |
$setPagination = "";
|
|
|
|
|
|
|
|
|
|
|
864 |
|
865 |
if( $pagination_Paginationlist > 0 ){
|
866 |
|
867 |
-
$setPagination .="<nav class='eael-woo-pagination'>";
|
868 |
-
|
869 |
-
|
870 |
-
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
871 |
-
|
872 |
-
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
873 |
-
|
874 |
-
if ( $pagination == 0 || $pagination == 1 ) {
|
875 |
-
$active = "current";
|
876 |
-
} else {
|
877 |
-
$active = "";
|
878 |
-
}
|
879 |
-
|
880 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
881 |
-
|
882 |
-
}
|
883 |
|
884 |
-
|
|
|
|
|
|
|
|
|
885 |
|
886 |
-
|
|
|
|
|
|
|
|
|
887 |
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
$active = "";
|
892 |
-
}
|
893 |
-
|
894 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
895 |
-
}
|
896 |
-
|
897 |
-
$setPagination .="<li class='pagitext dots'>...</li>";
|
898 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
899 |
-
|
900 |
-
} else {
|
901 |
-
|
902 |
-
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
903 |
-
|
904 |
-
if ( $pagination == 0 || $pagination == 1 ) {
|
905 |
-
$active = "current";
|
906 |
-
} else {
|
907 |
-
$active = "";
|
908 |
-
}
|
909 |
-
|
910 |
-
$setPagination .= "<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='" . json_encode( [ 'dir' => 'free',
|
911 |
-
'file_name' => $settings['eael_dynamic_template_Layout'],
|
912 |
-
'name' => $settings['eael_widget_name']
|
913 |
-
], 1 ) . "' data-widgetid='$widget_id' data-args='" . http_build_query( $args ) . "' data-settings='" . http_build_query( $settings ) . "' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
914 |
-
}
|
915 |
-
|
916 |
-
}
|
917 |
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
|
922 |
-
|
923 |
$setPagination .="</nav>";
|
924 |
|
925 |
return $setPagination;
|
846 |
|
847 |
return false;
|
848 |
}
|
849 |
+
|
850 |
/**
|
851 |
+
* eael_pagination
|
852 |
+
* Generate post pagination
|
853 |
+
*
|
854 |
+
* @param $args array wp_query param
|
855 |
+
* @param $settings array Elementor widget setting data
|
856 |
+
*
|
857 |
+
* @access public
|
858 |
+
* @return string|void
|
859 |
+
* @since 3.3.0
|
860 |
*/
|
861 |
public static function eael_pagination ($args, $settings) {
|
|
|
862 |
|
863 |
+
$pagination_Count = intval( $args['total_post'] );
|
|
|
864 |
$paginationLimit = intval( $settings['eael_product_grid_products_count'] ) ?: 4;
|
865 |
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
|
|
866 |
$widget_id = sanitize_key( $settings['eael_widget_id'] );
|
867 |
+
$page_id = intval( $settings['eael_page_id'] );
|
868 |
$next_label = $settings['pagination_next_label'];
|
869 |
$adjacents = "2";
|
870 |
$setPagination = "";
|
871 |
+
$template_info = [
|
872 |
+
'dir' => 'free',
|
873 |
+
'file_name' => $settings['eael_dynamic_template_Layout'],
|
874 |
+
'name' => $settings['eael_widget_name']
|
875 |
+
];
|
876 |
|
877 |
if( $pagination_Paginationlist > 0 ){
|
878 |
|
879 |
+
$setPagination .="<nav id='{$widget_id}-eael-pagination' class='eael-woo-pagination' data-plimit='$paginationLimit' data-totalpage ='{$args['total_post']}' data-widgetid='{$widget_id}' data-pageid='$page_id' data-args='".http_build_query( $args )."' data-template='".json_encode( $template_info, 1 )."'>";
|
880 |
+
$setPagination .="<ul class='page-numbers'>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
881 |
|
882 |
+
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
883 |
+
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
884 |
+
$active = ( $pagination == 0 || $pagination == 1 ) ? 'current' : '';
|
885 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
886 |
+
}
|
887 |
|
888 |
+
} else if ( $pagination_Paginationlist >= 5 + ($adjacents * 2) ){
|
889 |
+
for ( $pagination = 1; $pagination <= 4 + ( $adjacents * 2 ); $pagination ++ ) {
|
890 |
+
$active = ( $pagination == 0 || $pagination == 1 ) ? 'current' : '';
|
891 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
892 |
+
}
|
893 |
|
894 |
+
$setPagination .="<li class='pagitext dots'>...</li>";
|
895 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
896 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
897 |
|
898 |
+
if ($pagination_Paginationlist > 1) {
|
899 |
+
$setPagination .= "<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='2'>".esc_html( $next_label )."</a></li>";
|
900 |
+
}
|
901 |
|
902 |
+
$setPagination .="</ul>";
|
903 |
$setPagination .="</nav>";
|
904 |
|
905 |
return $setPagination;
|
includes/Elements/Product_Grid.php
CHANGED
@@ -1658,30 +1658,6 @@ class Product_Grid extends Widget_Base
|
|
1658 |
'eael_section_product_badges',
|
1659 |
[
|
1660 |
'label' => esc_html__('Sale / Stock Out Badge', 'essential-addons-for-elementor-lite'),
|
1661 |
-
// 'conditions' => [
|
1662 |
-
// 'relation' => 'and',
|
1663 |
-
// 'terms' => [
|
1664 |
-
// [
|
1665 |
-
// 'name' => 'eael_product_grid_layout',
|
1666 |
-
// 'operator' => '!=',
|
1667 |
-
// 'value' => [
|
1668 |
-
// 'grid',
|
1669 |
-
// 'list',
|
1670 |
-
// 'masonry',
|
1671 |
-
// ],
|
1672 |
-
// ],
|
1673 |
-
// [
|
1674 |
-
// 'name' => 'eael_product_grid_style_preset',
|
1675 |
-
// 'operator' => '!in',
|
1676 |
-
// 'value' => [
|
1677 |
-
// 'eael-product-default',
|
1678 |
-
// 'eael-product-simple',
|
1679 |
-
// 'eael-product-reveal',
|
1680 |
-
// 'eael-product-overlay',
|
1681 |
-
// ]
|
1682 |
-
// ],
|
1683 |
-
// ],
|
1684 |
-
// ],
|
1685 |
]
|
1686 |
);
|
1687 |
$this->add_control(
|
@@ -2993,89 +2969,98 @@ class Product_Grid extends Widget_Base
|
|
2993 |
$settings = $this->get_settings_for_display();
|
2994 |
|
2995 |
// normalize for load more fix
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
|
3006 |
-
|
|
|
3007 |
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
// render dom
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
|
3031 |
-
add_filter( '
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
]);
|
3036 |
?>
|
3037 |
|
3038 |
<div <?php $this->print_render_attribute_string('wrap'); ?> >
|
3039 |
<div class="woocommerce">
|
3040 |
<?php
|
3041 |
do_action( 'eael_woo_before_product_loop' );
|
3042 |
-
$template = $this->get_template($settings['eael_dynamic_template_Layout']);
|
3043 |
-
$settings['loadable_file_name'] = $this->get_filename_only($template);
|
3044 |
-
$dir_name = $this->get_temp_dir_name($settings['loadable_file_name']);
|
3045 |
-
$found_posts = 0;
|
3046 |
|
3047 |
-
|
|
|
|
|
|
|
|
|
|
|
3048 |
$settings['eael_page_id'] = $this->page_id ? $this->page_id : get_the_ID();
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
|
|
|
|
|
|
|
|
|
|
3065 |
} else {
|
3066 |
-
|
3067 |
}
|
|
|
3068 |
if ( 'true' == $settings['show_pagination'] ) {
|
3069 |
-
|
3070 |
-
|
3071 |
}
|
3072 |
|
3073 |
if ( $found_posts > $args['posts_per_page'] ) {
|
3074 |
$this->print_load_more_button( $settings, $args, $dir_name );
|
3075 |
}
|
|
|
3076 |
?>
|
3077 |
</div>
|
3078 |
</div>
|
|
|
3079 |
<script type="text/javascript">
|
3080 |
jQuery(document).ready(function($) {
|
3081 |
var $scope = jQuery(".elementor-element-<?php echo $this->get_id(); ?>");
|
1658 |
'eael_section_product_badges',
|
1659 |
[
|
1660 |
'label' => esc_html__('Sale / Stock Out Badge', 'essential-addons-for-elementor-lite'),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1661 |
]
|
1662 |
);
|
1663 |
$this->add_control(
|
2969 |
$settings = $this->get_settings_for_display();
|
2970 |
|
2971 |
// normalize for load more fix
|
2972 |
+
$settings['layout_mode'] = $settings["eael_product_grid_layout"];
|
2973 |
+
$widget_id = $this->get_id();
|
2974 |
+
$settings['eael_widget_id'] = $widget_id;
|
2975 |
+
|
2976 |
+
if ( $settings['post_type'] === 'source_dynamic' && is_archive() || ! empty( $_REQUEST['post_type'] ) ) {
|
2977 |
+
$settings['posts_per_page'] = $settings['eael_product_grid_products_count'] ?: 4;
|
2978 |
+
$settings['offset'] = $settings['product_offset'];
|
2979 |
+
$args = HelperClass::get_query_args( $settings );
|
2980 |
+
$args = HelperClass::get_dynamic_args( $settings, $args );
|
2981 |
+
} else {
|
2982 |
+
$args = $this->build_product_query( $settings );
|
2983 |
+
}
|
2984 |
|
2985 |
+
$this->is_show_custom_add_to_cart = boolval( $settings['show_add_to_cart_custom_text'] );
|
2986 |
+
$this->simple_add_to_cart_button_text = $settings['add_to_cart_simple_product_button_text'];
|
2987 |
+
$this->variable_add_to_cart_button_text = $settings['add_to_cart_variable_product_button_text'];
|
2988 |
+
$this->grouped_add_to_cart_button_text = $settings['add_to_cart_grouped_product_button_text'];
|
2989 |
+
$this->external_add_to_cart_button_text = $settings['add_to_cart_external_product_button_text'];
|
2990 |
+
$this->default_add_to_cart_button_text = $settings['add_to_cart_default_product_button_text'];
|
2991 |
|
2992 |
+
if ( Plugin::$instance->documents->get_current() ) {
|
2993 |
+
$this->page_id = Plugin::$instance->documents->get_current()->get_main_id();
|
2994 |
+
}
|
2995 |
// render dom
|
2996 |
+
$this->add_render_attribute( 'wrap', [
|
2997 |
+
'class' => [
|
2998 |
+
"eael-product-grid",
|
2999 |
+
$settings['eael_product_grid_style_preset'],
|
3000 |
+
$settings['eael_product_grid_layout']
|
3001 |
+
],
|
3002 |
+
'id' => 'eael-product-grid',
|
3003 |
+
'data-widget-id' => $widget_id,
|
3004 |
+
'data-page-id' => $this->page_id,
|
3005 |
+
'data-nonce' => wp_create_nonce( 'eael_product_grid' ),
|
3006 |
+
] );
|
3007 |
+
|
3008 |
+
add_filter( 'woocommerce_product_add_to_cart_text', [
|
3009 |
+
$this,
|
3010 |
+
'add_to_cart_button_custom_text',
|
3011 |
+
] );
|
|
|
3012 |
?>
|
3013 |
|
3014 |
<div <?php $this->print_render_attribute_string('wrap'); ?> >
|
3015 |
<div class="woocommerce">
|
3016 |
<?php
|
3017 |
do_action( 'eael_woo_before_product_loop' );
|
|
|
|
|
|
|
|
|
3018 |
|
3019 |
+
$template = $this->get_template( $settings['eael_dynamic_template_Layout'] );
|
3020 |
+
$settings['loadable_file_name'] = $this->get_filename_only( $template );
|
3021 |
+
$dir_name = $this->get_temp_dir_name( $settings['loadable_file_name'] );
|
3022 |
+
$found_posts = 0;
|
3023 |
+
|
3024 |
+
if ( file_exists( $template ) ) {
|
3025 |
$settings['eael_page_id'] = $this->page_id ? $this->page_id : get_the_ID();
|
3026 |
+
$query = new \WP_Query( $args );
|
3027 |
+
if ( $query->have_posts() ) {
|
3028 |
+
$found_posts = $query->found_posts;
|
3029 |
+
$max_page = ceil( $found_posts / absint( $args['posts_per_page'] ) );
|
3030 |
+
$args['max_page'] = $max_page;
|
3031 |
+
$args['total_post'] = $found_posts;
|
3032 |
+
|
3033 |
+
printf( '<ul class="products" data-layout-mode="%s">', esc_attr( $settings["eael_product_grid_layout"] ) );
|
3034 |
+
|
3035 |
+
while ( $query->have_posts() ) {
|
3036 |
+
$query->the_post();
|
3037 |
+
include( realpath( $template ) );
|
3038 |
+
}
|
3039 |
+
wp_reset_postdata();
|
3040 |
+
|
3041 |
+
echo '</ul>';
|
3042 |
+
|
3043 |
+
} else {
|
3044 |
+
_e( '<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite' );
|
3045 |
+
}
|
3046 |
+
|
3047 |
} else {
|
3048 |
+
_e( '<p class="no-posts-found">No layout found!</p>', 'essential-addons-for-elementor-lite' );
|
3049 |
}
|
3050 |
+
|
3051 |
if ( 'true' == $settings['show_pagination'] ) {
|
3052 |
+
$settings['eael_widget_name'] = $this->get_name();
|
3053 |
+
echo HelperClass::eael_pagination( $args, $settings );
|
3054 |
}
|
3055 |
|
3056 |
if ( $found_posts > $args['posts_per_page'] ) {
|
3057 |
$this->print_load_more_button( $settings, $args, $dir_name );
|
3058 |
}
|
3059 |
+
|
3060 |
?>
|
3061 |
</div>
|
3062 |
</div>
|
3063 |
+
|
3064 |
<script type="text/javascript">
|
3065 |
jQuery(document).ready(function($) {
|
3066 |
var $scope = jQuery(".elementor-element-<?php echo $this->get_id(); ?>");
|
includes/Template/Post-Timeline/default.php
CHANGED
@@ -12,13 +12,13 @@ if (!defined('ABSPATH')) {
|
|
12 |
$post_timeline_image_url = Group_Control_Image_Size::get_attachment_image_src( get_post_thumbnail_id(),
|
13 |
'image', $settings );
|
14 |
|
15 |
-
$image_size = $settings['image_size'];
|
16 |
$image_class = " attachment-$image_size size-$image_size";
|
17 |
|
18 |
echo '<article class="eael-timeline-post eael-timeline-column">
|
19 |
<div class="eael-timeline-bullet"></div>
|
20 |
<div class="eael-timeline-post-inner">
|
21 |
-
<a class="eael-timeline-post-link" href="' . get_the_permalink() . '" title="' .
|
22 |
<time datetime="' . get_the_date() . '">' . get_the_date() . '</time>
|
23 |
<div class="eael-timeline-post-image'.$image_class.'" ' . ($settings['eael_show_image'] == 'yes' ? 'style="background-image: url('.esc_url( $post_timeline_image_url ).');"' : null) . '></div>';
|
24 |
if ($settings['eael_show_excerpt']) {
|
@@ -26,7 +26,7 @@ echo '<article class="eael-timeline-post eael-timeline-column">
|
|
26 |
if(empty($settings['eael_excerpt_length'])) {
|
27 |
echo '<p>'.strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()).'</p>';
|
28 |
}else {
|
29 |
-
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['expanison_indicator']) . '</p>';
|
30 |
}
|
31 |
echo '</div>';
|
32 |
}
|
12 |
$post_timeline_image_url = Group_Control_Image_Size::get_attachment_image_src( get_post_thumbnail_id(),
|
13 |
'image', $settings );
|
14 |
|
15 |
+
$image_size = sanitize_html_class( $settings['image_size'] );
|
16 |
$image_class = " attachment-$image_size size-$image_size";
|
17 |
|
18 |
echo '<article class="eael-timeline-post eael-timeline-column">
|
19 |
<div class="eael-timeline-bullet"></div>
|
20 |
<div class="eael-timeline-post-inner">
|
21 |
+
<a class="eael-timeline-post-link" href="' . get_the_permalink() . '" title="' . esc_attr(get_the_title()) . '"' . ($settings['timeline_link_nofollow'] ? 'rel="nofollow"' : '') .'' . ($settings['timeline_link_target_blank'] ? 'target="_blank"' : '') . '>
|
22 |
<time datetime="' . get_the_date() . '">' . get_the_date() . '</time>
|
23 |
<div class="eael-timeline-post-image'.$image_class.'" ' . ($settings['eael_show_image'] == 'yes' ? 'style="background-image: url('.esc_url( $post_timeline_image_url ).');"' : null) . '></div>';
|
24 |
if ($settings['eael_show_excerpt']) {
|
26 |
if(empty($settings['eael_excerpt_length'])) {
|
27 |
echo '<p>'.strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()).'</p>';
|
28 |
}else {
|
29 |
+
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), intval( $settings['eael_excerpt_length'] ), sanitize_text_field( $settings['expanison_indicator'] )) . '</p>';
|
30 |
}
|
31 |
echo '</div>';
|
32 |
}
|
includes/Traits/Helper.php
CHANGED
@@ -602,8 +602,29 @@ trait Helper
|
|
602 |
}
|
603 |
|
604 |
public function eael_woo_pagination_product_ajax() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
wp_parse_str( $_REQUEST['args'], $args );
|
606 |
-
wp_parse_str( $_REQUEST['settings'], $settings );
|
607 |
|
608 |
$paginationNumber = absint( $_POST['number'] );
|
609 |
$paginationLimit = absint( $_POST['limit'] );
|
@@ -630,6 +651,7 @@ trait Helper
|
|
630 |
$query->the_post();
|
631 |
include( $template );
|
632 |
}
|
|
|
633 |
}
|
634 |
echo ob_get_clean();
|
635 |
wp_die();
|
@@ -637,103 +659,106 @@ trait Helper
|
|
637 |
|
638 |
public function eael_woo_pagination_ajax() {
|
639 |
|
640 |
-
|
641 |
-
wp_parse_str( $_REQUEST['settings'], $settings );
|
642 |
|
643 |
-
|
|
|
|
|
|
|
|
|
|
|
644 |
|
645 |
-
|
646 |
-
|
647 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
648 |
|
649 |
-
$
|
650 |
-
$
|
|
|
|
|
|
|
|
|
|
|
651 |
|
652 |
-
$pagination_Query = new \WP_Query( $pagination_args );
|
653 |
-
$pagination_Count = count($pagination_Query->posts);
|
654 |
-
$pagination_Paginationlist = ceil($pagination_Count/$paginationLimit);
|
655 |
-
$last = ceil( $pagination_Paginationlist );
|
656 |
-
$paginationprev = $paginationNumber-1;
|
657 |
-
$paginationnext = $paginationNumber+1;
|
658 |
if( $paginationNumber>1 ){ $paginationprev; }
|
659 |
if( $paginationNumber < $last ){ $paginationnext; }
|
660 |
|
661 |
-
$adjacents
|
662 |
-
$
|
663 |
-
$
|
664 |
-
$
|
|
|
665 |
|
666 |
-
$setPagination = "";
|
667 |
if( $pagination_Paginationlist > 0 ){
|
668 |
|
669 |
$setPagination .="<ul class='page-numbers'>";
|
670 |
|
671 |
if( 1< $paginationNumber ){
|
672 |
-
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers'
|
673 |
}
|
674 |
|
675 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
676 |
|
677 |
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
678 |
-
|
679 |
-
|
680 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
681 |
-
|
682 |
}
|
683 |
|
684 |
} else if ( $pagination_Paginationlist > 5 + ($adjacents * 2) ){
|
685 |
|
686 |
if( $paginationNumber < 1 + ($adjacents * 2) ){
|
687 |
-
|
688 |
for( $pagination=1; $pagination <=4 + ($adjacents * 2); $pagination++){
|
689 |
|
690 |
-
|
691 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers
|
692 |
}
|
693 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
694 |
-
$setPagination .="<li
|
695 |
|
696 |
} elseif( $pagination_Paginationlist - ($adjacents * 2) > $paginationNumber && $paginationNumber > ($adjacents * 2)) {
|
697 |
$active = '';
|
698 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers
|
699 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
if( $paginationNumber == $pagination ){ $active="current"; }else{ $active=""; }
|
704 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
705 |
-
|
706 |
}
|
707 |
|
708 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
709 |
-
$setPagination .="<li
|
710 |
|
711 |
} else {
|
712 |
$active = '';
|
713 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers
|
714 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
715 |
-
|
716 |
for ($pagination = $last - (2 + ($adjacents * 2)); $pagination <= $last; $pagination++){
|
717 |
-
|
718 |
-
|
719 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
720 |
-
|
721 |
}
|
722 |
-
|
723 |
}
|
724 |
|
725 |
} else {
|
726 |
-
|
727 |
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
728 |
-
|
729 |
-
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers
|
730 |
}
|
731 |
|
732 |
}
|
733 |
|
734 |
if ($paginationNumber < $pagination_Paginationlist){
|
735 |
-
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-
|
736 |
-
.http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$paginationnext' data-plimit='$paginationLimit'>$next_label</a></li>";
|
737 |
}
|
738 |
|
739 |
$setPagination .="</ul>";
|
602 |
}
|
603 |
|
604 |
public function eael_woo_pagination_product_ajax() {
|
605 |
+
|
606 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
607 |
+
|
608 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
609 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
610 |
+
} else {
|
611 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
612 |
+
wp_send_json_error( $err_msg );
|
613 |
+
}
|
614 |
+
|
615 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
616 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
617 |
+
} else {
|
618 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
619 |
+
wp_send_json_error( $err_msg );
|
620 |
+
}
|
621 |
+
|
622 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
623 |
+
if ( empty( $settings ) ) {
|
624 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
625 |
+
}
|
626 |
+
$settings['eael_page_id'] = $page_id;
|
627 |
wp_parse_str( $_REQUEST['args'], $args );
|
|
|
628 |
|
629 |
$paginationNumber = absint( $_POST['number'] );
|
630 |
$paginationLimit = absint( $_POST['limit'] );
|
651 |
$query->the_post();
|
652 |
include( $template );
|
653 |
}
|
654 |
+
wp_reset_postdata();
|
655 |
}
|
656 |
echo ob_get_clean();
|
657 |
wp_die();
|
659 |
|
660 |
public function eael_woo_pagination_ajax() {
|
661 |
|
662 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
|
|
663 |
|
664 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
665 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
666 |
+
} else {
|
667 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
668 |
+
wp_send_json_error( $err_msg );
|
669 |
+
}
|
670 |
|
671 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
672 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
673 |
+
} else {
|
674 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
675 |
+
wp_send_json_error( $err_msg );
|
676 |
+
}
|
677 |
+
|
678 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
679 |
+
|
680 |
+
if ( empty( $settings ) ) {
|
681 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
682 |
+
}
|
683 |
+
|
684 |
+
$settings['eael_page_id'] = $page_id;
|
685 |
+
wp_parse_str( $_REQUEST['args'], $args );
|
686 |
|
687 |
+
$paginationNumber = absint( $_POST['number'] );
|
688 |
+
$paginationLimit = absint( $_POST['limit'] );
|
689 |
+
$pagination_Count = intval( $args['total_post'] );
|
690 |
+
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
691 |
+
$last = ceil( $pagination_Paginationlist );
|
692 |
+
$paginationprev = $paginationNumber - 1;
|
693 |
+
$paginationnext = $paginationNumber + 1;
|
694 |
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
if( $paginationNumber>1 ){ $paginationprev; }
|
696 |
if( $paginationNumber < $last ){ $paginationnext; }
|
697 |
|
698 |
+
$adjacents = "2";
|
699 |
+
$next_label = sanitize_text_field( $settings['pagination_next_label'] );
|
700 |
+
$prev_label = sanitize_text_field( $settings['pagination_prev_label'] );
|
701 |
+
$settings['eael_widget_name'] = realpath( sanitize_file_name( $_REQUEST['template_name'] ) );
|
702 |
+
$setPagination = "";
|
703 |
|
|
|
704 |
if( $pagination_Paginationlist > 0 ){
|
705 |
|
706 |
$setPagination .="<ul class='page-numbers'>";
|
707 |
|
708 |
if( 1< $paginationNumber ){
|
709 |
+
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationprev' >$prev_label</a></li>";
|
710 |
}
|
711 |
|
712 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
713 |
|
714 |
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
715 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
716 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
|
|
|
|
717 |
}
|
718 |
|
719 |
} else if ( $pagination_Paginationlist > 5 + ($adjacents * 2) ){
|
720 |
|
721 |
if( $paginationNumber < 1 + ($adjacents * 2) ){
|
|
|
722 |
for( $pagination=1; $pagination <=4 + ($adjacents * 2); $pagination++){
|
723 |
|
724 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
725 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
726 |
}
|
727 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
728 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
729 |
|
730 |
} elseif( $pagination_Paginationlist - ($adjacents * 2) > $paginationNumber && $paginationNumber > ($adjacents * 2)) {
|
731 |
$active = '';
|
732 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,1);
|
733 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
734 |
+
for ( $pagination = $paginationNumber - $adjacents; $pagination <= $paginationNumber + $adjacents; $pagination ++ ) {
|
735 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
736 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
|
|
|
|
|
|
737 |
}
|
738 |
|
739 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
740 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$last);
|
741 |
|
742 |
} else {
|
743 |
$active = '';
|
744 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,1);
|
745 |
$setPagination .="<li class='pagitext dots'>...</li>";
|
|
|
746 |
for ($pagination = $last - (2 + ($adjacents * 2)); $pagination <= $last; $pagination++){
|
747 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
748 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
|
|
|
|
749 |
}
|
|
|
750 |
}
|
751 |
|
752 |
} else {
|
|
|
753 |
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
754 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
755 |
+
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
756 |
}
|
757 |
|
758 |
}
|
759 |
|
760 |
if ($paginationNumber < $pagination_Paginationlist){
|
761 |
+
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationnext' >$next_label</a></li>";
|
|
|
762 |
}
|
763 |
|
764 |
$setPagination .="</ul>";
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -65,7 +65,7 @@ msgstr ""
|
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:188, ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/Classes/WPDeveloper_Setup_Wizard.php:543, ../includes/Traits/Admin.php:141, ../includes/Traits/Helper.php:
|
69 |
msgid "you are not allowed to do this action"
|
70 |
msgstr ""
|
71 |
|
@@ -125,7 +125,7 @@ msgstr ""
|
|
125 |
msgid "Next"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:680, ../includes/Elements/GravityForms.php:1957, ../includes/Elements/GravityForms.php:2207, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:
|
129 |
msgid "Right"
|
130 |
msgstr ""
|
131 |
|
@@ -201,7 +201,7 @@ msgstr ""
|
|
201 |
msgid "Upgrade to PRO"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:
|
205 |
msgid "Install Templately"
|
206 |
msgstr ""
|
207 |
|
@@ -580,15 +580,15 @@ msgstr ""
|
|
580 |
msgid "Image"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../includes/Controls/Select2.php:31, ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Feature_List.php:181, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:656, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:293, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Interactive_Circle.php:154, ../includes/Elements/Login_Register.php:2310, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:160, ../includes/Elements/Pricing_Table.php:137, ../includes/Elements/Product_Grid.php:
|
584 |
msgid "Title"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../includes/Controls/Select2.php:32, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Pricing_Table.php:203, ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:
|
588 |
msgid "Price"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../includes/Controls/Select2.php:33, ../includes/Elements/Product_Grid.php:
|
592 |
msgid "Quantity"
|
593 |
msgstr ""
|
594 |
|
@@ -660,7 +660,7 @@ msgstr ""
|
|
660 |
msgid "Placeholder"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1069, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/FluentForm.php:1731, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:
|
664 |
msgid "Pagination"
|
665 |
msgstr ""
|
666 |
|
@@ -668,7 +668,7 @@ msgstr ""
|
|
668 |
msgid "Pagination Type"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:657, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Interactive_Circle.php:84, ../includes/Elements/Interactive_Circle.php:134, ../includes/Elements/Pricing_Table.php:502, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Product_Grid.php:
|
672 |
msgid "Button"
|
673 |
msgstr ""
|
674 |
|
@@ -720,15 +720,15 @@ msgstr ""
|
|
720 |
msgid "Width"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1883, ../includes/Elements/GravityForms.php:2052, ../includes/Elements/GravityForms.php:2279, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:357, ../includes/Elements/Interactive_Circle.php:503, ../includes/Elements/Interactive_Circle.php:730, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1786, ../includes/Elements/Pricing_Table.php:1952, ../includes/Elements/Product_Grid.php:
|
724 |
msgid "Border"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:889, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1687, ../includes/Elements/GravityForms.php:1893, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2289, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1560, ../includes/Elements/Pricing_Table.php:1809, ../includes/Elements/Pricing_Table.php:1960, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:
|
728 |
msgid "Border Radius"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../includes/Elements/Advanced_Data_Table.php:400, ../includes/Elements/Advanced_Data_Table.php:1463, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:697, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Event_Calendar.php:1709, ../includes/Elements/Product_Grid.php:903, ../includes/Elements/Product_Grid.php:931, ../includes/Elements/Product_Grid.php:
|
732 |
msgid "Box Shadow"
|
733 |
msgstr ""
|
734 |
|
@@ -736,7 +736,7 @@ msgstr ""
|
|
736 |
msgid "Head"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:643, ../includes/Elements/GravityForms.php:902, ../includes/Elements/GravityForms.php:991, ../includes/Elements/GravityForms.php:1045, ../includes/Elements/GravityForms.php:1181, ../includes/Elements/GravityForms.php:1771, ../includes/Elements/GravityForms.php:1791, ../includes/Elements/GravityForms.php:1826, ../includes/Elements/GravityForms.php:2161, ../includes/Elements/GravityForms.php:2382, ../includes/Elements/GravityForms.php:2575, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:522, ../includes/Elements/Post_Grid.php:664, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:323, ../includes/Elements/Product_Grid.php:
|
740 |
msgid "Typography"
|
741 |
msgstr ""
|
742 |
|
@@ -744,19 +744,19 @@ msgstr ""
|
|
744 |
msgid "Text Alignment"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:1949, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:
|
748 |
msgid "Left"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:1953, ../includes/Elements/GravityForms.php:2203, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:
|
752 |
msgid "Center"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:628, ../includes/Elements/GravityForms.php:715, ../includes/Elements/GravityForms.php:979, ../includes/Elements/GravityForms.php:1032, ../includes/Elements/GravityForms.php:1219, ../includes/Elements/GravityForms.php:1662, ../includes/Elements/GravityForms.php:1738, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2130, ../includes/Elements/GravityForms.php:2266, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2427, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Interactive_Circle.php:476, ../includes/Elements/Interactive_Circle.php:536, ../includes/Elements/Interactive_Circle.php:604, ../includes/Elements/Interactive_Circle.php:689, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1912, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Product_Grid.php:
|
756 |
msgid "Text Color"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:703, ../includes/Elements/GravityForms.php:929, ../includes/Elements/GravityForms.php:1648, ../includes/Elements/GravityForms.php:1724, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2025, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2254, ../includes/Elements/GravityForms.php:2341, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Interactive_Circle.php:465, ../includes/Elements/Interactive_Circle.php:522, ../includes/Elements/Interactive_Circle.php:590, ../includes/Elements/Interactive_Circle.php:672, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1427, ../includes/Elements/Pricing_Table.php:1496, ../includes/Elements/Pricing_Table.php:1662, ../includes/Elements/Pricing_Table.php:1924, ../includes/Elements/Pricing_Table.php:1993, ../includes/Elements/Product_Grid.php:
|
760 |
msgid "Background Color"
|
761 |
msgstr ""
|
762 |
|
@@ -820,7 +820,7 @@ msgstr ""
|
|
820 |
msgid "Margin Bottom"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:668, ../includes/Elements/GravityForms.php:1945, ../includes/Elements/GravityForms.php:2195, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:
|
824 |
msgid "Alignment"
|
825 |
msgstr ""
|
826 |
|
@@ -828,15 +828,15 @@ msgstr ""
|
|
828 |
msgid "Margin"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:696, ../includes/Elements/GravityForms.php:1286, ../includes/Elements/GravityForms.php:1482, ../includes/Elements/GravityForms.php:1641, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/GravityForms.php:2247, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1907, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:
|
832 |
msgid "Normal"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:2110, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:518, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:
|
836 |
msgid "Hover"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Event_Calendar.php:787, ../includes/Elements/Event_Calendar.php:854, ../includes/Elements/Event_Calendar.php:908, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1066, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:541, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1217, ../includes/Elements/Filterable_Gallery.php:1257, ../includes/Elements/Filterable_Gallery.php:1579, ../includes/Elements/Filterable_Gallery.php:1594, ../includes/Elements/Filterable_Gallery.php:1639, ../includes/Elements/Filterable_Gallery.php:1654, ../includes/Elements/Filterable_Gallery.php:1739, ../includes/Elements/Filterable_Gallery.php:1877, ../includes/Elements/Filterable_Gallery.php:1953, ../includes/Elements/Filterable_Gallery.php:1989, ../includes/Elements/Filterable_Gallery.php:2036, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2364, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1064, ../includes/Elements/Flip_Box.php:1191, ../includes/Elements/Flip_Box.php:1222, ../includes/Elements/Flip_Box.php:1260, ../includes/Elements/Flip_Box.php:1292, ../includes/Elements/Flip_Box.php:1366, ../includes/Elements/Flip_Box.php:1425, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1190, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/GravityForms.php:1410, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1606, ../includes/Elements/GravityForms.php:1799, ../includes/Elements/GravityForms.php:1835, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1355, ../includes/Elements/Info_Box.php:1431, ../includes/Elements/Interactive_Circle.php:387, ../includes/Elements/Login_Register.php:2349, ../includes/Elements/Login_Register.php:2440, ../includes/Elements/Login_Register.php:2854, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:863, ../includes/Elements/Pricing_Table.php:884, ../includes/Elements/Pricing_Table.php:948, ../includes/Elements/Pricing_Table.php:1039, ../includes/Elements/Pricing_Table.php:1068, ../includes/Elements/Pricing_Table.php:1109, ../includes/Elements/Pricing_Table.php:1138, ../includes/Elements/Pricing_Table.php:1178, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1394, ../includes/Elements/Pricing_Table.php:1526, ../includes/Elements/Product_Grid.php:1331, ../includes/Elements/Product_Grid.php:
|
840 |
msgid "Color"
|
841 |
msgstr ""
|
842 |
|
@@ -860,39 +860,39 @@ msgstr ""
|
|
860 |
msgid "Select Accordion Tab Title Tag"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:219, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Product_Grid.php:440, ../includes/Elements/Product_Grid.php:
|
864 |
msgid "H1"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:220, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Product_Grid.php:441, ../includes/Elements/Product_Grid.php:
|
868 |
msgid "H2"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:221, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Product_Grid.php:442, ../includes/Elements/Product_Grid.php:
|
872 |
msgid "H3"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:222, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:536, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Product_Grid.php:443, ../includes/Elements/Product_Grid.php:
|
876 |
msgid "H4"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:223, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:537, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Product_Grid.php:444, ../includes/Elements/Product_Grid.php:
|
880 |
msgid "H5"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:224, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:307, ../includes/Elements/Flip_Box.php:538, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Product_Grid.php:
|
884 |
msgid "H6"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:225, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:539, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Product_Grid.php:
|
888 |
msgid "Span"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:226, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:540, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:241, ../includes/Elements/Product_Grid.php:
|
892 |
msgid "P"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:227, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:376, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:541, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Product_Grid.php:
|
896 |
msgid "Div"
|
897 |
msgstr ""
|
898 |
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
msgid "Content Type"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:717, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Cta_Box.php:259, ../includes/Elements/Data_Table.php:256, ../includes/Elements/Data_Table.php:371, ../includes/Elements/Data_Table.php:385, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1485, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Interactive_Circle.php:120, ../includes/Elements/Interactive_Circle.php:161, ../includes/Elements/Interactive_Circle.php:665, ../includes/Elements/Product_Grid.php:
|
940 |
msgid "Content"
|
941 |
msgstr ""
|
942 |
|
@@ -984,7 +984,7 @@ msgstr ""
|
|
984 |
msgid "Tab Style"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../includes/Elements/Adv_Accordion.php:428, ../includes/Elements/Adv_Accordion.php:805, ../includes/Elements/Adv_Tabs.php:433, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1080, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Interactive_Circle.php:438, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1237, ../includes/Elements/Pricing_Table.php:1696, ../includes/Elements/Pricing_Table.php:1867, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:
|
988 |
msgid "Icon Size"
|
989 |
msgstr ""
|
990 |
|
@@ -1000,7 +1000,7 @@ msgstr ""
|
|
1000 |
msgid "Icon Color"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:638, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Interactive_Circle.php:586, ../includes/Elements/Product_Grid.php:
|
1004 |
msgid "Active"
|
1005 |
msgstr ""
|
1006 |
|
@@ -1132,11 +1132,11 @@ msgstr ""
|
|
1132 |
msgid "Show Icon"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:155, ../includes/Elements/Cta_Box.php:302, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1650, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:
|
1136 |
msgid "Show"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:156, ../includes/Elements/Cta_Box.php:303, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1651, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:
|
1140 |
msgid "Hide"
|
1141 |
msgstr ""
|
1142 |
|
@@ -1212,7 +1212,7 @@ msgstr ""
|
|
1212 |
msgid "File Not Found"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:1102, ../includes/Elements/Post_Timeline.php:498, ../includes/Elements/Product_Grid.php:
|
1216 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1217 |
msgstr ""
|
1218 |
|
@@ -1272,7 +1272,7 @@ msgstr ""
|
|
1272 |
msgid "List"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1794, ../includes/Elements/Product_Grid.php:
|
1276 |
msgid "Hover Color"
|
1277 |
msgstr ""
|
1278 |
|
@@ -1336,7 +1336,7 @@ msgstr ""
|
|
1336 |
msgid "Close Icon"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1100, ../includes/Elements/GravityForms.php:1333, ../includes/Elements/GravityForms.php:1529, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/GravityForms.php:2143, ../includes/Elements/GravityForms.php:2365, ../includes/Elements/Interactive_Circle.php:366, ../includes/Elements/Interactive_Circle.php:564, ../includes/Elements/Interactive_Circle.php:634, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2020, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:
|
1340 |
msgid "Border Color"
|
1341 |
msgstr ""
|
1342 |
|
@@ -1552,7 +1552,7 @@ msgstr ""
|
|
1552 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1939, ../includes/Elements/Pricing_Table.php:2008, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:
|
1556 |
msgid "Background"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1944,7 +1944,7 @@ msgstr ""
|
|
1944 |
msgid "Title Style"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:340, ../includes/Elements/Product_Grid.php:
|
1948 |
msgid "Title Color"
|
1949 |
msgstr ""
|
1950 |
|
@@ -2668,15 +2668,15 @@ msgstr ""
|
|
2668 |
msgid "Date Icon"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Product_Grid.php:
|
2672 |
msgid "Content Color"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Product_Grid.php:
|
2676 |
msgid " Close Button"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: ../includes/Elements/Event_Calendar.php:1549, ../includes/Elements/Product_Grid.php:
|
2680 |
msgid "Button Size"
|
2681 |
msgstr ""
|
2682 |
|
@@ -3212,7 +3212,7 @@ msgstr ""
|
|
3212 |
msgid "Media"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: ../includes/Elements/Filterable_Gallery.php:231, ../includes/Elements/Product_Grid.php:
|
3216 |
msgid "Buttons"
|
3217 |
msgstr ""
|
3218 |
|
@@ -3492,7 +3492,7 @@ msgstr ""
|
|
3492 |
msgid "Dropdown"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: ../includes/Elements/Filterable_Gallery.php:2463, ../includes/Elements/Product_Grid.php:
|
3496 |
msgid "Top Spacing"
|
3497 |
msgstr ""
|
3498 |
|
@@ -3764,7 +3764,7 @@ msgstr ""
|
|
3764 |
msgid "Price Label Color"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: ../includes/Elements/GravityForms.php:1154, ../includes/Elements/Product_Grid.php:1201, ../includes/Elements/Product_Grid.php:
|
3768 |
msgid "Price Color"
|
3769 |
msgstr ""
|
3770 |
|
@@ -4004,19 +4004,19 @@ msgstr ""
|
|
4004 |
msgid "Preset"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: ../includes/Elements/Interactive_Circle.php:73, ../includes/Elements/Product_Grid.php:272, ../includes/Elements/Product_Grid.php:
|
4008 |
msgid "Preset 1"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Product_Grid.php:
|
4012 |
msgid "Preset 2"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/Product_Grid.php:274, ../includes/Elements/Product_Grid.php:
|
4016 |
msgid "Preset 3"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Product_Grid.php:
|
4020 |
msgid "Preset 4"
|
4021 |
msgstr ""
|
4022 |
|
@@ -5299,7 +5299,7 @@ msgstr ""
|
|
5299 |
msgid "Date Text Color"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: ../includes/Elements/Post_Timeline.php:502, ../includes/Elements/Product_Grid.php:
|
5303 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5304 |
msgstr ""
|
5305 |
|
@@ -5591,7 +5591,7 @@ msgstr ""
|
|
5591 |
msgid "Product Title"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: ../includes/Elements/Product_Grid.php:144, ../includes/Elements/Product_Grid.php:
|
5595 |
msgid "SKU"
|
5596 |
msgstr ""
|
5597 |
|
@@ -5635,7 +5635,7 @@ msgstr ""
|
|
5635 |
msgid "Layouts"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Product_Grid.php:
|
5639 |
msgid "Style Preset"
|
5640 |
msgstr ""
|
5641 |
|
@@ -5651,7 +5651,7 @@ msgstr ""
|
|
5651 |
msgid "Overlay Style"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:
|
5655 |
msgid "Preset 5"
|
5656 |
msgstr ""
|
5657 |
|
@@ -5819,7 +5819,7 @@ msgstr ""
|
|
5819 |
msgid "Product Price"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: ../includes/Elements/Product_Grid.php:1213, ../includes/Elements/Product_Grid.php:
|
5823 |
msgid "Sale Price Color"
|
5824 |
msgstr ""
|
5825 |
|
@@ -5871,67 +5871,67 @@ msgstr ""
|
|
5871 |
msgid "Sale / Stock Out Badge"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
-
#: ../includes/Elements/Product_Grid.php:
|
5875 |
msgid "Sale Text"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
-
#: ../includes/Elements/Product_Grid.php:
|
5879 |
msgid "Stock Out Text"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
-
#: ../includes/Elements/Product_Grid.php:
|
5883 |
msgid "Show Quick view?"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: ../includes/Elements/Product_Grid.php:
|
5887 |
msgid "Quick view Title Tag"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: ../includes/Elements/Product_Grid.php:
|
5891 |
msgid "Icons Size"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: ../includes/Elements/Product_Grid.php:
|
5895 |
msgid "Show pagination"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: ../includes/Elements/Product_Grid.php:
|
5899 |
msgid "Previous Label"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
-
#: ../includes/Elements/Product_Grid.php:
|
5903 |
msgid "←"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
-
#: ../includes/Elements/Product_Grid.php:
|
5907 |
msgid "Next Label"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: ../includes/Elements/Product_Grid.php:
|
5911 |
msgid "→"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: ../includes/Elements/Product_Grid.php:
|
5915 |
msgid "Loader"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: ../includes/Elements/Product_Grid.php:
|
5919 |
msgid "Popup"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: ../includes/Elements/Product_Grid.php:
|
5923 |
msgid "Review Link Color"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: ../includes/Elements/Product_Grid.php:
|
5927 |
msgid "Review Link Hover"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: ../includes/Elements/Product_Grid.php:
|
5931 |
msgid "Sale"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: ../includes/Elements/Product_Grid.php:
|
5935 |
msgid "Cart Button"
|
5936 |
msgstr ""
|
5937 |
|
@@ -8139,23 +8139,23 @@ msgstr ""
|
|
8139 |
msgid "Post ID is missing"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
-
#: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:
|
8143 |
msgid "Widget ID is missing"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:
|
8147 |
msgid "Insecure form submitted without security token"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
-
#: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:
|
8151 |
msgid "Security token did not match"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
-
#: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:
|
8155 |
msgid "Page ID is missing"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
-
#: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:
|
8159 |
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
8160 |
msgstr ""
|
8161 |
|
@@ -8167,35 +8167,35 @@ msgstr ""
|
|
8167 |
msgid "%s ago"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
-
#: ../includes/Traits/Helper.php:
|
8171 |
msgid "1,700+ Stunning Templates"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
-
#: ../includes/Traits/Helper.php:
|
8175 |
msgid "Supports Elementor & Gutenberg"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: ../includes/Traits/Helper.php:
|
8179 |
msgid "Powering up 100,000+ Websites"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
-
#: ../includes/Traits/Helper.php:
|
8183 |
msgid "Cloud Collaboration with Team"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
-
#: ../includes/Traits/Helper.php:
|
8187 |
msgid "Don’t Show This Again"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
-
#: ../includes/Traits/Helper.php:
|
8191 |
msgid "Activate Templately"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
-
#: ../includes/Traits/Helper.php:
|
8195 |
msgid "Activated Templately"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
-
#: ../includes/Traits/Helper.php:
|
8199 |
msgid "Submit"
|
8200 |
msgstr ""
|
8201 |
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:188, ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/Classes/WPDeveloper_Setup_Wizard.php:543, ../includes/Traits/Admin.php:141, ../includes/Traits/Helper.php:878, ../includes/Traits/Library.php:161
|
69 |
msgid "you are not allowed to do this action"
|
70 |
msgstr ""
|
71 |
|
125 |
msgid "Next"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:680, ../includes/Elements/GravityForms.php:1957, ../includes/Elements/GravityForms.php:2207, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1691, ../includes/Elements/Product_Grid.php:2180, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:206, ../includes/Elements/Simple_Menu.php:351, ../includes/Elements/Simple_Menu.php:758, ../includes/Elements/Simple_Menu.php:784, ../includes/Elements/Simple_Menu.php:809, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:277, ../includes/Elements/Woo_Cart.php:498, ../includes/Elements/Woo_Cart.php:594, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:743, ../includes/Elements/Woo_Cart.php:851, ../includes/Elements/Woo_Cart.php:1596, ../includes/Elements/Woo_Cart.php:2202, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:1267, ../includes/Traits/Controls.php:1605, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1979
|
129 |
msgid "Right"
|
130 |
msgstr ""
|
131 |
|
201 |
msgid "Upgrade to PRO"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:854, ../includes/templates/admin/general.php:31
|
205 |
msgid "Install Templately"
|
206 |
msgstr ""
|
207 |
|
580 |
msgid "Image"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../includes/Controls/Select2.php:31, ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Feature_List.php:181, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:656, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:293, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Interactive_Circle.php:154, ../includes/Elements/Login_Register.php:2310, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:160, ../includes/Elements/Pricing_Table.php:137, ../includes/Elements/Product_Grid.php:2402, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:681, ../includes/Elements/Woo_Cart.php:197, ../includes/Elements/Woo_Cart.php:439, ../includes/Elements/Woo_Cart.php:570, ../includes/Elements/Woo_Cart.php:641, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Checkout.php:335, ../includes/Elements/Woo_Checkout.php:445, ../includes/Elements/Woo_Checkout.php:539, ../includes/Elements/Woo_Product_Carousel.php:1512, ../includes/Elements/Woo_Product_Gallery.php:1765, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201
|
584 |
msgid "Title"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/Controls/Select2.php:32, ../includes/Elements/GravityForms.php:1134, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Pricing_Table.php:203, ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:2432, ../includes/Elements/Woo_Cart.php:198, ../includes/Elements/Woo_Cart.php:394, ../includes/Elements/Woo_Cart.php:557, ../includes/Elements/Woo_Cart.php:572, ../includes/Elements/Woo_Checkout.php:220, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1541, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:1794, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79
|
588 |
msgid "Price"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/Controls/Select2.php:33, ../includes/Elements/Product_Grid.php:2581, ../includes/Elements/Woo_Cart.php:199, ../includes/Elements/Woo_Cart.php:398, ../includes/Elements/Woo_Cart.php:628, ../includes/Elements/Woo_Cart.php:643, ../includes/Elements/Woo_Checkout.php:203, ../includes/Elements/Woo_Product_Carousel.php:1702, ../includes/Elements/Woo_Product_Gallery.php:1943
|
592 |
msgid "Quantity"
|
593 |
msgstr ""
|
594 |
|
660 |
msgid "Placeholder"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1069, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/FluentForm.php:1731, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Product_Grid.php:2156
|
664 |
msgid "Pagination"
|
665 |
msgstr ""
|
666 |
|
668 |
msgid "Pagination Type"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:657, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Interactive_Circle.php:84, ../includes/Elements/Interactive_Circle.php:134, ../includes/Elements/Pricing_Table.php:502, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Product_Grid.php:1808, ../includes/Elements/Woo_Cart.php:1756, ../includes/Elements/Woo_Cart.php:2004, ../includes/Elements/Woo_Checkout.php:1299, ../includes/Elements/Woo_Checkout.php:1597, ../includes/Elements/Woo_Checkout.php:2456, ../includes/Elements/Woo_Product_Carousel.php:1295, ../includes/Elements/Woo_Product_Gallery.php:1642, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261
|
672 |
msgid "Button"
|
673 |
msgstr ""
|
674 |
|
720 |
msgid "Width"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1883, ../includes/Elements/GravityForms.php:2052, ../includes/Elements/GravityForms.php:2279, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:357, ../includes/Elements/Interactive_Circle.php:503, ../includes/Elements/Interactive_Circle.php:730, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1786, ../includes/Elements/Pricing_Table.php:1952, ../includes/Elements/Product_Grid.php:2251, ../includes/Elements/Simple_Menu.php:631, ../includes/Elements/Simple_Menu.php:704, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1378, ../includes/Traits/Controls.php:1508
|
724 |
msgid "Border"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:889, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1687, ../includes/Elements/GravityForms.php:1893, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2289, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1560, ../includes/Elements/Pricing_Table.php:1809, ../includes/Elements/Pricing_Table.php:1960, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:1995, ../includes/Elements/Product_Grid.php:2351, ../includes/Elements/Product_Grid.php:2691, ../includes/Elements/Product_Grid.php:2890, ../includes/Elements/Product_Grid.php:2922, ../includes/Elements/Simple_Menu.php:639, ../includes/Elements/Sticky_Video.php:592, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1317, ../includes/Elements/Woo_Cart.php:1464, ../includes/Elements/Woo_Cart.php:1720, ../includes/Elements/Woo_Cart.php:1859, ../includes/Elements/Woo_Cart.php:1960, ../includes/Elements/Woo_Cart.php:2114, ../includes/Elements/Woo_Cart.php:2319, ../includes/Elements/Woo_Cart.php:2405, ../includes/Elements/Woo_Cart.php:2489, ../includes/Elements/Woo_Checkout.php:659, ../includes/Elements/Woo_Checkout.php:808, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1252, ../includes/Elements/Woo_Checkout.php:1405, ../includes/Elements/Woo_Checkout.php:1528, ../includes/Elements/Woo_Checkout.php:1703, ../includes/Elements/Woo_Checkout.php:1911, ../includes/Elements/Woo_Checkout.php:2113, ../includes/Elements/Woo_Checkout.php:2293, ../includes/Elements/Woo_Checkout.php:2573, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:2053, ../includes/Elements/Woo_Product_Gallery.php:2252, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:443, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:1332, ../includes/Traits/Controls.php:1386, ../includes/Traits/Controls.php:1516, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
|
728 |
msgid "Border Radius"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../includes/Elements/Advanced_Data_Table.php:400, ../includes/Elements/Advanced_Data_Table.php:1463, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:697, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Event_Calendar.php:1709, ../includes/Elements/Product_Grid.php:903, ../includes/Elements/Product_Grid.php:931, ../includes/Elements/Product_Grid.php:2914, ../includes/Elements/Product_Grid.php:2949, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:664, ../includes/Elements/Twitter_Feed.php:876, ../includes/Elements/Woo_Cart.php:1296, ../includes/Elements/Woo_Cart.php:1453, ../includes/Elements/Woo_Cart.php:2311, ../includes/Elements/Woo_Cart.php:2396, ../includes/Elements/Woo_Cart.php:2481, ../includes/Elements/Woo_Product_Carousel.php:967, ../includes/Elements/Woo_Product_Carousel.php:996, ../includes/Elements/Woo_Product_Carousel.php:2033, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Carousel.php:2747, ../includes/Elements/Woo_Product_Gallery.php:635, ../includes/Elements/Woo_Product_Gallery.php:663, ../includes/Elements/Woo_Product_Gallery.php:1243, ../includes/Elements/Woo_Product_Gallery.php:1419, ../includes/Elements/Woo_Product_Gallery.php:2276, ../includes/Elements/Woo_Product_Gallery.php:2311, ../includes/Extensions/Table_of_Content.php:557, ../includes/Extensions/Table_of_Content.php:802, ../includes/Traits/Woo_Product_Comparable.php:1418
|
732 |
msgid "Box Shadow"
|
733 |
msgstr ""
|
734 |
|
736 |
msgid "Head"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:643, ../includes/Elements/GravityForms.php:902, ../includes/Elements/GravityForms.php:991, ../includes/Elements/GravityForms.php:1045, ../includes/Elements/GravityForms.php:1181, ../includes/Elements/GravityForms.php:1771, ../includes/Elements/GravityForms.php:1791, ../includes/Elements/GravityForms.php:1826, ../includes/Elements/GravityForms.php:2161, ../includes/Elements/GravityForms.php:2382, ../includes/Elements/GravityForms.php:2575, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:522, ../includes/Elements/Post_Grid.php:664, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:323, ../includes/Elements/Product_Grid.php:2411, ../includes/Elements/Product_Grid.php:2442, ../includes/Elements/Product_Grid.php:2484, ../includes/Elements/Product_Grid.php:2550, ../includes/Elements/Product_Grid.php:2591, ../includes/Elements/Product_Grid.php:2648, ../includes/Elements/Product_Grid.php:2765, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:841, ../includes/Elements/Simple_Menu.php:1152, ../includes/Elements/Woo_Cart.php:1705, ../includes/Elements/Woo_Cart.php:1766, ../includes/Elements/Woo_Cart.php:1943, ../includes/Elements/Woo_Cart.php:2013, ../includes/Elements/Woo_Checkout.php:1308, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1551, ../includes/Elements/Woo_Product_Carousel.php:1593, ../includes/Elements/Woo_Product_Carousel.php:1672, ../includes/Elements/Woo_Product_Carousel.php:1712, ../includes/Elements/Woo_Product_Carousel.php:1769, ../includes/Elements/Woo_Product_Carousel.php:1888, ../includes/Elements/Woo_Product_Gallery.php:1774, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:1846, ../includes/Elements/Woo_Product_Gallery.php:1912, ../includes/Elements/Woo_Product_Gallery.php:1953, ../includes/Elements/Woo_Product_Gallery.php:2010, ../includes/Elements/Woo_Product_Gallery.php:2127, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
|
740 |
msgid "Typography"
|
741 |
msgstr ""
|
742 |
|
744 |
msgid "Text Alignment"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:1949, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:1687, ../includes/Elements/Product_Grid.php:2172, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:198, ../includes/Elements/Simple_Menu.php:343, ../includes/Elements/Simple_Menu.php:750, ../includes/Elements/Simple_Menu.php:776, ../includes/Elements/Simple_Menu.php:801, ../includes/Elements/Simple_Menu.php:1096, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:269, ../includes/Elements/Woo_Cart.php:494, ../includes/Elements/Woo_Cart.php:586, ../includes/Elements/Woo_Cart.php:657, ../includes/Elements/Woo_Cart.php:735, ../includes/Elements/Woo_Cart.php:843, ../includes/Elements/Woo_Cart.php:1588, ../includes/Elements/Woo_Cart.php:2194, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:604, ../includes/Traits/Controls.php:1259, ../includes/Traits/Controls.php:1597, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1971
|
748 |
msgid "Left"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:1953, ../includes/Elements/GravityForms.php:2203, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:2176, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:202, ../includes/Elements/Simple_Menu.php:347, ../includes/Elements/Simple_Menu.php:754, ../includes/Elements/Simple_Menu.php:780, ../includes/Elements/Simple_Menu.php:805, ../includes/Elements/Simple_Menu.php:1100, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:273, ../includes/Elements/Woo_Cart.php:590, ../includes/Elements/Woo_Cart.php:661, ../includes/Elements/Woo_Cart.php:739, ../includes/Elements/Woo_Cart.php:847, ../includes/Elements/Woo_Cart.php:1592, ../includes/Elements/Woo_Cart.php:2198, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:603, ../includes/Traits/Controls.php:1263, ../includes/Traits/Controls.php:1601, ../includes/Traits/Controls.php:1975
|
752 |
msgid "Center"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:628, ../includes/Elements/GravityForms.php:715, ../includes/Elements/GravityForms.php:979, ../includes/Elements/GravityForms.php:1032, ../includes/Elements/GravityForms.php:1219, ../includes/Elements/GravityForms.php:1662, ../includes/Elements/GravityForms.php:1738, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2130, ../includes/Elements/GravityForms.php:2266, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2427, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Interactive_Circle.php:476, ../includes/Elements/Interactive_Circle.php:536, ../includes/Elements/Interactive_Circle.php:604, ../includes/Elements/Interactive_Circle.php:689, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1912, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Product_Grid.php:2226, ../includes/Elements/Product_Grid.php:2264, ../includes/Elements/Product_Grid.php:2308, ../includes/Elements/Simple_Menu.php:373, ../includes/Elements/Simple_Menu.php:407, ../includes/Elements/Simple_Menu.php:441, ../includes/Elements/Simple_Menu.php:499, ../includes/Elements/Simple_Menu.php:533, ../includes/Elements/Simple_Menu.php:859, ../includes/Elements/Simple_Menu.php:986, ../includes/Elements/Simple_Menu.php:1170, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1248, ../includes/Elements/Woo_Cart.php:1502, ../includes/Elements/Woo_Cart.php:1793, ../includes/Elements/Woo_Cart.php:1831, ../includes/Elements/Woo_Cart.php:1919, ../includes/Elements/Woo_Cart.php:2043, ../includes/Elements/Woo_Cart.php:2084, ../includes/Elements/Woo_Cart.php:2279, ../includes/Elements/Woo_Cart.php:2362, ../includes/Elements/Woo_Cart.php:2449, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:1298, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1928
|
756 |
msgid "Text Color"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:703, ../includes/Elements/GravityForms.php:929, ../includes/Elements/GravityForms.php:1648, ../includes/Elements/GravityForms.php:1724, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2025, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2254, ../includes/Elements/GravityForms.php:2341, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Interactive_Circle.php:465, ../includes/Elements/Interactive_Circle.php:522, ../includes/Elements/Interactive_Circle.php:590, ../includes/Elements/Interactive_Circle.php:672, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1427, ../includes/Elements/Pricing_Table.php:1496, ../includes/Elements/Pricing_Table.php:1662, ../includes/Elements/Pricing_Table.php:1924, ../includes/Elements/Pricing_Table.php:1993, ../includes/Elements/Product_Grid.php:1836, ../includes/Elements/Product_Grid.php:1944, ../includes/Elements/Product_Grid.php:2052, ../includes/Elements/Product_Grid.php:2238, ../includes/Elements/Product_Grid.php:2276, ../includes/Elements/Product_Grid.php:2320, ../includes/Elements/Product_Grid.php:2568, ../includes/Elements/Product_Grid.php:2611, ../includes/Elements/Product_Grid.php:2672, ../includes/Elements/Product_Grid.php:2723, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:277, ../includes/Elements/Simple_Menu.php:386, ../includes/Elements/Simple_Menu.php:420, ../includes/Elements/Simple_Menu.php:454, ../includes/Elements/Simple_Menu.php:512, ../includes/Elements/Simple_Menu.php:546, ../includes/Elements/Simple_Menu.php:618, ../includes/Elements/Simple_Menu.php:690, ../includes/Elements/Simple_Menu.php:873, ../includes/Elements/Simple_Menu.php:953, ../includes/Elements/Simple_Menu.php:1001, ../includes/Elements/Simple_Menu.php:1048, ../includes/Elements/Simple_Menu.php:1182, ../includes/Elements/Simple_Menu.php:1262, ../includes/Elements/Simple_Menu.php:1309, ../includes/Elements/Simple_Menu.php:1356, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1143, ../includes/Elements/Woo_Cart.php:1782, ../includes/Elements/Woo_Cart.php:1820, ../includes/Elements/Woo_Cart.php:2031, ../includes/Elements/Woo_Cart.php:2072, ../includes/Elements/Woo_Checkout.php:629, ../includes/Elements/Woo_Checkout.php:744, ../includes/Elements/Woo_Checkout.php:866, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:2252, ../includes/Elements/Woo_Checkout.php:2382, ../includes/Elements/Woo_Checkout.php:2492, ../includes/Elements/Woo_Checkout.php:2532, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:428, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:1495, ../includes/Traits/Controls.php:1557, ../includes/Traits/Controls.php:1938, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
|
760 |
msgid "Background Color"
|
761 |
msgstr ""
|
762 |
|
820 |
msgid "Margin Bottom"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:668, ../includes/Elements/GravityForms.php:1945, ../includes/Elements/GravityForms.php:2195, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:1683, ../includes/Elements/Product_Grid.php:2168, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:339, ../includes/Elements/Simple_Menu.php:746, ../includes/Elements/Simple_Menu.php:772, ../includes/Elements/Simple_Menu.php:797, ../includes/Elements/Simple_Menu.php:1092, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Cart.php:265, ../includes/Elements/Woo_Cart.php:490, ../includes/Elements/Woo_Cart.php:582, ../includes/Elements/Woo_Cart.php:653, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Cart.php:839, ../includes/Elements/Woo_Cart.php:1584, ../includes/Elements/Woo_Cart.php:2190, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1255, ../includes/Traits/Controls.php:1967
|
824 |
msgid "Alignment"
|
825 |
msgstr ""
|
826 |
|
828 |
msgid "Margin"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:696, ../includes/Elements/GravityForms.php:1286, ../includes/Elements/GravityForms.php:1482, ../includes/Elements/GravityForms.php:1641, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/GravityForms.php:2247, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1907, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:1926, ../includes/Elements/Product_Grid.php:2221, ../includes/Elements/Product_Grid.php:2655, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:2024, ../includes/Elements/Woo_Checkout.php:912, ../includes/Elements/Woo_Checkout.php:955, ../includes/Elements/Woo_Checkout.php:1098, ../includes/Elements/Woo_Checkout.php:1317, ../includes/Elements/Woo_Checkout.php:1615, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2331, ../includes/Elements/Woo_Checkout.php:2485, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1664, ../includes/Elements/Woo_Product_Gallery.php:2017, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:1291, ../includes/Traits/Controls.php:1478, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1642
|
832 |
msgid "Normal"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:2110, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:518, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:2035, ../includes/Elements/Product_Grid.php:2259, ../includes/Elements/Product_Grid.php:2706, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:979, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:2065, ../includes/Elements/Woo_Checkout.php:928, ../includes/Elements/Woo_Checkout.php:972, ../includes/Elements/Woo_Checkout.php:1114, ../includes/Elements/Woo_Checkout.php:1357, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:2091, ../includes/Elements/Woo_Checkout.php:2525, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1714, ../includes/Elements/Woo_Product_Gallery.php:2068, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1346, ../includes/Traits/Controls.php:1540, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1692
|
836 |
msgid "Hover"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Event_Calendar.php:787, ../includes/Elements/Event_Calendar.php:854, ../includes/Elements/Event_Calendar.php:908, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1066, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:541, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1217, ../includes/Elements/Filterable_Gallery.php:1257, ../includes/Elements/Filterable_Gallery.php:1579, ../includes/Elements/Filterable_Gallery.php:1594, ../includes/Elements/Filterable_Gallery.php:1639, ../includes/Elements/Filterable_Gallery.php:1654, ../includes/Elements/Filterable_Gallery.php:1739, ../includes/Elements/Filterable_Gallery.php:1877, ../includes/Elements/Filterable_Gallery.php:1953, ../includes/Elements/Filterable_Gallery.php:1989, ../includes/Elements/Filterable_Gallery.php:2036, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2364, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1064, ../includes/Elements/Flip_Box.php:1191, ../includes/Elements/Flip_Box.php:1222, ../includes/Elements/Flip_Box.php:1260, ../includes/Elements/Flip_Box.php:1292, ../includes/Elements/Flip_Box.php:1366, ../includes/Elements/Flip_Box.php:1425, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1190, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/GravityForms.php:1410, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1606, ../includes/Elements/GravityForms.php:1799, ../includes/Elements/GravityForms.php:1835, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1355, ../includes/Elements/Info_Box.php:1431, ../includes/Elements/Interactive_Circle.php:387, ../includes/Elements/Login_Register.php:2349, ../includes/Elements/Login_Register.php:2440, ../includes/Elements/Login_Register.php:2854, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:863, ../includes/Elements/Pricing_Table.php:884, ../includes/Elements/Pricing_Table.php:948, ../includes/Elements/Pricing_Table.php:1039, ../includes/Elements/Pricing_Table.php:1068, ../includes/Elements/Pricing_Table.php:1109, ../includes/Elements/Pricing_Table.php:1138, ../includes/Elements/Pricing_Table.php:1178, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1394, ../includes/Elements/Pricing_Table.php:1526, ../includes/Elements/Product_Grid.php:1331, ../includes/Elements/Product_Grid.php:1931, ../includes/Elements/Product_Grid.php:2040, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Product_Grid.php:2558, ../includes/Elements/Product_Grid.php:2599, ../includes/Elements/Product_Grid.php:2660, ../includes/Elements/Product_Grid.php:2711, ../includes/Elements/Product_Grid.php:2868, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:941, ../includes/Elements/Simple_Menu.php:1035, ../includes/Elements/Simple_Menu.php:1250, ../includes/Elements/Simple_Menu.php:1343, ../includes/Elements/Twitter_Feed.php:695, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:754, ../includes/Elements/Twitter_Feed.php:924, ../includes/Elements/Woo_Checkout.php:584, ../includes/Elements/Woo_Checkout.php:758, ../includes/Elements/Woo_Checkout.php:772, ../includes/Elements/Woo_Checkout.php:880, ../includes/Elements/Woo_Checkout.php:894, ../includes/Elements/Woo_Checkout.php:1067, ../includes/Elements/Woo_Checkout.php:1103, ../includes/Elements/Woo_Checkout.php:1119, ../includes/Elements/Woo_Checkout.php:1187, ../includes/Elements/Woo_Checkout.php:1286, ../includes/Elements/Woo_Checkout.php:1336, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1473, ../includes/Elements/Woo_Checkout.php:1634, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1792, ../includes/Elements/Woo_Checkout.php:1836, ../includes/Elements/Woo_Checkout.php:1880, ../includes/Elements/Woo_Checkout.php:1986, ../includes/Elements/Woo_Checkout.php:2025, ../includes/Elements/Woo_Checkout.php:2065, ../includes/Elements/Woo_Checkout.php:2338, ../includes/Elements/Woo_Checkout.php:2359, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2415, ../includes/Elements/Woo_Checkout.php:2504, ../includes/Elements/Woo_Checkout.php:2544, ../includes/Elements/Woo_Product_Carousel.php:1182, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1679, ../includes/Elements/Woo_Product_Carousel.php:1720, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Carousel.php:2291, ../includes/Elements/Woo_Product_Carousel.php:2324, ../includes/Elements/Woo_Product_Carousel.php:2662, ../includes/Elements/Woo_Product_Carousel.php:2718, ../includes/Elements/Woo_Product_Gallery.php:1308, ../includes/Elements/Woo_Product_Gallery.php:1342, ../includes/Elements/Woo_Product_Gallery.php:1380, ../includes/Elements/Woo_Product_Gallery.php:1669, ../includes/Elements/Woo_Product_Gallery.php:1719, ../includes/Elements/Woo_Product_Gallery.php:1920, ../includes/Elements/Woo_Product_Gallery.php:1961, ../includes/Elements/Woo_Product_Gallery.php:2022, ../includes/Elements/Woo_Product_Gallery.php:2073, ../includes/Elements/Woo_Product_Gallery.php:2230, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1093, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
|
840 |
msgid "Color"
|
841 |
msgstr ""
|
842 |
|
860 |
msgid "Select Accordion Tab Title Tag"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:219, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Product_Grid.php:440, ../includes/Elements/Product_Grid.php:1768, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:158, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Carousel.php:395, ../includes/Elements/Woo_Product_Gallery.php:459, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:831
|
864 |
msgid "H1"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:220, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Product_Grid.php:441, ../includes/Elements/Product_Grid.php:1769, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:159, ../includes/Elements/Woo_Product_Carousel.php:236, ../includes/Elements/Woo_Product_Carousel.php:396, ../includes/Elements/Woo_Product_Gallery.php:460, ../includes/Elements/Woo_Product_Gallery.php:1581, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:832
|
868 |
msgid "H2"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:221, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Product_Grid.php:442, ../includes/Elements/Product_Grid.php:1770, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:160, ../includes/Elements/Woo_Product_Carousel.php:237, ../includes/Elements/Woo_Product_Carousel.php:397, ../includes/Elements/Woo_Product_Gallery.php:461, ../includes/Elements/Woo_Product_Gallery.php:1582, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:833
|
872 |
msgid "H3"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:222, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:536, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Product_Grid.php:443, ../includes/Elements/Product_Grid.php:1771, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:238, ../includes/Elements/Woo_Product_Carousel.php:398, ../includes/Elements/Woo_Product_Gallery.php:462, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:834
|
876 |
msgid "H4"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:223, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:537, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Product_Grid.php:444, ../includes/Elements/Product_Grid.php:1772, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:239, ../includes/Elements/Woo_Product_Carousel.php:399, ../includes/Elements/Woo_Product_Gallery.php:463, ../includes/Elements/Woo_Product_Gallery.php:1584, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:835
|
880 |
msgid "H5"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:224, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:307, ../includes/Elements/Flip_Box.php:538, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Product_Grid.php:1773, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:240, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Gallery.php:464, ../includes/Elements/Woo_Product_Gallery.php:1585, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:836
|
884 |
msgid "H6"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:225, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:539, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Product_Grid.php:1774, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Gallery.php:1586, ../includes/Traits/Controls.php:837
|
888 |
msgid "Span"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:226, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:540, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:241, ../includes/Elements/Product_Grid.php:1775, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:242, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Gallery.php:1587, ../includes/Traits/Controls.php:838
|
892 |
msgid "P"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:227, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:376, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:541, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Product_Grid.php:1776, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:403, ../includes/Elements/Woo_Product_Gallery.php:1588, ../includes/Traits/Controls.php:839
|
896 |
msgid "Div"
|
897 |
msgstr ""
|
898 |
|
936 |
msgid "Content Type"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:717, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Cta_Box.php:259, ../includes/Elements/Data_Table.php:256, ../includes/Elements/Data_Table.php:371, ../includes/Elements/Data_Table.php:385, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1485, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Interactive_Circle.php:120, ../includes/Elements/Interactive_Circle.php:161, ../includes/Elements/Interactive_Circle.php:665, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Tooltip.php:140, ../includes/Elements/Tooltip.php:273, ../includes/Elements/Woo_Product_Carousel.php:1583, ../includes/Elements/Woo_Product_Gallery.php:1836
|
940 |
msgid "Content"
|
941 |
msgstr ""
|
942 |
|
984 |
msgid "Tab Style"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../includes/Elements/Adv_Accordion.php:428, ../includes/Elements/Adv_Accordion.php:805, ../includes/Elements/Adv_Tabs.php:433, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1080, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Interactive_Circle.php:438, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1237, ../includes/Elements/Pricing_Table.php:1696, ../includes/Elements/Pricing_Table.php:1867, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:2816, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1151, ../includes/Elements/Woo_Product_Carousel.php:1935, ../includes/Elements/Woo_Product_Carousel.php:2583, ../includes/Elements/Woo_Product_Gallery.php:844, ../includes/Elements/Woo_Product_Gallery.php:2178, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:705, ../includes/Traits/Woo_Product_Comparable.php:1345
|
988 |
msgid "Icon Size"
|
989 |
msgstr ""
|
990 |
|
1000 |
msgid "Icon Color"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:638, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Interactive_Circle.php:586, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Woo_Product_Carousel.php:2317, ../includes/Elements/Woo_Product_Gallery.php:1375, ../includes/Extensions/Table_of_Content.php:983
|
1004 |
msgid "Active"
|
1005 |
msgstr ""
|
1006 |
|
1132 |
msgid "Show Icon"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:155, ../includes/Elements/Cta_Box.php:302, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1650, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:2119, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Cart.php:428, ../includes/Elements/Woo_Cart.php:476, ../includes/Elements/Woo_Cart.php:546, ../includes/Elements/Woo_Cart.php:558, ../includes/Elements/Woo_Cart.php:629, ../includes/Elements/Woo_Cart.php:707, ../includes/Elements/Woo_Cart.php:778, ../includes/Elements/Woo_Cart.php:898, ../includes/Elements/Woo_Cart.php:922, ../includes/Elements/Woo_Cart.php:959, ../includes/Elements/Woo_Cart.php:1003, ../includes/Elements/Woo_Cart.php:1016, ../includes/Elements/Woo_Cart.php:1031, ../includes/Elements/Woo_Cart.php:1046, ../includes/Elements/Woo_Cart.php:1061, ../includes/Elements/Woo_Cart.php:1076, ../includes/Elements/Woo_Cart.php:1091, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:569, ../includes/Traits/Controls.php:631, ../includes/Traits/Controls.php:661, ../includes/Traits/Controls.php:817, ../includes/Traits/Controls.php:865, ../includes/Traits/Controls.php:933, ../includes/Traits/Controls.php:968, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1083, ../includes/Traits/Controls.php:1111, ../includes/Traits/Controls.php:1127, ../includes/Traits/Controls.php:1142
|
1136 |
msgid "Show"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:156, ../includes/Elements/Cta_Box.php:303, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1651, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:2120, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Cart.php:429, ../includes/Elements/Woo_Cart.php:477, ../includes/Elements/Woo_Cart.php:547, ../includes/Elements/Woo_Cart.php:559, ../includes/Elements/Woo_Cart.php:630, ../includes/Elements/Woo_Cart.php:708, ../includes/Elements/Woo_Cart.php:779, ../includes/Elements/Woo_Cart.php:899, ../includes/Elements/Woo_Cart.php:923, ../includes/Elements/Woo_Cart.php:960, ../includes/Elements/Woo_Cart.php:1004, ../includes/Elements/Woo_Cart.php:1017, ../includes/Elements/Woo_Cart.php:1032, ../includes/Elements/Woo_Cart.php:1047, ../includes/Elements/Woo_Cart.php:1062, ../includes/Elements/Woo_Cart.php:1077, ../includes/Elements/Woo_Cart.php:1092, ../includes/Elements/Woo_Checkout.php:316, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:570, ../includes/Traits/Controls.php:632, ../includes/Traits/Controls.php:662, ../includes/Traits/Controls.php:818, ../includes/Traits/Controls.php:866, ../includes/Traits/Controls.php:934, ../includes/Traits/Controls.php:969, ../includes/Traits/Controls.php:999, ../includes/Traits/Controls.php:1084, ../includes/Traits/Controls.php:1112, ../includes/Traits/Controls.php:1128, ../includes/Traits/Controls.php:1143
|
1140 |
msgid "Hide"
|
1141 |
msgstr ""
|
1142 |
|
1212 |
msgid "File Not Found"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:1102, ../includes/Elements/Post_Timeline.php:498, ../includes/Elements/Product_Grid.php:3044, ../includes/Elements/Woo_Product_Gallery.php:2390, ../includes/Traits/Helper.php:163
|
1216 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1217 |
msgstr ""
|
1218 |
|
1272 |
msgid "List"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1794, ../includes/Elements/Product_Grid.php:2796, ../includes/Elements/Twitter_Feed.php:766, ../includes/Elements/Woo_Product_Carousel.php:1915, ../includes/Elements/Woo_Product_Gallery.php:2158
|
1276 |
msgid "Hover Color"
|
1277 |
msgstr ""
|
1278 |
|
1336 |
msgid "Close Icon"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1100, ../includes/Elements/GravityForms.php:1333, ../includes/Elements/GravityForms.php:1529, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/GravityForms.php:2143, ../includes/Elements/GravityForms.php:2365, ../includes/Elements/Interactive_Circle.php:366, ../includes/Elements/Interactive_Circle.php:564, ../includes/Elements/Interactive_Circle.php:634, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2020, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:1897, ../includes/Elements/Product_Grid.php:2079, ../includes/Elements/Product_Grid.php:2288, ../includes/Elements/Product_Grid.php:2332, ../includes/Elements/Product_Grid.php:2527, ../includes/Elements/Product_Grid.php:2623, ../includes/Elements/Product_Grid.php:2735, ../includes/Elements/Simple_Menu.php:965, ../includes/Elements/Simple_Menu.php:1061, ../includes/Elements/Simple_Menu.php:1274, ../includes/Elements/Simple_Menu.php:1369, ../includes/Elements/Sticky_Video.php:580, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1226, ../includes/Elements/Woo_Cart.php:1479, ../includes/Elements/Woo_Cart.php:1842, ../includes/Elements/Woo_Cart.php:2096, ../includes/Elements/Woo_Checkout.php:786, ../includes/Elements/Woo_Checkout.php:993, ../includes/Elements/Woo_Checkout.php:1388, ../includes/Elements/Woo_Checkout.php:1584, ../includes/Elements/Woo_Checkout.php:1686, ../includes/Elements/Woo_Checkout.php:1803, ../includes/Elements/Woo_Checkout.php:1847, ../includes/Elements/Woo_Checkout.php:1891, ../includes/Elements/Woo_Checkout.php:2080, ../includes/Elements/Woo_Checkout.php:2096, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/Woo_Checkout.php:2556, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1569, ../includes/Traits/Woo_Product_Comparable.php:1723
|
1340 |
msgid "Border Color"
|
1341 |
msgstr ""
|
1342 |
|
1552 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1939, ../includes/Elements/Pricing_Table.php:2008, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:2879, ../includes/Elements/Product_Grid.php:2936, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Cart.php:1281, ../includes/Elements/Woo_Cart.php:1438, ../includes/Elements/Woo_Cart.php:1670, ../includes/Elements/Woo_Cart.php:2268, ../includes/Elements/Woo_Cart.php:2350, ../includes/Elements/Woo_Cart.php:2438, ../includes/Elements/Woo_Checkout.php:1781, ../includes/Elements/Woo_Checkout.php:1825, ../includes/Elements/Woo_Checkout.php:1869, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2241, ../includes/Elements/Woo_Product_Gallery.php:2298, ../includes/Traits/Controls.php:1311, ../includes/Traits/Controls.php:1365, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1662, ../includes/Traits/Woo_Product_Comparable.php:1711
|
1556 |
msgid "Background"
|
1557 |
msgstr ""
|
1558 |
|
1944 |
msgid "Title Style"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:340, ../includes/Elements/Product_Grid.php:2419, ../includes/Elements/Product_Grid.php:2774, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:591, ../includes/Elements/Woo_Checkout.php:2163, ../includes/Elements/Woo_Checkout.php:2263, ../includes/Elements/Woo_Product_Carousel.php:1529, ../includes/Elements/Woo_Product_Carousel.php:1895, ../includes/Elements/Woo_Product_Gallery.php:1782, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249
|
1948 |
msgid "Title Color"
|
1949 |
msgstr ""
|
1950 |
|
2668 |
msgid "Date Icon"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Product_Grid.php:2492, ../includes/Elements/Product_Grid.php:2785, ../includes/Elements/Twitter_Feed.php:601, ../includes/Elements/Woo_Product_Carousel.php:1601, ../includes/Elements/Woo_Product_Carousel.php:1905, ../includes/Elements/Woo_Product_Gallery.php:1854, ../includes/Elements/Woo_Product_Gallery.php:2147
|
2672 |
msgid "Content Color"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Product_Grid.php:2807, ../includes/Elements/Woo_Product_Carousel.php:1926, ../includes/Elements/Woo_Product_Gallery.php:2169, ../includes/Traits/Woo_Product_Comparable.php:1336
|
2676 |
msgid " Close Button"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: ../includes/Elements/Event_Calendar.php:1549, ../includes/Elements/Product_Grid.php:2842, ../includes/Elements/Woo_Product_Carousel.php:1961, ../includes/Elements/Woo_Product_Gallery.php:2204, ../includes/Extensions/Table_of_Content.php:723
|
2680 |
msgid "Button Size"
|
2681 |
msgstr ""
|
2682 |
|
3212 |
msgid "Media"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: ../includes/Elements/Filterable_Gallery.php:231, ../includes/Elements/Product_Grid.php:1726, ../includes/Elements/Woo_Product_Gallery.php:1553, ../includes/Traits/Woo_Product_Comparable.php:879
|
3216 |
msgid "Buttons"
|
3217 |
msgstr ""
|
3218 |
|
3492 |
msgid "Dropdown"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: ../includes/Elements/Filterable_Gallery.php:2463, ../includes/Elements/Product_Grid.php:2017, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Woo_Checkout.php:713, ../includes/Elements/Woo_Checkout.php:1026, ../includes/Elements/Woo_Checkout.php:1135, ../includes/Elements/Woo_Checkout.php:2627, ../includes/Elements/Woo_Product_Carousel.php:1435
|
3496 |
msgid "Top Spacing"
|
3497 |
msgstr ""
|
3498 |
|
3764 |
msgid "Price Label Color"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: ../includes/Elements/GravityForms.php:1154, ../includes/Elements/Product_Grid.php:1201, ../includes/Elements/Product_Grid.php:2450, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Gallery.php:777, ../includes/Elements/Woo_Product_Gallery.php:1812
|
3768 |
msgid "Price Color"
|
3769 |
msgstr ""
|
3770 |
|
4004 |
msgid "Preset"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: ../includes/Elements/Interactive_Circle.php:73, ../includes/Elements/Product_Grid.php:272, ../includes/Elements/Product_Grid.php:1670, ../includes/Elements/Product_Grid.php:1791, ../includes/Elements/Simple_Menu.php:145, ../includes/Elements/Woo_Product_Carousel.php:803, ../includes/Elements/Woo_Product_Carousel.php:2097, ../includes/Elements/Woo_Product_Gallery.php:327, ../includes/Elements/Woo_Product_Gallery.php:1502, ../includes/Traits/Controls.php:426, ../includes/Template/Woo-Product-Carousel/preset-1.php:4
|
4008 |
msgid "Preset 1"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Product_Grid.php:1671, ../includes/Elements/Product_Grid.php:1792, ../includes/Elements/Simple_Menu.php:146, ../includes/Elements/Woo_Product_Carousel.php:804, ../includes/Elements/Woo_Product_Carousel.php:2098, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Elements/Woo_Product_Gallery.php:1503, ../includes/Traits/Controls.php:427, ../includes/Template/Woo-Product-Carousel/preset-2.php:4
|
4012 |
msgid "Preset 2"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/Product_Grid.php:274, ../includes/Elements/Product_Grid.php:1672, ../includes/Elements/Simple_Menu.php:147, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_Carousel.php:2099, ../includes/Elements/Woo_Product_Gallery.php:329, ../includes/Elements/Woo_Product_Gallery.php:1504, ../includes/Traits/Controls.php:428, ../includes/Template/Woo-Product-Carousel/preset-3.php:4
|
4016 |
msgid "Preset 3"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Product_Grid.php:1673, ../includes/Elements/Woo_Product_Carousel.php:806, ../includes/Elements/Woo_Product_Carousel.php:2100, ../includes/Elements/Woo_Product_Gallery.php:330, ../includes/Elements/Woo_Product_Gallery.php:1505, ../includes/Traits/Controls.php:429, ../includes/Template/Woo-Product-Carousel/preset-4.php:4
|
4020 |
msgid "Preset 4"
|
4021 |
msgstr ""
|
4022 |
|
5299 |
msgid "Date Text Color"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: ../includes/Elements/Post_Timeline.php:502, ../includes/Elements/Product_Grid.php:3048, ../includes/Elements/Woo_Product_Gallery.php:2393
|
5303 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5304 |
msgstr ""
|
5305 |
|
5591 |
msgid "Product Title"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: ../includes/Elements/Product_Grid.php:144, ../includes/Elements/Product_Grid.php:2755, ../includes/Elements/Woo_Product_Carousel.php:125, ../includes/Elements/Woo_Product_Carousel.php:1878, ../includes/Elements/Woo_Product_Gallery.php:114, ../includes/Elements/Woo_Product_Gallery.php:2117, ../includes/Traits/Woo_Product_Comparable.php:45, ../includes/Traits/Woo_Product_Comparable.php:91
|
5595 |
msgid "SKU"
|
5596 |
msgstr ""
|
5597 |
|
5635 |
msgid "Layouts"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Product_Grid.php:1666, ../includes/Elements/Product_Grid.php:1787, ../includes/Elements/Team_Member.php:280, ../includes/Elements/Woo_Product_Carousel.php:799, ../includes/Elements/Woo_Product_Gallery.php:323, ../includes/Elements/Woo_Product_Gallery.php:1498
|
5639 |
msgid "Style Preset"
|
5640 |
msgstr ""
|
5641 |
|
5651 |
msgid "Overlay Style"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:1674, ../includes/Elements/Woo_Product_Carousel.php:807, ../includes/Elements/Woo_Product_Gallery.php:1506, ../includes/Traits/Controls.php:430
|
5655 |
msgid "Preset 5"
|
5656 |
msgstr ""
|
5657 |
|
5819 |
msgid "Product Price"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: ../includes/Elements/Product_Grid.php:1213, ../includes/Elements/Product_Grid.php:2462, ../includes/Elements/Woo_Product_Carousel.php:1571, ../includes/Elements/Woo_Product_Gallery.php:789, ../includes/Elements/Woo_Product_Gallery.php:1824
|
5823 |
msgid "Sale Price Color"
|
5824 |
msgstr ""
|
5825 |
|
5871 |
msgid "Sale / Stock Out Badge"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
+
#: ../includes/Elements/Product_Grid.php:1704, ../includes/Elements/Woo_Product_Carousel.php:837, ../includes/Elements/Woo_Product_Gallery.php:1533
|
5875 |
msgid "Sale Text"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
+
#: ../includes/Elements/Product_Grid.php:1713, ../includes/Elements/Woo_Product_Carousel.php:845, ../includes/Elements/Woo_Product_Gallery.php:1541
|
5879 |
msgid "Stock Out Text"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
+
#: ../includes/Elements/Product_Grid.php:1753, ../includes/Elements/Woo_Product_Carousel.php:380, ../includes/Elements/Woo_Product_Gallery.php:1560
|
5883 |
msgid "Show Quick view?"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
+
#: ../includes/Elements/Product_Grid.php:1763, ../includes/Elements/Woo_Product_Carousel.php:390, ../includes/Elements/Woo_Product_Gallery.php:1575
|
5887 |
msgid "Quick view Title Tag"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
+
#: ../includes/Elements/Product_Grid.php:1866, ../includes/Elements/Woo_Product_Carousel.php:1341
|
5891 |
msgid "Icons Size"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: ../includes/Elements/Product_Grid.php:2117
|
5895 |
msgid "Show pagination"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
+
#: ../includes/Elements/Product_Grid.php:2129
|
5899 |
msgid "Previous Label"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: ../includes/Elements/Product_Grid.php:2130
|
5903 |
msgid "←"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: ../includes/Elements/Product_Grid.php:2140
|
5907 |
msgid "Next Label"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: ../includes/Elements/Product_Grid.php:2141
|
5911 |
msgid "→"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: ../includes/Elements/Product_Grid.php:2368
|
5915 |
msgid "Loader"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: ../includes/Elements/Product_Grid.php:2394, ../includes/Elements/Woo_Product_Carousel.php:1504, ../includes/Elements/Woo_Product_Gallery.php:1751
|
5919 |
msgid "Popup"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
+
#: ../includes/Elements/Product_Grid.php:2504, ../includes/Elements/Woo_Product_Carousel.php:1625, ../includes/Elements/Woo_Product_Gallery.php:1866
|
5923 |
msgid "Review Link Color"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
+
#: ../includes/Elements/Product_Grid.php:2515, ../includes/Elements/Woo_Product_Carousel.php:1637, ../includes/Elements/Woo_Product_Gallery.php:1877
|
5927 |
msgid "Review Link Hover"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
+
#: ../includes/Elements/Product_Grid.php:2540, ../includes/Elements/Woo_Product_Carousel.php:1662, ../includes/Elements/Woo_Product_Gallery.php:1902
|
5931 |
msgid "Sale"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: ../includes/Elements/Product_Grid.php:2638, ../includes/Elements/Woo_Product_Carousel.php:1759, ../includes/Elements/Woo_Product_Gallery.php:2000
|
5935 |
msgid "Cart Button"
|
5936 |
msgstr ""
|
5937 |
|
8139 |
msgid "Post ID is missing"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:618, ../includes/Traits/Helper.php:674, ../includes/Traits/Helper.php:990, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2133
|
8143 |
msgid "Widget ID is missing"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:962, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
|
8147 |
msgid "Insecure form submitted without security token"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:970, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
|
8151 |
msgid "Security token did not match"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:611, ../includes/Traits/Helper.php:667, ../includes/Traits/Helper.php:980, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
|
8155 |
msgid "Page ID is missing"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
+
#: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:624, ../includes/Traits/Helper.php:681, ../includes/Traits/Helper.php:999
|
8159 |
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
8160 |
msgstr ""
|
8161 |
|
8167 |
msgid "%s ago"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
+
#: ../includes/Traits/Helper.php:836
|
8171 |
msgid "1,700+ Stunning Templates"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
+
#: ../includes/Traits/Helper.php:837
|
8175 |
msgid "Supports Elementor & Gutenberg"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
+
#: ../includes/Traits/Helper.php:838
|
8179 |
msgid "Powering up 100,000+ Websites"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
+
#: ../includes/Traits/Helper.php:839
|
8183 |
msgid "Cloud Collaboration with Team"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
+
#: ../includes/Traits/Helper.php:848
|
8187 |
msgid "Don’t Show This Again"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
+
#: ../includes/Traits/Helper.php:860
|
8191 |
msgid "Activate Templately"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
+
#: ../includes/Traits/Helper.php:857
|
8195 |
msgid "Activated Templately"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
+
#: ../includes/Traits/Helper.php:863, ../includes/templates/admin/popup.php:169
|
8199 |
msgid "Submit"
|
8200 |
msgstr ""
|
8201 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -241,6 +241,11 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
241 |
|
242 |
== Changelog ==
|
243 |
|
|
|
|
|
|
|
|
|
|
|
244 |
= 5.0.8 - 16/02/2022 =
|
245 |
|
246 |
- Improved: Optimized Options table for better performance
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.0.9
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
241 |
|
242 |
== Changelog ==
|
243 |
|
244 |
+
= 5.0.9 - 17/02/2022 =
|
245 |
+
|
246 |
+
- Improved: Data sanitization and escaping for Security Enhancement
|
247 |
+
- Few minor bug fixes & improvements
|
248 |
+
|
249 |
= 5.0.8 - 16/02/2022 =
|
250 |
|
251 |
- Improved: Optimized Options table for better performance
|