Elementor Essential Addons - Version 4.3.9

Version Description

  • 23/12/2020 =
  • Fixed: Custom JS not working after first reload
  • Fixed: EA Advanced Data Table | sorting not working for nested elements in table header
  • Fixed: Missing Background color option for EA Testimonial
  • Fixed: EA Pricing Table | Style 5 Ribbon Text color not changing
  • Fixed: EA Info box | Dynamic tags not working
  • Few minor bug fix and improvements
Download this release

Release Info

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

Code changes from version 4.3.8 to 4.3.9

assets/front-end/js/view/advanced-data-table.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar advancedDataTable = /*#__PURE__*/function () {\n function advancedDataTable() {\n _classCallCheck(this, advancedDataTable);\n\n // register hooks\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-advanced-data-table.default\", this.initFrontend.bind(this));\n } // init frontend features\n\n\n _createClass(advancedDataTable, [{\n key: \"initFrontend\",\n value: function initFrontend($scope, $) {\n var table = $scope[0].querySelector(\".ea-advanced-data-table\");\n var search = $scope[0].querySelector(\".ea-advanced-data-table-search\");\n var pagination = $scope[0].querySelector(\".ea-advanced-data-table-pagination\");\n var classCollection = {};\n\n if (!ea.isEditMode && table !== null) {\n // search\n this.initTableSearch(table, search, pagination); // sort\n\n this.initTableSort(table, pagination, classCollection); // paginated table\n\n this.initTablePagination(table, pagination, classCollection); // woocommerce\n\n this.initWooFeatures(table);\n }\n } // frontend - search\n\n }, {\n key: \"initTableSearch\",\n value: function initTableSearch(table, search, pagination) {\n if (search) {\n search.addEventListener(\"input\", function (e) {\n var input = e.target.value.toLowerCase();\n var hasSort = table.classList.contains(\"ea-advanced-data-table-sortable\");\n var offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n\n if (table.rows.length > 1) {\n if (input.length > 0) {\n if (hasSort) {\n table.classList.add(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"none\";\n }\n\n for (var i = offset; i < table.rows.length; i++) {\n var matchFound = false;\n\n if (table.rows[i].cells.length > 0) {\n for (var j = 0; j < table.rows[i].cells.length; j++) {\n if (table.rows[i].cells[j].textContent.toLowerCase().indexOf(input) > -1) {\n matchFound = true;\n break;\n }\n }\n }\n\n if (matchFound) {\n table.rows[i].style.display = \"table-row\";\n } else {\n table.rows[i].style.display = \"none\";\n }\n }\n } else {\n if (hasSort) {\n table.classList.remove(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n var startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i = 1; _i <= table.rows.length - 1; _i++) {\n if (_i >= startIndex && _i <= endIndex) {\n table.rows[_i].style.display = \"table-row\";\n } else {\n table.rows[_i].style.display = \"none\";\n }\n }\n } else {\n for (var _i2 = 1; _i2 <= table.rows.length - 1; _i2++) {\n table.rows[_i2].style.display = \"table-row\";\n }\n }\n }\n }\n });\n }\n } // frontend - sort\n\n }, {\n key: \"initTableSort\",\n value: function initTableSort(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-sortable\")) {\n table.addEventListener(\"click\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n var index = e.target.cellIndex;\n var currentPage = 1;\n var startIndex = 1;\n var endIndex = table.rows.length - 1;\n var sort = \"\";\n var classList = e.target.classList;\n var collection = [];\n var origTable = table.cloneNode(true);\n\n if (classList.contains(\"asc\")) {\n e.target.classList.remove(\"asc\");\n e.target.classList.add(\"desc\");\n sort = \"desc\";\n } else if (classList.contains(\"desc\")) {\n e.target.classList.remove(\"desc\");\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n } else {\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n endIndex = endIndex - (currentPage - 1) * table.dataset.itemsPerPage >= table.dataset.itemsPerPage ? currentPage * table.dataset.itemsPerPage : endIndex;\n } // collect header class\n\n\n classCollection[currentPage] = [];\n table.querySelectorAll(\"th\").forEach(function (el) {\n if (el.cellIndex != index) {\n el.classList.remove(\"asc\", \"desc\");\n }\n\n classCollection[currentPage].push(el.classList.contains(\"asc\") ? \"asc\" : el.classList.contains(\"desc\") ? \"desc\" : \"\");\n }); // collect table cells value\n\n for (var i = startIndex; i <= endIndex; i++) {\n var value = void 0;\n var cell = table.rows[i].cells[index];\n\n if (isNaN(parseInt(cell.innerText))) {\n value = cell.innerText.toLowerCase();\n } else {\n value = parseInt(cell.innerText);\n }\n\n collection.push({\n index: i,\n value: value\n });\n } // sort collection array\n\n\n if (sort == \"asc\") {\n collection.sort(function (x, y) {\n return x.value > y.value ? 1 : -1;\n });\n } else if (sort == \"desc\") {\n collection.sort(function (x, y) {\n return x.value < y.value ? 1 : -1;\n });\n } // sort table\n\n\n collection.forEach(function (row, index) {\n table.rows[startIndex + index].innerHTML = origTable.rows[row.index].innerHTML;\n });\n }\n });\n }\n } // frontend - pagination\n\n }, {\n key: \"initTablePagination\",\n value: function initTablePagination(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-paginated\")) {\n var paginationHTML = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = 1;\n var startIndex = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n var maxPages = Math.ceil((table.rows.length - 1) / table.dataset.itemsPerPage); // insert pagination\n\n if (maxPages > 1) {\n if (paginationType == \"button\") {\n for (var i = 1; i <= maxPages; i++) {\n paginationHTML += \"<a href=\\\"#\\\" data-page=\\\"\".concat(i, \"\\\" class=\\\"\").concat(i == 1 ? \"ea-advanced-data-table-pagination-current\" : \"\", \"\\\">\").concat(i, \"</a>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<a href=\\\"#\\\" data-page=\\\"1\\\">&laquo;</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">&raquo;</a>\"));\n } else {\n for (var _i3 = 1; _i3 <= maxPages; _i3++) {\n paginationHTML += \"<option value=\\\"\".concat(_i3, \"\\\">\").concat(_i3, \"</option>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<select>\".concat(paginationHTML, \"</select>\"));\n }\n } // make initial item visible\n\n\n for (var _i4 = 0; _i4 <= endIndex; _i4++) {\n if (_i4 >= table.rows.length) {\n break;\n }\n\n table.rows[_i4].style.display = \"table-row\";\n } // paginate on click\n\n\n if (paginationType == \"button\") {\n pagination.addEventListener(\"click\", function (e) {\n e.preventDefault();\n\n if (e.target.tagName.toLowerCase() == \"a\") {\n currentPage = e.target.dataset.page;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n pagination.querySelectorAll(\".ea-advanced-data-table-pagination-current\").forEach(function (el) {\n el.classList.remove(\"ea-advanced-data-table-pagination-current\");\n });\n pagination.querySelectorAll(\"[data-page=\\\"\".concat(currentPage, \"\\\"]\")).forEach(function (el) {\n el.classList.add(\"ea-advanced-data-table-pagination-current\");\n });\n\n for (var _i5 = offset; _i5 <= table.rows.length - 1; _i5++) {\n if (_i5 >= startIndex && _i5 <= endIndex) {\n table.rows[_i5].style.display = \"table-row\";\n } else {\n table.rows[_i5].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n }\n });\n } else {\n if (pagination.hasChildNodes()) {\n pagination.querySelector(\"select\").addEventListener(\"input\", function (e) {\n e.preventDefault();\n currentPage = e.target.value;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i6 = offset; _i6 <= table.rows.length - 1; _i6++) {\n if (_i6 >= startIndex && _i6 <= endIndex) {\n table.rows[_i6].style.display = \"table-row\";\n } else {\n table.rows[_i6].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n });\n }\n }\n }\n } // woocommerce features\n\n }, {\n key: \"initWooFeatures\",\n value: function initWooFeatures(table) {\n table.querySelectorAll(\".nt_button_woo\").forEach(function (el) {\n el.classList.add(\"add_to_cart_button\", \"ajax_add_to_cart\");\n });\n table.querySelectorAll(\".nt_woo_quantity\").forEach(function (el) {\n el.addEventListener(\"input\", function (e) {\n var product_id = e.target.dataset.product_id;\n var quantity = e.target.value;\n $(\".nt_add_to_cart_\".concat(product_id), $(table)).data(\"quantity\", quantity);\n });\n });\n }\n }]);\n\n return advancedDataTable;\n}();\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n new advancedDataTable();\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-data-table.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar advancedDataTable = /*#__PURE__*/function () {\n function advancedDataTable() {\n _classCallCheck(this, advancedDataTable);\n\n // register hooks\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-advanced-data-table.default\", this.initFrontend.bind(this));\n } // init frontend features\n\n\n _createClass(advancedDataTable, [{\n key: \"initFrontend\",\n value: function initFrontend($scope, $) {\n var table = $scope[0].querySelector(\".ea-advanced-data-table\");\n var search = $scope[0].querySelector(\".ea-advanced-data-table-search\");\n var pagination = $scope[0].querySelector(\".ea-advanced-data-table-pagination\");\n var classCollection = {};\n\n if (!ea.isEditMode && table !== null) {\n // search\n this.initTableSearch(table, search, pagination); // sort\n\n this.initTableSort(table, pagination, classCollection); // paginated table\n\n this.initTablePagination(table, pagination, classCollection); // woocommerce\n\n this.initWooFeatures(table);\n }\n } // frontend - search\n\n }, {\n key: \"initTableSearch\",\n value: function initTableSearch(table, search, pagination) {\n if (search) {\n search.addEventListener(\"input\", function (e) {\n var input = e.target.value.toLowerCase();\n var hasSort = table.classList.contains(\"ea-advanced-data-table-sortable\");\n var offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n\n if (table.rows.length > 1) {\n if (input.length > 0) {\n if (hasSort) {\n table.classList.add(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"none\";\n }\n\n for (var i = offset; i < table.rows.length; i++) {\n var matchFound = false;\n\n if (table.rows[i].cells.length > 0) {\n for (var j = 0; j < table.rows[i].cells.length; j++) {\n if (table.rows[i].cells[j].textContent.toLowerCase().indexOf(input) > -1) {\n matchFound = true;\n break;\n }\n }\n }\n\n if (matchFound) {\n table.rows[i].style.display = \"table-row\";\n } else {\n table.rows[i].style.display = \"none\";\n }\n }\n } else {\n if (hasSort) {\n table.classList.remove(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n var startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i = 1; _i <= table.rows.length - 1; _i++) {\n if (_i >= startIndex && _i <= endIndex) {\n table.rows[_i].style.display = \"table-row\";\n } else {\n table.rows[_i].style.display = \"none\";\n }\n }\n } else {\n for (var _i2 = 1; _i2 <= table.rows.length - 1; _i2++) {\n table.rows[_i2].style.display = \"table-row\";\n }\n }\n }\n }\n });\n }\n } // frontend - sort\n\n }, {\n key: \"initTableSort\",\n value: function initTableSort(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-sortable\")) {\n table.addEventListener(\"click\", function (e) {\n var target = null;\n\n if (e.target.tagName.toLowerCase() === \"th\") {\n target = e.target;\n }\n\n if (e.target.parentNode.tagName.toLowerCase() === \"th\") {\n target = e.target.parentNode;\n }\n\n if (e.target.parentNode.parentNode.tagName.toLowerCase() === \"th\") {\n target = e.target.parentNode.parentNode;\n }\n\n if (target === null) {\n return;\n }\n\n var index = target.cellIndex;\n var currentPage = 1;\n var startIndex = 1;\n var endIndex = table.rows.length - 1;\n var sort = \"\";\n var classList = target.classList;\n var collection = [];\n var origTable = table.cloneNode(true);\n\n if (classList.contains(\"asc\")) {\n target.classList.remove(\"asc\");\n target.classList.add(\"desc\");\n sort = \"desc\";\n } else if (classList.contains(\"desc\")) {\n target.classList.remove(\"desc\");\n target.classList.add(\"asc\");\n sort = \"asc\";\n } else {\n target.classList.add(\"asc\");\n sort = \"asc\";\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n endIndex = endIndex - (currentPage - 1) * table.dataset.itemsPerPage >= table.dataset.itemsPerPage ? currentPage * table.dataset.itemsPerPage : endIndex;\n } // collect header class\n\n\n classCollection[currentPage] = [];\n table.querySelectorAll(\"th\").forEach(function (el) {\n if (el.cellIndex != index) {\n el.classList.remove(\"asc\", \"desc\");\n }\n\n classCollection[currentPage].push(el.classList.contains(\"asc\") ? \"asc\" : el.classList.contains(\"desc\") ? \"desc\" : \"\");\n }); // collect table cells value\n\n for (var i = startIndex; i <= endIndex; i++) {\n var value = void 0;\n var cell = table.rows[i].cells[index];\n\n if (isNaN(parseInt(cell.innerText))) {\n value = cell.innerText.toLowerCase();\n } else {\n value = parseFloat(cell.innerText);\n }\n\n collection.push({\n index: i,\n value: value\n });\n } // sort collection array\n\n\n if (sort == \"asc\") {\n collection.sort(function (x, y) {\n return x.value > y.value ? 1 : -1;\n });\n } else if (sort == \"desc\") {\n collection.sort(function (x, y) {\n return x.value < y.value ? 1 : -1;\n });\n } // sort table\n\n\n collection.forEach(function (row, index) {\n table.rows[startIndex + index].innerHTML = origTable.rows[row.index].innerHTML;\n });\n });\n }\n } // frontend - pagination\n\n }, {\n key: \"initTablePagination\",\n value: function initTablePagination(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-paginated\")) {\n var paginationHTML = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = 1;\n var startIndex = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n var maxPages = Math.ceil((table.rows.length - 1) / table.dataset.itemsPerPage); // insert pagination\n\n if (maxPages > 1) {\n if (paginationType == \"button\") {\n for (var i = 1; i <= maxPages; i++) {\n paginationHTML += \"<a href=\\\"#\\\" data-page=\\\"\".concat(i, \"\\\" class=\\\"\").concat(i == 1 ? \"ea-advanced-data-table-pagination-current\" : \"\", \"\\\">\").concat(i, \"</a>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<a href=\\\"#\\\" data-page=\\\"1\\\">&laquo;</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">&raquo;</a>\"));\n } else {\n for (var _i3 = 1; _i3 <= maxPages; _i3++) {\n paginationHTML += \"<option value=\\\"\".concat(_i3, \"\\\">\").concat(_i3, \"</option>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<select>\".concat(paginationHTML, \"</select>\"));\n }\n } // make initial item visible\n\n\n for (var _i4 = 0; _i4 <= endIndex; _i4++) {\n if (_i4 >= table.rows.length) {\n break;\n }\n\n table.rows[_i4].style.display = \"table-row\";\n } // paginate on click\n\n\n if (paginationType == \"button\") {\n pagination.addEventListener(\"click\", function (e) {\n e.preventDefault();\n\n if (e.target.tagName.toLowerCase() == \"a\") {\n currentPage = e.target.dataset.page;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n pagination.querySelectorAll(\".ea-advanced-data-table-pagination-current\").forEach(function (el) {\n el.classList.remove(\"ea-advanced-data-table-pagination-current\");\n });\n pagination.querySelectorAll(\"[data-page=\\\"\".concat(currentPage, \"\\\"]\")).forEach(function (el) {\n el.classList.add(\"ea-advanced-data-table-pagination-current\");\n });\n\n for (var _i5 = offset; _i5 <= table.rows.length - 1; _i5++) {\n if (_i5 >= startIndex && _i5 <= endIndex) {\n table.rows[_i5].style.display = \"table-row\";\n } else {\n table.rows[_i5].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n }\n });\n } else {\n if (pagination.hasChildNodes()) {\n pagination.querySelector(\"select\").addEventListener(\"input\", function (e) {\n e.preventDefault();\n currentPage = e.target.value;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i6 = offset; _i6 <= table.rows.length - 1; _i6++) {\n if (_i6 >= startIndex && _i6 <= endIndex) {\n table.rows[_i6].style.display = \"table-row\";\n } else {\n table.rows[_i6].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n });\n }\n }\n }\n } // woocommerce features\n\n }, {\n key: \"initWooFeatures\",\n value: function initWooFeatures(table) {\n table.querySelectorAll(\".nt_button_woo\").forEach(function (el) {\n el.classList.add(\"add_to_cart_button\", \"ajax_add_to_cart\");\n });\n table.querySelectorAll(\".nt_woo_quantity\").forEach(function (el) {\n el.addEventListener(\"input\", function (e) {\n var product_id = e.target.dataset.product_id;\n var quantity = e.target.value;\n $(\".nt_add_to_cart_\".concat(product_id), $(table)).data(\"quantity\", quantity);\n });\n });\n }\n }]);\n\n return advancedDataTable;\n}();\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n new advancedDataTable();\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-data-table.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/advanced-data-table.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(a.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(n,r,function(t){return e[t]}.bind(null,r));return n},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=1)}([,function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var n=t[a];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var n=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),elementorFrontend.hooks.addAction("frontend/element_ready/eael-advanced-data-table.default",this.initFrontend.bind(this))}var t,n,r;return t=e,(n=[{key:"initFrontend",value:function(e,t){var a=e[0].querySelector(".ea-advanced-data-table"),n=e[0].querySelector(".ea-advanced-data-table-search"),r=e[0].querySelector(".ea-advanced-data-table-pagination"),o={};ea.isEditMode||null===a||(this.initTableSearch(a,n,r),this.initTableSort(a,r,o),this.initTablePagination(a,r,o),this.initWooFeatures(a))}},{key:"initTableSearch",value:function(e,t,a){t&&t.addEventListener("input",(function(t){var n=t.target.value.toLowerCase(),r=e.classList.contains("ea-advanced-data-table-sortable"),o="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0;if(e.rows.length>1)if(n.length>0){r&&e.classList.add("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0&&(a.style.display="none");for(var s=o;s<e.rows.length;s++){var i=!1;if(e.rows[s].cells.length>0)for(var c=0;c<e.rows[s].cells.length;c++)if(e.rows[s].cells[c].textContent.toLowerCase().indexOf(n)>-1){i=!0;break}e.rows[s].style.display=i?"table-row":"none"}}else if(r&&e.classList.remove("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0){a.style.display="";for(var l="button"==(a.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select")?a.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:a.querySelector("select").value,d=(l-1)*e.dataset.itemsPerPage+1,u=l*e.dataset.itemsPerPage,f=1;f<=e.rows.length-1;f++)e.rows[f].style.display=f>=d&&f<=u?"table-row":"none"}else for(var v=1;v<=e.rows.length-1;v++)e.rows[v].style.display="table-row"}))}},{key:"initTableSort",value:function(e,t,a){e.classList.contains("ea-advanced-data-table-sortable")&&e.addEventListener("click",(function(n){if("th"===n.target.tagName.toLowerCase()){var r=n.target.cellIndex,o=1,s=1,i=e.rows.length-1,c="",l=n.target.classList,d=[],u=e.cloneNode(!0);if(l.contains("asc")?(n.target.classList.remove("asc"),n.target.classList.add("desc"),c="desc"):l.contains("desc")?(n.target.classList.remove("desc"),n.target.classList.add("asc"),c="asc"):(n.target.classList.add("asc"),c="asc"),t&&t.innerHTML.length>0){var f=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select";o="button"==f?t.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:t.querySelector("select").value,s=(o-1)*e.dataset.itemsPerPage+1,i=i-(o-1)*e.dataset.itemsPerPage>=e.dataset.itemsPerPage?o*e.dataset.itemsPerPage:i}a[o]=[],e.querySelectorAll("th").forEach((function(e){e.cellIndex!=r&&e.classList.remove("asc","desc"),a[o].push(e.classList.contains("asc")?"asc":e.classList.contains("desc")?"desc":"")}));for(var v=s;v<=i;v++){var g=void 0,b=e.rows[v].cells[r];g=isNaN(parseInt(b.innerText))?b.innerText.toLowerCase():parseInt(b.innerText),d.push({index:v,value:g})}"asc"==c?d.sort((function(e,t){return e.value>t.value?1:-1})):"desc"==c&&d.sort((function(e,t){return e.value<t.value?1:-1})),d.forEach((function(t,a){e.rows[s+a].innerHTML=u.rows[t.index].innerHTML}))}}))}},{key:"initTablePagination",value:function(e,t,a){if(e.classList.contains("ea-advanced-data-table-paginated")){var n="",r=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select",o=1,s="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,i=o*e.dataset.itemsPerPage,c=Math.ceil((e.rows.length-1)/e.dataset.itemsPerPage);if(c>1)if("button"==r){for(var l=1;l<=c;l++)n+='<a href="#" data-page="'.concat(l,'" class="').concat(1==l?"ea-advanced-data-table-pagination-current":"",'">').concat(l,"</a>");t.insertAdjacentHTML("beforeend",'<a href="#" data-page="1">&laquo;</a>'.concat(n,'<a href="#" data-page="').concat(c,'">&raquo;</a>'))}else{for(var d=1;d<=c;d++)n+='<option value="'.concat(d,'">').concat(d,"</option>");t.insertAdjacentHTML("beforeend","<select>".concat(n,"</select>"))}for(var u=0;u<=i&&!(u>=e.rows.length);u++)e.rows[u].style.display="table-row";"button"==r?t.addEventListener("click",(function(n){if(n.preventDefault(),"a"==n.target.tagName.toLowerCase()){o=n.target.dataset.page,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage,t.querySelectorAll(".ea-advanced-data-table-pagination-current").forEach((function(e){e.classList.remove("ea-advanced-data-table-pagination-current")})),t.querySelectorAll('[data-page="'.concat(o,'"]')).forEach((function(e){e.classList.add("ea-advanced-data-table-pagination-current")}));for(var r=offset;r<=e.rows.length-1;r++)e.rows[r].style.display=r>=s&&r<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}})):t.hasChildNodes()&&t.querySelector("select").addEventListener("input",(function(t){t.preventDefault(),o=t.target.value,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage;for(var n=offset;n<=e.rows.length-1;n++)e.rows[n].style.display=n>=s&&n<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}))}}},{key:"initWooFeatures",value:function(e){e.querySelectorAll(".nt_button_woo").forEach((function(e){e.classList.add("add_to_cart_button","ajax_add_to_cart")})),e.querySelectorAll(".nt_woo_quantity").forEach((function(t){t.addEventListener("input",(function(t){var a=t.target.dataset.product_id,n=t.target.value;$(".nt_add_to_cart_".concat(a),$(e)).data("quantity",n)}))}))}}])&&a(t.prototype,n),r&&a(t,r),e}();ea.hooks.addAction("init","ea",(function(){new n}))}]);
1
+ !function(e){var t={};function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(a.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(n,r,function(t){return e[t]}.bind(null,r));return n},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=1)}([,function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var n=t[a];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var n=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),elementorFrontend.hooks.addAction("frontend/element_ready/eael-advanced-data-table.default",this.initFrontend.bind(this))}var t,n,r;return t=e,(n=[{key:"initFrontend",value:function(e,t){var a=e[0].querySelector(".ea-advanced-data-table"),n=e[0].querySelector(".ea-advanced-data-table-search"),r=e[0].querySelector(".ea-advanced-data-table-pagination"),o={};ea.isEditMode||null===a||(this.initTableSearch(a,n,r),this.initTableSort(a,r,o),this.initTablePagination(a,r,o),this.initWooFeatures(a))}},{key:"initTableSearch",value:function(e,t,a){t&&t.addEventListener("input",(function(t){var n=t.target.value.toLowerCase(),r=e.classList.contains("ea-advanced-data-table-sortable"),o="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0;if(e.rows.length>1)if(n.length>0){r&&e.classList.add("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0&&(a.style.display="none");for(var s=o;s<e.rows.length;s++){var i=!1;if(e.rows[s].cells.length>0)for(var l=0;l<e.rows[s].cells.length;l++)if(e.rows[s].cells[l].textContent.toLowerCase().indexOf(n)>-1){i=!0;break}e.rows[s].style.display=i?"table-row":"none"}}else if(r&&e.classList.remove("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0){a.style.display="";for(var c="button"==(a.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select")?a.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:a.querySelector("select").value,d=(c-1)*e.dataset.itemsPerPage+1,u=c*e.dataset.itemsPerPage,f=1;f<=e.rows.length-1;f++)e.rows[f].style.display=f>=d&&f<=u?"table-row":"none"}else for(var v=1;v<=e.rows.length-1;v++)e.rows[v].style.display="table-row"}))}},{key:"initTableSort",value:function(e,t,a){e.classList.contains("ea-advanced-data-table-sortable")&&e.addEventListener("click",(function(n){var r=null;if("th"===n.target.tagName.toLowerCase()&&(r=n.target),"th"===n.target.parentNode.tagName.toLowerCase()&&(r=n.target.parentNode),"th"===n.target.parentNode.parentNode.tagName.toLowerCase()&&(r=n.target.parentNode.parentNode),null!==r){var o=r.cellIndex,s=1,i=1,l=e.rows.length-1,c="",d=r.classList,u=[],f=e.cloneNode(!0);if(d.contains("asc")?(r.classList.remove("asc"),r.classList.add("desc"),c="desc"):d.contains("desc")?(r.classList.remove("desc"),r.classList.add("asc"),c="asc"):(r.classList.add("asc"),c="asc"),t&&t.innerHTML.length>0){var v=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select";s="button"==v?t.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:t.querySelector("select").value,i=(s-1)*e.dataset.itemsPerPage+1,l=l-(s-1)*e.dataset.itemsPerPage>=e.dataset.itemsPerPage?s*e.dataset.itemsPerPage:l}a[s]=[],e.querySelectorAll("th").forEach((function(e){e.cellIndex!=o&&e.classList.remove("asc","desc"),a[s].push(e.classList.contains("asc")?"asc":e.classList.contains("desc")?"desc":"")}));for(var g=i;g<=l;g++){var b=void 0,p=e.rows[g].cells[o];b=isNaN(parseInt(p.innerText))?p.innerText.toLowerCase():parseFloat(p.innerText),u.push({index:g,value:b})}"asc"==c?u.sort((function(e,t){return e.value>t.value?1:-1})):"desc"==c&&u.sort((function(e,t){return e.value<t.value?1:-1})),u.forEach((function(t,a){e.rows[i+a].innerHTML=f.rows[t.index].innerHTML}))}}))}},{key:"initTablePagination",value:function(e,t,a){if(e.classList.contains("ea-advanced-data-table-paginated")){var n="",r=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select",o=1,s="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,i=o*e.dataset.itemsPerPage,l=Math.ceil((e.rows.length-1)/e.dataset.itemsPerPage);if(l>1)if("button"==r){for(var c=1;c<=l;c++)n+='<a href="#" data-page="'.concat(c,'" class="').concat(1==c?"ea-advanced-data-table-pagination-current":"",'">').concat(c,"</a>");t.insertAdjacentHTML("beforeend",'<a href="#" data-page="1">&laquo;</a>'.concat(n,'<a href="#" data-page="').concat(l,'">&raquo;</a>'))}else{for(var d=1;d<=l;d++)n+='<option value="'.concat(d,'">').concat(d,"</option>");t.insertAdjacentHTML("beforeend","<select>".concat(n,"</select>"))}for(var u=0;u<=i&&!(u>=e.rows.length);u++)e.rows[u].style.display="table-row";"button"==r?t.addEventListener("click",(function(n){if(n.preventDefault(),"a"==n.target.tagName.toLowerCase()){o=n.target.dataset.page,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage,t.querySelectorAll(".ea-advanced-data-table-pagination-current").forEach((function(e){e.classList.remove("ea-advanced-data-table-pagination-current")})),t.querySelectorAll('[data-page="'.concat(o,'"]')).forEach((function(e){e.classList.add("ea-advanced-data-table-pagination-current")}));for(var r=offset;r<=e.rows.length-1;r++)e.rows[r].style.display=r>=s&&r<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}})):t.hasChildNodes()&&t.querySelector("select").addEventListener("input",(function(t){t.preventDefault(),o=t.target.value,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage;for(var n=offset;n<=e.rows.length-1;n++)e.rows[n].style.display=n>=s&&n<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}))}}},{key:"initWooFeatures",value:function(e){e.querySelectorAll(".nt_button_woo").forEach((function(e){e.classList.add("add_to_cart_button","ajax_add_to_cart")})),e.querySelectorAll(".nt_woo_quantity").forEach((function(t){t.addEventListener("input",(function(t){var a=t.target.dataset.product_id,n=t.target.value;$(".nt_add_to_cart_".concat(a),$(e)).data("quantity",n)}))}))}}])&&a(t.prototype,n),r&&a(t,r),e}();ea.hooks.addAction("init","ea",(function(){new n}))}]);
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.3.8
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
@@ -25,7 +25,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
25
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
26
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
27
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
28
- define('EAEL_PLUGIN_VERSION', '4.3.8');
29
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
30
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
31
  /**
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.3.9
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
25
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
26
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
27
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
28
+ define('EAEL_PLUGIN_VERSION', '4.3.9');
29
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
30
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
31
  /**
includes/Elements/Info_Box.php CHANGED
@@ -1535,7 +1535,7 @@ echo ob_get_clean();
1535
  */
1536
  protected function eael_infobox_after()
1537
  {
1538
- $settings = $this->get_settings();
1539
  ob_start(); ?></div><?php
1540
  if ('yes' == $settings['eael_show_infobox_clickable']): ?></a><?php endif;
1541
  echo ob_get_clean();
@@ -1548,7 +1548,7 @@ if ('yes' == $settings['eael_show_infobox_clickable']): ?></a><?php endif;
1548
  */
1549
  protected function render_infobox_icon()
1550
  {
1551
- $settings = $this->get_settings();
1552
 
1553
  if ('none' == $settings['eael_infobox_img_or_icon']) {
1554
  return;
@@ -1629,7 +1629,7 @@ echo ob_get_clean();
1629
 
1630
  protected function render_infobox_content()
1631
  {
1632
- $settings = $this->get_settings();
1633
 
1634
  $this->add_render_attribute('infobox_content', 'class', 'infobox-content');
1635
  if ('icon' == $settings['eael_infobox_img_or_icon']) {
@@ -1665,7 +1665,7 @@ echo ob_get_clean();
1665
  */
1666
  protected function render_infobox_button()
1667
  {
1668
- $settings = $this->get_settings();
1669
  if ('yes' == $settings['eael_show_infobox_clickable'] || 'yes' != $settings['eael_show_infobox_button']) {
1670
  return;
1671
  }
1535
  */
1536
  protected function eael_infobox_after()
1537
  {
1538
+ $settings = $this->get_settings_for_display();
1539
  ob_start(); ?></div><?php
1540
  if ('yes' == $settings['eael_show_infobox_clickable']): ?></a><?php endif;
1541
  echo ob_get_clean();
1548
  */
1549
  protected function render_infobox_icon()
1550
  {
1551
+ $settings = $this->get_settings_for_display();
1552
 
1553
  if ('none' == $settings['eael_infobox_img_or_icon']) {
1554
  return;
1629
 
1630
  protected function render_infobox_content()
1631
  {
1632
+ $settings = $this->get_settings_for_display();
1633
 
1634
  $this->add_render_attribute('infobox_content', 'class', 'infobox-content');
1635
  if ('icon' == $settings['eael_infobox_img_or_icon']) {
1665
  */
1666
  protected function render_infobox_button()
1667
  {
1668
+ $settings = $this->get_settings_for_display();
1669
  if ('yes' == $settings['eael_show_infobox_clickable'] || 'yes' != $settings['eael_show_infobox_button']) {
1670
  return;
1671
  }
includes/Elements/Pricing_Table.php CHANGED
@@ -660,6 +660,8 @@ class Pricing_Table extends Widget_Base
660
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
661
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
662
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
 
 
663
  ],
664
  'condition' => [
665
  'eael_pricing_table_featured_styles' => ['ribbon-2', 'ribbon-3', 'ribbon-4'],
@@ -1288,6 +1290,8 @@ class Pricing_Table extends Widget_Base
1288
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1289
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1290
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
 
 
1291
  ],
1292
  'condition' => [
1293
  'eael_pricing_table_featured' => 'yes',
@@ -1314,6 +1318,8 @@ class Pricing_Table extends Widget_Base
1314
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1315
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1316
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
 
 
1317
  ],
1318
  'condition' => [
1319
  'eael_pricing_table_featured' => 'yes',
@@ -1340,13 +1346,20 @@ class Pricing_Table extends Widget_Base
1340
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1341
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1342
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
 
 
1343
 
1344
  '{{WRAPPER}} .eael-pricing.style-1 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1345
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1346
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1347
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
 
 
 
1348
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'font-size: {{SIZE}}px;',
1349
 
 
 
1350
  ],
1351
  'condition' => [
1352
  'eael_pricing_table_featured' => 'yes',
@@ -1366,13 +1379,20 @@ class Pricing_Table extends Widget_Base
1366
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1367
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1368
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
 
 
1369
 
1370
  '{{WRAPPER}} .eael-pricing.style-1 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1371
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1372
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1373
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
 
 
 
1374
 
1375
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'color: {{VALUE}};',
 
 
1376
  ],
1377
  'condition' => [
1378
  'eael_pricing_table_featured' => 'yes',
@@ -1404,7 +1424,17 @@ class Pricing_Table extends Widget_Base
1404
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:after' => 'border-bottom-color: {{VALUE}};',
1405
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'background: {{VALUE}};',
1406
 
 
 
 
 
 
 
 
 
1407
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'background: {{VALUE}};',
 
 
1408
  ],
1409
  'condition' => [
1410
  'eael_pricing_table_featured' => 'yes',
660
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
661
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
662
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
663
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.featured:before' => 'content: "{{VALUE}}";',
664
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.featured:before' => 'content: "{{VALUE}}";',
665
  ],
666
  'condition' => [
667
  'eael_pricing_table_featured_styles' => ['ribbon-2', 'ribbon-3', 'ribbon-4'],
1290
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1291
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1292
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1293
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-1:before' => 'background: {{VALUE}};',
1294
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-1:before' => 'background: {{VALUE}};',
1295
  ],
1296
  'condition' => [
1297
  'eael_pricing_table_featured' => 'yes',
1318
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1319
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1320
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1321
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-1:before' => 'height: {{SIZE}}px;',
1322
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-1:before' => 'height: {{SIZE}}px;',
1323
  ],
1324
  'condition' => [
1325
  'eael_pricing_table_featured' => 'yes',
1346
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1347
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1348
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1349
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1350
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-2:before' => 'font-size: {{SIZE}}px;',
1351
 
1352
  '{{WRAPPER}} .eael-pricing.style-1 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1353
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1354
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1355
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1356
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1357
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-3:before' => 'font-size: {{SIZE}}px;',
1358
+
1359
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'font-size: {{SIZE}}px;',
1360
 
1361
+ '{{WRAPPER}} .eael-pricing .eael-pricing-image.ribbon-4:before' => 'font-size: {{SIZE}}px;',
1362
+
1363
  ],
1364
  'condition' => [
1365
  'eael_pricing_table_featured' => 'yes',
1379
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1380
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1381
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1382
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-2:before' => 'color: {{VALUE}};',
1383
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-2:before' => 'color: {{VALUE}};',
1384
 
1385
  '{{WRAPPER}} .eael-pricing.style-1 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1386
  '{{WRAPPER}} .eael-pricing.style-2 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1387
  '{{WRAPPER}} .eael-pricing.style-3 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1388
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1389
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-3:before' => 'color: {{VALUE}};',
1390
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-3:before' => 'color: {{VALUE}};',
1391
+
1392
 
1393
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'color: {{VALUE}};',
1394
+
1395
+ '{{WRAPPER}} .eael-pricing .eael-pricing-image.ribbon-4:before' => 'color: {{VALUE}};',
1396
  ],
1397
  'condition' => [
1398
  'eael_pricing_table_featured' => 'yes',
1424
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-2:after' => 'border-bottom-color: {{VALUE}};',
1425
  '{{WRAPPER}} .eael-pricing.style-4 .eael-pricing-item.ribbon-3:before' => 'background: {{VALUE}};',
1426
 
1427
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-2:before' => 'background: {{VALUE}};',
1428
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-2:after' => 'border-bottom-color: {{VALUE}};',
1429
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-item.ribbon-3:before' => 'background: {{VALUE}};',
1430
+
1431
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-2:before' => 'background: {{VALUE}};',
1432
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-2:after' => 'border-bottom-color: {{VALUE}};',
1433
+ '{{WRAPPER}} .eael-pricing.style-5 .eael-pricing-image.ribbon-3:before' => 'background: {{VALUE}};',
1434
+
1435
  '{{WRAPPER}} .eael-pricing .eael-pricing-item.ribbon-4:before' => 'background: {{VALUE}};',
1436
+
1437
+ '{{WRAPPER}} .eael-pricing .eael-pricing-image.ribbon-4:before' => 'background: {{VALUE}};',
1438
  ],
1439
  'condition' => [
1440
  'eael_pricing_table_featured' => 'yes',
includes/Elements/Testimonial.php CHANGED
@@ -258,7 +258,45 @@ class Testimonial extends Widget_Base {
258
  'content-bottom-icon-title-inline' => __( 'Content Bottom | Icon Title Inline', 'essential-addons-for-elementor-lite')
259
  ]
260
  ]
261
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
 
263
  $this->add_control(
264
  'eael_testimonial_alignment',
258
  'content-bottom-icon-title-inline' => __( 'Content Bottom | Icon Title Inline', 'essential-addons-for-elementor-lite')
259
  ]
260
  ]
261
+ );
262
+
263
+
264
+ $this->add_control(
265
+ 'eael_testimonial_is_gradient_background',
266
+ [
267
+ 'label' => __('Use Gradient Background', 'essential-addons-elementor'),
268
+ 'type' => Controls_Manager::SWITCHER,
269
+ 'label_on' => __('Show', 'essential-addons-elementor'),
270
+ 'label_off' => __('Hide', 'essential-addons-elementor'),
271
+ 'return_value' => 'yes',
272
+ ]
273
+ );
274
+ $this->add_control(
275
+ 'eael_testimonial_background',
276
+ [
277
+ 'label' => esc_html__('Background Color', 'essential-addons-elementor'),
278
+ 'type' => Controls_Manager::COLOR,
279
+ 'default' => '',
280
+ 'selectors' => [
281
+ '{{WRAPPER}} .eael-testimonial-item' => 'background-color: {{VALUE}};',
282
+ ],
283
+ 'condition' => [
284
+ 'eael_testimonial_is_gradient_background' => ''
285
+ ]
286
+ ]
287
+ );
288
+ $this->add_group_control(
289
+ \Elementor\Group_Control_Background::get_type(),
290
+ [
291
+ 'name' => 'eael_testimonial_gradient_background',
292
+ 'label' => __('Gradient Background', 'essential-addons-elementor'),
293
+ 'types' => ['classic', 'gradient'],
294
+ 'selector' => '{{WRAPPER}} .eael-testimonial-item',
295
+ 'condition' => [
296
+ 'eael_testimonial_is_gradient_background' => 'yes'
297
+ ]
298
+ ]
299
+ );
300
 
301
  $this->add_control(
302
  'eael_testimonial_alignment',
includes/Traits/Generator.php CHANGED
@@ -212,6 +212,11 @@ trait Generator
212
  // parse loaded elements
213
  $this->loaded_elements = $this->parse_elements($this->loaded_elements);
214
 
 
 
 
 
 
215
  // update page data
216
  update_option($this->uid . '_elements', $this->loaded_elements);
217
  update_option($this->uid . '_custom_js', $this->custom_js_strings);
212
  // parse loaded elements
213
  $this->loaded_elements = $this->parse_elements($this->loaded_elements);
214
 
215
+ // push custom js as element so that it prints to page if elements is empty
216
+ if ($this->custom_js_strings) {
217
+ $this->loaded_elements[] = 'custom-js';
218
+ }
219
+
220
  // update page data
221
  update_option($this->uid . '_elements', $this->loaded_elements);
222
  update_option($this->uid . '_custom_js', $this->custom_js_strings);
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -13,11 +13,11 @@ msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: ../includes/Classes/Helper.php:168, ../includes/Elements/Adv_Accordion.php:293, ../includes/Elements/Adv_Tabs.php:261, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:349, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:185, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:212, ../includes/Elements/Fancy_Text.php:267, ../includes/Elements/Filterable_Gallery.php:792, ../includes/Elements/Flip_Box.php:726, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:700, ../includes/Elements/Progress_Bar.php:269, ../includes/Elements/Team_Member.php:236, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:503, ../includes/Elements/Twitter_Feed.php:284, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
- #: ../includes/Classes/Helper.php:175, ../includes/Elements/Adv_Accordion.php:300, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:356, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:192, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:219, ../includes/Elements/Fancy_Text.php:274, ../includes/Elements/Filterable_Gallery.php:799, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:707, ../includes/Elements/Progress_Bar.php:276, ../includes/Elements/Team_Member.php:243, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:510, ../includes/Elements/Twitter_Feed.php:291, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
@@ -229,7 +229,7 @@ msgstr ""
229
  msgid "Pagination Type"
230
  msgstr ""
231
 
232
- #: ../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:1785, ../includes/Elements/Product_Grid.php:1666, ../includes/Elements/Woo_Checkout.php:1273, ../includes/Elements/Woo_Checkout.php:1571, ../includes/Elements/Woo_Checkout.php:2344
233
  msgid "Button"
234
  msgstr ""
235
 
@@ -269,11 +269,11 @@ msgstr ""
269
  msgid "Width"
270
  msgstr ""
271
 
272
- #: ../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:439, ../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:381, ../includes/Elements/Image_Accordion.php:491, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1049, ../includes/Elements/Info_Box.php:1129, ../includes/Elements/Login_Register.php:2687, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:283, ../includes/Elements/Pricing_Table.php:1736, ../includes/Elements/Pricing_Table.php:1902, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Team_Member.php:500, ../includes/Elements/Testimonial.php:396, ../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:1493, ../includes/Elements/Woo_Checkout.php:1739, ../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:1212, ../includes/Traits/Controls.php:1266, ../includes/Traits/Controls.php:1396
273
  msgid "Border"
274
  msgstr ""
275
 
276
- #: ../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:320, ../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:464, ../includes/Elements/Facebook_Feed.php:524, ../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:389, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1211, ../includes/Elements/Login_Register.php:1489, ../includes/Elements/Login_Register.php:1724, ../includes/Elements/Login_Register.php:1898, ../includes/Elements/Login_Register.php:2054, ../includes/Elements/Login_Register.php:2194, ../includes/Elements/Login_Register.php:2288, ../includes/Elements/Login_Register.php:2379, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2589, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:3083, ../includes/Elements/Login_Register.php:3120, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3441, ../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:291, ../includes/Elements/Pricing_Table.php:784, ../includes/Elements/Pricing_Table.php:1510, ../includes/Elements/Pricing_Table.php:1759, ../includes/Elements/Pricing_Table.php:1910, ../includes/Elements/Product_Grid.php:828, ../includes/Elements/Product_Grid.php:1851, ../includes/Elements/Product_Grid.php:2205, ../includes/Elements/Product_Grid.php:2541, ../includes/Elements/Product_Grid.php:2736, ../includes/Elements/Product_Grid.php:2768, ../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:415, ../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:633, ../includes/Elements/Woo_Checkout.php:782, ../includes/Elements/Woo_Checkout.php:978, ../includes/Elements/Woo_Checkout.php:1226, ../includes/Elements/Woo_Checkout.php:1379, ../includes/Elements/Woo_Checkout.php:1502, ../includes/Elements/Woo_Checkout.php:1677, ../includes/Elements/Woo_Checkout.php:1885, ../includes/Elements/Woo_Checkout.php:2087, ../includes/Elements/Woo_Checkout.php:2181, ../includes/Elements/Woo_Checkout.php:2461, ../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:1220, ../includes/Traits/Controls.php:1274, ../includes/Traits/Controls.php:1404
277
  msgid "Border Radius"
278
  msgstr ""
279
 
@@ -293,23 +293,23 @@ msgstr ""
293
  msgid "Text Alignment"
294
  msgstr ""
295
 
296
- #: ../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:417, ../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:107, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:663, ../includes/Elements/Login_Register.php:696, ../includes/Elements/Login_Register.php:2496, ../includes/Elements/Login_Register.php:3034, ../includes/Elements/Login_Register.php:3354, ../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:449, ../includes/Elements/Post_Grid.php:604, ../includes/Elements/Post_Grid.php:672, ../includes/Elements/Post_Grid.php:767, ../includes/Elements/Post_Grid.php:850, ../includes/Elements/Post_Timeline.php:327, ../includes/Elements/Post_Timeline.php:383, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:678, ../includes/Elements/Pricing_Table.php:818, ../includes/Elements/Pricing_Table.php:843, ../includes/Elements/Product_Grid.php:580, ../includes/Elements/Product_Grid.php:898, ../includes/Elements/Product_Grid.php:1587, ../includes/Elements/Product_Grid.php:2026, ../includes/Elements/Progress_Bar.php:319, ../includes/Elements/Progress_Bar.php:530, ../includes/Elements/Team_Member.php:379, ../includes/Elements/Testimonial.php:275, ../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:1485, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1537
297
  msgid "Left"
298
  msgstr ""
299
 
300
- #: ../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:421, ../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:111, ../includes/Elements/Image_Accordion.php:134, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2500, ../includes/Elements/Login_Register.php:3016, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3315, ../includes/Elements/Login_Register.php:3335, ../includes/Elements/Login_Register.php:3358, ../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:453, ../includes/Elements/Post_Grid.php:608, ../includes/Elements/Post_Grid.php:676, ../includes/Elements/Post_Grid.php:771, ../includes/Elements/Post_Grid.php:854, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Pricing_Table.php:822, ../includes/Elements/Pricing_Table.php:847, ../includes/Elements/Product_Grid.php:584, ../includes/Elements/Product_Grid.php:902, ../includes/Elements/Product_Grid.php:2030, ../includes/Elements/Progress_Bar.php:323, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Team_Member.php:383, ../includes/Elements/Testimonial.php:279, ../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:1489
301
  msgid "Center"
302
  msgstr ""
303
 
304
- #: ../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:425, ../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:115, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:667, ../includes/Elements/Login_Register.php:2504, ../includes/Elements/Login_Register.php:3042, ../includes/Elements/Login_Register.php:3362, ../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:457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Grid.php:680, ../includes/Elements/Post_Grid.php:775, ../includes/Elements/Post_Grid.php:858, ../includes/Elements/Post_Timeline.php:335, ../includes/Elements/Post_Timeline.php:391, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:682, ../includes/Elements/Pricing_Table.php:826, ../includes/Elements/Pricing_Table.php:851, ../includes/Elements/Product_Grid.php:588, ../includes/Elements/Product_Grid.php:906, ../includes/Elements/Product_Grid.php:1591, ../includes/Elements/Product_Grid.php:2034, ../includes/Elements/Progress_Bar.php:327, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Team_Member.php:387, ../includes/Elements/Testimonial.php:283, ../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:1493, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1537
305
  msgid "Right"
306
  msgstr ""
307
 
308
- #: ../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:262, ../includes/Elements/Creative_Button.php:342, ../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:1233, ../includes/Elements/Info_Box.php:1279, ../includes/Elements/Login_Register.php:2525, ../includes/Elements/Login_Register.php:2664, ../includes/Elements/Login_Register.php:3063, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3384, ../includes/Elements/Login_Register.php:3421, ../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:1862, ../includes/Elements/Pricing_Table.php:1931, ../includes/Elements/Product_Grid.php:2080, ../includes/Elements/Product_Grid.php:2118, ../includes/Elements/Product_Grid.php:2162, ../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:1186, ../includes/Traits/Controls.php:1241, ../includes/Traits/Controls.php:1371, ../includes/Traits/Controls.php:1433
309
  msgid "Text Color"
310
  msgstr ""
311
 
312
- #: ../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:275, ../includes/Elements/Creative_Button.php:355, ../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:344, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1033, ../includes/Elements/Info_Box.php:1095, ../includes/Elements/Info_Box.php:1245, ../includes/Elements/Info_Box.php:1291, ../includes/Elements/Login_Register.php:1504, ../includes/Elements/Login_Register.php:1637, ../includes/Elements/Login_Register.php:1739, ../includes/Elements/Login_Register.php:1913, ../includes/Elements/Login_Register.php:2269, ../includes/Elements/Login_Register.php:2360, ../includes/Elements/Login_Register.php:2539, ../includes/Elements/Login_Register.php:2577, ../includes/Elements/Login_Register.php:2674, ../includes/Elements/Login_Register.php:3071, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3392, ../includes/Elements/Login_Register.php:3429, ../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:924, ../includes/Elements/Pricing_Table.php:739, ../includes/Elements/Pricing_Table.php:899, ../includes/Elements/Pricing_Table.php:1387, ../includes/Elements/Pricing_Table.php:1446, ../includes/Elements/Pricing_Table.php:1612, ../includes/Elements/Pricing_Table.php:1874, ../includes/Elements/Pricing_Table.php:1943, ../includes/Elements/Product_Grid.php:1694, ../includes/Elements/Product_Grid.php:1802, ../includes/Elements/Product_Grid.php:1908, ../includes/Elements/Product_Grid.php:2092, ../includes/Elements/Product_Grid.php:2130, ../includes/Elements/Product_Grid.php:2174, ../includes/Elements/Product_Grid.php:2419, ../includes/Elements/Product_Grid.php:2461, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2573, ../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:603, ../includes/Elements/Woo_Checkout.php:718, ../includes/Elements/Woo_Checkout.php:840, ../includes/Elements/Woo_Checkout.php:1298, ../includes/Elements/Woo_Checkout.php:1338, ../includes/Elements/Woo_Checkout.php:1596, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:2140, ../includes/Elements/Woo_Checkout.php:2270, ../includes/Elements/Woo_Checkout.php:2380, ../includes/Elements/Woo_Checkout.php:2420, ../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:1383, ../includes/Traits/Controls.php:1445
313
  msgid "Background Color"
314
  msgstr ""
315
 
@@ -317,7 +317,7 @@ msgstr ""
317
  msgid "Cell Border"
318
  msgstr ""
319
 
320
- #: ../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:593, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Facebook_Feed.php:691, ../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:356, ../includes/Elements/Image_Accordion.php:468, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1467, ../includes/Elements/Login_Register.php:2032, ../includes/Elements/Login_Register.php:2171, ../includes/Elements/Login_Register.php:2244, ../includes/Elements/Login_Register.php:2335, ../includes/Elements/Login_Register.php:2437, ../includes/Elements/Login_Register.php:2472, ../includes/Elements/Login_Register.php:2634, ../includes/Elements/Login_Register.php:2976, ../includes/Elements/Login_Register.php:3275, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:751, ../includes/Elements/Pricing_Table.php:1488, ../includes/Elements/Pricing_Table.php:1793, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1333, ../includes/Elements/Team_Member.php:486, ../includes/Elements/Testimonial.php:382, ../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:614, ../includes/Elements/Woo_Checkout.php:1206, ../includes/Elements/Woo_Checkout.php:1399, ../includes/Elements/Woo_Checkout.php:1529, ../includes/Elements/Woo_Checkout.php:1697, ../includes/Elements/Woo_Checkout.php:1912, ../includes/Elements/Woo_Checkout.php:2162, ../includes/Elements/Woo_Checkout.php:2493, ../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:1290, ../includes/Traits/Controls.php:1335
321
  msgid "Padding"
322
  msgstr ""
323
 
@@ -377,19 +377,19 @@ msgstr ""
377
  msgid "Alignment"
378
  msgstr ""
379
 
380
- #: ../includes/Elements/Advanced_Data_Table.php:1135, ../includes/Elements/Adv_Accordion.php:342, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:792, ../includes/Elements/Adv_Tabs.php:311, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1584, ../includes/Elements/Contact_Form_7.php:1681, ../includes/Elements/Content_Ticker.php:507, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:332, ../includes/Elements/Dual_Color_Header.php:630, ../includes/Elements/Fancy_Text.php:495, ../includes/Elements/Filterable_Gallery.php:855, ../includes/Elements/Filterable_Gallery.php:932, ../includes/Elements/Filterable_Gallery.php:1114, ../includes/Elements/Filterable_Gallery.php:1759, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Flip_Box.php:1335, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:368, ../includes/Elements/Image_Accordion.php:457, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:982, ../includes/Elements/Info_Box.php:1372, ../includes/Elements/Login_Register.php:1452, ../includes/Elements/Login_Register.php:2017, ../includes/Elements/Login_Register.php:2156, ../includes/Elements/Login_Register.php:2229, ../includes/Elements/Login_Register.php:2320, ../includes/Elements/Login_Register.php:2422, ../includes/Elements/Login_Register.php:2457, ../includes/Elements/Login_Register.php:2619, ../includes/Elements/Login_Register.php:2961, ../includes/Elements/Login_Register.php:3196, ../includes/Elements/Login_Register.php:3260, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:496, ../includes/Elements/Post_Grid.php:511, ../includes/Elements/Post_Grid.php:635, ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Pricing_Table.php:763, ../includes/Elements/Pricing_Table.php:1089, ../includes/Elements/Pricing_Table.php:1159, ../includes/Elements/Pricing_Table.php:1805, ../includes/Elements/Team_Member.php:474, ../includes/Elements/Testimonial.php:370, ../includes/Elements/Testimonial.php:468, ../includes/Elements/Testimonial.php:509, ../includes/Elements/Testimonial.php:550, ../includes/Elements/Testimonial.php:583, ../includes/Elements/Tooltip.php:353, ../includes/Elements/Tooltip.php:602, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1302, ../includes/Traits/Controls.php:1347
381
  msgid "Margin"
382
  msgstr ""
383
 
384
- #: ../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:257, ../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:765, ../includes/Elements/Info_Box.php:996, ../includes/Elements/Info_Box.php:1227, ../includes/Elements/Info_Box.php:1338, ../includes/Elements/Login_Register.php:2522, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3223, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1857, ../includes/Elements/Product_Grid.php:746, ../includes/Elements/Product_Grid.php:1370, ../includes/Elements/Product_Grid.php:1785, ../includes/Elements/Product_Grid.php:2075, ../includes/Elements/Product_Grid.php:2505, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:393, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:886, ../includes/Elements/Woo_Checkout.php:929, ../includes/Elements/Woo_Checkout.php:1072, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1589, ../includes/Elements/Woo_Checkout.php:2049, ../includes/Elements/Woo_Checkout.php:2219, ../includes/Elements/Woo_Checkout.php:2373, ../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:1179, ../includes/Traits/Controls.php:1366
385
  msgid "Normal"
386
  msgstr ""
387
 
388
- #: ../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:337, ../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:836, ../includes/Elements/Info_Box.php:1067, ../includes/Elements/Info_Box.php:1273, ../includes/Elements/Info_Box.php:1448, ../includes/Elements/Login_Register.php:3097, ../includes/Elements/Login_Register.php:3418, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1926, ../includes/Elements/Product_Grid.php:796, ../includes/Elements/Product_Grid.php:1439, ../includes/Elements/Product_Grid.php:1891, ../includes/Elements/Product_Grid.php:2113, ../includes/Elements/Product_Grid.php:2556, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:436, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:902, ../includes/Elements/Woo_Checkout.php:946, ../includes/Elements/Woo_Checkout.php:1088, ../includes/Elements/Woo_Checkout.php:1331, ../includes/Elements/Woo_Checkout.php:1629, ../includes/Elements/Woo_Checkout.php:2065, ../includes/Elements/Woo_Checkout.php:2413, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1234, ../includes/Traits/Controls.php:1428
389
  msgid "Hover"
390
  msgstr ""
391
 
392
- #: ../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:757, ../includes/Elements/Facebook_Feed.php:795, ../includes/Elements/Facebook_Feed.php:835, ../includes/Elements/Facebook_Feed.php:883, ../includes/Elements/Facebook_Feed.php:921, ../includes/Elements/Facebook_Feed.php:959, ../includes/Elements/Facebook_Feed.php:1012, ../includes/Elements/Facebook_Feed.php:1050, ../includes/Elements/Facebook_Feed.php:1088, ../includes/Elements/Facebook_Feed.php:1120, ../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:523, ../includes/Elements/Image_Accordion.php:552, ../includes/Elements/Info_Box.php:1352, ../includes/Elements/Info_Box.php:1428, ../includes/Elements/Login_Register.php:2259, ../includes/Elements/Login_Register.php:2350, ../includes/Elements/Login_Register.php:2763, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:360, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:825, ../includes/Elements/Pricing_Table.php:886, ../includes/Elements/Pricing_Table.php:950, ../includes/Elements/Pricing_Table.php:1041, ../includes/Elements/Pricing_Table.php:1070, ../includes/Elements/Pricing_Table.php:1111, ../includes/Elements/Pricing_Table.php:1140, ../includes/Elements/Pricing_Table.php:1180, ../includes/Elements/Pricing_Table.php:1215, ../includes/Elements/Pricing_Table.php:1361, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Product_Grid.php:1201, ../includes/Elements/Product_Grid.php:1790, ../includes/Elements/Product_Grid.php:1896, ../includes/Elements/Product_Grid.php:2231, ../includes/Elements/Product_Grid.php:2409, ../includes/Elements/Product_Grid.php:2449, ../includes/Elements/Product_Grid.php:2510, ../includes/Elements/Product_Grid.php:2561, ../includes/Elements/Product_Grid.php:2714, ../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:558, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:1041, ../includes/Elements/Woo_Checkout.php:1077, ../includes/Elements/Woo_Checkout.php:1093, ../includes/Elements/Woo_Checkout.php:1161, ../includes/Elements/Woo_Checkout.php:1260, ../includes/Elements/Woo_Checkout.php:1310, ../includes/Elements/Woo_Checkout.php:1350, ../includes/Elements/Woo_Checkout.php:1447, ../includes/Elements/Woo_Checkout.php:1608, ../includes/Elements/Woo_Checkout.php:1648, ../includes/Elements/Woo_Checkout.php:1766, ../includes/Elements/Woo_Checkout.php:1810, ../includes/Elements/Woo_Checkout.php:1854, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:1999, ../includes/Elements/Woo_Checkout.php:2039, ../includes/Elements/Woo_Checkout.php:2226, ../includes/Elements/Woo_Checkout.php:2247, ../includes/Elements/Woo_Checkout.php:2282, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2392, ../includes/Elements/Woo_Checkout.php:2432, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046
393
  msgid "Color"
394
  msgstr ""
395
 
@@ -537,7 +537,7 @@ msgstr ""
537
  msgid "Tab Style"
538
  msgstr ""
539
 
540
- #: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:471, ../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:936, ../includes/Elements/Info_Box.php:1175, ../includes/Elements/Login_Register.php:2827, ../includes/Elements/Pricing_Table.php:1239, ../includes/Elements/Pricing_Table.php:1646, ../includes/Elements/Pricing_Table.php:1817, ../includes/Elements/Product_Grid.php:1151, ../includes/Elements/Product_Grid.php:2662, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:658
541
  msgid "Icon Size"
542
  msgstr ""
543
 
@@ -549,7 +549,7 @@ msgstr ""
549
  msgid "Distance"
550
  msgstr ""
551
 
552
- #: ../includes/Elements/Adv_Accordion.php:546, ../includes/Elements/Adv_Accordion.php:619, ../includes/Elements/Adv_Accordion.php:692, ../includes/Elements/Adv_Tabs.php:498, ../includes/Elements/Adv_Tabs.php:564, ../includes/Elements/Adv_Tabs.php:632, ../includes/Elements/Dual_Color_Header.php:417, ../includes/Elements/Event_Calendar.php:1435, ../includes/Elements/Feature_List.php:119, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1003, ../includes/Elements/Info_Box.php:1082, ../includes/Elements/Post_Grid.php:948, ../includes/Elements/Pricing_Table.php:342, ../includes/Elements/Pricing_Table.php:1710, ../includes/Elements/Team_Member.php:718, ../includes/Elements/Twitter_Feed.php:607, ../includes/Elements/Woo_Checkout.php:1172, ../includes/Elements/Woo_Checkout.php:1458
553
  msgid "Icon Color"
554
  msgstr ""
555
 
@@ -657,11 +657,11 @@ msgstr ""
657
  msgid "Caret Size"
658
  msgstr ""
659
 
660
- #: ../includes/Elements/Adv_Tabs.php:847, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:237, ../includes/Elements/Content_Ticker.php:270, ../includes/Elements/Content_Ticker.php:285, ../includes/Elements/Content_Ticker.php:320, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/Filterable_Gallery.php:284, ../includes/Elements/Filterable_Gallery.php:429, ../includes/Elements/Filterable_Gallery.php:478, ../includes/Elements/Filterable_Gallery.php:503, ../includes/Elements/Filterable_Gallery.php:528, ../includes/Elements/Filterable_Gallery.php:588, ../includes/Elements/Filterable_Gallery.php:603, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:174, ../includes/Elements/Image_Accordion.php:269, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:390, ../includes/Elements/Login_Register.php:468, ../includes/Elements/Login_Register.php:797, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:113, ../includes/Elements/Post_Grid.php:127, ../includes/Elements/Post_Grid.php:153, ../includes/Elements/Post_Grid.php:167, ../includes/Elements/Post_Grid.php:193, ../includes/Elements/Post_Grid.php:207, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1848, ../includes/Elements/Team_Member.php:704, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:374
661
  msgid "Yes"
662
  msgstr ""
663
 
664
- #: ../includes/Elements/Adv_Tabs.php:848, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:238, ../includes/Elements/Content_Ticker.php:271, ../includes/Elements/Content_Ticker.php:286, ../includes/Elements/Content_Ticker.php:321, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:380, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:285, ../includes/Elements/Filterable_Gallery.php:430, ../includes/Elements/Filterable_Gallery.php:479, ../includes/Elements/Filterable_Gallery.php:504, ../includes/Elements/Filterable_Gallery.php:529, ../includes/Elements/Filterable_Gallery.php:589, ../includes/Elements/Filterable_Gallery.php:604, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:175, ../includes/Elements/Image_Accordion.php:270, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:391, ../includes/Elements/Login_Register.php:469, ../includes/Elements/Login_Register.php:798, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:114, ../includes/Elements/Post_Grid.php:128, ../includes/Elements/Post_Grid.php:154, ../includes/Elements/Post_Grid.php:168, ../includes/Elements/Post_Grid.php:194, ../includes/Elements/Post_Grid.php:208, ../includes/Elements/Pricing_Table.php:220, ../includes/Elements/Pricing_Table.php:1849, ../includes/Elements/Team_Member.php:705, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:375
665
  msgid "No"
666
  msgstr ""
667
 
@@ -685,11 +685,11 @@ msgstr ""
685
  msgid "Show Icon"
686
  msgstr ""
687
 
688
- #: ../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:249, ../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:294, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:321, ../includes/Elements/Facebook_Feed.php:336, ../includes/Elements/Facebook_Feed.php:351, ../includes/Elements/Facebook_Feed.php:417, ../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:604, ../includes/Elements/Login_Register.php:611, ../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:89, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1600, ../includes/Elements/Product_Grid.php:438, ../includes/Elements/Product_Grid.php:533, ../includes/Elements/Product_Grid.php:1362, ../includes/Elements/Product_Grid.php:1973, ../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:626, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:764, ../includes/Traits/Controls.php:812, ../includes/Traits/Controls.php:880, ../includes/Traits/Controls.php:915, ../includes/Traits/Controls.php:946, ../includes/Traits/Controls.php:997, ../includes/Traits/Controls.php:1025, ../includes/Traits/Controls.php:1041, ../includes/Traits/Controls.php:1056
689
  msgid "Show"
690
  msgstr ""
691
 
692
- #: ../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:250, ../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: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/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:511, ../includes/Elements/Login_Register.php:603, ../includes/Elements/Login_Register.php:610, ../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:90, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1601, ../includes/Elements/Product_Grid.php:439, ../includes/Elements/Product_Grid.php:534, ../includes/Elements/Product_Grid.php:1363, ../includes/Elements/Product_Grid.php:1974, ../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:627, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:765, ../includes/Traits/Controls.php:813, ../includes/Traits/Controls.php:881, ../includes/Traits/Controls.php:916, ../includes/Traits/Controls.php:947, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1026, ../includes/Traits/Controls.php:1042, ../includes/Traits/Controls.php:1057
693
  msgid "Hide"
694
  msgstr ""
695
 
@@ -833,7 +833,7 @@ msgstr ""
833
  msgid "List"
834
  msgstr ""
835
 
836
- #: ../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:1744, ../includes/Elements/Product_Grid.php:2642, ../includes/Elements/Twitter_Feed.php:742
837
  msgid "Hover Color"
838
  msgstr ""
839
 
@@ -869,7 +869,7 @@ msgstr ""
869
  msgid "After"
870
  msgstr ""
871
 
872
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1533, ../includes/Elements/Creative_Button.php:412, ../includes/Elements/Pricing_Table.php:838, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1481
873
  msgid "Button Alignment"
874
  msgstr ""
875
 
@@ -897,7 +897,7 @@ msgstr ""
897
  msgid "Field Padding"
898
  msgstr ""
899
 
900
- #: ../includes/Elements/Betterdocs_Search_Form.php:220, ../includes/Elements/Facebook_Feed.php:506, ../includes/Elements/Post_Grid.php:393, ../includes/Elements/Pricing_Table.php:471, ../includes/Elements/Pricing_Table.php:1419
901
  msgid "Shadow"
902
  msgstr ""
903
 
@@ -909,7 +909,7 @@ msgstr ""
909
  msgid "Close Icon"
910
  msgstr ""
911
 
912
- #: ../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:392, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:716, ../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:1970, ../includes/Elements/Product_Grid.php:661, ../includes/Elements/Product_Grid.php:801, ../includes/Elements/Product_Grid.php:1488, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Product_Grid.php:2142, ../includes/Elements/Product_Grid.php:2186, ../includes/Elements/Product_Grid.php:2379, ../includes/Elements/Product_Grid.php:2473, ../includes/Elements/Product_Grid.php:2585, ../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:760, ../includes/Elements/Woo_Checkout.php:967, ../includes/Elements/Woo_Checkout.php:1362, ../includes/Elements/Woo_Checkout.php:1558, ../includes/Elements/Woo_Checkout.php:1660, ../includes/Elements/Woo_Checkout.php:1777, ../includes/Elements/Woo_Checkout.php:1821, ../includes/Elements/Woo_Checkout.php:1865, ../includes/Elements/Woo_Checkout.php:2054, ../includes/Elements/Woo_Checkout.php:2070, ../includes/Elements/Woo_Checkout.php:2332, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1457
913
  msgid "Border Color"
914
  msgstr ""
915
 
@@ -981,7 +981,7 @@ msgstr ""
981
  msgid "Form Alignment"
982
  msgstr ""
983
 
984
- #: ../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:224, ../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:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:153, ../includes/Elements/Team_Member.php:375, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:271, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:119, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:551, ../includes/Traits/Controls.php:1527, ../includes/Traits/Login_Registration.php:528, ../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
985
  msgid "Default"
986
  msgstr ""
987
 
@@ -1129,7 +1129,7 @@ msgstr ""
1129
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1130
  msgstr ""
1131
 
1132
- #: ../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:476, ../includes/Elements/Facebook_Feed.php:489, ../includes/Elements/Facebook_Feed.php:564, ../includes/Elements/Facebook_Feed.php:577, ../includes/Elements/Facebook_Feed.php:662, ../includes/Elements/Facebook_Feed.php:675, ../includes/Elements/Facebook_Feed.php:746, ../includes/Elements/Facebook_Feed.php:784, ../includes/Elements/Facebook_Feed.php:824, ../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:352, ../includes/Elements/Pricing_Table.php:1889, ../includes/Elements/Pricing_Table.php:1958, ../includes/Elements/Product_Grid.php:1390, ../includes/Elements/Product_Grid.php:1404, ../includes/Elements/Product_Grid.php:1458, ../includes/Elements/Product_Grid.php:1471, ../includes/Elements/Product_Grid.php:2725, ../includes/Elements/Product_Grid.php:2782, ../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:1755, ../includes/Elements/Woo_Checkout.php:1799, ../includes/Elements/Woo_Checkout.php:1843, ../includes/Traits/Controls.php:1199, ../includes/Traits/Controls.php:1253
1133
  msgid "Background"
1134
  msgstr ""
1135
 
@@ -1533,7 +1533,7 @@ msgstr ""
1533
  msgid "Expire Message"
1534
  msgstr ""
1535
 
1536
- #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:444, ../includes/Elements/Flip_Box.php:1176, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/Info_Box.php:1344, ../includes/Elements/Post_Grid.php:565, ../includes/Elements/Post_Timeline.php:301, ../includes/Elements/Pricing_Table.php:878, ../includes/Elements/Twitter_Feed.php:663
1537
  msgid "Title Style"
1538
  msgstr ""
1539
 
@@ -1773,7 +1773,7 @@ msgstr ""
1773
  msgid "Icon Style"
1774
  msgstr ""
1775
 
1776
- #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1328, ../includes/Elements/Twitter_Feed.php:877
1777
  msgid "Font Size"
1778
  msgstr ""
1779
 
@@ -1781,7 +1781,7 @@ msgstr ""
1781
  msgid "Data Table"
1782
  msgstr ""
1783
 
1784
- #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1206, ../includes/Elements/Pricing_Table.php:870
1785
  msgid "Header"
1786
  msgstr ""
1787
 
@@ -1897,7 +1897,7 @@ msgstr ""
1897
  msgid "Background Color (Even Row)"
1898
  msgstr ""
1899
 
1900
- #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1290, ../includes/Elements/Filterable_Gallery.php:1673, ../includes/Elements/Flip_Box.php:363, ../includes/Elements/Flip_Box.php:592, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:813, ../includes/Elements/Tooltip.php:365
1901
  msgid "Content Alignment"
1902
  msgstr ""
1903
 
@@ -2637,7 +2637,7 @@ msgstr ""
2637
  msgid "Suffix Text Color"
2638
  msgstr ""
2639
 
2640
- #: ../includes/Elements/Feature_List.php:25, ../includes/Elements/Pricing_Table.php:1207, ../includes/templates/admin/elements.php:63
2641
  msgid "Feature List"
2642
  msgstr ""
2643
 
@@ -3317,7 +3317,7 @@ msgstr ""
3317
  msgid "Section Heading Style"
3318
  msgstr ""
3319
 
3320
- #: ../includes/Elements/Formstack.php:1281, ../includes/Elements/Testimonial.php:562
3321
  msgid "Rating"
3322
  msgstr ""
3323
 
@@ -3349,7 +3349,7 @@ msgstr ""
3349
  msgid "Section Field"
3350
  msgstr ""
3351
 
3352
- #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:776, ../includes/Elements/Pricing_Table.php:1502, ../includes/Elements/Sticky_Video.php:548
3353
  msgid "Border Type"
3354
  msgstr ""
3355
 
@@ -4783,7 +4783,7 @@ msgstr ""
4783
  msgid "On Sale?"
4784
  msgstr ""
4785
 
4786
- #: ../includes/Elements/Pricing_Table.php:227, ../includes/Elements/Pricing_Table.php:1102
4787
  msgid "Sale Price"
4788
  msgstr ""
4789
 
@@ -4871,7 +4871,7 @@ msgstr ""
4871
  msgid "Animation Duration"
4872
  msgstr ""
4873
 
4874
- #: ../includes/Elements/Pricing_Table.php:451, ../includes/Elements/Pricing_Table.php:1532
4875
  msgid "Tooltip Arrow"
4876
  msgstr ""
4877
 
@@ -4903,7 +4903,7 @@ msgstr ""
4903
  msgid "Button Link"
4904
  msgstr ""
4905
 
4906
- #: ../includes/Elements/Pricing_Table.php:615, ../includes/Elements/Pricing_Table.php:1275
4907
  msgid "Ribbon"
4908
  msgstr ""
4909
 
@@ -4935,91 +4935,91 @@ msgstr ""
4935
  msgid "Featured"
4936
  msgstr ""
4937
 
4938
- #: ../includes/Elements/Pricing_Table.php:674
4939
  msgid "Ribbon Alignment"
4940
  msgstr ""
4941
 
4942
- #: ../includes/Elements/Pricing_Table.php:731
4943
  msgid "Pricing Table Style"
4944
  msgstr ""
4945
 
4946
- #: ../includes/Elements/Pricing_Table.php:915, ../includes/Elements/Pricing_Table.php:1283
4947
  msgid "Line Color"
4948
  msgstr ""
4949
 
4950
- #: ../includes/Elements/Pricing_Table.php:938
4951
  msgid "Subtitle Style"
4952
  msgstr ""
4953
 
4954
- #: ../includes/Elements/Pricing_Table.php:1024
4955
  msgid "Pricing"
4956
  msgstr ""
4957
 
4958
- #: ../includes/Elements/Pricing_Table.php:1032
4959
  msgid "Original Price"
4960
  msgstr ""
4961
 
4962
- #: ../includes/Elements/Pricing_Table.php:1061
4963
  msgid "Original Price Currency"
4964
  msgstr ""
4965
 
4966
- #: ../includes/Elements/Pricing_Table.php:1131
4967
  msgid "Sale Price Currency"
4968
  msgstr ""
4969
 
4970
- #: ../includes/Elements/Pricing_Table.php:1171
4971
  msgid "Pricing Period"
4972
  msgstr ""
4973
 
4974
- #: ../includes/Elements/Pricing_Table.php:1227
4975
  msgid "Disable item color"
4976
  msgstr ""
4977
 
4978
- #: ../includes/Elements/Pricing_Table.php:1302, ../includes/Extensions/Table_of_Content.php:694
4979
  msgid "Line Height"
4980
  msgstr ""
4981
 
4982
- #: ../includes/Elements/Pricing_Table.php:1438, ../includes/Elements/Tooltip.php:23, ../includes/templates/admin/elements.php:45
4983
  msgid "Tooltip"
4984
  msgstr ""
4985
 
4986
- #: ../includes/Elements/Pricing_Table.php:1458
4987
  msgid "Arrow Background"
4988
  msgstr ""
4989
 
4990
- #: ../includes/Elements/Pricing_Table.php:1491
4991
  msgid "Refresh your browser after saving the padding value for see changes."
4992
  msgstr ""
4993
 
4994
- #: ../includes/Elements/Pricing_Table.php:1541, ../includes/Elements/Tooltip.php:649
4995
  msgid "Arrow Size"
4996
  msgstr ""
4997
 
4998
- #: ../includes/Elements/Pricing_Table.php:1586
4999
  msgid "Icon Settings"
5000
  msgstr ""
5001
 
5002
- #: ../includes/Elements/Pricing_Table.php:1597
5003
  msgid "Show Background"
5004
  msgstr ""
5005
 
5006
- #: ../includes/Elements/Pricing_Table.php:1630
5007
  msgid "Background Hover Color"
5008
  msgstr ""
5009
 
5010
- #: ../includes/Elements/Pricing_Table.php:1666
5011
  msgid "Icon Area Width"
5012
  msgstr ""
5013
 
5014
- #: ../includes/Elements/Pricing_Table.php:1691
5015
  msgid "Icon Area Height"
5016
  msgstr ""
5017
 
5018
- #: ../includes/Elements/Pricing_Table.php:1722, ../includes/Elements/Team_Member.php:795
5019
  msgid "Icon Hover Color"
5020
  msgstr ""
5021
 
5022
- #: ../includes/Elements/Pricing_Table.php:1846
5023
  msgid "Button Gradient Background"
5024
  msgstr ""
5025
 
@@ -5711,11 +5711,11 @@ msgstr ""
5711
  msgid "Team Member Image Style"
5712
  msgstr ""
5713
 
5714
- #: ../includes/Elements/Team_Member.php:442, ../includes/Elements/Testimonial.php:322
5715
  msgid "Image Width"
5716
  msgstr ""
5717
 
5718
- #: ../includes/Elements/Team_Member.php:508, ../includes/Elements/Testimonial.php:404
5719
  msgid "Rounded Avatar?"
5720
  msgstr ""
5721
 
@@ -5787,11 +5787,11 @@ msgstr ""
5787
  msgid "Testimonial Content"
5788
  msgstr ""
5789
 
5790
- #: ../includes/Elements/Testimonial.php:134, ../includes/Elements/Testimonial.php:440
5791
  msgid "User Name"
5792
  msgstr ""
5793
 
5794
- #: ../includes/Elements/Testimonial.php:144, ../includes/Elements/Testimonial.php:480
5795
  msgid "Company Name"
5796
  msgstr ""
5797
 
@@ -5843,59 +5843,59 @@ msgstr ""
5843
  msgid "Content Bottom | Icon Title Inline"
5844
  msgstr ""
5845
 
5846
- #: ../includes/Elements/Testimonial.php:266
5847
  msgid "Layout Alignment"
5848
  msgstr ""
5849
 
5850
- #: ../includes/Elements/Testimonial.php:298
5851
  msgid "Display User & Company Block?"
5852
  msgstr ""
5853
 
5854
- #: ../includes/Elements/Testimonial.php:311
5855
  msgid "Testimonial Image Style"
5856
  msgstr ""
5857
 
5858
- #: ../includes/Elements/Testimonial.php:348
5859
  msgid "Image Max Width"
5860
  msgstr ""
5861
 
5862
- #: ../includes/Elements/Testimonial.php:432
5863
  msgid "Color, Typography &amp; Spacing"
5864
  msgstr ""
5865
 
5866
- #: ../includes/Elements/Testimonial.php:448
5867
  msgid "User Name Color"
5868
  msgstr ""
5869
 
5870
- #: ../includes/Elements/Testimonial.php:489
5871
  msgid "Company Color"
5872
  msgstr ""
5873
 
5874
- #: ../includes/Elements/Testimonial.php:521
5875
  msgid "Testimonial Text"
5876
  msgstr ""
5877
 
5878
- #: ../includes/Elements/Testimonial.php:530
5879
  msgid "Testimonial Text Color"
5880
  msgstr ""
5881
 
5882
- #: ../includes/Elements/Testimonial.php:571
5883
  msgid "Distance Between Rating Item"
5884
  msgstr ""
5885
 
5886
- #: ../includes/Elements/Testimonial.php:597
5887
  msgid "Quotation Style"
5888
  msgstr ""
5889
 
5890
- #: ../includes/Elements/Testimonial.php:605
5891
  msgid "Quotation Mark Color"
5892
  msgstr ""
5893
 
5894
- #: ../includes/Elements/Testimonial.php:625
5895
  msgid "Quotation Postion From Top"
5896
  msgstr ""
5897
 
5898
- #: ../includes/Elements/Testimonial.php:647
5899
  msgid "Quotation Postion From Right"
5900
  msgstr ""
5901
 
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: ../includes/Classes/Helper.php:168, ../includes/Elements/Adv_Accordion.php:293, ../includes/Elements/Adv_Tabs.php:261, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:349, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:185, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:212, ../includes/Elements/Fancy_Text.php:267, ../includes/Elements/Filterable_Gallery.php:792, ../includes/Elements/Flip_Box.php:726, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:702, ../includes/Elements/Progress_Bar.php:269, ../includes/Elements/Team_Member.php:236, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:503, ../includes/Elements/Twitter_Feed.php:284, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
+ #: ../includes/Classes/Helper.php:175, ../includes/Elements/Adv_Accordion.php:300, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:356, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:192, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:219, ../includes/Elements/Fancy_Text.php:274, ../includes/Elements/Filterable_Gallery.php:799, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:709, ../includes/Elements/Progress_Bar.php:276, ../includes/Elements/Team_Member.php:243, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:510, ../includes/Elements/Twitter_Feed.php:291, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
229
  msgid "Pagination Type"
230
  msgstr ""
231
 
232
+ #: ../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:1666, ../includes/Elements/Woo_Checkout.php:1273, ../includes/Elements/Woo_Checkout.php:1571, ../includes/Elements/Woo_Checkout.php:2344
233
  msgid "Button"
234
  msgstr ""
235
 
269
  msgid "Width"
270
  msgstr ""
271
 
272
+ #: ../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:439, ../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:381, ../includes/Elements/Image_Accordion.php:491, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1049, ../includes/Elements/Info_Box.php:1129, ../includes/Elements/Login_Register.php:2687, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:283, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:2105, ../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:1493, ../includes/Elements/Woo_Checkout.php:1739, ../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:1212, ../includes/Traits/Controls.php:1266, ../includes/Traits/Controls.php:1396
273
  msgid "Border"
274
  msgstr ""
275
 
276
+ #: ../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:320, ../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:464, ../includes/Elements/Facebook_Feed.php:524, ../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:389, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1211, ../includes/Elements/Login_Register.php:1489, ../includes/Elements/Login_Register.php:1724, ../includes/Elements/Login_Register.php:1898, ../includes/Elements/Login_Register.php:2054, ../includes/Elements/Login_Register.php:2194, ../includes/Elements/Login_Register.php:2288, ../includes/Elements/Login_Register.php:2379, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2589, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:3083, ../includes/Elements/Login_Register.php:3120, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3441, ../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:291, ../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:828, ../includes/Elements/Product_Grid.php:1851, ../includes/Elements/Product_Grid.php:2205, ../includes/Elements/Product_Grid.php:2541, ../includes/Elements/Product_Grid.php:2736, ../includes/Elements/Product_Grid.php:2768, ../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:633, ../includes/Elements/Woo_Checkout.php:782, ../includes/Elements/Woo_Checkout.php:978, ../includes/Elements/Woo_Checkout.php:1226, ../includes/Elements/Woo_Checkout.php:1379, ../includes/Elements/Woo_Checkout.php:1502, ../includes/Elements/Woo_Checkout.php:1677, ../includes/Elements/Woo_Checkout.php:1885, ../includes/Elements/Woo_Checkout.php:2087, ../includes/Elements/Woo_Checkout.php:2181, ../includes/Elements/Woo_Checkout.php:2461, ../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:1220, ../includes/Traits/Controls.php:1274, ../includes/Traits/Controls.php:1404
277
  msgid "Border Radius"
278
  msgstr ""
279
 
293
  msgid "Text Alignment"
294
  msgstr ""
295
 
296
+ #: ../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:417, ../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:107, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:663, ../includes/Elements/Login_Register.php:696, ../includes/Elements/Login_Register.php:2496, ../includes/Elements/Login_Register.php:3034, ../includes/Elements/Login_Register.php:3354, ../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:449, ../includes/Elements/Post_Grid.php:604, ../includes/Elements/Post_Grid.php:672, ../includes/Elements/Post_Grid.php:767, ../includes/Elements/Post_Grid.php:850, ../includes/Elements/Post_Timeline.php:327, ../includes/Elements/Post_Timeline.php:383, ../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:580, ../includes/Elements/Product_Grid.php:898, ../includes/Elements/Product_Grid.php:1587, ../includes/Elements/Product_Grid.php:2026, ../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:1485, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1537
297
  msgid "Left"
298
  msgstr ""
299
 
300
+ #: ../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:421, ../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:111, ../includes/Elements/Image_Accordion.php:134, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2500, ../includes/Elements/Login_Register.php:3016, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3315, ../includes/Elements/Login_Register.php:3335, ../includes/Elements/Login_Register.php:3358, ../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:453, ../includes/Elements/Post_Grid.php:608, ../includes/Elements/Post_Grid.php:676, ../includes/Elements/Post_Grid.php:771, ../includes/Elements/Post_Grid.php:854, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:584, ../includes/Elements/Product_Grid.php:902, ../includes/Elements/Product_Grid.php:2030, ../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:1489
301
  msgid "Center"
302
  msgstr ""
303
 
304
+ #: ../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:425, ../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:115, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:667, ../includes/Elements/Login_Register.php:2504, ../includes/Elements/Login_Register.php:3042, ../includes/Elements/Login_Register.php:3362, ../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:457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Grid.php:680, ../includes/Elements/Post_Grid.php:775, ../includes/Elements/Post_Grid.php:858, ../includes/Elements/Post_Timeline.php:335, ../includes/Elements/Post_Timeline.php:391, ../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:588, ../includes/Elements/Product_Grid.php:906, ../includes/Elements/Product_Grid.php:1591, ../includes/Elements/Product_Grid.php:2034, ../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:1493, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1537
305
  msgid "Right"
306
  msgstr ""
307
 
308
+ #: ../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:262, ../includes/Elements/Creative_Button.php:342, ../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:1233, ../includes/Elements/Info_Box.php:1279, ../includes/Elements/Login_Register.php:2525, ../includes/Elements/Login_Register.php:2664, ../includes/Elements/Login_Register.php:3063, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3384, ../includes/Elements/Login_Register.php:3421, ../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:2080, ../includes/Elements/Product_Grid.php:2118, ../includes/Elements/Product_Grid.php:2162, ../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:1186, ../includes/Traits/Controls.php:1241, ../includes/Traits/Controls.php:1371, ../includes/Traits/Controls.php:1433
309
  msgid "Text Color"
310
  msgstr ""
311
 
312
+ #: ../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:275, ../includes/Elements/Creative_Button.php:355, ../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:344, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1033, ../includes/Elements/Info_Box.php:1095, ../includes/Elements/Info_Box.php:1245, ../includes/Elements/Info_Box.php:1291, ../includes/Elements/Login_Register.php:1504, ../includes/Elements/Login_Register.php:1637, ../includes/Elements/Login_Register.php:1739, ../includes/Elements/Login_Register.php:1913, ../includes/Elements/Login_Register.php:2269, ../includes/Elements/Login_Register.php:2360, ../includes/Elements/Login_Register.php:2539, ../includes/Elements/Login_Register.php:2577, ../includes/Elements/Login_Register.php:2674, ../includes/Elements/Login_Register.php:3071, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3392, ../includes/Elements/Login_Register.php:3429, ../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:924, ../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:1694, ../includes/Elements/Product_Grid.php:1802, ../includes/Elements/Product_Grid.php:1908, ../includes/Elements/Product_Grid.php:2092, ../includes/Elements/Product_Grid.php:2130, ../includes/Elements/Product_Grid.php:2174, ../includes/Elements/Product_Grid.php:2419, ../includes/Elements/Product_Grid.php:2461, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2573, ../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:603, ../includes/Elements/Woo_Checkout.php:718, ../includes/Elements/Woo_Checkout.php:840, ../includes/Elements/Woo_Checkout.php:1298, ../includes/Elements/Woo_Checkout.php:1338, ../includes/Elements/Woo_Checkout.php:1596, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:2140, ../includes/Elements/Woo_Checkout.php:2270, ../includes/Elements/Woo_Checkout.php:2380, ../includes/Elements/Woo_Checkout.php:2420, ../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:1383, ../includes/Traits/Controls.php:1445
313
  msgid "Background Color"
314
  msgstr ""
315
 
317
  msgid "Cell Border"
318
  msgstr ""
319
 
320
+ #: ../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:593, ../includes/Elements/Facebook_Feed.php:619, ../includes/Elements/Facebook_Feed.php:691, ../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:356, ../includes/Elements/Image_Accordion.php:468, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1467, ../includes/Elements/Login_Register.php:2032, ../includes/Elements/Login_Register.php:2171, ../includes/Elements/Login_Register.php:2244, ../includes/Elements/Login_Register.php:2335, ../includes/Elements/Login_Register.php:2437, ../includes/Elements/Login_Register.php:2472, ../includes/Elements/Login_Register.php:2634, ../includes/Elements/Login_Register.php:2976, ../includes/Elements/Login_Register.php:3275, ../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:691, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1333, ../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:614, ../includes/Elements/Woo_Checkout.php:1206, ../includes/Elements/Woo_Checkout.php:1399, ../includes/Elements/Woo_Checkout.php:1529, ../includes/Elements/Woo_Checkout.php:1697, ../includes/Elements/Woo_Checkout.php:1912, ../includes/Elements/Woo_Checkout.php:2162, ../includes/Elements/Woo_Checkout.php:2493, ../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:1290, ../includes/Traits/Controls.php:1335
321
  msgid "Padding"
322
  msgstr ""
323
 
377
  msgid "Alignment"
378
  msgstr ""
379
 
380
+ #: ../includes/Elements/Advanced_Data_Table.php:1135, ../includes/Elements/Adv_Accordion.php:342, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:792, ../includes/Elements/Adv_Tabs.php:311, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1584, ../includes/Elements/Contact_Form_7.php:1681, ../includes/Elements/Content_Ticker.php:507, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:332, ../includes/Elements/Dual_Color_Header.php:630, ../includes/Elements/Fancy_Text.php:495, ../includes/Elements/Filterable_Gallery.php:855, ../includes/Elements/Filterable_Gallery.php:932, ../includes/Elements/Filterable_Gallery.php:1114, ../includes/Elements/Filterable_Gallery.php:1759, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Flip_Box.php:1335, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:368, ../includes/Elements/Image_Accordion.php:457, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:982, ../includes/Elements/Info_Box.php:1372, ../includes/Elements/Login_Register.php:1452, ../includes/Elements/Login_Register.php:2017, ../includes/Elements/Login_Register.php:2156, ../includes/Elements/Login_Register.php:2229, ../includes/Elements/Login_Register.php:2320, ../includes/Elements/Login_Register.php:2422, ../includes/Elements/Login_Register.php:2457, ../includes/Elements/Login_Register.php:2619, ../includes/Elements/Login_Register.php:2961, ../includes/Elements/Login_Register.php:3196, ../includes/Elements/Login_Register.php:3260, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:496, ../includes/Elements/Post_Grid.php:511, ../includes/Elements/Post_Grid.php:635, ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Pricing_Table.php:765, ../includes/Elements/Pricing_Table.php:1091, ../includes/Elements/Pricing_Table.php:1161, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Team_Member.php:474, ../includes/Elements/Testimonial.php:408, ../includes/Elements/Testimonial.php:506, ../includes/Elements/Testimonial.php:547, ../includes/Elements/Testimonial.php:588, ../includes/Elements/Testimonial.php:621, ../includes/Elements/Tooltip.php:353, ../includes/Elements/Tooltip.php:602, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1302, ../includes/Traits/Controls.php:1347
381
  msgid "Margin"
382
  msgstr ""
383
 
384
+ #: ../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:257, ../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:765, ../includes/Elements/Info_Box.php:996, ../includes/Elements/Info_Box.php:1227, ../includes/Elements/Info_Box.php:1338, ../includes/Elements/Login_Register.php:2522, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3223, ../includes/Elements/Login_Register.php:3381, ../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:746, ../includes/Elements/Product_Grid.php:1370, ../includes/Elements/Product_Grid.php:1785, ../includes/Elements/Product_Grid.php:2075, ../includes/Elements/Product_Grid.php:2505, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:393, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:886, ../includes/Elements/Woo_Checkout.php:929, ../includes/Elements/Woo_Checkout.php:1072, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1589, ../includes/Elements/Woo_Checkout.php:2049, ../includes/Elements/Woo_Checkout.php:2219, ../includes/Elements/Woo_Checkout.php:2373, ../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:1179, ../includes/Traits/Controls.php:1366
385
  msgid "Normal"
386
  msgstr ""
387
 
388
+ #: ../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:337, ../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:836, ../includes/Elements/Info_Box.php:1067, ../includes/Elements/Info_Box.php:1273, ../includes/Elements/Info_Box.php:1448, ../includes/Elements/Login_Register.php:3097, ../includes/Elements/Login_Register.php:3418, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:796, ../includes/Elements/Product_Grid.php:1439, ../includes/Elements/Product_Grid.php:1891, ../includes/Elements/Product_Grid.php:2113, ../includes/Elements/Product_Grid.php:2556, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:436, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:902, ../includes/Elements/Woo_Checkout.php:946, ../includes/Elements/Woo_Checkout.php:1088, ../includes/Elements/Woo_Checkout.php:1331, ../includes/Elements/Woo_Checkout.php:1629, ../includes/Elements/Woo_Checkout.php:2065, ../includes/Elements/Woo_Checkout.php:2413, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1234, ../includes/Traits/Controls.php:1428
389
  msgid "Hover"
390
  msgstr ""
391
 
392
+ #: ../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:757, ../includes/Elements/Facebook_Feed.php:795, ../includes/Elements/Facebook_Feed.php:835, ../includes/Elements/Facebook_Feed.php:883, ../includes/Elements/Facebook_Feed.php:921, ../includes/Elements/Facebook_Feed.php:959, ../includes/Elements/Facebook_Feed.php:1012, ../includes/Elements/Facebook_Feed.php:1050, ../includes/Elements/Facebook_Feed.php:1088, ../includes/Elements/Facebook_Feed.php:1120, ../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:523, ../includes/Elements/Image_Accordion.php:552, ../includes/Elements/Info_Box.php:1352, ../includes/Elements/Info_Box.php:1428, ../includes/Elements/Login_Register.php:2259, ../includes/Elements/Login_Register.php:2350, ../includes/Elements/Login_Register.php:2763, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:360, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:825, ../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:1201, ../includes/Elements/Product_Grid.php:1790, ../includes/Elements/Product_Grid.php:1896, ../includes/Elements/Product_Grid.php:2231, ../includes/Elements/Product_Grid.php:2409, ../includes/Elements/Product_Grid.php:2449, ../includes/Elements/Product_Grid.php:2510, ../includes/Elements/Product_Grid.php:2561, ../includes/Elements/Product_Grid.php:2714, ../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:558, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:1041, ../includes/Elements/Woo_Checkout.php:1077, ../includes/Elements/Woo_Checkout.php:1093, ../includes/Elements/Woo_Checkout.php:1161, ../includes/Elements/Woo_Checkout.php:1260, ../includes/Elements/Woo_Checkout.php:1310, ../includes/Elements/Woo_Checkout.php:1350, ../includes/Elements/Woo_Checkout.php:1447, ../includes/Elements/Woo_Checkout.php:1608, ../includes/Elements/Woo_Checkout.php:1648, ../includes/Elements/Woo_Checkout.php:1766, ../includes/Elements/Woo_Checkout.php:1810, ../includes/Elements/Woo_Checkout.php:1854, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:1999, ../includes/Elements/Woo_Checkout.php:2039, ../includes/Elements/Woo_Checkout.php:2226, ../includes/Elements/Woo_Checkout.php:2247, ../includes/Elements/Woo_Checkout.php:2282, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2392, ../includes/Elements/Woo_Checkout.php:2432, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046
393
  msgid "Color"
394
  msgstr ""
395
 
537
  msgid "Tab Style"
538
  msgstr ""
539
 
540
+ #: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:471, ../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:936, ../includes/Elements/Info_Box.php:1175, ../includes/Elements/Login_Register.php:2827, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:1151, ../includes/Elements/Product_Grid.php:2662, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:658
541
  msgid "Icon Size"
542
  msgstr ""
543
 
549
  msgid "Distance"
550
  msgstr ""
551
 
552
+ #: ../includes/Elements/Adv_Accordion.php:546, ../includes/Elements/Adv_Accordion.php:619, ../includes/Elements/Adv_Accordion.php:692, ../includes/Elements/Adv_Tabs.php:498, ../includes/Elements/Adv_Tabs.php:564, ../includes/Elements/Adv_Tabs.php:632, ../includes/Elements/Dual_Color_Header.php:417, ../includes/Elements/Event_Calendar.php:1435, ../includes/Elements/Feature_List.php:119, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1003, ../includes/Elements/Info_Box.php:1082, ../includes/Elements/Post_Grid.php:948, ../includes/Elements/Pricing_Table.php:342, ../includes/Elements/Pricing_Table.php:1740, ../includes/Elements/Team_Member.php:718, ../includes/Elements/Twitter_Feed.php:607, ../includes/Elements/Woo_Checkout.php:1172, ../includes/Elements/Woo_Checkout.php:1458
553
  msgid "Icon Color"
554
  msgstr ""
555
 
657
  msgid "Caret Size"
658
  msgstr ""
659
 
660
+ #: ../includes/Elements/Adv_Tabs.php:847, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:237, ../includes/Elements/Content_Ticker.php:270, ../includes/Elements/Content_Ticker.php:285, ../includes/Elements/Content_Ticker.php:320, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/Filterable_Gallery.php:284, ../includes/Elements/Filterable_Gallery.php:429, ../includes/Elements/Filterable_Gallery.php:478, ../includes/Elements/Filterable_Gallery.php:503, ../includes/Elements/Filterable_Gallery.php:528, ../includes/Elements/Filterable_Gallery.php:588, ../includes/Elements/Filterable_Gallery.php:603, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:174, ../includes/Elements/Image_Accordion.php:269, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:390, ../includes/Elements/Login_Register.php:468, ../includes/Elements/Login_Register.php:797, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:113, ../includes/Elements/Post_Grid.php:127, ../includes/Elements/Post_Grid.php:153, ../includes/Elements/Post_Grid.php:167, ../includes/Elements/Post_Grid.php:193, ../includes/Elements/Post_Grid.php:207, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Team_Member.php:704, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:374
661
  msgid "Yes"
662
  msgstr ""
663
 
664
+ #: ../includes/Elements/Adv_Tabs.php:848, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:238, ../includes/Elements/Content_Ticker.php:271, ../includes/Elements/Content_Ticker.php:286, ../includes/Elements/Content_Ticker.php:321, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:380, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:285, ../includes/Elements/Filterable_Gallery.php:430, ../includes/Elements/Filterable_Gallery.php:479, ../includes/Elements/Filterable_Gallery.php:504, ../includes/Elements/Filterable_Gallery.php:529, ../includes/Elements/Filterable_Gallery.php:589, ../includes/Elements/Filterable_Gallery.php:604, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:175, ../includes/Elements/Image_Accordion.php:270, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:391, ../includes/Elements/Login_Register.php:469, ../includes/Elements/Login_Register.php:798, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:114, ../includes/Elements/Post_Grid.php:128, ../includes/Elements/Post_Grid.php:154, ../includes/Elements/Post_Grid.php:168, ../includes/Elements/Post_Grid.php:194, ../includes/Elements/Post_Grid.php:208, ../includes/Elements/Pricing_Table.php:220, ../includes/Elements/Pricing_Table.php:1879, ../includes/Elements/Team_Member.php:705, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:375
665
  msgid "No"
666
  msgstr ""
667
 
685
  msgid "Show Icon"
686
  msgstr ""
687
 
688
+ #: ../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:249, ../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:294, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:321, ../includes/Elements/Facebook_Feed.php:336, ../includes/Elements/Facebook_Feed.php:351, ../includes/Elements/Facebook_Feed.php:417, ../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:604, ../includes/Elements/Login_Register.php:611, ../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:89, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:438, ../includes/Elements/Product_Grid.php:533, ../includes/Elements/Product_Grid.php:1362, ../includes/Elements/Product_Grid.php:1973, ../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:626, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:764, ../includes/Traits/Controls.php:812, ../includes/Traits/Controls.php:880, ../includes/Traits/Controls.php:915, ../includes/Traits/Controls.php:946, ../includes/Traits/Controls.php:997, ../includes/Traits/Controls.php:1025, ../includes/Traits/Controls.php:1041, ../includes/Traits/Controls.php:1056
689
  msgid "Show"
690
  msgstr ""
691
 
692
+ #: ../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:250, ../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: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/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:511, ../includes/Elements/Login_Register.php:603, ../includes/Elements/Login_Register.php:610, ../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:90, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:439, ../includes/Elements/Product_Grid.php:534, ../includes/Elements/Product_Grid.php:1363, ../includes/Elements/Product_Grid.php:1974, ../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:627, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:765, ../includes/Traits/Controls.php:813, ../includes/Traits/Controls.php:881, ../includes/Traits/Controls.php:916, ../includes/Traits/Controls.php:947, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1026, ../includes/Traits/Controls.php:1042, ../includes/Traits/Controls.php:1057
693
  msgid "Hide"
694
  msgstr ""
695
 
833
  msgid "List"
834
  msgstr ""
835
 
836
+ #: ../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:2642, ../includes/Elements/Twitter_Feed.php:742
837
  msgid "Hover Color"
838
  msgstr ""
839
 
869
  msgid "After"
870
  msgstr ""
871
 
872
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1533, ../includes/Elements/Creative_Button.php:412, ../includes/Elements/Pricing_Table.php:840, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1481
873
  msgid "Button Alignment"
874
  msgstr ""
875
 
897
  msgid "Field Padding"
898
  msgstr ""
899
 
900
+ #: ../includes/Elements/Betterdocs_Search_Form.php:220, ../includes/Elements/Facebook_Feed.php:506, ../includes/Elements/Post_Grid.php:393, ../includes/Elements/Pricing_Table.php:471, ../includes/Elements/Pricing_Table.php:1449
901
  msgid "Shadow"
902
  msgstr ""
903
 
909
  msgid "Close Icon"
910
  msgstr ""
911
 
912
+ #: ../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:392, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:716, ../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:661, ../includes/Elements/Product_Grid.php:801, ../includes/Elements/Product_Grid.php:1488, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Product_Grid.php:2142, ../includes/Elements/Product_Grid.php:2186, ../includes/Elements/Product_Grid.php:2379, ../includes/Elements/Product_Grid.php:2473, ../includes/Elements/Product_Grid.php:2585, ../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:760, ../includes/Elements/Woo_Checkout.php:967, ../includes/Elements/Woo_Checkout.php:1362, ../includes/Elements/Woo_Checkout.php:1558, ../includes/Elements/Woo_Checkout.php:1660, ../includes/Elements/Woo_Checkout.php:1777, ../includes/Elements/Woo_Checkout.php:1821, ../includes/Elements/Woo_Checkout.php:1865, ../includes/Elements/Woo_Checkout.php:2054, ../includes/Elements/Woo_Checkout.php:2070, ../includes/Elements/Woo_Checkout.php:2332, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1457
913
  msgid "Border Color"
914
  msgstr ""
915
 
981
  msgid "Form Alignment"
982
  msgstr ""
983
 
984
+ #: ../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:224, ../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:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:153, ../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:119, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:551, ../includes/Traits/Controls.php:1527, ../includes/Traits/Login_Registration.php:528, ../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
985
  msgid "Default"
986
  msgstr ""
987
 
1129
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1130
  msgstr ""
1131
 
1132
+ #: ../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:476, ../includes/Elements/Facebook_Feed.php:489, ../includes/Elements/Facebook_Feed.php:564, ../includes/Elements/Facebook_Feed.php:577, ../includes/Elements/Facebook_Feed.php:662, ../includes/Elements/Facebook_Feed.php:675, ../includes/Elements/Facebook_Feed.php:746, ../includes/Elements/Facebook_Feed.php:784, ../includes/Elements/Facebook_Feed.php:824, ../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:352, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:1390, ../includes/Elements/Product_Grid.php:1404, ../includes/Elements/Product_Grid.php:1458, ../includes/Elements/Product_Grid.php:1471, ../includes/Elements/Product_Grid.php:2725, ../includes/Elements/Product_Grid.php:2782, ../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:1755, ../includes/Elements/Woo_Checkout.php:1799, ../includes/Elements/Woo_Checkout.php:1843, ../includes/Traits/Controls.php:1199, ../includes/Traits/Controls.php:1253
1133
  msgid "Background"
1134
  msgstr ""
1135
 
1533
  msgid "Expire Message"
1534
  msgstr ""
1535
 
1536
+ #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:444, ../includes/Elements/Flip_Box.php:1176, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/Info_Box.php:1344, ../includes/Elements/Post_Grid.php:565, ../includes/Elements/Post_Timeline.php:301, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Twitter_Feed.php:663
1537
  msgid "Title Style"
1538
  msgstr ""
1539
 
1773
  msgid "Icon Style"
1774
  msgstr ""
1775
 
1776
+ #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1334, ../includes/Elements/Twitter_Feed.php:877
1777
  msgid "Font Size"
1778
  msgstr ""
1779
 
1781
  msgid "Data Table"
1782
  msgstr ""
1783
 
1784
+ #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1206, ../includes/Elements/Pricing_Table.php:872
1785
  msgid "Header"
1786
  msgstr ""
1787
 
1897
  msgid "Background Color (Even Row)"
1898
  msgstr ""
1899
 
1900
+ #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1290, ../includes/Elements/Filterable_Gallery.php:1673, ../includes/Elements/Flip_Box.php:363, ../includes/Elements/Flip_Box.php:592, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Tooltip.php:365
1901
  msgid "Content Alignment"
1902
  msgstr ""
1903
 
2637
  msgid "Suffix Text Color"
2638
  msgstr ""
2639
 
2640
+ #: ../includes/Elements/Feature_List.php:25, ../includes/Elements/Pricing_Table.php:1209, ../includes/templates/admin/elements.php:63
2641
  msgid "Feature List"
2642
  msgstr ""
2643
 
3317
  msgid "Section Heading Style"
3318
  msgstr ""
3319
 
3320
+ #: ../includes/Elements/Formstack.php:1281, ../includes/Elements/Testimonial.php:600
3321
  msgid "Rating"
3322
  msgstr ""
3323
 
3349
  msgid "Section Field"
3350
  msgstr ""
3351
 
3352
+ #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:778, ../includes/Elements/Pricing_Table.php:1532, ../includes/Elements/Sticky_Video.php:548
3353
  msgid "Border Type"
3354
  msgstr ""
3355
 
4783
  msgid "On Sale?"
4784
  msgstr ""
4785
 
4786
+ #: ../includes/Elements/Pricing_Table.php:227, ../includes/Elements/Pricing_Table.php:1104
4787
  msgid "Sale Price"
4788
  msgstr ""
4789
 
4871
  msgid "Animation Duration"
4872
  msgstr ""
4873
 
4874
+ #: ../includes/Elements/Pricing_Table.php:451, ../includes/Elements/Pricing_Table.php:1562
4875
  msgid "Tooltip Arrow"
4876
  msgstr ""
4877
 
4903
  msgid "Button Link"
4904
  msgstr ""
4905
 
4906
+ #: ../includes/Elements/Pricing_Table.php:615, ../includes/Elements/Pricing_Table.php:1277
4907
  msgid "Ribbon"
4908
  msgstr ""
4909
 
4935
  msgid "Featured"
4936
  msgstr ""
4937
 
4938
+ #: ../includes/Elements/Pricing_Table.php:676
4939
  msgid "Ribbon Alignment"
4940
  msgstr ""
4941
 
4942
+ #: ../includes/Elements/Pricing_Table.php:733
4943
  msgid "Pricing Table Style"
4944
  msgstr ""
4945
 
4946
+ #: ../includes/Elements/Pricing_Table.php:917, ../includes/Elements/Pricing_Table.php:1285
4947
  msgid "Line Color"
4948
  msgstr ""
4949
 
4950
+ #: ../includes/Elements/Pricing_Table.php:940
4951
  msgid "Subtitle Style"
4952
  msgstr ""
4953
 
4954
+ #: ../includes/Elements/Pricing_Table.php:1026
4955
  msgid "Pricing"
4956
  msgstr ""
4957
 
4958
+ #: ../includes/Elements/Pricing_Table.php:1034
4959
  msgid "Original Price"
4960
  msgstr ""
4961
 
4962
+ #: ../includes/Elements/Pricing_Table.php:1063
4963
  msgid "Original Price Currency"
4964
  msgstr ""
4965
 
4966
+ #: ../includes/Elements/Pricing_Table.php:1133
4967
  msgid "Sale Price Currency"
4968
  msgstr ""
4969
 
4970
+ #: ../includes/Elements/Pricing_Table.php:1173
4971
  msgid "Pricing Period"
4972
  msgstr ""
4973
 
4974
+ #: ../includes/Elements/Pricing_Table.php:1229
4975
  msgid "Disable item color"
4976
  msgstr ""
4977
 
4978
+ #: ../includes/Elements/Pricing_Table.php:1306, ../includes/Extensions/Table_of_Content.php:694
4979
  msgid "Line Height"
4980
  msgstr ""
4981
 
4982
+ #: ../includes/Elements/Pricing_Table.php:1468, ../includes/Elements/Tooltip.php:23, ../includes/templates/admin/elements.php:45
4983
  msgid "Tooltip"
4984
  msgstr ""
4985
 
4986
+ #: ../includes/Elements/Pricing_Table.php:1488
4987
  msgid "Arrow Background"
4988
  msgstr ""
4989
 
4990
+ #: ../includes/Elements/Pricing_Table.php:1521
4991
  msgid "Refresh your browser after saving the padding value for see changes."
4992
  msgstr ""
4993
 
4994
+ #: ../includes/Elements/Pricing_Table.php:1571, ../includes/Elements/Tooltip.php:649
4995
  msgid "Arrow Size"
4996
  msgstr ""
4997
 
4998
+ #: ../includes/Elements/Pricing_Table.php:1616
4999
  msgid "Icon Settings"
5000
  msgstr ""
5001
 
5002
+ #: ../includes/Elements/Pricing_Table.php:1627
5003
  msgid "Show Background"
5004
  msgstr ""
5005
 
5006
+ #: ../includes/Elements/Pricing_Table.php:1660
5007
  msgid "Background Hover Color"
5008
  msgstr ""
5009
 
5010
+ #: ../includes/Elements/Pricing_Table.php:1696
5011
  msgid "Icon Area Width"
5012
  msgstr ""
5013
 
5014
+ #: ../includes/Elements/Pricing_Table.php:1721
5015
  msgid "Icon Area Height"
5016
  msgstr ""
5017
 
5018
+ #: ../includes/Elements/Pricing_Table.php:1752, ../includes/Elements/Team_Member.php:795
5019
  msgid "Icon Hover Color"
5020
  msgstr ""
5021
 
5022
+ #: ../includes/Elements/Pricing_Table.php:1876
5023
  msgid "Button Gradient Background"
5024
  msgstr ""
5025
 
5711
  msgid "Team Member Image Style"
5712
  msgstr ""
5713
 
5714
+ #: ../includes/Elements/Team_Member.php:442, ../includes/Elements/Testimonial.php:360
5715
  msgid "Image Width"
5716
  msgstr ""
5717
 
5718
+ #: ../includes/Elements/Team_Member.php:508, ../includes/Elements/Testimonial.php:442
5719
  msgid "Rounded Avatar?"
5720
  msgstr ""
5721
 
5787
  msgid "Testimonial Content"
5788
  msgstr ""
5789
 
5790
+ #: ../includes/Elements/Testimonial.php:134, ../includes/Elements/Testimonial.php:478
5791
  msgid "User Name"
5792
  msgstr ""
5793
 
5794
+ #: ../includes/Elements/Testimonial.php:144, ../includes/Elements/Testimonial.php:518
5795
  msgid "Company Name"
5796
  msgstr ""
5797
 
5843
  msgid "Content Bottom | Icon Title Inline"
5844
  msgstr ""
5845
 
5846
+ #: ../includes/Elements/Testimonial.php:304
5847
  msgid "Layout Alignment"
5848
  msgstr ""
5849
 
5850
+ #: ../includes/Elements/Testimonial.php:336
5851
  msgid "Display User & Company Block?"
5852
  msgstr ""
5853
 
5854
+ #: ../includes/Elements/Testimonial.php:349
5855
  msgid "Testimonial Image Style"
5856
  msgstr ""
5857
 
5858
+ #: ../includes/Elements/Testimonial.php:386
5859
  msgid "Image Max Width"
5860
  msgstr ""
5861
 
5862
+ #: ../includes/Elements/Testimonial.php:470
5863
  msgid "Color, Typography &amp; Spacing"
5864
  msgstr ""
5865
 
5866
+ #: ../includes/Elements/Testimonial.php:486
5867
  msgid "User Name Color"
5868
  msgstr ""
5869
 
5870
+ #: ../includes/Elements/Testimonial.php:527
5871
  msgid "Company Color"
5872
  msgstr ""
5873
 
5874
+ #: ../includes/Elements/Testimonial.php:559
5875
  msgid "Testimonial Text"
5876
  msgstr ""
5877
 
5878
+ #: ../includes/Elements/Testimonial.php:568
5879
  msgid "Testimonial Text Color"
5880
  msgstr ""
5881
 
5882
+ #: ../includes/Elements/Testimonial.php:609
5883
  msgid "Distance Between Rating Item"
5884
  msgstr ""
5885
 
5886
+ #: ../includes/Elements/Testimonial.php:635
5887
  msgid "Quotation Style"
5888
  msgstr ""
5889
 
5890
+ #: ../includes/Elements/Testimonial.php:643
5891
  msgid "Quotation Mark Color"
5892
  msgstr ""
5893
 
5894
+ #: ../includes/Elements/Testimonial.php:663
5895
  msgid "Quotation Postion From Top"
5896
  msgstr ""
5897
 
5898
+ #: ../includes/Elements/Testimonial.php:685
5899
  msgid "Quotation Postion From Right"
5900
  msgstr ""
5901
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
4
  Requires at least: 5.0
5
  Tested up to: 5.6
6
  Requires PHP: 5.6
7
- Stable tag: 4.3.8
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -224,6 +224,14 @@ Your existing elements/content will work with premium version. So you won't lose
224
 
225
  == Changelog ==
226
 
 
 
 
 
 
 
 
 
227
  = 4.3.8 - 10/12/2020 =
228
  - Fixed: EA Fancy Text & Adv. Data Table | not working on WordPress 5.6
229
  - Fixed: EA Product Grid | Rating controller not working with Default Style
4
  Requires at least: 5.0
5
  Tested up to: 5.6
6
  Requires PHP: 5.6
7
+ Stable tag: 4.3.9
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
224
 
225
  == Changelog ==
226
 
227
+ = 4.3.9 - 23/12/2020 =
228
+ - Fixed: Custom JS not working after first reload
229
+ - Fixed: EA Advanced Data Table | sorting not working for nested elements in table header
230
+ - Fixed: Missing Background color option for EA Testimonial
231
+ - Fixed: EA Pricing Table | Style 5 Ribbon Text color not changing
232
+ - Fixed: EA Info box | Dynamic tags not working
233
+ - Few minor bug fix and improvements
234
+
235
  = 4.3.8 - 10/12/2020 =
236
  - Fixed: EA Fancy Text & Adv. Data Table | not working on WordPress 5.6
237
  - Fixed: EA Product Grid | Rating controller not working with Default Style