Version Description
10/03/2021 =
Fixed: EA Typeform | Redirect Issue while connecting your account
Fixed: EA Image Accordion | Enable Title Link is not working properly
Fixed: EA Woo Product Grid | HTML tags are not working on Product Title
Fixed: EA Twitter Feed | Throws PHP Warning
Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.5.3 |
Comparing to | |
See all releases |
Code changes from version 4.5.2 to 4.5.3
- assets/admin/js/admin.js +25 -0
- assets/front-end/css/view/image-accordion.css +7 -0
- assets/front-end/css/view/image-accordion.min.css +1 -1
- assets/front-end/js/view/general.js +3 -3
- assets/front-end/js/view/image-accordion.js +1 -1
- assets/front-end/js/view/image-accordion.min.js +1 -1
- essential_adons_elementor.php +2 -2
- includes/Classes/Bootstrap.php +5 -6
- includes/Elements/Image_Accordion.php +17 -10
- includes/Elements/Product_Grid.php +14 -0
- includes/Elements/Twitter_Feed.php +4 -3
- includes/Template/Eicon-Woocommerce/default.php +2 -2
- includes/Traits/Admin.php +1 -1
- includes/Traits/Helper.php +7 -7
- includes/templates/admin/elements.php +2 -2
- languages/essential-addons-for-elementor-lite.pot +144 -144
- readme.txt +10 -2
assets/admin/js/admin.js
CHANGED
@@ -542,4 +542,29 @@
|
|
542 |
}
|
543 |
})
|
544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
})(jQuery);
|
542 |
}
|
543 |
})
|
544 |
|
545 |
+
$(window).on('load', function () {
|
546 |
+
var params = new URLSearchParams(location.search);
|
547 |
+
if (params.has('typeform_tk')) {
|
548 |
+
var elements_tab = document.querySelector("ul.eael-tabs li a.eael-elements-tab");
|
549 |
+
params.delete('typeform_tk');
|
550 |
+
params.delete('pr_code');
|
551 |
+
window.history.replaceState({}, '', `${location.pathname}?${params}`);
|
552 |
+
|
553 |
+
if (elements_tab) {
|
554 |
+
elements_tab.click();
|
555 |
+
}
|
556 |
+
|
557 |
+
if (typeof Swal == 'function') {
|
558 |
+
Swal.fire(
|
559 |
+
{
|
560 |
+
timer: 3000,
|
561 |
+
showConfirmButton: false,
|
562 |
+
type: 'success',
|
563 |
+
title: 'TypeForm Token Added',
|
564 |
+
}
|
565 |
+
)
|
566 |
+
}
|
567 |
+
}
|
568 |
+
});
|
569 |
+
|
570 |
})(jQuery);
|
assets/front-end/css/view/image-accordion.css
CHANGED
@@ -27,6 +27,7 @@
|
|
27 |
transition: flex 0.4s;
|
28 |
transition: flex 0.4s, -webkit-box-flex 0.4s, -ms-flex 0.4s;
|
29 |
overflow: hidden;
|
|
|
30 |
}
|
31 |
.eael-grow-accordion {
|
32 |
-webkit-box-flex: 3;
|
@@ -103,6 +104,12 @@
|
|
103 |
-o-transition: all 0.3s ease-in-out;
|
104 |
transition: all 0.3s ease-in-out;
|
105 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
.eael-img-accordion .overlay-inner * {
|
107 |
visibility: hidden;
|
108 |
opacity: 0;
|
27 |
transition: flex 0.4s;
|
28 |
transition: flex 0.4s, -webkit-box-flex 0.4s, -ms-flex 0.4s;
|
29 |
overflow: hidden;
|
30 |
+
cursor: pointer;
|
31 |
}
|
32 |
.eael-grow-accordion {
|
33 |
-webkit-box-flex: 3;
|
104 |
-o-transition: all 0.3s ease-in-out;
|
105 |
transition: all 0.3s ease-in-out;
|
106 |
}
|
107 |
+
.eael-img-accordion .eael-image-accordion-hover:after {
|
108 |
+
background-color: rgba(0, 0, 0, 0.3);
|
109 |
+
}
|
110 |
+
.eael-img-accordion .eael-image-accordion-hover:hover::after {
|
111 |
+
background-color: rgba(0, 0, 0, 0.5);
|
112 |
+
}
|
113 |
.eael-img-accordion .overlay-inner * {
|
114 |
visibility: hidden;
|
115 |
opacity: 0;
|
assets/front-end/css/view/image-accordion.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-img-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;height:50vh}.eael-img-accordion.accordion-direction-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion .eael-image-accordion-hover{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;text-decoration:none;color:#fff;background-size:cover;background-position:center;background-repeat:no-repeat;-webkit-transition:-webkit-box-flex .4s;transition:-webkit-box-flex .4s;-o-transition:flex .4s;transition:flex .4s;transition:flex .4s, -webkit-box-flex .4s, -ms-flex .4s;overflow:hidden}.eael-grow-accordion{-webkit-box-flex:3;-ms-flex:3;flex:3}.eael-img-accordion .overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color .4s;-o-transition:background-color .4s;transition:background-color .4s}.eael-img-accordion-horizontal-align-left .overlay{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.eael-img-accordion-horizontal-align-center .overlay{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.eael-img-accordion-horizontal-align-right .overlay{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.eael-img-accordion-vertical-align-top .overlay{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eael-img-accordion-vertical-align-center .overlay{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-img-accordion-vertical-align-bottom .overlay{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.eael-img-accordion .overlay .overlay-inner{z-index:1}.eael-img-accordion .eael-image-accordion-hover:after{content:"";position:absolute;width:100%;height:100%;z-index:0;top:0px;left:0px;bottom:0px;right:0px;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-img-accordion .overlay-inner *{visibility:hidden;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.eael-img-accordion .overlay h2{color:#fff;-webkit-transform:translate3d(0, -60px, 0);transform:translate3d(0, -60px, 0)}.eael-img-accordion .overlay p{color:#fff;margin-bottom:0;-webkit-transform:translate3d(0, 60px, 0);transform:translate3d(0, 60px, 0)}.eael-img-accordion .eael-image-accordion-hover.overlay-active .overlay-inner *,.eael-img-accordion .overlay-inner-show *{opacity:1;visibility:visible;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;-webkit-transition:all .3s .3s;-o-transition:all .3s .3s;transition:all .3s .3s}@media screen and (max-width: 800px){.eael-img-accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion .eael-image-accordion-hover:hover{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-img-accordion .eael-image-accordion-hover:hover .overlay{background-color:transparent}}.rtl .eael-img-accordion{direction:ltr}
|
1 |
+
.eael-img-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;height:50vh}.eael-img-accordion.accordion-direction-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion .eael-image-accordion-hover{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;text-decoration:none;color:#fff;background-size:cover;background-position:center;background-repeat:no-repeat;-webkit-transition:-webkit-box-flex .4s;transition:-webkit-box-flex .4s;-o-transition:flex .4s;transition:flex .4s;transition:flex .4s, -webkit-box-flex .4s, -ms-flex .4s;overflow:hidden;cursor:pointer}.eael-grow-accordion{-webkit-box-flex:3;-ms-flex:3;flex:3}.eael-img-accordion .overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color .4s;-o-transition:background-color .4s;transition:background-color .4s}.eael-img-accordion-horizontal-align-left .overlay{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.eael-img-accordion-horizontal-align-center .overlay{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.eael-img-accordion-horizontal-align-right .overlay{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.eael-img-accordion-vertical-align-top .overlay{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eael-img-accordion-vertical-align-center .overlay{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-img-accordion-vertical-align-bottom .overlay{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.eael-img-accordion .overlay .overlay-inner{z-index:1}.eael-img-accordion .eael-image-accordion-hover:after{content:"";position:absolute;width:100%;height:100%;z-index:0;top:0px;left:0px;bottom:0px;right:0px;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-img-accordion .eael-image-accordion-hover:after{background-color:rgba(0,0,0,.3)}.eael-img-accordion .eael-image-accordion-hover:hover::after{background-color:rgba(0,0,0,.5)}.eael-img-accordion .overlay-inner *{visibility:hidden;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.eael-img-accordion .overlay h2{color:#fff;-webkit-transform:translate3d(0, -60px, 0);transform:translate3d(0, -60px, 0)}.eael-img-accordion .overlay p{color:#fff;margin-bottom:0;-webkit-transform:translate3d(0, 60px, 0);transform:translate3d(0, 60px, 0)}.eael-img-accordion .eael-image-accordion-hover.overlay-active .overlay-inner *,.eael-img-accordion .overlay-inner-show *{opacity:1;visibility:visible;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;-webkit-transition:all .3s .3s;-o-transition:all .3s .3s;transition:all .3s .3s}@media screen and (max-width: 800px){.eael-img-accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion .eael-image-accordion-hover:hover{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-img-accordion .eael-image-accordion-hover:hover .overlay{background-color:transparent}}.rtl .eael-img-accordion{direction:ltr}
|
assets/front-end/js/view/general.js
CHANGED
@@ -106,7 +106,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
106 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107 |
|
108 |
"use strict";
|
109 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var
|
110 |
|
111 |
/***/ }),
|
112 |
|
@@ -154,7 +154,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
154 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
155 |
|
156 |
"use strict";
|
157 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var
|
158 |
|
159 |
/***/ }),
|
160 |
|
@@ -166,7 +166,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
166 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
167 |
|
168 |
"use strict";
|
169 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var
|
170 |
|
171 |
/***/ }),
|
172 |
|
106 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107 |
|
108 |
"use strict";
|
109 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arr);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?");
|
110 |
|
111 |
/***/ }),
|
112 |
|
154 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
155 |
|
156 |
"use strict";
|
157 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ \"./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ \"./node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ \"./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableSpread.js */ \"./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(arr) {\n return Object(_arrayWithoutHoles_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arr) || Object(_iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(arr) || Object(_unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(arr) || Object(_nonIterableSpread_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?");
|
158 |
|
159 |
/***/ }),
|
160 |
|
166 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
167 |
|
168 |
"use strict";
|
169 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ \"./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return Object(_arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(o, minLen);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?");
|
170 |
|
171 |
/***/ }),
|
172 |
|
assets/front-end/js/view/image-accordion.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("var ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n var $clickCount = 0;\n\n if (\"on-click\" === $type) {\n $(\"#eael-img-accordion-\" + $id + \"
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("var ImageAccordion = function ImageAccordion($scope, $) {\n var $imageAccordion = $scope.find(\".eael-img-accordion\").eq(0),\n $id = $imageAccordion.data(\"img-accordion-id\") !== undefined ? $imageAccordion.data(\"img-accordion-id\") : \"\",\n $type = $imageAccordion.data(\"img-accordion-type\") !== undefined ? $imageAccordion.data(\"img-accordion-type\") : \"\";\n var $clickCount = 0;\n\n if (\"on-click\" === $type) {\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").on(\"click\", function (e) {\n if ($(this).hasClass(\"overlay-active\") == false) {\n e.preventDefault();\n }\n\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\", $scope).removeClass(\"overlay-active\");\n\n if ($clickCount == 0) {\n if ($(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").hasClass('overlay-active')) {\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").removeClass(\"overlay-active\");\n }\n\n $clickCount += 1;\n }\n\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").css(\"flex\", \"1\");\n $(this).find(\".overlay\").parent(\".eael-image-accordion-hover\").addClass(\"overlay-active\");\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").find(\".overlay-inner\").removeClass(\"overlay-inner-show\");\n $(this).find(\".overlay-inner\").addClass(\"overlay-inner-show\");\n $(this).css(\"flex\", \"3\");\n });\n } else {\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").on('hover', function () {\n if ($(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").hasClass('overlay-active')) {\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover.overlay-active\").css(\"flex\", \"1\");\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover\").removeClass(\"overlay-active\");\n $(\"#eael-img-accordion-\" + $id + \" .eael-image-accordion-hover .overlay .overlay-inner\").removeClass('overlay-inner-show');\n }\n });\n }\n};\n\njQuery(window).on(\"elementor/frontend/init\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-image-accordion.default\", ImageAccordion);\n});\n\n//# sourceURL=webpack:///./src/js/view/image-accordion.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/image-accordion.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var
|
1 |
+
!function(e){var o={};function a(r){if(o[r])return o[r].exports;var i=o[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,a),i.l=!0,i.exports}a.m=e,a.c=o,a.d=function(e,o,r){a.o(e,o)||Object.defineProperty(e,o,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,o){if(1&o&&(e=a(e)),8&o)return e;if(4&o&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&o&&"string"!=typeof e)for(var i in e)a.d(r,i,function(o){return e[o]}.bind(null,i));return r},a.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(o,"a",o),o},a.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},a.p="",a(a.s=11)}({11:function(e,o){var a=function(e,o){var a=e.find(".eael-img-accordion").eq(0),r=void 0!==a.data("img-accordion-id")?a.data("img-accordion-id"):"",i=void 0!==a.data("img-accordion-type")?a.data("img-accordion-type"):"",n=0;"on-click"===i?o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").on("click",(function(a){0==o(this).hasClass("overlay-active")&&a.preventDefault(),o("#eael-img-accordion-"+r+" .eael-image-accordion-hover",e).removeClass("overlay-active"),0==n&&(o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").hasClass("overlay-active")&&o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").removeClass("overlay-active"),n+=1),o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").css("flex","1"),o(this).find(".overlay").parent(".eael-image-accordion-hover").addClass("overlay-active"),o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").find(".overlay-inner").removeClass("overlay-inner-show"),o(this).find(".overlay-inner").addClass("overlay-inner-show"),o(this).css("flex","3")})):o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").on("hover",(function(){o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").hasClass("overlay-active")&&(o("#eael-img-accordion-"+r+" .eael-image-accordion-hover.overlay-active").css("flex","1"),o("#eael-img-accordion-"+r+" .eael-image-accordion-hover").removeClass("overlay-active"),o("#eael-img-accordion-"+r+" .eael-image-accordion-hover .overlay .overlay-inner").removeClass("overlay-inner-show"))}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-image-accordion.default",a)}))}});
|
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: 4.5.
|
8 |
* Author URI: https://wpdeveloper.net/
|
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', '4.5.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 4.5.3
|
8 |
* Author URI: https://wpdeveloper.net/
|
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', '4.5.3');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Classes/Bootstrap.php
CHANGED
@@ -170,16 +170,13 @@ class Bootstrap
|
|
170 |
add_action( 'wp_ajax_nopriv_eael_product_grid', [$this, 'get_compare_table']);
|
171 |
add_action( 'wp_ajax_eael_product_grid', [$this, 'get_compare_table']);
|
172 |
|
173 |
-
|
174 |
add_action('wp_ajax_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
175 |
add_action('wp_ajax_nopriv_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
176 |
|
177 |
add_action('wp_ajax_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
178 |
add_action('wp_ajax_nopriv_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
179 |
|
180 |
-
//handle typeform auth token
|
181 |
-
add_action('admin_post_nopriv_typeform_token_data', [$this, 'typeform_auth_handle']);
|
182 |
-
|
183 |
// Elements
|
184 |
add_action('elementor/controls/controls_registered', array($this, 'register_controls'));
|
185 |
add_action('elementor/elements/categories_registered', array($this, 'register_widget_categories'));
|
@@ -217,8 +214,6 @@ class Bootstrap
|
|
217 |
}
|
218 |
|
219 |
if( class_exists( 'woocommerce' ) ) {
|
220 |
-
add_action( 'wp_footer', [ $this, 'eael_product_grid_script' ] );
|
221 |
-
|
222 |
// quick view
|
223 |
add_action( 'eael_woo_single_product_image', 'woocommerce_show_product_images', 20 );
|
224 |
add_action( 'eael_woo_single_product_summary', 'woocommerce_template_single_title', 5 );
|
@@ -257,6 +252,10 @@ class Bootstrap
|
|
257 |
add_action('admin_notices', array($this, 'elementor_not_loaded'));
|
258 |
}
|
259 |
|
|
|
|
|
|
|
|
|
260 |
// On Editor - Register WooCommerce frontend hooks before the Editor init.
|
261 |
// Priority = 5, in order to allow plugins remove/add their wc hooks on init.
|
262 |
if (!empty($_REQUEST['action']) && 'elementor' === $_REQUEST['action']) {
|
170 |
add_action( 'wp_ajax_nopriv_eael_product_grid', [$this, 'get_compare_table']);
|
171 |
add_action( 'wp_ajax_eael_product_grid', [$this, 'get_compare_table']);
|
172 |
|
173 |
+
// handle select2 ajax search
|
174 |
add_action('wp_ajax_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
175 |
add_action('wp_ajax_nopriv_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
176 |
|
177 |
add_action('wp_ajax_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
178 |
add_action('wp_ajax_nopriv_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
179 |
|
|
|
|
|
|
|
180 |
// Elements
|
181 |
add_action('elementor/controls/controls_registered', array($this, 'register_controls'));
|
182 |
add_action('elementor/elements/categories_registered', array($this, 'register_widget_categories'));
|
214 |
}
|
215 |
|
216 |
if( class_exists( 'woocommerce' ) ) {
|
|
|
|
|
217 |
// quick view
|
218 |
add_action( 'eael_woo_single_product_image', 'woocommerce_show_product_images', 20 );
|
219 |
add_action( 'eael_woo_single_product_summary', 'woocommerce_template_single_title', 5 );
|
252 |
add_action('admin_notices', array($this, 'elementor_not_loaded'));
|
253 |
}
|
254 |
|
255 |
+
//handle typeform auth token
|
256 |
+
add_action('admin_init', [$this, 'typeform_auth_handle']);
|
257 |
+
|
258 |
+
|
259 |
// On Editor - Register WooCommerce frontend hooks before the Editor init.
|
260 |
// Priority = 5, in order to allow plugins remove/add their wc hooks on init.
|
261 |
if (!empty($_REQUEST['action']) && 'elementor' === $_REQUEST['action']) {
|
includes/Elements/Image_Accordion.php
CHANGED
@@ -252,28 +252,28 @@ class Image_Accordion extends Widget_Base {
|
|
252 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #1', 'essential-addons-for-elementor-lite' ),
|
253 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
254 |
'eael_accordion_bg' => [
|
255 |
-
'url' =>
|
256 |
]
|
257 |
],
|
258 |
[
|
259 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #2', 'essential-addons-for-elementor-lite' ),
|
260 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
261 |
'eael_accordion_bg' => [
|
262 |
-
'url' =>
|
263 |
]
|
264 |
],
|
265 |
[
|
266 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #3', 'essential-addons-for-elementor-lite' ),
|
267 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
268 |
'eael_accordion_bg' => [
|
269 |
-
'url' =>
|
270 |
]
|
271 |
],
|
272 |
[
|
273 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #4', 'essential-addons-for-elementor-lite' ),
|
274 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
275 |
'eael_accordion_bg' => [
|
276 |
-
'url' =>
|
277 |
]
|
278 |
],
|
279 |
],
|
@@ -391,7 +391,7 @@ class Image_Accordion extends Widget_Base {
|
|
391 |
'type' => Controls_Manager::COLOR,
|
392 |
'default' => 'rgba(0, 0, 0, .3)',
|
393 |
'selectors' => [
|
394 |
-
'{{WRAPPER}} .eael-img-accordion
|
395 |
],
|
396 |
]
|
397 |
);
|
@@ -403,8 +403,8 @@ class Image_Accordion extends Widget_Base {
|
|
403 |
'type' => Controls_Manager::COLOR,
|
404 |
'default' => 'rgba(0, 0, 0, .5)',
|
405 |
'selectors' => [
|
406 |
-
'{{WRAPPER}} .eael-img-accordion
|
407 |
-
'{{WRAPPER}} .eael-img-accordion
|
408 |
],
|
409 |
]
|
410 |
);
|
@@ -570,7 +570,7 @@ class Image_Accordion extends Widget_Base {
|
|
570 |
<div <?php echo $this->get_render_attribute_string( 'eael-image-accordion' ); ?>>
|
571 |
<?php foreach ( $settings[ 'eael_img_accordions' ] as $key => $img_accordion ): ?>
|
572 |
<?php
|
573 |
-
$eael_accordion_link = $target = $nofollow = $active = '';
|
574 |
$activeCSS = ( $active === 'yes' ? ' flex: 3 1 0%;' : '' );
|
575 |
$this->add_render_attribute(
|
576 |
'eael-image-accordion-link-' . $key,
|
@@ -585,15 +585,22 @@ class Image_Accordion extends Widget_Base {
|
|
585 |
$tag = 'div';
|
586 |
if ( $img_accordion[ 'eael_accordion_enable_title_link' ] == 'yes' ) {
|
587 |
$eael_accordion_link = ( '#' === $img_accordion[ 'eael_accordion_title_link' ][ 'url' ] ) ? '#/' : $img_accordion[ 'eael_accordion_title_link' ][ 'url' ];
|
|
|
588 |
$target = $img_accordion[ 'eael_accordion_title_link' ][ 'is_external' ] ? 'target="_blank"' : '';
|
589 |
$nofollow = $img_accordion[ 'eael_accordion_title_link' ][ 'nofollow' ] ? 'rel="nofollow"' : '';
|
|
|
|
|
|
|
|
|
|
|
590 |
$active = $img_accordion[ 'eael_accordion_is_active' ];
|
591 |
-
$this->add_render_attribute( 'eael-image-accordion-link-' . $key, 'href', esc_url( $eael_accordion_link )
|
|
|
592 |
$tag = 'a';
|
593 |
}
|
594 |
?>
|
595 |
|
596 |
-
<<?php echo $tag.' '; ?><?php echo $this->get_render_attribute_string( 'eael-image-accordion-link-' . $key );
|
597 |
<div class="overlay">
|
598 |
<div class="overlay-inner">
|
599 |
<div class="overlay-inner <?php echo( $active === 'yes' ? ' overlay-inner-show' : '' ); ?>">
|
252 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #1', 'essential-addons-for-elementor-lite' ),
|
253 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
254 |
'eael_accordion_bg' => [
|
255 |
+
'url' => EAEL_PLUGIN_URL . '/assets/front-end/img/accordion.png',
|
256 |
]
|
257 |
],
|
258 |
[
|
259 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #2', 'essential-addons-for-elementor-lite' ),
|
260 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
261 |
'eael_accordion_bg' => [
|
262 |
+
'url' => EAEL_PLUGIN_URL . '/assets/front-end/img/accordion.png',
|
263 |
]
|
264 |
],
|
265 |
[
|
266 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #3', 'essential-addons-for-elementor-lite' ),
|
267 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
268 |
'eael_accordion_bg' => [
|
269 |
+
'url' => EAEL_PLUGIN_URL . '/assets/front-end/img/accordion.png',
|
270 |
]
|
271 |
],
|
272 |
[
|
273 |
'eael_accordion_tittle' => esc_html__( 'Image Accordion #4', 'essential-addons-for-elementor-lite' ),
|
274 |
'eael_accordion_content' => esc_html__( 'Image Accordion Content Goes Here! Click edit button to change this text.', 'essential-addons-for-elementor-lite' ),
|
275 |
'eael_accordion_bg' => [
|
276 |
+
'url' => EAEL_PLUGIN_URL . '/assets/front-end/img/accordion.png',
|
277 |
]
|
278 |
],
|
279 |
],
|
391 |
'type' => Controls_Manager::COLOR,
|
392 |
'default' => 'rgba(0, 0, 0, .3)',
|
393 |
'selectors' => [
|
394 |
+
'{{WRAPPER}} .eael-img-accordion .eael-image-accordion-hover:after' => 'background-color: {{VALUE}};',
|
395 |
],
|
396 |
]
|
397 |
);
|
403 |
'type' => Controls_Manager::COLOR,
|
404 |
'default' => 'rgba(0, 0, 0, .5)',
|
405 |
'selectors' => [
|
406 |
+
'{{WRAPPER}} .eael-img-accordion .eael-image-accordion-hover:hover::after' => 'background-color: {{VALUE}};',
|
407 |
+
'{{WRAPPER}} .eael-img-accordion .eael-image-accordion-hover.overlay-active:after' => 'background-color: {{VALUE}};',
|
408 |
],
|
409 |
]
|
410 |
);
|
570 |
<div <?php echo $this->get_render_attribute_string( 'eael-image-accordion' ); ?>>
|
571 |
<?php foreach ( $settings[ 'eael_img_accordions' ] as $key => $img_accordion ): ?>
|
572 |
<?php
|
573 |
+
$eael_accordion_link = $target = $nofollow = $attributes = $active = '';
|
574 |
$activeCSS = ( $active === 'yes' ? ' flex: 3 1 0%;' : '' );
|
575 |
$this->add_render_attribute(
|
576 |
'eael-image-accordion-link-' . $key,
|
585 |
$tag = 'div';
|
586 |
if ( $img_accordion[ 'eael_accordion_enable_title_link' ] == 'yes' ) {
|
587 |
$eael_accordion_link = ( '#' === $img_accordion[ 'eael_accordion_title_link' ][ 'url' ] ) ? '#/' : $img_accordion[ 'eael_accordion_title_link' ][ 'url' ];
|
588 |
+
|
589 |
$target = $img_accordion[ 'eael_accordion_title_link' ][ 'is_external' ] ? 'target="_blank"' : '';
|
590 |
$nofollow = $img_accordion[ 'eael_accordion_title_link' ][ 'nofollow' ] ? 'rel="nofollow"' : '';
|
591 |
+
if($img_accordion['eael_accordion_title_link']['custom_attributes']){
|
592 |
+
$attributes = str_replace("|",'="',$img_accordion['eael_accordion_title_link']['custom_attributes']);
|
593 |
+
$attributes = str_replace(",",'" ',$attributes);
|
594 |
+
$attributes .='"';
|
595 |
+
}
|
596 |
$active = $img_accordion[ 'eael_accordion_is_active' ];
|
597 |
+
$this->add_render_attribute( 'eael-image-accordion-link-' . $key, 'href', esc_url( $eael_accordion_link ));
|
598 |
+
|
599 |
$tag = 'a';
|
600 |
}
|
601 |
?>
|
602 |
|
603 |
+
<<?php echo $tag.' '; ?><?php echo $this->get_render_attribute_string( 'eael-image-accordion-link-' . $key ), $target,$nofollow,$attributes; ?> tabindex="<?php echo $key; ?>">
|
604 |
<div class="overlay">
|
605 |
<div class="overlay-inner">
|
606 |
<div class="overlay-inner <?php echo( $active === 'yes' ? ' overlay-inner-show' : '' ); ?>">
|
includes/Elements/Product_Grid.php
CHANGED
@@ -37,6 +37,20 @@ class Product_Grid extends Widget_Base
|
|
37 |
*/
|
38 |
protected $page_id;
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
public function get_name()
|
41 |
{
|
42 |
return 'eicon-woocommerce';
|
37 |
*/
|
38 |
protected $page_id;
|
39 |
|
40 |
+
public function __construct( $data = [], $args = null ) {
|
41 |
+
parent::__construct( $data, $args );
|
42 |
+
|
43 |
+
$is_type_instance = $this->is_type_instance();
|
44 |
+
|
45 |
+
if ( ! $is_type_instance && null === $args ) {
|
46 |
+
throw new \Exception( '`$args` argument is required when initializing a full widget instance.' );
|
47 |
+
}
|
48 |
+
|
49 |
+
if ( $is_type_instance && class_exists('woocommerce')) {
|
50 |
+
add_action( 'wp_footer', [ $this, 'eael_product_grid_script' ] );
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
public function get_name()
|
55 |
{
|
56 |
return 'eicon-woocommerce';
|
includes/Elements/Twitter_Feed.php
CHANGED
@@ -915,6 +915,7 @@ class Twitter_Feed extends Widget_Base
|
|
915 |
protected function render()
|
916 |
{
|
917 |
$settings = $this->get_settings_for_display();
|
|
|
918 |
|
919 |
echo '<div class="eael-twitter-feed eael-twitter-feed-' . $this->get_id() . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type'] . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type_col_type'] . ' clearfix" data-gutter="' . $settings['eael_twitter_feed_column_spacing']['size'] . '">
|
920 |
' . $this->twitter_feed_render_items($this->get_id(), $settings) . '
|
@@ -922,13 +923,13 @@ class Twitter_Feed extends Widget_Base
|
|
922 |
|
923 |
echo '<style>
|
924 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
925 |
-
width: calc(50% - ' . ceil($
|
926 |
}
|
927 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
928 |
width: calc(33.33% - ' . ceil($settings['eael_twitter_feed_column_spacing']['size'] * 2 / 3) . 'px);
|
929 |
}
|
930 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
931 |
-
width: calc(25% - ' . ceil($
|
932 |
}
|
933 |
|
934 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-col-2 .eael-twitter-feed-item,
|
@@ -939,7 +940,7 @@ class Twitter_Feed extends Widget_Base
|
|
939 |
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
940 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item,
|
941 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
942 |
-
width: calc(50% - ' . ceil($
|
943 |
}
|
944 |
}
|
945 |
</style>';
|
915 |
protected function render()
|
916 |
{
|
917 |
$settings = $this->get_settings_for_display();
|
918 |
+
$feedcolumnspacing = $this->get_settings('eael_twitter_feed_column_spacing')['size'];
|
919 |
|
920 |
echo '<div class="eael-twitter-feed eael-twitter-feed-' . $this->get_id() . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type'] . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type_col_type'] . ' clearfix" data-gutter="' . $settings['eael_twitter_feed_column_spacing']['size'] . '">
|
921 |
' . $this->twitter_feed_render_items($this->get_id(), $settings) . '
|
923 |
|
924 |
echo '<style>
|
925 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
926 |
+
width: calc(50% - ' . ceil($feedcolumnspacing / 2) . 'px);
|
927 |
}
|
928 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
929 |
width: calc(33.33% - ' . ceil($settings['eael_twitter_feed_column_spacing']['size'] * 2 / 3) . 'px);
|
930 |
}
|
931 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
932 |
+
width: calc(25% - ' . ceil($feedcolumnspacing * 3 / 4) . 'px);
|
933 |
}
|
934 |
|
935 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-col-2 .eael-twitter-feed-item,
|
940 |
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
941 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item,
|
942 |
.eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
943 |
+
width: calc(50% - ' . ceil($feedcolumnspacing / 2) . 'px);
|
944 |
}
|
945 |
}
|
946 |
</style>';
|
includes/Template/Eicon-Woocommerce/default.php
CHANGED
@@ -34,7 +34,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
34 |
<li class="product">
|
35 |
<a href="<?php echo esc_url( $product->get_permalink() ); ?>" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
|
36 |
<?php echo wp_kses_post( $product->get_image( 'woocommerce_thumbnail', ['loading' => 'eager'] ) ); ?>
|
37 |
-
<h2 class="woocommerce-loop-product__title"> <?php echo
|
38 |
<?php
|
39 |
if ( $should_print_rating ) {
|
40 |
echo wp_kses_post( wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ) );
|
@@ -73,7 +73,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
73 |
?>
|
74 |
</div>
|
75 |
</div>
|
76 |
-
<h2 class="woocommerce-loop-product__title"><?php echo
|
77 |
<?php
|
78 |
if ( $should_print_rating ) {
|
79 |
echo wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() );
|
34 |
<li class="product">
|
35 |
<a href="<?php echo esc_url( $product->get_permalink() ); ?>" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
|
36 |
<?php echo wp_kses_post( $product->get_image( 'woocommerce_thumbnail', ['loading' => 'eager'] ) ); ?>
|
37 |
+
<h2 class="woocommerce-loop-product__title"> <?php echo $product->get_title() ; ?> </h2>
|
38 |
<?php
|
39 |
if ( $should_print_rating ) {
|
40 |
echo wp_kses_post( wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ) );
|
73 |
?>
|
74 |
</div>
|
75 |
</div>
|
76 |
+
<h2 class="woocommerce-loop-product__title"><?php echo $product->get_title(); ?></h2>
|
77 |
<?php
|
78 |
if ( $should_print_rating ) {
|
79 |
echo wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() );
|
includes/Traits/Admin.php
CHANGED
@@ -110,7 +110,7 @@ trait Admin {
|
|
110 |
src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/icon-general.svg'; ?>"
|
111 |
alt="essential-addons-general-settings"><span><?php echo __( 'General', 'essential-addons-for-elementor-lite' ); ?></span></a>
|
112 |
</li>
|
113 |
-
<li><a href="#elements"><img
|
114 |
src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/icon-elements.svg'; ?>"
|
115 |
alt="essential-addons-elements"><span><?php echo __( 'Elements', 'essential-addons-for-elementor-lite' ); ?></span></a>
|
116 |
</li>
|
110 |
src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/icon-general.svg'; ?>"
|
111 |
alt="essential-addons-general-settings"><span><?php echo __( 'General', 'essential-addons-for-elementor-lite' ); ?></span></a>
|
112 |
</li>
|
113 |
+
<li><a class="eael-elements-tab" href="#elements"><img
|
114 |
src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/icon-elements.svg'; ?>"
|
115 |
alt="essential-addons-elements"><span><?php echo __( 'Elements', 'essential-addons-for-elementor-lite' ); ?></span></a>
|
116 |
</li>
|
includes/Traits/Helper.php
CHANGED
@@ -197,13 +197,13 @@ trait Helper
|
|
197 |
* @since 4.0.2
|
198 |
*/
|
199 |
public function typeform_auth_handle() {
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
}
|
208 |
|
209 |
/*****************************
|
197 |
* @since 4.0.2
|
198 |
*/
|
199 |
public function typeform_auth_handle() {
|
200 |
+
if ( isset($_GET[ 'page' ]) && 'eael-settings' == $_GET[ 'page' ] ) {
|
201 |
+
if ( isset( $_GET[ 'typeform_tk' ] ) && isset( $_GET[ 'pr_code' ] ) ) {
|
202 |
+
if ( wp_hash( 'eael_typeform' ) === $_GET[ 'pr_code' ] ) {
|
203 |
+
update_option( 'eael_save_typeform_personal_token', sanitize_text_field( $_GET[ 'typeform_tk' ] ), false );
|
204 |
+
}
|
205 |
+
}
|
206 |
+
}
|
207 |
}
|
208 |
|
209 |
/*****************************
|
includes/templates/admin/elements.php
CHANGED
@@ -550,11 +550,11 @@ $elements = apply_filters( 'add_eael_elementor_addons', $elements );
|
|
550 |
} elseif($item['key'] === 'typeform') {
|
551 |
$query_param = [
|
552 |
'pr_code' => wp_hash('eael_typeform'),
|
553 |
-
'redirect_uri' => esc_url(admin_url('admin
|
554 |
];
|
555 |
$url = esc_url( add_query_arg( $query_param, esc_url('https://app.essential-addons.com/typeform/index.php') ) );
|
556 |
echo '<span style="font-size: 12px; font-style:italic;">
|
557 |
-
'.sprintf("<a
|
558 |
</span>';
|
559 |
} elseif ($item['key'] === 'login-register') {
|
560 |
$eael_recaptcha_sitekey = get_option('eael_recaptcha_sitekey');
|
550 |
} elseif($item['key'] === 'typeform') {
|
551 |
$query_param = [
|
552 |
'pr_code' => wp_hash('eael_typeform'),
|
553 |
+
'redirect_uri' => esc_url(admin_url( 'admin.php?page=eael-settings' ))
|
554 |
];
|
555 |
$url = esc_url( add_query_arg( $query_param, esc_url('https://app.essential-addons.com/typeform/index.php') ) );
|
556 |
echo '<span style="font-size: 12px; font-style:italic;">
|
557 |
+
'.sprintf("<a target='_blank' id='' href='%s'>Get Access</a>", esc_url($url)).'
|
558 |
</span>';
|
559 |
} elseif ($item['key'] === 'login-register') {
|
560 |
$eael_recaptcha_sitekey = get_option('eael_recaptcha_sitekey');
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -487,7 +487,7 @@ msgstr ""
|
|
487 |
msgid "WooCommerce Elements"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:752, ../includes/Elements/Product_Grid.php:
|
491 |
msgid "Product Grid"
|
492 |
msgstr ""
|
493 |
|
@@ -511,7 +511,7 @@ msgstr ""
|
|
511 |
msgid "Data Source"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Product_Grid.php:
|
515 |
msgid "Source"
|
516 |
msgstr ""
|
517 |
|
@@ -567,7 +567,7 @@ msgstr ""
|
|
567 |
msgid "Placeholder"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:365, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:
|
571 |
msgid "Pagination"
|
572 |
msgstr ""
|
573 |
|
@@ -575,7 +575,7 @@ msgstr ""
|
|
575 |
msgid "Pagination Type"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:
|
579 |
msgid "Button"
|
580 |
msgstr ""
|
581 |
|
@@ -615,15 +615,15 @@ msgstr ""
|
|
615 |
msgid "Width"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../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:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:1047, ../includes/Elements/Filterable_Gallery.php:1127, ../includes/Elements/Filterable_Gallery.php:1274, ../includes/Elements/Filterable_Gallery.php:1331, ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:1886, ../includes/Elements/Filterable_Gallery.php:2397, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:353, ../includes/Elements/Image_Accordion.php:463, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:
|
619 |
msgid "Border"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../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:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:353, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:876, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1055, ../includes/Elements/Filterable_Gallery.php:1135, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:1833, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2323, ../includes/Elements/Filterable_Gallery.php:2419, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:361, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:
|
623 |
msgid "Border Radius"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:
|
627 |
msgid "Box Shadow"
|
628 |
msgstr ""
|
629 |
|
@@ -631,7 +631,7 @@ msgstr ""
|
|
631 |
msgid "Head"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../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:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:
|
635 |
msgid "Typography"
|
636 |
msgstr ""
|
637 |
|
@@ -639,23 +639,23 @@ msgstr ""
|
|
639 |
msgid "Text Alignment"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:189, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/Filterable_Gallery.php:1296, ../includes/Elements/Filterable_Gallery.php:1679, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:108, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:
|
643 |
msgid "Left"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:586, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:112, ../includes/Elements/Image_Accordion.php:135, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:
|
647 |
msgid "Center"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:116, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:
|
651 |
msgid "Right"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../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:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:2497, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:
|
655 |
msgid "Text Color"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../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:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../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:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:308, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1370, ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2481, ../includes/Elements/Filterable_Gallery.php:2674, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:316, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:
|
659 |
msgid "Background Color"
|
660 |
msgstr ""
|
661 |
|
@@ -663,7 +663,7 @@ msgstr ""
|
|
663 |
msgid "Cell Border"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:320, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1192, ../includes/Elements/Filterable_Gallery.php:1536, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2598, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:328, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:
|
667 |
msgid "Padding"
|
668 |
msgstr ""
|
669 |
|
@@ -719,7 +719,7 @@ msgstr ""
|
|
719 |
msgid "Margin Bottom"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:
|
723 |
msgid "Alignment"
|
724 |
msgstr ""
|
725 |
|
@@ -727,15 +727,15 @@ msgstr ""
|
|
727 |
msgid "Margin"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../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:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:951, ../includes/Elements/Filterable_Gallery.php:1716, ../includes/Elements/Filterable_Gallery.php:2470, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:
|
731 |
msgid "Normal"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../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:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2663, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:
|
735 |
msgid "Hover"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../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:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:468, ../includes/Elements/Dual_Color_Header.php:541, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1213, ../includes/Elements/Filterable_Gallery.php:1253, ../includes/Elements/Filterable_Gallery.php:1575, ../includes/Elements/Filterable_Gallery.php:1590, ../includes/Elements/Filterable_Gallery.php:1635, ../includes/Elements/Filterable_Gallery.php:1650, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:1873, ../includes/Elements/Filterable_Gallery.php:1949, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2028, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2352, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:495, ../includes/Elements/Image_Accordion.php:524, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:
|
739 |
msgid "Color"
|
740 |
msgstr ""
|
741 |
|
@@ -839,7 +839,7 @@ msgstr ""
|
|
839 |
msgid "Content Type"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Image_Accordion.php:207, ../includes/Elements/Image_Accordion.php:515, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:
|
843 |
msgid "Content"
|
844 |
msgstr ""
|
845 |
|
@@ -879,7 +879,7 @@ msgstr ""
|
|
879 |
msgid "Tab Style"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:395, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1771, ../includes/Elements/Filterable_Gallery.php:2125, ../includes/Elements/Filterable_Gallery.php:2558, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:
|
883 |
msgid "Icon Size"
|
884 |
msgstr ""
|
885 |
|
@@ -895,7 +895,7 @@ msgstr ""
|
|
895 |
msgid "Icon Color"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:
|
899 |
msgid "Active"
|
900 |
msgstr ""
|
901 |
|
@@ -919,7 +919,7 @@ msgstr ""
|
|
919 |
msgid "Caret Color"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:167, ../includes/Elements/Product_Grid.php:
|
923 |
msgid "Layout"
|
924 |
msgstr ""
|
925 |
|
@@ -1019,11 +1019,11 @@ msgstr ""
|
|
1019 |
msgid "Show Icon"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../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:1302, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:
|
1023 |
msgid "Show"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../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:1303, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:273, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:
|
1027 |
msgid "Hide"
|
1028 |
msgstr ""
|
1029 |
|
@@ -1079,7 +1079,7 @@ msgstr ""
|
|
1079 |
msgid "Spacing"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../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:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:196, ../includes/Elements/Image_Accordion.php:486, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:
|
1083 |
msgid "Title"
|
1084 |
msgstr ""
|
1085 |
|
@@ -1103,7 +1103,7 @@ msgstr ""
|
|
1103 |
msgid "File Not Found"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:
|
1107 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1108 |
msgstr ""
|
1109 |
|
@@ -1111,7 +1111,7 @@ msgstr ""
|
|
1111 |
msgid "Layout Mode"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:304, ../includes/Elements/Filterable_Gallery.php:143, ../includes/Elements/Product_Grid.php:
|
1115 |
msgid "Grid"
|
1116 |
msgstr ""
|
1117 |
|
@@ -1119,7 +1119,7 @@ msgstr ""
|
|
1119 |
msgid "Fit to Screen"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:144, ../includes/Elements/Product_Grid.php:
|
1123 |
msgid "Masonry"
|
1124 |
msgstr ""
|
1125 |
|
@@ -1159,11 +1159,11 @@ msgstr ""
|
|
1159 |
msgid "Ticker Background"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:376, ../includes/Elements/Product_Grid.php:
|
1163 |
msgid "List"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1225, ../includes/Elements/Filterable_Gallery.php:1605, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:
|
1167 |
msgid "Hover Color"
|
1168 |
msgstr ""
|
1169 |
|
@@ -1235,7 +1235,7 @@ msgstr ""
|
|
1235 |
msgid "Close Icon"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1363, ../includes/Elements/Content_Ticker.php:720, ../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:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:
|
1239 |
msgid "Border Color"
|
1240 |
msgstr ""
|
1241 |
|
@@ -1303,7 +1303,7 @@ msgstr ""
|
|
1303 |
msgid "Form Alignment"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:225, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:79, ../includes/Elements/Flip_Box.php:871, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:430, ../includes/Elements/Login_Register.php:527, ../includes/Elements/Login_Register.php:1039, ../includes/Elements/Login_Register.php:1395, ../includes/Elements/Login_Register.php:1521, ../includes/Elements/Login_Register.php:1778, ../includes/Elements/Login_Register.php:1922, ../includes/Elements/Login_Register.php:2072, ../includes/Elements/Login_Register.php:2215, ../includes/Elements/Login_Register.php:2306, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2606, ../includes/Elements/Login_Register.php:2651, ../includes/Elements/Login_Register.php:2683, ../includes/Elements/Login_Register.php:2917, ../includes/Elements/Login_Register.php:3079, ../includes/Elements/Login_Register.php:3378, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:
|
1307 |
msgid "Default"
|
1308 |
msgstr ""
|
1309 |
|
@@ -1443,7 +1443,7 @@ msgstr ""
|
|
1443 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../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:741, ../includes/Elements/Dual_Color_Header.php:821, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2050, ../includes/Elements/Filterable_Gallery.php:2269, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:
|
1447 |
msgid "Background"
|
1448 |
msgstr ""
|
1449 |
|
@@ -1491,7 +1491,7 @@ msgstr ""
|
|
1491 |
msgid "After Submit Feedback"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:
|
1495 |
msgid "Radius"
|
1496 |
msgstr ""
|
1497 |
|
@@ -1503,7 +1503,7 @@ msgstr ""
|
|
1503 |
msgid "Template Layout"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:
|
1507 |
msgid "Dynamic"
|
1508 |
msgstr ""
|
1509 |
|
@@ -1811,7 +1811,7 @@ msgstr ""
|
|
1811 |
msgid "Space Below Container"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:
|
1815 |
msgid "Color & Typography"
|
1816 |
msgstr ""
|
1817 |
|
@@ -1843,7 +1843,7 @@ msgstr ""
|
|
1843 |
msgid "Title Style"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:
|
1847 |
msgid "Title Color"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1947,7 +1947,7 @@ msgstr ""
|
|
1947 |
msgid "Shikoba (Pro)"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: ../includes/Elements/Creative_Button.php:248, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:
|
1951 |
msgid "Use Gradient Background"
|
1952 |
msgstr ""
|
1953 |
|
@@ -2511,7 +2511,7 @@ msgstr ""
|
|
2511 |
msgid "Time"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: ../includes/Elements/Event_Calendar.php:1044, ../includes/Elements/Event_Calendar.php:1378, ../includes/Elements/Facebook_Feed.php:899, ../includes/Elements/Product_Grid.php:
|
2515 |
msgid "Date"
|
2516 |
msgstr ""
|
2517 |
|
@@ -2543,15 +2543,15 @@ msgstr ""
|
|
2543 |
msgid "Date Icon"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Info_Box.php:1465, ../includes/Elements/Product_Grid.php:
|
2547 |
msgid "Content Color"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:
|
2551 |
msgid " Close Button"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: ../includes/Elements/Event_Calendar.php:1510, ../includes/Elements/Product_Grid.php:
|
2555 |
msgid "Button Size"
|
2556 |
msgstr ""
|
2557 |
|
@@ -2627,31 +2627,31 @@ msgstr ""
|
|
2627 |
msgid "Overlay"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: ../includes/Elements/Facebook_Feed.php:181, ../includes/Elements/Filterable_Gallery.php:118, ../includes/Elements/Product_Grid.php:
|
2631 |
msgid "Columns"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: ../includes/Elements/Facebook_Feed.php:185, ../includes/Elements/Product_Grid.php:
|
2635 |
msgid "1"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: ../includes/Elements/Facebook_Feed.php:186, ../includes/Elements/Product_Grid.php:
|
2639 |
msgid "2"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: ../includes/Elements/Facebook_Feed.php:187, ../includes/Elements/Product_Grid.php:
|
2643 |
msgid "3"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: ../includes/Elements/Facebook_Feed.php:188, ../includes/Elements/Product_Grid.php:
|
2647 |
msgid "4"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: ../includes/Elements/Facebook_Feed.php:189, ../includes/Elements/Filterable_Gallery.php:515, ../includes/Elements/Product_Grid.php:
|
2651 |
msgid "5"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: ../includes/Elements/Facebook_Feed.php:190, ../includes/Elements/Product_Grid.php:
|
2655 |
msgid "6"
|
2656 |
msgstr ""
|
2657 |
|
@@ -2703,7 +2703,7 @@ msgstr ""
|
|
2703 |
msgid "Show Preview Description"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: ../includes/Elements/Facebook_Feed.php:373, ../includes/Elements/Product_Grid.php:
|
2707 |
msgid "Show Load More"
|
2708 |
msgstr ""
|
2709 |
|
@@ -2711,7 +2711,7 @@ msgstr ""
|
|
2711 |
msgid "Label"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:
|
2715 |
msgid "Load More"
|
2716 |
msgstr ""
|
2717 |
|
@@ -3091,7 +3091,7 @@ msgstr ""
|
|
3091 |
msgid "Media"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:
|
3095 |
msgid "Buttons"
|
3096 |
msgstr ""
|
3097 |
|
@@ -3371,7 +3371,7 @@ msgstr ""
|
|
3371 |
msgid "Dropdown"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:
|
3375 |
msgid "Top Spacing"
|
3376 |
msgstr ""
|
3377 |
|
@@ -3627,7 +3627,7 @@ msgstr ""
|
|
3627 |
msgid "Border Height"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:
|
3631 |
msgid "Price"
|
3632 |
msgstr ""
|
3633 |
|
@@ -3635,7 +3635,7 @@ msgstr ""
|
|
3635 |
msgid "Price Label Color"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:
|
3639 |
msgid "Price Color"
|
3640 |
msgstr ""
|
3641 |
|
@@ -4850,7 +4850,7 @@ msgstr ""
|
|
4850 |
msgid "Target Blank"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: ../includes/Elements/Post_Grid.php:178, ../includes/Elements/Product_Grid.php:
|
4854 |
msgid "Read More"
|
4855 |
msgstr ""
|
4856 |
|
@@ -5030,7 +5030,7 @@ msgstr ""
|
|
5030 |
msgid "Date Text Color"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: ../includes/Elements/Post_Timeline.php:464, ../includes/Elements/Product_Grid.php:
|
5034 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5035 |
msgstr ""
|
5036 |
|
@@ -5310,351 +5310,351 @@ msgstr ""
|
|
5310 |
msgid "Button Gradient Background"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: ../includes/Elements/Product_Grid.php:
|
5314 |
msgid "Product ID"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: ../includes/Elements/Product_Grid.php:
|
5318 |
msgid "Product Title"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: ../includes/Elements/Product_Grid.php:
|
5322 |
msgid "SKU"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: ../includes/Elements/Product_Grid.php:
|
5326 |
msgid "Last Modified Date"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: ../includes/Elements/Product_Grid.php:
|
5330 |
msgid "Parent Id"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: ../includes/Elements/Product_Grid.php:
|
5334 |
msgid "Random"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: ../includes/Elements/Product_Grid.php:
|
5338 |
msgid "Menu Order"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: ../includes/Elements/Product_Grid.php:
|
5342 |
msgid "Recent Products"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: ../includes/Elements/Product_Grid.php:
|
5346 |
msgid "Featured Products"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: ../includes/Elements/Product_Grid.php:
|
5350 |
msgid "Best Selling Products"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: ../includes/Elements/Product_Grid.php:
|
5354 |
msgid "Sale Products"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: ../includes/Elements/Product_Grid.php:
|
5358 |
msgid "Top Rated Products"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: ../includes/Elements/Product_Grid.php:
|
5362 |
msgid "Layouts"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: ../includes/Elements/Product_Grid.php:
|
5366 |
msgid "Style Preset"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
-
#: ../includes/Elements/Product_Grid.php:
|
5370 |
msgid "Simple Style"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: ../includes/Elements/Product_Grid.php:
|
5374 |
msgid "Reveal Style"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: ../includes/Elements/Product_Grid.php:
|
5378 |
msgid "Overlay Style"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: ../includes/Elements/Product_Grid.php:
|
5382 |
msgid "Preset 5"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: ../includes/Elements/Product_Grid.php:
|
5386 |
msgid "Preset 6"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: ../includes/Elements/Product_Grid.php:
|
5390 |
msgid "Preset 7"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: ../includes/Elements/Product_Grid.php:
|
5394 |
msgid "Preset 8"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: ../includes/Elements/Product_Grid.php:
|
5398 |
msgid "Preset 1"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: ../includes/Elements/Product_Grid.php:
|
5402 |
msgid "Preset 2"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
-
#: ../includes/Elements/Product_Grid.php:
|
5406 |
msgid "Preset 3"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: ../includes/Elements/Product_Grid.php:
|
5410 |
msgid "Preset 4"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: ../includes/Elements/Product_Grid.php:
|
5414 |
msgid "Product Settings"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: ../includes/Elements/Product_Grid.php:
|
5418 |
msgid "Products"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: ../includes/Elements/Product_Grid.php:
|
5422 |
msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: ../includes/Elements/Product_Grid.php:
|
5426 |
msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: ../includes/Elements/Product_Grid.php:
|
5430 |
msgid "Filter By"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: ../includes/Elements/Product_Grid.php:
|
5434 |
msgid "Order By"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: ../includes/Elements/Product_Grid.php:
|
5438 |
msgid "Order"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: ../includes/Elements/Product_Grid.php:
|
5442 |
msgid "Products Count"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: ../includes/Elements/Product_Grid.php:
|
5446 |
msgid "Offset"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: ../includes/Elements/Product_Grid.php:
|
5450 |
msgid "Product Categories"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: ../includes/Elements/Product_Grid.php:
|
5454 |
msgid "Show Product Rating?"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: ../includes/Elements/Product_Grid.php:
|
5458 |
msgid "Show Product Price?"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#: ../includes/Elements/Product_Grid.php:
|
5462 |
msgid "Short Description?"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: ../includes/Elements/Product_Grid.php:
|
5466 |
msgid "Excerpt Words"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: ../includes/Elements/Product_Grid.php:
|
5470 |
msgid "Expansion Indicator"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: ../includes/Elements/Product_Grid.php:
|
5474 |
msgid "Show Product Compare?"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: ../includes/Elements/Product_Grid.php:
|
5478 |
msgid "Add To Cart"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: ../includes/Elements/Product_Grid.php:
|
5482 |
msgid "Show Add to cart custom text"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
-
#: ../includes/Elements/Product_Grid.php:
|
5486 |
msgid "Simple Product"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: ../includes/Elements/Product_Grid.php:
|
5490 |
msgid "Buy Now"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
-
#: ../includes/Elements/Product_Grid.php:
|
5494 |
msgid "Variable Product"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: ../includes/Elements/Product_Grid.php:
|
5498 |
msgid "Select options"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: ../includes/Elements/Product_Grid.php:
|
5502 |
msgid "Grouped Product"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
-
#: ../includes/Elements/Product_Grid.php:
|
5506 |
msgid "View products"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: ../includes/Elements/Product_Grid.php:
|
5510 |
msgid "External Product"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
-
#: ../includes/Elements/Product_Grid.php:
|
5514 |
msgid "Default Product"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: ../includes/Elements/Product_Grid.php:
|
5518 |
msgid "Label Text"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#: ../includes/Elements/Product_Grid.php:
|
5522 |
msgid "Content Background Color"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: ../includes/Elements/Product_Grid.php:
|
5526 |
msgid "Image Width(%)"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
-
#: ../includes/Elements/Product_Grid.php:
|
5530 |
msgid "Product Details"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: ../includes/Elements/Product_Grid.php:
|
5534 |
msgid "Padding (PX)"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: ../includes/Elements/Product_Grid.php:
|
5538 |
msgid "Width (%)"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: ../includes/Elements/Product_Grid.php:
|
5542 |
msgid "Product Title Color"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: ../includes/Elements/Product_Grid.php:
|
5546 |
msgid "Product Price"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#: ../includes/Elements/Product_Grid.php:
|
5550 |
msgid "Product Price Color"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: ../includes/Elements/Product_Grid.php:
|
5554 |
msgid "Star Rating"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: ../includes/Elements/Product_Grid.php:
|
5558 |
msgid "Rating Color"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: ../includes/Elements/Product_Grid.php:
|
5562 |
msgid "Product Description"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: ../includes/Elements/Product_Grid.php:
|
5566 |
msgid "Sale Badge"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: ../includes/Elements/Product_Grid.php:
|
5570 |
msgid "Sale Badge Color"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: ../includes/Elements/Product_Grid.php:
|
5574 |
msgid "Sale Badge Background"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: ../includes/Elements/Product_Grid.php:
|
5578 |
msgid "Stock Out Badge"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: ../includes/Elements/Product_Grid.php:
|
5582 |
msgid "Stock Out Badge Color"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: ../includes/Elements/Product_Grid.php:
|
5586 |
msgid "Stock Out Badge Background"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#: ../includes/Elements/Product_Grid.php:
|
5590 |
msgid "Add to Cart Button Styles"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: ../includes/Elements/Product_Grid.php:
|
5594 |
msgid "Button Color"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: ../includes/Elements/Product_Grid.php:
|
5598 |
msgid "Sale / Stock Out Badge"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: ../includes/Elements/Product_Grid.php:
|
5602 |
msgid "Show Quick view?"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: ../includes/Elements/Product_Grid.php:
|
5606 |
msgid "Icons Size"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: ../includes/Elements/Product_Grid.php:
|
5610 |
msgid "Show pagination"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: ../includes/Elements/Product_Grid.php:
|
5614 |
msgid "Previous Label"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: ../includes/Elements/Product_Grid.php:
|
5618 |
msgid "←"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: ../includes/Elements/Product_Grid.php:
|
5622 |
msgid "Next Label"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: ../includes/Elements/Product_Grid.php:
|
5626 |
msgid "→"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: ../includes/Elements/Product_Grid.php:
|
5630 |
msgid "Loader"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: ../includes/Elements/Product_Grid.php:
|
5634 |
msgid "Popup"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: ../includes/Elements/Product_Grid.php:
|
5638 |
msgid "Sale Price Color"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: ../includes/Elements/Product_Grid.php:
|
5642 |
msgid "Review Link Color"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: ../includes/Elements/Product_Grid.php:
|
5646 |
msgid "Review Link Hover"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#: ../includes/Elements/Product_Grid.php:
|
5650 |
msgid "Sale"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#: ../includes/Elements/Product_Grid.php:
|
5654 |
msgid "Quantity"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: ../includes/Elements/Product_Grid.php:
|
5658 |
msgid "Cart Button"
|
5659 |
msgstr ""
|
5660 |
|
487 |
msgid "WooCommerce Elements"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:752, ../includes/Elements/Product_Grid.php:61, ../includes/templates/admin/elements.php:486
|
491 |
msgid "Product Grid"
|
492 |
msgstr ""
|
493 |
|
511 |
msgid "Data Source"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Product_Grid.php:329, ../includes/Elements/Sticky_Video.php:144, ../includes/Traits/Controls.php:67
|
515 |
msgid "Source"
|
516 |
msgstr ""
|
517 |
|
567 |
msgid "Placeholder"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:365, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2023, ../includes/Elements/Product_Grid.php:2074
|
571 |
msgid "Pagination"
|
572 |
msgstr ""
|
573 |
|
575 |
msgid "Pagination Type"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:1728, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Traits/Woo_Product_Comparable.php:1198, ../includes/Traits/Woo_Product_Comparable.php:1248
|
579 |
msgid "Button"
|
580 |
msgstr ""
|
581 |
|
615 |
msgid "Width"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../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:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:1047, ../includes/Elements/Filterable_Gallery.php:1127, ../includes/Elements/Filterable_Gallery.php:1274, ../includes/Elements/Filterable_Gallery.php:1331, ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:1886, ../includes/Elements/Filterable_Gallery.php:2397, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:353, ../includes/Elements/Image_Accordion.php:463, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:2169, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Team_Member.php:500, ../includes/Elements/Testimonial.php:434, ../includes/Elements/Tooltip.php:429, ../includes/Elements/Tooltip.php:472, ../includes/Elements/Twitter_Feed.php:437, ../includes/Elements/Twitter_Feed.php:527, ../includes/Elements/Twitter_Feed.php:844, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:498, ../includes/Traits/Controls.php:1210, ../includes/Traits/Controls.php:1264, ../includes/Traits/Controls.php:1394
|
619 |
msgid "Border"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../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:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:353, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:876, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1055, ../includes/Elements/Filterable_Gallery.php:1135, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:1833, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2323, ../includes/Elements/Filterable_Gallery.php:2419, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:361, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:906, ../includes/Elements/Product_Grid.php:1913, ../includes/Elements/Product_Grid.php:2269, ../includes/Elements/Product_Grid.php:2606, ../includes/Elements/Product_Grid.php:2801, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Team_Member.php:766, ../includes/Elements/Testimonial.php:453, ../includes/Elements/Tooltip.php:489, ../includes/Elements/Twitter_Feed.php:445, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:521, ../includes/Extensions/Table_of_Content.php:736, ../includes/Traits/Controls.php:1218, ../includes/Traits/Controls.php:1272, ../includes/Traits/Controls.php:1402, ../includes/Traits/Woo_Product_Comparable.php:355, ../includes/Traits/Woo_Product_Comparable.php:500, ../includes/Traits/Woo_Product_Comparable.php:1381
|
623 |
msgid "Border Radius"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:866, ../includes/Elements/Product_Grid.php:894, ../includes/Elements/Product_Grid.php:2825, ../includes/Elements/Product_Grid.php:2860, ../includes/Elements/Progress_Bar.php:650, ../includes/Elements/Twitter_Feed.php:640, ../includes/Elements/Twitter_Feed.php:852, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1405
|
627 |
msgid "Box Shadow"
|
628 |
msgstr ""
|
629 |
|
631 |
msgid "Head"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../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:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:2329, ../includes/Elements/Product_Grid.php:2359, ../includes/Elements/Product_Grid.php:2401, ../includes/Elements/Product_Grid.php:2467, ../includes/Elements/Product_Grid.php:2506, ../includes/Elements/Product_Grid.php:2563, ../includes/Elements/Product_Grid.php:2680, ../includes/Elements/Progress_Bar.php:670, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../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:1064, ../includes/Traits/Woo_Product_Comparable.php:1182
|
635 |
msgid "Typography"
|
636 |
msgstr ""
|
637 |
|
639 |
msgid "Text Alignment"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:189, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/Filterable_Gallery.php:1296, ../includes/Elements/Filterable_Gallery.php:1679, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:108, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:658, ../includes/Elements/Product_Grid.php:976, ../includes/Elements/Product_Grid.php:1647, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Progress_Bar.php:319, ../includes/Elements/Progress_Bar.php:530, ../includes/Elements/Team_Member.php:379, ../includes/Elements/Testimonial.php:313, ../includes/Elements/Tooltip.php:175, ../includes/Elements/Tooltip.php:281, ../includes/Elements/Tooltip.php:370, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:415, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
|
643 |
msgid "Left"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:586, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:112, ../includes/Elements/Image_Accordion.php:135, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:662, ../includes/Elements/Product_Grid.php:980, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Progress_Bar.php:323, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Team_Member.php:383, ../includes/Elements/Testimonial.php:317, ../includes/Elements/Tooltip.php:179, ../includes/Elements/Tooltip.php:374, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:596, ../includes/Traits/Controls.php:1487
|
647 |
msgid "Center"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:116, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:666, ../includes/Elements/Product_Grid.php:984, ../includes/Elements/Product_Grid.php:1651, ../includes/Elements/Product_Grid.php:2098, ../includes/Elements/Progress_Bar.php:327, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Team_Member.php:387, ../includes/Elements/Testimonial.php:321, ../includes/Elements/Tooltip.php:183, ../includes/Elements/Tooltip.php:282, ../includes/Elements/Tooltip.php:378, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:416, ../includes/Traits/Controls.php:595, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
|
651 |
msgid "Right"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../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:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:2497, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Product_Grid.php:2182, ../includes/Elements/Product_Grid.php:2226, ../includes/Elements/Tooltip.php:408, ../includes/Elements/Tooltip.php:451, ../includes/Elements/Tooltip.php:624, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:579, ../includes/Extensions/Table_of_Content.php:894, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:943, ../includes/Traits/Controls.php:1184, ../includes/Traits/Controls.php:1239, ../includes/Traits/Controls.php:1369, ../includes/Traits/Controls.php:1431
|
655 |
msgid "Text Color"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../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:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../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:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:308, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1370, ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2481, ../includes/Elements/Filterable_Gallery.php:2674, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:316, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Product_Grid.php:1864, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2156, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Product_Grid.php:2238, ../includes/Elements/Product_Grid.php:2484, ../includes/Elements/Product_Grid.php:2526, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2638, ../includes/Elements/Progress_Bar.php:576, ../includes/Elements/Team_Member.php:730, ../includes/Elements/Tooltip.php:397, ../includes/Elements/Tooltip.php:440, ../includes/Elements/Tooltip.php:613, ../includes/Elements/Twitter_Feed.php:390, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:566, ../includes/Extensions/Table_of_Content.php:712, ../includes/Extensions/Table_of_Content.php:776, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1443, ../includes/Traits/Woo_Product_Comparable.php:367, ../includes/Traits/Woo_Product_Comparable.php:473
|
659 |
msgid "Background Color"
|
660 |
msgstr ""
|
661 |
|
663 |
msgid "Cell Border"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:320, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1192, ../includes/Elements/Filterable_Gallery.php:1536, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2598, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:328, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:769, ../includes/Elements/Product_Grid.php:1020, ../includes/Elements/Product_Grid.php:1418, ../includes/Elements/Team_Member.php:486, ../includes/Elements/Testimonial.php:420, ../includes/Elements/Tooltip.php:342, ../includes/Elements/Tooltip.php:591, ../includes/Elements/Twitter_Feed.php:420, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Twitter_Feed.php:512, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:601, ../includes/Extensions/Table_of_Content.php:789, ../includes/Traits/Controls.php:1288, ../includes/Traits/Controls.php:1333, ../includes/Traits/Woo_Product_Comparable.php:339, ../includes/Traits/Woo_Product_Comparable.php:984, ../includes/Traits/Woo_Product_Comparable.php:1133, ../includes/Traits/Woo_Product_Comparable.php:1601
|
667 |
msgid "Padding"
|
668 |
msgstr ""
|
669 |
|
719 |
msgid "Margin Bottom"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:654, ../includes/Elements/Product_Grid.php:972, ../includes/Elements/Product_Grid.php:1643, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Progress_Bar.php:315, ../includes/Elements/Progress_Bar.php:526, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133
|
723 |
msgid "Alignment"
|
724 |
msgstr ""
|
725 |
|
727 |
msgid "Margin"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../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:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:951, ../includes/Elements/Filterable_Gallery.php:1716, ../includes/Elements/Filterable_Gallery.php:2470, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:824, ../includes/Elements/Product_Grid.php:1455, ../includes/Elements/Product_Grid.php:1846, ../includes/Elements/Product_Grid.php:2139, ../includes/Elements/Product_Grid.php:2570, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:393, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:887, ../includes/Traits/Controls.php:1177, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:825, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1629
|
731 |
msgid "Normal"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../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:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2663, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:874, ../includes/Elements/Product_Grid.php:1524, ../includes/Elements/Product_Grid.php:1953, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2621, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:436, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1426, ../includes/Traits/Woo_Product_Comparable.php:925, ../includes/Traits/Woo_Product_Comparable.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1679
|
735 |
msgid "Hover"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../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:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:468, ../includes/Elements/Dual_Color_Header.php:541, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1213, ../includes/Elements/Filterable_Gallery.php:1253, ../includes/Elements/Filterable_Gallery.php:1575, ../includes/Elements/Filterable_Gallery.php:1590, ../includes/Elements/Filterable_Gallery.php:1635, ../includes/Elements/Filterable_Gallery.php:1650, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:1873, ../includes/Elements/Filterable_Gallery.php:1949, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2028, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2352, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:495, ../includes/Elements/Image_Accordion.php:524, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:1283, ../includes/Elements/Product_Grid.php:1851, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Product_Grid.php:2295, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2514, ../includes/Elements/Product_Grid.php:2575, ../includes/Elements/Product_Grid.php:2626, ../includes/Elements/Product_Grid.php:2779, ../includes/Elements/Progress_Bar.php:405, ../includes/Elements/Progress_Bar.php:465, ../includes/Elements/Twitter_Feed.php:671, ../includes/Elements/Twitter_Feed.php:700, ../includes/Elements/Twitter_Feed.php:730, ../includes/Elements/Twitter_Feed.php:900, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046, ../includes/Traits/Woo_Product_Comparable.php:47, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1359, ../includes/Traits/Woo_Product_Comparable.php:1471
|
739 |
msgid "Color"
|
740 |
msgstr ""
|
741 |
|
839 |
msgid "Content Type"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Image_Accordion.php:207, ../includes/Elements/Image_Accordion.php:515, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:2391, ../includes/Elements/Tooltip.php:94, ../includes/Elements/Tooltip.php:266
|
843 |
msgid "Content"
|
844 |
msgstr ""
|
845 |
|
879 |
msgid "Tab Style"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:395, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1771, ../includes/Elements/Filterable_Gallery.php:2125, ../includes/Elements/Filterable_Gallery.php:2558, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:1233, ../includes/Elements/Product_Grid.php:2727, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1332
|
883 |
msgid "Icon Size"
|
884 |
msgstr ""
|
885 |
|
895 |
msgid "Icon Color"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:2221, ../includes/Extensions/Table_of_Content.php:936
|
899 |
msgid "Active"
|
900 |
msgstr ""
|
901 |
|
919 |
msgid "Caret Color"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:167, ../includes/Elements/Product_Grid.php:226, ../includes/Elements/Product_Grid.php:419, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:115, ../includes/Traits/Controls.php:402, ../includes/Traits/Controls.php:531, ../includes/Traits/Controls.php:591
|
923 |
msgid "Layout"
|
924 |
msgstr ""
|
925 |
|
1019 |
msgid "Show Icon"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: ../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:1302, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:520, ../includes/Elements/Product_Grid.php:622, ../includes/Elements/Product_Grid.php:1447, ../includes/Elements/Product_Grid.php:2037, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:562, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:654, ../includes/Traits/Controls.php:762, ../includes/Traits/Controls.php:810, ../includes/Traits/Controls.php:878, ../includes/Traits/Controls.php:913, ../includes/Traits/Controls.php:944, ../includes/Traits/Controls.php:995, ../includes/Traits/Controls.php:1023, ../includes/Traits/Controls.php:1039, ../includes/Traits/Controls.php:1054
|
1023 |
msgid "Show"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: ../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:1303, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:273, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:521, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:1448, ../includes/Elements/Product_Grid.php:2038, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:369, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:563, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:655, ../includes/Traits/Controls.php:763, ../includes/Traits/Controls.php:811, ../includes/Traits/Controls.php:879, ../includes/Traits/Controls.php:914, ../includes/Traits/Controls.php:945, ../includes/Traits/Controls.php:996, ../includes/Traits/Controls.php:1024, ../includes/Traits/Controls.php:1040, ../includes/Traits/Controls.php:1055
|
1027 |
msgid "Hide"
|
1028 |
msgstr ""
|
1029 |
|
1079 |
msgid "Spacing"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../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:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:196, ../includes/Elements/Image_Accordion.php:486, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:2320, ../includes/Elements/Progress_Bar.php:120, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Woo_Checkout.php:323, ../includes/Elements/Woo_Checkout.php:433, ../includes/Elements/Woo_Checkout.php:527, ../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:39, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1070, ../includes/Traits/Woo_Product_Comparable.php:1188
|
1083 |
msgid "Title"
|
1084 |
msgstr ""
|
1085 |
|
1103 |
msgid "File Not Found"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:2933
|
1107 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1108 |
msgstr ""
|
1109 |
|
1111 |
msgid "Layout Mode"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:304, ../includes/Elements/Filterable_Gallery.php:143, ../includes/Elements/Product_Grid.php:230, ../includes/Traits/Controls.php:535
|
1115 |
msgid "Grid"
|
1116 |
msgstr ""
|
1117 |
|
1119 |
msgid "Fit to Screen"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:144, ../includes/Elements/Product_Grid.php:232, ../includes/Elements/Twitter_Feed.php:148, ../includes/Traits/Controls.php:536
|
1123 |
msgid "Masonry"
|
1124 |
msgstr ""
|
1125 |
|
1159 |
msgid "Ticker Background"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:376, ../includes/Elements/Product_Grid.php:231, ../includes/Elements/Twitter_Feed.php:147, ../includes/Extensions/Table_of_Content.php:801
|
1163 |
msgid "List"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1225, ../includes/Elements/Filterable_Gallery.php:1605, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:2707, ../includes/Elements/Twitter_Feed.php:742
|
1167 |
msgid "Hover Color"
|
1168 |
msgstr ""
|
1169 |
|
1235 |
msgid "Close Icon"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1363, ../includes/Elements/Content_Ticker.php:720, ../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:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:739, ../includes/Elements/Product_Grid.php:879, ../includes/Elements/Product_Grid.php:1573, ../includes/Elements/Product_Grid.php:1817, ../includes/Elements/Product_Grid.php:1997, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Product_Grid.php:2538, ../includes/Elements/Product_Grid.php:2650, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1455, ../includes/Traits/Woo_Product_Comparable.php:1710
|
1239 |
msgid "Border Color"
|
1240 |
msgstr ""
|
1241 |
|
1303 |
msgid "Form Alignment"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:225, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:79, ../includes/Elements/Flip_Box.php:871, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:430, ../includes/Elements/Login_Register.php:527, ../includes/Elements/Login_Register.php:1039, ../includes/Elements/Login_Register.php:1395, ../includes/Elements/Login_Register.php:1521, ../includes/Elements/Login_Register.php:1778, ../includes/Elements/Login_Register.php:1922, ../includes/Elements/Login_Register.php:2072, ../includes/Elements/Login_Register.php:2215, ../includes/Elements/Login_Register.php:2306, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2606, ../includes/Elements/Login_Register.php:2651, ../includes/Elements/Login_Register.php:2683, ../includes/Elements/Login_Register.php:2917, ../includes/Elements/Login_Register.php:3079, ../includes/Elements/Login_Register.php:3378, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:244, ../includes/Elements/Team_Member.php:375, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:309, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:551, ../includes/Traits/Controls.php:1525, ../includes/Traits/Login_Registration.php:571, ../includes/Traits/Woo_Product_Comparable.php:406, ../includes/Traits/Woo_Product_Comparable.php:520, ../includes/Traits/Woo_Product_Comparable.php:611, ../includes/Traits/Woo_Product_Comparable.php:680, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:4, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
|
1307 |
msgid "Default"
|
1308 |
msgstr ""
|
1309 |
|
1443 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../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:741, ../includes/Elements/Dual_Color_Header.php:821, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2050, ../includes/Elements/Filterable_Gallery.php:2269, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:1475, ../includes/Elements/Product_Grid.php:1489, ../includes/Elements/Product_Grid.php:1543, ../includes/Elements/Product_Grid.php:1556, ../includes/Elements/Product_Grid.php:2790, ../includes/Elements/Product_Grid.php:2847, ../includes/Elements/Progress_Bar.php:343, ../includes/Elements/Team_Member.php:745, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Twitter_Feed.php:378, ../includes/Elements/Twitter_Feed.php:630, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Traits/Controls.php:1197, ../includes/Traits/Controls.php:1251, ../includes/Traits/Woo_Product_Comparable.php:1370, ../includes/Traits/Woo_Product_Comparable.php:1649, ../includes/Traits/Woo_Product_Comparable.php:1698
|
1447 |
msgid "Background"
|
1448 |
msgstr ""
|
1449 |
|
1491 |
msgid "After Submit Feedback"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:1432, ../includes/Traits/Woo_Product_Comparable.php:1615
|
1495 |
msgid "Radius"
|
1496 |
msgstr ""
|
1497 |
|
1503 |
msgid "Template Layout"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:334, ../includes/Elements/Progress_Bar.php:158, ../includes/Traits/Controls.php:30
|
1507 |
msgid "Dynamic"
|
1508 |
msgstr ""
|
1509 |
|
1811 |
msgid "Space Below Container"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:1120, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:655
|
1815 |
msgid "Color & Typography"
|
1816 |
msgstr ""
|
1817 |
|
1843 |
msgid "Title Style"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:2337, ../includes/Elements/Product_Grid.php:2687, ../includes/Elements/Progress_Bar.php:688, ../includes/Elements/Twitter_Feed.php:567, ../includes/Elements/Woo_Checkout.php:2165, ../includes/Traits/Woo_Product_Comparable.php:1005, ../includes/Traits/Woo_Product_Comparable.php:1236
|
1847 |
msgid "Title Color"
|
1848 |
msgstr ""
|
1849 |
|
1947 |
msgid "Shikoba (Pro)"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: ../includes/Elements/Creative_Button.php:248, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:1445, ../includes/Elements/Team_Member.php:702
|
1951 |
msgid "Use Gradient Background"
|
1952 |
msgstr ""
|
1953 |
|
2511 |
msgid "Time"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: ../includes/Elements/Event_Calendar.php:1044, ../includes/Elements/Event_Calendar.php:1378, ../includes/Elements/Facebook_Feed.php:899, ../includes/Elements/Product_Grid.php:140
|
2515 |
msgid "Date"
|
2516 |
msgstr ""
|
2517 |
|
2543 |
msgid "Date Icon"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Info_Box.php:1465, ../includes/Elements/Product_Grid.php:2409, ../includes/Elements/Product_Grid.php:2697, ../includes/Elements/Twitter_Feed.php:577
|
2547 |
msgid "Content Color"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:2718, ../includes/Traits/Woo_Product_Comparable.php:1323
|
2551 |
msgid " Close Button"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: ../includes/Elements/Event_Calendar.php:1510, ../includes/Elements/Product_Grid.php:2753, ../includes/Extensions/Table_of_Content.php:676
|
2555 |
msgid "Button Size"
|
2556 |
msgstr ""
|
2557 |
|
2627 |
msgid "Overlay"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: ../includes/Elements/Facebook_Feed.php:181, ../includes/Elements/Filterable_Gallery.php:118, ../includes/Elements/Product_Grid.php:280, ../includes/Elements/Product_Grid.php:302, ../includes/Traits/Woo_Product_Comparable.php:840
|
2631 |
msgid "Columns"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: ../includes/Elements/Facebook_Feed.php:185, ../includes/Elements/Product_Grid.php:284, ../includes/Elements/Product_Grid.php:306, ../includes/Elements/Testimonial.php:194, ../includes/Traits/Controls.php:516, ../includes/Traits/Controls.php:975
|
2635 |
msgid "1"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: ../includes/Elements/Facebook_Feed.php:186, ../includes/Elements/Product_Grid.php:285, ../includes/Elements/Product_Grid.php:307, ../includes/Elements/Testimonial.php:195, ../includes/Traits/Controls.php:517, ../includes/Traits/Controls.php:976
|
2639 |
msgid "2"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: ../includes/Elements/Facebook_Feed.php:187, ../includes/Elements/Product_Grid.php:286, ../includes/Elements/Testimonial.php:196, ../includes/Traits/Controls.php:518, ../includes/Traits/Controls.php:977
|
2643 |
msgid "3"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: ../includes/Elements/Facebook_Feed.php:188, ../includes/Elements/Product_Grid.php:287, ../includes/Elements/Testimonial.php:197, ../includes/Traits/Controls.php:519
|
2647 |
msgid "4"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: ../includes/Elements/Facebook_Feed.php:189, ../includes/Elements/Filterable_Gallery.php:515, ../includes/Elements/Product_Grid.php:288, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Controls.php:520
|
2651 |
msgid "5"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: ../includes/Elements/Facebook_Feed.php:190, ../includes/Elements/Product_Grid.php:289, ../includes/Traits/Controls.php:521
|
2655 |
msgid "6"
|
2656 |
msgstr ""
|
2657 |
|
2703 |
msgid "Show Preview Description"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: ../includes/Elements/Facebook_Feed.php:373, ../includes/Elements/Product_Grid.php:620, ../includes/Traits/Controls.php:622
|
2707 |
msgid "Show Load More"
|
2708 |
msgstr ""
|
2709 |
|
2711 |
msgid "Label"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:599, ../includes/Elements/Product_Grid.php:632, ../includes/Traits/Controls.php:638
|
2715 |
msgid "Load More"
|
2716 |
msgstr ""
|
2717 |
|
3091 |
msgid "Media"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:1669, ../includes/Traits/Woo_Product_Comparable.php:866
|
3095 |
msgid "Buttons"
|
3096 |
msgstr ""
|
3097 |
|
3371 |
msgid "Dropdown"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Product_Grid.php:2112, ../includes/Elements/Woo_Checkout.php:701, ../includes/Elements/Woo_Checkout.php:1014, ../includes/Elements/Woo_Checkout.php:1123, ../includes/Elements/Woo_Checkout.php:2529
|
3375 |
msgid "Top Spacing"
|
3376 |
msgstr ""
|
3377 |
|
3627 |
msgid "Border Height"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:138, ../includes/Elements/Product_Grid.php:2349, ../includes/Elements/Woo_Checkout.php:216, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:79
|
3631 |
msgid "Price"
|
3632 |
msgstr ""
|
3633 |
|
3635 |
msgid "Price Label Color"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:2367
|
3639 |
msgid "Price Color"
|
3640 |
msgstr ""
|
3641 |
|
4850 |
msgid "Target Blank"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: ../includes/Elements/Post_Grid.php:178, ../includes/Elements/Product_Grid.php:586, ../includes/Traits/Controls.php:895, ../includes/Traits/Controls.php:929
|
4854 |
msgid "Read More"
|
4855 |
msgstr ""
|
4856 |
|
5030 |
msgid "Date Text Color"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: ../includes/Elements/Post_Timeline.php:464, ../includes/Elements/Product_Grid.php:2936
|
5034 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5035 |
msgstr ""
|
5036 |
|
5310 |
msgid "Button Gradient Background"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: ../includes/Elements/Product_Grid.php:136
|
5314 |
msgid "Product ID"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
+
#: ../includes/Elements/Product_Grid.php:137, ../includes/Elements/Product_Grid.php:1128
|
5318 |
msgid "Product Title"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
#: ../includes/Elements/Product_Grid.php:139, ../includes/Elements/Product_Grid.php:2670, ../includes/Traits/Woo_Product_Comparable.php:43, ../includes/Traits/Woo_Product_Comparable.php:91
|
5322 |
msgid "SKU"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: ../includes/Elements/Product_Grid.php:141
|
5326 |
msgid "Last Modified Date"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: ../includes/Elements/Product_Grid.php:142
|
5330 |
msgid "Parent Id"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: ../includes/Elements/Product_Grid.php:143
|
5334 |
msgid "Random"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: ../includes/Elements/Product_Grid.php:144
|
5338 |
msgid "Menu Order"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: ../includes/Elements/Product_Grid.php:151
|
5342 |
msgid "Recent Products"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: ../includes/Elements/Product_Grid.php:152
|
5346 |
msgid "Featured Products"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: ../includes/Elements/Product_Grid.php:153
|
5350 |
msgid "Best Selling Products"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: ../includes/Elements/Product_Grid.php:154
|
5354 |
msgid "Sale Products"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: ../includes/Elements/Product_Grid.php:155
|
5358 |
msgid "Top Rated Products"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: ../includes/Elements/Product_Grid.php:220
|
5362 |
msgid "Layouts"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: ../includes/Elements/Product_Grid.php:240, ../includes/Elements/Product_Grid.php:262, ../includes/Elements/Product_Grid.php:1626, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Team_Member.php:279
|
5366 |
msgid "Style Preset"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: ../includes/Elements/Product_Grid.php:245, ../includes/Elements/Team_Member.php:268
|
5370 |
msgid "Simple Style"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: ../includes/Elements/Product_Grid.php:246
|
5374 |
msgid "Reveal Style"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: ../includes/Elements/Product_Grid.php:247, ../includes/Elements/Team_Member.php:269
|
5378 |
msgid "Overlay Style"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: ../includes/Elements/Product_Grid.php:248, ../includes/Elements/Product_Grid.php:1634, ../includes/Traits/Controls.php:423
|
5382 |
msgid "Preset 5"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: ../includes/Elements/Product_Grid.php:249
|
5386 |
msgid "Preset 6"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: ../includes/Elements/Product_Grid.php:250
|
5390 |
msgid "Preset 7"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: ../includes/Elements/Product_Grid.php:251
|
5394 |
msgid "Preset 8"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: ../includes/Elements/Product_Grid.php:266, ../includes/Elements/Product_Grid.php:1630, ../includes/Elements/Product_Grid.php:1711, ../includes/Traits/Controls.php:419
|
5398 |
msgid "Preset 1"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: ../includes/Elements/Product_Grid.php:267, ../includes/Elements/Product_Grid.php:1631, ../includes/Elements/Product_Grid.php:1712, ../includes/Traits/Controls.php:420
|
5402 |
msgid "Preset 2"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Product_Grid.php:1632, ../includes/Traits/Controls.php:421
|
5406 |
msgid "Preset 3"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
+
#: ../includes/Elements/Product_Grid.php:269, ../includes/Elements/Product_Grid.php:1633, ../includes/Traits/Controls.php:422
|
5410 |
msgid "Preset 4"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: ../includes/Elements/Product_Grid.php:323
|
5414 |
msgid "Product Settings"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: ../includes/Elements/Product_Grid.php:333, ../includes/Elements/Product_Grid.php:646, ../includes/Traits/Woo_Product_Comparable.php:152
|
5418 |
msgid "Products"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
+
#: ../includes/Elements/Product_Grid.php:343, ../includes/Traits/Controls.php:78
|
5422 |
msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: ../includes/Elements/Product_Grid.php:356, ../includes/Elements/Woo_Checkout.php:92, ../includes/Traits/Woo_Product_Comparable.php:123
|
5426 |
msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: ../includes/Elements/Product_Grid.php:363
|
5430 |
msgid "Filter By"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: ../includes/Elements/Product_Grid.php:373, ../includes/Traits/Controls.php:171, ../includes/Traits/Controls.php:298, ../includes/Traits/Controls.php:349
|
5434 |
msgid "Order By"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: ../includes/Elements/Product_Grid.php:381, ../includes/Traits/Controls.php:182, ../includes/Traits/Controls.php:316, ../includes/Traits/Controls.php:359
|
5438 |
msgid "Order"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: ../includes/Elements/Product_Grid.php:392
|
5442 |
msgid "Products Count"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: ../includes/Elements/Product_Grid.php:401, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:289, ../includes/Traits/Controls.php:1565, ../includes/Traits/Controls.php:1604, ../includes/Traits/Controls.php:1667, ../includes/Traits/Controls.php:1705
|
5446 |
msgid "Offset"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: ../includes/Elements/Product_Grid.php:407
|
5450 |
msgid "Product Categories"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: ../includes/Elements/Product_Grid.php:427
|
5454 |
msgid "Show Product Rating?"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: ../includes/Elements/Product_Grid.php:440
|
5458 |
msgid "Show Product Price?"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: ../includes/Elements/Product_Grid.php:452
|
5462 |
msgid "Short Description?"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
+
#: ../includes/Elements/Product_Grid.php:464, ../includes/Traits/Controls.php:849, ../includes/Traits/Controls.php:821
|
5466 |
msgid "Excerpt Words"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: ../includes/Elements/Product_Grid.php:477
|
5470 |
msgid "Expansion Indicator"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: ../includes/Elements/Product_Grid.php:499, ../includes/Traits/Woo_Product_Comparable.php:146
|
5474 |
msgid "Show Product Compare?"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: ../includes/Elements/Product_Grid.php:511
|
5478 |
msgid "Add To Cart"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: ../includes/Elements/Product_Grid.php:518
|
5482 |
msgid "Show Add to cart custom text"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: ../includes/Elements/Product_Grid.php:530
|
5486 |
msgid "Simple Product"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: ../includes/Elements/Product_Grid.php:534, ../includes/Elements/Product_Grid.php:573
|
5490 |
msgid "Buy Now"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: ../includes/Elements/Product_Grid.php:543
|
5494 |
msgid "Variable Product"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: ../includes/Elements/Product_Grid.php:547
|
5498 |
msgid "Select options"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: ../includes/Elements/Product_Grid.php:556
|
5502 |
msgid "Grouped Product"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: ../includes/Elements/Product_Grid.php:560
|
5506 |
msgid "View products"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: ../includes/Elements/Product_Grid.php:569
|
5510 |
msgid "External Product"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: ../includes/Elements/Product_Grid.php:582
|
5514 |
msgid "Default Product"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: ../includes/Elements/Product_Grid.php:629, ../includes/Traits/Controls.php:634, ../includes/Traits/Controls.php:891
|
5518 |
msgid "Label Text"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Team_Member.php:358
|
5522 |
msgid "Content Background Color"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: ../includes/Elements/Product_Grid.php:919
|
5526 |
msgid "Image Width(%)"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: ../includes/Elements/Product_Grid.php:939
|
5530 |
msgid "Product Details"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: ../includes/Elements/Product_Grid.php:1073
|
5534 |
msgid "Padding (PX)"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: ../includes/Elements/Product_Grid.php:1095
|
5538 |
msgid "Width (%)"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: ../includes/Elements/Product_Grid.php:1136
|
5542 |
msgid "Product Title Color"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: ../includes/Elements/Product_Grid.php:1156
|
5546 |
msgid "Product Price"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: ../includes/Elements/Product_Grid.php:1164
|
5550 |
msgid "Product Price Color"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: ../includes/Elements/Product_Grid.php:1184
|
5554 |
msgid "Star Rating"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: ../includes/Elements/Product_Grid.php:1192
|
5558 |
msgid "Rating Color"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: ../includes/Elements/Product_Grid.php:1271
|
5562 |
msgid "Product Description"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: ../includes/Elements/Product_Grid.php:1311
|
5566 |
msgid "Sale Badge"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: ../includes/Elements/Product_Grid.php:1319
|
5570 |
msgid "Sale Badge Color"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: ../includes/Elements/Product_Grid.php:1331
|
5574 |
msgid "Sale Badge Background"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: ../includes/Elements/Product_Grid.php:1354
|
5578 |
msgid "Stock Out Badge"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: ../includes/Elements/Product_Grid.php:1362
|
5582 |
msgid "Stock Out Badge Color"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: ../includes/Elements/Product_Grid.php:1374
|
5586 |
msgid "Stock Out Badge Background"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: ../includes/Elements/Product_Grid.php:1401
|
5590 |
msgid "Add to Cart Button Styles"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
+
#: ../includes/Elements/Product_Grid.php:1460, ../includes/Elements/Product_Grid.php:1529
|
5594 |
msgid "Button Color"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
+
#: ../includes/Elements/Product_Grid.php:1596
|
5598 |
msgid "Sale / Stock Out Badge"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: ../includes/Elements/Product_Grid.php:1696
|
5602 |
msgid "Show Quick view?"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: ../includes/Elements/Product_Grid.php:1786
|
5606 |
msgid "Icons Size"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: ../includes/Elements/Product_Grid.php:2035
|
5610 |
msgid "Show pagination"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: ../includes/Elements/Product_Grid.php:2047
|
5614 |
msgid "Previous Label"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: ../includes/Elements/Product_Grid.php:2048
|
5618 |
msgid "←"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: ../includes/Elements/Product_Grid.php:2058
|
5622 |
msgid "Next Label"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: ../includes/Elements/Product_Grid.php:2059
|
5626 |
msgid "→"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: ../includes/Elements/Product_Grid.php:2286
|
5630 |
msgid "Loader"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: ../includes/Elements/Product_Grid.php:2312
|
5634 |
msgid "Popup"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: ../includes/Elements/Product_Grid.php:2379
|
5638 |
msgid "Sale Price Color"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: ../includes/Elements/Product_Grid.php:2421
|
5642 |
msgid "Review Link Color"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: ../includes/Elements/Product_Grid.php:2432
|
5646 |
msgid "Review Link Hover"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: ../includes/Elements/Product_Grid.php:2457
|
5650 |
msgid "Sale"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: ../includes/Elements/Product_Grid.php:2496, ../includes/Elements/Woo_Checkout.php:199
|
5654 |
msgid "Quantity"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
+
#: ../includes/Elements/Product_Grid.php:2553
|
5658 |
msgid "Cart Button"
|
5659 |
msgstr ""
|
5660 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: wpdevteam, Codetic, re_enter_rupok, Asif2BD, priyomukul, mahfuz01, nazsabuz, manzurahammed
|
3 |
Tags: elementor, elements, addons, elementor addon, elementor widget, elementor form, woocommerce elementor, page builder, builder, visual editor, wordpress page builder
|
4 |
Requires at least: 5.0
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 4.5.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -227,6 +227,14 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
227 |
|
228 |
== Changelog ==
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
= 4.5.2 - 03/03/2021 =
|
231 |
|
232 |
- Added: Dynamic query option for EA Woo Product Grid
|
2 |
Contributors: wpdevteam, Codetic, re_enter_rupok, Asif2BD, priyomukul, mahfuz01, nazsabuz, manzurahammed
|
3 |
Tags: elementor, elements, addons, elementor addon, elementor widget, elementor form, woocommerce elementor, page builder, builder, visual editor, wordpress page builder
|
4 |
Requires at least: 5.0
|
5 |
+
Tested up to: 5.7
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 4.5.3
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
227 |
|
228 |
== Changelog ==
|
229 |
|
230 |
+
= 4.5.3 - 10/03/2021 =
|
231 |
+
|
232 |
+
- Fixed: EA Typeform | Redirect Issue while connecting your account
|
233 |
+
- Fixed: EA Image Accordion | Enable Title Link is not working properly
|
234 |
+
- Fixed: EA Woo Product Grid | HTML tags are not working on Product Title
|
235 |
+
- Fixed: EA Twitter Feed | Throws PHP Warning
|
236 |
+
- Few minor bug fix and improvements
|
237 |
+
|
238 |
= 4.5.2 - 03/03/2021 =
|
239 |
|
240 |
- Added: Dynamic query option for EA Woo Product Grid
|