Version Description
- 10/12/2020 =
- Fixed: EA Fancy Text & Adv. Data Table | not working on WordPress 5.6
- Fixed: EA Product Grid | Rating controller not working with Default Style
- Fixed: EA Flip Box | Button icon not displaying
- Added: EA Event Calendar | 24 Hours format option
- Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.3.8 |
Comparing to | |
See all releases |
Code changes from version 4.3.7 to 4.3.8
- assets/front-end/js/view/advanced-data-table.js +1 -1
- assets/front-end/js/view/advanced-data-table.min.js +1 -1
- assets/front-end/js/view/event-calendar.js +1 -1
- assets/front-end/js/view/event-calendar.min.js +1 -1
- assets/front-end/js/view/fancy-text.js +1 -1
- assets/front-end/js/view/fancy-text.min.js +1 -1
- assets/front-end/js/view/general.js +3 -3
- essential_adons_elementor.php +2 -2
- includes/Elements/Event_Calendar.php +13 -0
- includes/Elements/Flip_Box.php +0 -1
- includes/Elements/Product_Grid.php +2 -3
- includes/Elements/Tooltip.php +1 -1
- includes/Template/Eicon-Woocommerce/default.php +4 -0
- includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php +2 -1
- languages/essential-addons-for-elementor-lite.pot +185 -180
- readme.txt +10 -3
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.context.querySelector(\".ea-advanced-data-table\");\n var search = $scope.context.querySelector(\".ea-advanced-data-table-search\");\n var pagination = $scope.context.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\\\">«</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">»</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 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\\\">«</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">»</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.
|
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">«</a>'.concat(n,'<a href="#" data-page="').concat(c,'">»</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}))}]);
|
assets/front-end/js/view/event-calendar.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("var EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n calendarEl = document.getElementById(\"eael-event-calendar-\" + calendarID);\n var calendar = new Calendar(calendarEl, {\n plugins: [\"dayGrid\", \"timeGrid\", \"list\"],\n editable: false,\n selectable: false,\n draggable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: '2-digit',\n minute: '2-digit',\n
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("var EventCalendar = function EventCalendar($scope, $) {\n var Calendar = FullCalendar.Calendar;\n var element = $(\".eael-event-calendar-cls\", $scope),\n CloseButton = $(\".eaelec-modal-close\", $scope).eq(0),\n ecModal = $(\"#eaelecModal\", $scope),\n eventAll = element.data(\"events\"),\n firstDay = element.data(\"first_day\"),\n calendarID = element.data(\"cal_id\"),\n locale = element.data(\"locale\"),\n translate = element.data(\"translate\"),\n defaultView = element.data(\"defaultview\"),\n time_format = element.data(\"time_format\") == 'yes' ? true : false,\n calendarEl = document.getElementById(\"eael-event-calendar-\" + calendarID);\n var calendar = new Calendar(calendarEl, {\n plugins: [\"dayGrid\", \"timeGrid\", \"list\"],\n editable: false,\n selectable: false,\n draggable: false,\n firstDay: firstDay,\n eventTimeFormat: {\n hour: '2-digit',\n minute: '2-digit',\n hour12: !time_format\n },\n nextDayThreshold: \"00:00:00\",\n header: {\n left: \"prev,next today\",\n center: \"title\",\n right: \"timeGridDay,timeGridWeek,dayGridMonth,listMonth\"\n },\n events: eventAll,\n selectHelper: true,\n locale: locale,\n eventLimit: 3,\n defaultView: defaultView,\n eventRender: function eventRender(info) {\n var element = $(info.el),\n event = info.event;\n moment.locale(locale); // when event is finished event text are cross\n\n if (event.extendedProps.eventHasComplete !== undefined && event.extendedProps.eventHasComplete === 'yes') {\n element.find('div.fc-content .fc-title').addClass('eael-event-completed');\n element.find('td.fc-list-item-title').addClass('eael-event-completed');\n }\n\n translate.today = info.event._calendar.dateEnv.locale.options.buttonText.today;\n element.attr(\"href\", \"javascript:void(0);\");\n element.click(function (e) {\n e.preventDefault();\n e.stopPropagation();\n var startDate = event.start,\n timeFormate = time_format ? \"H:mm A\" : \"h:mm A\",\n endDate = event.end,\n startSelector = $(\"span.eaelec-event-date-start\"),\n endSelector = $(\"span.eaelec-event-date-end\");\n\n if (event.allDay === \"yes\") {\n var newEnd = moment(endDate).subtract(1, \"days\");\n endDate = newEnd._d;\n timeFormate = \" \";\n }\n\n var startYear = moment(startDate).format(\"YYYY\"),\n endYear = moment(endDate).format(\"YYYY\"),\n yearDiff = endYear > startYear,\n startView = '',\n endView = '';\n startSelector.html(\" \");\n endSelector.html(\" \");\n ecModal.addClass(\"eael-ec-popup-ready\").removeClass(\"eael-ec-modal-removing\");\n\n if (event.allDay === \"yes\" && moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n startView = moment(startDate).format(\"MMM Do\");\n\n if (moment(startDate).isSame(Date.now(), \"day\") === true) {\n startView = translate.today;\n } else if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow;\n }\n } else {\n if (moment(event.start).isSame(Date.now(), \"day\") === true) {\n startView = translate.today + ' ' + moment(event.start).format(timeFormate);\n }\n\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = translate.tomorrow + ' ' + moment(event.start).format(timeFormate);\n }\n\n if (moment(startDate).format(\"MM-DD-YYYY\") < moment(new Date()).format(\"MM-DD-YYYY\") || moment(startDate).format(\"MM-DD-YYYY\") > moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n startView = moment(event.start).format(\"MMM Do \" + timeFormate);\n }\n\n startView = yearDiff ? startYear + ' ' + startView : startView;\n\n if (moment(endDate).isSame(Date.now(), \"day\") === true) {\n if (moment(startDate).isSame(Date.now(), \"day\") !== true) {\n endView = translate.today + \" \" + moment(endDate).format(timeFormate);\n } else {\n endView = moment(endDate).format(timeFormate);\n }\n }\n\n if (moment(startDate).format(\"MM-DD-YYYY\") !== moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = translate.tomorrow + \" \" + moment(endDate).format(timeFormate);\n }\n\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\") && moment(endDate).format(\"MM-DD-YYYY\") === moment(new Date()).add(1, \"days\").format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n\n if (moment(endDate).diff(moment(startDate), \"days\") > 0 && endSelector.text().trim().length < 1) {\n endView = moment(endDate).format(\"MMM Do \" + timeFormate);\n }\n\n if (moment(startDate).format(\"MM-DD-YYYY\") === moment(endDate).format(\"MM-DD-YYYY\")) {\n endView = moment(endDate).format(timeFormate);\n }\n\n endView = yearDiff ? endYear + ' ' + endView : endView;\n }\n\n if (event.extendedProps.hideEndDate !== undefined && event.extendedProps.hideEndDate === 'yes') {\n endSelector.html(\" \");\n } else {\n endSelector.html(endView != '' ? \"- \" + endView : '');\n }\n\n startSelector.html('<i class=\"eicon-calendar\"></i> ' + startView);\n $(\".eaelec-modal-header h2\").html(event.title);\n $(\".eaelec-modal-body p\").html(event.extendedProps.description);\n\n if (event.extendedProps.description.length < 1) {\n $(\".eaelec-modal-body\").css(\"height\", \"auto\");\n } else {\n $(\".eaelec-modal-body\").css(\"height\", \"300px\");\n }\n\n $(\".eaelec-modal-footer a\").attr(\"href\", event.url);\n\n if (event.extendedProps.external === \"on\") {\n $(\".eaelec-modal-footer a\").attr(\"target\", \"_blank\");\n }\n\n if (event.extendedProps.nofollow === \"on\") {\n $(\".eaelec-modal-footer a\").attr(\"rel\", \"nofollow\");\n }\n\n if (event.url == \"\") {\n $(\".eaelec-modal-footer a\").css(\"display\", \"none\");\n } // Popup color\n\n\n $(\".eaelec-modal-header\").css(\"border-left\", \"5px solid \" + event.borderColor);\n });\n }\n });\n CloseButton.on(\"click\", function () {\n event.stopPropagation();\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n });\n $(document).on('click', function (event) {\n if (event.target.closest(\".eaelec-modal-content\")) return;\n\n if (ecModal.hasClass(\"eael-ec-popup-ready\")) {\n ecModal.addClass(\"eael-ec-modal-removing\").removeClass(\"eael-ec-popup-ready\");\n }\n });\n calendar.render();\n};\n\njQuery(window).on(\"elementor/frontend/init\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-event-calendar.default\", EventCalendar);\n});\n\n//# sourceURL=webpack:///./src/js/view/event-calendar.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/event-calendar.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function a(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(o,n,function(t){return e[t]}.bind(null,n));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=7)}({7:function(e,t){var a=function(e,t){var a=FullCalendar.Calendar,o=t(".eael-event-calendar-cls",e),n=t(".eaelec-modal-close",e).eq(0),r=t("#eaelecModal",e),m=o.data("events"),d=o.data("first_day"),l=o.data("cal_id"),i=o.data("locale"),s=o.data("translate"),c=o.data("defaultview"),f=new a(document.getElementById("eael-event-calendar-"+l),{plugins:["dayGrid","timeGrid","list"],editable:!1,selectable:!1,draggable:!1,firstDay:d,eventTimeFormat:{hour:"2-digit",minute:"2-digit",
|
1 |
+
!function(e){var t={};function a(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(o,n,function(t){return e[t]}.bind(null,n));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=7)}({7:function(e,t){var a=function(e,t){var a=FullCalendar.Calendar,o=t(".eael-event-calendar-cls",e),n=t(".eaelec-modal-close",e).eq(0),r=t("#eaelecModal",e),m=o.data("events"),d=o.data("first_day"),l=o.data("cal_id"),i=o.data("locale"),s=o.data("translate"),c=o.data("defaultview"),f="yes"==o.data("time_format"),Y=new a(document.getElementById("eael-event-calendar-"+l),{plugins:["dayGrid","timeGrid","list"],editable:!1,selectable:!1,draggable:!1,firstDay:d,eventTimeFormat:{hour:"2-digit",minute:"2-digit",hour12:!f},nextDayThreshold:"00:00:00",header:{left:"prev,next today",center:"title",right:"timeGridDay,timeGridWeek,dayGridMonth,listMonth"},events:m,selectHelper:!0,locale:i,eventLimit:3,defaultView:c,eventRender:function(e){var a=t(e.el),o=e.event;moment.locale(i),void 0!==o.extendedProps.eventHasComplete&&"yes"===o.extendedProps.eventHasComplete&&(a.find("div.fc-content .fc-title").addClass("eael-event-completed"),a.find("td.fc-list-item-title").addClass("eael-event-completed")),s.today=e.event._calendar.dateEnv.locale.options.buttonText.today,a.attr("href","javascript:void(0);"),a.click((function(e){e.preventDefault(),e.stopPropagation();var a=o.start,n=f?"H:mm A":"h:mm A",m=o.end,d=t("span.eaelec-event-date-start"),l=t("span.eaelec-event-date-end");"yes"===o.allDay&&(m=moment(m).subtract(1,"days")._d,n=" ");var i=moment(a).format("YYYY"),c=moment(m).format("YYYY"),Y=c>i,D="",u="";d.html(" "),l.html(" "),r.addClass("eael-ec-popup-ready").removeClass("eael-ec-modal-removing"),"yes"===o.allDay&&moment(a).format("MM-DD-YYYY")===moment(m).format("MM-DD-YYYY")?(D=moment(a).format("MMM Do"),!0===moment(a).isSame(Date.now(),"day")?D=s.today:moment(a).format("MM-DD-YYYY")===moment(new Date).add(1,"days").format("MM-DD-YYYY")&&(D=s.tomorrow)):(!0===moment(o.start).isSame(Date.now(),"day")&&(D=s.today+" "+moment(o.start).format(n)),moment(a).format("MM-DD-YYYY")===moment(new Date).add(1,"days").format("MM-DD-YYYY")&&(D=s.tomorrow+" "+moment(o.start).format(n)),(moment(a).format("MM-DD-YYYY")<moment(new Date).format("MM-DD-YYYY")||moment(a).format("MM-DD-YYYY")>moment(new Date).add(1,"days").format("MM-DD-YYYY"))&&(D=moment(o.start).format("MMM Do "+n)),D=Y?i+" "+D:D,!0===moment(m).isSame(Date.now(),"day")&&(u=!0!==moment(a).isSame(Date.now(),"day")?s.today+" "+moment(m).format(n):moment(m).format(n)),moment(a).format("MM-DD-YYYY")!==moment(new Date).add(1,"days").format("MM-DD-YYYY")&&moment(m).format("MM-DD-YYYY")===moment(new Date).add(1,"days").format("MM-DD-YYYY")&&(u=s.tomorrow+" "+moment(m).format(n)),moment(a).format("MM-DD-YYYY")===moment(new Date).add(1,"days").format("MM-DD-YYYY")&&moment(m).format("MM-DD-YYYY")===moment(new Date).add(1,"days").format("MM-DD-YYYY")&&(u=moment(m).format(n)),moment(m).diff(moment(a),"days")>0&&l.text().trim().length<1&&(u=moment(m).format("MMM Do "+n)),moment(a).format("MM-DD-YYYY")===moment(m).format("MM-DD-YYYY")&&(u=moment(m).format(n)),u=Y?c+" "+u:u),void 0!==o.extendedProps.hideEndDate&&"yes"===o.extendedProps.hideEndDate?l.html(" "):l.html(""!=u?"- "+u:""),d.html('<i class="eicon-calendar"></i> '+D),t(".eaelec-modal-header h2").html(o.title),t(".eaelec-modal-body p").html(o.extendedProps.description),o.extendedProps.description.length<1?t(".eaelec-modal-body").css("height","auto"):t(".eaelec-modal-body").css("height","300px"),t(".eaelec-modal-footer a").attr("href",o.url),"on"===o.extendedProps.external&&t(".eaelec-modal-footer a").attr("target","_blank"),"on"===o.extendedProps.nofollow&&t(".eaelec-modal-footer a").attr("rel","nofollow"),""==o.url&&t(".eaelec-modal-footer a").css("display","none"),t(".eaelec-modal-header").css("border-left","5px solid "+o.borderColor)}))}});n.on("click",(function(){event.stopPropagation(),r.addClass("eael-ec-modal-removing").removeClass("eael-ec-popup-ready")})),t(document).on("click",(function(e){e.target.closest(".eaelec-modal-content")||r.hasClass("eael-ec-popup-ready")&&r.addClass("eael-ec-modal-removing").removeClass("eael-ec-popup-ready")})),Y.render()};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-event-calendar.default",a)}))}});
|
assets/front-end/js/view/fancy-text.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("var FancyText = function FancyText($scope, $) {\n var $fancyText = $scope.find(\".eael-fancy-text-container\").eq(0),\n $id = $fancyText.data(\"fancy-text-id\") !== undefined ? $fancyText.data(\"fancy-text-id\") : \"\",\n $fancy_text = $fancyText.data(\"fancy-text\") !== undefined ? $fancyText.data(\"fancy-text\") : \"\",\n $transition_type = $fancyText.data(\"fancy-text-transition-type\") !== undefined ? $fancyText.data(\"fancy-text-transition-type\") : \"\",\n $fancy_text_speed = $fancyText.data(\"fancy-text-speed\") !== undefined ? $fancyText.data(\"fancy-text-speed\") : \"\",\n $fancy_text_delay = $fancyText.data(\"fancy-text-delay\") !== undefined ? $fancyText.data(\"fancy-text-delay\") : \"\",\n $fancy_text_cursor = $fancyText.data(\"fancy-text-cursor\") === \"yes\" ? true : false,\n $fancy_text_loop = $fancyText.data(\"fancy-text-loop\") !== undefined ? $fancyText.data(\"fancy-text-loop\") == \"yes\" ? true : false : false;\n $fancy_text = $fancy_text.split(\"|\");\n\n if ($transition_type == \"typing\") {\n new Typed(\"#eael-fancy-text-\" + $id, {\n strings: $fancy_text,\n typeSpeed: $fancy_text_speed,\n backSpeed: 0,\n startDelay: 300,\n backDelay: $fancy_text_delay,\n showCursor: $fancy_text_cursor,\n loop: $fancy_text_loop\n });\n }\n\n if ($transition_type != \"typing\") {\n $(\"#eael-fancy-text-\" + $id).Morphext({\n animation: $transition_type,\n separator: \", \",\n speed: $fancy_text_delay,\n complete: function complete() {// Overrides default empty function\n }\n });\n }\n\n jQuery(
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("var FancyText = function FancyText($scope, $) {\n var $fancyText = $scope.find(\".eael-fancy-text-container\").eq(0),\n $id = $fancyText.data(\"fancy-text-id\") !== undefined ? $fancyText.data(\"fancy-text-id\") : \"\",\n $fancy_text = $fancyText.data(\"fancy-text\") !== undefined ? $fancyText.data(\"fancy-text\") : \"\",\n $transition_type = $fancyText.data(\"fancy-text-transition-type\") !== undefined ? $fancyText.data(\"fancy-text-transition-type\") : \"\",\n $fancy_text_speed = $fancyText.data(\"fancy-text-speed\") !== undefined ? $fancyText.data(\"fancy-text-speed\") : \"\",\n $fancy_text_delay = $fancyText.data(\"fancy-text-delay\") !== undefined ? $fancyText.data(\"fancy-text-delay\") : \"\",\n $fancy_text_cursor = $fancyText.data(\"fancy-text-cursor\") === \"yes\" ? true : false,\n $fancy_text_loop = $fancyText.data(\"fancy-text-loop\") !== undefined ? $fancyText.data(\"fancy-text-loop\") == \"yes\" ? true : false : false;\n $fancy_text = $fancy_text.split(\"|\");\n\n if ($transition_type == \"typing\") {\n new Typed(\"#eael-fancy-text-\" + $id, {\n strings: $fancy_text,\n typeSpeed: $fancy_text_speed,\n backSpeed: 0,\n startDelay: 300,\n backDelay: $fancy_text_delay,\n showCursor: $fancy_text_cursor,\n loop: $fancy_text_loop\n });\n }\n\n if ($transition_type != \"typing\") {\n $(\"#eael-fancy-text-\" + $id).Morphext({\n animation: $transition_type,\n separator: \", \",\n speed: $fancy_text_delay,\n complete: function complete() {// Overrides default empty function\n }\n });\n }\n\n jQuery(document).ready(function () {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 500);\n });\n\n if (isEditMode) {\n setTimeout(function () {\n $(\".eael-fancy-text-strings\", $scope).css(\"display\", \"inline-block\");\n }, 800);\n }\n};\n\njQuery(window).on(\"elementor/frontend/init\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-fancy-text.default\", FancyText);\n});\n\n//# sourceURL=webpack:///./src/js/view/fancy-text.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/fancy-text.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(
|
1 |
+
!function(e){var t={};function n(a){if(t[a])return t[a].exports;var o=t[a]={i:a,l:!1,exports:{}};return e[a].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(a,o,function(t){return e[t]}.bind(null,o));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}({9:function(e,t){var n=function(e,t){var n=e.find(".eael-fancy-text-container").eq(0),a=void 0!==n.data("fancy-text-id")?n.data("fancy-text-id"):"",o=void 0!==n.data("fancy-text")?n.data("fancy-text"):"",r=void 0!==n.data("fancy-text-transition-type")?n.data("fancy-text-transition-type"):"",i=void 0!==n.data("fancy-text-speed")?n.data("fancy-text-speed"):"",d=void 0!==n.data("fancy-text-delay")?n.data("fancy-text-delay"):"",c="yes"===n.data("fancy-text-cursor"),f=void 0!==n.data("fancy-text-loop")&&"yes"==n.data("fancy-text-loop");o=o.split("|"),"typing"==r&&new Typed("#eael-fancy-text-"+a,{strings:o,typeSpeed:i,backSpeed:0,startDelay:300,backDelay:d,showCursor:c,loop:f}),"typing"!=r&&t("#eael-fancy-text-"+a).Morphext({animation:r,separator:", ",speed:d,complete:function(){}}),jQuery(document).ready((function(){setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),500)})),isEditMode&&setTimeout((function(){t(".eael-fancy-text-strings",e).css("display","inline-block")}),800)};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-fancy-text.default",n)}))}});
|
assets/front-end/js/view/general.js
CHANGED
@@ -106,7 +106,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
106 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107 |
|
108 |
"use strict";
|
109 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var
|
110 |
|
111 |
/***/ }),
|
112 |
|
@@ -142,7 +142,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
142 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
143 |
|
144 |
"use strict";
|
145 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var
|
146 |
|
147 |
/***/ }),
|
148 |
|
@@ -154,7 +154,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
154 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
155 |
|
156 |
"use strict";
|
157 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var
|
158 |
|
159 |
/***/ }),
|
160 |
|
106 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107 |
|
108 |
"use strict";
|
109 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _babel_runtime_helpers_esm_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/arrayLikeToArray */ \"./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return Object(_babel_runtime_helpers_esm_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arr);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js?");
|
110 |
|
111 |
/***/ }),
|
112 |
|
142 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
143 |
|
144 |
"use strict";
|
145 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _babel_runtime_helpers_esm_arrayWithoutHoles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/arrayWithoutHoles */ \"./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _babel_runtime_helpers_esm_iterableToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/iterableToArray */ \"./node_modules/@babel/runtime/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _babel_runtime_helpers_esm_unsupportedIterableToArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/unsupportedIterableToArray */ \"./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js\");\n/* harmony import */ var _babel_runtime_helpers_esm_nonIterableSpread__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/nonIterableSpread */ \"./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js\");\n\n\n\n\nfunction _toConsumableArray(arr) {\n return Object(_babel_runtime_helpers_esm_arrayWithoutHoles__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arr) || Object(_babel_runtime_helpers_esm_iterableToArray__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(arr) || Object(_babel_runtime_helpers_esm_unsupportedIterableToArray__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(arr) || Object(_babel_runtime_helpers_esm_nonIterableSpread__WEBPACK_IMPORTED_MODULE_3__[\"default\"])();\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js?");
|
146 |
|
147 |
/***/ }),
|
148 |
|
154 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
155 |
|
156 |
"use strict";
|
157 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _unsupportedIterableToArray; });\n/* harmony import */ var _babel_runtime_helpers_esm_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/arrayLikeToArray */ \"./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js\");\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return Object(_babel_runtime_helpers_esm_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return Object(_babel_runtime_helpers_esm_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(o, minLen);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js?");
|
158 |
|
159 |
/***/ }),
|
160 |
|
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 |
* 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.
|
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.8
|
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.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 |
/**
|
includes/Elements/Event_Calendar.php
CHANGED
@@ -504,6 +504,17 @@ class Event_Calendar extends Widget_Base
|
|
504 |
]
|
505 |
);
|
506 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
$this->add_control(
|
508 |
'eael_event_calendar_default_view',
|
509 |
[
|
@@ -1680,6 +1691,7 @@ class Event_Calendar extends Widget_Base
|
|
1680 |
|
1681 |
$local = $settings['eael_event_calendar_language'];
|
1682 |
$default_view = $settings['eael_event_calendar_default_view'];
|
|
|
1683 |
$translate_date = [
|
1684 |
'today' => __('Today', 'essential-addons-for-elementor-lite'),
|
1685 |
'tomorrow' => __('Tomorrow', 'essential-addons-for-elementor-lite'),
|
@@ -1692,6 +1704,7 @@ class Event_Calendar extends Widget_Base
|
|
1692 |
data-locale = "' . $local . '"
|
1693 |
data-translate = "' . htmlspecialchars(json_encode($translate_date), ENT_QUOTES, 'UTF-8') . '"
|
1694 |
data-defaultview = "' . $default_view . '"
|
|
|
1695 |
data-events="' . htmlspecialchars(json_encode($data), ENT_QUOTES, 'UTF-8') . '"
|
1696 |
data-first_day="' . $settings['eael_event_calendar_first_day'] . '"></div>
|
1697 |
' . $this->eaelec_load_event_details() . '
|
504 |
]
|
505 |
);
|
506 |
|
507 |
+
$this->add_control(
|
508 |
+
'eael_event_time_format',
|
509 |
+
[
|
510 |
+
'label' => __('24-hour Time format', 'essential-addons-for-elementor-lite'),
|
511 |
+
'type' => Controls_Manager::SWITCHER,
|
512 |
+
'label_block' => false,
|
513 |
+
'return_value' => 'yes',
|
514 |
+
'description' => __('Hide Event Details link in event popup', 'essential-addons-for-elementor-lite'),
|
515 |
+
]
|
516 |
+
);
|
517 |
+
|
518 |
$this->add_control(
|
519 |
'eael_event_calendar_default_view',
|
520 |
[
|
1691 |
|
1692 |
$local = $settings['eael_event_calendar_language'];
|
1693 |
$default_view = $settings['eael_event_calendar_default_view'];
|
1694 |
+
$time_format = $settings['eael_event_time_format'];
|
1695 |
$translate_date = [
|
1696 |
'today' => __('Today', 'essential-addons-for-elementor-lite'),
|
1697 |
'tomorrow' => __('Tomorrow', 'essential-addons-for-elementor-lite'),
|
1704 |
data-locale = "' . $local . '"
|
1705 |
data-translate = "' . htmlspecialchars(json_encode($translate_date), ENT_QUOTES, 'UTF-8') . '"
|
1706 |
data-defaultview = "' . $default_view . '"
|
1707 |
+
data-time_format = "' . $time_format . '"
|
1708 |
data-events="' . htmlspecialchars(json_encode($data), ENT_QUOTES, 'UTF-8') . '"
|
1709 |
data-first_day="' . $settings['eael_event_calendar_first_day'] . '"></div>
|
1710 |
' . $this->eaelec_load_event_details() . '
|
includes/Elements/Flip_Box.php
CHANGED
@@ -713,7 +713,6 @@ class Flip_Box extends Widget_Base
|
|
713 |
],
|
714 |
'condition' => [
|
715 |
'flipbox_link_type' => 'button',
|
716 |
-
'button_icon!' => '',
|
717 |
],
|
718 |
]
|
719 |
);
|
713 |
],
|
714 |
'condition' => [
|
715 |
'flipbox_link_type' => 'button',
|
|
|
716 |
],
|
717 |
]
|
718 |
);
|
includes/Elements/Product_Grid.php
CHANGED
@@ -345,8 +345,7 @@ class Product_Grid extends Widget_Base {
|
|
345 |
'return_value' => 'yes',
|
346 |
'default' => 'yes',
|
347 |
'condition' => [
|
348 |
-
'eael_product_grid_style_preset!' => 'eael-product-
|
349 |
-
'eael_product_grid_style_preset!' => 'eael-product-preset-8',
|
350 |
],
|
351 |
]
|
352 |
);
|
@@ -3022,4 +3021,4 @@ class Product_Grid extends Widget_Base {
|
|
3022 |
</script>
|
3023 |
<?php
|
3024 |
}
|
3025 |
-
}
|
345 |
'return_value' => 'yes',
|
346 |
'default' => 'yes',
|
347 |
'condition' => [
|
348 |
+
'eael_product_grid_style_preset!' => ['eael-product-preset-8'],
|
|
|
349 |
],
|
350 |
]
|
351 |
);
|
3021 |
</script>
|
3022 |
<?php
|
3023 |
}
|
3024 |
+
}
|
includes/Elements/Tooltip.php
CHANGED
@@ -691,7 +691,7 @@ class Tooltip extends Widget_Base {
|
|
691 |
|
692 |
$settings = $this->get_settings_for_display();
|
693 |
|
694 |
-
$target =
|
695 |
$nofollow = isset($settings['eael_tooltip_link']['nofollow']) ? 'rel="nofollow"' : '';
|
696 |
$icon_migrated = isset($settings['__fa4_migrated']['eael_tooltip_icon_content_new']);
|
697 |
$icon_is_new = empty($settings['eael_tooltip_icon_content']);
|
691 |
|
692 |
$settings = $this->get_settings_for_display();
|
693 |
|
694 |
+
$target = !empty($settings['eael_tooltip_link']['is_external']) ? 'target="_blank"' : '';
|
695 |
$nofollow = isset($settings['eael_tooltip_link']['nofollow']) ? 'rel="nofollow"' : '';
|
696 |
$icon_migrated = isset($settings['__fa4_migrated']['eael_tooltip_icon_content_new']);
|
697 |
$icon_is_new = empty($settings['eael_tooltip_icon_content']);
|
includes/Template/Eicon-Woocommerce/default.php
CHANGED
@@ -284,5 +284,9 @@ if ($settings['eael_product_grid_style_preset'] == 'eael-product-simple' || $set
|
|
284 |
<?php
|
285 |
}
|
286 |
}else {
|
|
|
|
|
|
|
|
|
287 |
wc_get_template_part('content', 'product');
|
288 |
}
|
284 |
<?php
|
285 |
}
|
286 |
}else {
|
287 |
+
if($settings['eael_product_grid_rating']!='yes'){
|
288 |
+
remove_action('woocommerce_after_shop_loop_item_title','woocommerce_template_loop_rating',5);
|
289 |
+
}
|
290 |
+
|
291 |
wc_get_template_part('content', 'product');
|
292 |
}
|
includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
<?php
|
2 |
namespace Essential_Addons_Elementor\Template\Woocommerce\Checkout;
|
3 |
|
4 |
-
use Elementor\Icons_Manager;
|
|
|
5 |
|
6 |
if (!defined('ABSPATH')) {
|
7 |
exit;
|
1 |
<?php
|
2 |
namespace Essential_Addons_Elementor\Template\Woocommerce\Checkout;
|
3 |
|
4 |
+
use \Elementor\Icons_Manager;
|
5 |
+
use \Exception;
|
6 |
|
7 |
if (!defined('ABSPATH')) {
|
8 |
exit;
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -13,15 +13,16 @@ 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:
|
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:
|
21 |
msgid "Unlock more possibilities"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: ../includes/Classes/Helper.php:179, ../includes/Elements/Dual_Color_Header.php:223, ../includes/Elements/Flip_Box.php:
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
#: ../includes/Classes/Helper.php:392
|
@@ -220,7 +221,7 @@ msgstr ""
|
|
220 |
msgid "Placeholder"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:
|
224 |
msgid "Pagination"
|
225 |
msgstr ""
|
226 |
|
@@ -228,7 +229,7 @@ msgstr ""
|
|
228 |
msgid "Pagination Type"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../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:
|
232 |
msgid "Button"
|
233 |
msgstr ""
|
234 |
|
@@ -268,15 +269,15 @@ msgstr ""
|
|
268 |
msgid "Width"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../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:
|
272 |
msgid "Border"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../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:
|
276 |
msgid "Border Radius"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:
|
280 |
msgid "Box Shadow"
|
281 |
msgstr ""
|
282 |
|
@@ -284,7 +285,7 @@ msgstr ""
|
|
284 |
msgid "Head"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:
|
288 |
msgid "Typography"
|
289 |
msgstr ""
|
290 |
|
@@ -292,23 +293,23 @@ msgstr ""
|
|
292 |
msgid "Text Alignment"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../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:
|
296 |
msgid "Left"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../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:
|
300 |
msgid "Center"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../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:
|
304 |
msgid "Right"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../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:
|
308 |
msgid "Text Color"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../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:
|
312 |
msgid "Background Color"
|
313 |
msgstr ""
|
314 |
|
@@ -316,11 +317,11 @@ msgstr ""
|
|
316 |
msgid "Cell Border"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../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:
|
320 |
msgid "Padding"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../includes/Elements/Advanced_Data_Table.php:489, ../includes/Elements/Event_Calendar.php:
|
324 |
msgid "Body"
|
325 |
msgstr ""
|
326 |
|
@@ -372,23 +373,23 @@ msgstr ""
|
|
372 |
msgid "Margin Bottom"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:
|
376 |
msgid "Alignment"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../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:
|
380 |
msgid "Margin"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../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:
|
384 |
msgid "Normal"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../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:
|
388 |
msgid "Hover"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../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:
|
392 |
msgid "Color"
|
393 |
msgstr ""
|
394 |
|
@@ -496,7 +497,7 @@ msgstr ""
|
|
496 |
msgid "Content Type"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:
|
500 |
msgid "Content"
|
501 |
msgstr ""
|
502 |
|
@@ -536,7 +537,7 @@ msgstr ""
|
|
536 |
msgid "Tab Style"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../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:
|
540 |
msgid "Icon Size"
|
541 |
msgstr ""
|
542 |
|
@@ -548,15 +549,15 @@ msgstr ""
|
|
548 |
msgid "Distance"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../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:
|
552 |
msgid "Icon Color"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:
|
556 |
msgid "Active"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../includes/Elements/Adv_Accordion.php:734, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:773, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Facebook_Feed.php:608, ../includes/Elements/Facebook_Feed.php:772, ../includes/Elements/Flip_Box.php:
|
560 |
msgid "Content Style"
|
561 |
msgstr ""
|
562 |
|
@@ -684,11 +685,11 @@ msgstr ""
|
|
684 |
msgid "Show Icon"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../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:
|
688 |
msgid "Show"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../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:
|
692 |
msgid "Hide"
|
693 |
msgstr ""
|
694 |
|
@@ -744,7 +745,7 @@ msgstr ""
|
|
744 |
msgid "Spacing"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:
|
748 |
msgid "Title"
|
749 |
msgstr ""
|
750 |
|
@@ -768,7 +769,7 @@ msgstr ""
|
|
768 |
msgid "File Not Found"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1076, ../includes/Elements/Post_Timeline.php:466, ../includes/Elements/Product_Grid.php:
|
772 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
773 |
msgstr ""
|
774 |
|
@@ -828,11 +829,11 @@ msgstr ""
|
|
828 |
msgid "Ticker Background"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:
|
832 |
msgid "List"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../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:
|
836 |
msgid "Hover Color"
|
837 |
msgstr ""
|
838 |
|
@@ -908,7 +909,7 @@ msgstr ""
|
|
908 |
msgid "Close Icon"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../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:
|
912 |
msgid "Border Color"
|
913 |
msgstr ""
|
914 |
|
@@ -980,7 +981,7 @@ msgstr ""
|
|
980 |
msgid "Form Alignment"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../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:
|
984 |
msgid "Default"
|
985 |
msgstr ""
|
986 |
|
@@ -1128,7 +1129,7 @@ msgstr ""
|
|
1128 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../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:
|
1132 |
msgid "Background"
|
1133 |
msgstr ""
|
1134 |
|
@@ -1176,7 +1177,7 @@ msgstr ""
|
|
1176 |
msgid "After Submit Feedback"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:
|
1180 |
msgid "Radius"
|
1181 |
msgstr ""
|
1182 |
|
@@ -1352,7 +1353,7 @@ msgstr ""
|
|
1352 |
msgid "Use when you select inline labels"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: ../includes/Elements/Countdown.php:152, ../includes/Elements/Event_Calendar.php:
|
1356 |
msgid "List view"
|
1357 |
msgstr ""
|
1358 |
|
@@ -1504,7 +1505,7 @@ msgstr ""
|
|
1504 |
msgid "Space Below Container"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:852, ../includes/Elements/Flip_Box.php:
|
1508 |
msgid "Color & Typography"
|
1509 |
msgstr ""
|
1510 |
|
@@ -1532,11 +1533,11 @@ msgstr ""
|
|
1532 |
msgid "Expire Message"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:444, ../includes/Elements/Flip_Box.php:
|
1536 |
msgid "Title Style"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:
|
1540 |
msgid "Title Color"
|
1541 |
msgstr ""
|
1542 |
|
@@ -1644,7 +1645,7 @@ msgstr ""
|
|
1644 |
msgid "Shikoba (Pro)"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: ../includes/Elements/Creative_Button.php:247, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:
|
1648 |
msgid "Use Gradient Background"
|
1649 |
msgstr ""
|
1650 |
|
@@ -1744,7 +1745,7 @@ msgstr ""
|
|
1744 |
msgid "Color & Typography "
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: ../includes/Elements/Cta_Box.php:538, ../includes/Elements/Cta_Box.php:579, ../includes/Elements/Event_Calendar.php:
|
1748 |
msgid "Space"
|
1749 |
msgstr ""
|
1750 |
|
@@ -1768,7 +1769,7 @@ msgstr ""
|
|
1768 |
msgid "Secondary Button Style"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:384, ../includes/Elements/Feature_List.php:104, ../includes/Elements/Flip_Box.php:
|
1772 |
msgid "Icon Style"
|
1773 |
msgstr ""
|
1774 |
|
@@ -1780,7 +1781,7 @@ msgstr ""
|
|
1780 |
msgid "Data Table"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:
|
1784 |
msgid "Header"
|
1785 |
msgstr ""
|
1786 |
|
@@ -2040,7 +2041,7 @@ msgstr ""
|
|
2040 |
msgid "Event Calendar"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: ../includes/Elements/Event_Calendar.php:85, ../includes/Elements/Event_Calendar.php:
|
2044 |
msgid "Events"
|
2045 |
msgstr ""
|
2046 |
|
@@ -2076,15 +2077,15 @@ msgstr ""
|
|
2076 |
msgid "End Date"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: ../includes/Elements/Event_Calendar.php:229, ../includes/Elements/Event_Calendar.php:
|
2080 |
msgid "Event Background Color"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: ../includes/Elements/Event_Calendar.php:238, ../includes/Elements/Event_Calendar.php:
|
2084 |
msgid "Event Text Color"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: ../includes/Elements/Event_Calendar.php:247, ../includes/Elements/Event_Calendar.php:
|
2088 |
msgid "Popup Ribbon Color"
|
2089 |
msgstr ""
|
2090 |
|
@@ -2136,7 +2137,7 @@ msgstr ""
|
|
2136 |
msgid "Event Category"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: ../includes/Elements/Event_Calendar.php:437, ../includes/Elements/Event_Calendar.php:
|
2140 |
msgid "Calendar"
|
2141 |
msgstr ""
|
2142 |
|
@@ -2145,138 +2146,142 @@ msgid "Language"
|
|
2145 |
msgstr ""
|
2146 |
|
2147 |
#: ../includes/Elements/Event_Calendar.php:510
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2148 |
msgid "Calendar Default View"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2152 |
msgid "Day"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2156 |
msgid "Week"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2160 |
msgid "Month"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2164 |
msgid "First Day of Week"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2168 |
msgid "Sunday"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2172 |
msgid "Monday"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2176 |
msgid "Tuesday"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2180 |
msgid "Wednesday"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2184 |
msgid "Thursday"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2188 |
msgid "Friday"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2192 |
msgid "Saturday"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2196 |
msgid "Hide Event Details Link"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2200 |
-
msgid "Hide Event Details link in event popup"
|
2201 |
-
msgstr ""
|
2202 |
-
|
2203 |
-
#: ../includes/Elements/Event_Calendar.php:555
|
2204 |
msgid "Featured Event Color"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2208 |
msgid "Inside Space"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2212 |
msgid "Outside Space"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2216 |
msgid "Time"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2220 |
msgid "Date"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2224 |
msgid "Number Background"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2228 |
msgid "Today Date"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2232 |
msgid "Even row Color"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2236 |
msgid "Odd row Color"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2240 |
msgid "Event Popup"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2244 |
msgid "Date Color"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2248 |
msgid "Date Icon"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2252 |
msgid "Content Color"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2256 |
msgid " Close Button"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2260 |
msgid "Button Size"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2264 |
msgid "External Link"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2268 |
msgid "Today"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2272 |
msgid "Tomorrow"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2276 |
msgid "Event Details"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: ../includes/Elements/Event_Calendar.php:
|
2280 |
msgid "No Title"
|
2281 |
msgstr ""
|
2282 |
|
@@ -2412,7 +2417,7 @@ msgstr ""
|
|
2412 |
msgid "Show Preview Description"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: ../includes/Elements/Facebook_Feed.php:372, ../includes/Elements/Product_Grid.php:
|
2416 |
msgid "Show Load More"
|
2417 |
msgstr ""
|
2418 |
|
@@ -2420,7 +2425,7 @@ msgstr ""
|
|
2420 |
msgid "Label"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: ../includes/Elements/Facebook_Feed.php:394, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:
|
2424 |
msgid "Load More"
|
2425 |
msgstr ""
|
2426 |
|
@@ -2684,7 +2689,7 @@ msgstr ""
|
|
2684 |
msgid "Icon Shape"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: ../includes/Elements/Feature_List.php:274, ../includes/Elements/Flip_Box.php:
|
2688 |
msgid "Circle"
|
2689 |
msgstr ""
|
2690 |
|
@@ -2812,7 +2817,7 @@ msgstr ""
|
|
2812 |
msgid "Media"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:
|
2816 |
msgid "Buttons"
|
2817 |
msgstr ""
|
2818 |
|
@@ -3092,7 +3097,7 @@ msgstr ""
|
|
3092 |
msgid "Dropdown"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:
|
3096 |
msgid "Top Spacing"
|
3097 |
msgstr ""
|
3098 |
|
@@ -3132,7 +3137,7 @@ msgstr ""
|
|
3132 |
msgid "3D Depth"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#: ../includes/Elements/Flip_Box.php:165, ../includes/Elements/Flip_Box.php:
|
3136 |
msgid "Front"
|
3137 |
msgstr ""
|
3138 |
|
@@ -3172,7 +3177,7 @@ msgstr ""
|
|
3172 |
msgid "Bottom"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: ../includes/Elements/Flip_Box.php:393, ../includes/Elements/Flip_Box.php:
|
3176 |
msgid "Back"
|
3177 |
msgstr ""
|
3178 |
|
@@ -3200,35 +3205,35 @@ msgstr ""
|
|
3200 |
msgid "Get Started"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: ../includes/Elements/Flip_Box.php:
|
3204 |
msgid "Filp Box Style"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: ../includes/Elements/Flip_Box.php:
|
3208 |
msgid "Front Background Color"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: ../includes/Elements/Flip_Box.php:
|
3212 |
msgid "Back Background Color"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: ../includes/Elements/Flip_Box.php:
|
3216 |
msgid "Content Padding"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: ../includes/Elements/Flip_Box.php:
|
3220 |
msgid "Border Style"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: ../includes/Elements/Flip_Box.php:
|
3224 |
msgid "Image Style"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: ../includes/Elements/Flip_Box.php:
|
3228 |
msgid "Image Type"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: ../includes/Elements/Flip_Box.php:
|
3232 |
msgid "Button Style"
|
3233 |
msgstr ""
|
3234 |
|
@@ -3356,7 +3361,7 @@ msgstr ""
|
|
3356 |
msgid "Border Height"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:271, ../includes/Elements/Product_Grid.php:
|
3360 |
msgid "Price"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,7 +3369,7 @@ msgstr ""
|
|
3364 |
msgid "Price Label Color"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:
|
3368 |
msgid "Price Color"
|
3369 |
msgstr ""
|
3370 |
|
@@ -3608,7 +3613,7 @@ msgstr ""
|
|
3608 |
msgid "Email"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:536, ../includes/Elements/Login_Register.php:537, ../includes/Elements/Login_Register.php:563, ../includes/Elements/Login_Register.php:564, ../includes/Elements/Login_Register.php:1081, ../includes/Elements/Login_Register.php:1082, ../includes/Elements/Login_Register.php:3629, ../includes/Elements/Login_Register.php:3816, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
3612 |
msgid "Password"
|
3613 |
msgstr ""
|
3614 |
|
@@ -3636,7 +3641,7 @@ msgstr ""
|
|
3636 |
msgid "Default Form Type"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: ../includes/Elements/Login_Register.php:246, ../includes/Elements/Login_Register.php:3238, ../includes/Elements/Login_Register.php:3829, ../includes/Elements/Woo_Checkout.php:387, ../includes/Elements/Woo_Checkout.php:1139, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
3640 |
msgid "Login"
|
3641 |
msgstr ""
|
3642 |
|
@@ -4546,7 +4551,7 @@ msgstr ""
|
|
4546 |
msgid "Target Blank"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: ../includes/Elements/Post_Grid.php:179, ../includes/Elements/Product_Grid.php:
|
4550 |
msgid "Read More"
|
4551 |
msgstr ""
|
4552 |
|
@@ -4730,7 +4735,7 @@ msgstr ""
|
|
4730 |
msgid "Date Text Color"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: ../includes/Elements/Post_Timeline.php:470, ../includes/Elements/Product_Grid.php:
|
4734 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
4735 |
msgstr ""
|
4736 |
|
@@ -5026,7 +5031,7 @@ msgstr ""
|
|
5026 |
msgid "Layouts"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: ../includes/Elements/Product_Grid.php:149, ../includes/Elements/Product_Grid.php:171, ../includes/Elements/Product_Grid.php:
|
5030 |
msgid "Style Preset"
|
5031 |
msgstr ""
|
5032 |
|
@@ -5042,7 +5047,7 @@ msgstr ""
|
|
5042 |
msgid "Overlay Style"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: ../includes/Elements/Product_Grid.php:157, ../includes/Elements/Product_Grid.php:
|
5046 |
msgid "Preset 5"
|
5047 |
msgstr ""
|
5048 |
|
@@ -5058,19 +5063,19 @@ msgstr ""
|
|
5058 |
msgid "Preset 8"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#: ../includes/Elements/Product_Grid.php:175, ../includes/Elements/Product_Grid.php:
|
5062 |
msgid "Preset 1"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#: ../includes/Elements/Product_Grid.php:176, ../includes/Elements/Product_Grid.php:
|
5066 |
msgid "Preset 2"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
-
#: ../includes/Elements/Product_Grid.php:177, ../includes/Elements/Product_Grid.php:
|
5070 |
msgid "Preset 3"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
-
#: ../includes/Elements/Product_Grid.php:178, ../includes/Elements/Product_Grid.php:
|
5074 |
msgid "Preset 4"
|
5075 |
msgstr ""
|
5076 |
|
@@ -5114,11 +5119,11 @@ msgstr ""
|
|
5114 |
msgid "Product ID"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: ../includes/Elements/Product_Grid.php:270, ../includes/Elements/Product_Grid.php:
|
5118 |
msgid "Product Title"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: ../includes/Elements/Product_Grid.php:272, ../includes/Elements/Product_Grid.php:
|
5122 |
msgid "SKU"
|
5123 |
msgstr ""
|
5124 |
|
@@ -5158,199 +5163,199 @@ msgstr ""
|
|
5158 |
msgid "Show Product Rating?"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: ../includes/Elements/Product_Grid.php:
|
5162 |
msgid "Show Product Price?"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: ../includes/Elements/Product_Grid.php:
|
5166 |
msgid "Short Description?"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: ../includes/Elements/Product_Grid.php:
|
5170 |
msgid "Add To Cart"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
-
#: ../includes/Elements/Product_Grid.php:
|
5174 |
msgid "Show Add to cart custom text"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: ../includes/Elements/Product_Grid.php:
|
5178 |
msgid "Simple Product"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: ../includes/Elements/Product_Grid.php:
|
5182 |
msgid "Buy Now"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: ../includes/Elements/Product_Grid.php:
|
5186 |
msgid "Variable Product"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: ../includes/Elements/Product_Grid.php:
|
5190 |
msgid "Select options"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: ../includes/Elements/Product_Grid.php:
|
5194 |
msgid "Grouped Product"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: ../includes/Elements/Product_Grid.php:
|
5198 |
msgid "View products"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
-
#: ../includes/Elements/Product_Grid.php:
|
5202 |
msgid "External Product"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: ../includes/Elements/Product_Grid.php:
|
5206 |
msgid "Default Product"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
-
#: ../includes/Elements/Product_Grid.php:
|
5210 |
msgid "Label Text"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: ../includes/Elements/Product_Grid.php:
|
5214 |
msgid "Products"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: ../includes/Elements/Product_Grid.php:
|
5218 |
msgid "Content Background Color"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: ../includes/Elements/Product_Grid.php:
|
5222 |
msgid "Image Width(%)"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: ../includes/Elements/Product_Grid.php:
|
5226 |
msgid "Product Details"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: ../includes/Elements/Product_Grid.php:
|
5230 |
msgid "Padding (PX)"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: ../includes/Elements/Product_Grid.php:
|
5234 |
msgid "Width (%)"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
-
#: ../includes/Elements/Product_Grid.php:
|
5238 |
msgid "Product Title Color"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: ../includes/Elements/Product_Grid.php:
|
5242 |
msgid "Product Price"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: ../includes/Elements/Product_Grid.php:
|
5246 |
msgid "Product Price Color"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: ../includes/Elements/Product_Grid.php:
|
5250 |
msgid "Star Rating"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: ../includes/Elements/Product_Grid.php:
|
5254 |
msgid "Rating Color"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
-
#: ../includes/Elements/Product_Grid.php:
|
5258 |
msgid "Product Description"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: ../includes/Elements/Product_Grid.php:
|
5262 |
msgid "Sale Badge"
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#: ../includes/Elements/Product_Grid.php:
|
5266 |
msgid "Sale Badge Color"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
-
#: ../includes/Elements/Product_Grid.php:
|
5270 |
msgid "Sale Badge Background"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
-
#: ../includes/Elements/Product_Grid.php:
|
5274 |
msgid "Stock Out Badge"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#: ../includes/Elements/Product_Grid.php:
|
5278 |
msgid "Stock Out Badge Color"
|
5279 |
msgstr ""
|
5280 |
|
5281 |
-
#: ../includes/Elements/Product_Grid.php:
|
5282 |
msgid "Stock Out Badge Background"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
-
#: ../includes/Elements/Product_Grid.php:
|
5286 |
msgid "Add to Cart Button Styles"
|
5287 |
msgstr ""
|
5288 |
|
5289 |
-
#: ../includes/Elements/Product_Grid.php:
|
5290 |
msgid "Button Color"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
-
#: ../includes/Elements/Product_Grid.php:
|
5294 |
msgid "Sale / Stock Out Badge"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: ../includes/Elements/Product_Grid.php:
|
5298 |
msgid "Show Quick view?"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: ../includes/Elements/Product_Grid.php:
|
5302 |
msgid "Icons Size"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: ../includes/Elements/Product_Grid.php:
|
5306 |
msgid "Show pagination"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: ../includes/Elements/Product_Grid.php:
|
5310 |
msgid "Previous Label"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: ../includes/Elements/Product_Grid.php:
|
5314 |
msgid "←"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: ../includes/Elements/Product_Grid.php:
|
5318 |
msgid "Next Label"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: ../includes/Elements/Product_Grid.php:
|
5322 |
msgid "→"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: ../includes/Elements/Product_Grid.php:
|
5326 |
msgid "Loader"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: ../includes/Elements/Product_Grid.php:
|
5330 |
msgid "Popup"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: ../includes/Elements/Product_Grid.php:
|
5334 |
msgid "Sale Price Color"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: ../includes/Elements/Product_Grid.php:
|
5338 |
msgid "Review Link Color"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: ../includes/Elements/Product_Grid.php:
|
5342 |
msgid "Review Link Hover"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: ../includes/Elements/Product_Grid.php:
|
5346 |
msgid "Sale"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: ../includes/Elements/Product_Grid.php:
|
5350 |
msgid "Quantity"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: ../includes/Elements/Product_Grid.php:
|
5354 |
msgid "Cart Button"
|
5355 |
msgstr ""
|
5356 |
|
@@ -7762,70 +7767,70 @@ msgstr ""
|
|
7762 |
msgid "Team Member: Profile Link"
|
7763 |
msgstr ""
|
7764 |
|
7765 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7766 |
msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
|
7767 |
msgstr ""
|
7768 |
|
7769 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7770 |
msgid "Invalid order."
|
7771 |
msgstr ""
|
7772 |
|
7773 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7774 |
msgid "Sorry, this order is invalid and cannot be paid for."
|
7775 |
msgstr ""
|
7776 |
|
7777 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7778 |
msgid "This order’s status is “%s”—it cannot be paid for. Please contact us if you need assistance."
|
7779 |
msgstr ""
|
7780 |
|
7781 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7782 |
msgid "Please log in to your account below to continue to the payment form."
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7786 |
msgid "You are paying for a guest order. Please continue with payment only if you recognize this order."
|
7787 |
msgstr ""
|
7788 |
|
7789 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7790 |
msgid "This order cannot be paid for. Please contact us if you need assistance."
|
7791 |
msgstr ""
|
7792 |
|
7793 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7794 |
msgid "Sorry, \"%s\" is no longer in stock so this order cannot be paid for. We apologize for any inconvenience caused."
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7798 |
msgid "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order (%2$s available). We apologize for any inconvenience caused."
|
7799 |
msgstr ""
|
7800 |
|
7801 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7802 |
msgid "Pay for order"
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7806 |
msgid "If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section."
|
7807 |
msgstr ""
|
7808 |
|
7809 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7810 |
msgid "Username or email"
|
7811 |
msgstr ""
|
7812 |
|
7813 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7814 |
msgid "Remember me"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7818 |
msgid "Lost your password?"
|
7819 |
msgstr ""
|
7820 |
|
7821 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7822 |
msgid "You must be logged in to checkout."
|
7823 |
msgstr ""
|
7824 |
|
7825 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7826 |
msgid "Billing & Shipping"
|
7827 |
msgstr ""
|
7828 |
|
7829 |
-
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:
|
7830 |
msgid "Create an account?"
|
7831 |
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 |
|
24 |
+
#: ../includes/Classes/Helper.php:179, ../includes/Elements/Dual_Color_Header.php:223, ../includes/Elements/Flip_Box.php:737, ../includes/Elements/Info_Box.php:503
|
25 |
+
msgid ""
|
26 |
msgstr ""
|
27 |
|
28 |
#: ../includes/Classes/Helper.php:392
|
221 |
msgid "Placeholder"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:1960, ../includes/Elements/Product_Grid.php:2010
|
225 |
msgid "Pagination"
|
226 |
msgstr ""
|
227 |
|
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 |
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 |
|
280 |
+
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:788, ../includes/Elements/Product_Grid.php:816, ../includes/Elements/Product_Grid.php:2760, ../includes/Elements/Product_Grid.php:2795, ../includes/Elements/Progress_Bar.php:650, ../includes/Elements/Twitter_Feed.php:640, ../includes/Elements/Twitter_Feed.php:852, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755
|
281 |
msgid "Box Shadow"
|
282 |
msgstr ""
|
283 |
|
285 |
msgid "Head"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Post_Grid.php:472, ../includes/Elements/Post_Grid.php:484, ../includes/Elements/Post_Grid.php:626, ../includes/Elements/Post_Grid.php:838, ../includes/Elements/Post_Timeline.php:293, ../includes/Elements/Product_Grid.php:2264, ../includes/Elements/Product_Grid.php:2294, ../includes/Elements/Product_Grid.php:2336, ../includes/Elements/Product_Grid.php:2402, ../includes/Elements/Product_Grid.php:2441, ../includes/Elements/Product_Grid.php:2498, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Progress_Bar.php:670, ../includes/Elements/Woo_Checkout.php:1282, ../includes/Elements/Woo_Checkout.php:1580, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287
|
289 |
msgid "Typography"
|
290 |
msgstr ""
|
291 |
|
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 |
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 |
|
324 |
+
#: ../includes/Elements/Advanced_Data_Table.php:489, ../includes/Elements/Event_Calendar.php:1239
|
325 |
msgid "Body"
|
326 |
msgstr ""
|
327 |
|
373 |
msgid "Margin Bottom"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3030, ../includes/Elements/Login_Register.php:3350, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:445, ../includes/Elements/Post_Grid.php:763, ../includes/Elements/Post_Grid.php:846, ../includes/Elements/Product_Grid.php:576, ../includes/Elements/Product_Grid.php:894, ../includes/Elements/Product_Grid.php:1583, ../includes/Elements/Product_Grid.php:2022, ../includes/Elements/Progress_Bar.php:315, ../includes/Elements/Progress_Bar.php:526, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133
|
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 |
|
497 |
msgid "Content Type"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:936, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:95, ../includes/Elements/Image_Accordion.php:206, ../includes/Elements/Image_Accordion.php:292, ../includes/Elements/Image_Accordion.php:543, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:2326, ../includes/Elements/Tooltip.php:94, ../includes/Elements/Tooltip.php:266
|
501 |
msgid "Content"
|
502 |
msgstr ""
|
503 |
|
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 |
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 |
|
556 |
+
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:2157, ../includes/Extensions/Table_of_Content.php:936
|
557 |
msgid "Active"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../includes/Elements/Adv_Accordion.php:734, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:773, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Facebook_Feed.php:608, ../includes/Elements/Facebook_Feed.php:772, ../includes/Elements/Flip_Box.php:1207, ../includes/Elements/Flip_Box.php:1276, ../includes/Elements/Info_Box.php:1383, ../includes/Elements/Tooltip.php:313, ../includes/Elements/Twitter_Feed.php:691
|
561 |
msgid "Content Style"
|
562 |
msgstr ""
|
563 |
|
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 |
|
745 |
msgid "Spacing"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:195, ../includes/Elements/Image_Accordion.php:284, ../includes/Elements/Image_Accordion.php:514, ../includes/Elements/Login_Register.php:2220, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:139, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:2255, ../includes/Elements/Progress_Bar.php:120, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Woo_Checkout.php:322, ../includes/Elements/Woo_Checkout.php:432, ../includes/Elements/Woo_Checkout.php:513, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110
|
749 |
msgid "Title"
|
750 |
msgstr ""
|
751 |
|
769 |
msgid "File Not Found"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1076, ../includes/Elements/Post_Timeline.php:466, ../includes/Elements/Product_Grid.php:2959
|
773 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
774 |
msgstr ""
|
775 |
|
829 |
msgid "Ticker Background"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:376, ../includes/Elements/Product_Grid.php:140, ../includes/Elements/Twitter_Feed.php:147, ../includes/Extensions/Table_of_Content.php:801
|
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 |
|
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 |
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 |
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 |
|
1177 |
msgid "After Submit Feedback"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1118, ../includes/Elements/Post_Grid.php:324, ../includes/Elements/Product_Grid.php:1347
|
1181 |
msgid "Radius"
|
1182 |
msgstr ""
|
1183 |
|
1353 |
msgid "Use when you select inline labels"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: ../includes/Elements/Countdown.php:152, ../includes/Elements/Event_Calendar.php:1198
|
1357 |
msgid "List view"
|
1358 |
msgstr ""
|
1359 |
|
1505 |
msgid "Space Below Container"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:852, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:506, ../includes/Elements/Info_Box.php:1330, ../includes/Elements/Product_Grid.php:1038, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:655
|
1509 |
msgid "Color & Typography"
|
1510 |
msgstr ""
|
1511 |
|
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 |
|
1540 |
+
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1454, ../includes/Elements/Post_Grid.php:574, ../includes/Elements/Post_Timeline.php:310, ../includes/Elements/Product_Grid.php:2272, ../includes/Elements/Product_Grid.php:2622, ../includes/Elements/Progress_Bar.php:688, ../includes/Elements/Twitter_Feed.php:567, ../includes/Elements/Woo_Checkout.php:2151
|
1541 |
msgid "Title Color"
|
1542 |
msgstr ""
|
1543 |
|
1645 |
msgid "Shikoba (Pro)"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: ../includes/Elements/Creative_Button.php:247, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:1360, ../includes/Elements/Team_Member.php:702
|
1649 |
msgid "Use Gradient Background"
|
1650 |
msgstr ""
|
1651 |
|
1745 |
msgid "Color & Typography "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: ../includes/Elements/Cta_Box.php:538, ../includes/Elements/Cta_Box.php:579, ../includes/Elements/Event_Calendar.php:791, ../includes/Elements/Event_Calendar.php:912
|
1749 |
msgid "Space"
|
1750 |
msgstr ""
|
1751 |
|
1769 |
msgid "Secondary Button Style"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:384, ../includes/Elements/Feature_List.php:104, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:933, ../includes/Elements/Flip_Box.php:1046, ../includes/Elements/Info_Box.php:925
|
1773 |
msgid "Icon Style"
|
1774 |
msgstr ""
|
1775 |
|
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 |
|
2041 |
msgid "Event Calendar"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: ../includes/Elements/Event_Calendar.php:85, ../includes/Elements/Event_Calendar.php:1287
|
2045 |
msgid "Events"
|
2046 |
msgstr ""
|
2047 |
|
2077 |
msgid "End Date"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: ../includes/Elements/Event_Calendar.php:229, ../includes/Elements/Event_Calendar.php:579
|
2081 |
msgid "Event Background Color"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: ../includes/Elements/Event_Calendar.php:238, ../includes/Elements/Event_Calendar.php:591
|
2085 |
msgid "Event Text Color"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: ../includes/Elements/Event_Calendar.php:247, ../includes/Elements/Event_Calendar.php:602
|
2089 |
msgid "Popup Ribbon Color"
|
2090 |
msgstr ""
|
2091 |
|
2137 |
msgid "Event Category"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: ../includes/Elements/Event_Calendar.php:437, ../includes/Elements/Event_Calendar.php:619
|
2141 |
msgid "Calendar"
|
2142 |
msgstr ""
|
2143 |
|
2146 |
msgstr ""
|
2147 |
|
2148 |
#: ../includes/Elements/Event_Calendar.php:510
|
2149 |
+
msgid "24-hour Time format"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: ../includes/Elements/Event_Calendar.php:514, ../includes/Elements/Event_Calendar.php:558
|
2153 |
+
msgid "Hide Event Details link in event popup"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: ../includes/Elements/Event_Calendar.php:521
|
2157 |
msgid "Calendar Default View"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: ../includes/Elements/Event_Calendar.php:524, ../includes/Elements/Event_Calendar.php:935
|
2161 |
msgid "Day"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: ../includes/Elements/Event_Calendar.php:525
|
2165 |
msgid "Week"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: ../includes/Elements/Event_Calendar.php:526
|
2169 |
msgid "Month"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: ../includes/Elements/Event_Calendar.php:536
|
2173 |
msgid "First Day of Week"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: ../includes/Elements/Event_Calendar.php:539
|
2177 |
msgid "Sunday"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: ../includes/Elements/Event_Calendar.php:540
|
2181 |
msgid "Monday"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: ../includes/Elements/Event_Calendar.php:541
|
2185 |
msgid "Tuesday"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: ../includes/Elements/Event_Calendar.php:542
|
2189 |
msgid "Wednesday"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: ../includes/Elements/Event_Calendar.php:543
|
2193 |
msgid "Thursday"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: ../includes/Elements/Event_Calendar.php:544
|
2197 |
msgid "Friday"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: ../includes/Elements/Event_Calendar.php:545
|
2201 |
msgid "Saturday"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: ../includes/Elements/Event_Calendar.php:554
|
2205 |
msgid "Hide Event Details Link"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: ../includes/Elements/Event_Calendar.php:566
|
|
|
|
|
|
|
|
|
2209 |
msgid "Featured Event Color"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:1124, ../includes/Elements/Event_Calendar.php:1316
|
2213 |
msgid "Inside Space"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Event_Calendar.php:1148, ../includes/Elements/Event_Calendar.php:1328
|
2217 |
msgid "Outside Space"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: ../includes/Elements/Event_Calendar.php:1010
|
2221 |
msgid "Time"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: ../includes/Elements/Event_Calendar.php:1044, ../includes/Elements/Event_Calendar.php:1378, ../includes/Elements/Facebook_Feed.php:898, ../includes/Elements/Product_Grid.php:273
|
2225 |
msgid "Date"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: ../includes/Elements/Event_Calendar.php:1073
|
2229 |
msgid "Number Background"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: ../includes/Elements/Event_Calendar.php:1160
|
2233 |
msgid "Today Date"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: ../includes/Elements/Event_Calendar.php:1259
|
2237 |
msgid "Even row Color"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: ../includes/Elements/Event_Calendar.php:1271
|
2241 |
msgid "Odd row Color"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: ../includes/Elements/Event_Calendar.php:1342
|
2245 |
msgid "Event Popup"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: ../includes/Elements/Event_Calendar.php:1396, ../includes/Elements/Event_Calendar.php:1622, ../includes/Elements/Twitter_Feed.php:597
|
2249 |
msgid "Date Color"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: ../includes/Elements/Event_Calendar.php:1408
|
2253 |
msgid "Date Icon"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Info_Box.php:1466, ../includes/Elements/Product_Grid.php:2344, ../includes/Elements/Product_Grid.php:2632, ../includes/Elements/Twitter_Feed.php:577
|
2257 |
msgid "Content Color"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:2653
|
2261 |
msgid " Close Button"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: ../includes/Elements/Event_Calendar.php:1510, ../includes/Elements/Product_Grid.php:2688, ../includes/Extensions/Table_of_Content.php:676
|
2265 |
msgid "Button Size"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: ../includes/Elements/Event_Calendar.php:1604
|
2269 |
msgid "External Link"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: ../includes/Elements/Event_Calendar.php:1696
|
2273 |
msgid "Today"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: ../includes/Elements/Event_Calendar.php:1697
|
2277 |
msgid "Tomorrow"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: ../includes/Elements/Event_Calendar.php:1729
|
2281 |
msgid "Event Details"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: ../includes/Elements/Event_Calendar.php:1901
|
2285 |
msgid "No Title"
|
2286 |
msgstr ""
|
2287 |
|
2417 |
msgid "Show Preview Description"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: ../includes/Elements/Facebook_Feed.php:372, ../includes/Elements/Product_Grid.php:531, ../includes/Traits/Controls.php:624
|
2421 |
msgid "Show Load More"
|
2422 |
msgstr ""
|
2423 |
|
2425 |
msgid "Label"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: ../includes/Elements/Facebook_Feed.php:394, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:521, ../includes/Elements/Product_Grid.php:549, ../includes/Traits/Controls.php:640
|
2429 |
msgid "Load More"
|
2430 |
msgstr ""
|
2431 |
|
2689 |
msgid "Icon Shape"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: ../includes/Elements/Feature_List.php:274, ../includes/Elements/Flip_Box.php:869, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Progress_Bar.php:84
|
2693 |
msgid "Circle"
|
2694 |
msgstr ""
|
2695 |
|
2817 |
msgid "Media"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:1608
|
2821 |
msgid "Buttons"
|
2822 |
msgstr ""
|
2823 |
|
3097 |
msgid "Dropdown"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:1873, ../includes/Elements/Product_Grid.php:2048, ../includes/Elements/Woo_Checkout.php:687, ../includes/Elements/Woo_Checkout.php:1000, ../includes/Elements/Woo_Checkout.php:1109, ../includes/Elements/Woo_Checkout.php:2515
|
3101 |
msgid "Top Spacing"
|
3102 |
msgstr ""
|
3103 |
|
3137 |
msgid "3D Depth"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: ../includes/Elements/Flip_Box.php:165, ../includes/Elements/Flip_Box.php:924, ../includes/Elements/Flip_Box.php:1167
|
3141 |
msgid "Front"
|
3142 |
msgstr ""
|
3143 |
|
3177 |
msgid "Bottom"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: ../includes/Elements/Flip_Box.php:393, ../includes/Elements/Flip_Box.php:1037, ../includes/Elements/Flip_Box.php:1235
|
3181 |
msgid "Back"
|
3182 |
msgstr ""
|
3183 |
|
3205 |
msgid "Get Started"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: ../includes/Elements/Flip_Box.php:757
|
3209 |
msgid "Filp Box Style"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: ../includes/Elements/Flip_Box.php:765, ../includes/Elements/Flip_Box.php:774
|
3213 |
msgid "Front Background Color"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: ../includes/Elements/Flip_Box.php:783, ../includes/Elements/Flip_Box.php:793
|
3217 |
msgid "Back Background Color"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: ../includes/Elements/Flip_Box.php:803, ../includes/Elements/Team_Member.php:399
|
3221 |
msgid "Content Padding"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: ../includes/Elements/Flip_Box.php:817
|
3225 |
msgid "Border Style"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: ../includes/Elements/Flip_Box.php:853, ../includes/Elements/Info_Box.php:523
|
3229 |
msgid "Image Style"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: ../includes/Elements/Flip_Box.php:864
|
3233 |
msgid "Image Type"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: ../includes/Elements/Flip_Box.php:1315
|
3237 |
msgid "Button Style"
|
3238 |
msgstr ""
|
3239 |
|
3361 |
msgid "Border Height"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:271, ../includes/Elements/Product_Grid.php:2284, ../includes/Elements/Woo_Checkout.php:215
|
3365 |
msgid "Price"
|
3366 |
msgstr ""
|
3367 |
|
3369 |
msgid "Price Label Color"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:2302
|
3373 |
msgid "Price Color"
|
3374 |
msgstr ""
|
3375 |
|
3613 |
msgid "Email"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:536, ../includes/Elements/Login_Register.php:537, ../includes/Elements/Login_Register.php:563, ../includes/Elements/Login_Register.php:564, ../includes/Elements/Login_Register.php:1081, ../includes/Elements/Login_Register.php:1082, ../includes/Elements/Login_Register.php:3629, ../includes/Elements/Login_Register.php:3816, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:328
|
3617 |
msgid "Password"
|
3618 |
msgstr ""
|
3619 |
|
3641 |
msgid "Default Form Type"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: ../includes/Elements/Login_Register.php:246, ../includes/Elements/Login_Register.php:3238, ../includes/Elements/Login_Register.php:3829, ../includes/Elements/Woo_Checkout.php:387, ../includes/Elements/Woo_Checkout.php:1139, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:341
|
3645 |
msgid "Login"
|
3646 |
msgstr ""
|
3647 |
|
4551 |
msgid "Target Blank"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: ../includes/Elements/Post_Grid.php:179, ../includes/Elements/Product_Grid.php:504, ../includes/Traits/Controls.php:897, ../includes/Traits/Controls.php:931
|
4555 |
msgid "Read More"
|
4556 |
msgstr ""
|
4557 |
|
4735 |
msgid "Date Text Color"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: ../includes/Elements/Post_Timeline.php:470, ../includes/Elements/Product_Grid.php:2963
|
4739 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
4740 |
msgstr ""
|
4741 |
|
5031 |
msgid "Layouts"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
+
#: ../includes/Elements/Product_Grid.php:149, ../includes/Elements/Product_Grid.php:171, ../includes/Elements/Product_Grid.php:1566, ../includes/Elements/Product_Grid.php:1646, ../includes/Elements/Team_Member.php:279
|
5035 |
msgid "Style Preset"
|
5036 |
msgstr ""
|
5037 |
|
5047 |
msgid "Overlay Style"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: ../includes/Elements/Product_Grid.php:157, ../includes/Elements/Product_Grid.php:1574, ../includes/Traits/Controls.php:423
|
5051 |
msgid "Preset 5"
|
5052 |
msgstr ""
|
5053 |
|
5063 |
msgid "Preset 8"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: ../includes/Elements/Product_Grid.php:175, ../includes/Elements/Product_Grid.php:1570, ../includes/Elements/Product_Grid.php:1650, ../includes/Traits/Controls.php:419
|
5067 |
msgid "Preset 1"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: ../includes/Elements/Product_Grid.php:176, ../includes/Elements/Product_Grid.php:1571, ../includes/Elements/Product_Grid.php:1651, ../includes/Traits/Controls.php:420
|
5071 |
msgid "Preset 2"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: ../includes/Elements/Product_Grid.php:177, ../includes/Elements/Product_Grid.php:1572, ../includes/Traits/Controls.php:421
|
5075 |
msgid "Preset 3"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: ../includes/Elements/Product_Grid.php:178, ../includes/Elements/Product_Grid.php:1573, ../includes/Traits/Controls.php:422
|
5079 |
msgid "Preset 4"
|
5080 |
msgstr ""
|
5081 |
|
5119 |
msgid "Product ID"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: ../includes/Elements/Product_Grid.php:270, ../includes/Elements/Product_Grid.php:1046
|
5123 |
msgid "Product Title"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: ../includes/Elements/Product_Grid.php:272, ../includes/Elements/Product_Grid.php:2605
|
5127 |
msgid "SKU"
|
5128 |
msgstr ""
|
5129 |
|
5163 |
msgid "Show Product Rating?"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: ../includes/Elements/Product_Grid.php:356
|
5167 |
msgid "Show Product Price?"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: ../includes/Elements/Product_Grid.php:368
|
5171 |
msgid "Short Description?"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: ../includes/Elements/Product_Grid.php:429
|
5175 |
msgid "Add To Cart"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: ../includes/Elements/Product_Grid.php:436
|
5179 |
msgid "Show Add to cart custom text"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: ../includes/Elements/Product_Grid.php:448
|
5183 |
msgid "Simple Product"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: ../includes/Elements/Product_Grid.php:452, ../includes/Elements/Product_Grid.php:491
|
5187 |
msgid "Buy Now"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: ../includes/Elements/Product_Grid.php:461
|
5191 |
msgid "Variable Product"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: ../includes/Elements/Product_Grid.php:465
|
5195 |
msgid "Select options"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: ../includes/Elements/Product_Grid.php:474
|
5199 |
msgid "Grouped Product"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: ../includes/Elements/Product_Grid.php:478
|
5203 |
msgid "View products"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: ../includes/Elements/Product_Grid.php:487
|
5207 |
msgid "External Product"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: ../includes/Elements/Product_Grid.php:500
|
5211 |
msgid "Default Product"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: ../includes/Elements/Product_Grid.php:543, ../includes/Traits/Controls.php:636, ../includes/Traits/Controls.php:893
|
5215 |
msgid "Label Text"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: ../includes/Elements/Product_Grid.php:568
|
5219 |
msgid "Products"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: ../includes/Elements/Product_Grid.php:625, ../includes/Elements/Team_Member.php:358
|
5223 |
msgid "Content Background Color"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: ../includes/Elements/Product_Grid.php:841
|
5227 |
msgid "Image Width(%)"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: ../includes/Elements/Product_Grid.php:861
|
5231 |
msgid "Product Details"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: ../includes/Elements/Product_Grid.php:995
|
5235 |
msgid "Padding (PX)"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: ../includes/Elements/Product_Grid.php:1017
|
5239 |
msgid "Width (%)"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: ../includes/Elements/Product_Grid.php:1054
|
5243 |
msgid "Product Title Color"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: ../includes/Elements/Product_Grid.php:1074
|
5247 |
msgid "Product Price"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: ../includes/Elements/Product_Grid.php:1082
|
5251 |
msgid "Product Price Color"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: ../includes/Elements/Product_Grid.php:1102
|
5255 |
msgid "Star Rating"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: ../includes/Elements/Product_Grid.php:1110
|
5259 |
msgid "Rating Color"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: ../includes/Elements/Product_Grid.php:1189
|
5263 |
msgid "Product Description"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: ../includes/Elements/Product_Grid.php:1229
|
5267 |
msgid "Sale Badge"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: ../includes/Elements/Product_Grid.php:1237
|
5271 |
msgid "Sale Badge Color"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: ../includes/Elements/Product_Grid.php:1249
|
5275 |
msgid "Sale Badge Background"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: ../includes/Elements/Product_Grid.php:1272
|
5279 |
msgid "Stock Out Badge"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: ../includes/Elements/Product_Grid.php:1280
|
5283 |
msgid "Stock Out Badge Color"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: ../includes/Elements/Product_Grid.php:1292
|
5287 |
msgid "Stock Out Badge Background"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: ../includes/Elements/Product_Grid.php:1316
|
5291 |
msgid "Add to Cart Button Styles"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: ../includes/Elements/Product_Grid.php:1375, ../includes/Elements/Product_Grid.php:1444
|
5295 |
msgid "Button Color"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: ../includes/Elements/Product_Grid.php:1536
|
5299 |
msgid "Sale / Stock Out Badge"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: ../includes/Elements/Product_Grid.php:1635
|
5303 |
msgid "Show Quick view?"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: ../includes/Elements/Product_Grid.php:1724
|
5307 |
msgid "Icons Size"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: ../includes/Elements/Product_Grid.php:1971
|
5311 |
msgid "Show pagination"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: ../includes/Elements/Product_Grid.php:1983
|
5315 |
msgid "Previous Label"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: ../includes/Elements/Product_Grid.php:1984
|
5319 |
msgid "←"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: ../includes/Elements/Product_Grid.php:1994
|
5323 |
msgid "Next Label"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: ../includes/Elements/Product_Grid.php:1995
|
5327 |
msgid "→"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: ../includes/Elements/Product_Grid.php:2222
|
5331 |
msgid "Loader"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: ../includes/Elements/Product_Grid.php:2247
|
5335 |
msgid "Popup"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: ../includes/Elements/Product_Grid.php:2314
|
5339 |
msgid "Sale Price Color"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: ../includes/Elements/Product_Grid.php:2356
|
5343 |
msgid "Review Link Color"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: ../includes/Elements/Product_Grid.php:2367
|
5347 |
msgid "Review Link Hover"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: ../includes/Elements/Product_Grid.php:2392
|
5351 |
msgid "Sale"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: ../includes/Elements/Product_Grid.php:2431, ../includes/Elements/Woo_Checkout.php:198
|
5355 |
msgid "Quantity"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: ../includes/Elements/Product_Grid.php:2488
|
5359 |
msgid "Cart Button"
|
5360 |
msgstr ""
|
5361 |
|
7767 |
msgid "Team Member: Profile Link"
|
7768 |
msgstr ""
|
7769 |
|
7770 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:54
|
7771 |
msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
|
7772 |
msgstr ""
|
7773 |
|
7774 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:243
|
7775 |
msgid "Invalid order."
|
7776 |
msgstr ""
|
7777 |
|
7778 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:240, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:117
|
7779 |
msgid "Sorry, this order is invalid and cannot be paid for."
|
7780 |
msgstr ""
|
7781 |
|
7782 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:237, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:147
|
7783 |
msgid "This order’s status is “%s”—it cannot be paid for. Please contact us if you need assistance."
|
7784 |
msgstr ""
|
7785 |
|
7786 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:122
|
7787 |
msgid "Please log in to your account below to continue to the payment form."
|
7788 |
msgstr ""
|
7789 |
|
7790 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:135
|
7791 |
msgid "You are paying for a guest order. Please continue with payment only if you recognize this order."
|
7792 |
msgstr ""
|
7793 |
|
7794 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:141
|
7795 |
msgid "This order cannot be paid for. Please contact us if you need assistance."
|
7796 |
msgstr ""
|
7797 |
|
7798 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:176
|
7799 |
msgid "Sorry, \"%s\" is no longer in stock so this order cannot be paid for. We apologize for any inconvenience caused."
|
7800 |
msgstr ""
|
7801 |
|
7802 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:190
|
7803 |
msgid "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order (%2$s available). We apologize for any inconvenience caused."
|
7804 |
msgstr ""
|
7805 |
|
7806 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:216
|
7807 |
msgid "Pay for order"
|
7808 |
msgstr ""
|
7809 |
|
7810 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:313
|
7811 |
msgid "If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section."
|
7812 |
msgstr ""
|
7813 |
|
7814 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:324
|
7815 |
msgid "Username or email"
|
7816 |
msgstr ""
|
7817 |
|
7818 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:337
|
7819 |
msgid "Remember me"
|
7820 |
msgstr ""
|
7821 |
|
7822 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:344
|
7823 |
msgid "Lost your password?"
|
7824 |
msgstr ""
|
7825 |
|
7826 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:527
|
7827 |
msgid "You must be logged in to checkout."
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:573
|
7831 |
msgid "Billing & Shipping"
|
7832 |
msgstr ""
|
7833 |
|
7834 |
+
#: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:602
|
7835 |
msgid "Create an account?"
|
7836 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Essential Addons for Elementor ===
|
2 |
Contributors: wpdevteam, Codetic, re_enter_rupok, Asif2BD, priyomukul, mahfuz01, nazsabuz, manzurahammed
|
3 |
Tags: elementor, elements, addons, elementor addon, elementor widget, elementor form, woocommerce elementor, page builder, builder, visual editor, wordpress page builder
|
4 |
-
Requires at least:
|
5 |
Tested up to: 5.6
|
6 |
-
Requires PHP: 5.
|
7 |
-
Stable tag: 4.3.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -224,6 +224,13 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
= 4.3.7 - 19/11/2020 =
|
228 |
- Fixed: Broken style if Object Cache is enabled
|
229 |
- Fixed: Pages showing blank after updating with Elementor
|
1 |
=== Essential Addons for Elementor ===
|
2 |
Contributors: wpdevteam, Codetic, re_enter_rupok, Asif2BD, priyomukul, mahfuz01, nazsabuz, manzurahammed
|
3 |
Tags: elementor, elements, addons, elementor addon, elementor widget, elementor form, woocommerce elementor, page builder, builder, visual editor, wordpress page builder
|
4 |
+
Requires at least: 5.0
|
5 |
Tested up to: 5.6
|
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 |
|
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
|
230 |
+
- Fixed: EA Flip Box | Button icon not displaying
|
231 |
+
- Added: EA Event Calendar | 24 Hours format option
|
232 |
+
- Few minor bug fix and improvements
|
233 |
+
|
234 |
= 4.3.7 - 19/11/2020 =
|
235 |
- Fixed: Broken style if Object Cache is enabled
|
236 |
- Fixed: Pages showing blank after updating with Elementor
|