Version Description
Download this release
Release Info
Developer | creativethemeshq |
Plugin | ![]() |
Version | 1.8.35 |
Comparing to | |
See all releases |
Code changes from version 1.8.34 to 1.8.35
- blocksy-companion.php +1 -1
- framework/extensions/cookies-consent/extension.php +20 -6
- framework/extensions/cookies-consent/static/bundle/main.js +2 -8
- framework/extensions/cookies-consent/static/bundle/main.js.LICENSE.txt +7 -0
- framework/extensions/cookies-consent/static/bundle/main.min.css +115 -2
- framework/extensions/cookies-consent/static/bundle/sync.js +1 -1
- framework/extensions/newsletter-subscribe/admin-static/bundle/1.f588f19f53311c8b6a0a.js +0 -14
- framework/extensions/newsletter-subscribe/admin-static/bundle/2.b8cdca0a643ec9bd1ed2.js +0 -1
- framework/extensions/newsletter-subscribe/admin-static/bundle/486.2f466d7115021070874d.js +2 -0
- framework/extensions/newsletter-subscribe/admin-static/bundle/486.2f466d7115021070874d.js.LICENSE.txt +14 -0
- framework/extensions/newsletter-subscribe/admin-static/bundle/677.6d4bfe6dc9293cdd7f96.js +1 -0
- framework/extensions/newsletter-subscribe/admin-static/bundle/main.js +1 -1
- framework/extensions/newsletter-subscribe/admin-static/bundle/sync.js +1 -1
- framework/extensions/newsletter-subscribe/dashboard-static/bundle/main.js +2 -14
- framework/extensions/newsletter-subscribe/dashboard-static/bundle/main.js.LICENSE.txt +14 -0
- framework/extensions/newsletter-subscribe/extension.php +21 -6
- framework/extensions/newsletter-subscribe/static/bundle/main.js +1 -1
- framework/extensions/newsletter-subscribe/static/bundle/main.min.css +105 -2
- framework/extensions/product-reviews/extension.php +22 -6
- framework/extensions/product-reviews/static/bundle/dashboard.js +2 -6
- framework/extensions/product-reviews/static/bundle/dashboard.js.LICENSE.txt +5 -0
- framework/extensions/product-reviews/static/bundle/main-admin.min.css +6 -2
- framework/extensions/product-reviews/static/bundle/main.min.css +186 -2
- framework/extensions/product-reviews/static/bundle/sync.js +1 -1
- framework/extensions/trending/extension.php +20 -6
- framework/extensions/trending/static/bundle/main.js +1 -1
- framework/extensions/trending/static/bundle/main.min.css +139 -2
- framework/extensions/trending/static/bundle/sync.js +1 -1
- framework/extensions/widgets/static/bundle/main.min.css +237 -2
- framework/extensions/widgets/widgets/ct-posts/view.php +1 -1
- framework/features/demo-install/install-finish.php +46 -0
- framework/features/header.php +17 -0
- framework/theme-integration.php +3 -1
- framework/views/blocksy-posts.php +8 -2
- languages/blocksy-companion.pot +3117 -1032
- readme.txt +5 -1
- static/bundle/account-lazy.min.css +156 -2
- static/bundle/account.js +1 -1
- static/bundle/dark-mode.js +1 -1
- static/bundle/dashboard.js +2 -6
- static/bundle/dashboard.js.LICENSE.txt +5 -0
- static/bundle/dashboard.min.css +1108 -2
- static/bundle/options.js +2 -14
blocksy-companion.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: Blocksy Companion
|
5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
6 |
-
Version: 1.8.
|
7 |
Author: CreativeThemes
|
8 |
Author URI: https://creativethemes.com
|
9 |
Text Domain: blocksy-companion
|
3 |
/*
|
4 |
Plugin Name: Blocksy Companion
|
5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
6 |
+
Version: 1.8.35
|
7 |
Author: CreativeThemes
|
8 |
Author URI: https://creativethemes.com
|
9 |
Text Domain: blocksy-companion
|
framework/extensions/cookies-consent/extension.php
CHANGED
@@ -77,12 +77,26 @@ class BlocksyExtensionCookiesConsent {
|
|
77 |
);
|
78 |
}, 50);
|
79 |
|
80 |
-
add_action(
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
}
|
87 |
|
88 |
public function add_options_panel($options) {
|
77 |
);
|
78 |
}, 50);
|
79 |
|
80 |
+
add_action(
|
81 |
+
'blocksy:global-dynamic-css:enqueue',
|
82 |
+
'BlocksyExtensionCookiesConsent::add_global_styles',
|
83 |
+
10, 3
|
84 |
+
);
|
85 |
+
}
|
86 |
+
|
87 |
+
static public function add_global_styles($args) {
|
88 |
+
blocksy_theme_get_dynamic_styles(array_merge([
|
89 |
+
'path' => dirname(__FILE__) . '/global.php',
|
90 |
+
'chunk' => 'global',
|
91 |
+
], $args));
|
92 |
+
}
|
93 |
+
|
94 |
+
static public function onDeactivation() {
|
95 |
+
remove_action(
|
96 |
+
'blocksy:global-dynamic-css:enqueue',
|
97 |
+
'BlocksyExtensionCookiesConsent::add_global_styles',
|
98 |
+
10, 3
|
99 |
+
);
|
100 |
}
|
101 |
|
102 |
public function add_options_panel($options) {
|
framework/extensions/cookies-consent/static/bundle/main.js
CHANGED
@@ -1,8 +1,2 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
* JavaScript Cookie v2.2.1
|
4 |
-
* https://github.com/js-cookie/js-cookie
|
5 |
-
*
|
6 |
-
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
7 |
-
* Released under the MIT license
|
8 |
-
*/!function(i){if(void 0===(r="function"==typeof(o=i)?o.call(t,n,t,e):o)||(e.exports=r),!0,e.exports=i(),!!0){var c=window.Cookies,a=window.Cookies=i();a.noConflict=function(){return window.Cookies=c,a}}}((function(){function e(){for(var e=0,t={};e<arguments.length;e++){var n=arguments[e];for(var o in n)t[o]=n[o]}return t}function t(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function n(o){function r(){}function i(t,n,i){if("undefined"!=typeof document){"number"==typeof(i=e({path:"/"},r.defaults,i)).expires&&(i.expires=new Date(1*new Date+864e5*i.expires)),i.expires=i.expires?i.expires.toUTCString():"";try{var c=JSON.stringify(n);/^[\{\[]/.test(c)&&(n=c)}catch(e){}n=o.write?o.write(n,t):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),t=encodeURIComponent(String(t)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var a="";for(var u in i)i[u]&&(a+="; "+u,!0!==i[u]&&(a+="="+i[u].split(";")[0]));return document.cookie=t+"="+n+a}}function c(e,n){if("undefined"!=typeof document){for(var r={},i=document.cookie?document.cookie.split("; "):[],c=0;c<i.length;c++){var a=i[c].split("="),u=a.slice(1).join("=");n||'"'!==u.charAt(0)||(u=u.slice(1,-1));try{var s=t(a[0]);if(u=(o.read||o)(u,s)||t(u),n)try{u=JSON.parse(u)}catch(e){}if(r[s]=u,e===s)break}catch(e){}}return e?r[e]:r}}return r.set=i,r.get=function(e){return c(e,!1)},r.getJSON=function(e){return c(e,!0)},r.remove=function(t,n){i(t,"",e(n,{expires:-1}))},r.defaults={},r.withConverter=n,r}((function(){}))}))},function(e,t){e.exports=window.ctEvents},function(e,t,n){"use strict";n.r(t),n.d(t,"onDocumentLoaded",(function(){return d}));var o=n(1),r=n.n(o),i=n(0),c=n.n(i);function a(e){return function(e){if(Array.isArray(e))return u(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n<t;n++)o[n]=e[n];return o}var s=function(e){27===e.keyCode&&f(document.querySelector(".cookie-notification"))},f=function(e){document.removeEventListener("keyup",s),e.classList.add("ct-fade-start"),requestAnimationFrame((function(){e.classList.remove("ct-fade-start"),e.classList.add("ct-fade-end"),p(e,(function(){e.parentNode.removeChild(e)}))}))},d=function(e){/comp|inter|loaded/.test(document.readyState)?e():document.addEventListener("DOMContentLoaded",e,!1)},l=function(){var e,t=document.querySelector(".cookie-notification");t&&(c.a.get("blocksy_cookies_consent_accepted")?t.remove():(e=t,document.addEventListener("keyup",s),requestAnimationFrame((function(){e.classList.remove("ct-fade-in-start"),e.classList.add("ct-fade-in-end"),p(e,(function(){e.classList.remove("ct-fade-in-end")}))})),a(t.querySelectorAll("button")).map((function(e){e.addEventListener("click",(function(n){if(n.preventDefault(),e.classList.contains("ct-cookies-accept-button")){c.a.set("blocksy_cookies_consent_accepted","true",{expires:new Date(1*new Date+{onehour:36e5,oneday:864e5,oneweek:6048e5,onemonth:26784e5,threemonths:80352e5,sixmonths:160704e5,oneyear:31536e6,forever:864e9}[e.closest("[data-period]").dataset.period]),sameSite:"lax"})}if(e.classList.contains("ct-cookies-decline-button")){c.a.set("blocksy_cookies_consent_accepted","no",{expires:new Date(1*new Date+{onehour:36e5,oneday:864e5,oneweek:6048e5,onemonth:26784e5,threemonths:80352e5,sixmonths:160704e5,oneyear:31536e6,forever:864e9}[e.closest("[data-period]").dataset.period]),sameSite:"lax"})}f(t)}))}))))};function p(e,t){setTimeout((function(){t()}),300)}d((function(){l(),r.a&&r.a.on("blocksy:cookies:init",(function(){l()}))}))}]);
|
1 |
+
/*! For license information please see main.js.LICENSE.txt */
|
2 |
+
(()=>{var e={808:(e,t,n)=>{var o,r,i;i=function(){function e(){for(var e=0,t={};e<arguments.length;e++){var n=arguments[e];for(var o in n)t[o]=n[o]}return t}function t(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function n(o){function r(){}function i(t,n,i){if("undefined"!=typeof document){"number"==typeof(i=e({path:"/"},r.defaults,i)).expires&&(i.expires=new Date(1*new Date+864e5*i.expires)),i.expires=i.expires?i.expires.toUTCString():"";try{var c=JSON.stringify(n);/^[\{\[]/.test(c)&&(n=c)}catch(e){}n=o.write?o.write(n,t):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),t=encodeURIComponent(String(t)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var a="";for(var s in i)i[s]&&(a+="; "+s,!0!==i[s]&&(a+="="+i[s].split(";")[0]));return document.cookie=t+"="+n+a}}function c(e,n){if("undefined"!=typeof document){for(var r={},i=document.cookie?document.cookie.split("; "):[],c=0;c<i.length;c++){var a=i[c].split("="),s=a.slice(1).join("=");n||'"'!==s.charAt(0)||(s=s.slice(1,-1));try{var u=t(a[0]);if(s=(o.read||o)(s,u)||t(s),n)try{s=JSON.parse(s)}catch(e){}if(r[u]=s,e===u)break}catch(e){}}return e?r[e]:r}}return r.set=i,r.get=function(e){return c(e,!1)},r.getJSON=function(e){return c(e,!0)},r.remove=function(t,n){i(t,"",e(n,{expires:-1}))},r.defaults={},r.withConverter=n,r}((function(){}))},void 0===(r="function"==typeof(o=i)?o.call(t,n,t,e):o)||(e.exports=r),e.exports=i()}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";const e=window.ctEvents;var t=n.n(e),o=n(808),r=n.n(o);function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n<t;n++)o[n]=e[n];return o}var c,a=function(e){27===e.keyCode&&s(document.querySelector(".cookie-notification"))},s=function(e){document.removeEventListener("keyup",a),e.classList.add("ct-fade-start"),requestAnimationFrame((function(){e.classList.remove("ct-fade-start"),e.classList.add("ct-fade-end"),d(0,(function(){e.parentNode.removeChild(e)}))}))},u=function(){var e,t,n=document.querySelector(".cookie-notification");n&&(r().get("blocksy_cookies_consent_accepted")?n.remove():(e=n,document.addEventListener("keyup",a),requestAnimationFrame((function(){e.classList.remove("ct-fade-in-start"),e.classList.add("ct-fade-in-end"),d(0,(function(){e.classList.remove("ct-fade-in-end")}))})),(t=n.querySelectorAll("button"),function(e){if(Array.isArray(e))return i(e)}(t)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?i(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(e){e.addEventListener("click",(function(t){t.preventDefault(),e.classList.contains("ct-cookies-accept-button")&&r().set("blocksy_cookies_consent_accepted","true",{expires:new Date(1*new Date+{onehour:36e5,oneday:864e5,oneweek:6048e5,onemonth:26784e5,threemonths:80352e5,sixmonths:160704e5,oneyear:31536e6,forever:864e9}[e.closest("[data-period]").dataset.period]),sameSite:"lax"}),e.classList.contains("ct-cookies-decline-button")&&r().set("blocksy_cookies_consent_accepted","no",{expires:new Date(1*new Date+{onehour:36e5,oneday:864e5,oneweek:6048e5,onemonth:26784e5,threemonths:80352e5,sixmonths:160704e5,oneyear:31536e6,forever:864e9}[e.closest("[data-period]").dataset.period]),sameSite:"lax"}),s(n)}))}))))};function d(e,t){setTimeout((function(){t()}),300)}c=function(){u(),t()&&t().on("blocksy:cookies:init",(function(){u()}))},/comp|inter|loaded/.test(document.readyState)?c():document.addEventListener("DOMContentLoaded",c,!1)})()})();
|
|
|
|
|
|
|
|
|
|
|
|
framework/extensions/cookies-consent/static/bundle/main.js.LICENSE.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* JavaScript Cookie v2.2.1
|
3 |
+
* https://github.com/js-cookie/js-cookie
|
4 |
+
*
|
5 |
+
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
6 |
+
* Released under the MIT license
|
7 |
+
*/
|
framework/extensions/cookies-consent/static/bundle/main.min.css
CHANGED
@@ -1,8 +1,121 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
.cookie-notification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
.cookie-notification {
|
9 |
+
position: fixed;
|
10 |
+
left: var(--frame-size, 0px);
|
11 |
+
bottom: var(--frame-size, 0px);
|
12 |
+
z-index: 999999;
|
13 |
+
color: var(--color);
|
14 |
+
}
|
15 |
+
.cookie-notification a:hover {
|
16 |
+
color: var(--colorHover);
|
17 |
+
}
|
18 |
+
@media (max-width: 689.98px) {
|
19 |
+
.cookie-notification {
|
20 |
+
right: var(--frame-size, 0px);
|
21 |
+
}
|
22 |
+
}
|
23 |
+
.cookie-notification > div {
|
24 |
+
display: flex;
|
25 |
+
flex-direction: column;
|
26 |
+
gap: 20px;
|
27 |
+
padding: 20px 0;
|
28 |
+
}
|
29 |
+
@media (max-width: 689.98px) {
|
30 |
+
.cookie-notification > div {
|
31 |
+
align-items: center;
|
32 |
+
}
|
33 |
+
}
|
34 |
+
@media (max-width: 689.98px) {
|
35 |
+
.cookie-notification[data-type=type-1] {
|
36 |
+
background: var(--backgroundColor);
|
37 |
+
}
|
38 |
+
}
|
39 |
+
@media (min-width: 690px) {
|
40 |
+
.cookie-notification[data-type=type-1] {
|
41 |
+
padding: 0 25px 25px 25px;
|
42 |
+
}
|
43 |
+
}
|
44 |
+
.cookie-notification[data-type=type-1] .container {
|
45 |
+
position: relative;
|
46 |
+
}
|
47 |
+
@media (max-width: 689.98px) {
|
48 |
+
.cookie-notification[data-type=type-1] .container {
|
49 |
+
width: 88%;
|
50 |
+
margin: 0 auto;
|
51 |
+
}
|
52 |
+
}
|
53 |
+
@media (min-width: 690px) {
|
54 |
+
.cookie-notification[data-type=type-1] .container {
|
55 |
+
background: var(--backgroundColor);
|
56 |
+
box-shadow: 0px 5px 30px -5px rgba(34, 56, 101, 0.15);
|
57 |
+
padding: 30px;
|
58 |
+
border-radius: 3px;
|
59 |
+
max-width: var(--maxWidth);
|
60 |
+
}
|
61 |
+
}
|
62 |
+
.cookie-notification[data-type=type-2] {
|
63 |
+
right: var(--frame-size, 0px);
|
64 |
+
padding-right: var(--scrollbar-width, 0px);
|
65 |
+
background: var(--backgroundColor);
|
66 |
+
}
|
67 |
+
@media (min-width: 690px) {
|
68 |
+
.cookie-notification[data-type=type-2] .ct-container {
|
69 |
+
flex-direction: initial;
|
70 |
+
align-items: center;
|
71 |
+
justify-content: center;
|
72 |
+
}
|
73 |
+
}
|
74 |
+
.cookie-notification .ct-cookies-content {
|
75 |
+
font-size: 14px;
|
76 |
+
line-height: 1.4;
|
77 |
+
}
|
78 |
+
.cookie-notification .ct-cookies-content > *:last-child {
|
79 |
+
margin-bottom: 0;
|
80 |
+
}
|
81 |
+
.cookie-notification .ct-cookies-content a {
|
82 |
+
text-decoration: underline;
|
83 |
+
color: var(--colorHover);
|
84 |
+
}
|
85 |
+
@media (max-width: 689.98px) {
|
86 |
+
.cookie-notification .ct-cookies-content {
|
87 |
+
text-align: center;
|
88 |
+
}
|
89 |
+
}
|
90 |
+
.cookie-notification .ct-button-group {
|
91 |
+
display: flex;
|
92 |
+
gap: 10px;
|
93 |
+
}
|
94 |
+
@media (max-width: 479.98px) {
|
95 |
+
.cookie-notification .ct-button-group {
|
96 |
+
width: 100%;
|
97 |
+
}
|
98 |
+
}
|
99 |
+
.cookie-notification .ct-button-group .ct-button {
|
100 |
+
--buttonFontSize: 13px;
|
101 |
+
--buttonMinHeight: 35px;
|
102 |
+
--padding: 0 20px;
|
103 |
+
--buttonShadow: none;
|
104 |
+
--buttonTransform: none;
|
105 |
+
}
|
106 |
+
@media (max-width: 479.98px) {
|
107 |
+
.cookie-notification .ct-button-group .ct-button {
|
108 |
+
flex: 1;
|
109 |
+
}
|
110 |
+
}
|
111 |
+
.cookie-notification.ct-fade-in-start, .cookie-notification.ct-fade-in-end, .cookie-notification.ct-fade-start, .cookie-notification.ct-fade-end {
|
112 |
+
transition: all 0.3s ease;
|
113 |
+
}
|
114 |
+
.cookie-notification.ct-fade-in-start {
|
115 |
+
opacity: 0;
|
116 |
+
transform: translate3d(0, 15px, 0);
|
117 |
+
}
|
118 |
+
.cookie-notification.ct-fade-end {
|
119 |
+
opacity: 0;
|
120 |
+
transform: translate3d(0, 15px, 0);
|
121 |
+
}
|
framework/extensions/cookies-consent/static/bundle/sync.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";var e={n:t=>{var o=t&&t.__esModule?()=>t.default:()=>t;return e.d(o,{a:o}),o},d:(t,o)=>{for(var r in o)e.o(o,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:o[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.ctEvents;var o=e.n(t);function r(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,r)}return o}function n(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?r(Object(o),!0).forEach((function(t){i(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):r(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function i(e,t,o){return t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var o=[],r=!0,n=!1,i=void 0;try{for(var c,a=e[Symbol.iterator]();!(r=(c=a.next()).done)&&(o.push(c.value),!t||o.length!==t);r=!0);}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return o}}(e,t)||l(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e){return function(e){if(Array.isArray(e))return u(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||l(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){if(e){if("string"==typeof e)return u(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?u(e,t):void 0}}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,r=new Array(t);o<t;o++)r[o]=e[o];return r}function s(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,r)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?s(Object(o),!0).forEach((function(t){b(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):s(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function b(e,t,o){return t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}o().on("ct:customizer:sync:collect-variable-descriptors",(function(e){e.result=n(n({},e.result),{},{cookieContentColor:[{selector:".cookie-notification",variable:"color",type:"color:default"},{selector:".cookie-notification",variable:"colorHover",type:"color:hover"}],cookieBackground:{selector:".cookie-notification",variable:"backgroundColor",type:"color"},cookieButtonText:[{selector:".cookie-notification .ct-cookies-accept-button",variable:"buttonTextInitialColor",type:"color:default"},{selector:".cookie-notification .ct-cookies-accept-button",variable:"buttonTextHoverColor",type:"color:hover"}],cookieButtonBackground:[{selector:".cookie-notification .ct-cookies-accept-button",variable:"buttonInitialColor",type:"color:default"},{selector:".cookie-notification .ct-cookies-accept-button",variable:"buttonHoverColor",type:"color:hover"}],cookieDeclineButtonText:[{selector:".cookie-notification .ct-cookies-decline-button",variable:"buttonTextInitialColor",type:"color:default"},{selector:".cookie-notification .ct-cookies-decline-button",variable:"buttonTextHoverColor",type:"color:hover"}],cookieDeclineButtonBackground:[{selector:".cookie-notification .ct-cookies-decline-button",variable:"buttonInitialColor",type:"color:default"},{selector:".cookie-notification .ct-cookies-decline-button",variable:"buttonHoverColor",type:"color:hover"}],cookieMaxWidth:{selector:".cookie-notification",variable:"maxWidth",unit:"px"}})}));var p=function(){var e=document.createElement("div");return e.innerHTML=document.querySelector(".ct-customizer-preview-cache-container").value,e},y=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"id";if(t||(t=p()),t.querySelector(".ct-customizer-preview-cache [data-".concat(o,'="').concat(e,'"]'))){var r=t.querySelector(".ct-customizer-preview-cache [data-".concat(o,'="').concat(e,'"]')).innerHTML,n=document.createElement("div");return n.innerHTML=r,n}};function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,r=new Array(t);o<t;o++)r[o]=e[o];return r}var m=function(){var e=function(e){if(!document.querySelector(".cookie-notification"))return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e=f({fragment_id:null,selector:null,parent_selector:null,strategy:"append",whenInserted:function(){},beforeInsert:function(e){},should_insert:!0},e);var t=document.querySelector(e.parent_selector);if(a(document.querySelectorAll("".concat(e.parent_selector," ").concat(e.selector))).map((function(e){return e.parentNode.removeChild(e)})),e.should_insert){var o=y(e.fragment_id);if(o){for(;o.firstElementChild;)if(e.beforeInsert(o.firstElementChild),"append"===e.strategy&&t.appendChild(o.firstElementChild),"firstChild"===e.strategy&&t.insertBefore(o.firstElementChild,t.firstElementChild),e.strategy.indexOf("maybeBefore")>-1){var r=c(e.strategy.split(":"),2),n=(r[0],r[1]);t.querySelector(n)?t.insertBefore(o.firstElementChild,t.querySelector(n)):t.appendChild(o.firstElementChild)}e.whenInserted()}}}({fragment_id:"blocksy-cookies-consent-section",selector:".cookie-notification",parent_selector:"#main-container"}),!0}(),t=document.querySelector(".cookie-notification");if(t){t.querySelector(".ct-cookies-content")&&(t.querySelector(".ct-cookies-content").innerHTML=wp.customize("cookie_consent_content")()),t.querySelector("button.ct-cookies-accept-button").innerHTML=wp.customize("cookie_consent_button_text")();var r=wp.customize("cookie_consent_type")();t.dataset.type=r,t.firstElementChild.classList.remove("ct-container","container"),t.firstElementChild.classList.add("type-1"===r?"container":"ct-container"),e&&setTimeout((function(){return o().trigger("blocksy:cookies:init")}))}};wp.customize("cookie_consent_content",(function(e){return e.bind((function(e){m()}))})),wp.customize("cookie_consent_button_text",(function(e){return e.bind((function(e){return m()}))})),wp.customize("cookie_consent_type",(function(e){return e.bind((function(e){return m()}))})),wp.customize("forms_cookie_consent_content",(function(e){return e.bind((function(e){return(t=document.querySelectorAll(".gdpr-confirm-policy label"),function(e){if(Array.isArray(e))return d(e)}(t)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?d(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(t){return t.innerHTML=e}));var t}))}))})();
|
framework/extensions/newsletter-subscribe/admin-static/bundle/1.f588f19f53311c8b6a0a.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
(window.blocksyNewsletterSubscribeExtJsonp=window.blocksyNewsletterSubscribeExtJsonp||[]).push([[1],[,,,,,,function(e,t,n){var o;
|
2 |
-
/*!
|
3 |
-
Copyright (c) 2017 Jed Watson.
|
4 |
-
Licensed under the MIT License (MIT), see
|
5 |
-
http://jedwatson.github.io/classnames
|
6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"===i||"number"===i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"===i)for(var u in o)n.call(o,u)&&o[u]&&e.push(u)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},function(e,t,n){e.exports=n(8)()},function(e,t,n){"use strict";var o=n(9);function r(){}function i(){}i.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,i,s){if(s!==o){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";e.exports=n(11)},function(e,t,n){"use strict";
|
7 |
-
/** @license React v16.13.1
|
8 |
-
* react-is.production.min.js
|
9 |
-
*
|
10 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
11 |
-
*
|
12 |
-
* This source code is licensed under the MIT license found in the
|
13 |
-
* LICENSE file in the root directory of this source tree.
|
14 |
-
*/var o="function"==typeof Symbol&&Symbol.for,r=o?Symbol.for("react.element"):60103,i=o?Symbol.for("react.portal"):60106,s=o?Symbol.for("react.fragment"):60107,u=o?Symbol.for("react.strict_mode"):60108,a=o?Symbol.for("react.profiler"):60114,l=o?Symbol.for("react.provider"):60109,p=o?Symbol.for("react.context"):60110,d=o?Symbol.for("react.async_mode"):60111,c=o?Symbol.for("react.concurrent_mode"):60111,h=o?Symbol.for("react.forward_ref"):60112,f=o?Symbol.for("react.suspense"):60113,g=o?Symbol.for("react.suspense_list"):60120,m=o?Symbol.for("react.memo"):60115,v=o?Symbol.for("react.lazy"):60116,y=o?Symbol.for("react.block"):60121,I=o?Symbol.for("react.fundamental"):60117,S=o?Symbol.for("react.responder"):60118,b=o?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case d:case c:case s:case a:case u:case f:return e;default:switch(e=e&&e.$$typeof){case p:case h:case v:case m:case l:return e;default:return t}}case i:return t}}}function x(e){return w(e)===c}t.AsyncMode=d,t.ConcurrentMode=c,t.ContextConsumer=p,t.ContextProvider=l,t.Element=r,t.ForwardRef=h,t.Fragment=s,t.Lazy=v,t.Memo=m,t.Portal=i,t.Profiler=a,t.StrictMode=u,t.Suspense=f,t.isAsyncMode=function(e){return x(e)||w(e)===d},t.isConcurrentMode=x,t.isContextConsumer=function(e){return w(e)===p},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return w(e)===h},t.isFragment=function(e){return w(e)===s},t.isLazy=function(e){return w(e)===v},t.isMemo=function(e){return w(e)===m},t.isPortal=function(e){return w(e)===i},t.isProfiler=function(e){return w(e)===a},t.isStrictMode=function(e){return w(e)===u},t.isSuspense=function(e){return w(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===s||e===c||e===a||e===u||e===f||e===g||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===m||e.$$typeof===l||e.$$typeof===p||e.$$typeof===h||e.$$typeof===I||e.$$typeof===S||e.$$typeof===b||e.$$typeof===y)},t.typeOf=w},function(e,t,n){"use strict";function o(e,t){if(null==e)return{};var n,o,r={},i=Object.keys(e);for(o=0;o<i.length;o++)n=i[o],t.indexOf(n)>=0||(r[n]=e[n]);return r}function r(){return(r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}function i(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var s=n(7),u=n.n(s),a=n(1);n(10);function l(e){return null!=e&&"object"==typeof e&&1===e.nodeType}function p(e,t){return(!t||"hidden"!==e)&&("visible"!==e&&"clip"!==e)}function d(e,t){if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){var n=getComputedStyle(e,null);return p(n.overflowY,t)||p(n.overflowX,t)||function(e){var t=function(e){return e.ownerDocument&&e.ownerDocument.defaultView?e.ownerDocument.defaultView.frameElement:null}(e);return!!t&&(t.clientHeight<e.scrollHeight||t.clientWidth<e.scrollWidth)}(e)}return!1}function c(e,t,n,o,r,i,s,u){return i<e&&s>t||i>e&&s<t?0:i<=e&&u<=n||s>=t&&u>=n?i-e-o:s>t&&u<n||i<e&&u>n?s-t+r:0}var h=0;function f(e){return"function"==typeof e?e:g}function g(){}function m(e,t){null!==e&&function(e,t){var n=t.scrollMode,o=t.block,r=t.inline,i=t.boundary,s=t.skipOverflowHiddenElements,u="function"==typeof i?i:function(e){return e!==i};if(!l(e))throw new TypeError("Invalid target");for(var a=document.scrollingElement||document.documentElement,p=[],h=e;l(h)&&u(h);){if((h=h.parentNode)===a){p.push(h);break}h===document.body&&d(h)&&!d(document.documentElement)||d(h,s)&&p.push(h)}for(var f=window.visualViewport?visualViewport.width:innerWidth,g=window.visualViewport?visualViewport.height:innerHeight,m=window.scrollX||pageXOffset,v=window.scrollY||pageYOffset,y=e.getBoundingClientRect(),I=y.height,S=y.width,b=y.top,w=y.right,x=y.bottom,C=y.left,H="start"===o||"nearest"===o?b:"end"===o?x:b+I/2,O="center"===r?C+S/2:"end"===r?w:C,E=[],P=0;P<p.length;P++){var M=p[P],D=M.getBoundingClientRect(),T=D.height,k=D.width,R=D.top,A=D.right,V=D.bottom,K=D.left;if("if-needed"===n&&b>=0&&C>=0&&x<=g&&w<=f&&b>=R&&x<=V&&C>=K&&w<=A)return E;var _=getComputedStyle(M),L=parseInt(_.borderLeftWidth,10),$=parseInt(_.borderTopWidth,10),B=parseInt(_.borderRightWidth,10),j=parseInt(_.borderBottomWidth,10),W=0,N=0,U="offsetWidth"in M?M.offsetWidth-M.clientWidth-L-B:0,F="offsetHeight"in M?M.offsetHeight-M.clientHeight-$-j:0;if(a===M)W="start"===o?H:"end"===o?H-g:"nearest"===o?c(v,v+g,g,$,j,v+H,v+H+I,I):H-g/2,N="start"===r?O:"center"===r?O-f/2:"end"===r?O-f:c(m,m+f,f,L,B,m+O,m+O+S,S),W=Math.max(0,W+v),N=Math.max(0,N+m);else{W="start"===o?H-R-$:"end"===o?H-V+j+F:"nearest"===o?c(R,V,T,$,j+F,H,H+I,I):H-(R+T/2)+F/2,N="start"===r?O-K-L:"center"===r?O-(K+k/2)+U/2:"end"===r?O-A+B+U:c(K,A,k,L,B+U,O,O+S,S);var z=M.scrollLeft,Y=M.scrollTop;H+=Y-(W=Math.max(0,Math.min(Y+W,M.scrollHeight-T+F))),O+=z-(N=Math.max(0,Math.min(z+N,M.scrollWidth-k+U)))}E.push({el:M,top:W,left:N})}return E}(e,{boundary:t,block:"nearest",scrollMode:"if-needed"}).forEach((function(e){var t=e.el,n=e.top,o=e.left;t.scrollTop=n,t.scrollLeft=o}))}function v(e,t){return e===t||e.contains&&e.contains(t)}function y(e,t){var n;function o(){n&&clearTimeout(n)}function r(){for(var r=arguments.length,i=new Array(r),s=0;s<r;s++)i[s]=arguments[s];o(),n=setTimeout((function(){n=null,e.apply(void 0,i)}),t)}return r.cancel=o,r}function I(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){for(var n=arguments.length,o=new Array(n>1?n-1:0),r=1;r<n;r++)o[r-1]=arguments[r];return t.some((function(t){return t&&t.apply(void 0,[e].concat(o)),e.preventDownshiftDefault||e.hasOwnProperty("nativeEvent")&&e.nativeEvent.preventDownshiftDefault}))}}function S(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach((function(t){"function"==typeof t?t(e):t&&(t.current=e)}))}}function b(e){var t=e.isOpen,n=e.selectedItem,o=e.resultCount,r=e.previousResultCount,i=e.itemToString;return t?o?o!==r?o+" result"+(1===o?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":n?i(n):""}function w(e,t){return!(e=Array.isArray(e)?e[0]:e)&&t?t:e}function x(e){return"string"==typeof e.type}function C(e){return e.props}var H=["highlightedIndex","inputValue","isOpen","selectedItem","type"];function O(e){void 0===e&&(e={});var t={};return H.forEach((function(n){e.hasOwnProperty(n)&&(t[n]=e[n])})),t}function E(e){var t=e.key,n=e.keyCode;return n>=37&&n<=40&&0!==t.indexOf("Arrow")?"Arrow"+t:t}function P(e,t,n){var o=n-1;("number"!=typeof t||t<0||t>=n)&&(t=e>0?-1:o+1);var r=t+e;return r<0?r=o:r>o&&(r=0),r}var M=y((function(){T().textContent=""}),500);function D(e,t){var n=T(t);e&&(n.textContent=e,M())}function T(e){void 0===e&&(e=document);var t=e.getElementById("a11y-status-message");return t||((t=e.createElement("div")).setAttribute("id","a11y-status-message"),t.setAttribute("role","status"),t.setAttribute("aria-live","polite"),t.setAttribute("aria-relevant","additions text"),Object.assign(t.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(t),t)}var k=Object.freeze({__proto__:null,unknown:0,mouseUp:1,itemMouseEnter:2,keyDownArrowUp:3,keyDownArrowDown:4,keyDownEscape:5,keyDownEnter:6,keyDownHome:7,keyDownEnd:8,clickItem:9,blurInput:10,changeInput:11,keyDownSpaceButton:12,clickButton:13,blurButton:14,controlledPropUpdatedSelectedItem:15,touchEnd:16}),R=function(){var e=function(e){var t,n;function s(t){var n=e.call(this,t)||this;n.id=n.props.id||"downshift-"+String(h++),n.menuId=n.props.menuId||n.id+"-menu",n.labelId=n.props.labelId||n.id+"-label",n.inputId=n.props.inputId||n.id+"-input",n.getItemId=n.props.getItemId||function(e){return n.id+"-item-"+e},n.input=null,n.items=[],n.itemCount=null,n.previousResultCount=0,n.timeoutIds=[],n.internalSetTimeout=function(e,t){var o=setTimeout((function(){n.timeoutIds=n.timeoutIds.filter((function(e){return e!==o})),e()}),t);n.timeoutIds.push(o)},n.setItemCount=function(e){n.itemCount=e},n.unsetItemCount=function(){n.itemCount=null},n.setHighlightedIndex=function(e,t){void 0===e&&(e=n.props.defaultHighlightedIndex),void 0===t&&(t={}),t=O(t),n.internalSetState(r({highlightedIndex:e},t))},n.clearSelection=function(e){n.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:n.props.defaultHighlightedIndex,isOpen:n.props.defaultIsOpen},e)},n.selectItem=function(e,t,o){t=O(t),n.internalSetState(r({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,selectedItem:e,inputValue:n.props.itemToString(e)},t),o)},n.selectItemAtIndex=function(e,t,o){var r=n.items[e];null!=r&&n.selectItem(r,t,o)},n.selectHighlightedItem=function(e,t){return n.selectItemAtIndex(n.getState().highlightedIndex,e,t)},n.internalSetState=function(e,t){var o,i,s={},u="function"==typeof e;return!u&&e.hasOwnProperty("inputValue")&&n.props.onInputValueChange(e.inputValue,r({},n.getStateAndHelpers(),{},e)),n.setState((function(t){t=n.getState(t);var a=u?e(t):e;a=n.props.stateReducer(t,a),o=a.hasOwnProperty("selectedItem");var l={},p={};return o&&a.selectedItem!==t.selectedItem&&(i=a.selectedItem),a.type=a.type||0,Object.keys(a).forEach((function(e){t[e]!==a[e]&&(s[e]=a[e]),"type"!==e&&(p[e]=a[e],n.isControlledProp(e)||(l[e]=a[e]))})),u&&a.hasOwnProperty("inputValue")&&n.props.onInputValueChange(a.inputValue,r({},n.getStateAndHelpers(),{},a)),l}),(function(){f(t)(),Object.keys(s).length>1&&n.props.onStateChange(s,n.getStateAndHelpers()),o&&n.props.onSelect(e.selectedItem,n.getStateAndHelpers()),void 0!==i&&n.props.onChange(i,n.getStateAndHelpers()),n.props.onUserAction(s,n.getStateAndHelpers())}))},n.rootRef=function(e){return n._rootNode=e},n.getRootProps=function(e,t){var i,s=void 0===e?{}:e,u=s.refKey,a=void 0===u?"ref":u,l=s.ref,p=o(s,["refKey","ref"]),d=(void 0===t?{}:t).suppressRefError,c=void 0!==d&&d;n.getRootProps.called=!0,n.getRootProps.refKey=a,n.getRootProps.suppressRefError=c;var h=n.getState().isOpen;return r(((i={})[a]=S(l,n.rootRef),i.role="combobox",i["aria-expanded"]=h,i["aria-haspopup"]="listbox",i["aria-owns"]=h?n.menuId:null,i["aria-labelledby"]=n.labelId,i),p)},n.keyDownHandlers={ArrowDown:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?5:1;this.moveHighlightedIndex(n,{type:4})}else this.internalSetState({isOpen:!0,type:4},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(P(1,t.getState().highlightedIndex,e),{type:4})}))},ArrowUp:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?-5:-1;this.moveHighlightedIndex(n,{type:3})}else this.internalSetState({isOpen:!0,type:3},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(P(-1,t.getState().highlightedIndex,e),{type:4})}))},Enter:function(e){var t=this.getState(),n=t.isOpen,o=t.highlightedIndex;if(n&&null!=o){e.preventDefault();var r=this.items[o],i=this.getItemNodeFromIndex(o);if(null==r||i&&i.hasAttribute("disabled"))return;this.selectHighlightedItem({type:6})}},Escape:function(e){e.preventDefault(),this.reset({type:5,selectedItem:null,inputValue:""})}},n.buttonKeyDownHandlers=r({},n.keyDownHandlers,{" ":function(e){e.preventDefault(),this.toggleMenu({type:12})}}),n.inputKeyDownHandlers=r({},n.keyDownHandlers,{Home:function(e){this.highlightFirstOrLastIndex(e,!0,{type:7})},End:function(e){this.highlightFirstOrLastIndex(e,!1,{type:8})}}),n.getToggleButtonProps=function(e){var t=void 0===e?{}:e,i=t.onClick,s=(t.onPress,t.onKeyDown),u=t.onKeyUp,a=t.onBlur,l=o(t,["onClick","onPress","onKeyDown","onKeyUp","onBlur"]),p=n.getState().isOpen,d={onClick:I(i,n.buttonHandleClick),onKeyDown:I(s,n.buttonHandleKeyDown),onKeyUp:I(u,n.buttonHandleKeyUp),onBlur:I(a,n.buttonHandleBlur)};return r({type:"button",role:"button","aria-label":p?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},l.disabled?{}:d,{},l)},n.buttonHandleKeyUp=function(e){e.preventDefault()},n.buttonHandleKeyDown=function(e){var t=E(e);n.buttonKeyDownHandlers[t]&&n.buttonKeyDownHandlers[t].call(i(n),e)},n.buttonHandleClick=function(e){e.preventDefault(),n.props.environment.document.activeElement===n.props.environment.document.body&&e.target.focus(),n.internalSetTimeout((function(){return n.toggleMenu({type:13})}))},n.buttonHandleBlur=function(e){var t=e.target;n.internalSetTimeout((function(){n.isMouseDown||null!=n.props.environment.document.activeElement&&n.props.environment.document.activeElement.id===n.inputId||n.props.environment.document.activeElement===t||n.reset({type:14})}))},n.getLabelProps=function(e){return r({htmlFor:n.inputId,id:n.labelId},e)},n.getInputProps=function(e){var t=void 0===e?{}:e,i=t.onKeyDown,s=t.onBlur,u=t.onChange,a=t.onInput,l=(t.onChangeText,o(t,["onKeyDown","onBlur","onChange","onInput","onChangeText"])),p={};var d,c=n.getState(),h=c.inputValue,f=c.isOpen,g=c.highlightedIndex;l.disabled||((d={}).onChange=I(u,a,n.inputHandleChange),d.onKeyDown=I(i,n.inputHandleKeyDown),d.onBlur=I(s,n.inputHandleBlur),p=d);return r({"aria-autocomplete":"list","aria-activedescendant":f&&"number"==typeof g&&g>=0?n.getItemId(g):null,"aria-controls":f?n.menuId:null,"aria-labelledby":n.labelId,autoComplete:"off",value:h,id:n.inputId},p,{},l)},n.inputHandleKeyDown=function(e){var t=E(e);t&&n.inputKeyDownHandlers[t]&&n.inputKeyDownHandlers[t].call(i(n),e)},n.inputHandleChange=function(e){n.internalSetState({type:11,isOpen:!0,inputValue:e.target.value,highlightedIndex:n.props.defaultHighlightedIndex})},n.inputHandleBlur=function(){n.internalSetTimeout((function(){var e=n.props.environment.document&&!!n.props.environment.document.activeElement&&!!n.props.environment.document.activeElement.dataset&&n.props.environment.document.activeElement.dataset.toggle&&n._rootNode&&n._rootNode.contains(n.props.environment.document.activeElement);n.isMouseDown||e||n.reset({type:10})}))},n.menuRef=function(e){n._menuNode=e},n.getMenuProps=function(e,t){var i,s=void 0===e?{}:e,u=s.refKey,a=void 0===u?"ref":u,l=s.ref,p=o(s,["refKey","ref"]),d=(void 0===t?{}:t).suppressRefError,c=void 0!==d&&d;return n.getMenuProps.called=!0,n.getMenuProps.refKey=a,n.getMenuProps.suppressRefError=c,r(((i={})[a]=S(l,n.menuRef),i.role="listbox",i["aria-labelledby"]=p&&p["aria-label"]?null:n.labelId,i.id=n.menuId,i),p)},n.getItemProps=function(e){var t,i=void 0===e?{}:e,s=i.onMouseMove,u=i.onMouseDown,a=i.onClick,l=(i.onPress,i.index),p=i.item,d=void 0===p?void 0:p,c=o(i,["onMouseMove","onMouseDown","onClick","onPress","index","item"]);void 0===l?(n.items.push(d),l=n.items.indexOf(d)):n.items[l]=d;var h=a,f=((t={onMouseMove:I(s,(function(){l!==n.getState().highlightedIndex&&(n.setHighlightedIndex(l,{type:2}),n.avoidScrolling=!0,n.internalSetTimeout((function(){return n.avoidScrolling=!1}),250))})),onMouseDown:I(u,(function(e){e.preventDefault()}))}).onClick=I(h,(function(){n.selectItemAtIndex(l,{type:9})})),t),g=c.disabled?{onMouseDown:f.onMouseDown}:f;return r({id:n.getItemId(l),role:"option","aria-selected":n.getState().highlightedIndex===l},g,{},c)},n.clearItems=function(){n.items=[]},n.reset=function(e,t){void 0===e&&(e={}),e=O(e),n.internalSetState((function(t){var o=t.selectedItem;return r({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,inputValue:n.props.itemToString(o)},e)}),t)},n.toggleMenu=function(e,t){void 0===e&&(e={}),e=O(e),n.internalSetState((function(t){var o=t.isOpen;return r({isOpen:!o},o&&{highlightedIndex:n.props.defaultHighlightedIndex},{},e)}),(function(){var o=n.getState(),r=o.isOpen,i=o.highlightedIndex;r&&n.getItemCount()>0&&"number"==typeof i&&n.setHighlightedIndex(i,e),f(t)()}))},n.openMenu=function(e){n.internalSetState({isOpen:!0},e)},n.closeMenu=function(e){n.internalSetState({isOpen:!1},e)},n.updateStatus=y((function(){var e=n.getState(),t=n.items[e.highlightedIndex],o=n.getItemCount(),i=n.props.getA11yStatusMessage(r({itemToString:n.props.itemToString,previousResultCount:n.previousResultCount,resultCount:o,highlightedItem:t},e));n.previousResultCount=o,D(i,n.props.environment.document)}),200);var s=n.props,u=s.defaultHighlightedIndex,a=s.initialHighlightedIndex,l=void 0===a?u:a,p=s.defaultIsOpen,d=s.initialIsOpen,c=void 0===d?p:d,g=s.initialInputValue,m=void 0===g?"":g,v=s.initialSelectedItem,b=void 0===v?null:v,w=n.getState({highlightedIndex:l,isOpen:c,inputValue:m,selectedItem:b});return null!=w.selectedItem&&void 0===n.props.initialInputValue&&(w.inputValue=n.props.itemToString(w.selectedItem)),n.state=w,n}n=e,(t=s).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var u=s.prototype;return u.internalClearTimeouts=function(){this.timeoutIds.forEach((function(e){clearTimeout(e)})),this.timeoutIds=[]},u.getState=function(e){var t=this;return void 0===e&&(e=this.state),Object.keys(e).reduce((function(n,o){return n[o]=t.isControlledProp(o)?t.props[o]:e[o],n}),{})},u.isControlledProp=function(e){return void 0!==this.props[e]},u.getItemCount=function(){var e=this.items.length;return null!=this.itemCount?e=this.itemCount:void 0!==this.props.itemCount&&(e=this.props.itemCount),e},u.getItemNodeFromIndex=function(e){return this.props.environment.document.getElementById(this.getItemId(e))},u.scrollHighlightedItemIntoView=function(){var e=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(e,this._menuNode)},u.moveHighlightedIndex=function(e,t){var n=this.getItemCount();if(n>0){var o=P(e,this.getState().highlightedIndex,n);this.setHighlightedIndex(o,t)}},u.highlightFirstOrLastIndex=function(e,t,n){var o=this.getItemCount()-1;o<0||!this.getState().isOpen||(e.preventDefault(),this.setHighlightedIndex(t?0:o,n))},u.getStateAndHelpers=function(){var e=this.getState(),t=e.highlightedIndex,n=e.inputValue,o=e.selectedItem,r=e.isOpen,i=this.props.itemToString,s=this.id,u=this.getRootProps,a=this.getToggleButtonProps,l=this.getLabelProps,p=this.getMenuProps,d=this.getInputProps,c=this.getItemProps,h=this.openMenu,f=this.closeMenu,g=this.toggleMenu,m=this.selectItem,v=this.selectItemAtIndex,y=this.selectHighlightedItem,I=this.setHighlightedIndex,S=this.clearSelection,b=this.clearItems;return{getRootProps:u,getToggleButtonProps:a,getLabelProps:l,getMenuProps:p,getInputProps:d,getItemProps:c,reset:this.reset,openMenu:h,closeMenu:f,toggleMenu:g,selectItem:m,selectItemAtIndex:v,selectHighlightedItem:y,setHighlightedIndex:I,clearSelection:S,clearItems:b,setItemCount:this.setItemCount,unsetItemCount:this.unsetItemCount,setState:this.internalSetState,itemToString:i,id:s,highlightedIndex:t,inputValue:n,isOpen:r,selectedItem:o}},u.componentDidMount=function(){var e=this;var t=function(t,n){void 0===n&&(n=!0);var o=e.props.environment.document;return[e._rootNode,e._menuNode].some((function(e){return e&&(v(e,t)||n&&v(e,o.activeElement))}))},n=function(){e.isMouseDown=!0},o=function(n){e.isMouseDown=!1,!t(n.target)&&e.getState().isOpen&&e.reset({type:1},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},r=function(){e.isTouchMove=!1},i=function(){e.isTouchMove=!0},s=function(n){var o=t(n.target,!1);e.isTouchMove||o||!e.getState().isOpen||e.reset({type:16},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},u=this.props.environment;u.addEventListener("mousedown",n),u.addEventListener("mouseup",o),u.addEventListener("touchstart",r),u.addEventListener("touchmove",i),u.addEventListener("touchend",s),this.cleanup=function(){e.internalClearTimeouts(),e.updateStatus.cancel(),u.removeEventListener("mousedown",n),u.removeEventListener("mouseup",o),u.removeEventListener("touchstart",r),u.removeEventListener("touchmove",i),u.removeEventListener("touchend",s)}},u.shouldScroll=function(e,t){var n=(void 0===this.props.highlightedIndex?this.getState():this.props).highlightedIndex,o=(void 0===t.highlightedIndex?e:t).highlightedIndex;return n&&this.getState().isOpen&&!e.isOpen||n!==o},u.componentDidUpdate=function(e,t){this.isControlledProp("selectedItem")&&this.props.selectedItemChanged(e.selectedItem,this.props.selectedItem)&&this.internalSetState({type:15,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(t,e)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},u.componentWillUnmount=function(){this.cleanup()},u.render=function(){var e=w(this.props.children,g);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var t=w(e(this.getStateAndHelpers()));return t?this.getRootProps.called||this.props.suppressRefError?t:x(t)?Object(a.cloneElement)(t,this.getRootProps(C(t))):void 0:null},s}(a.Component);return e.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:b,itemToString:function(e){return null==e?"":String(e)},onStateChange:g,onInputValueChange:g,onUserAction:g,onChange:g,onSelect:g,onOuterClick:g,selectedItemChanged:function(e,t){return e!==t},environment:"undefined"==typeof window?{}:window,stateReducer:function(e,t){return t},suppressRefError:!1,scrollIntoView:m},e.stateChangeTypes=k,e}();u.a.array.isRequired,u.a.func,u.a.func,u.a.func,u.a.bool,u.a.number,u.a.number,u.a.number,u.a.bool,u.a.bool,u.a.bool,u.a.any,u.a.any,u.a.any,u.a.string,u.a.string,u.a.string,u.a.func,u.a.string,u.a.func,u.a.func,u.a.func,u.a.func,u.a.func,u.a.shape({addEventListener:u.a.func,removeEventListener:u.a.func,document:u.a.shape({getElementById:u.a.func,activeElement:u.a.any,body:u.a.any})});"undefined"==typeof window||window;t.a=R}]]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
framework/extensions/newsletter-subscribe/admin-static/bundle/2.b8cdca0a643ec9bd1ed2.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
(window.blocksyNewsletterSubscribeExtJsonp=window.blocksyNewsletterSubscribeExtJsonp||[]).push([[2],{13:function(e,t,n){"use strict";n.r(t);var r=n(0),a=n(12),c=n(2),o=n(6),i=n.n(o);function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function s(e,t,n,r,a,c,o){try{var i=e[c](o),u=i.value}catch(e){return void n(e)}i.done?t(u):Promise.resolve(u).then(r,a)}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,a=!1,c=void 0;try{for(var o,i=e[Symbol.iterator]();!(r=(o=i.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(e){a=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(a)throw c}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var d=null;t.default=function(e){var t=e.value,n=e.onChange,o=l(Object(r.useState)(d||[]),2),f=o[0],p=o[1],b=l(Object(r.useState)(!d),2),m=b[0],v=b[1],y=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,a=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(!(a.length>0&&void 0!==a[0])||a[0])&&v(!0),(t=new FormData).append("action","blocksy_ext_newsletter_subscribe_get_actual_lists"),e.prev=4,e.next=7,fetch(ajaxurl,{method:"POST",body:t});case 7:if(200!==(n=e.sent).status){e.next=18;break}return e.next=11,n.json();case 11:if(!(r=e.sent).success){e.next=18;break}if("api_key_invalid"===r.data.result){e.next=18;break}return v(!1),p(r.data.result),d=r.data.result,e.abrupt("return");case 18:e.next=22;break;case 20:e.prev=20,e.t0=e.catch(4);case 22:v(!1);case 23:case"end":return e.stop()}}),e,null,[[4,20]])})),function(){var t=this,n=arguments;return new Promise((function(r,a){var c=e.apply(t,n);function o(e){s(c,r,a,o,i,"next",e)}function i(e){s(c,r,a,o,i,"throw",e)}o(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.useEffect)((function(){y(!d)}),[]),0===f.length?Object(r.createElement)("div",{className:"ct-select-input"},Object(r.createElement)("input",{disabled:!0,placeholder:m?Object(c.__)("Loading...","blocksy-companion"):Object(c.__)("Invalid API Key...","blocksy-companion")})):Object(r.createElement)(a.a,{selectedItem:t||f[0].id,onChange:function(e){return n(e)},itemToString:function(e){return e?(f.find((function(t){return t.id===e}))||{}).name:""}},(function(e){var t=e.getInputProps,n=e.getItemProps,a=(e.getLabelProps,e.getMenuProps),o=e.isOpen,s=(e.inputValue,e.highlightedIndex),l=e.selectedItem,d=e.openMenu;return Object(r.createElement)("div",{className:"ct-select-input"},Object(r.createElement)("input",u({},t({onFocus:function(){return d()},onClick:function(){return d()}}),{placeholder:Object(c.__)("Select list...","blocksy-companion"),readOnly:!0})),o&&Object(r.createElement)("div",a({className:"ct-select-dropdown"}),f.map((function(e,t){return Object(r.createElement)("div",n({key:e.id,index:t,item:e.id,className:i()("ct-select-dropdown-item",{active:s===t,selected:l===e.id})}),e.name)}))))}))}}}]);
|
|
framework/extensions/newsletter-subscribe/admin-static/bundle/486.2f466d7115021070874d.js
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/*! For license information please see 486.2f466d7115021070874d.js.LICENSE.txt */
|
2 |
+
(globalThis.blocksyNewsletterSubscribeExtJsonp=globalThis.blocksyNewsletterSubscribeExtJsonp||[]).push([[486],{184:(e,t)=>{var n;!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var i=typeof n;if("string"===i||"number"===i)e.push(n);else if(Array.isArray(n)&&n.length){var s=r.apply(null,n);s&&e.push(s)}else if("object"===i)for(var u in n)o.call(n,u)&&n[u]&&e.push(u)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(n=function(){return r}.apply(t,[]))||(e.exports=n)}()},380:(e,t,n)=>{"use strict";function o(e,t){if(null==e)return{};var n,o,r={},i=Object.keys(e);for(o=0;o<i.length;o++)n=i[o],t.indexOf(n)>=0||(r[n]=e[n]);return r}function r(){return r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},r.apply(this,arguments)}function i(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{ZP:()=>T});var s=n(697),u=n.n(s),l=n(313);function a(e){return null!=e&&"object"==typeof e&&1===e.nodeType}function p(e,t){return(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e}function d(e,t){if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){var n=getComputedStyle(e,null);return p(n.overflowY,t)||p(n.overflowX,t)||function(e){var t=function(e){return e.ownerDocument&&e.ownerDocument.defaultView?e.ownerDocument.defaultView.frameElement:null}(e);return!!t&&(t.clientHeight<e.scrollHeight||t.clientWidth<e.scrollWidth)}(e)}return!1}function c(e,t,n,o,r,i,s,u){return i<e&&s>t||i>e&&s<t?0:i<=e&&u<=n||s>=t&&u>=n?i-e-o:s>t&&u<n||i<e&&u>n?s-t+r:0}n(864);var h=0;function f(e){return"function"==typeof e?e:g}function g(){}function m(e,t){if(null!==e){var n=function(e,t){var n=t.scrollMode,o=t.block,r=t.inline,i=t.boundary,s=t.skipOverflowHiddenElements,u="function"==typeof i?i:function(e){return e!==i};if(!a(e))throw new TypeError("Invalid target");for(var l=document.scrollingElement||document.documentElement,p=[],h=e;a(h)&&u(h);){if((h=h.parentNode)===l){p.push(h);break}h===document.body&&d(h)&&!d(document.documentElement)||d(h,s)&&p.push(h)}for(var f=window.visualViewport?visualViewport.width:innerWidth,g=window.visualViewport?visualViewport.height:innerHeight,m=window.scrollX||pageXOffset,v=window.scrollY||pageYOffset,I=e.getBoundingClientRect(),y=I.height,b=I.width,S=I.top,w=I.right,x=I.bottom,C=I.left,H="start"===o||"nearest"===o?S:"end"===o?x:S+y/2,O="center"===r?C+b/2:"end"===r?w:C,E=[],P=0;P<p.length;P++){var D=p[P],M=D.getBoundingClientRect(),T=M.height,k=M.width,R=M.top,A=M.right,V=M.bottom,K=M.left;if("if-needed"===n&&S>=0&&C>=0&&x<=g&&w<=f&&S>=R&&x<=V&&C>=K&&w<=A)return E;var _=getComputedStyle(D),L=parseInt(_.borderLeftWidth,10),B=parseInt(_.borderTopWidth,10),W=parseInt(_.borderRightWidth,10),N=parseInt(_.borderBottomWidth,10),U=0,j=0,F="offsetWidth"in D?D.offsetWidth-D.clientWidth-L-W:0,Y="offsetHeight"in D?D.offsetHeight-D.clientHeight-B-N:0;if(l===D)U="start"===o?H:"end"===o?H-g:"nearest"===o?c(v,v+g,g,B,N,v+H,v+H+y,y):H-g/2,j="start"===r?O:"center"===r?O-f/2:"end"===r?O-f:c(m,m+f,f,L,W,m+O,m+O+b,b),U=Math.max(0,U+v),j=Math.max(0,j+m);else{U="start"===o?H-R-B:"end"===o?H-V+N+Y:"nearest"===o?c(R,V,T,B,N+Y,H,H+y,y):H-(R+T/2)+Y/2,j="start"===r?O-K-L:"center"===r?O-(K+k/2)+F/2:"end"===r?O-A+W+F:c(K,A,k,L,W+F,O,O+b,b);var X=D.scrollLeft,q=D.scrollTop;H+=q-(U=Math.max(0,Math.min(q+U,D.scrollHeight-T+Y))),O+=X-(j=Math.max(0,Math.min(X+j,D.scrollWidth-k+F)))}E.push({el:D,top:U,left:j})}return E}(e,{boundary:t,block:"nearest",scrollMode:"if-needed"});n.forEach((function(e){var t=e.el,n=e.top,o=e.left;t.scrollTop=n,t.scrollLeft=o}))}}function v(e,t){return e===t||e.contains&&e.contains(t)}function I(e,t){var n;function o(){n&&clearTimeout(n)}function r(){for(var r=arguments.length,i=new Array(r),s=0;s<r;s++)i[s]=arguments[s];o(),n=setTimeout((function(){n=null,e.apply(void 0,i)}),t)}return r.cancel=o,r}function y(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){for(var n=arguments.length,o=new Array(n>1?n-1:0),r=1;r<n;r++)o[r-1]=arguments[r];return t.some((function(t){return t&&t.apply(void 0,[e].concat(o)),e.preventDownshiftDefault||e.hasOwnProperty("nativeEvent")&&e.nativeEvent.preventDownshiftDefault}))}}function b(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach((function(t){"function"==typeof t?t(e):t&&(t.current=e)}))}}function S(e){var t=e.isOpen,n=e.selectedItem,o=e.resultCount,r=e.previousResultCount,i=e.itemToString;return t?o?o!==r?o+" result"+(1===o?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":n?i(n):""}function w(e,t){return!(e=Array.isArray(e)?e[0]:e)&&t?t:e}var x=["highlightedIndex","inputValue","isOpen","selectedItem","type"];function C(e){void 0===e&&(e={});var t={};return x.forEach((function(n){e.hasOwnProperty(n)&&(t[n]=e[n])})),t}function H(e){var t=e.key,n=e.keyCode;return n>=37&&n<=40&&0!==t.indexOf("Arrow")?"Arrow"+t:t}function O(e,t,n){var o=n-1;("number"!=typeof t||t<0||t>=n)&&(t=e>0?-1:o+1);var r=t+e;return r<0?r=o:r>o&&(r=0),r}var E=I((function(){P().textContent=""}),500);function P(e){void 0===e&&(e=document);var t=e.getElementById("a11y-status-message");return t||((t=e.createElement("div")).setAttribute("id","a11y-status-message"),t.setAttribute("role","status"),t.setAttribute("aria-live","polite"),t.setAttribute("aria-relevant","additions text"),Object.assign(t.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(t),t)}var D=Object.freeze({__proto__:null,unknown:0,mouseUp:1,itemMouseEnter:2,keyDownArrowUp:3,keyDownArrowDown:4,keyDownEscape:5,keyDownEnter:6,keyDownHome:7,keyDownEnd:8,clickItem:9,blurInput:10,changeInput:11,keyDownSpaceButton:12,clickButton:13,blurButton:14,controlledPropUpdatedSelectedItem:15,touchEnd:16}),M=function(){var e=function(e){var t,n;function s(t){var n=e.call(this,t)||this;n.id=n.props.id||"downshift-"+String(h++),n.menuId=n.props.menuId||n.id+"-menu",n.labelId=n.props.labelId||n.id+"-label",n.inputId=n.props.inputId||n.id+"-input",n.getItemId=n.props.getItemId||function(e){return n.id+"-item-"+e},n.input=null,n.items=[],n.itemCount=null,n.previousResultCount=0,n.timeoutIds=[],n.internalSetTimeout=function(e,t){var o=setTimeout((function(){n.timeoutIds=n.timeoutIds.filter((function(e){return e!==o})),e()}),t);n.timeoutIds.push(o)},n.setItemCount=function(e){n.itemCount=e},n.unsetItemCount=function(){n.itemCount=null},n.setHighlightedIndex=function(e,t){void 0===e&&(e=n.props.defaultHighlightedIndex),void 0===t&&(t={}),t=C(t),n.internalSetState(r({highlightedIndex:e},t))},n.clearSelection=function(e){n.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:n.props.defaultHighlightedIndex,isOpen:n.props.defaultIsOpen},e)},n.selectItem=function(e,t,o){t=C(t),n.internalSetState(r({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,selectedItem:e,inputValue:n.props.itemToString(e)},t),o)},n.selectItemAtIndex=function(e,t,o){var r=n.items[e];null!=r&&n.selectItem(r,t,o)},n.selectHighlightedItem=function(e,t){return n.selectItemAtIndex(n.getState().highlightedIndex,e,t)},n.internalSetState=function(e,t){var o,i,s={},u="function"==typeof e;return!u&&e.hasOwnProperty("inputValue")&&n.props.onInputValueChange(e.inputValue,r({},n.getStateAndHelpers(),{},e)),n.setState((function(t){t=n.getState(t);var l=u?e(t):e;l=n.props.stateReducer(t,l),o=l.hasOwnProperty("selectedItem");var a={},p={};return o&&l.selectedItem!==t.selectedItem&&(i=l.selectedItem),l.type=l.type||0,Object.keys(l).forEach((function(e){t[e]!==l[e]&&(s[e]=l[e]),"type"!==e&&(p[e]=l[e],n.isControlledProp(e)||(a[e]=l[e]))})),u&&l.hasOwnProperty("inputValue")&&n.props.onInputValueChange(l.inputValue,r({},n.getStateAndHelpers(),{},l)),a}),(function(){f(t)(),Object.keys(s).length>1&&n.props.onStateChange(s,n.getStateAndHelpers()),o&&n.props.onSelect(e.selectedItem,n.getStateAndHelpers()),void 0!==i&&n.props.onChange(i,n.getStateAndHelpers()),n.props.onUserAction(s,n.getStateAndHelpers())}))},n.rootRef=function(e){return n._rootNode=e},n.getRootProps=function(e,t){var i,s=void 0===e?{}:e,u=s.refKey,l=void 0===u?"ref":u,a=s.ref,p=o(s,["refKey","ref"]),d=(void 0===t?{}:t).suppressRefError,c=void 0!==d&&d;n.getRootProps.called=!0,n.getRootProps.refKey=l,n.getRootProps.suppressRefError=c;var h=n.getState().isOpen;return r(((i={})[l]=b(a,n.rootRef),i.role="combobox",i["aria-expanded"]=h,i["aria-haspopup"]="listbox",i["aria-owns"]=h?n.menuId:null,i["aria-labelledby"]=n.labelId,i),p)},n.keyDownHandlers={ArrowDown:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?5:1;this.moveHighlightedIndex(n,{type:4})}else this.internalSetState({isOpen:!0,type:4},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(O(1,t.getState().highlightedIndex,e),{type:4})}))},ArrowUp:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?-5:-1;this.moveHighlightedIndex(n,{type:3})}else this.internalSetState({isOpen:!0,type:3},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(O(-1,t.getState().highlightedIndex,e),{type:4})}))},Enter:function(e){var t=this.getState(),n=t.isOpen,o=t.highlightedIndex;if(n&&null!=o){e.preventDefault();var r=this.items[o],i=this.getItemNodeFromIndex(o);if(null==r||i&&i.hasAttribute("disabled"))return;this.selectHighlightedItem({type:6})}},Escape:function(e){e.preventDefault(),this.reset({type:5,selectedItem:null,inputValue:""})}},n.buttonKeyDownHandlers=r({},n.keyDownHandlers,{" ":function(e){e.preventDefault(),this.toggleMenu({type:12})}}),n.inputKeyDownHandlers=r({},n.keyDownHandlers,{Home:function(e){this.highlightFirstOrLastIndex(e,!0,{type:7})},End:function(e){this.highlightFirstOrLastIndex(e,!1,{type:8})}}),n.getToggleButtonProps=function(e){var t=void 0===e?{}:e,i=t.onClick,s=(t.onPress,t.onKeyDown),u=t.onKeyUp,l=t.onBlur,a=o(t,["onClick","onPress","onKeyDown","onKeyUp","onBlur"]),p=n.getState().isOpen,d={onClick:y(i,n.buttonHandleClick),onKeyDown:y(s,n.buttonHandleKeyDown),onKeyUp:y(u,n.buttonHandleKeyUp),onBlur:y(l,n.buttonHandleBlur)};return r({type:"button",role:"button","aria-label":p?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},a.disabled?{}:d,{},a)},n.buttonHandleKeyUp=function(e){e.preventDefault()},n.buttonHandleKeyDown=function(e){var t=H(e);n.buttonKeyDownHandlers[t]&&n.buttonKeyDownHandlers[t].call(i(n),e)},n.buttonHandleClick=function(e){e.preventDefault(),n.props.environment.document.activeElement===n.props.environment.document.body&&e.target.focus(),n.internalSetTimeout((function(){return n.toggleMenu({type:13})}))},n.buttonHandleBlur=function(e){var t=e.target;n.internalSetTimeout((function(){n.isMouseDown||null!=n.props.environment.document.activeElement&&n.props.environment.document.activeElement.id===n.inputId||n.props.environment.document.activeElement===t||n.reset({type:14})}))},n.getLabelProps=function(e){return r({htmlFor:n.inputId,id:n.labelId},e)},n.getInputProps=function(e){var t,i=void 0===e?{}:e,s=i.onKeyDown,u=i.onBlur,l=i.onChange,a=i.onInput,p=(i.onChangeText,o(i,["onKeyDown","onBlur","onChange","onInput","onChangeText"])),d={},c=n.getState(),h=c.inputValue,f=c.isOpen,g=c.highlightedIndex;return p.disabled||((t={}).onChange=y(l,a,n.inputHandleChange),t.onKeyDown=y(s,n.inputHandleKeyDown),t.onBlur=y(u,n.inputHandleBlur),d=t),r({"aria-autocomplete":"list","aria-activedescendant":f&&"number"==typeof g&&g>=0?n.getItemId(g):null,"aria-controls":f?n.menuId:null,"aria-labelledby":n.labelId,autoComplete:"off",value:h,id:n.inputId},d,{},p)},n.inputHandleKeyDown=function(e){var t=H(e);t&&n.inputKeyDownHandlers[t]&&n.inputKeyDownHandlers[t].call(i(n),e)},n.inputHandleChange=function(e){n.internalSetState({type:11,isOpen:!0,inputValue:e.target.value,highlightedIndex:n.props.defaultHighlightedIndex})},n.inputHandleBlur=function(){n.internalSetTimeout((function(){var e=n.props.environment.document&&!!n.props.environment.document.activeElement&&!!n.props.environment.document.activeElement.dataset&&n.props.environment.document.activeElement.dataset.toggle&&n._rootNode&&n._rootNode.contains(n.props.environment.document.activeElement);n.isMouseDown||e||n.reset({type:10})}))},n.menuRef=function(e){n._menuNode=e},n.getMenuProps=function(e,t){var i,s=void 0===e?{}:e,u=s.refKey,l=void 0===u?"ref":u,a=s.ref,p=o(s,["refKey","ref"]),d=(void 0===t?{}:t).suppressRefError,c=void 0!==d&&d;return n.getMenuProps.called=!0,n.getMenuProps.refKey=l,n.getMenuProps.suppressRefError=c,r(((i={})[l]=b(a,n.menuRef),i.role="listbox",i["aria-labelledby"]=p&&p["aria-label"]?null:n.labelId,i.id=n.menuId,i),p)},n.getItemProps=function(e){var t,i=void 0===e?{}:e,s=i.onMouseMove,u=i.onMouseDown,l=i.onClick,a=(i.onPress,i.index),p=i.item,d=void 0===p?void 0:p,c=o(i,["onMouseMove","onMouseDown","onClick","onPress","index","item"]);void 0===a?(n.items.push(d),a=n.items.indexOf(d)):n.items[a]=d;var h=l,f=((t={onMouseMove:y(s,(function(){a!==n.getState().highlightedIndex&&(n.setHighlightedIndex(a,{type:2}),n.avoidScrolling=!0,n.internalSetTimeout((function(){return n.avoidScrolling=!1}),250))})),onMouseDown:y(u,(function(e){e.preventDefault()}))}).onClick=y(h,(function(){n.selectItemAtIndex(a,{type:9})})),t),g=c.disabled?{onMouseDown:f.onMouseDown}:f;return r({id:n.getItemId(a),role:"option","aria-selected":n.getState().highlightedIndex===a},g,{},c)},n.clearItems=function(){n.items=[]},n.reset=function(e,t){void 0===e&&(e={}),e=C(e),n.internalSetState((function(t){var o=t.selectedItem;return r({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,inputValue:n.props.itemToString(o)},e)}),t)},n.toggleMenu=function(e,t){void 0===e&&(e={}),e=C(e),n.internalSetState((function(t){var o=t.isOpen;return r({isOpen:!o},o&&{highlightedIndex:n.props.defaultHighlightedIndex},{},e)}),(function(){var o=n.getState(),r=o.isOpen,i=o.highlightedIndex;r&&n.getItemCount()>0&&"number"==typeof i&&n.setHighlightedIndex(i,e),f(t)()}))},n.openMenu=function(e){n.internalSetState({isOpen:!0},e)},n.closeMenu=function(e){n.internalSetState({isOpen:!1},e)},n.updateStatus=I((function(){var e=n.getState(),t=n.items[e.highlightedIndex],o=n.getItemCount(),i=n.props.getA11yStatusMessage(r({itemToString:n.props.itemToString,previousResultCount:n.previousResultCount,resultCount:o,highlightedItem:t},e));n.previousResultCount=o,function(e,t){var n=P(t);e&&(n.textContent=e,E())}(i,n.props.environment.document)}),200);var s=n.props,u=s.defaultHighlightedIndex,l=s.initialHighlightedIndex,a=void 0===l?u:l,p=s.defaultIsOpen,d=s.initialIsOpen,c=void 0===d?p:d,g=s.initialInputValue,m=void 0===g?"":g,v=s.initialSelectedItem,S=void 0===v?null:v,w=n.getState({highlightedIndex:a,isOpen:c,inputValue:m,selectedItem:S});return null!=w.selectedItem&&void 0===n.props.initialInputValue&&(w.inputValue=n.props.itemToString(w.selectedItem)),n.state=w,n}n=e,(t=s).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var u=s.prototype;return u.internalClearTimeouts=function(){this.timeoutIds.forEach((function(e){clearTimeout(e)})),this.timeoutIds=[]},u.getState=function(e){var t=this;return void 0===e&&(e=this.state),Object.keys(e).reduce((function(n,o){return n[o]=t.isControlledProp(o)?t.props[o]:e[o],n}),{})},u.isControlledProp=function(e){return void 0!==this.props[e]},u.getItemCount=function(){var e=this.items.length;return null!=this.itemCount?e=this.itemCount:void 0!==this.props.itemCount&&(e=this.props.itemCount),e},u.getItemNodeFromIndex=function(e){return this.props.environment.document.getElementById(this.getItemId(e))},u.scrollHighlightedItemIntoView=function(){var e=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(e,this._menuNode)},u.moveHighlightedIndex=function(e,t){var n=this.getItemCount();if(n>0){var o=O(e,this.getState().highlightedIndex,n);this.setHighlightedIndex(o,t)}},u.highlightFirstOrLastIndex=function(e,t,n){var o=this.getItemCount()-1;o<0||!this.getState().isOpen||(e.preventDefault(),this.setHighlightedIndex(t?0:o,n))},u.getStateAndHelpers=function(){var e=this.getState(),t=e.highlightedIndex,n=e.inputValue,o=e.selectedItem,r=e.isOpen,i=this.props.itemToString,s=this.id,u=this.getRootProps,l=this.getToggleButtonProps,a=this.getLabelProps,p=this.getMenuProps,d=this.getInputProps,c=this.getItemProps,h=this.openMenu,f=this.closeMenu,g=this.toggleMenu,m=this.selectItem,v=this.selectItemAtIndex,I=this.selectHighlightedItem,y=this.setHighlightedIndex,b=this.clearSelection,S=this.clearItems;return{getRootProps:u,getToggleButtonProps:l,getLabelProps:a,getMenuProps:p,getInputProps:d,getItemProps:c,reset:this.reset,openMenu:h,closeMenu:f,toggleMenu:g,selectItem:m,selectItemAtIndex:v,selectHighlightedItem:I,setHighlightedIndex:y,clearSelection:b,clearItems:S,setItemCount:this.setItemCount,unsetItemCount:this.unsetItemCount,setState:this.internalSetState,itemToString:i,id:s,highlightedIndex:t,inputValue:n,isOpen:r,selectedItem:o}},u.componentDidMount=function(){var e=this,t=function(t,n){void 0===n&&(n=!0);var o=e.props.environment.document;return[e._rootNode,e._menuNode].some((function(e){return e&&(v(e,t)||n&&v(e,o.activeElement))}))},n=function(){e.isMouseDown=!0},o=function(n){e.isMouseDown=!1,!t(n.target)&&e.getState().isOpen&&e.reset({type:1},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},r=function(){e.isTouchMove=!1},i=function(){e.isTouchMove=!0},s=function(n){var o=t(n.target,!1);e.isTouchMove||o||!e.getState().isOpen||e.reset({type:16},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},u=this.props.environment;u.addEventListener("mousedown",n),u.addEventListener("mouseup",o),u.addEventListener("touchstart",r),u.addEventListener("touchmove",i),u.addEventListener("touchend",s),this.cleanup=function(){e.internalClearTimeouts(),e.updateStatus.cancel(),u.removeEventListener("mousedown",n),u.removeEventListener("mouseup",o),u.removeEventListener("touchstart",r),u.removeEventListener("touchmove",i),u.removeEventListener("touchend",s)}},u.shouldScroll=function(e,t){var n=(void 0===this.props.highlightedIndex?this.getState():this.props).highlightedIndex,o=(void 0===t.highlightedIndex?e:t).highlightedIndex;return n&&this.getState().isOpen&&!e.isOpen||n!==o},u.componentDidUpdate=function(e,t){this.isControlledProp("selectedItem")&&this.props.selectedItemChanged(e.selectedItem,this.props.selectedItem)&&this.internalSetState({type:15,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(t,e)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},u.componentWillUnmount=function(){this.cleanup()},u.render=function(){var e=w(this.props.children,g);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var t=w(e(this.getStateAndHelpers()));return t?this.getRootProps.called||this.props.suppressRefError?t:function(e){return"string"==typeof e.type}(t)?(0,l.cloneElement)(t,this.getRootProps(function(e){return e.props}(t))):void 0:null},s}(l.Component);return e.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:S,itemToString:function(e){return null==e?"":String(e)},onStateChange:g,onInputValueChange:g,onUserAction:g,onChange:g,onSelect:g,onOuterClick:g,selectedItemChanged:function(e,t){return e!==t},environment:"undefined"==typeof window?{}:window,stateReducer:function(e,t){return t},suppressRefError:!1,scrollIntoView:m},e.stateChangeTypes=D,e}();u().array.isRequired,u().func,u().func,u().func,u().bool,u().number,u().number,u().number,u().bool,u().bool,u().bool,u().any,u().any,u().any,u().string,u().string,u().string,u().func,u().string,u().func,u().func,u().func,u().func,u().func,u().shape({addEventListener:u().func,removeEventListener:u().func,document:u().shape({getElementById:u().func,activeElement:u().any,body:u().any})}),"undefined"==typeof window||window;const T=M},703:(e,t,n)=>{"use strict";var o=n(414);function r(){}function i(){}i.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,i,s){if(s!==o){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:r};return n.PropTypes=n,n}},697:(e,t,n)=>{e.exports=n(703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},921:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for;n&&Symbol.for("react.element"),n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.async_mode"),n&&Symbol.for("react.concurrent_mode"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.suspense_list"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),n&&Symbol.for("react.block"),n&&Symbol.for("react.fundamental"),n&&Symbol.for("react.responder"),n&&Symbol.for("react.scope")},864:(e,t,n)=>{"use strict";n(921)}}]);
|
framework/extensions/newsletter-subscribe/admin-static/bundle/486.2f466d7115021070874d.js.LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
Copyright (c) 2017 Jed Watson.
|
3 |
+
Licensed under the MIT License (MIT), see
|
4 |
+
http://jedwatson.github.io/classnames
|
5 |
+
*/
|
6 |
+
|
7 |
+
/** @license React v16.13.1
|
8 |
+
* react-is.production.min.js
|
9 |
+
*
|
10 |
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
11 |
+
*
|
12 |
+
* This source code is licensed under the MIT license found in the
|
13 |
+
* LICENSE file in the root directory of this source tree.
|
14 |
+
*/
|
framework/extensions/newsletter-subscribe/admin-static/bundle/677.6d4bfe6dc9293cdd7f96.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
"use strict";(globalThis.blocksyNewsletterSubscribeExtJsonp=globalThis.blocksyNewsletterSubscribeExtJsonp||[]).push([[677],{677:(e,t,n)=>{n.r(t),n.d(t,{default:()=>p});var r=n(381),a=n(380),o=n(652),i=n(184),c=n.n(i);function u(){return u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},u.apply(this,arguments)}function s(e,t,n,r,a,o,i){try{var c=e[o](i),u=c.value}catch(e){return void n(e)}c.done?t(u):Promise.resolve(u).then(r,a)}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,a=!1,o=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){a=!0,o=e}finally{try{r||null==c.return||c.return()}finally{if(a)throw o}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var f=null;const p=function(e){var t=e.value,n=e.onChange,i=l((0,r.useState)(f||[]),2),d=i[0],p=i[1],m=l((0,r.useState)(!f),2),v=m[0],b=m[1],y=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,a=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(!(a.length>0&&void 0!==a[0])||a[0])&&b(!0),(t=new FormData).append("action","blocksy_ext_newsletter_subscribe_get_actual_lists"),e.prev=4,e.next=7,fetch(ajaxurl,{method:"POST",body:t});case 7:if(200!==(n=e.sent).status){e.next=18;break}return e.next=11,n.json();case 11:if(!(r=e.sent).success){e.next=18;break}if("api_key_invalid"===r.data.result){e.next=18;break}return b(!1),p(r.data.result),f=r.data.result,e.abrupt("return");case 18:e.next=22;break;case 20:e.prev=20,e.t0=e.catch(4);case 22:b(!1);case 23:case"end":return e.stop()}}),e,null,[[4,20]])})),function(){var t=this,n=arguments;return new Promise((function(r,a){var o=e.apply(t,n);function i(e){s(o,r,a,i,c,"next",e)}function c(e){s(o,r,a,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,r.useEffect)((function(){y(!f)}),[]),0===d.length?(0,r.createElement)("div",{className:"ct-select-input"},(0,r.createElement)("input",{disabled:!0,placeholder:v?(0,o.__)("Loading...","blocksy-companion"):(0,o.__)("Invalid API Key...","blocksy-companion")})):(0,r.createElement)(a.ZP,{selectedItem:t||d[0].id,onChange:function(e){return n(e)},itemToString:function(e){return e?(d.find((function(t){return t.id===e}))||{}).name:""}},(function(e){var t=e.getInputProps,n=e.getItemProps,a=(e.getLabelProps,e.getMenuProps),i=e.isOpen,s=(e.inputValue,e.highlightedIndex),l=e.selectedItem,f=e.openMenu;return(0,r.createElement)("div",{className:"ct-select-input"},(0,r.createElement)("input",u({},t({onFocus:function(){return f()},onClick:function(){return f()}}),{placeholder:(0,o.__)("Select list...","blocksy-companion"),readOnly:!0})),i&&(0,r.createElement)("div",a({className:"ct-select-dropdown"}),d.map((function(e,t){return(0,r.createElement)("div",n({key:e.id,index:t,item:e.id,className:c()("ct-select-dropdown-item",{active:s===t,selected:l===e.id})}),e.name)}))))}))}}}]);
|
framework/extensions/newsletter-subscribe/admin-static/bundle/main.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{var e,t,r={466:(e,t,r)=>{r.p=blocksy_ext_newsletter_subscribe_localization.public_url},313:e=>{"use strict";e.exports=window.React},381:e=>{"use strict";e.exports=window.wp.element},652:e=>{"use strict";e.exports=window.wp.i18n}},n={};function o(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return r[e](i,i.exports,o),i.exports}o.m=r,o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=e=>Promise.all(Object.keys(o.f).reduce(((t,r)=>(o.f[r](e,t),t)),[])),o.u=e=>e+"."+{486:"2f466d7115021070874d",677:"6d4bfe6dc9293cdd7f96"}[e]+".js",o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="blocksy-companion:",o.l=(r,n,i,a)=>{if(e[r])e[r].push(n);else{var l,s;if(void 0!==i)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==r||d.getAttribute("data-webpack")==t+i){l=d;break}}l||(s=!0,(l=document.createElement("script")).charset="utf-8",l.timeout=120,o.nc&&l.setAttribute("nonce",o.nc),l.setAttribute("data-webpack",t+i),l.src=r),e[r]=[n];var p=(t,n)=>{l.onerror=l.onload=null,clearTimeout(b);var o=e[r];if(delete e[r],l.parentNode&&l.parentNode.removeChild(l),o&&o.forEach((e=>e(n))),t)return t(n)},b=setTimeout(p.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=p.bind(null,l.onerror),l.onload=p.bind(null,l.onload),s&&document.head.appendChild(l)}},o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");r.length&&(e=r[r.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e})(),(()=>{var e={179:0};o.f.j=(t,r)=>{var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise(((r,o)=>n=e[t]=[r,o]));r.push(n[2]=i);var a=o.p+o.u(t),l=new Error;o.l(a,(r=>{if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;l.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",l.name="ChunkLoadError",l.type=i,l.request=a,n[1](l)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,i,[a,l,s]=r,c=0;if(a.some((t=>0!==e[t]))){for(n in l)o.o(l,n)&&(o.m[n]=l[n]);s&&s(o)}for(t&&t(r);c<a.length;c++)i=a[c],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=globalThis.blocksyNewsletterSubscribeExtJsonp=globalThis.blocksyNewsletterSubscribeExtJsonp||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";o(466);var e=o(381),t=o(652),r=o(313),n=(0,r.lazy)((function(){return Promise.all([o.e(486),o.e(677)]).then(o.bind(o,677))}));const i=function(o){return(0,e.createElement)("div",null,(0,e.createElement)(r.Suspense,{fallback:(0,e.createElement)("div",{className:"ct-select-input"},(0,e.createElement)("input",{disabled:!0,placeholder:(0,t.__)("Loading...","blocksy-companion")}))},(0,e.createElement)(n,o)))},a=window.ctEvents;var l=o.n(a);document.addEventListener("DOMContentLoaded",(function(){return l().on("blocksy:options:register",(function(e){e["blocksy-newsletter-subscribe"]=i}))}))})()})();
|
framework/extensions/newsletter-subscribe/admin-static/bundle/sync.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var s in r)e.o(r,s)&&!e.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:r[s]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.blocksyCustomizerSync,r=window.ctEvents;function s(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,s)}return r}function c(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?s(Object(r),!0).forEach((function(t){o(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):s(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function o(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}e.n(r)().on("ct:customizer:sync:collect-variable-descriptors",(function(e){e.result=c(c(c({},e.result),{},{newsletter_subscribe_title_color:{selector:".ct-newsletter-subscribe-block",variable:"heading-color",type:"color:default",responsive:!0},newsletter_subscribe_content:[{selector:".ct-newsletter-subscribe-block",variable:"color",type:"color:default"},{selector:".ct-newsletter-subscribe-block",variable:"linkHoverColor",type:"color:hover"}],newsletter_subscribe_button:[{selector:".ct-newsletter-subscribe-block",variable:"buttonInitialColor",type:"color:default"},{selector:".ct-newsletter-subscribe-block",variable:"buttonHoverColor",type:"color:hover"}],newsletter_subscribe_input_font_color:[{selector:".ct-newsletter-subscribe-block",variable:"form-text-initial-color",type:"color:default"},{selector:".ct-newsletter-subscribe-block",variable:"form-text-focus-color",type:"color:focus"}],newsletter_subscribe_border_color:[{selector:".ct-newsletter-subscribe-block",variable:"form-field-border-initial-color",type:"color:default"},{selector:".ct-newsletter-subscribe-block",variable:"form-field-border-focus-color",type:"color:focus"}],newsletter_subscribe_input_background:[{selector:".ct-newsletter-subscribe-block",variable:"form-field-initial-background",type:"color:default"},{selector:".ct-newsletter-subscribe-block",variable:"form-field-focus-background",type:"color:focus"}]},(0,t.handleBackgroundOptionFor)({id:"newsletter_subscribe_container_background",selector:".ct-newsletter-subscribe-block",responsive:!0})),{},{newsletter_subscribe_container_border:{selector:".ct-newsletter-subscribe-block",variable:"newsletter-container-border",type:"border",responsive:!0,skip_none:!0},newsletter_subscribe_shadow:{selector:".ct-newsletter-subscribe-block",type:"box-shadow",variable:"box-shadow",responsive:!0},newsletter_subscribe_container_spacing:{selector:".ct-newsletter-subscribe-block",type:"spacing",variable:"padding",responsive:!0},newsletter_subscribe_container_border_radius:{selector:".ct-newsletter-subscribe-block",type:"spacing",variable:"border-radius",responsive:!0}})})),wp.customize("newsletter_subscribe_subscribe_visibility",(function(e){return e.bind((function(e){var r=document.querySelector(".ct-newsletter-subscribe-block");(0,t.responsiveClassesFor)("newsletter_subscribe_subscribe_visibility",r)}))})),(document.body.classList.contains("single")||document.body.classList.contains("page"))&&(0,t.checkAndReplace)({id:"newsletter_subscribe_single_post_enabled",strategy:"append",parent_selector:".site-main article",selector:".ct-newsletter-subscribe-block",fragment_id:"blocksy-mailchimp-subscribe",watch:["has_newsletter_subscribe_name","newsletter_subscribe_button_text","newsletter_subscribe_title","newsletter_subscribe_text","newsletter_subscribe_name_label","newsletter_subscribe_mail_label"],whenInserted:function(){if(document.body.classList.contains("single")||document.body.classList.contains("page")){var e=document.querySelector(".ct-newsletter-subscribe-block");(0,t.responsiveClassesFor)("newsletter_subscribe_subscribe_visibility",e),"yes"!==wp.customize("has_newsletter_subscribe_name")()?(e.querySelector("[data-fields]").dataset.fields=1,e.querySelector('[name="FNAME"]').remove()):(e.querySelector("[data-fields]").dataset.fields=2,e.querySelector('[name="FNAME"]').setAttribute("placeholder","".concat(wp.customize("newsletter_subscribe_name_label")()))),e.querySelector('[name="EMAIL"]').setAttribute("placeholder","".concat(wp.customize("newsletter_subscribe_mail_label")()," *")),e.querySelector("button").innerHTML=wp.customize("newsletter_subscribe_button_text")(),e.querySelector("h3").innerHTML=wp.customize("newsletter_subscribe_title")(),e.querySelector(".ct-newsletter-subscribe-description").innerHTML=wp.customize("newsletter_subscribe_text")()}}})})();
|
framework/extensions/newsletter-subscribe/dashboard-static/bundle/main.js
CHANGED
@@ -1,14 +1,2 @@
|
|
1 |
-
|
2 |
-
/*!
|
3 |
-
Copyright (c) 2017 Jed Watson.
|
4 |
-
Licensed under the MIT License (MIT), see
|
5 |
-
http://jedwatson.github.io/classnames
|
6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else if("object"===i)for(var u in r)n.call(r,u)&&r[u]&&e.push(u)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.blocksyOptions},function(e,t,n){"use strict";e.exports=n(13)},function(e,t){e.exports=window.ctEvents},function(e,t,n){var r,o,i=n(11),a=n(12),u=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function c(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,s=a({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),l={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},p={activate:function(e){if(l.active)return;I(),l.active=!0,l.paused=!1,l.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:s.onActivate;t&&t();return f(),p},deactivate:d,pause:function(){if(l.paused||!l.active)return;l.paused=!0,h()},unpause:function(){if(!l.paused||!l.active)return;l.paused=!1,I(),f()}};return p;function d(e){if(l.active){clearTimeout(r),h(),l.active=!1,l.paused=!1,u.deactivateTrap(p);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:s.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:s.returnFocusOnDeactivate)&&c((function(){var e;O((e=l.nodeFocusedBeforeActivation,m("setReturnFocus")||e))})),p}}function f(){if(l.active)return u.activateTrap(p),r=c((function(){O(v())})),n.addEventListener("focusin",y,!0),n.addEventListener("mousedown",g,{capture:!0,passive:!1}),n.addEventListener("touchstart",g,{capture:!0,passive:!1}),n.addEventListener("click",w,{capture:!0,passive:!1}),n.addEventListener("keydown",b,{capture:!0,passive:!1}),p}function h(){if(l.active)return n.removeEventListener("focusin",y,!0),n.removeEventListener("mousedown",g,!0),n.removeEventListener("touchstart",g,!0),n.removeEventListener("click",w,!0),n.removeEventListener("keydown",b,!0),p}function m(e){var t=s[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function v(){var e;if(!(e=null!==m("initialFocus")?m("initialFocus"):o.contains(n.activeElement)?n.activeElement:l.firstTabbableNode||m("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function g(e){o.contains(e.target)||(s.clickOutsideDeactivates?d({returnFocus:!i.isFocusable(e.target)}):s.allowOutsideClick&&s.allowOutsideClick(e)||e.preventDefault())}function y(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),O(l.mostRecentlyFocusedNode||v()))}function b(e){if(!1!==s.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void d();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(I(),e.shiftKey&&e.target===l.firstTabbableNode)return e.preventDefault(),void O(l.lastTabbableNode);if(!e.shiftKey&&e.target===l.lastTabbableNode)e.preventDefault(),O(l.firstTabbableNode)}(e)}function w(e){s.clickOutsideDeactivates||o.contains(e.target)||s.allowOutsideClick&&s.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function I(){var e=i(o);l.firstTabbableNode=e[0]||v(),l.lastTabbableNode=e[e.length-1]||v()}function O(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),l.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):O(v()))}}},function(e,t,n){"use strict";var r=n(10);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,a){if(a!==r){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){var n=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],r=n.join(","),o="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function i(e,t){t=t||{};var n,i,u,c=[],p=[],d=e.querySelectorAll(r);for(t.includeContainer&&o.call(e,r)&&(d=Array.prototype.slice.apply(d)).unshift(e),n=0;n<d.length;n++)a(i=d[n])&&(0===(u=s(i))?c.push(i):p.push({documentOrder:n,tabIndex:u,node:i}));return p.sort(l).map((function(e){return e.node})).concat(c)}function a(e){return!(!u(e)||function(e){return function(e){return p(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||s(e)<0)}function u(e){return!(e.disabled||function(e){return p(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}i.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==o.call(e,r)&&a(e)},i.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==o.call(e,c)&&u(e)};var c=n.concat("iframe").join(",");function s(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function l(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function p(e){return"INPUT"===e.tagName}e.exports=i},function(e,t){e.exports=function(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var o in r)n.call(r,o)&&(e[o]=r[o])}return e};var n=Object.prototype.hasOwnProperty},function(e,t,n){"use strict";
|
7 |
-
/** @license React v16.13.1
|
8 |
-
* react-is.production.min.js
|
9 |
-
*
|
10 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
11 |
-
*
|
12 |
-
* This source code is licensed under the MIT license found in the
|
13 |
-
* LICENSE file in the root directory of this source tree.
|
14 |
-
*/var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,u=r?Symbol.for("react.strict_mode"):60108,c=r?Symbol.for("react.profiler"):60114,s=r?Symbol.for("react.provider"):60109,l=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,h=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,v=r?Symbol.for("react.memo"):60115,g=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,w=r?Symbol.for("react.responder"):60118,I=r?Symbol.for("react.scope"):60119;function O(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case p:case d:case a:case c:case u:case h:return e;default:switch(e=e&&e.$$typeof){case l:case f:case g:case v:case s:return e;default:return t}}case i:return t}}}function S(e){return O(e)===d}t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=l,t.ContextProvider=s,t.Element=o,t.ForwardRef=f,t.Fragment=a,t.Lazy=g,t.Memo=v,t.Portal=i,t.Profiler=c,t.StrictMode=u,t.Suspense=h,t.isAsyncMode=function(e){return S(e)||O(e)===p},t.isConcurrentMode=S,t.isContextConsumer=function(e){return O(e)===l},t.isContextProvider=function(e){return O(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return O(e)===f},t.isFragment=function(e){return O(e)===a},t.isLazy=function(e){return O(e)===g},t.isMemo=function(e){return O(e)===v},t.isPortal=function(e){return O(e)===i},t.isProfiler=function(e){return O(e)===c},t.isStrictMode=function(e){return O(e)===u},t.isSuspense=function(e){return O(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===c||e===u||e===h||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===v||e.$$typeof===s||e.$$typeof===l||e.$$typeof===f||e.$$typeof===b||e.$$typeof===w||e.$$typeof===I||e.$$typeof===y)},t.typeOf=O},function(e,t,n){"use strict";n.r(t);var r=n(0),o=n(7),i=n.n(o),a=n(2),u=n(4),c=n.n(u),s=n(3),l=n.n(s),p=n(1),d=n.n(p);function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var m=function(e){e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render;return function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},v=function(e){function t(){var n,r;f(this,t);for(var o=arguments.length,i=Array(o),a=0;a<o;a++)i[a]=arguments[a];return n=r=h(this,e.call.apply(e,[this].concat(i))),g.call(r),h(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,o=this._refs;return{state:e,props:m(t),refs:o,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:m(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:m(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(l.a.Component);v.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var g=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}},y=v,b=function(e){var t=e.children,n=e.container,o=void 0===n?document.body:n,i=e.type,a=void 0===i?"reach-portal":i;return Object(r.createElement)(y,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(a),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(e){var n=e.refs.node;return n?Object(r.createPortal)(t,n):null}})};var w=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},I=n(8),O=n.n(I);function S(){return(S=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function x(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var E=function(){},j=function(){},_=function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=O()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})},C=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},k=React.createContext(),P=React.forwardRef((function(e,t){var n=e.container,o=e.isOpen,i=void 0===o||o,a=e.onDismiss,u=void 0===a?E:a,c=e.initialFocusRef,s=e.onClick,l=e.onKeyDown,p=x(e,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return Object(r.createElement)(y,{didMount:j},i?Object(r.createElement)(b,{container:n,"data-reach-dialog-wrapper":!0},Object(r.createElement)(y,{refs:{overlayNode:null,contentNode:null},didMount:function(e){var t=e.refs;_(t,c)},willUnmount:C},(function(e){var n=e.refs;return Object(r.createElement)(k.Provider,{value:function(e){return n.contentNode=e}},Object(r.createElement)("div",S({"data-reach-dialog-overlay":!0,onClick:w(s,(function(e){e.stopPropagation(),u()})),onKeyDown:w(l,(function(e){"Escape"===e.key&&(e.stopPropagation(),u())})),ref:function(e){n.overlayNode=e,t&&t(e)}},p)))}))):null)}));P.propTypes={initialFocusRef:function(){}};var A=function(e){return e.stopPropagation()},D=React.forwardRef((function(e,t){var n=e.onClick,o=(e.onKeyDown,x(e,["onClick","onKeyDown"]));return Object(r.createElement)(k.Consumer,null,(function(e){return Object(r.createElement)("div",S({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:w(n,A),ref:function(n){e(n),t&&t(n)}},o))}))})),M=n(5),T=function(e){return!!e},H=function(e){var t=e.items,n=e.isVisible,o=void 0===n?T:n,i=e.render,a=e.className,u=e.onDismiss;return Object(r.createElement)(M.Transition,{items:t,onStart:function(){return document.body.classList[o(t)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(e){return o(e)&&function(t){return Object(r.createElement)(P,{style:{opacity:t.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return u()}},Object(r.createElement)(D,{className:c()("ct-admin-modal",a),style:{transform:"translate3d(0px, ".concat(t.y,"px, 0px)")}},Object(r.createElement)("button",{className:"close-button",onClick:function(){return u()}},"×"),i(e,t)))}}))};function R(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return N(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return N(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var L=function(e){var t=R(Object(r.useState)(!1),2),n=t[0],o=t[1];return[function(){return o(!0)},Object(r.createElement)(H,{items:n,onDismiss:function(){return o(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:e.readme}})}})]};function U(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function K(){return(K=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function F(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n(6);function V(e){return null!=e&&"object"==typeof e&&1===e.nodeType}function B(e,t){return(!t||"hidden"!==e)&&("visible"!==e&&"clip"!==e)}function $(e,t){if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){var n=getComputedStyle(e,null);return B(n.overflowY,t)||B(n.overflowX,t)||function(e){var t=function(e){return e.ownerDocument&&e.ownerDocument.defaultView?e.ownerDocument.defaultView.frameElement:null}(e);return!!t&&(t.clientHeight<e.scrollHeight||t.clientWidth<e.scrollWidth)}(e)}return!1}function W(e,t,n,r,o,i,a,u){return i<e&&a>t||i>e&&a<t?0:i<=e&&u<=n||a>=t&&u>=n?i-e-r:a>t&&u<n||i<e&&u>n?a-t+o:0}var z=0;function q(e){return"function"==typeof e?e:Y}function Y(){}function X(e,t){null!==e&&function(e,t){var n=t.scrollMode,r=t.block,o=t.inline,i=t.boundary,a=t.skipOverflowHiddenElements,u="function"==typeof i?i:function(e){return e!==i};if(!V(e))throw new TypeError("Invalid target");for(var c=document.scrollingElement||document.documentElement,s=[],l=e;V(l)&&u(l);){if((l=l.parentNode)===c){s.push(l);break}l===document.body&&$(l)&&!$(document.documentElement)||$(l,a)&&s.push(l)}for(var p=window.visualViewport?visualViewport.width:innerWidth,d=window.visualViewport?visualViewport.height:innerHeight,f=window.scrollX||pageXOffset,h=window.scrollY||pageYOffset,m=e.getBoundingClientRect(),v=m.height,g=m.width,y=m.top,b=m.right,w=m.bottom,I=m.left,O="start"===r||"nearest"===r?y:"end"===r?w:y+v/2,S="center"===o?I+g/2:"end"===o?b:I,x=[],E=0;E<s.length;E++){var j=s[E],_=j.getBoundingClientRect(),C=_.height,k=_.width,P=_.top,A=_.right,D=_.bottom,M=_.left;if("if-needed"===n&&y>=0&&I>=0&&w<=d&&b<=p&&y>=P&&w<=D&&I>=M&&b<=A)return x;var T=getComputedStyle(j),H=parseInt(T.borderLeftWidth,10),R=parseInt(T.borderTopWidth,10),N=parseInt(T.borderRightWidth,10),L=parseInt(T.borderBottomWidth,10),U=0,K=0,F="offsetWidth"in j?j.offsetWidth-j.clientWidth-H-N:0,B="offsetHeight"in j?j.offsetHeight-j.clientHeight-R-L:0;if(c===j)U="start"===r?O:"end"===r?O-d:"nearest"===r?W(h,h+d,d,R,L,h+O,h+O+v,v):O-d/2,K="start"===o?S:"center"===o?S-p/2:"end"===o?S-p:W(f,f+p,p,H,N,f+S,f+S+g,g),U=Math.max(0,U+h),K=Math.max(0,K+f);else{U="start"===r?O-P-R:"end"===r?O-D+L+B:"nearest"===r?W(P,D,C,R,L+B,O,O+v,v):O-(P+C/2)+B/2,K="start"===o?S-M-H:"center"===o?S-(M+k/2)+F/2:"end"===o?S-A+N+F:W(M,A,k,H,N+F,S,S+g,g);var z=j.scrollLeft,q=j.scrollTop;O+=q-(U=Math.max(0,Math.min(q+U,j.scrollHeight-C+B))),S+=z-(K=Math.max(0,Math.min(z+K,j.scrollWidth-k+F)))}x.push({el:j,top:U,left:K})}return x}(e,{boundary:t,block:"nearest",scrollMode:"if-needed"}).forEach((function(e){var t=e.el,n=e.top,r=e.left;t.scrollTop=n,t.scrollLeft=r}))}function G(e,t){return e===t||e.contains&&e.contains(t)}function J(e,t){var n;function r(){n&&clearTimeout(n)}function o(){for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];r(),n=setTimeout((function(){n=null,e.apply(void 0,i)}),t)}return o.cancel=r,o}function Q(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return t.some((function(t){return t&&t.apply(void 0,[e].concat(r)),e.preventDownshiftDefault||e.hasOwnProperty("nativeEvent")&&e.nativeEvent.preventDownshiftDefault}))}}function Z(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach((function(t){"function"==typeof t?t(e):t&&(t.current=e)}))}}function ee(e){var t=e.isOpen,n=e.selectedItem,r=e.resultCount,o=e.previousResultCount,i=e.itemToString;return t?r?r!==o?r+" result"+(1===r?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":n?i(n):""}function te(e,t){return!(e=Array.isArray(e)?e[0]:e)&&t?t:e}function ne(e){return"string"==typeof e.type}function re(e){return e.props}var oe=["highlightedIndex","inputValue","isOpen","selectedItem","type"];function ie(e){void 0===e&&(e={});var t={};return oe.forEach((function(n){e.hasOwnProperty(n)&&(t[n]=e[n])})),t}function ae(e){var t=e.key,n=e.keyCode;return n>=37&&n<=40&&0!==t.indexOf("Arrow")?"Arrow"+t:t}function ue(e,t,n){var r=n-1;("number"!=typeof t||t<0||t>=n)&&(t=e>0?-1:r+1);var o=t+e;return o<0?o=r:o>r&&(o=0),o}var ce=J((function(){le().textContent=""}),500);function se(e,t){var n=le(t);e&&(n.textContent=e,ce())}function le(e){void 0===e&&(e=document);var t=e.getElementById("a11y-status-message");return t||((t=e.createElement("div")).setAttribute("id","a11y-status-message"),t.setAttribute("role","status"),t.setAttribute("aria-live","polite"),t.setAttribute("aria-relevant","additions text"),Object.assign(t.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(t),t)}var pe=Object.freeze({__proto__:null,unknown:0,mouseUp:1,itemMouseEnter:2,keyDownArrowUp:3,keyDownArrowDown:4,keyDownEscape:5,keyDownEnter:6,keyDownHome:7,keyDownEnd:8,clickItem:9,blurInput:10,changeInput:11,keyDownSpaceButton:12,clickButton:13,blurButton:14,controlledPropUpdatedSelectedItem:15,touchEnd:16}),de=function(){var e=function(e){var t,n;function r(t){var n=e.call(this,t)||this;n.id=n.props.id||"downshift-"+String(z++),n.menuId=n.props.menuId||n.id+"-menu",n.labelId=n.props.labelId||n.id+"-label",n.inputId=n.props.inputId||n.id+"-input",n.getItemId=n.props.getItemId||function(e){return n.id+"-item-"+e},n.input=null,n.items=[],n.itemCount=null,n.previousResultCount=0,n.timeoutIds=[],n.internalSetTimeout=function(e,t){var r=setTimeout((function(){n.timeoutIds=n.timeoutIds.filter((function(e){return e!==r})),e()}),t);n.timeoutIds.push(r)},n.setItemCount=function(e){n.itemCount=e},n.unsetItemCount=function(){n.itemCount=null},n.setHighlightedIndex=function(e,t){void 0===e&&(e=n.props.defaultHighlightedIndex),void 0===t&&(t={}),t=ie(t),n.internalSetState(K({highlightedIndex:e},t))},n.clearSelection=function(e){n.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:n.props.defaultHighlightedIndex,isOpen:n.props.defaultIsOpen},e)},n.selectItem=function(e,t,r){t=ie(t),n.internalSetState(K({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,selectedItem:e,inputValue:n.props.itemToString(e)},t),r)},n.selectItemAtIndex=function(e,t,r){var o=n.items[e];null!=o&&n.selectItem(o,t,r)},n.selectHighlightedItem=function(e,t){return n.selectItemAtIndex(n.getState().highlightedIndex,e,t)},n.internalSetState=function(e,t){var r,o,i={},a="function"==typeof e;return!a&&e.hasOwnProperty("inputValue")&&n.props.onInputValueChange(e.inputValue,K({},n.getStateAndHelpers(),{},e)),n.setState((function(t){t=n.getState(t);var u=a?e(t):e;u=n.props.stateReducer(t,u),r=u.hasOwnProperty("selectedItem");var c={},s={};return r&&u.selectedItem!==t.selectedItem&&(o=u.selectedItem),u.type=u.type||0,Object.keys(u).forEach((function(e){t[e]!==u[e]&&(i[e]=u[e]),"type"!==e&&(s[e]=u[e],n.isControlledProp(e)||(c[e]=u[e]))})),a&&u.hasOwnProperty("inputValue")&&n.props.onInputValueChange(u.inputValue,K({},n.getStateAndHelpers(),{},u)),c}),(function(){q(t)(),Object.keys(i).length>1&&n.props.onStateChange(i,n.getStateAndHelpers()),r&&n.props.onSelect(e.selectedItem,n.getStateAndHelpers()),void 0!==o&&n.props.onChange(o,n.getStateAndHelpers()),n.props.onUserAction(i,n.getStateAndHelpers())}))},n.rootRef=function(e){return n._rootNode=e},n.getRootProps=function(e,t){var r,o=void 0===e?{}:e,i=o.refKey,a=void 0===i?"ref":i,u=o.ref,c=U(o,["refKey","ref"]),s=(void 0===t?{}:t).suppressRefError,l=void 0!==s&&s;n.getRootProps.called=!0,n.getRootProps.refKey=a,n.getRootProps.suppressRefError=l;var p=n.getState().isOpen;return K(((r={})[a]=Z(u,n.rootRef),r.role="combobox",r["aria-expanded"]=p,r["aria-haspopup"]="listbox",r["aria-owns"]=p?n.menuId:null,r["aria-labelledby"]=n.labelId,r),c)},n.keyDownHandlers={ArrowDown:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?5:1;this.moveHighlightedIndex(n,{type:4})}else this.internalSetState({isOpen:!0,type:4},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(ue(1,t.getState().highlightedIndex,e),{type:4})}))},ArrowUp:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?-5:-1;this.moveHighlightedIndex(n,{type:3})}else this.internalSetState({isOpen:!0,type:3},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(ue(-1,t.getState().highlightedIndex,e),{type:4})}))},Enter:function(e){var t=this.getState(),n=t.isOpen,r=t.highlightedIndex;if(n&&null!=r){e.preventDefault();var o=this.items[r],i=this.getItemNodeFromIndex(r);if(null==o||i&&i.hasAttribute("disabled"))return;this.selectHighlightedItem({type:6})}},Escape:function(e){e.preventDefault(),this.reset({type:5,selectedItem:null,inputValue:""})}},n.buttonKeyDownHandlers=K({},n.keyDownHandlers,{" ":function(e){e.preventDefault(),this.toggleMenu({type:12})}}),n.inputKeyDownHandlers=K({},n.keyDownHandlers,{Home:function(e){this.highlightFirstOrLastIndex(e,!0,{type:7})},End:function(e){this.highlightFirstOrLastIndex(e,!1,{type:8})}}),n.getToggleButtonProps=function(e){var t=void 0===e?{}:e,r=t.onClick,o=(t.onPress,t.onKeyDown),i=t.onKeyUp,a=t.onBlur,u=U(t,["onClick","onPress","onKeyDown","onKeyUp","onBlur"]),c=n.getState().isOpen,s={onClick:Q(r,n.buttonHandleClick),onKeyDown:Q(o,n.buttonHandleKeyDown),onKeyUp:Q(i,n.buttonHandleKeyUp),onBlur:Q(a,n.buttonHandleBlur)};return K({type:"button",role:"button","aria-label":c?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},u.disabled?{}:s,{},u)},n.buttonHandleKeyUp=function(e){e.preventDefault()},n.buttonHandleKeyDown=function(e){var t=ae(e);n.buttonKeyDownHandlers[t]&&n.buttonKeyDownHandlers[t].call(F(n),e)},n.buttonHandleClick=function(e){e.preventDefault(),n.props.environment.document.activeElement===n.props.environment.document.body&&e.target.focus(),n.internalSetTimeout((function(){return n.toggleMenu({type:13})}))},n.buttonHandleBlur=function(e){var t=e.target;n.internalSetTimeout((function(){n.isMouseDown||null!=n.props.environment.document.activeElement&&n.props.environment.document.activeElement.id===n.inputId||n.props.environment.document.activeElement===t||n.reset({type:14})}))},n.getLabelProps=function(e){return K({htmlFor:n.inputId,id:n.labelId},e)},n.getInputProps=function(e){var t=void 0===e?{}:e,r=t.onKeyDown,o=t.onBlur,i=t.onChange,a=t.onInput,u=(t.onChangeText,U(t,["onKeyDown","onBlur","onChange","onInput","onChangeText"])),c={};var s,l=n.getState(),p=l.inputValue,d=l.isOpen,f=l.highlightedIndex;u.disabled||((s={}).onChange=Q(i,a,n.inputHandleChange),s.onKeyDown=Q(r,n.inputHandleKeyDown),s.onBlur=Q(o,n.inputHandleBlur),c=s);return K({"aria-autocomplete":"list","aria-activedescendant":d&&"number"==typeof f&&f>=0?n.getItemId(f):null,"aria-controls":d?n.menuId:null,"aria-labelledby":n.labelId,autoComplete:"off",value:p,id:n.inputId},c,{},u)},n.inputHandleKeyDown=function(e){var t=ae(e);t&&n.inputKeyDownHandlers[t]&&n.inputKeyDownHandlers[t].call(F(n),e)},n.inputHandleChange=function(e){n.internalSetState({type:11,isOpen:!0,inputValue:e.target.value,highlightedIndex:n.props.defaultHighlightedIndex})},n.inputHandleBlur=function(){n.internalSetTimeout((function(){var e=n.props.environment.document&&!!n.props.environment.document.activeElement&&!!n.props.environment.document.activeElement.dataset&&n.props.environment.document.activeElement.dataset.toggle&&n._rootNode&&n._rootNode.contains(n.props.environment.document.activeElement);n.isMouseDown||e||n.reset({type:10})}))},n.menuRef=function(e){n._menuNode=e},n.getMenuProps=function(e,t){var r,o=void 0===e?{}:e,i=o.refKey,a=void 0===i?"ref":i,u=o.ref,c=U(o,["refKey","ref"]),s=(void 0===t?{}:t).suppressRefError,l=void 0!==s&&s;return n.getMenuProps.called=!0,n.getMenuProps.refKey=a,n.getMenuProps.suppressRefError=l,K(((r={})[a]=Z(u,n.menuRef),r.role="listbox",r["aria-labelledby"]=c&&c["aria-label"]?null:n.labelId,r.id=n.menuId,r),c)},n.getItemProps=function(e){var t,r=void 0===e?{}:e,o=r.onMouseMove,i=r.onMouseDown,a=r.onClick,u=(r.onPress,r.index),c=r.item,s=void 0===c?void 0:c,l=U(r,["onMouseMove","onMouseDown","onClick","onPress","index","item"]);void 0===u?(n.items.push(s),u=n.items.indexOf(s)):n.items[u]=s;var p=a,d=((t={onMouseMove:Q(o,(function(){u!==n.getState().highlightedIndex&&(n.setHighlightedIndex(u,{type:2}),n.avoidScrolling=!0,n.internalSetTimeout((function(){return n.avoidScrolling=!1}),250))})),onMouseDown:Q(i,(function(e){e.preventDefault()}))}).onClick=Q(p,(function(){n.selectItemAtIndex(u,{type:9})})),t),f=l.disabled?{onMouseDown:d.onMouseDown}:d;return K({id:n.getItemId(u),role:"option","aria-selected":n.getState().highlightedIndex===u},f,{},l)},n.clearItems=function(){n.items=[]},n.reset=function(e,t){void 0===e&&(e={}),e=ie(e),n.internalSetState((function(t){var r=t.selectedItem;return K({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,inputValue:n.props.itemToString(r)},e)}),t)},n.toggleMenu=function(e,t){void 0===e&&(e={}),e=ie(e),n.internalSetState((function(t){var r=t.isOpen;return K({isOpen:!r},r&&{highlightedIndex:n.props.defaultHighlightedIndex},{},e)}),(function(){var r=n.getState(),o=r.isOpen,i=r.highlightedIndex;o&&n.getItemCount()>0&&"number"==typeof i&&n.setHighlightedIndex(i,e),q(t)()}))},n.openMenu=function(e){n.internalSetState({isOpen:!0},e)},n.closeMenu=function(e){n.internalSetState({isOpen:!1},e)},n.updateStatus=J((function(){var e=n.getState(),t=n.items[e.highlightedIndex],r=n.getItemCount(),o=n.props.getA11yStatusMessage(K({itemToString:n.props.itemToString,previousResultCount:n.previousResultCount,resultCount:r,highlightedItem:t},e));n.previousResultCount=r,se(o,n.props.environment.document)}),200);var r=n.props,o=r.defaultHighlightedIndex,i=r.initialHighlightedIndex,a=void 0===i?o:i,u=r.defaultIsOpen,c=r.initialIsOpen,s=void 0===c?u:c,l=r.initialInputValue,p=void 0===l?"":l,d=r.initialSelectedItem,f=void 0===d?null:d,h=n.getState({highlightedIndex:a,isOpen:s,inputValue:p,selectedItem:f});return null!=h.selectedItem&&void 0===n.props.initialInputValue&&(h.inputValue=n.props.itemToString(h.selectedItem)),n.state=h,n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var o=r.prototype;return o.internalClearTimeouts=function(){this.timeoutIds.forEach((function(e){clearTimeout(e)})),this.timeoutIds=[]},o.getState=function(e){var t=this;return void 0===e&&(e=this.state),Object.keys(e).reduce((function(n,r){return n[r]=t.isControlledProp(r)?t.props[r]:e[r],n}),{})},o.isControlledProp=function(e){return void 0!==this.props[e]},o.getItemCount=function(){var e=this.items.length;return null!=this.itemCount?e=this.itemCount:void 0!==this.props.itemCount&&(e=this.props.itemCount),e},o.getItemNodeFromIndex=function(e){return this.props.environment.document.getElementById(this.getItemId(e))},o.scrollHighlightedItemIntoView=function(){var e=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(e,this._menuNode)},o.moveHighlightedIndex=function(e,t){var n=this.getItemCount();if(n>0){var r=ue(e,this.getState().highlightedIndex,n);this.setHighlightedIndex(r,t)}},o.highlightFirstOrLastIndex=function(e,t,n){var r=this.getItemCount()-1;r<0||!this.getState().isOpen||(e.preventDefault(),this.setHighlightedIndex(t?0:r,n))},o.getStateAndHelpers=function(){var e=this.getState(),t=e.highlightedIndex,n=e.inputValue,r=e.selectedItem,o=e.isOpen,i=this.props.itemToString,a=this.id,u=this.getRootProps,c=this.getToggleButtonProps,s=this.getLabelProps,l=this.getMenuProps,p=this.getInputProps,d=this.getItemProps,f=this.openMenu,h=this.closeMenu,m=this.toggleMenu,v=this.selectItem,g=this.selectItemAtIndex,y=this.selectHighlightedItem,b=this.setHighlightedIndex,w=this.clearSelection,I=this.clearItems;return{getRootProps:u,getToggleButtonProps:c,getLabelProps:s,getMenuProps:l,getInputProps:p,getItemProps:d,reset:this.reset,openMenu:f,closeMenu:h,toggleMenu:m,selectItem:v,selectItemAtIndex:g,selectHighlightedItem:y,setHighlightedIndex:b,clearSelection:w,clearItems:I,setItemCount:this.setItemCount,unsetItemCount:this.unsetItemCount,setState:this.internalSetState,itemToString:i,id:a,highlightedIndex:t,inputValue:n,isOpen:o,selectedItem:r}},o.componentDidMount=function(){var e=this;var t=function(t,n){void 0===n&&(n=!0);var r=e.props.environment.document;return[e._rootNode,e._menuNode].some((function(e){return e&&(G(e,t)||n&&G(e,r.activeElement))}))},n=function(){e.isMouseDown=!0},r=function(n){e.isMouseDown=!1,!t(n.target)&&e.getState().isOpen&&e.reset({type:1},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},o=function(){e.isTouchMove=!1},i=function(){e.isTouchMove=!0},a=function(n){var r=t(n.target,!1);e.isTouchMove||r||!e.getState().isOpen||e.reset({type:16},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},u=this.props.environment;u.addEventListener("mousedown",n),u.addEventListener("mouseup",r),u.addEventListener("touchstart",o),u.addEventListener("touchmove",i),u.addEventListener("touchend",a),this.cleanup=function(){e.internalClearTimeouts(),e.updateStatus.cancel(),u.removeEventListener("mousedown",n),u.removeEventListener("mouseup",r),u.removeEventListener("touchstart",o),u.removeEventListener("touchmove",i),u.removeEventListener("touchend",a)}},o.shouldScroll=function(e,t){var n=(void 0===this.props.highlightedIndex?this.getState():this.props).highlightedIndex,r=(void 0===t.highlightedIndex?e:t).highlightedIndex;return n&&this.getState().isOpen&&!e.isOpen||n!==r},o.componentDidUpdate=function(e,t){this.isControlledProp("selectedItem")&&this.props.selectedItemChanged(e.selectedItem,this.props.selectedItem)&&this.internalSetState({type:15,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(t,e)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},o.componentWillUnmount=function(){this.cleanup()},o.render=function(){var e=te(this.props.children,Y);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var t=te(e(this.getStateAndHelpers()));return t?this.getRootProps.called||this.props.suppressRefError?t:ne(t)?Object(s.cloneElement)(t,this.getRootProps(re(t))):void 0:null},r}(s.Component);return e.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:ee,itemToString:function(e){return null==e?"":String(e)},onStateChange:Y,onInputValueChange:Y,onUserAction:Y,onChange:Y,onSelect:Y,onOuterClick:Y,selectedItemChanged:function(e,t){return e!==t},environment:"undefined"==typeof window?{}:window,stateReducer:function(e,t){return t},suppressRefError:!1,scrollIntoView:X},e.stateChangeTypes=pe,e}();d.a.array.isRequired,d.a.func,d.a.func,d.a.func,d.a.bool,d.a.number,d.a.number,d.a.number,d.a.bool,d.a.bool,d.a.bool,d.a.any,d.a.any,d.a.any,d.a.string,d.a.string,d.a.string,d.a.func,d.a.string,d.a.func,d.a.func,d.a.func,d.a.func,d.a.func,d.a.shape({addEventListener:d.a.func,removeEventListener:d.a.func,document:d.a.shape({getElementById:d.a.func,activeElement:d.a.any,body:d.a.any})});"undefined"==typeof window||window;var fe=de;function he(){return(he=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function me(e,t,n,r,o,i,a){try{var u=e[i](a),c=u.value}catch(e){return void n(e)}u.done?t(c):Promise.resolve(c).then(r,o)}function ve(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ge(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ge(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ge(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ye=function(e){var t=e.listId,n=e.provider,o=e.apiKey,i=e.onChange,u=ve(Object(r.useState)([]),2),s=u[0],l=u[1],p=ve(Object(r.useState)(!1),2),d=p[0],f=p[1],h=ve(Object(r.useState)({controller:null}),2),m=h[0].controller,v=h[1],g=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return m&&m.abort(),f(!0),"AbortController"in window&&(m=new AbortController,v({controller:m})),(t=new FormData).append("api_key",o),t.append("provider",n),t.append("action","blocksy_ext_newsletter_subscribe_maybe_get_lists"),e.prev=7,e.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",signal:m.signal,body:t});case 10:if(200!==(r=e.sent).status){e.next=20;break}return e.next=14,r.json();case 14:if(!(i=e.sent).success){e.next=20;break}if("api_key_invalid"===i.data.result){e.next=20;break}return f(!1),l(i.data.result),e.abrupt("return");case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(7);case 24:l([]),f(!1);case 26:case"end":return e.stop()}}),e,null,[[7,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){me(i,r,o,a,u,"next",e)}function u(e){me(i,r,o,a,u,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.useEffect)((function(){o?g():l([])}),[n,o]),0===s.length?Object(r.createElement)("div",{className:"ct-select-input"},Object(r.createElement)("input",{disabled:!0,placeholder:d?Object(a.__)("Loading","blocksy-companion"):Object(a.__)("Invalid API Key...","blocksy-companion")})):Object(r.createElement)(fe,{selectedItem:t||"",onChange:function(e){return i(e)},itemToString:function(e){return e?(s.find((function(t){return t.id===e}))||{}).name:""}},(function(e){var t=e.getInputProps,n=e.getItemProps,o=(e.getLabelProps,e.getMenuProps),i=e.isOpen,u=(e.inputValue,e.highlightedIndex),l=e.selectedItem,p=e.openMenu;return Object(r.createElement)("div",{className:"ct-select-input"},Object(r.createElement)("input",he({},t({onFocus:function(){return p()},onClick:function(){return p()}}),{placeholder:Object(a.__)("Select list...","blocksy-companion"),readOnly:!0})),i&&Object(r.createElement)("div",o({className:"ct-select-dropdown"}),s.map((function(e,t){return Object(r.createElement)("div",n({key:e.id,index:t,item:e.id,className:c()("ct-select-dropdown-item",{active:u===t,selected:l===e.id})}),e.name)}))))}))};function be(e,t,n,r,o,i,a){try{var u=e[i](a),c=u.value}catch(e){return void n(e)}u.done?t(c):Promise.resolve(c).then(r,o)}function we(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Ie(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ie(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ie(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Oe=function(e){var t=e.extension,n=e.isEditingCredentials,o=e.setIsEditingCredentials,i=e.onCredentialsValidated,u=we(Object(r.useState)(t.data.provider),2),s=u[0],l=u[1],p=we(Object(r.useState)(t.data.api_key),2),d=p[0],f=p[1],h=we(Object(r.useState)(t.data.list_id),2),m=h[0],v=h[1],g=we(Object(r.useState)(!1),2),y=g[0],b=g[1],w=we(Object(r.useState)(!1),2),I=w[0],O=w[1],S=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(t=new FormData).append("provider",s),t.append("api_key",d),t.append("list_id",m),t.append("action","blocksy_ext_newsletter_subscribe_maybe_save_credentials"),b(!0),e.prev=6,e.next=9,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 9:if(200!==(n=e.sent).status){e.next=15;break}return e.next=13,n.json();case 13:(r=e.sent).success&&"api_key_invalid"!==r.data.result&&(i(),O(!1));case 15:O(!0),e.next=21;break;case 18:e.prev=18,e.t0=e.catch(6),O(!0);case 21:return e.next=23,new Promise((function(e){return setTimeout((function(){return e()}),1e3)}));case 23:b(!1);case 24:case"end":return e.stop()}}),e,null,[[6,18]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){be(i,r,o,a,u,"next",e)}function u(e){be(i,r,o,a,u,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.createElement)(H,{items:n,onDismiss:function(){return o(!1)},className:"ct-mailchimp-modal",render:function(){return Object(r.createElement)("div",{className:c()("ct-modal-content",{"ct-key-invalid":I})},Object(r.createElement)("h2",null,Object(a.__)("API Credentials","blocksy-companion")),Object(r.createElement)("p",{dangerouslySetInnerHTML:{__html:Object(a.__)("Enter your Newsletter provider API credentials in the form below.","blocksy-companion")}}),Object(r.createElement)("div",{className:"ct-newsletter-select-provider"},Object(r.createElement)(r.Fragment,null,Object(r.createElement)("h4",null,Object(a.__)("Select Provider","blocksy-companion")),Object(r.createElement)(M.Select,{onChange:function(e){l(e)},option:{placeholder:Object(a.__)("Pick Mailing Service","blocksy-companion"),choices:[{key:"mailchimp",value:"Mailchimp"},{key:"mailerlite",value:"Mailerlite"}]},value:s})),!ctDashboardLocalizations.plugin_data.is_pro&&"mailchimp"!==s&&Object(r.createElement)("p",{dangerouslySetInnerHTML:{__html:Object(a.sprintf)(Object(a.__)("This option is available only in Blocksy premium %sversion%s.","blocksy-companion"),'<a target="_blank" href="https://creativethemes.com/blocksy/pricing/">',"</a>")}}),"mailchimp"===s&&Object(r.createElement)("p",{dangerouslySetInnerHTML:{__html:Object(a.sprintf)(Object(a.__)("More info on how to generate an API key for Mailchimp can be found %shere%s.","blocksy-companion"),'<a target="_blank" href="https://mailchimp.com/help/about-api-keys/">',"</a>")}}),ctDashboardLocalizations.plugin_data.is_pro&&"mailerlite"===s&&Object(r.createElement)("p",{dangerouslySetInnerHTML:{__html:Object(a.sprintf)(Object(a.__)("More info on how to generate an API key for Mailerlite can be found %shere%s. Please note that we require at least one group to be created in your account for the integration to work. More info on how to create a group %shere%s.","blocksy-companion"),'<a target="_blank" href="https://www.mailerlite.com/help/where-to-find-the-mailerlite-api-key-and-documentation">',"</a>",'<a target="_blank" href="https://www.mailerlite.com/help/how-to-create-and-use-groups">',"</a>")}})),("mailchimp"===s||ctDashboardLocalizations.plugin_data.is_pro)&&Object(r.createElement)("div",{className:"mailchimp-credentials"},Object(r.createElement)("section",null,Object(r.createElement)("label",null,Object(a.__)("API Key","blocksy-companion")),Object(r.createElement)("div",{className:"ct-option-input"},Object(r.createElement)("input",{type:"text",onChange:function(e){var t=e.target.value;return f(t)},value:d||""}))),Object(r.createElement)("section",null,Object(r.createElement)("label",null,Object(a.__)("List ID","blocksy-companion")),Object(r.createElement)(ye,{listId:m,onChange:function(e){return v(e)},provider:s,apiKey:d})),Object(r.createElement)("section",null,Object(r.createElement)("label",null," "),Object(r.createElement)("button",{className:"ct-button","data-button":"blue",disabled:!d||!m||y,onClick:function(){return S()}},y?Object(a.__)("Loading...","blocksy-companion"):t.__object?Object(a.__)("Save Settings","blocksy-companion"):Object(a.__)("Activate","blocksy-companion")))))}})};function Se(e,t,n,r,o,i,a){try{var u=e[i](a),c=u.value}catch(e){return void n(e)}u.done?t(c):Promise.resolve(c).then(r,o)}function xe(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){Se(i,r,o,a,u,"next",e)}function u(e){Se(i,r,o,a,u,"throw",e)}a(void 0)}))}}function Ee(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return je(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return je(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function je(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var _e=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=Object(r.useState)(!1),o=Ee(n,2),i=o[0],u=o[1],c=Object(r.useState)(!1),s=Ee(c,2),l=s[0],p=s[1],d=function(){var n=xe(regeneratorRuntime.mark((function n(){var r;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return(r=new FormData).append("ext",e.name),r.append("action",e.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),u(!0),n.prev=4,n.next=7,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 7:t(),n.next=12;break;case 10:n.prev=10,n.t0=n.catch(4);case 12:u(!1);case 13:case"end":return n.stop()}}),n,null,[[4,10]])})));return function(){return n.apply(this,arguments)}}(),f=function(){e.__object||e.data.api_key?d():p(!0)};return[i,f,Object(r.createElement)(r.Fragment,null,e.__object&&e.data.api_key&&Object(r.createElement)("button",{className:"ct-button ct-config-btn","data-button":"white",title:"Edit Credentials",onClick:function(){return p(!0)}},Object(a.__)("Configure","blocksy-companion")),Object(r.createElement)(Oe,{isEditingCredentials:l,setIsEditingCredentials:p,extension:e,onCredentialsValidated:function(){e.__object||d(),p(!1)}}))]};function Ce(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ke(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ke(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ke(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Pe=function(e){var t=e.extension,n=e.onExtsSync,o=Ce(_e(t,(function(){n()})),3),i=o[0],u=o[1],s=o[2],l=Ce(L(t),2),p=l[0],d=l[1];return Object(r.createElement)("li",{className:c()({active:!!t.__object})},Object(r.createElement)("h4",{className:"ct-extension-title"},t.config.name,i&&Object(r.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},Object(r.createElement)("g",{transform:"translate(50,50)"},Object(r.createElement)("g",{transform:"scale(1)"},Object(r.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),Object(r.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},Object(r.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),t.config.description&&Object(r.createElement)("div",{className:"ct-extension-description"},t.config.description),Object(r.createElement)("div",{className:"ct-extension-actions"},Object(r.createElement)("button",{className:c()(t.__object?"ct-button":"ct-button-primary"),"data-button":"white",disabled:i,onClick:function(){return u()}},t.__object?Object(a.__)("Deactivate","blocksy-companion"):Object(a.__)("Activate","blocksy-companion")),s,t.readme&&Object(r.createElement)("button",{onClick:function(){return p()},"data-button":"white",className:"ct-minimal-button ct-instruction"},Object(r.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"})))),d)};i.a.on("ct:extensions:card",(function(e){var t=e.CustomComponent;"newsletter-subscribe"===e.extension.name&&(t.extension=Pe)}))}]);
|
1 |
+
/*! For license information please see main.js.LICENSE.txt */
|
2 |
+
(()=>{var e={184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var i=typeof n;if("string"===i||"number"===i)e.push(n);else if(Array.isArray(n)&&n.length){var a=o.apply(null,n);a&&e.push(a)}else if("object"===i)for(var s in n)r.call(n,s)&&n[s]&&e.push(s)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},172:(e,t,n)=>{var r,o,i=n(760),a=n(529),s=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function u(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,l=a({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),c={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},p={activate:function(e){if(!c.active){w(),c.active=!0,c.paused=!1,c.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:l.onActivate;return t&&t(),f(),p}},deactivate:d,pause:function(){!c.paused&&c.active&&(c.paused=!0,h())},unpause:function(){c.paused&&c.active&&(c.paused=!1,w(),f())}};return p;function d(e){if(c.active){clearTimeout(r),h(),c.active=!1,c.paused=!1,s.deactivateTrap(p);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:l.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:l.returnFocusOnDeactivate)&&u((function(){var e;S((e=c.nodeFocusedBeforeActivation,m("setReturnFocus")||e))})),p}}function f(){if(c.active)return s.activateTrap(p),r=u((function(){S(v())})),n.addEventListener("focusin",y,!0),n.addEventListener("mousedown",g,{capture:!0,passive:!1}),n.addEventListener("touchstart",g,{capture:!0,passive:!1}),n.addEventListener("click",I,{capture:!0,passive:!1}),n.addEventListener("keydown",b,{capture:!0,passive:!1}),p}function h(){if(c.active)return n.removeEventListener("focusin",y,!0),n.removeEventListener("mousedown",g,!0),n.removeEventListener("touchstart",g,!0),n.removeEventListener("click",I,!0),n.removeEventListener("keydown",b,!0),p}function m(e){var t=l[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function v(){var e;if(!(e=null!==m("initialFocus")?m("initialFocus"):o.contains(n.activeElement)?n.activeElement:c.firstTabbableNode||m("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function g(e){o.contains(e.target)||(l.clickOutsideDeactivates?d({returnFocus:!i.isFocusable(e.target)}):l.allowOutsideClick&&l.allowOutsideClick(e)||e.preventDefault())}function y(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),S(c.mostRecentlyFocusedNode||v()))}function b(e){if(!1!==l.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void d();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(w(),e.shiftKey&&e.target===c.firstTabbableNode)return e.preventDefault(),void S(c.lastTabbableNode);e.shiftKey||e.target!==c.lastTabbableNode||(e.preventDefault(),S(c.firstTabbableNode))}(e)}function I(e){l.clickOutsideDeactivates||o.contains(e.target)||l.allowOutsideClick&&l.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function w(){var e=i(o);c.firstTabbableNode=e[0]||v(),c.lastTabbableNode=e[e.length-1]||v()}function S(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),c.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):S(v()))}}},703:(e,t,n)=>{"use strict";var r=n(414);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,a){if(a!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},697:(e,t,n)=>{e.exports=n(703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},921:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for;n&&Symbol.for("react.element"),n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.async_mode"),n&&Symbol.for("react.concurrent_mode"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.suspense_list"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),n&&Symbol.for("react.block"),n&&Symbol.for("react.fundamental"),n&&Symbol.for("react.responder"),n&&Symbol.for("react.scope")},864:(e,t,n)=>{"use strict";n(921)},760:e=>{var t=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],n=t.join(","),r="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var o,a,s,c=[],p=[],d=e.querySelectorAll(n);for(t.includeContainer&&r.call(e,n)&&(d=Array.prototype.slice.apply(d)).unshift(e),o=0;o<d.length;o++)i(a=d[o])&&(0===(s=u(a))?c.push(a):p.push({documentOrder:o,tabIndex:s,node:a}));return p.sort(l).map((function(e){return e.node})).concat(c)}function i(e){return!(!a(e)||function(e){return function(e){return c(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||u(e)<0)}function a(e){return!(e.disabled||function(e){return c(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}o.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,n)&&i(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,s)&&a(e)};var s=t.concat("iframe").join(",");function u(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function l(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function c(e){return"INPUT"===e.tagName}e.exports=o},529:e=>{e.exports=function(){for(var e={},n=0;n<arguments.length;n++){var r=arguments[n];for(var o in r)t.call(r,o)&&(e[o]=r[o])}return e};var t=Object.prototype.hasOwnProperty}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";const e=window.wp.element,t=window.ctEvents;var r=n.n(t);const o=window.wp.i18n;var i=n(184),a=n.n(i);const s=window.React;var u=n.n(s),l=n(697),c=n.n(l);function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var f=function(e){return e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render,function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},h=function(e){function t(){var n,r;p(this,t);for(var o=arguments.length,i=Array(o),a=0;a<o;a++)i[a]=arguments[a];return n=r=d(this,e.call.apply(e,[this].concat(i))),m.call(r),d(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,o=this._refs;return{state:e,props:f(t),refs:o,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:f(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:f(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:f(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:f(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(u().Component);h.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var m=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}};const v=h,g=function(t){var n=t.children,r=t.container,o=void 0===r?document.body:r,i=t.type,a=void 0===i?"reach-portal":i;return(0,e.createElement)(v,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(a),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(t){var r=t.refs.node;return r?(0,e.createPortal)(n,r):null}})};var y=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},b=n(172),I=n.n(b);function w(){return w=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},w.apply(this,arguments)}function S(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var E=function(){},x=function(){},_=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},O=React.createContext(),k=React.forwardRef((function(t,n){var r=t.container,o=t.isOpen,i=void 0===o||o,a=t.onDismiss,s=void 0===a?E:a,u=t.initialFocusRef,l=t.onClick,c=t.onKeyDown,p=S(t,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return(0,e.createElement)(v,{didMount:x},i?(0,e.createElement)(g,{container:r,"data-reach-dialog-wrapper":!0},(0,e.createElement)(v,{refs:{overlayNode:null,contentNode:null},didMount:function(e){!function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=I()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})}(e.refs,u)},willUnmount:_},(function(t){var r=t.refs;return(0,e.createElement)(O.Provider,{value:function(e){return r.contentNode=e}},(0,e.createElement)("div",w({"data-reach-dialog-overlay":!0,onClick:y(l,(function(e){e.stopPropagation(),s()})),onKeyDown:y(c,(function(e){"Escape"===e.key&&(e.stopPropagation(),s())})),ref:function(e){r.overlayNode=e,n&&n(e)}},p)))}))):null)}));k.propTypes={initialFocusRef:function(){}};var C=function(e){return e.stopPropagation()},P=React.forwardRef((function(t,n){var r=t.onClick,o=(t.onKeyDown,S(t,["onClick","onKeyDown"]));return(0,e.createElement)(O.Consumer,null,(function(t){return(0,e.createElement)("div",w({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:y(r,C),ref:function(e){t(e),n&&n(e)}},o))}))}));const A=window.blocksyOptions;var D=function(e){return!!e};const M=function(t){var n=t.items,r=t.isVisible,o=void 0===r?D:r,i=t.render,s=t.className,u=t.onDismiss;return(0,e.createElement)(A.Transition,{items:n,onStart:function(){return document.body.classList[o(n)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(t){return o(t)&&function(n){return(0,e.createElement)(k,{style:{opacity:n.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return u()}},(0,e.createElement)(P,{className:a()("ct-admin-modal",s),style:{transform:"translate3d(0px, ".concat(n.y,"px, 0px)")}},(0,e.createElement)("button",{className:"close-button",onClick:function(){return u()}},"×"),i(t,n)))}}))};function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const H=function(t){var n,r,o=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return T(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?T(e,t):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),i=o[0],a=o[1];return[function(){return a(!0)},(0,e.createElement)(M,{items:i,onDismiss:function(){return a(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:t.readme}})}})]};function j(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function R(){return R=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},R.apply(this,arguments)}function N(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function L(e){return null!=e&&"object"==typeof e&&1===e.nodeType}function U(e,t){return(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e}function K(e,t){if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){var n=getComputedStyle(e,null);return U(n.overflowY,t)||U(n.overflowX,t)||function(e){var t=function(e){return e.ownerDocument&&e.ownerDocument.defaultView?e.ownerDocument.defaultView.frameElement:null}(e);return!!t&&(t.clientHeight<e.scrollHeight||t.clientWidth<e.scrollWidth)}(e)}return!1}function F(e,t,n,r,o,i,a,s){return i<e&&a>t||i>e&&a<t?0:i<=e&&s<=n||a>=t&&s>=n?i-e-r:a>t&&s<n||i<e&&s>n?a-t+o:0}n(864);var V=0;function B(e){return"function"==typeof e?e:W}function W(){}function z(e,t){if(null!==e){var n=function(e,t){var n=t.scrollMode,r=t.block,o=t.inline,i=t.boundary,a=t.skipOverflowHiddenElements,s="function"==typeof i?i:function(e){return e!==i};if(!L(e))throw new TypeError("Invalid target");for(var u=document.scrollingElement||document.documentElement,l=[],c=e;L(c)&&s(c);){if((c=c.parentNode)===u){l.push(c);break}c===document.body&&K(c)&&!K(document.documentElement)||K(c,a)&&l.push(c)}for(var p=window.visualViewport?visualViewport.width:innerWidth,d=window.visualViewport?visualViewport.height:innerHeight,f=window.scrollX||pageXOffset,h=window.scrollY||pageYOffset,m=e.getBoundingClientRect(),v=m.height,g=m.width,y=m.top,b=m.right,I=m.bottom,w=m.left,S="start"===r||"nearest"===r?y:"end"===r?I:y+v/2,E="center"===o?w+g/2:"end"===o?b:w,x=[],_=0;_<l.length;_++){var O=l[_],k=O.getBoundingClientRect(),C=k.height,P=k.width,A=k.top,D=k.right,M=k.bottom,T=k.left;if("if-needed"===n&&y>=0&&w>=0&&I<=d&&b<=p&&y>=A&&I<=M&&w>=T&&b<=D)return x;var H=getComputedStyle(O),j=parseInt(H.borderLeftWidth,10),R=parseInt(H.borderTopWidth,10),N=parseInt(H.borderRightWidth,10),U=parseInt(H.borderBottomWidth,10),V=0,B=0,W="offsetWidth"in O?O.offsetWidth-O.clientWidth-j-N:0,z="offsetHeight"in O?O.offsetHeight-O.clientHeight-R-U:0;if(u===O)V="start"===r?S:"end"===r?S-d:"nearest"===r?F(h,h+d,d,R,U,h+S,h+S+v,v):S-d/2,B="start"===o?E:"center"===o?E-p/2:"end"===o?E-p:F(f,f+p,p,j,N,f+E,f+E+g,g),V=Math.max(0,V+h),B=Math.max(0,B+f);else{V="start"===r?S-A-R:"end"===r?S-M+U+z:"nearest"===r?F(A,M,C,R,U+z,S,S+v,v):S-(A+C/2)+z/2,B="start"===o?E-T-j:"center"===o?E-(T+P/2)+W/2:"end"===o?E-D+N+W:F(T,D,P,j,N+W,E,E+g,g);var q=O.scrollLeft,Y=O.scrollTop;S+=Y-(V=Math.max(0,Math.min(Y+V,O.scrollHeight-C+z))),E+=q-(B=Math.max(0,Math.min(q+B,O.scrollWidth-P+W)))}x.push({el:O,top:V,left:B})}return x}(e,{boundary:t,block:"nearest",scrollMode:"if-needed"});n.forEach((function(e){var t=e.el,n=e.top,r=e.left;t.scrollTop=n,t.scrollLeft=r}))}}function q(e,t){return e===t||e.contains&&e.contains(t)}function Y(e,t){var n;function r(){n&&clearTimeout(n)}function o(){for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];r(),n=setTimeout((function(){n=null,e.apply(void 0,i)}),t)}return o.cancel=r,o}function $(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return t.some((function(t){return t&&t.apply(void 0,[e].concat(r)),e.preventDownshiftDefault||e.hasOwnProperty("nativeEvent")&&e.nativeEvent.preventDownshiftDefault}))}}function X(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach((function(t){"function"==typeof t?t(e):t&&(t.current=e)}))}}function G(e){var t=e.isOpen,n=e.selectedItem,r=e.resultCount,o=e.previousResultCount,i=e.itemToString;return t?r?r!==o?r+" result"+(1===r?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":n?i(n):""}function J(e,t){return!(e=Array.isArray(e)?e[0]:e)&&t?t:e}var Q=["highlightedIndex","inputValue","isOpen","selectedItem","type"];function Z(e){void 0===e&&(e={});var t={};return Q.forEach((function(n){e.hasOwnProperty(n)&&(t[n]=e[n])})),t}function ee(e){var t=e.key,n=e.keyCode;return n>=37&&n<=40&&0!==t.indexOf("Arrow")?"Arrow"+t:t}function te(e,t,n){var r=n-1;("number"!=typeof t||t<0||t>=n)&&(t=e>0?-1:r+1);var o=t+e;return o<0?o=r:o>r&&(o=0),o}var ne=Y((function(){re().textContent=""}),500);function re(e){void 0===e&&(e=document);var t=e.getElementById("a11y-status-message");return t||((t=e.createElement("div")).setAttribute("id","a11y-status-message"),t.setAttribute("role","status"),t.setAttribute("aria-live","polite"),t.setAttribute("aria-relevant","additions text"),Object.assign(t.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(t),t)}var oe=Object.freeze({__proto__:null,unknown:0,mouseUp:1,itemMouseEnter:2,keyDownArrowUp:3,keyDownArrowDown:4,keyDownEscape:5,keyDownEnter:6,keyDownHome:7,keyDownEnd:8,clickItem:9,blurInput:10,changeInput:11,keyDownSpaceButton:12,clickButton:13,blurButton:14,controlledPropUpdatedSelectedItem:15,touchEnd:16}),ie=function(){var e=function(e){var t,n;function r(t){var n=e.call(this,t)||this;n.id=n.props.id||"downshift-"+String(V++),n.menuId=n.props.menuId||n.id+"-menu",n.labelId=n.props.labelId||n.id+"-label",n.inputId=n.props.inputId||n.id+"-input",n.getItemId=n.props.getItemId||function(e){return n.id+"-item-"+e},n.input=null,n.items=[],n.itemCount=null,n.previousResultCount=0,n.timeoutIds=[],n.internalSetTimeout=function(e,t){var r=setTimeout((function(){n.timeoutIds=n.timeoutIds.filter((function(e){return e!==r})),e()}),t);n.timeoutIds.push(r)},n.setItemCount=function(e){n.itemCount=e},n.unsetItemCount=function(){n.itemCount=null},n.setHighlightedIndex=function(e,t){void 0===e&&(e=n.props.defaultHighlightedIndex),void 0===t&&(t={}),t=Z(t),n.internalSetState(R({highlightedIndex:e},t))},n.clearSelection=function(e){n.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:n.props.defaultHighlightedIndex,isOpen:n.props.defaultIsOpen},e)},n.selectItem=function(e,t,r){t=Z(t),n.internalSetState(R({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,selectedItem:e,inputValue:n.props.itemToString(e)},t),r)},n.selectItemAtIndex=function(e,t,r){var o=n.items[e];null!=o&&n.selectItem(o,t,r)},n.selectHighlightedItem=function(e,t){return n.selectItemAtIndex(n.getState().highlightedIndex,e,t)},n.internalSetState=function(e,t){var r,o,i={},a="function"==typeof e;return!a&&e.hasOwnProperty("inputValue")&&n.props.onInputValueChange(e.inputValue,R({},n.getStateAndHelpers(),{},e)),n.setState((function(t){t=n.getState(t);var s=a?e(t):e;s=n.props.stateReducer(t,s),r=s.hasOwnProperty("selectedItem");var u={},l={};return r&&s.selectedItem!==t.selectedItem&&(o=s.selectedItem),s.type=s.type||0,Object.keys(s).forEach((function(e){t[e]!==s[e]&&(i[e]=s[e]),"type"!==e&&(l[e]=s[e],n.isControlledProp(e)||(u[e]=s[e]))})),a&&s.hasOwnProperty("inputValue")&&n.props.onInputValueChange(s.inputValue,R({},n.getStateAndHelpers(),{},s)),u}),(function(){B(t)(),Object.keys(i).length>1&&n.props.onStateChange(i,n.getStateAndHelpers()),r&&n.props.onSelect(e.selectedItem,n.getStateAndHelpers()),void 0!==o&&n.props.onChange(o,n.getStateAndHelpers()),n.props.onUserAction(i,n.getStateAndHelpers())}))},n.rootRef=function(e){return n._rootNode=e},n.getRootProps=function(e,t){var r,o=void 0===e?{}:e,i=o.refKey,a=void 0===i?"ref":i,s=o.ref,u=j(o,["refKey","ref"]),l=(void 0===t?{}:t).suppressRefError,c=void 0!==l&&l;n.getRootProps.called=!0,n.getRootProps.refKey=a,n.getRootProps.suppressRefError=c;var p=n.getState().isOpen;return R(((r={})[a]=X(s,n.rootRef),r.role="combobox",r["aria-expanded"]=p,r["aria-haspopup"]="listbox",r["aria-owns"]=p?n.menuId:null,r["aria-labelledby"]=n.labelId,r),u)},n.keyDownHandlers={ArrowDown:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?5:1;this.moveHighlightedIndex(n,{type:4})}else this.internalSetState({isOpen:!0,type:4},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(te(1,t.getState().highlightedIndex,e),{type:4})}))},ArrowUp:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var n=e.shiftKey?-5:-1;this.moveHighlightedIndex(n,{type:3})}else this.internalSetState({isOpen:!0,type:3},(function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(te(-1,t.getState().highlightedIndex,e),{type:4})}))},Enter:function(e){var t=this.getState(),n=t.isOpen,r=t.highlightedIndex;if(n&&null!=r){e.preventDefault();var o=this.items[r],i=this.getItemNodeFromIndex(r);if(null==o||i&&i.hasAttribute("disabled"))return;this.selectHighlightedItem({type:6})}},Escape:function(e){e.preventDefault(),this.reset({type:5,selectedItem:null,inputValue:""})}},n.buttonKeyDownHandlers=R({},n.keyDownHandlers,{" ":function(e){e.preventDefault(),this.toggleMenu({type:12})}}),n.inputKeyDownHandlers=R({},n.keyDownHandlers,{Home:function(e){this.highlightFirstOrLastIndex(e,!0,{type:7})},End:function(e){this.highlightFirstOrLastIndex(e,!1,{type:8})}}),n.getToggleButtonProps=function(e){var t=void 0===e?{}:e,r=t.onClick,o=(t.onPress,t.onKeyDown),i=t.onKeyUp,a=t.onBlur,s=j(t,["onClick","onPress","onKeyDown","onKeyUp","onBlur"]),u=n.getState().isOpen,l={onClick:$(r,n.buttonHandleClick),onKeyDown:$(o,n.buttonHandleKeyDown),onKeyUp:$(i,n.buttonHandleKeyUp),onBlur:$(a,n.buttonHandleBlur)};return R({type:"button",role:"button","aria-label":u?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},s.disabled?{}:l,{},s)},n.buttonHandleKeyUp=function(e){e.preventDefault()},n.buttonHandleKeyDown=function(e){var t=ee(e);n.buttonKeyDownHandlers[t]&&n.buttonKeyDownHandlers[t].call(N(n),e)},n.buttonHandleClick=function(e){e.preventDefault(),n.props.environment.document.activeElement===n.props.environment.document.body&&e.target.focus(),n.internalSetTimeout((function(){return n.toggleMenu({type:13})}))},n.buttonHandleBlur=function(e){var t=e.target;n.internalSetTimeout((function(){n.isMouseDown||null!=n.props.environment.document.activeElement&&n.props.environment.document.activeElement.id===n.inputId||n.props.environment.document.activeElement===t||n.reset({type:14})}))},n.getLabelProps=function(e){return R({htmlFor:n.inputId,id:n.labelId},e)},n.getInputProps=function(e){var t,r=void 0===e?{}:e,o=r.onKeyDown,i=r.onBlur,a=r.onChange,s=r.onInput,u=(r.onChangeText,j(r,["onKeyDown","onBlur","onChange","onInput","onChangeText"])),l={},c=n.getState(),p=c.inputValue,d=c.isOpen,f=c.highlightedIndex;return u.disabled||((t={}).onChange=$(a,s,n.inputHandleChange),t.onKeyDown=$(o,n.inputHandleKeyDown),t.onBlur=$(i,n.inputHandleBlur),l=t),R({"aria-autocomplete":"list","aria-activedescendant":d&&"number"==typeof f&&f>=0?n.getItemId(f):null,"aria-controls":d?n.menuId:null,"aria-labelledby":n.labelId,autoComplete:"off",value:p,id:n.inputId},l,{},u)},n.inputHandleKeyDown=function(e){var t=ee(e);t&&n.inputKeyDownHandlers[t]&&n.inputKeyDownHandlers[t].call(N(n),e)},n.inputHandleChange=function(e){n.internalSetState({type:11,isOpen:!0,inputValue:e.target.value,highlightedIndex:n.props.defaultHighlightedIndex})},n.inputHandleBlur=function(){n.internalSetTimeout((function(){var e=n.props.environment.document&&!!n.props.environment.document.activeElement&&!!n.props.environment.document.activeElement.dataset&&n.props.environment.document.activeElement.dataset.toggle&&n._rootNode&&n._rootNode.contains(n.props.environment.document.activeElement);n.isMouseDown||e||n.reset({type:10})}))},n.menuRef=function(e){n._menuNode=e},n.getMenuProps=function(e,t){var r,o=void 0===e?{}:e,i=o.refKey,a=void 0===i?"ref":i,s=o.ref,u=j(o,["refKey","ref"]),l=(void 0===t?{}:t).suppressRefError,c=void 0!==l&&l;return n.getMenuProps.called=!0,n.getMenuProps.refKey=a,n.getMenuProps.suppressRefError=c,R(((r={})[a]=X(s,n.menuRef),r.role="listbox",r["aria-labelledby"]=u&&u["aria-label"]?null:n.labelId,r.id=n.menuId,r),u)},n.getItemProps=function(e){var t,r=void 0===e?{}:e,o=r.onMouseMove,i=r.onMouseDown,a=r.onClick,s=(r.onPress,r.index),u=r.item,l=void 0===u?void 0:u,c=j(r,["onMouseMove","onMouseDown","onClick","onPress","index","item"]);void 0===s?(n.items.push(l),s=n.items.indexOf(l)):n.items[s]=l;var p=a,d=((t={onMouseMove:$(o,(function(){s!==n.getState().highlightedIndex&&(n.setHighlightedIndex(s,{type:2}),n.avoidScrolling=!0,n.internalSetTimeout((function(){return n.avoidScrolling=!1}),250))})),onMouseDown:$(i,(function(e){e.preventDefault()}))}).onClick=$(p,(function(){n.selectItemAtIndex(s,{type:9})})),t),f=c.disabled?{onMouseDown:d.onMouseDown}:d;return R({id:n.getItemId(s),role:"option","aria-selected":n.getState().highlightedIndex===s},f,{},c)},n.clearItems=function(){n.items=[]},n.reset=function(e,t){void 0===e&&(e={}),e=Z(e),n.internalSetState((function(t){var r=t.selectedItem;return R({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,inputValue:n.props.itemToString(r)},e)}),t)},n.toggleMenu=function(e,t){void 0===e&&(e={}),e=Z(e),n.internalSetState((function(t){var r=t.isOpen;return R({isOpen:!r},r&&{highlightedIndex:n.props.defaultHighlightedIndex},{},e)}),(function(){var r=n.getState(),o=r.isOpen,i=r.highlightedIndex;o&&n.getItemCount()>0&&"number"==typeof i&&n.setHighlightedIndex(i,e),B(t)()}))},n.openMenu=function(e){n.internalSetState({isOpen:!0},e)},n.closeMenu=function(e){n.internalSetState({isOpen:!1},e)},n.updateStatus=Y((function(){var e=n.getState(),t=n.items[e.highlightedIndex],r=n.getItemCount(),o=n.props.getA11yStatusMessage(R({itemToString:n.props.itemToString,previousResultCount:n.previousResultCount,resultCount:r,highlightedItem:t},e));n.previousResultCount=r,function(e,t){var n=re(t);e&&(n.textContent=e,ne())}(o,n.props.environment.document)}),200);var r=n.props,o=r.defaultHighlightedIndex,i=r.initialHighlightedIndex,a=void 0===i?o:i,s=r.defaultIsOpen,u=r.initialIsOpen,l=void 0===u?s:u,c=r.initialInputValue,p=void 0===c?"":c,d=r.initialSelectedItem,f=void 0===d?null:d,h=n.getState({highlightedIndex:a,isOpen:l,inputValue:p,selectedItem:f});return null!=h.selectedItem&&void 0===n.props.initialInputValue&&(h.inputValue=n.props.itemToString(h.selectedItem)),n.state=h,n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var o=r.prototype;return o.internalClearTimeouts=function(){this.timeoutIds.forEach((function(e){clearTimeout(e)})),this.timeoutIds=[]},o.getState=function(e){var t=this;return void 0===e&&(e=this.state),Object.keys(e).reduce((function(n,r){return n[r]=t.isControlledProp(r)?t.props[r]:e[r],n}),{})},o.isControlledProp=function(e){return void 0!==this.props[e]},o.getItemCount=function(){var e=this.items.length;return null!=this.itemCount?e=this.itemCount:void 0!==this.props.itemCount&&(e=this.props.itemCount),e},o.getItemNodeFromIndex=function(e){return this.props.environment.document.getElementById(this.getItemId(e))},o.scrollHighlightedItemIntoView=function(){var e=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(e,this._menuNode)},o.moveHighlightedIndex=function(e,t){var n=this.getItemCount();if(n>0){var r=te(e,this.getState().highlightedIndex,n);this.setHighlightedIndex(r,t)}},o.highlightFirstOrLastIndex=function(e,t,n){var r=this.getItemCount()-1;r<0||!this.getState().isOpen||(e.preventDefault(),this.setHighlightedIndex(t?0:r,n))},o.getStateAndHelpers=function(){var e=this.getState(),t=e.highlightedIndex,n=e.inputValue,r=e.selectedItem,o=e.isOpen,i=this.props.itemToString,a=this.id,s=this.getRootProps,u=this.getToggleButtonProps,l=this.getLabelProps,c=this.getMenuProps,p=this.getInputProps,d=this.getItemProps,f=this.openMenu,h=this.closeMenu,m=this.toggleMenu,v=this.selectItem,g=this.selectItemAtIndex,y=this.selectHighlightedItem,b=this.setHighlightedIndex,I=this.clearSelection,w=this.clearItems;return{getRootProps:s,getToggleButtonProps:u,getLabelProps:l,getMenuProps:c,getInputProps:p,getItemProps:d,reset:this.reset,openMenu:f,closeMenu:h,toggleMenu:m,selectItem:v,selectItemAtIndex:g,selectHighlightedItem:y,setHighlightedIndex:b,clearSelection:I,clearItems:w,setItemCount:this.setItemCount,unsetItemCount:this.unsetItemCount,setState:this.internalSetState,itemToString:i,id:a,highlightedIndex:t,inputValue:n,isOpen:o,selectedItem:r}},o.componentDidMount=function(){var e=this,t=function(t,n){void 0===n&&(n=!0);var r=e.props.environment.document;return[e._rootNode,e._menuNode].some((function(e){return e&&(q(e,t)||n&&q(e,r.activeElement))}))},n=function(){e.isMouseDown=!0},r=function(n){e.isMouseDown=!1,!t(n.target)&&e.getState().isOpen&&e.reset({type:1},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},o=function(){e.isTouchMove=!1},i=function(){e.isTouchMove=!0},a=function(n){var r=t(n.target,!1);e.isTouchMove||r||!e.getState().isOpen||e.reset({type:16},(function(){return e.props.onOuterClick(e.getStateAndHelpers())}))},s=this.props.environment;s.addEventListener("mousedown",n),s.addEventListener("mouseup",r),s.addEventListener("touchstart",o),s.addEventListener("touchmove",i),s.addEventListener("touchend",a),this.cleanup=function(){e.internalClearTimeouts(),e.updateStatus.cancel(),s.removeEventListener("mousedown",n),s.removeEventListener("mouseup",r),s.removeEventListener("touchstart",o),s.removeEventListener("touchmove",i),s.removeEventListener("touchend",a)}},o.shouldScroll=function(e,t){var n=(void 0===this.props.highlightedIndex?this.getState():this.props).highlightedIndex,r=(void 0===t.highlightedIndex?e:t).highlightedIndex;return n&&this.getState().isOpen&&!e.isOpen||n!==r},o.componentDidUpdate=function(e,t){this.isControlledProp("selectedItem")&&this.props.selectedItemChanged(e.selectedItem,this.props.selectedItem)&&this.internalSetState({type:15,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(t,e)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},o.componentWillUnmount=function(){this.cleanup()},o.render=function(){var e=J(this.props.children,W);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var t=J(e(this.getStateAndHelpers()));return t?this.getRootProps.called||this.props.suppressRefError?t:function(e){return"string"==typeof e.type}(t)?(0,s.cloneElement)(t,this.getRootProps(function(e){return e.props}(t))):void 0:null},r}(s.Component);return e.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:G,itemToString:function(e){return null==e?"":String(e)},onStateChange:W,onInputValueChange:W,onUserAction:W,onChange:W,onSelect:W,onOuterClick:W,selectedItemChanged:function(e,t){return e!==t},environment:"undefined"==typeof window?{}:window,stateReducer:function(e,t){return t},suppressRefError:!1,scrollIntoView:z},e.stateChangeTypes=oe,e}();c().array.isRequired,c().func,c().func,c().func,c().bool,c().number,c().number,c().number,c().bool,c().bool,c().bool,c().any,c().any,c().any,c().string,c().string,c().string,c().func,c().string,c().func,c().func,c().func,c().func,c().func,c().shape({addEventListener:c().func,removeEventListener:c().func,document:c().shape({getElementById:c().func,activeElement:c().any,body:c().any})}),"undefined"==typeof window||window;const ae=ie;function se(){return se=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},se.apply(this,arguments)}function ue(e,t,n,r,o,i,a){try{var s=e[i](a),u=s.value}catch(e){return void n(e)}s.done?t(u):Promise.resolve(u).then(r,o)}function le(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return ce(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ce(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ce(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const pe=function(t){var n=t.listId,r=t.provider,i=t.apiKey,s=t.onChange,u=le((0,e.useState)([]),2),l=u[0],c=u[1],p=le((0,e.useState)(!1),2),d=p[0],f=p[1],h=le((0,e.useState)({controller:null}),2),m=h[0].controller,v=h[1],g=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return m&&m.abort(),f(!0),"AbortController"in window&&(m=new AbortController,v({controller:m})),(t=new FormData).append("api_key",i),t.append("provider",r),t.append("action","blocksy_ext_newsletter_subscribe_maybe_get_lists"),e.prev=7,e.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",signal:m.signal,body:t});case 10:if(200!==(n=e.sent).status){e.next=20;break}return e.next=14,n.json();case 14:if(!(o=e.sent).success){e.next=20;break}if("api_key_invalid"===o.data.result){e.next=20;break}return f(!1),c(o.data.result),e.abrupt("return");case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(7);case 24:c([]),f(!1);case 26:case"end":return e.stop()}}),e,null,[[7,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){ue(i,r,o,a,s,"next",e)}function s(e){ue(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.useEffect)((function(){i?g():c([])}),[r,i]),0===l.length?(0,e.createElement)("div",{className:"ct-select-input"},(0,e.createElement)("input",{disabled:!0,placeholder:d?(0,o.__)("Loading","blocksy-companion"):(0,o.__)("Invalid API Key...","blocksy-companion")})):(0,e.createElement)(ae,{selectedItem:n||"",onChange:function(e){return s(e)},itemToString:function(e){return e?(l.find((function(t){return t.id===e}))||{}).name:""}},(function(t){var n=t.getInputProps,r=t.getItemProps,i=(t.getLabelProps,t.getMenuProps),s=t.isOpen,u=(t.inputValue,t.highlightedIndex),c=t.selectedItem,p=t.openMenu;return(0,e.createElement)("div",{className:"ct-select-input"},(0,e.createElement)("input",se({},n({onFocus:function(){return p()},onClick:function(){return p()}}),{placeholder:(0,o.__)("Select list...","blocksy-companion"),readOnly:!0})),s&&(0,e.createElement)("div",i({className:"ct-select-dropdown"}),l.map((function(t,n){return(0,e.createElement)("div",r({key:t.id,index:n,item:t.id,className:a()("ct-select-dropdown-item",{active:u===n,selected:c===t.id})}),t.name)}))))}))};function de(e,t,n,r,o,i,a){try{var s=e[i](a),u=s.value}catch(e){return void n(e)}s.done?t(u):Promise.resolve(u).then(r,o)}function fe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return he(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?he(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function he(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const me=function(t){var n=t.extension,r=t.isEditingCredentials,i=t.setIsEditingCredentials,s=t.onCredentialsValidated,u=fe((0,e.useState)(n.data.provider),2),l=u[0],c=u[1],p=fe((0,e.useState)(n.data.api_key),2),d=p[0],f=p[1],h=fe((0,e.useState)(n.data.list_id),2),m=h[0],v=h[1],g=fe((0,e.useState)(!1),2),y=g[0],b=g[1],I=fe((0,e.useState)(!1),2),w=I[0],S=I[1],E=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(t=new FormData).append("provider",l),t.append("api_key",d),t.append("list_id",m),t.append("action","blocksy_ext_newsletter_subscribe_maybe_save_credentials"),b(!0),e.prev=6,e.next=9,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 9:if(200!==(n=e.sent).status){e.next=15;break}return e.next=13,n.json();case 13:(r=e.sent).success&&"api_key_invalid"!==r.data.result&&(s(),S(!1));case 15:S(!0),e.next=21;break;case 18:e.prev=18,e.t0=e.catch(6),S(!0);case 21:return e.next=23,new Promise((function(e){return setTimeout((function(){return e()}),1e3)}));case 23:b(!1);case 24:case"end":return e.stop()}}),e,null,[[6,18]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){de(i,r,o,a,s,"next",e)}function s(e){de(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.createElement)(M,{items:r,onDismiss:function(){return i(!1)},className:"ct-mailchimp-modal",render:function(){return(0,e.createElement)("div",{className:a()("ct-modal-content",{"ct-key-invalid":w})},(0,e.createElement)("h2",null,(0,o.__)("API Credentials","blocksy-companion")),(0,e.createElement)("p",{dangerouslySetInnerHTML:{__html:(0,o.__)("Enter your Newsletter provider API credentials in the form below.","blocksy-companion")}}),(0,e.createElement)("div",{className:"ct-newsletter-select-provider"},(0,e.createElement)(e.Fragment,null,(0,e.createElement)("h4",null,(0,o.__)("Select Provider","blocksy-companion")),(0,e.createElement)(A.Select,{onChange:function(e){c(e)},option:{placeholder:(0,o.__)("Pick Mailing Service","blocksy-companion"),choices:[{key:"mailchimp",value:"Mailchimp"},{key:"mailerlite",value:"Mailerlite"}]},value:l})),!ctDashboardLocalizations.plugin_data.is_pro&&"mailchimp"!==l&&(0,e.createElement)("p",{dangerouslySetInnerHTML:{__html:(0,o.sprintf)((0,o.__)("This option is available only in Blocksy premium %sversion%s.","blocksy-companion"),'<a target="_blank" href="https://creativethemes.com/blocksy/pricing/">',"</a>")}}),"mailchimp"===l&&(0,e.createElement)("p",{dangerouslySetInnerHTML:{__html:(0,o.sprintf)((0,o.__)("More info on how to generate an API key for Mailchimp can be found %shere%s.","blocksy-companion"),'<a target="_blank" href="https://mailchimp.com/help/about-api-keys/">',"</a>")}}),ctDashboardLocalizations.plugin_data.is_pro&&"mailerlite"===l&&(0,e.createElement)("p",{dangerouslySetInnerHTML:{__html:(0,o.sprintf)((0,o.__)("More info on how to generate an API key for Mailerlite can be found %shere%s. Please note that we require at least one group to be created in your account for the integration to work. More info on how to create a group %shere%s.","blocksy-companion"),'<a target="_blank" href="https://www.mailerlite.com/help/where-to-find-the-mailerlite-api-key-and-documentation">',"</a>",'<a target="_blank" href="https://www.mailerlite.com/help/how-to-create-and-use-groups">',"</a>")}})),("mailchimp"===l||ctDashboardLocalizations.plugin_data.is_pro)&&(0,e.createElement)("div",{className:"mailchimp-credentials"},(0,e.createElement)("section",null,(0,e.createElement)("label",null,(0,o.__)("API Key","blocksy-companion")),(0,e.createElement)("div",{className:"ct-option-input"},(0,e.createElement)("input",{type:"text",onChange:function(e){var t=e.target.value;return f(t)},value:d||""}))),(0,e.createElement)("section",null,(0,e.createElement)("label",null,(0,o.__)("List ID","blocksy-companion")),(0,e.createElement)(pe,{listId:m,onChange:function(e){return v(e)},provider:l,apiKey:d})),(0,e.createElement)("section",null,(0,e.createElement)("label",null," "),(0,e.createElement)("button",{className:"ct-button","data-button":"blue",disabled:!d||!m||y,onClick:function(){return E()}},y?(0,o.__)("Loading...","blocksy-companion"):n.__object?(0,o.__)("Save Settings","blocksy-companion"):(0,o.__)("Activate","blocksy-companion")))))}})};function ve(e,t,n,r,o,i,a){try{var s=e[i](a),u=s.value}catch(e){return void n(e)}s.done?t(u):Promise.resolve(u).then(r,o)}function ge(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){ve(i,r,o,a,s,"next",e)}function s(e){ve(i,r,o,a,s,"throw",e)}a(void 0)}))}}function ye(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return be(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?be(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function be(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ie(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return we(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?we(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function we(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const Se=function(t){var n=t.extension,r=t.onExtsSync,i=Ie(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},r=ye((0,e.useState)(!1),2),i=r[0],a=r[1],s=ye((0,e.useState)(!1),2),u=s[0],l=s[1],c=function(){var e=ge(regeneratorRuntime.mark((function e(){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(r=new FormData).append("ext",t.name),r.append("action",t.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),a(!0),e.prev=4,e.next=7,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 7:n(),e.next=12;break;case 10:e.prev=10,e.t0=e.catch(4);case 12:a(!1);case 13:case"end":return e.stop()}}),e,null,[[4,10]])})));return function(){return e.apply(this,arguments)}}();return[i,function(){t.__object||t.data.api_key?c():l(!0)},(0,e.createElement)(e.Fragment,null,t.__object&&t.data.api_key&&(0,e.createElement)("button",{className:"ct-button ct-config-btn","data-button":"white",title:"Edit Credentials",onClick:function(){return l(!0)}},(0,o.__)("Configure","blocksy-companion")),(0,e.createElement)(me,{isEditingCredentials:u,setIsEditingCredentials:l,extension:t,onCredentialsValidated:function(){t.__object||c(),l(!1)}}))]}(n,(function(){r()})),3),s=i[0],u=i[1],l=i[2],c=Ie(H(n),2),p=c[0],d=c[1];return(0,e.createElement)("li",{className:a()({active:!!n.__object})},(0,e.createElement)("h4",{className:"ct-extension-title"},n.config.name,s&&(0,e.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},(0,e.createElement)("g",{transform:"translate(50,50)"},(0,e.createElement)("g",{transform:"scale(1)"},(0,e.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),(0,e.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},(0,e.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),n.config.description&&(0,e.createElement)("div",{className:"ct-extension-description"},n.config.description),(0,e.createElement)("div",{className:"ct-extension-actions"},(0,e.createElement)("button",{className:a()(n.__object?"ct-button":"ct-button-primary"),"data-button":"white",disabled:s,onClick:function(){return u()}},n.__object?(0,o.__)("Deactivate","blocksy-companion"):(0,o.__)("Activate","blocksy-companion")),l,n.readme&&(0,e.createElement)("button",{onClick:function(){return p()},"data-button":"white",className:"ct-minimal-button ct-instruction"},(0,e.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},(0,e.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"})))),d)};r().on("ct:extensions:card",(function(e){var t=e.CustomComponent;"newsletter-subscribe"===e.extension.name&&(t.extension=Se)}))})()})();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
framework/extensions/newsletter-subscribe/dashboard-static/bundle/main.js.LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
Copyright (c) 2017 Jed Watson.
|
3 |
+
Licensed under the MIT License (MIT), see
|
4 |
+
http://jedwatson.github.io/classnames
|
5 |
+
*/
|
6 |
+
|
7 |
+
/** @license React v16.13.1
|
8 |
+
* react-is.production.min.js
|
9 |
+
*
|
10 |
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
11 |
+
*
|
12 |
+
* This source code is licensed under the MIT license found in the
|
13 |
+
* LICENSE file in the root directory of this source tree.
|
14 |
+
*/
|
framework/extensions/newsletter-subscribe/extension.php
CHANGED
@@ -7,12 +7,6 @@ require_once dirname(__FILE__) . '/includes/BlocksyMailerliteManager.php';
|
|
7 |
|
8 |
class BlocksyExtensionNewsletterSubscribe {
|
9 |
public function __construct() {
|
10 |
-
add_action('blocksy:global-dynamic-css:enqueue', function ($args) {
|
11 |
-
blocksy_theme_get_dynamic_styles(array_merge([
|
12 |
-
'path' => dirname(__FILE__) . '/global.php',
|
13 |
-
'chunk' => 'global'
|
14 |
-
], $args));
|
15 |
-
}, 10, 3);
|
16 |
|
17 |
add_filter('blocksy-options-scripts-dependencies', function ($d) {
|
18 |
$d[] = 'blocksy-ext-newsletter-subscribe-admin-scripts';
|
@@ -194,6 +188,27 @@ class BlocksyExtensionNewsletterSubscribe {
|
|
194 |
|
195 |
return blc_ext_newsletter_subscribe_output_form($args);
|
196 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
}
|
198 |
|
199 |
public function newsletter_subscribe_process_mailerlite_subscribe() {
|
7 |
|
8 |
class BlocksyExtensionNewsletterSubscribe {
|
9 |
public function __construct() {
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
add_filter('blocksy-options-scripts-dependencies', function ($d) {
|
12 |
$d[] = 'blocksy-ext-newsletter-subscribe-admin-scripts';
|
188 |
|
189 |
return blc_ext_newsletter_subscribe_output_form($args);
|
190 |
});
|
191 |
+
|
192 |
+
add_action(
|
193 |
+
'blocksy:global-dynamic-css:enqueue',
|
194 |
+
'BlocksyExtensionNewsletterSubscribe::add_global_styles',
|
195 |
+
10, 3
|
196 |
+
);
|
197 |
+
}
|
198 |
+
|
199 |
+
static public function add_global_styles($args) {
|
200 |
+
blocksy_theme_get_dynamic_styles(array_merge([
|
201 |
+
'path' => dirname(__FILE__) . '/global.php',
|
202 |
+
'chunk' => 'global',
|
203 |
+
], $args));
|
204 |
+
}
|
205 |
+
|
206 |
+
static public function onDeactivation() {
|
207 |
+
remove_action(
|
208 |
+
'blocksy:global-dynamic-css:enqueue',
|
209 |
+
'BlocksyExtensionNewsletterSubscribe::add_global_styles',
|
210 |
+
10, 3
|
211 |
+
);
|
212 |
}
|
213 |
|
214 |
public function newsletter_subscribe_process_mailerlite_subscribe() {
|
framework/extensions/newsletter-subscribe/static/bundle/main.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";(0,window.ctFrontend.registerDynamicChunk)("blocksy_ext_newsletter_subscribe",{mount:function(e,s){var r=s.event.target;"mailchimp"===r.dataset.provider&&function(e){if(e.querySelector('[type="email"]').value.trim()){if(document.getElementById("js-validate-robot")&&""!==document.getElementById("js-validate-robot").value)return!1;for(var s=e.action.replace("subscribe","subscribe/post-json"),r="",t="mailchimpCallback",c=e.querySelectorAll("input"),i=0;i<c.length;i++)r+="&"+c[i].name+"="+encodeURIComponent(c[i].value);r+="&c=".concat(t);var a=document.createElement("script");a.src=s+r,document.body.appendChild(a),e.classList.remove("subscribe-error","subscribe-success"),e.classList.add("subscribe-loading"),window[t]=function(s){delete window[t],document.body.removeChild(a),e.classList.remove("subscribe-loading"),s&&(e.classList.add("error"===s.result?"subscribe-error":"subscribe-success"),e.querySelector(".ct-newsletter-subscribe-message").innerHTML=s.msg.replace("0 - ",""))}}}(r),r.dataset.provider.indexOf("mailerlite")>-1&&function(e){var s=new FormData(e);s.append("action","blc_newsletter_subscribe_process_mailerlite_subscribe"),s.append("GROUP",e.dataset.provider.split(":")[1]),e.classList.remove("subscribe-error","subscribe-success"),e.classList.add("subscribe-loading"),fetch(ct_localizations.ajax_url,{method:"POST",body:s}).then((function(e){return e.json()})).then((function(s){s.success;var r=s.data;e.classList.remove("subscribe-loading"),e.classList.add("no"===r.result?"subscribe-error":"subscribe-success"),e.querySelector(".ct-newsletter-subscribe-message").innerHTML=r.message}))}(r)}})})();
|
framework/extensions/newsletter-subscribe/static/bundle/main.min.css
CHANGED
@@ -1,8 +1,111 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
.ct-widget-inner
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
.ct-widget-inner {
|
9 |
+
border-radius: 3px;
|
10 |
+
}
|
11 |
+
.ct-widget-inner[data-alignment=center] {
|
12 |
+
text-align: center;
|
13 |
+
}
|
14 |
+
.ct-widget-inner[data-alignment=right] {
|
15 |
+
text-align: right;
|
16 |
+
}
|
17 |
+
|
18 |
+
.ct-newsletter-subscribe-widget-form > *:not(:first-child) {
|
19 |
+
margin-top: 10px;
|
20 |
+
}
|
21 |
+
|
22 |
+
[class*=ct-newsletter-subscribe] form [data-fields] {
|
23 |
+
display: grid;
|
24 |
+
grid-column-gap: 15px;
|
25 |
+
grid-row-gap: 15px;
|
26 |
+
}
|
27 |
+
@media (min-width: 690px) {
|
28 |
+
[class*=ct-newsletter-subscribe] form [data-fields="1"] {
|
29 |
+
grid-template-columns: 65% 1fr;
|
30 |
+
}
|
31 |
+
}
|
32 |
+
@media (min-width: 690px) {
|
33 |
+
[class*=ct-newsletter-subscribe] form [data-fields="2"] {
|
34 |
+
grid-template-columns: 32.5% 32.5% 1fr;
|
35 |
+
}
|
36 |
+
}
|
37 |
+
[class*=ct-newsletter-subscribe] form button {
|
38 |
+
width: 100%;
|
39 |
+
--padding: 0 15px;
|
40 |
+
--buttonMinHeight: var(--form-field-height, 40px);
|
41 |
+
}
|
42 |
+
[class*=ct-newsletter-subscribe] form .ct-newsletter-subscribe-description:not(:empty) {
|
43 |
+
margin-bottom: 1.5em;
|
44 |
+
}
|
45 |
+
[class*=ct-newsletter-subscribe] form .ct-newsletter-subscribe-message,
|
46 |
+
[class*=ct-newsletter-subscribe] form .gdpr-confirm-policy {
|
47 |
+
margin-top: 15px;
|
48 |
+
margin-bottom: 0;
|
49 |
+
}
|
50 |
+
|
51 |
+
.ct-newsletter-subscribe-block,
|
52 |
+
.ct-newsletter-subscribe-widget [data-container=boxed] {
|
53 |
+
padding: var(--padding, 30px);
|
54 |
+
box-shadow: var(--box-shadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
55 |
+
}
|
56 |
+
|
57 |
+
.ct-newsletter-subscribe-block {
|
58 |
+
margin-top: 60px;
|
59 |
+
text-align: center;
|
60 |
+
color: var(--color);
|
61 |
+
border: var(--newsletter-container-border, none);
|
62 |
+
border-radius: var(--border-radius, 0px);
|
63 |
+
--linkInitialColor: var(--color);
|
64 |
+
}
|
65 |
+
.ct-newsletter-subscribe-block > *:first-child {
|
66 |
+
margin-top: 20px;
|
67 |
+
}
|
68 |
+
.ct-newsletter-subscribe-block > *:last-child {
|
69 |
+
margin-bottom: 20px;
|
70 |
+
}
|
71 |
+
.ct-newsletter-subscribe-block > h3 {
|
72 |
+
--fontSize: 25px;
|
73 |
+
}
|
74 |
+
.ct-newsletter-subscribe-block form {
|
75 |
+
max-width: 550px;
|
76 |
+
margin: 0 auto;
|
77 |
+
}
|
78 |
+
@media (min-width: 690px) {
|
79 |
+
.ct-newsletter-subscribe-block form {
|
80 |
+
width: 85%;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
form[class*=ct-newsletter-subscribe] .button {
|
85 |
+
--buttonFontWeight: 600;
|
86 |
+
}
|
87 |
+
|
88 |
+
.ct-newsletter-subscribe-message {
|
89 |
+
display: none;
|
90 |
+
font-size: 16px;
|
91 |
+
}
|
92 |
+
.ct-newsletter-subscribe-message a {
|
93 |
+
text-decoration: underline;
|
94 |
+
}
|
95 |
+
|
96 |
+
.subscribe-error .ct-newsletter-subscribe-message {
|
97 |
+
display: block;
|
98 |
+
font-size: 14px;
|
99 |
+
color: #e42b2b;
|
100 |
+
}
|
101 |
+
|
102 |
+
.subscribe-success button.button,
|
103 |
+
.subscribe-success input[type=text],
|
104 |
+
.subscribe-success input[type=email],
|
105 |
+
.subscribe-success .gdpr-confirm-policy,
|
106 |
+
.subscribe-success .ct-newsletter-subscribe-description {
|
107 |
+
display: none;
|
108 |
+
}
|
109 |
+
.subscribe-success .ct-newsletter-subscribe-message {
|
110 |
+
display: block;
|
111 |
+
}
|
framework/extensions/product-reviews/extension.php
CHANGED
@@ -164,12 +164,6 @@ class BlocksyExtensionProductReviews {
|
|
164 |
}
|
165 |
);
|
166 |
|
167 |
-
add_action('blocksy:global-dynamic-css:enqueue', function ($args) {
|
168 |
-
blocksy_theme_get_dynamic_styles(array_merge([
|
169 |
-
'path' => dirname( __FILE__ ) . '/global.php',
|
170 |
-
'chunk' => 'global'
|
171 |
-
], $args));
|
172 |
-
}, 10, 3);
|
173 |
|
174 |
add_action('init', [$this, 'declare_cpt']);
|
175 |
|
@@ -420,6 +414,27 @@ class BlocksyExtensionProductReviews {
|
|
420 |
|
421 |
return $options;
|
422 |
}, 10, 2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
}
|
424 |
|
425 |
public function init_metabox() {
|
@@ -607,4 +622,5 @@ class BlocksyExtensionProductReviews {
|
|
607 |
public function set_settings($value) {
|
608 |
update_option('blocksy_ext_product_reviews_settings', $value);
|
609 |
}
|
|
|
610 |
}
|
164 |
}
|
165 |
);
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
|
168 |
add_action('init', [$this, 'declare_cpt']);
|
169 |
|
414 |
|
415 |
return $options;
|
416 |
}, 10, 2);
|
417 |
+
|
418 |
+
add_action(
|
419 |
+
'blocksy:global-dynamic-css:enqueue',
|
420 |
+
'BlocksyExtensionProductReviews::add_global_styles',
|
421 |
+
10, 3
|
422 |
+
);
|
423 |
+
}
|
424 |
+
|
425 |
+
static public function add_global_styles($args) {
|
426 |
+
blocksy_theme_get_dynamic_styles(array_merge([
|
427 |
+
'path' => dirname(__FILE__) . '/global.php',
|
428 |
+
'chunk' => 'global',
|
429 |
+
], $args));
|
430 |
+
}
|
431 |
+
|
432 |
+
static public function onDeactivation() {
|
433 |
+
remove_action(
|
434 |
+
'blocksy:global-dynamic-css:enqueue',
|
435 |
+
'BlocksyExtensionProductReviews::add_global_styles',
|
436 |
+
10, 3
|
437 |
+
);
|
438 |
}
|
439 |
|
440 |
public function init_metabox() {
|
622 |
public function set_settings($value) {
|
623 |
update_option('blocksy_ext_product_reviews_settings', $value);
|
624 |
}
|
625 |
+
|
626 |
}
|
framework/extensions/product-reviews/static/bundle/dashboard.js
CHANGED
@@ -1,6 +1,2 @@
|
|
1 |
-
|
2 |
-
/*!
|
3 |
-
Copyright (c) 2017 Jed Watson.
|
4 |
-
Licensed under the MIT License (MIT), see
|
5 |
-
http://jedwatson.github.io/classnames
|
6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var a=typeof r;if("string"===a||"number"===a)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"===a)for(var c in r)n.call(r,c)&&r[c]&&e.push(c)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.blocksyOptions},function(e,t){e.exports=window.ctEvents},function(e,t){e.exports=window.React},function(e,t,n){var r,o,a=n(10),i=n(11),c=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function u(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,s=i({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),l={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},f={activate:function(e){if(l.active)return;j(),l.active=!0,l.paused=!1,l.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:s.onActivate;t&&t();return d(),f},deactivate:p,pause:function(){if(l.paused||!l.active)return;l.paused=!0,b()},unpause:function(){if(!l.paused||!l.active)return;l.paused=!1,j(),d()}};return f;function p(e){if(l.active){clearTimeout(r),b(),l.active=!1,l.paused=!1,c.deactivateTrap(f);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:s.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:s.returnFocusOnDeactivate)&&u((function(){var e;w((e=l.nodeFocusedBeforeActivation,m("setReturnFocus")||e))})),f}}function d(){if(l.active)return c.activateTrap(f),r=u((function(){w(v())})),n.addEventListener("focusin",h,!0),n.addEventListener("mousedown",y,{capture:!0,passive:!1}),n.addEventListener("touchstart",y,{capture:!0,passive:!1}),n.addEventListener("click",O,{capture:!0,passive:!1}),n.addEventListener("keydown",g,{capture:!0,passive:!1}),f}function b(){if(l.active)return n.removeEventListener("focusin",h,!0),n.removeEventListener("mousedown",y,!0),n.removeEventListener("touchstart",y,!0),n.removeEventListener("click",O,!0),n.removeEventListener("keydown",g,!0),f}function m(e){var t=s[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function v(){var e;if(!(e=null!==m("initialFocus")?m("initialFocus"):o.contains(n.activeElement)?n.activeElement:l.firstTabbableNode||m("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function y(e){o.contains(e.target)||(s.clickOutsideDeactivates?p({returnFocus:!a.isFocusable(e.target)}):s.allowOutsideClick&&s.allowOutsideClick(e)||e.preventDefault())}function h(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),w(l.mostRecentlyFocusedNode||v()))}function g(e){if(!1!==s.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void p();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(j(),e.shiftKey&&e.target===l.firstTabbableNode)return e.preventDefault(),void w(l.lastTabbableNode);if(!e.shiftKey&&e.target===l.lastTabbableNode)e.preventDefault(),w(l.firstTabbableNode)}(e)}function O(e){s.clickOutsideDeactivates||o.contains(e.target)||s.allowOutsideClick&&s.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function j(){var e=a(o);l.firstTabbableNode=e[0]||v(),l.lastTabbableNode=e[e.length-1]||v()}function w(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),l.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):w(v()))}}},function(e,t,n){e.exports=n(8)()},function(e,t,n){"use strict";var r=n(9);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){var n=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],r=n.join(","),o="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function a(e,t){t=t||{};var n,a,c,u=[],f=[],p=e.querySelectorAll(r);for(t.includeContainer&&o.call(e,r)&&(p=Array.prototype.slice.apply(p)).unshift(e),n=0;n<p.length;n++)i(a=p[n])&&(0===(c=s(a))?u.push(a):f.push({documentOrder:n,tabIndex:c,node:a}));return f.sort(l).map((function(e){return e.node})).concat(u)}function i(e){return!(!c(e)||function(e){return function(e){return f(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||s(e)<0)}function c(e){return!(e.disabled||function(e){return f(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}a.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==o.call(e,r)&&i(e)},a.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==o.call(e,u)&&c(e)};var u=n.concat("iframe").join(",");function s(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function l(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function f(e){return"INPUT"===e.tagName}e.exports=a},function(e,t){e.exports=function(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var o in r)n.call(r,o)&&(e[o]=r[o])}return e};var n=Object.prototype.hasOwnProperty},function(e,t,n){"use strict";n.r(t);var r=n(0),o=n(1),a=n(2),i=n.n(a),c=n(4),u=n.n(c),s=n(3),l=n(5),f=n.n(l);n(7);function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var b=function(e){e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render;return function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},m=function(e){function t(){var n,r;p(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=r=d(this,e.call.apply(e,[this].concat(a))),v.call(r),d(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,o=this._refs;return{state:e,props:b(t),refs:o,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:b(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:b(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:b(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:b(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(f.a.Component);m.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var v=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}},y=m,h=function(e){var t=e.children,n=e.container,o=void 0===n?document.body:n,a=e.type,i=void 0===a?"reach-portal":a;return Object(r.createElement)(y,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(i),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(e){var n=e.refs.node;return n?Object(r.createPortal)(t,n):null}})};var g=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},O=n(6),j=n.n(O);function w(){return(w=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function E(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var S=function(){},x=function(){},_=function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=j()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})},k=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},C=React.createContext(),A=React.forwardRef((function(e,t){var n=e.container,o=e.isOpen,a=void 0===o||o,i=e.onDismiss,c=void 0===i?S:i,u=e.initialFocusRef,s=e.onClick,l=e.onKeyDown,f=E(e,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return Object(r.createElement)(y,{didMount:x},a?Object(r.createElement)(h,{container:n,"data-reach-dialog-wrapper":!0},Object(r.createElement)(y,{refs:{overlayNode:null,contentNode:null},didMount:function(e){var t=e.refs;_(t,u)},willUnmount:k},(function(e){var n=e.refs;return Object(r.createElement)(C.Provider,{value:function(e){return n.contentNode=e}},Object(r.createElement)("div",w({"data-reach-dialog-overlay":!0,onClick:g(s,(function(e){e.stopPropagation(),c()})),onKeyDown:g(l,(function(e){"Escape"===e.key&&(e.stopPropagation(),c())})),ref:function(e){n.overlayNode=e,t&&t(e)}},f)))}))):null)}));A.propTypes={initialFocusRef:function(){}};var N=function(e){return e.stopPropagation()},P=React.forwardRef((function(e,t){var n=e.onClick,o=(e.onKeyDown,E(e,["onClick","onKeyDown"]));return Object(r.createElement)(C.Consumer,null,(function(e){return Object(r.createElement)("div",w({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:g(n,N),ref:function(n){e(n),t&&t(n)}},o))}))})),D=function(e){return!!e},T=function(e){var t=e.items,n=e.isVisible,o=void 0===n?D:n,a=e.render,c=e.className,u=e.onDismiss;return Object(r.createElement)(s.Transition,{items:t,onStart:function(){return document.body.classList[o(t)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(e){return o(e)&&function(t){return Object(r.createElement)(A,{style:{opacity:t.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return u()}},Object(r.createElement)(P,{className:i()("ct-admin-modal",c),style:{transform:"translate3d(0px, ".concat(t.y,"px, 0px)")}},Object(r.createElement)("button",{className:"close-button",onClick:function(){return u()}},"×"),a(e,t)))}}))};function U(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function I(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){M(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function M(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function R(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return F(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return F(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var L=function(e){var t=e.extsSyncLoading,n=e.extensionData,a=e.onExtsSync,c=R(Object(r.useState)(!1),2),u=c[0],l=c[1],f=R(Object(r.useState)(null),2),p=f[0],d=f[1];return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("button",{className:"ct-button ct-config-btn","data-button":"white",onClick:function(){l(!0),d(n.settings)}},Object(o.__)("Configure","blocksy-companion")),Object(r.createElement)(T,{items:u,onDismiss:function(){return l(!1)},className:"ct-product-reviews-settings-modal",render:function(){return Object(r.createElement)("div",{className:i()("ct-modal-content")},Object(r.createElement)("h2",null,Object(o.__)("Product Reviews Settings","blocksy-companion")),Object(r.createElement)("p",{className:"ct-modal-description"},Object(o.__)("Configure the slugs for single and category pages of the product review custom post type.","blocksy-companion")),Object(r.createElement)("div",{className:"ct-controls-group"},Object(r.createElement)("section",{"data-columns":"medium:2"},Object(r.createElement)(s.OptionsPanel,{onChange:function(e,t){return d((function(n){return I(I({},n),{},M({},e,t))}))},options:{single_slug:{type:"text",value:"",label:Object(o.__)("Single Slug","blocksy-companion")},category_slug:{type:"text",value:"",label:Object(o.__)("Category Slug","blocksy-companion")}},value:p||{},hasRevertButton:!1}))),Object(r.createElement)("div",{className:"ct-modal-actions has-divider"},Object(r.createElement)("button",{className:"button-primary",disabled:t||!p,onClick:function(e){e.preventDefault(),p&&(a({extAction:{type:"persist",settings:p}}),l(!1))}},t?Object(r.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},Object(r.createElement)("g",{transform:"translate(50,50)"},Object(r.createElement)("g",{transform:"scale(1)"},Object(r.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),Object(r.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},Object(r.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"}))))):Object(o.__)("Save","blocksy-companion"))))}}))};function B(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return z(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var q=function(e){var t=B(Object(r.useState)(!1),2),n=t[0],o=t[1];return[function(){return o(!0)},Object(r.createElement)(T,{items:n,onDismiss:function(){return o(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:e.readme}})}})]},K=window.ctDashboardLocalizations.DashboardContext,H=(K.Provider,K.Consumer,K);function W(e,t,n,r,o,a,i){try{var c=e[a](i),u=c.value}catch(e){return void n(e)}c.done?t(u):Promise.resolve(u).then(r,o)}function $(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){W(a,r,o,i,c,"next",e)}function c(e){W(a,r,o,i,c,"throw",e)}i(void 0)}))}}function V(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Y(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var G=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=Object(r.useState)(!1),a=V(n,2),i=a[0],c=a[1],u=Object(r.useState)(!1),s=V(u,2),l=s[0],f=s[1],p=Object(r.useContext)(H),d=(p.Link,p.history),b=ctDashboardLocalizations.plugin_data.is_pro,m=function(){var n=$(regeneratorRuntime.mark((function n(){var r;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(b||!e.config.pro){n.next=3;break}return f(!0),n.abrupt("return");case 3:return(r=new FormData).append("ext",e.name),r.append("action",e.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),c(!0),n.prev=7,n.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 10:e.config.require_refresh&&location.reload(),t(),n.next=16;break;case 14:n.prev=14,n.t0=n.catch(7);case 16:c(!1);case 17:case"end":return n.stop()}}),n,null,[[7,14]])})));return function(){return n.apply(this,arguments)}}();return[i,m,!b&&e.config.pro?Object(r.createElement)(T,{items:l,className:"ct-onboarding-modal",onDismiss:function(){return f(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},Object(r.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),Object(r.createElement)("path",{d:"M33.5 29.6L26 42.7l-4.2-7.3 11.6-6 .1.2zM0 41.7l7.5.6 3.9 6 7.2-12.4-11-7.3L0 41.7z",fill:"#2271b1"}),Object(r.createElement)("path",{d:"M39.5 18.7c0 1.6-2.4 2.8-2.7 4.3-.4 1.5 1 3.8.2 5.1-.8 1.3-3.4 1.2-4.5 2.3-1.1 1.1-1 3.7-2.3 4.5-1.3.8-3.6-.6-5.1-.2-1.5.4-2.7 2.7-4.3 2.7S18 35 16.5 34.7c-1.5-.4-3.8 1-5.1.2s-1.2-3.4-2.3-4.5-3.7-1-4.5-2.3.6-3.6.2-5.1-2.7-2.7-2.7-4.3 2.4-2.8 2.7-4.3c.4-1.5-1-3.8-.2-5.1C5.4 8 8.1 8.1 9.1 7c1.1-1.1 1-3.7 2.3-4.5s3.6.6 5.1.2C18 2.4 19.2 0 20.8 0c1.6 0 2.8 2.4 4.3 2.7 1.5.4 3.8-1 5.1-.2 1.3.8 1.2 3.4 2.3 4.5 1.1 1.1 3.7 1 4.5 2.3s-.6 3.6-.2 5.1c.3 1.5 2.7 2.7 2.7 4.3z",fill:"#599fd9"}),Object(r.createElement)("path",{d:"M23.6 7c-6.4-1.5-12.9 2.5-14.4 8.9-.7 3.1-.2 6.3 1.5 9.1 1.7 2.7 4.3 4.6 7.4 5.4.9.2 1.9.3 2.8.3 2.2 0 4.4-.6 6.3-1.8 2.7-1.7 4.6-4.3 5.4-7.5C34 15 30 8.5 23.6 7zm7 14c-.6 2.6-2.2 4.8-4.5 6.2-2.3 1.4-5 1.8-7.6 1.2-2.6-.6-4.8-2.2-6.2-4.5-1.4-2.3-1.8-5-1.2-7.6.6-2.6 2.2-4.8 4.5-6.2 1.6-1 3.4-1.5 5.2-1.5.8 0 1.5.1 2.3.3 5.4 1.3 8.7 6.7 7.5 12.1zm-8.2-4.5l3.7.5-2.7 2.7.7 3.7-3.4-1.8-3.3 1.8.6-3.7-2.7-2.7 3.8-.5 1.6-3.4 1.7 3.4z",fill:"#fff"})),Object(r.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),Object(r.createElement)("p",null,Object(o.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blocksy-companion")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("a",{onClick:function(e){e.preventDefault(),f(!1),setTimeout((function(){d.navigate("/pro")}),300)},className:"button"},Object(o.__)("Free vs Pro","blocksy")),Object(r.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/",target:"_blank",className:"button button-primary"},Object(o.__)("Upgrade Now","blocksy-companion"))))}}):null]};function J(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Q(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Q(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Q(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var X=function(e){var t=e.extsSyncLoading,n=e.extension,a=e.onExtsSync,c=J(G(n,(function(){return a()})),2),u=c[0],s=c[1],l=J(q(n),2),f=l[0],p=l[1];return Object(r.createElement)("li",{className:i()({active:!!n.__object})},Object(r.createElement)("h4",{className:"ct-extension-title"},n.config.name,u&&Object(r.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},Object(r.createElement)("g",{transform:"translate(50,50)"},Object(r.createElement)("g",{transform:"scale(1)"},Object(r.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),Object(r.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},Object(r.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),n.config.description&&Object(r.createElement)("div",{className:"ct-extension-description"},n.config.description),Object(r.createElement)("div",{className:"ct-extension-actions"},Object(r.createElement)("button",{className:i()(n.__object?"ct-button":"ct-button-primary"),"data-button":"white",disabled:u,onClick:function(){s()}},n.__object?Object(o.__)("Deactivate","blocksy-companion"):Object(o.__)("Activate","blocksy-companion")),n.__object&&Object(r.createElement)(L,{extsSyncLoading:t,extensionData:n.data,onExtsSync:a}),n.readme&&Object(r.createElement)("button",{onClick:function(){return f()},"data-button":"white",className:"ct-minimal-button ct-instruction"},Object(r.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"})))),p)};u.a.on("ct:extensions:card",(function(e){var t=e.CustomComponent;"product-reviews"===e.extension.name&&(t.extension=X)}))}]);
|
1 |
+
/*! For license information please see dashboard.js.LICENSE.txt */
|
2 |
+
(()=>{var e={184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)&&n.length){var i=o.apply(null,n);i&&e.push(i)}else if("object"===a)for(var c in n)r.call(n,c)&&n[c]&&e.push(c)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},172:(e,t,n)=>{var r,o,a=n(760),i=n(529),c=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function s(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,u=i({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),l={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},f={activate:function(e){if(!l.active){E(),l.active=!0,l.paused=!1,l.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:u.onActivate;return t&&t(),d(),f}},deactivate:p,pause:function(){!l.paused&&l.active&&(l.paused=!0,m())},unpause:function(){l.paused&&l.active&&(l.paused=!1,E(),d())}};return f;function p(e){if(l.active){clearTimeout(r),m(),l.active=!1,l.paused=!1,c.deactivateTrap(f);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:u.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:u.returnFocusOnDeactivate)&&s((function(){var e;O((e=l.nodeFocusedBeforeActivation,v("setReturnFocus")||e))})),f}}function d(){if(l.active)return c.activateTrap(f),r=s((function(){O(y())})),n.addEventListener("focusin",b,!0),n.addEventListener("mousedown",h,{capture:!0,passive:!1}),n.addEventListener("touchstart",h,{capture:!0,passive:!1}),n.addEventListener("click",w,{capture:!0,passive:!1}),n.addEventListener("keydown",g,{capture:!0,passive:!1}),f}function m(){if(l.active)return n.removeEventListener("focusin",b,!0),n.removeEventListener("mousedown",h,!0),n.removeEventListener("touchstart",h,!0),n.removeEventListener("click",w,!0),n.removeEventListener("keydown",g,!0),f}function v(e){var t=u[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function y(){var e;if(!(e=null!==v("initialFocus")?v("initialFocus"):o.contains(n.activeElement)?n.activeElement:l.firstTabbableNode||v("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function h(e){o.contains(e.target)||(u.clickOutsideDeactivates?p({returnFocus:!a.isFocusable(e.target)}):u.allowOutsideClick&&u.allowOutsideClick(e)||e.preventDefault())}function b(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),O(l.mostRecentlyFocusedNode||y()))}function g(e){if(!1!==u.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void p();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(E(),e.shiftKey&&e.target===l.firstTabbableNode)return e.preventDefault(),void O(l.lastTabbableNode);e.shiftKey||e.target!==l.lastTabbableNode||(e.preventDefault(),O(l.firstTabbableNode))}(e)}function w(e){u.clickOutsideDeactivates||o.contains(e.target)||u.allowOutsideClick&&u.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function E(){var e=a(o);l.firstTabbableNode=e[0]||y(),l.lastTabbableNode=e[e.length-1]||y()}function O(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),l.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):O(y()))}}},703:(e,t,n)=>{"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},697:(e,t,n)=>{e.exports=n(703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},760:e=>{var t=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],n=t.join(","),r="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var o,i,c,l=[],f=[],p=e.querySelectorAll(n);for(t.includeContainer&&r.call(e,n)&&(p=Array.prototype.slice.apply(p)).unshift(e),o=0;o<p.length;o++)a(i=p[o])&&(0===(c=s(i))?l.push(i):f.push({documentOrder:o,tabIndex:c,node:i}));return f.sort(u).map((function(e){return e.node})).concat(l)}function a(e){return!(!i(e)||function(e){return function(e){return l(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||s(e)<0)}function i(e){return!(e.disabled||function(e){return l(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}o.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,n)&&a(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,c)&&i(e)};var c=t.concat("iframe").join(",");function s(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function u(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function l(e){return"INPUT"===e.tagName}e.exports=o},529:e=>{e.exports=function(){for(var e={},n=0;n<arguments.length;n++){var r=arguments[n];for(var o in r)t.call(r,o)&&(e[o]=r[o])}return e};var t=Object.prototype.hasOwnProperty}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={exports:{}};return e[r](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";const e=window.wp.element,t=window.wp.i18n;var r=n(184),o=n.n(r);const a=window.ctEvents;var i=n.n(a);const c=window.blocksyOptions,s=window.React;var u=n.n(s);function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}n(697);var p=function(e){return e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render,function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},d=function(e){function t(){var n,r;l(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=r=f(this,e.call.apply(e,[this].concat(a))),m.call(r),f(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,o=this._refs;return{state:e,props:p(t),refs:o,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:p(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:p(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:p(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:p(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(u().Component);d.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var m=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}};const v=d,y=function(t){var n=t.children,r=t.container,o=void 0===r?document.body:r,a=t.type,i=void 0===a?"reach-portal":a;return(0,e.createElement)(v,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(i),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(t){var r=t.refs.node;return r?(0,e.createPortal)(n,r):null}})};var h=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},b=n(172),g=n.n(b);function w(){return w=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},w.apply(this,arguments)}function E(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var O=function(){},S=function(){},x=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},_=React.createContext(),k=React.forwardRef((function(t,n){var r=t.container,o=t.isOpen,a=void 0===o||o,i=t.onDismiss,c=void 0===i?O:i,s=t.initialFocusRef,u=t.onClick,l=t.onKeyDown,f=E(t,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return(0,e.createElement)(v,{didMount:S},a?(0,e.createElement)(y,{container:r,"data-reach-dialog-wrapper":!0},(0,e.createElement)(v,{refs:{overlayNode:null,contentNode:null},didMount:function(e){!function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=g()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})}(e.refs,s)},willUnmount:x},(function(t){var r=t.refs;return(0,e.createElement)(_.Provider,{value:function(e){return r.contentNode=e}},(0,e.createElement)("div",w({"data-reach-dialog-overlay":!0,onClick:h(u,(function(e){e.stopPropagation(),c()})),onKeyDown:h(l,(function(e){"Escape"===e.key&&(e.stopPropagation(),c())})),ref:function(e){r.overlayNode=e,n&&n(e)}},f)))}))):null)}));k.propTypes={initialFocusRef:function(){}};var j=function(e){return e.stopPropagation()},C=React.forwardRef((function(t,n){var r=t.onClick,o=(t.onKeyDown,E(t,["onClick","onKeyDown"]));return(0,e.createElement)(_.Consumer,null,(function(t){return(0,e.createElement)("div",w({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:h(r,j),ref:function(e){t(e),n&&n(e)}},o))}))})),A=function(e){return!!e};const N=function(t){var n=t.items,r=t.isVisible,a=void 0===r?A:r,i=t.render,s=t.className,u=t.onDismiss;return(0,e.createElement)(c.Transition,{items:n,onStart:function(){return document.body.classList[a(n)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(t){return a(t)&&function(n){return(0,e.createElement)(k,{style:{opacity:n.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return u()}},(0,e.createElement)(C,{className:o()("ct-admin-modal",s),style:{transform:"translate3d(0px, ".concat(n.y,"px, 0px)")}},(0,e.createElement)("button",{className:"close-button",onClick:function(){return u()}},"×"),i(t,n)))}}))};function P(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function D(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?P(Object(n),!0).forEach((function(t){T(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):P(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function T(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function U(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return I(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?I(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function I(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const R=function(n){var r=n.extsSyncLoading,a=n.extensionData,i=n.onExtsSync,s=U((0,e.useState)(!1),2),u=s[0],l=s[1],f=U((0,e.useState)(null),2),p=f[0],d=f[1];return(0,e.createElement)(e.Fragment,null,(0,e.createElement)("button",{className:"ct-button ct-config-btn","data-button":"white",onClick:function(){l(!0),d(a.settings)}},(0,t.__)("Configure","blocksy-companion")),(0,e.createElement)(N,{items:u,onDismiss:function(){return l(!1)},className:"ct-product-reviews-settings-modal",render:function(){return(0,e.createElement)("div",{className:o()("ct-modal-content")},(0,e.createElement)("h2",null,(0,t.__)("Product Reviews Settings","blocksy-companion")),(0,e.createElement)("p",{className:"ct-modal-description"},(0,t.__)("Configure the slugs for single and category pages of the product review custom post type.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-controls-group"},(0,e.createElement)("section",{"data-columns":"medium:2"},(0,e.createElement)(c.OptionsPanel,{onChange:function(e,t){return d((function(n){return D(D({},n),{},T({},e,t))}))},options:{single_slug:{type:"text",value:"",label:(0,t.__)("Single Slug","blocksy-companion")},category_slug:{type:"text",value:"",label:(0,t.__)("Category Slug","blocksy-companion")}},value:p||{},hasRevertButton:!1}))),(0,e.createElement)("div",{className:"ct-modal-actions has-divider"},(0,e.createElement)("button",{className:"button-primary",disabled:r||!p,onClick:function(e){e.preventDefault(),p&&(i({extAction:{type:"persist",settings:p}}),l(!1))}},r?(0,e.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},(0,e.createElement)("g",{transform:"translate(50,50)"},(0,e.createElement)("g",{transform:"scale(1)"},(0,e.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),(0,e.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},(0,e.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"}))))):(0,t.__)("Save","blocksy-companion"))))}}))};function F(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const M=function(t){var n,r,o=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return F(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?F(e,t):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=o[0],i=o[1];return[function(){return i(!0)},(0,e.createElement)(N,{items:a,onDismiss:function(){return i(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:t.readme}})}})]};var L=window.ctDashboardLocalizations.DashboardContext;L.Provider,L.Consumer;const B=L;function z(e,t,n,r,o,a,i){try{var c=e[a](i),s=c.value}catch(e){return void n(e)}c.done?t(s):Promise.resolve(s).then(r,o)}function q(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){z(a,r,o,i,c,"next",e)}function c(e){z(a,r,o,i,c,"throw",e)}i(void 0)}))}}function K(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?H(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function W(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return $(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?$(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function $(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const V=function(n){var r=n.extsSyncLoading,a=n.extension,i=n.onExtsSync,c=W(function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},o=K((0,e.useState)(!1),2),a=o[0],i=o[1],c=K((0,e.useState)(!1),2),s=c[0],u=c[1],l=(0,e.useContext)(B),f=(l.Link,l.history),p=ctDashboardLocalizations.plugin_data.is_pro,d=function(){var e=q(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(p||!n.config.pro){e.next=3;break}return u(!0),e.abrupt("return");case 3:return(t=new FormData).append("ext",n.name),t.append("action",n.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),i(!0),e.prev=7,e.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 10:n.config.require_refresh&&location.reload(),r(),e.next=16;break;case 14:e.prev=14,e.t0=e.catch(7);case 16:i(!1);case 17:case"end":return e.stop()}}),e,null,[[7,14]])})));return function(){return e.apply(this,arguments)}}();return[a,d,!p&&n.config.pro?(0,e.createElement)(N,{items:s,className:"ct-onboarding-modal",onDismiss:function(){return u(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content"},(0,e.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},(0,e.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),(0,e.createElement)("path",{d:"M33.5 29.6L26 42.7l-4.2-7.3 11.6-6 .1.2zM0 41.7l7.5.6 3.9 6 7.2-12.4-11-7.3L0 41.7z",fill:"#2271b1"}),(0,e.createElement)("path",{d:"M39.5 18.7c0 1.6-2.4 2.8-2.7 4.3-.4 1.5 1 3.8.2 5.1-.8 1.3-3.4 1.2-4.5 2.3-1.1 1.1-1 3.7-2.3 4.5-1.3.8-3.6-.6-5.1-.2-1.5.4-2.7 2.7-4.3 2.7S18 35 16.5 34.7c-1.5-.4-3.8 1-5.1.2s-1.2-3.4-2.3-4.5-3.7-1-4.5-2.3.6-3.6.2-5.1-2.7-2.7-2.7-4.3 2.4-2.8 2.7-4.3c.4-1.5-1-3.8-.2-5.1C5.4 8 8.1 8.1 9.1 7c1.1-1.1 1-3.7 2.3-4.5s3.6.6 5.1.2C18 2.4 19.2 0 20.8 0c1.6 0 2.8 2.4 4.3 2.7 1.5.4 3.8-1 5.1-.2 1.3.8 1.2 3.4 2.3 4.5 1.1 1.1 3.7 1 4.5 2.3s-.6 3.6-.2 5.1c.3 1.5 2.7 2.7 2.7 4.3z",fill:"#599fd9"}),(0,e.createElement)("path",{d:"M23.6 7c-6.4-1.5-12.9 2.5-14.4 8.9-.7 3.1-.2 6.3 1.5 9.1 1.7 2.7 4.3 4.6 7.4 5.4.9.2 1.9.3 2.8.3 2.2 0 4.4-.6 6.3-1.8 2.7-1.7 4.6-4.3 5.4-7.5C34 15 30 8.5 23.6 7zm7 14c-.6 2.6-2.2 4.8-4.5 6.2-2.3 1.4-5 1.8-7.6 1.2-2.6-.6-4.8-2.2-6.2-4.5-1.4-2.3-1.8-5-1.2-7.6.6-2.6 2.2-4.8 4.5-6.2 1.6-1 3.4-1.5 5.2-1.5.8 0 1.5.1 2.3.3 5.4 1.3 8.7 6.7 7.5 12.1zm-8.2-4.5l3.7.5-2.7 2.7.7 3.7-3.4-1.8-3.3 1.8.6-3.7-2.7-2.7 3.8-.5 1.6-3.4 1.7 3.4z",fill:"#fff"})),(0,e.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),(0,e.createElement)("p",null,(0,t.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},(0,e.createElement)("a",{onClick:function(e){e.preventDefault(),u(!1),setTimeout((function(){f.navigate("/pro")}),300)},className:"button"},(0,t.__)("Free vs Pro","blocksy")),(0,e.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/",target:"_blank",className:"button button-primary"},(0,t.__)("Upgrade Now","blocksy-companion"))))}}):null]}(a,(function(){return i()})),2),s=c[0],u=c[1],l=W(M(a),2),f=l[0],p=l[1];return(0,e.createElement)("li",{className:o()({active:!!a.__object})},(0,e.createElement)("h4",{className:"ct-extension-title"},a.config.name,s&&(0,e.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},(0,e.createElement)("g",{transform:"translate(50,50)"},(0,e.createElement)("g",{transform:"scale(1)"},(0,e.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),(0,e.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},(0,e.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),a.config.description&&(0,e.createElement)("div",{className:"ct-extension-description"},a.config.description),(0,e.createElement)("div",{className:"ct-extension-actions"},(0,e.createElement)("button",{className:o()(a.__object?"ct-button":"ct-button-primary"),"data-button":"white",disabled:s,onClick:function(){u()}},a.__object?(0,t.__)("Deactivate","blocksy-companion"):(0,t.__)("Activate","blocksy-companion")),a.__object&&(0,e.createElement)(R,{extsSyncLoading:r,extensionData:a.data,onExtsSync:i}),a.readme&&(0,e.createElement)("button",{onClick:function(){return f()},"data-button":"white",className:"ct-minimal-button ct-instruction"},(0,e.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},(0,e.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"})))),p)};i().on("ct:extensions:card",(function(e){var t=e.CustomComponent;"product-reviews"===e.extension.name&&(t.extension=V)}))})()})();
|
|
|
|
|
|
|
|
framework/extensions/product-reviews/static/bundle/dashboard.js.LICENSE.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
Copyright (c) 2017 Jed Watson.
|
3 |
+
Licensed under the MIT License (MIT), see
|
4 |
+
http://jedwatson.github.io/classnames
|
5 |
+
*/
|
framework/extensions/product-reviews/static/bundle/main-admin.min.css
CHANGED
@@ -1,8 +1,12 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
.ct-product-reviews-settings-modal .ct-controls-group{
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
.ct-product-reviews-settings-modal .ct-controls-group {
|
9 |
+
padding-top: 30px;
|
10 |
+
margin-top: 5px;
|
11 |
+
border-top: 1px dashed #eee;
|
12 |
+
}
|
framework/extensions/product-reviews/static/bundle/main.min.css
CHANGED
@@ -1,8 +1,192 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
.ct-product-hero .flexy-container
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
.ct-product-hero .flexy-container {
|
9 |
+
overflow: hidden;
|
10 |
+
}
|
11 |
+
@media (max-width: 999.98px) {
|
12 |
+
.ct-product-hero .flexy-pills {
|
13 |
+
--thumbs-spacing: 10px;
|
14 |
+
}
|
15 |
+
}
|
16 |
+
@media (min-width: 1000px) {
|
17 |
+
.ct-product-hero .flexy-pills {
|
18 |
+
max-width: 70%;
|
19 |
+
margin: -8% auto 0 auto;
|
20 |
+
--thumbs-spacing: 20px;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
.ct-product-hero .flexy-pills ol {
|
24 |
+
margin: 0 calc(var(--thumbs-spacing) * -1);
|
25 |
+
}
|
26 |
+
.ct-product-hero .flexy-pills li {
|
27 |
+
padding-top: var(--thumbs-spacing);
|
28 |
+
padding-left: var(--thumbs-spacing);
|
29 |
+
padding-right: var(--thumbs-spacing);
|
30 |
+
}
|
31 |
+
.ct-product-hero .flexy-pills li img {
|
32 |
+
width: 100%;
|
33 |
+
border-radius: 3px;
|
34 |
+
border-radius: 2px;
|
35 |
+
border: 3px solid #fff;
|
36 |
+
}
|
37 |
+
|
38 |
+
.ct-product-hero .hero-section:not(:first-child) {
|
39 |
+
margin-top: var(--margin-bottom, 40px);
|
40 |
+
}
|
41 |
+
|
42 |
+
.ct-product-scores {
|
43 |
+
display: grid;
|
44 |
+
grid-column-gap: 25px;
|
45 |
+
grid-row-gap: 25px;
|
46 |
+
margin: 0 auto;
|
47 |
+
max-width: var(--product-scores-width, 800px);
|
48 |
+
}
|
49 |
+
@media (min-width: 690px) {
|
50 |
+
.ct-product-scores {
|
51 |
+
grid-template-columns: 2fr 1fr;
|
52 |
+
}
|
53 |
+
}
|
54 |
+
.ct-product-scores:not(:last-child) {
|
55 |
+
margin-bottom: 60px;
|
56 |
+
}
|
57 |
+
.ct-product-scores li {
|
58 |
+
display: flex;
|
59 |
+
flex-wrap: wrap;
|
60 |
+
align-items: center;
|
61 |
+
justify-content: space-between;
|
62 |
+
padding: 10px 20px;
|
63 |
+
background: rgba(243, 243, 243, 0.5);
|
64 |
+
border-radius: 2px;
|
65 |
+
}
|
66 |
+
.ct-product-scores li:hover {
|
67 |
+
background: rgb(243, 243, 243);
|
68 |
+
}
|
69 |
+
.ct-product-scores li > span {
|
70 |
+
font-size: 15px;
|
71 |
+
font-weight: 500;
|
72 |
+
}
|
73 |
+
|
74 |
+
.ct-overall-score {
|
75 |
+
display: flex;
|
76 |
+
flex-direction: column;
|
77 |
+
align-items: center;
|
78 |
+
justify-content: center;
|
79 |
+
padding: 20px;
|
80 |
+
color: var(--overall-score-text-color, #fff);
|
81 |
+
border-radius: 2px;
|
82 |
+
background: var(--overall-score-box-background, #1A202C);
|
83 |
+
}
|
84 |
+
.ct-overall-score .ct-average-score {
|
85 |
+
font-size: 55px;
|
86 |
+
font-weight: 800;
|
87 |
+
line-height: normal;
|
88 |
+
margin-bottom: 10px;
|
89 |
+
}
|
90 |
+
.ct-overall-score .ct-score-label {
|
91 |
+
font-size: 15px;
|
92 |
+
font-weight: 700;
|
93 |
+
text-transform: uppercase;
|
94 |
+
letter-spacing: 0.02em;
|
95 |
+
margin: 15px 0 0 0;
|
96 |
+
}
|
97 |
+
|
98 |
+
.ct-overall-score-layer {
|
99 |
+
display: flex;
|
100 |
+
flex-wrap: wrap;
|
101 |
+
align-items: center;
|
102 |
+
}
|
103 |
+
.ct-overall-score-layer .ct-score-label,
|
104 |
+
.ct-overall-score-layer .ct-average-score {
|
105 |
+
font-size: 14px;
|
106 |
+
font-weight: 600;
|
107 |
+
}
|
108 |
+
.ct-overall-score-layer .ct-average-score {
|
109 |
+
margin: 0 5px;
|
110 |
+
margin-inline-end: auto;
|
111 |
+
}
|
112 |
+
.ct-overall-score-layer .star-rating {
|
113 |
+
margin: 3px 0;
|
114 |
+
}
|
115 |
+
|
116 |
+
.ct-product-actions-group {
|
117 |
+
display: flex;
|
118 |
+
align-items: center;
|
119 |
+
justify-content: center;
|
120 |
+
}
|
121 |
+
.ct-product-actions-group:not(:last-child) {
|
122 |
+
margin-bottom: 60px;
|
123 |
+
}
|
124 |
+
.ct-product-actions-group .ct-button:not(:last-child) {
|
125 |
+
margin-inline-end: 25px;
|
126 |
+
}
|
127 |
+
.ct-product-actions-group .ct-icon-container {
|
128 |
+
color: inherit;
|
129 |
+
margin-inline-start: 10px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.ct-product-description:not(:last-child) {
|
133 |
+
margin-bottom: 60px;
|
134 |
+
}
|
135 |
+
|
136 |
+
.ct-product-info {
|
137 |
+
display: grid;
|
138 |
+
grid-template-columns: var(--grid-template-columns);
|
139 |
+
grid-column-gap: 40px;
|
140 |
+
grid-row-gap: 40px;
|
141 |
+
border-top: 1px solid #ececec;
|
142 |
+
padding-top: var(--content-vertical-spacing, 60px);
|
143 |
+
}
|
144 |
+
@media (min-width: 1000px) {
|
145 |
+
.ct-product-info {
|
146 |
+
--grid-template-columns: 1.5fr 1fr 1fr;
|
147 |
+
}
|
148 |
+
}
|
149 |
+
@media (min-width: 690px) and (max-width: 999.98px) {
|
150 |
+
.ct-product-info {
|
151 |
+
--grid-template-columns: 1fr 1fr;
|
152 |
+
}
|
153 |
+
}
|
154 |
+
.ct-product-info li {
|
155 |
+
position: relative;
|
156 |
+
padding-inline-start: 22px;
|
157 |
+
}
|
158 |
+
.ct-product-info .ct-icon-container {
|
159 |
+
position: absolute;
|
160 |
+
left: 0;
|
161 |
+
top: 0.4em;
|
162 |
+
opacity: 0.8;
|
163 |
+
--icon-size: 13px;
|
164 |
+
}
|
165 |
+
|
166 |
+
@media (min-width: 690px) and (max-width: 999.98px) {
|
167 |
+
.ct-specs {
|
168 |
+
grid-column: 1/-1;
|
169 |
+
}
|
170 |
+
}
|
171 |
+
.ct-specs ul {
|
172 |
+
display: grid;
|
173 |
+
grid-column-gap: 40px;
|
174 |
+
}
|
175 |
+
@media (min-width: 690px) {
|
176 |
+
.ct-specs ul {
|
177 |
+
grid-template-columns: repeat(2, 1fr);
|
178 |
+
}
|
179 |
+
}
|
180 |
+
|
181 |
+
.ct-product-hero {
|
182 |
+
padding-top: var(--content-vertical-spacing, 60px);
|
183 |
+
}
|
184 |
+
.ct-product-hero .ct-container {
|
185 |
+
padding-bottom: var(--content-vertical-spacing, 60px);
|
186 |
+
border-bottom: 1px solid #ececec;
|
187 |
+
}
|
188 |
+
.ct-product-hero ul {
|
189 |
+
--listIndent: 0;
|
190 |
+
--listStyleType: none;
|
191 |
+
--content-spacing: 0;
|
192 |
+
}
|
framework/extensions/product-reviews/static/bundle/sync.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";var r={n:e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},d:(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)};const e=window.blocksyCustomizerSync,t=window.ctEvents;function o(r,e){var t=Object.keys(r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(r);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),t.push.apply(t,o)}return t}function c(r){for(var e=1;e<arguments.length;e++){var t=null!=arguments[e]?arguments[e]:{};e%2?o(Object(t),!0).forEach((function(e){a(r,e,t[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(t)):o(Object(t)).forEach((function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(t,e))}))}return r}function a(r,e,t){return e in r?Object.defineProperty(r,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[e]=t,r}var l="blc-product-review_single";r.n(t)().on("ct:customizer:sync:collect-variable-descriptors",(function(r){var t;r.result=c(c({},r.result),{},(a(t={},"".concat(l,"_product_scores_width"),{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"product-scores-width",unit:"px"}),a(t,"".concat(l,"_star_rating_color"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"star-rating-initial-color",type:"color:default"},{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"star-rating-inactive-color",type:"color:inactive"}]),a(t,"".concat(l,"_overall_score_text"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"overall-score-text-color",type:"color:default"}]),a(t,"".concat(l,"_overall_score_backgroud"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"overall-score-box-background",type:"color:default"}]),t))}))})();
|
framework/extensions/trending/extension.php
CHANGED
@@ -113,11 +113,25 @@ class BlocksyExtensionTrending {
|
|
113 |
}
|
114 |
);
|
115 |
|
116 |
-
add_action(
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
}
|
113 |
}
|
114 |
);
|
115 |
|
116 |
+
add_action(
|
117 |
+
'blocksy:global-dynamic-css:enqueue',
|
118 |
+
'BlocksyExtensionTrending::add_global_styles',
|
119 |
+
10, 3
|
120 |
+
);
|
121 |
+
}
|
122 |
+
|
123 |
+
static public function add_global_styles($args) {
|
124 |
+
blocksy_theme_get_dynamic_styles(array_merge([
|
125 |
+
'path' => dirname(__FILE__) . '/global.php',
|
126 |
+
'chunk' => 'global',
|
127 |
+
], $args));
|
128 |
+
}
|
129 |
+
|
130 |
+
static public function onDeactivation() {
|
131 |
+
remove_action(
|
132 |
+
'blocksy:global-dynamic-css:enqueue',
|
133 |
+
'BlocksyExtensionTrending::add_global_styles',
|
134 |
+
10, 3
|
135 |
+
);
|
136 |
}
|
137 |
}
|
framework/extensions/trending/static/bundle/main.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";function t(t){return function(t){if(Array.isArray(t))return r(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||n(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function e(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=t[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!e||n.length!==e);r=!0);}catch(t){o=!0,a=t}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(t,e)||n(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(t,e){if(t){if("string"==typeof t)return r(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(t,e):void 0}}function r(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var c={},l=function(t){return c[t]?new Promise((function(e){e(c[t]),window.ct_customizer_localizations||(c[t]=c[t].clone())})):new Promise((function(e){return fetch(t).then((function(n){e(n),window.ct_customizer_localizations||(c[t]=n.clone())}))}))},s=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if((n=a({el:null,action:null},n)).el&&n.action&&!n.el.classList.contains("ct-loading")){var r=parseInt(n.el.dataset.page,10);if(("prev"!==n.action||1!==r)&&!(n.el.querySelectorAll(".ct-container > a").length<4&&1===r||n.el.dataset.page.indexOf("last")>-1&&"next"===n.action)){n.el.classList.add("ct-loading");var o="prev"===n.action?r-1:r+1;Promise.all([new Promise((function(t){n.el.classList.add("ct-leave-active"),requestAnimationFrame((function(){n.el.classList.remove("ct-leave-active"),n.el.classList.add("ct-leave"),setTimeout((function(){return t()}),650)}))})),l("".concat(ct_localizations.ajax_url,"?action=blocksy_get_trending_posts&page=").concat(o)).then((function(t){return t.json()}))]).then((function(r){var a=e(r,2),i=(a[0],a[1]),c=i.success,l=i.data;if(c){var s=l.posts,u=s.is_last_page,f=s.posts;n.el.dataset.page="".concat(o).concat(u?":last":""),t(n.el.querySelectorAll("a")).map((function(t){return t.remove()})),f.map((function(t){return n.el.insertAdjacentHTML("beforeend",'<a href="'.concat(t.url,'">\n ').concat(t.image,'\n <span class="ct-item-title">\n ').concat(t.title,"\n </span>\n </a>"))})),setTimeout((function(){n.el.classList.remove("ct-leave"),n.el.classList.add("ct-enter-active"),requestAnimationFrame((function(){n.el.classList.remove("ct-enter-active"),n.el.classList.add("ct-active"),setTimeout((function(){n.el.classList.remove("ct-active"),n.el.classList.remove("ct-loading")}),650)}))}),50)}}))}}};(0,window.ctFrontend.registerDynamicChunk)("blocksy_ext_trending",{mount:function(t,e){e.event;var n=t.closest("[data-page]");t.classList.contains("ct-arrow-left")&&s({el:n,action:"prev"}),t.classList.contains("ct-arrow-right")&&s({el:n,action:"next"})}})})();
|
framework/extensions/trending/static/bundle/main.min.css
CHANGED
@@ -1,8 +1,145 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
.ct-trending-block
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
.ct-trending-block {
|
9 |
+
padding: var(--padding, 30px) 0;
|
10 |
+
}
|
11 |
+
.ct-trending-block > div {
|
12 |
+
display: grid;
|
13 |
+
grid-template-columns: var(--grid-template-columns);
|
14 |
+
grid-column-gap: 30px;
|
15 |
+
grid-row-gap: 20px;
|
16 |
+
margin-bottom: 5px;
|
17 |
+
}
|
18 |
+
@media (min-width: 690px) and (max-width: 999.98px) {
|
19 |
+
.ct-trending-block > div {
|
20 |
+
--grid-template-columns: repeat(2, 1fr);
|
21 |
+
}
|
22 |
+
}
|
23 |
+
@media (min-width: 1000px) {
|
24 |
+
.ct-trending-block > div {
|
25 |
+
--grid-template-columns: repeat(4, 1fr);
|
26 |
+
}
|
27 |
+
}
|
28 |
+
.ct-trending-block > div.ct-leave-active > a, .ct-trending-block > div.ct-leave > a {
|
29 |
+
transition: opacity 0.3s ease, transform 0.3s ease;
|
30 |
+
}
|
31 |
+
.ct-trending-block > div.ct-leave-active > a:nth-of-type(1), .ct-trending-block > div.ct-leave > a:nth-of-type(1) {
|
32 |
+
transition-delay: 0s;
|
33 |
+
}
|
34 |
+
.ct-trending-block > div.ct-leave-active > a:nth-of-type(2), .ct-trending-block > div.ct-leave > a:nth-of-type(2) {
|
35 |
+
transition-delay: 0.15s;
|
36 |
+
}
|
37 |
+
.ct-trending-block > div.ct-leave-active > a:nth-of-type(3), .ct-trending-block > div.ct-leave > a:nth-of-type(3) {
|
38 |
+
transition-delay: 0.25s;
|
39 |
+
}
|
40 |
+
.ct-trending-block > div.ct-leave-active > a:nth-of-type(4), .ct-trending-block > div.ct-leave > a:nth-of-type(4) {
|
41 |
+
transition-delay: 0.35s;
|
42 |
+
}
|
43 |
+
.ct-trending-block > div.ct-leave-active > a {
|
44 |
+
opacity: 1;
|
45 |
+
transform: translateY(0);
|
46 |
+
}
|
47 |
+
.ct-trending-block > div.ct-leave > a {
|
48 |
+
opacity: 0;
|
49 |
+
transform: translateY(3px);
|
50 |
+
}
|
51 |
+
.ct-trending-block > div.ct-enter-active > a, .ct-trending-block > div.ct-active > a {
|
52 |
+
transition: opacity 0.3s ease, transform 0.3s ease;
|
53 |
+
}
|
54 |
+
.ct-trending-block > div.ct-enter-active > a:nth-of-type(1), .ct-trending-block > div.ct-active > a:nth-of-type(1) {
|
55 |
+
transition-delay: 0s;
|
56 |
+
}
|
57 |
+
.ct-trending-block > div.ct-enter-active > a:nth-of-type(2), .ct-trending-block > div.ct-active > a:nth-of-type(2) {
|
58 |
+
transition-delay: 0.15s;
|
59 |
+
}
|
60 |
+
.ct-trending-block > div.ct-enter-active > a:nth-of-type(3), .ct-trending-block > div.ct-active > a:nth-of-type(3) {
|
61 |
+
transition-delay: 0.25s;
|
62 |
+
}
|
63 |
+
.ct-trending-block > div.ct-enter-active > a:nth-of-type(4), .ct-trending-block > div.ct-active > a:nth-of-type(4) {
|
64 |
+
transition-delay: 0.35s;
|
65 |
+
}
|
66 |
+
.ct-trending-block > div.ct-enter-active > a {
|
67 |
+
opacity: 0;
|
68 |
+
transform: translateY(3px);
|
69 |
+
}
|
70 |
+
.ct-trending-block > div.ct-active > a {
|
71 |
+
opacity: 1;
|
72 |
+
transform: translateY(0);
|
73 |
+
}
|
74 |
+
.ct-trending-block .ct-block-title {
|
75 |
+
--fontSize: 15px;
|
76 |
+
grid-column: 1/-1;
|
77 |
+
display: flex;
|
78 |
+
align-items: center;
|
79 |
+
margin-bottom: 10px;
|
80 |
+
--headings-color: var(--color);
|
81 |
+
}
|
82 |
+
.ct-trending-block .ct-block-title > svg {
|
83 |
+
margin-top: 4px;
|
84 |
+
margin-inline-start: 10px;
|
85 |
+
}
|
86 |
+
.ct-trending-block a {
|
87 |
+
display: flex;
|
88 |
+
align-items: center;
|
89 |
+
--linkInitialColor: var(--color);
|
90 |
+
}
|
91 |
+
.ct-trending-block .ct-image-container {
|
92 |
+
flex: 0 0 60px;
|
93 |
+
border-radius: 100%;
|
94 |
+
margin-inline-end: 20px;
|
95 |
+
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
96 |
+
}
|
97 |
+
.ct-trending-block .ct-item-title {
|
98 |
+
word-break: break-word;
|
99 |
+
}
|
100 |
+
.ct-trending-block [class*=ct-arrow] {
|
101 |
+
display: flex;
|
102 |
+
align-items: center;
|
103 |
+
justify-content: center;
|
104 |
+
width: 23px;
|
105 |
+
height: 23px;
|
106 |
+
cursor: pointer;
|
107 |
+
background: transparent;
|
108 |
+
border-radius: 2px;
|
109 |
+
opacity: 0.5;
|
110 |
+
border: 1px solid var(--color);
|
111 |
+
transition: var(--transition);
|
112 |
+
}
|
113 |
+
.ct-trending-block [class*=ct-arrow]:before {
|
114 |
+
content: "";
|
115 |
+
width: 5px;
|
116 |
+
height: 5px;
|
117 |
+
border: 1px solid currentColor;
|
118 |
+
border-right: none;
|
119 |
+
border-bottom: none;
|
120 |
+
}
|
121 |
+
.ct-trending-block [class*=ct-arrow]:hover {
|
122 |
+
opacity: 1;
|
123 |
+
color: #fff;
|
124 |
+
border-color: var(--paletteColor1);
|
125 |
+
background: var(--paletteColor1);
|
126 |
+
}
|
127 |
+
.ct-trending-block .ct-arrow-left {
|
128 |
+
margin-inline-start: auto;
|
129 |
+
margin-inline-end: 8px;
|
130 |
+
padding-left: 1px;
|
131 |
+
}
|
132 |
+
.ct-trending-block .ct-arrow-left:before {
|
133 |
+
transform: rotate(-45deg);
|
134 |
+
}
|
135 |
+
.ct-trending-block .ct-arrow-right {
|
136 |
+
padding-right: 1px;
|
137 |
+
}
|
138 |
+
.ct-trending-block .ct-arrow-right:before {
|
139 |
+
transform: rotate(135deg);
|
140 |
+
}
|
141 |
+
.ct-trending-block [data-page="1"] .ct-arrow-left,
|
142 |
+
.ct-trending-block [data-page*=last] .ct-arrow-right {
|
143 |
+
opacity: 0.2;
|
144 |
+
pointer-events: none;
|
145 |
+
}
|
framework/extensions/trending/static/bundle/sync.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
(()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.blocksyCustomizerSync,r=window.ctEvents;function n(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function o(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?n(Object(r),!0).forEach((function(t){c(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}e.n(r)().on("ct:customizer:sync:collect-variable-descriptors",(function(e){e.result=o(o(o({},e.result),{},{trendingBlockContainerSpacing:{selector:".ct-trending-block",variable:"padding",responsive:!0,unit:""}},(0,t.typographyOption)({id:"trendingBlockPostsFont",selector:".ct-trending-block .ct-item-title"})),{},{trendingBlockFontColor:[{selector:".ct-trending-block",variable:"color",type:"color:default",responsive:!0},{selector:".ct-trending-block",variable:"linkHoverColor",type:"color:hover",responsive:!0}]},(0,t.handleBackgroundOptionFor)({id:"trending_block_background",selector:".ct-trending-block",responsive:!0}))})),wp.customize("trending_block_visibility",(function(e){return e.bind((function(e){return(0,t.responsiveClassesFor)("trending_block_visibility",document.querySelector(".ct-trending-block"))}))})),wp.customize("trending_block_label",(function(e){return e.bind((function(e){var t=document.querySelector(".ct-trending-block .ct-block-title");if(t){var r=t.innerHTML.split("<svg");r[0]=e,t.innerHTML=r.join("<svg")}}))}))})();
|
framework/extensions/widgets/static/bundle/main.min.css
CHANGED
@@ -1,8 +1,243 @@
|
|
1 |
/**
|
2 |
-
* - v1.8.
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* - v1.8.35
|
3 |
*
|
4 |
* Copyright (c) 2022
|
5 |
* Licensed GPLv2+
|
6 |
*/
|
7 |
|
8 |
+
@charset "UTF-8";
|
9 |
+
.ct-posts-widget ul {
|
10 |
+
--listItemSpacing: 20px;
|
11 |
+
}
|
12 |
+
.ct-posts-widget ul a {
|
13 |
+
display: var(--display, flex);
|
14 |
+
}
|
15 |
+
.ct-posts-widget ul .ct-image-container {
|
16 |
+
align-self: start;
|
17 |
+
}
|
18 |
+
.ct-posts-widget ul .ct-entry-content {
|
19 |
+
align-self: center;
|
20 |
+
}
|
21 |
+
.ct-posts-widget ul .ct-post-title {
|
22 |
+
--fontSize: 15px;
|
23 |
+
--lineHeight: 1.5;
|
24 |
+
--fontWeight: 500;
|
25 |
+
word-break: break-word;
|
26 |
+
}
|
27 |
+
.ct-posts-widget ul .ct-entry-excerpt {
|
28 |
+
margin-top: 5px;
|
29 |
+
font-size: 13px;
|
30 |
+
color: var(--color);
|
31 |
+
}
|
32 |
+
.ct-posts-widget ul .ct-entry-meta {
|
33 |
+
color: var(--color);
|
34 |
+
}
|
35 |
+
.ct-posts-widget ul .ct-entry-meta span:not(:last-child):after {
|
36 |
+
content: "/";
|
37 |
+
margin: 0 3px;
|
38 |
+
}
|
39 |
+
.ct-posts-widget ul[data-type=rounded] .ct-image-container, .ct-posts-widget ul[data-type=large-small] .ct-image-container, .ct-posts-widget ul[data-type=small-thumbs] .ct-image-container {
|
40 |
+
flex: 0 0 25%;
|
41 |
+
margin-inline-end: 20px;
|
42 |
+
}
|
43 |
+
.ct-posts-widget ul[data-type=no-thumbs] a {
|
44 |
+
--display: block;
|
45 |
+
}
|
46 |
+
.ct-posts-widget ul[data-type=large-thumbs] {
|
47 |
+
--listItemSpacing: 25px;
|
48 |
+
}
|
49 |
+
.ct-posts-widget ul[data-type=large-thumbs] a {
|
50 |
+
--display: block;
|
51 |
+
}
|
52 |
+
.ct-posts-widget ul[data-type=large-thumbs] a .ct-image-container {
|
53 |
+
margin-bottom: 12px;
|
54 |
+
}
|
55 |
+
.ct-posts-widget ul[data-type=large-thumbs] a .ct-post-title {
|
56 |
+
--fontSize: 17px;
|
57 |
+
--fontWeight: 600;
|
58 |
+
}
|
59 |
+
.ct-posts-widget ul[data-type=large-small] li:first-child {
|
60 |
+
--listItemSpacing: 30px;
|
61 |
+
}
|
62 |
+
.ct-posts-widget ul[data-type=large-small] li:first-child a {
|
63 |
+
--display: block;
|
64 |
+
}
|
65 |
+
.ct-posts-widget ul[data-type=large-small] li:first-child a .ct-image-container {
|
66 |
+
margin-bottom: 20px;
|
67 |
+
}
|
68 |
+
.ct-posts-widget ul[data-type=large-small] li:first-child a .ct-post-title {
|
69 |
+
--fontSize: 17px;
|
70 |
+
--fontWeight: 600;
|
71 |
+
}
|
72 |
+
.ct-posts-widget ul[data-type=rounded] .ct-image-container {
|
73 |
+
overflow: hidden;
|
74 |
+
border-radius: 100%;
|
75 |
+
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
76 |
+
}
|
77 |
+
.ct-posts-widget ul[data-type=numbered] {
|
78 |
+
counter-reset: ct-counter;
|
79 |
+
}
|
80 |
+
.ct-posts-widget ul[data-type=numbered] a {
|
81 |
+
grid-template-columns: 34px 1fr;
|
82 |
+
grid-column-gap: 15px;
|
83 |
+
}
|
84 |
+
.ct-posts-widget ul[data-type=numbered] a:before {
|
85 |
+
counter-increment: ct-counter;
|
86 |
+
content: counter(ct-counter);
|
87 |
+
display: flex;
|
88 |
+
align-items: center;
|
89 |
+
justify-content: center;
|
90 |
+
flex: 0 0 34px;
|
91 |
+
width: 34px;
|
92 |
+
height: 34px;
|
93 |
+
font-size: 12px;
|
94 |
+
font-weight: 700;
|
95 |
+
border-radius: 100%;
|
96 |
+
border: 1px solid #E5E5E5;
|
97 |
+
transition: var(--transition);
|
98 |
+
}
|
99 |
+
.ct-posts-widget ul[data-type=numbered] a:hover:before {
|
100 |
+
color: #fff;
|
101 |
+
border-color: var(--paletteColor1);
|
102 |
+
background: var(--paletteColor1);
|
103 |
+
}
|
104 |
+
.ct-posts-widget ul[data-type=numbered] .ct-post-title::before {
|
105 |
+
content: "";
|
106 |
+
display: block;
|
107 |
+
height: 0;
|
108 |
+
width: 0;
|
109 |
+
margin-top: calc((1 - 1.65) * 0.5em);
|
110 |
+
}
|
111 |
+
|
112 |
+
.ct-quote-widget {
|
113 |
+
--color: #fff;
|
114 |
+
position: relative;
|
115 |
+
min-height: 250px;
|
116 |
+
border-radius: 7px;
|
117 |
+
padding: 70px 40px 60px 60px !important;
|
118 |
+
background: var(--paletteColor1) !important;
|
119 |
+
}
|
120 |
+
.ct-quote-widget:before {
|
121 |
+
position: absolute;
|
122 |
+
top: 50px;
|
123 |
+
left: 35px;
|
124 |
+
content: "”";
|
125 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
126 |
+
font-weight: bold;
|
127 |
+
font-size: 200px;
|
128 |
+
line-height: 150px;
|
129 |
+
opacity: 0.3;
|
130 |
+
width: 80px;
|
131 |
+
height: 80px;
|
132 |
+
display: flex;
|
133 |
+
justify-content: center;
|
134 |
+
transform: rotate(180deg);
|
135 |
+
}
|
136 |
+
.ct-quote-widget .ct-quote-author {
|
137 |
+
display: flex;
|
138 |
+
column-gap: 15px;
|
139 |
+
align-items: center;
|
140 |
+
margin-top: 25px;
|
141 |
+
font-weight: 500;
|
142 |
+
}
|
143 |
+
.ct-quote-widget .ct-quote-author figure {
|
144 |
+
flex: 0 0 40px;
|
145 |
+
border-radius: 100%;
|
146 |
+
}
|
147 |
+
|
148 |
+
.ct-about-me-widget figure {
|
149 |
+
margin-bottom: 15px;
|
150 |
+
}
|
151 |
+
.ct-about-me-widget figure[data-size=small] {
|
152 |
+
max-width: 90px;
|
153 |
+
}
|
154 |
+
.ct-about-me-widget figure[data-size=medium] {
|
155 |
+
max-width: 140px;
|
156 |
+
}
|
157 |
+
.ct-about-me-widget figure[data-shape=square] {
|
158 |
+
border-radius: 2px;
|
159 |
+
}
|
160 |
+
.ct-about-me-widget figure[data-shape=rounded] {
|
161 |
+
border-radius: 100%;
|
162 |
+
}
|
163 |
+
.ct-about-me-widget .ct-about-me-name {
|
164 |
+
display: flex;
|
165 |
+
flex-direction: column;
|
166 |
+
font-weight: 700;
|
167 |
+
}
|
168 |
+
.ct-about-me-widget .ct-about-me-name:not(:last-child) {
|
169 |
+
margin-bottom: 15px;
|
170 |
+
}
|
171 |
+
.ct-about-me-widget .ct-about-me-text:not(:last-child) {
|
172 |
+
margin-bottom: 25px;
|
173 |
+
}
|
174 |
+
.ct-about-me-widget .ct-about-me-link {
|
175 |
+
font-size: 13px;
|
176 |
+
font-weight: normal;
|
177 |
+
}
|
178 |
+
.ct-about-me-widget [data-alignment=center] {
|
179 |
+
text-align: center;
|
180 |
+
}
|
181 |
+
.ct-about-me-widget [data-alignment=center] .ct-social-box {
|
182 |
+
justify-content: center;
|
183 |
+
}
|
184 |
+
.ct-about-me-widget [data-alignment=right] {
|
185 |
+
text-align: right;
|
186 |
+
}
|
187 |
+
.ct-about-me-widget [data-alignment=right] .ct-social-box {
|
188 |
+
justify-content: flex-end;
|
189 |
+
}
|
190 |
+
.ct-about-me-widget [data-type=bordered] {
|
191 |
+
padding: 35px 25px;
|
192 |
+
border-radius: 7px;
|
193 |
+
background: #fff;
|
194 |
+
border: 1px dashed rgba(0, 0, 0, 0.1);
|
195 |
+
}
|
196 |
+
|
197 |
+
.ct-facebook-like-box {
|
198 |
+
overflow: hidden;
|
199 |
+
--fbHeader: 0px;
|
200 |
+
--fbFacepile: 0px;
|
201 |
+
}
|
202 |
+
.ct-facebook-like-box .fb-page {
|
203 |
+
display: flex;
|
204 |
+
justify-content: center;
|
205 |
+
}
|
206 |
+
.ct-facebook-like-box .fb-page[data-small-header=false] {
|
207 |
+
--fbHeader: 130px;
|
208 |
+
}
|
209 |
+
.ct-facebook-like-box .fb-page[data-small-header=true] {
|
210 |
+
--fbHeader: 70px;
|
211 |
+
}
|
212 |
+
.ct-facebook-like-box .fb-page[data-show-facepile=true] {
|
213 |
+
--fbFacepile: 84px;
|
214 |
+
}
|
215 |
+
.ct-facebook-like-box .fb-page:not([data-tabs=timeline]) {
|
216 |
+
min-height: calc(var(--fbHeader) + var(--fbFacepile));
|
217 |
+
}
|
218 |
+
.ct-facebook-like-box .fb-page[data-tabs=timeline] {
|
219 |
+
min-height: 500px;
|
220 |
+
}
|
221 |
+
.ct-facebook-like-box iframe {
|
222 |
+
max-width: 500px;
|
223 |
+
margin: 0 auto;
|
224 |
+
}
|
225 |
+
|
226 |
+
.ct-socials-widget [data-icons-type*=solid],
|
227 |
+
.ct-about-me-widget [data-icons-type*=solid] {
|
228 |
+
--icon-hover-color: #fff;
|
229 |
+
--background-color: rgba(218, 222, 228, 0.2);
|
230 |
+
--background-hover-color: var(--linkHoverColor, var(--paletteColor1));
|
231 |
+
}
|
232 |
+
.ct-socials-widget [data-icons-type*=outline],
|
233 |
+
.ct-about-me-widget [data-icons-type*=outline] {
|
234 |
+
--icon-hover-color: var(--linkHoverColor, var(--paletteColor1));
|
235 |
+
--background-color: rgba(218, 222, 228, 0.4);
|
236 |
+
--background-hover-color: var(--linkHoverColor, var(--paletteColor1));
|
237 |
+
}
|
238 |
+
|
239 |
+
.ct-contact-info-widget ul {
|
240 |
+
--icon-hover-color: var(--color);
|
241 |
+
--background-color: rgba(218, 222, 228, 0.3);
|
242 |
+
--background-hover-color: rgba(218, 222, 228, 0.3);
|
243 |
+
}
|
framework/extensions/widgets/widgets/ct-posts/view.php
CHANGED
@@ -156,7 +156,7 @@ echo $before_title . wp_kses_post( $title ) . $after_title;
|
|
156 |
<?php
|
157 |
if ( $has_thumbnail ) {
|
158 |
$size = 'thumbnail';
|
159 |
-
$ratio = blocksy_default_akg('post_widget_image_ratio', $atts, '
|
160 |
|
161 |
if ( $posts_type === 'large-thumbs' ) {
|
162 |
$size = 'medium';
|
156 |
<?php
|
157 |
if ( $has_thumbnail ) {
|
158 |
$size = 'thumbnail';
|
159 |
+
$ratio = blocksy_default_akg('post_widget_image_ratio', $atts, 'original');
|
160 |
|
161 |
if ( $posts_type === 'large-thumbs' ) {
|
162 |
$size = 'medium';
|
framework/features/demo-install/install-finish.php
CHANGED
@@ -77,6 +77,8 @@ class DemoInstallFinalActions {
|
|
77 |
}
|
78 |
}
|
79 |
|
|
|
|
|
80 |
if ($this->has_streaming) {
|
81 |
Plugin::instance()->demo->emit_sse_message([
|
82 |
'action' => 'complete',
|
@@ -233,5 +235,49 @@ class DemoInstallFinalActions {
|
|
233 |
|
234 |
return $query->posts;
|
235 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
}
|
237 |
|
77 |
}
|
78 |
}
|
79 |
|
80 |
+
$this->maybe_activate_elementor_experimental_container();
|
81 |
+
|
82 |
if ($this->has_streaming) {
|
83 |
Plugin::instance()->demo->emit_sse_message([
|
84 |
'action' => 'complete',
|
235 |
|
236 |
return $query->posts;
|
237 |
}
|
238 |
+
|
239 |
+
public function maybe_activate_elementor_experimental_container() {
|
240 |
+
if (! defined('ELEMENTOR_VERSION')) {
|
241 |
+
return;
|
242 |
+
}
|
243 |
+
|
244 |
+
$current_demo = Plugin::instance()->demo->get_current_demo();
|
245 |
+
|
246 |
+
if (! $current_demo) {
|
247 |
+
return;
|
248 |
+
}
|
249 |
+
|
250 |
+
if (! isset($current_demo['demo'])) {
|
251 |
+
return;
|
252 |
+
}
|
253 |
+
|
254 |
+
$demo_name = explode(':', $current_demo['demo']);
|
255 |
+
|
256 |
+
if (! isset($demo_name[1])) {
|
257 |
+
$demo_name[1] = '';
|
258 |
+
}
|
259 |
+
|
260 |
+
$demo = $demo_name[0];
|
261 |
+
$builder = $demo_name[1];
|
262 |
+
|
263 |
+
$demo_content = Plugin::instance()->demo->fetch_single_demo([
|
264 |
+
'demo' => $demo,
|
265 |
+
'builder' => $builder
|
266 |
+
]);
|
267 |
+
|
268 |
+
if (! $demo_content) {
|
269 |
+
return;
|
270 |
+
}
|
271 |
+
|
272 |
+
if ($demo_content['builder'] !== 'elementor') {
|
273 |
+
return;
|
274 |
+
}
|
275 |
+
|
276 |
+
if (! isset($demo_content['elementor_experiment_container'])) {
|
277 |
+
return;
|
278 |
+
}
|
279 |
+
|
280 |
+
update_option('elementor_experiment-container', 'active');
|
281 |
+
}
|
282 |
}
|
283 |
|
framework/features/header.php
CHANGED
@@ -24,6 +24,7 @@ class HeaderAdditions {
|
|
24 |
);
|
25 |
|
26 |
add_filter('blocksy:header:selective_refresh', function ($selective_refresh) {
|
|
|
27 |
$selective_refresh[] = [
|
28 |
'id' => 'header_placements_item:account',
|
29 |
'fallback_refresh' => false,
|
@@ -36,6 +37,22 @@ class HeaderAdditions {
|
|
36 |
}
|
37 |
];
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
return $selective_refresh;
|
40 |
});
|
41 |
|
24 |
);
|
25 |
|
26 |
add_filter('blocksy:header:selective_refresh', function ($selective_refresh) {
|
27 |
+
|
28 |
$selective_refresh[] = [
|
29 |
'id' => 'header_placements_item:account',
|
30 |
'fallback_refresh' => false,
|
37 |
}
|
38 |
];
|
39 |
|
40 |
+
$selective_refresh[] = [
|
41 |
+
'id' => 'header_placements_item:account:offcanvas',
|
42 |
+
'fallback_refresh' => false,
|
43 |
+
'container_inclusive' => false,
|
44 |
+
'selector' => '#offcanvas',
|
45 |
+
'loader_selector' => '[data-id="account"]',
|
46 |
+
'settings' => ['header_placements'],
|
47 |
+
'render_callback' => function () {
|
48 |
+
$elements = new \Blocksy_Header_Builder_Elements();
|
49 |
+
|
50 |
+
echo $elements->render_offcanvas([
|
51 |
+
'has_container' => false
|
52 |
+
]);
|
53 |
+
}
|
54 |
+
];
|
55 |
+
|
56 |
return $selective_refresh;
|
57 |
});
|
58 |
|
framework/theme-integration.php
CHANGED
@@ -90,7 +90,9 @@ class ThemeIntegration {
|
|
90 |
'filtering' => false,
|
91 |
|
92 |
// 404 | skip
|
93 |
-
'no_results' => '404'
|
|
|
|
|
94 |
]
|
95 |
);
|
96 |
|
90 |
'filtering' => false,
|
91 |
|
92 |
// 404 | skip
|
93 |
+
'no_results' => '404',
|
94 |
+
|
95 |
+
'class' => ''
|
96 |
]
|
97 |
);
|
98 |
|
framework/views/blocksy-posts.php
CHANGED
@@ -4,6 +4,12 @@ if (! function_exists('blocksy_render_archive_cards')) {
|
|
4 |
return;
|
5 |
}
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
$query_args = [
|
8 |
'order' => $args['order'],
|
9 |
'ignore_sticky_posts' => true,
|
@@ -144,7 +150,7 @@ if ($args['view'] === 'slider') {
|
|
144 |
}
|
145 |
|
146 |
echo blocksy_flexy(array_merge([
|
147 |
-
'class' =>
|
148 |
'images' => $images,
|
149 |
'slide_image_args' => function ($index, $args) use ($posts_to_render) {
|
150 |
$post = $posts_to_render[$index];
|
@@ -167,7 +173,7 @@ if ($args['view'] === 'slider') {
|
|
167 |
}
|
168 |
}
|
169 |
|
170 |
-
echo '<div class="
|
171 |
|
172 |
if (
|
173 |
$args['filtering']
|
4 |
return;
|
5 |
}
|
6 |
|
7 |
+
$shortcode_class = 'ct-posts-shortcode';
|
8 |
+
|
9 |
+
if (! empty($args['class'])) {
|
10 |
+
$shortcode_class .= ' ' . $args['class'];
|
11 |
+
}
|
12 |
+
|
13 |
$query_args = [
|
14 |
'order' => $args['order'],
|
15 |
'ignore_sticky_posts' => true,
|
150 |
}
|
151 |
|
152 |
echo blocksy_flexy(array_merge([
|
153 |
+
'class' => $shortcode_class,
|
154 |
'images' => $images,
|
155 |
'slide_image_args' => function ($index, $args) use ($posts_to_render) {
|
156 |
$post = $posts_to_render[$index];
|
173 |
}
|
174 |
}
|
175 |
|
176 |
+
echo '<div class="' . $shortcode_class . '" data-prefix="' . $prefix . '">';
|
177 |
|
178 |
if (
|
179 |
$args['filtering']
|
languages/blocksy-companion.pot
CHANGED
@@ -7,6 +7,8 @@ msgstr ""
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
|
12 |
"_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
@@ -19,238 +21,301 @@ msgstr ""
|
|
19 |
"x-generator: babel-plugin-wp-i18n\n"
|
20 |
|
21 |
#. translators: %s: PHP version
|
22 |
-
#: blocksy-companion.php:128
|
23 |
msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
|
24 |
msgstr ""
|
25 |
|
26 |
#. translators: %s: WordPress version
|
27 |
-
#: blocksy-companion.php:139
|
28 |
msgid ""
|
29 |
"Blocksy requires WordPress version %s+. Because you are using an earlier "
|
30 |
"version, the plugin is currently NOT RUNNING."
|
31 |
msgstr ""
|
32 |
|
33 |
#: framework/extensions-manager.php:245,
|
34 |
-
#: framework/
|
|
|
|
|
35 |
msgid "Adobe Typekit"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: framework/extensions-manager.php:246
|
|
|
39 |
msgid ""
|
40 |
"Connect your Typekit account and use your fonts in any typography option."
|
41 |
msgstr ""
|
42 |
|
43 |
#: framework/extensions-manager.php:257,
|
44 |
-
#: framework/
|
|
|
|
|
45 |
msgid "Custom Code Snippets"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: framework/extensions-manager.php:258
|
|
|
49 |
msgid ""
|
50 |
"Add custom code snippets in your header and footer, globally and per post or "
|
51 |
"page individually."
|
52 |
msgstr ""
|
53 |
|
54 |
#: framework/extensions-manager.php:269,
|
55 |
-
#: framework/
|
|
|
|
|
56 |
msgid "Custom Fonts"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: framework/extensions-manager.php:270
|
|
|
60 |
msgid ""
|
61 |
"Upload unlimited number of custom fonts or variable fonts and use them in "
|
62 |
"any typography option."
|
63 |
msgstr ""
|
64 |
|
65 |
#: framework/extensions-manager.php:281,
|
66 |
-
#: framework/
|
|
|
|
|
67 |
msgid "Local Google Fonts"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: framework/extensions-manager.php:282
|
|
|
71 |
msgid "Serve Google Fonts from your own server for full GDPR compliancy."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: framework/extensions-manager.php:293
|
|
|
75 |
msgid "Advanced Menu"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: framework/extensions-manager.php:294
|
|
|
79 |
msgid ""
|
80 |
"Create beautiful mega menus, assign icons add badges to menu items, and "
|
81 |
"content blocks inside menu items."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: framework/extensions-manager.php:305
|
|
|
85 |
msgid "Shortcuts Bar"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: framework/extensions-manager.php:306
|
|
|
89 |
msgid ""
|
90 |
"Transform your website into a app like by displaying a neat shortcuts bar at "
|
91 |
"the bottom of the vieport."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: framework/extensions-manager.php:317
|
|
|
95 |
msgid "Multiple Sidebars"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: framework/extensions-manager.php:318
|
|
|
99 |
msgid ""
|
100 |
"Create unlimited number of sidebars and display them conditionaly on any "
|
101 |
"page or post."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: framework/extensions-manager.php:329
|
|
|
105 |
msgid "White Label (Agency Package)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: framework/extensions-manager.php:330
|
|
|
109 |
msgid "Change the theme and companion plugin branding to your own custom one."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: framework/extensions-manager.php:341
|
|
|
113 |
msgid "WooCommerce Extra"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: framework/extensions-manager.php:342
|
|
|
117 |
msgid ""
|
118 |
"Increase the conversion rate by adding a product quick view modal, a "
|
119 |
"floating cart. Control the single product gallery/slider and the layout, add "
|
120 |
"a wishlits page."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: framework/theme-integration.php:
|
|
|
124 |
#: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
|
125 |
#: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
|
126 |
-
#: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
|
|
|
|
|
|
|
127 |
msgid "Facebook"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: framework/theme-integration.php:
|
|
|
131 |
msgid "Twitter"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: framework/theme-integration.php:
|
|
|
135 |
msgid "LinkedIn"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: framework/theme-integration.php:
|
|
|
139 |
msgid "Dribbble"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: framework/theme-integration.php:
|
|
|
143 |
msgid "Instagram"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: framework/theme-integration.php:
|
|
|
147 |
msgid "Pinterest"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: framework/theme-integration.php:
|
|
|
151 |
msgid "WordPress"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: framework/theme-integration.php:
|
|
|
155 |
msgid "GitHub"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: framework/theme-integration.php:
|
|
|
159 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
|
160 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:83,
|
161 |
-
#: framework/premium/features/content-blocks/options/archive.php:47
|
|
|
|
|
|
|
162 |
msgid "Medium"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: framework/theme-integration.php:
|
|
|
166 |
msgid "YouTube"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: framework/theme-integration.php:
|
|
|
170 |
msgid "Vimeo"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: framework/theme-integration.php:
|
|
|
174 |
msgid "VKontakte"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: framework/theme-integration.php:
|
|
|
178 |
msgid "Odnoklassniki"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: framework/theme-integration.php:
|
|
|
182 |
msgid "TikTok"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: framework/theme-integration.php:
|
|
|
186 |
msgid "Companion"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: framework/theme-integration.php:
|
|
|
|
|
190 |
msgid "PRO"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: framework/widgets-manager.php:75
|
|
|
194 |
msgid "Default widget name"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: framework/widgets-manager.php:81
|
|
|
198 |
msgid "Display online support infomation"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: framework/widgets-manager.php:144
|
|
|
202 |
msgid "Widget Title"
|
203 |
msgstr ""
|
204 |
|
205 |
#. translators: %s: Link to the login page.
|
206 |
-
#: framework/features/account-auth.php:92
|
|
|
207 |
msgid ""
|
208 |
"Check your email for the confirmation link, then visit the <a href=\"%s"
|
209 |
"\">login page</a>."
|
210 |
msgstr ""
|
211 |
|
212 |
#: framework/features/account-auth.php:104,
|
213 |
-
#: framework/features/account-auth.php:231
|
|
|
|
|
214 |
msgid "Check your email"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: framework/features/account-auth.php:198
|
|
|
218 |
msgid ""
|
219 |
"Your account was created successfully. Your login details have been sent to "
|
220 |
"your email address. Please visit the <a href=\"%s\">login page</a>."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: framework/features/account-auth.php:207
|
|
|
224 |
msgid ""
|
225 |
"Your account was created successfully and a password has been sent to your "
|
226 |
"email address. Please visit the <a href=\"%s\">login page</a>."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: framework/features/account-auth.php:237
|
|
|
230 |
msgid "Registration Form"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: framework/features/account-auth.php:238
|
|
|
234 |
msgid "Register For This Site"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: framework/features/conditions-manager.php:463
|
|
|
238 |
msgid "Entire Website"
|
239 |
msgstr ""
|
240 |
|
241 |
#: framework/features/conditions-manager.php:471,
|
242 |
#: framework/features/conditions-manager.php:513,
|
243 |
-
#: framework/features/conditions-manager.php:545
|
|
|
|
|
|
|
244 |
msgid "Basic"
|
245 |
msgstr ""
|
246 |
|
247 |
#: framework/features/conditions-manager.php:475,
|
248 |
-
#: framework/features/conditions-manager.php:549
|
|
|
|
|
249 |
msgid "Singulars"
|
250 |
msgstr ""
|
251 |
|
252 |
#: framework/features/conditions-manager.php:480,
|
253 |
-
#: framework/features/conditions-manager.php:517
|
|
|
|
|
254 |
msgid "Archives"
|
255 |
msgstr ""
|
256 |
|
@@ -258,146 +323,271 @@ msgstr ""
|
|
258 |
#: framework/features/conditions-manager.php:523,
|
259 |
#: framework/features/conditions-manager.php:555,
|
260 |
#: framework/extensions/trending/customizer.php:4,
|
|
|
|
|
|
|
|
|
261 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:11,
|
262 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:98,
|
263 |
#: framework/extensions/widgets/widgets/ct-posts/view.php:139,
|
264 |
#: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
|
265 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:4
|
|
|
|
|
|
|
|
|
|
|
266 |
msgid "Posts"
|
267 |
msgstr ""
|
268 |
|
269 |
#: framework/features/conditions-manager.php:490,
|
270 |
#: framework/features/conditions-manager.php:559,
|
|
|
|
|
271 |
#: framework/premium/features/content-blocks/hooks-manager.php:408,
|
272 |
#: framework/premium/features/content-blocks/hooks-manager.php:416,
|
273 |
#: framework/premium/features/content-blocks/hooks-manager.php:424,
|
274 |
#: framework/premium/features/content-blocks/hooks-manager.php:431,
|
275 |
#: framework/premium/features/content-blocks/hooks-manager.php:438,
|
276 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:446
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
msgid "Single Post"
|
278 |
msgstr ""
|
279 |
|
280 |
#: framework/features/conditions-manager.php:495,
|
281 |
-
#: framework/features/conditions-manager.php:527
|
|
|
|
|
282 |
msgid "All Post Archives"
|
283 |
msgstr ""
|
284 |
|
285 |
#: framework/features/conditions-manager.php:500,
|
286 |
-
#: framework/features/conditions-manager.php:532
|
|
|
|
|
287 |
msgid "Post Categories"
|
288 |
msgstr ""
|
289 |
|
290 |
#: framework/features/conditions-manager.php:505,
|
291 |
-
#: framework/features/conditions-manager.php:537
|
|
|
|
|
292 |
msgid "Post Tags"
|
293 |
msgstr ""
|
294 |
|
295 |
#: framework/features/conditions-manager.php:567,
|
|
|
296 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:12,
|
297 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:5
|
|
|
|
|
298 |
msgid "Pages"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: framework/features/conditions-manager.php:571
|
|
|
302 |
msgid "Single Page"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: framework/features/conditions-manager.php:598
|
|
|
306 |
msgid "%s Single"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: framework/features/conditions-manager.php:608
|
|
|
310 |
msgid "%s Archive"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: framework/features/conditions-manager.php:621
|
|
|
314 |
msgid "%s %s Taxonomy"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: framework/features/conditions-manager.php:636
|
|
|
318 |
msgid "Post ID"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: framework/features/conditions-manager.php:641
|
|
|
322 |
msgid "Page ID"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: framework/features/conditions-manager.php:646
|
326 |
-
#:
|
|
|
327 |
msgid "Custom Post Type ID"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: framework/features/conditions-manager.php:651
|
|
|
331 |
msgid "Post with Taxonomy ID"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: framework/features/conditions-manager.php:656
|
|
|
335 |
msgid "Taxonomy ID"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: framework/features/conditions-manager.php:660
|
|
|
339 |
msgid "Specific"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: framework/features/conditions-manager.php:666
|
|
|
343 |
msgid "Other Pages"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: framework/features/conditions-manager.php:670
|
|
|
347 |
msgid "404"
|
348 |
msgstr ""
|
349 |
|
350 |
#: framework/features/conditions-manager.php:675,
|
|
|
351 |
#: framework/premium/features/premium-header/items/search-input/options.php:45,
|
352 |
-
#: framework/premium/features/premium-header/items/search-input/view.php:71
|
|
|
|
|
353 |
msgid "Search"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: framework/features/conditions-manager.php:680
|
|
|
357 |
msgid "Blog"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: framework/features/conditions-manager.php:685
|
|
|
361 |
msgid "Front Page"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: framework/features/conditions-manager.php:697
|
|
|
365 |
msgid "Author"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: framework/features/conditions-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
msgid "User Auth"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: framework/features/conditions-manager.php:752
|
|
|
373 |
msgid "User Logged In"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: framework/features/conditions-manager.php:757
|
|
|
377 |
msgid "User Logged Out"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: framework/features/conditions-manager.php:763
|
|
|
381 |
msgid "User Roles"
|
382 |
msgstr ""
|
383 |
|
384 |
#: framework/features/conditions-manager.php:768,
|
|
|
385 |
#: framework/premium/features/content-blocks/options/404.php:19,
|
386 |
#: framework/premium/features/content-blocks/options/header.php:19,
|
387 |
#: framework/premium/features/content-blocks/options/hook.php:24,
|
388 |
-
#: framework/premium/features/content-blocks/options/popup.php:25
|
|
|
|
|
|
|
|
|
389 |
msgid "Other"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: framework/features/conditions-manager.php:772
|
|
|
393 |
msgid "Post Author"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: framework/features/conditions-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
msgid "Language"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: framework/features/demo-install.php:233
|
|
|
401 |
msgid ""
|
402 |
"Your PHP installation doesn't have support for XML. Please install the "
|
403 |
"<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
|
@@ -405,82 +595,100 @@ msgid ""
|
|
405 |
"in doing so."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: framework/features/dynamic-css.php:46
|
|
|
409 |
msgid "Dynamic CSS Output"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: framework/features/dynamic-css.php:50
|
|
|
413 |
msgid ""
|
414 |
"The strategy of outputting the dynamic CSS. File - all the CSS code will be "
|
415 |
"placed in a static file, otherwise it will be placed inline in head."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: framework/features/dynamic-css.php:52
|
|
|
419 |
msgid "File"
|
420 |
msgstr ""
|
421 |
|
422 |
#: framework/features/dynamic-css.php:53,
|
423 |
-
#: framework/
|
|
|
|
|
424 |
msgid "Inline"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: framework/features/google-analytics.php:69
|
|
|
428 |
msgid "Google Analytics v3"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: framework/features/google-analytics.php:74
|
|
|
432 |
msgid "Link your Google Analytics 3 tracking ID."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: framework/features/google-analytics.php:80
|
|
|
436 |
msgid "Google Analytics v4"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: framework/features/google-analytics.php:86
|
|
|
440 |
msgid ""
|
441 |
"Link your Google Analytics 4 tracking ID. More info and instructions can be "
|
442 |
"found %shere%s."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: framework/features/google-analytics.php:98
|
|
|
446 |
msgid "IP Anonymization"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: framework/features/google-analytics.php:102
|
|
|
450 |
msgid ""
|
451 |
"Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
|
452 |
"instructions can be found %shere%s."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: framework/features/opengraph-meta-data.php:17
|
|
|
456 |
msgid "OpenGraph Meta Data"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: framework/features/opengraph-meta-data.php:20
|
|
|
460 |
msgid "Enable the OpenGraph rich meta data features for your website."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: framework/features/opengraph-meta-data.php:29
|
|
|
464 |
msgid "Facebook Page URL"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: framework/features/opengraph-meta-data.php:36
|
|
|
468 |
msgid "Facebook App ID"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: framework/features/opengraph-meta-data.php:43
|
|
|
472 |
msgid "Twitter Username"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#. translators: This is a brand name. Preferably to not be translated
|
476 |
#. translators: This is a brand name. Preferably to not be translated
|
477 |
#: framework/extensions/cookies-consent/config.php:5,
|
478 |
-
#: framework/extensions/cookies-consent/customizer.php:5
|
|
|
|
|
479 |
msgctxt "Extension Brand Name"
|
480 |
msgid "Cookies Consent"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: framework/extensions/cookies-consent/config.php:6
|
|
|
484 |
msgid ""
|
485 |
"Display a cookie acceptance box in order to comply with the privacy "
|
486 |
"regulations in your country."
|
@@ -488,23 +696,42 @@ msgstr ""
|
|
488 |
|
489 |
#: framework/extensions/cookies-consent/customizer.php:15,
|
490 |
#: framework/extensions/newsletter-subscribe/customizer.php:12,
|
491 |
-
#: framework/extensions/product-reviews/extension.php:
|
492 |
#: framework/extensions/product-reviews/metabox.php:6,
|
493 |
#: framework/extensions/trending/customizer.php:110,
|
494 |
#: framework/premium/extensions/mega-menu/options.php:6,
|
495 |
#: framework/premium/extensions/shortcuts/customizer.php:534,
|
496 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
|
497 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
|
|
|
|
|
|
|
|
|
|
|
498 |
#: framework/features/header/items/account/options.php:68,
|
499 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
|
500 |
#: framework/premium/features/content-blocks/options/popup.php:30,
|
|
|
|
|
|
|
|
|
501 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
|
502 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
|
503 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
|
504 |
#: framework/premium/features/premium-header/items/contacts/options.php:5,
|
505 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:21,
|
506 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:347,
|
507 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:37
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
|
509 |
msgid "General"
|
510 |
msgstr ""
|
@@ -513,10 +740,18 @@ msgstr ""
|
|
513 |
#: framework/premium/extensions/shortcuts/customizer.php:546,
|
514 |
#: framework/premium/extensions/woocommerce-extra/extension.php:73,
|
515 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
|
|
|
516 |
#: framework/features/header/items/account/options.php:184,
|
517 |
#: framework/features/header/items/account/options.php:390,
|
|
|
|
|
|
|
518 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
|
519 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
|
|
|
|
|
|
|
|
|
520 |
msgid "Type 1"
|
521 |
msgstr ""
|
522 |
|
@@ -524,46 +759,63 @@ msgstr ""
|
|
524 |
#: framework/premium/extensions/shortcuts/customizer.php:551,
|
525 |
#: framework/premium/extensions/woocommerce-extra/extension.php:78,
|
526 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
|
|
|
527 |
#: framework/features/header/items/account/options.php:189,
|
528 |
#: framework/features/header/items/account/options.php:395,
|
|
|
|
|
|
|
529 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
|
530 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
|
|
|
|
|
|
|
|
|
531 |
msgid "Type 2"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: framework/extensions/cookies-consent/customizer.php:40
|
|
|
535 |
msgid "Cookie period"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: framework/extensions/cookies-consent/customizer.php:48
|
|
|
539 |
msgid "One hour"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: framework/extensions/cookies-consent/customizer.php:49
|
|
|
543 |
msgid "One day"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: framework/extensions/cookies-consent/customizer.php:50
|
|
|
547 |
msgid "One week"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: framework/extensions/cookies-consent/customizer.php:51
|
|
|
551 |
msgid "One month"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: framework/extensions/cookies-consent/customizer.php:52
|
|
|
555 |
msgid "Three months"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: framework/extensions/cookies-consent/customizer.php:53
|
|
|
559 |
msgid "Six months"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: framework/extensions/cookies-consent/customizer.php:54
|
|
|
563 |
msgid "One year"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: framework/extensions/cookies-consent/customizer.php:55
|
|
|
567 |
msgid "Forever"
|
568 |
msgstr ""
|
569 |
|
@@ -572,6 +824,7 @@ msgstr ""
|
|
572 |
#: framework/premium/features/content-blocks/hooks-manager.php:243,
|
573 |
#: framework/premium/features/content-blocks/hooks-manager.php:251,
|
574 |
#: framework/premium/features/content-blocks/hooks-manager.php:259,
|
|
|
575 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:86,
|
576 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:115,
|
577 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:143,
|
@@ -579,76 +832,126 @@ msgstr ""
|
|
579 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:199,
|
580 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:227,
|
581 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
|
|
|
|
|
|
|
|
|
582 |
#: framework/premium/features/premium-header/items/contacts/options.php:52,
|
583 |
#: framework/premium/features/premium-header/items/contacts/options.php:78,
|
584 |
#: framework/premium/features/premium-header/items/contacts/options.php:105,
|
585 |
#: framework/premium/features/premium-header/items/contacts/options.php:132,
|
586 |
#: framework/premium/features/premium-header/items/contacts/options.php:159,
|
587 |
#: framework/premium/features/premium-header/items/contacts/options.php:186,
|
588 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:213
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
msgid "Content"
|
590 |
msgstr ""
|
591 |
|
592 |
#: framework/extensions/cookies-consent/customizer.php:64,
|
593 |
-
#: framework/extensions/cookies-consent/helpers.php:30
|
|
|
|
|
594 |
msgid ""
|
595 |
"We use cookies to ensure that we give you the best experience on our website."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: framework/extensions/cookies-consent/customizer.php:76
|
|
|
599 |
msgid "Accept Button text"
|
600 |
msgstr ""
|
601 |
|
602 |
#: framework/extensions/cookies-consent/customizer.php:80,
|
603 |
-
#: framework/extensions/cookies-consent/helpers.php:33
|
|
|
|
|
604 |
msgid "Accept"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: framework/extensions/cookies-consent/customizer.php:85
|
|
|
608 |
msgid "Decline Button text"
|
609 |
msgstr ""
|
610 |
|
611 |
#: framework/extensions/cookies-consent/customizer.php:88,
|
612 |
-
#: framework/extensions/cookies-consent/helpers.php:34
|
|
|
|
|
613 |
msgid "Decline"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: framework/extensions/cookies-consent/customizer.php:98
|
|
|
617 |
msgid "Maximum Width"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: framework/extensions/cookies-consent/customizer.php:119
|
|
|
621 |
msgid "I accept the %sPrivacy Policy%s*"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: framework/extensions/cookies-consent/customizer.php:123
|
|
|
625 |
msgid "This text will appear under each comment form and subscribe form."
|
626 |
msgstr ""
|
627 |
|
628 |
#: framework/extensions/cookies-consent/customizer.php:142,
|
629 |
#: framework/extensions/newsletter-subscribe/customizer.php:147,
|
630 |
-
#: framework/extensions/product-reviews/extension.php:
|
631 |
#: framework/extensions/trending/customizer.php:333,
|
632 |
#: framework/premium/extensions/mega-menu/options.php:516,
|
633 |
#: framework/premium/extensions/shortcuts/customizer.php:778,
|
634 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
|
635 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
|
636 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
|
|
|
|
|
|
|
|
|
637 |
#: framework/features/header/items/account/options.php:531,
|
638 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
|
639 |
#: framework/premium/features/content-blocks/options/popup.php:361,
|
|
|
|
|
|
|
|
|
|
|
640 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
|
641 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
|
642 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
|
643 |
#: framework/premium/features/premium-header/items/contacts/options.php:340,
|
644 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:186,
|
645 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:371,
|
646 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
msgid "Design"
|
648 |
msgstr ""
|
649 |
|
650 |
#: framework/extensions/cookies-consent/customizer.php:147,
|
651 |
-
#: framework/premium/extensions/mega-menu/options.php:605
|
|
|
|
|
652 |
msgid "Text Color"
|
653 |
msgstr ""
|
654 |
|
@@ -675,6 +978,19 @@ msgstr ""
|
|
675 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
|
676 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
|
677 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
#: framework/features/header/items/account/options.php:595,
|
679 |
#: framework/features/header/items/account/options.php:627,
|
680 |
#: framework/features/header/items/account/options.php:657,
|
@@ -692,6 +1008,16 @@ msgstr ""
|
|
692 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
|
693 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
|
694 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
|
696 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
|
697 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
|
@@ -729,7 +1055,62 @@ msgstr ""
|
|
729 |
#: framework/premium/features/premium-header/items/search-input/options.php:656,
|
730 |
#: framework/premium/features/premium-header/items/search-input/options.php:686,
|
731 |
#: framework/premium/features/premium-header/items/search-input/options.php:773,
|
732 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:801
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
msgid "Initial"
|
734 |
msgstr ""
|
735 |
|
@@ -747,6 +1128,14 @@ msgstr ""
|
|
747 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
|
748 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
|
749 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
#: framework/features/header/items/account/options.php:601,
|
751 |
#: framework/features/header/items/account/options.php:632,
|
752 |
#: framework/features/header/items/account/options.php:662,
|
@@ -757,6 +1146,12 @@ msgstr ""
|
|
757 |
#: framework/features/header/items/account/options.php:1062,
|
758 |
#: framework/features/header/items/account/options.php:1098,
|
759 |
#: framework/features/header/items/account/options.php:1137,
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
|
761 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
|
762 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
|
@@ -773,7 +1168,34 @@ msgstr ""
|
|
773 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
|
774 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
|
775 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:404,
|
776 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:778
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
msgid "Hover"
|
778 |
msgstr ""
|
779 |
|
@@ -782,10 +1204,19 @@ msgstr ""
|
|
782 |
#: framework/extensions/cookies-consent/customizer.php:299,
|
783 |
#: framework/premium/extensions/mega-menu/options.php:816,
|
784 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
|
|
|
|
|
|
|
785 |
#: framework/features/header/items/account/options.php:1114,
|
786 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
|
|
|
|
|
787 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
|
788 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:412
|
|
|
|
|
|
|
|
|
789 |
msgid "Background Color"
|
790 |
msgstr ""
|
791 |
|
@@ -795,7 +1226,13 @@ msgstr ""
|
|
795 |
#: framework/premium/extensions/mega-menu/options.php:796,
|
796 |
#: framework/premium/extensions/shortcuts/customizer.php:794,
|
797 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
|
|
|
|
|
|
|
798 |
#: framework/features/header/items/account/options.php:842,
|
|
|
|
|
|
|
799 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
|
800 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
|
801 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
|
@@ -808,11 +1245,26 @@ msgstr ""
|
|
808 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:232,
|
809 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:262,
|
810 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:291,
|
811 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:382
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
msgid "Font Color"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: framework/extensions/cookies-consent/helpers.php:79
|
|
|
816 |
msgid "I accept the %sPrivacy Policy%s"
|
817 |
msgstr ""
|
818 |
|
@@ -820,46 +1272,59 @@ msgstr ""
|
|
820 |
#: framework/extensions/newsletter-subscribe/readme.php:1,
|
821 |
#: framework/premium/extensions/code-snippets/readme.php:1,
|
822 |
#: framework/premium/extensions/post-types-extra/readme.php:1,
|
823 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:1
|
|
|
|
|
|
|
|
|
|
|
824 |
msgid "Instructions"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: framework/extensions/cookies-consent/readme.php:4
|
|
|
828 |
msgid ""
|
829 |
"After installing and activating the Cookies Consent extension you will be "
|
830 |
"able to configure it from this location:"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: framework/extensions/cookies-consent/readme.php:9
|
|
|
834 |
msgid "Customizer"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: framework/extensions/cookies-consent/readme.php:13
|
|
|
838 |
msgid "Navigate to %s and customize the notification to meet your needs."
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: framework/extensions/cookies-consent/readme.php:16
|
|
|
842 |
msgid "Customizer ➝ Cookie Consent"
|
843 |
msgstr ""
|
844 |
|
845 |
#. translators: This is a brand name. Preferably to not be translated
|
846 |
-
#: framework/extensions/newsletter-subscribe/config.php:5
|
|
|
847 |
msgctxt "Extension Brand Name"
|
848 |
msgid "Newsletter Subscribe"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: framework/extensions/newsletter-subscribe/config.php:6
|
|
|
852 |
msgid ""
|
853 |
"Easily capture new leads for your newsletter with the help of a widget, "
|
854 |
"shortcode or even a block inserted on your pages or posts."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: framework/extensions/newsletter-subscribe/customizer.php:4
|
|
|
858 |
msgid "Subscribe Form"
|
859 |
msgstr ""
|
860 |
|
861 |
#: framework/extensions/newsletter-subscribe/customizer.php:18,
|
862 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
|
|
|
863 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
|
864 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
|
865 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:79,
|
@@ -873,24 +1338,50 @@ msgstr ""
|
|
873 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:95,
|
874 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:15,
|
875 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:15,
|
|
|
876 |
#: framework/premium/features/premium-header/items/contacts/options.php:45,
|
877 |
#: framework/premium/features/premium-header/items/contacts/options.php:71,
|
878 |
#: framework/premium/features/premium-header/items/contacts/options.php:98,
|
879 |
#: framework/premium/features/premium-header/items/contacts/options.php:125,
|
880 |
#: framework/premium/features/premium-header/items/contacts/options.php:152,
|
881 |
#: framework/premium/features/premium-header/items/contacts/options.php:179,
|
882 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:206
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
msgid "Title"
|
884 |
msgstr ""
|
885 |
|
886 |
#: framework/extensions/newsletter-subscribe/customizer.php:21,
|
887 |
#: framework/extensions/newsletter-subscribe/helpers.php:42,
|
888 |
-
#: framework/extensions/newsletter-subscribe/helpers.php:96
|
|
|
|
|
|
|
889 |
msgid "Newsletter Updates"
|
890 |
msgstr ""
|
891 |
|
892 |
#: framework/extensions/newsletter-subscribe/customizer.php:27,
|
893 |
-
#: framework/extensions/
|
|
|
|
|
894 |
msgid "Description"
|
895 |
msgstr ""
|
896 |
|
@@ -898,12 +1389,19 @@ msgstr ""
|
|
898 |
#: framework/extensions/newsletter-subscribe/helpers.php:45,
|
899 |
#: framework/extensions/newsletter-subscribe/helpers.php:97,
|
900 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
|
901 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
|
|
|
|
|
|
|
|
|
|
|
902 |
msgid "Enter your email address below to subscribe to our newsletter"
|
903 |
msgstr ""
|
904 |
|
905 |
#: framework/extensions/newsletter-subscribe/customizer.php:42,
|
906 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
|
|
|
|
|
907 |
msgid "List Source"
|
908 |
msgstr ""
|
909 |
|
@@ -912,9 +1410,17 @@ msgstr ""
|
|
912 |
#: framework/features/header/header-options.php:71,
|
913 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
|
914 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
|
|
|
|
|
|
|
915 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:173,
|
916 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:198,
|
917 |
-
#: framework/premium/features/content-blocks/options/hook.php:289
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Default"
|
919 |
msgstr ""
|
920 |
|
@@ -922,62 +1428,96 @@ msgstr ""
|
|
922 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
|
923 |
#: framework/premium/extensions/shortcuts/customizer.php:250,
|
924 |
#: framework/premium/extensions/shortcuts/customizer.php:276,
|
|
|
925 |
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
|
926 |
-
#: framework/premium/features/content-blocks/options/archive.php:48
|
|
|
|
|
|
|
|
|
|
|
927 |
#: framework/premium/static/js/options/IconPicker/Modal.js:148
|
928 |
msgid "Custom"
|
929 |
msgstr ""
|
930 |
|
931 |
#: framework/extensions/newsletter-subscribe/customizer.php:62,
|
932 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
|
|
|
|
|
933 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
|
934 |
msgid "List ID"
|
935 |
msgstr ""
|
936 |
|
937 |
#: framework/extensions/newsletter-subscribe/customizer.php:80,
|
938 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
|
|
|
|
|
939 |
msgid "Name Field"
|
940 |
msgstr ""
|
941 |
|
942 |
#: framework/extensions/newsletter-subscribe/customizer.php:93,
|
943 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
|
|
|
|
|
944 |
msgid "Name Label"
|
945 |
msgstr ""
|
946 |
|
947 |
#: framework/extensions/newsletter-subscribe/customizer.php:95,
|
948 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
949 |
#: framework/extensions/newsletter-subscribe/helpers.php:57,
|
950 |
#: framework/extensions/newsletter-subscribe/helpers.php:108,
|
951 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
|
952 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
msgid "Your name"
|
954 |
msgstr ""
|
955 |
|
956 |
#: framework/extensions/newsletter-subscribe/customizer.php:105,
|
957 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
|
|
|
|
|
958 |
msgid "Mail Label"
|
959 |
msgstr ""
|
960 |
|
961 |
#: framework/extensions/newsletter-subscribe/customizer.php:107,
|
962 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
963 |
#: framework/extensions/newsletter-subscribe/helpers.php:61,
|
964 |
#: framework/extensions/newsletter-subscribe/helpers.php:109,
|
965 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
|
966 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
967 |
msgid "Your email"
|
968 |
msgstr ""
|
969 |
|
970 |
#: framework/extensions/newsletter-subscribe/customizer.php:114,
|
971 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
|
|
|
|
|
972 |
msgid "Button Label"
|
973 |
msgstr ""
|
974 |
|
975 |
#: framework/extensions/newsletter-subscribe/customizer.php:116,
|
976 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
977 |
#: framework/extensions/newsletter-subscribe/helpers.php:52,
|
978 |
#: framework/extensions/newsletter-subscribe/helpers.php:101,
|
979 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
|
980 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
981 |
msgid "Subscribe"
|
982 |
msgstr ""
|
983 |
|
@@ -991,12 +1531,28 @@ msgstr ""
|
|
991 |
#: framework/premium/extensions/shortcuts/customizer.php:427,
|
992 |
#: framework/premium/extensions/shortcuts/customizer.php:483,
|
993 |
#: framework/premium/extensions/shortcuts/customizer.php:742,
|
|
|
994 |
#: framework/premium/features/content-blocks/options/404.php:146,
|
995 |
#: framework/premium/features/content-blocks/options/header.php:166,
|
996 |
-
#: framework/premium/features/content-blocks/options/hook.php:
|
997 |
#: framework/premium/features/content-blocks/options/popup.php:339,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
998 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
|
999 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
msgid "Visibility"
|
1001 |
msgstr ""
|
1002 |
|
@@ -1019,15 +1575,43 @@ msgstr ""
|
|
1019 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
|
1020 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
|
1021 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
|
|
|
|
|
|
|
|
|
1022 |
#: framework/features/header/items/account/options.php:245,
|
1023 |
#: framework/features/header/items/account/options.php:451,
|
1024 |
#: framework/premium/features/content-blocks/options/404.php:157,
|
1025 |
#: framework/premium/features/content-blocks/options/header.php:177,
|
1026 |
-
#: framework/premium/features/content-blocks/options/hook.php:
|
1027 |
#: framework/premium/features/content-blocks/options/popup.php:350,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1028 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
|
1029 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
|
1030 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
msgid "Desktop"
|
1032 |
msgstr ""
|
1033 |
|
@@ -1048,16 +1632,43 @@ msgstr ""
|
|
1048 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
|
1049 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
|
1050 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
|
|
|
|
|
1051 |
#: framework/features/header/items/account/options.php:246,
|
1052 |
#: framework/features/header/items/account/options.php:452,
|
1053 |
#: framework/features/header/items/account/options.php:1179,
|
1054 |
#: framework/premium/features/content-blocks/options/404.php:158,
|
1055 |
#: framework/premium/features/content-blocks/options/header.php:178,
|
1056 |
-
#: framework/premium/features/content-blocks/options/hook.php:
|
1057 |
#: framework/premium/features/content-blocks/options/popup.php:351,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
|
1059 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
|
1060 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgid "Tablet"
|
1062 |
msgstr ""
|
1063 |
|
@@ -1080,41 +1691,83 @@ msgstr ""
|
|
1080 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
|
1081 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
|
1082 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
|
|
|
|
|
|
|
|
|
1083 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:131,
|
1084 |
#: framework/features/header/items/account/options.php:247,
|
1085 |
#: framework/features/header/items/account/options.php:453,
|
1086 |
#: framework/features/header/items/account/options.php:1180,
|
1087 |
#: framework/premium/features/content-blocks/options/404.php:159,
|
1088 |
#: framework/premium/features/content-blocks/options/header.php:179,
|
1089 |
-
#: framework/premium/features/content-blocks/options/hook.php:
|
1090 |
#: framework/premium/features/content-blocks/options/popup.php:352,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
|
1092 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
|
1093 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
|
1094 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1095 |
msgid "Mobile"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: framework/extensions/newsletter-subscribe/customizer.php:152
|
|
|
1099 |
msgid "Title Color"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: framework/extensions/newsletter-subscribe/customizer.php:173
|
|
|
1103 |
msgid "Description Color"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
#: framework/extensions/newsletter-subscribe/customizer.php:204,
|
|
|
1107 |
#: framework/features/header/items/account/options.php:874,
|
1108 |
#: framework/premium/features/premium-header/items/search-input/options.php:184,
|
1109 |
#: framework/premium/features/premium-header/items/search-input/options.php:213,
|
1110 |
#: framework/premium/features/premium-header/items/search-input/options.php:245,
|
1111 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:275
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid "Input Font Color"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
#: framework/extensions/newsletter-subscribe/customizer.php:228,
|
1116 |
#: framework/extensions/newsletter-subscribe/customizer.php:259,
|
1117 |
#: framework/extensions/newsletter-subscribe/customizer.php:295,
|
|
|
|
|
|
|
1118 |
#: framework/features/header/items/account/options.php:896,
|
1119 |
#: framework/features/header/items/account/options.php:926,
|
1120 |
#: framework/features/header/items/account/options.php:962,
|
@@ -1129,59 +1782,99 @@ msgstr ""
|
|
1129 |
#: framework/premium/features/premium-header/items/search-input/options.php:558,
|
1130 |
#: framework/premium/features/premium-header/items/search-input/options.php:631,
|
1131 |
#: framework/premium/features/premium-header/items/search-input/options.php:661,
|
1132 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:691
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1133 |
msgid "Focus"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
#: framework/extensions/newsletter-subscribe/customizer.php:236,
|
|
|
1137 |
#: framework/features/header/items/account/options.php:904,
|
1138 |
#: framework/premium/features/premium-header/items/search-input/options.php:444,
|
1139 |
#: framework/premium/features/premium-header/items/search-input/options.php:473,
|
1140 |
#: framework/premium/features/premium-header/items/search-input/options.php:505,
|
1141 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:535
|
|
|
|
|
|
|
|
|
|
|
1142 |
msgid "Input Border Color"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
#: framework/extensions/newsletter-subscribe/customizer.php:273,
|
|
|
1146 |
#: framework/features/header/items/account/options.php:940,
|
1147 |
#: framework/premium/features/premium-header/items/search-input/options.php:580,
|
1148 |
#: framework/premium/features/premium-header/items/search-input/options.php:608,
|
1149 |
#: framework/premium/features/premium-header/items/search-input/options.php:638,
|
1150 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:668
|
|
|
|
|
|
|
|
|
|
|
1151 |
msgid "Input Background Color"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
#: framework/extensions/newsletter-subscribe/customizer.php:305,
|
1155 |
-
#: framework/
|
|
|
|
|
1156 |
msgid "Button Color"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#: framework/extensions/newsletter-subscribe/customizer.php:334,
|
1160 |
#: framework/extensions/trending/customizer.php:380,
|
1161 |
-
#: framework/premium/extensions/shortcuts/customizer.php:953
|
|
|
|
|
|
|
1162 |
msgid "Container Background"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: framework/extensions/newsletter-subscribe/customizer.php:350
|
|
|
1166 |
msgid "Container Border"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: framework/extensions/newsletter-subscribe/customizer.php:385,
|
1170 |
-
#: framework/extensions/trending/customizer.php:396
|
|
|
|
|
1171 |
msgid "Container Inner Spacing"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
#: framework/extensions/newsletter-subscribe/customizer.php:400,
|
1175 |
-
#: framework/premium/extensions/shortcuts/customizer.php:974
|
|
|
|
|
1176 |
msgid "Container Border Radius"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
|
|
1180 |
msgid "Disable Subscribe Form"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: framework/extensions/newsletter-subscribe/helpers.php:163,
|
1184 |
-
#:
|
|
|
|
|
1185 |
#: static/js/screens/SiteExport.js:85
|
1186 |
msgid "Name"
|
1187 |
msgstr ""
|
@@ -1190,696 +1883,987 @@ msgstr ""
|
|
1190 |
#: framework/features/header/modal/register.php:36,
|
1191 |
#: framework/premium/extensions/shortcuts/customizer.php:130,
|
1192 |
#: framework/premium/extensions/shortcuts/customizer.php:153,
|
|
|
1193 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:215,
|
1194 |
#: framework/premium/extensions/shortcuts/views/bar.php:45,
|
1195 |
-
#: framework/
|
|
|
|
|
|
|
|
|
|
|
|
|
1196 |
msgid "Email"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: framework/extensions/newsletter-subscribe/readme.php:4
|
|
|
1200 |
msgid ""
|
1201 |
"After installing and activating the Newsletter Subscribe\n"
|
1202 |
" extension you will have two possibilities to show your subscribe form:"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: framework/extensions/newsletter-subscribe/readme.php:10
|
|
|
1206 |
msgid "Widget"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: framework/extensions/newsletter-subscribe/readme.php:14
|
|
|
1210 |
msgid "Navigate to %s and place the widget in any widget area you want."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: framework/extensions/newsletter-subscribe/readme.php:17
|
|
|
1214 |
msgid "Appearance ➝ Widgets"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: framework/extensions/newsletter-subscribe/readme.php:25
|
|
|
1218 |
msgid "Single Page Block"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: framework/extensions/newsletter-subscribe/readme.php:29
|
|
|
1222 |
msgid "Navigate to %s and customize the form and more."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: framework/extensions/newsletter-subscribe/readme.php:32
|
|
|
1226 |
msgid "Customizer ➝ Single Posts"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#. translators: This is a brand name. Preferably to not be translated
|
1230 |
-
#: framework/extensions/product-reviews/config.php:5
|
|
|
1231 |
msgctxt "Extension Brand Name"
|
1232 |
msgid "Product Reviews"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: framework/extensions/product-reviews/config.php:6
|
|
|
1236 |
msgid ""
|
1237 |
"This extension lets you easily create an affiliate marketing type of website "
|
1238 |
"by giving you options to create a personalized product review and use your "
|
1239 |
"affiliate links to direct your readers to the purchase page."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: framework/extensions/product-reviews/extension.php:
|
1243 |
-
#: framework/extensions/product-reviews/views/single-top.php:139
|
|
|
|
|
1244 |
msgid "Overall Score"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1248 |
msgid "Review Summary"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1252 |
msgid "Scores Box Width"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1256 |
msgid "Read More Button"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1260 |
msgid "Buy Now Button"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1264 |
msgid "Star Rating Color"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: framework/extensions/product-reviews/extension.php:
|
1268 |
-
#: framework/extensions/product-reviews/extension.php:
|
1269 |
-
#: framework/extensions/product-reviews/extension.php:
|
1270 |
-
#: framework/premium/extensions/mega-menu/options.php:772
|
|
|
|
|
|
|
|
|
1271 |
msgid "Active"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1275 |
msgid "Inactive"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1279 |
msgid "Overll Score Text"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1283 |
msgid "Overll Score Background"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: framework/extensions/product-reviews/extension.php:
|
1287 |
-
#: framework/extensions/product-reviews/extension.php:
|
1288 |
-
#: framework/extensions/product-reviews/extension.php:
|
1289 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
|
|
|
|
|
|
1290 |
msgid "Product Reviews"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1294 |
msgid "Product Review"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1298 |
msgid "Parent Product Review"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1302 |
msgid "All Reviews"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1306 |
msgid "View Product Review"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1310 |
msgid "Add New Product Review"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1314 |
msgid "Add New Review"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1318 |
msgid "Edit Product Review"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1322 |
msgid "Update Product Review"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1326 |
msgid "Search Product Review"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1330 |
msgid "Not Found"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1334 |
msgid "Not found in Trash"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: framework/extensions/product-reviews/extension.php:
|
1338 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
|
|
1339 |
msgid "Categories"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: framework/extensions/product-reviews/extension.php:
|
1343 |
#: framework/extensions/trending/customizer.php:35,
|
1344 |
-
#: framework/extensions/
|
|
|
|
|
|
|
1345 |
msgid "Category"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1349 |
msgid "Search Category"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1353 |
msgid "All Categories"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1357 |
msgid "Parent Category"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1361 |
msgid "Parent Category:"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1365 |
msgid "Edit Category"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1369 |
msgid "Update Category"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1373 |
msgid "Add New Category"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1377 |
msgid "New Category Name"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#. translators: %s is the theme name.
|
1381 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1382 |
msgid "%s Settings"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: framework/extensions/product-reviews/extension.php:
|
|
|
1386 |
msgid "Blocksy"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
#: framework/extensions/product-reviews/helpers.php:30,
|
1390 |
-
#: framework/extensions/product-reviews/metabox.php:179
|
|
|
|
|
1391 |
msgid "Rating"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: framework/extensions/product-reviews/metabox.php:10
|
|
|
1395 |
msgid "Review Entity"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
#: framework/extensions/product-reviews/metabox.php:18,
|
1399 |
-
#: framework/
|
|
|
|
|
1400 |
msgid "Product"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: framework/extensions/product-reviews/metabox.php:19
|
|
|
1404 |
msgid "Book"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: framework/extensions/product-reviews/metabox.php:21
|
|
|
1408 |
msgid "Creative Work Season"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: framework/extensions/product-reviews/metabox.php:22
|
|
|
1412 |
msgid "Creative Work Series"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: framework/extensions/product-reviews/metabox.php:23
|
|
|
1416 |
msgid "Episode"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: framework/extensions/product-reviews/metabox.php:25
|
|
|
1420 |
msgid "Game"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: framework/extensions/product-reviews/metabox.php:27
|
|
|
1424 |
msgid "Local Business"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: framework/extensions/product-reviews/metabox.php:28
|
|
|
1428 |
msgid "Media Object"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: framework/extensions/product-reviews/metabox.php:29
|
|
|
1432 |
msgid "Movie"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: framework/extensions/product-reviews/metabox.php:30
|
|
|
1436 |
msgid "Music Playlist"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: framework/extensions/product-reviews/metabox.php:31
|
|
|
1440 |
msgid "Music Recording"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: framework/extensions/product-reviews/metabox.php:32
|
|
|
1444 |
msgid "Organization"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: framework/extensions/product-reviews/metabox.php:38
|
|
|
1448 |
msgid ""
|
1449 |
"More info about review entity and how to choose the right one can be found "
|
1450 |
"%shere%s."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: framework/extensions/product-reviews/metabox.php:60
|
|
|
1454 |
msgid ""
|
1455 |
"Please note that some of this information (price, sku, brand) won't be "
|
1456 |
"displayed on the front-end. It is solely used for Google's Schema.org markup."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: framework/extensions/product-reviews/metabox.php:69
|
|
|
1460 |
msgid "Product Price"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: framework/extensions/product-reviews/metabox.php:76
|
|
|
1464 |
msgid "Product SKU"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: framework/extensions/product-reviews/metabox.php:83
|
|
|
1468 |
msgid "Product Brand"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: framework/extensions/product-reviews/metabox.php:96
|
|
|
1472 |
msgid "Gallery"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: framework/extensions/product-reviews/metabox.php:107
|
|
|
1476 |
msgid "Affiliate Button Label"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: framework/extensions/product-reviews/metabox.php:109,
|
1480 |
-
#: framework/extensions/product-reviews/views/single-top.php:156
|
|
|
|
|
1481 |
msgid "Buy Now"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: framework/extensions/product-reviews/metabox.php:114
|
|
|
1485 |
msgid "Affiliate Link"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: framework/extensions/product-reviews/metabox.php:120
|
|
|
1489 |
msgid "Open Link In New Tab"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: framework/extensions/product-reviews/metabox.php:126
|
|
|
1493 |
msgid "Sponsored Attribute"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: framework/extensions/product-reviews/metabox.php:148
|
|
|
1497 |
msgid "Read More Button Label"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
#: framework/extensions/product-reviews/metabox.php:150,
|
1501 |
-
#: framework/extensions/product-reviews/views/single-top.php:162
|
|
|
|
|
1502 |
msgid "Read More"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: framework/extensions/product-reviews/metabox.php:170
|
|
|
1506 |
msgid "Short Description"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: framework/extensions/product-reviews/metabox.php:185
|
|
|
1510 |
msgid "Scores"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: framework/extensions/product-reviews/metabox.php:225
|
|
|
1514 |
msgid "Product specs"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
#: framework/extensions/product-reviews/metabox.php:250,
|
1518 |
-
#: framework/extensions/product-reviews/views/single-top.php:262
|
|
|
|
|
1519 |
msgid "Pros"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
#: framework/extensions/product-reviews/metabox.php:270,
|
1523 |
-
#: framework/extensions/product-reviews/views/single-top.php:285
|
|
|
|
|
1524 |
msgid "Cons"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#. translators: This is a brand name. Preferably to not be translated
|
1528 |
#. translators: This is a brand name. Preferably to not be translated
|
1529 |
#: framework/extensions/trending/config.php:5,
|
1530 |
-
#: framework/extensions/trending/customizer.php:97
|
|
|
|
|
1531 |
msgctxt "Extension Brand Name"
|
1532 |
msgid "Trending Posts"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: framework/extensions/trending/config.php:6
|
|
|
1536 |
msgid ""
|
1537 |
"Highlight your most popular posts or products based on the number of "
|
1538 |
"comments or reviews they have gotten in the specified period of time."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
#: framework/extensions/trending/customizer.php:8,
|
|
|
1542 |
#: framework/premium/extensions/shortcuts/views/bar.php:48,
|
1543 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:6
|
|
|
|
|
1544 |
msgid "Products"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
#: framework/extensions/trending/customizer.php:36,
|
1548 |
-
#: framework/extensions/
|
|
|
|
|
1549 |
msgid "All categories"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
#: framework/extensions/trending/customizer.php:41,
|
1553 |
-
#: framework/extensions/
|
|
|
|
|
1554 |
msgid "Taxonomy"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
#: framework/extensions/trending/customizer.php:42,
|
1558 |
-
#: framework/extensions/
|
|
|
|
|
1559 |
msgid "All taxonomies"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: framework/extensions/trending/customizer.php:106
|
|
|
1563 |
msgid "Trending Posts"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: framework/extensions/trending/customizer.php:115
|
|
|
1567 |
msgid "Module Title"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
#: framework/extensions/trending/customizer.php:118,
|
1571 |
-
#: framework/extensions/trending/helpers.php:221
|
|
|
|
|
1572 |
msgid "Trending now"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: framework/extensions/trending/customizer.php:123
|
|
|
1576 |
msgid "Module Title Tag"
|
1577 |
msgstr ""
|
1578 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1579 |
#: framework/extensions/trending/customizer.php:171,
|
|
|
1580 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
|
1581 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:149,
|
1582 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:168
|
|
|
|
|
|
|
1583 |
msgid "Source"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
#: framework/extensions/trending/customizer.php:176,
|
1587 |
-
#: framework/extensions/
|
|
|
|
|
1588 |
msgid "Taxonomies"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
#: framework/extensions/trending/customizer.php:177,
|
|
|
1592 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:155,
|
1593 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:174
|
|
|
|
|
1594 |
msgid "Custom Query"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
#: framework/extensions/trending/customizer.php:200,
|
1598 |
-
#: framework/extensions/
|
|
|
|
|
1599 |
msgid "Posts ID"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
#: framework/extensions/trending/customizer.php:204,
|
1603 |
-
#: framework/extensions/
|
|
|
|
|
1604 |
msgid "Separate posts ID by comma. How to find the %spost ID%s."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: framework/extensions/trending/customizer.php:220
|
|
|
1608 |
msgid "Trending From"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
#: framework/extensions/trending/customizer.php:229,
|
1612 |
-
#: framework/extensions/
|
|
|
|
|
1613 |
msgid "All Time"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: framework/extensions/trending/customizer.php:230
|
|
|
1617 |
msgid "Last 24 Hours"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: framework/extensions/trending/customizer.php:231
|
|
|
1621 |
msgid "Last 7 Days"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: framework/extensions/trending/customizer.php:232
|
|
|
1625 |
msgid "Last Month"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: framework/extensions/trending/customizer.php:245
|
|
|
1629 |
msgid "Image Size"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: framework/extensions/trending/customizer.php:267
|
|
|
1633 |
msgid "Container Visibility"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: framework/extensions/trending/customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1637 |
msgid "Posts Font"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#. translators: This is a brand name. Preferably to not be translated
|
1641 |
-
#: framework/extensions/widgets/config.php:5
|
|
|
1642 |
msgctxt "Extension Brand Name"
|
1643 |
msgid "Widgets"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: framework/extensions/widgets/config.php:6
|
|
|
1647 |
msgid ""
|
1648 |
"Add new handcrafted widgets to your sidebars! Social Network Icons, "
|
1649 |
"Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
|
1650 |
"Posts are the choices available."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: framework/features/header/account-modal.php:37
|
|
|
1654 |
msgid "Close account modal"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
#: framework/features/header/account-modal.php:49,
|
|
|
1658 |
#: framework/features/header/items/account/options.php:498,
|
1659 |
-
#: framework/features/header/items/account/views/logout.php:7
|
|
|
|
|
1660 |
msgid "Login"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: framework/features/header/account-modal.php:53
|
|
|
1664 |
msgid "Sign Up"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: framework/features/header/account-modal.php:72
|
|
|
1668 |
msgid "Back to login"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: framework/features/header/header-options.php:6
|
|
|
1672 |
msgid "Sticky Functionality"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: framework/features/header/header-options.php:32
|
|
|
1676 |
msgid "Only Main Row"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: framework/features/header/header-options.php:37
|
|
|
1680 |
msgid "Top & Main Row"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: framework/features/header/header-options.php:42
|
|
|
1684 |
msgid "All Rows"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: framework/features/header/header-options.php:47
|
|
|
1688 |
msgid "Main & Bottom Row"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: framework/features/header/header-options.php:52
|
|
|
1692 |
msgid "Only Top Row"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: framework/features/header/header-options.php:57
|
|
|
1696 |
msgid "Only Bottom Row"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: framework/features/header/header-options.php:63
|
|
|
1700 |
msgid "Effect"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: framework/features/header/header-options.php:72
|
|
|
1704 |
msgid "Slide Down"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: framework/features/header/header-options.php:73
|
|
|
1708 |
msgid "Fade"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: framework/features/header/header-options.php:74
|
|
|
1712 |
msgid "Auto Hide/Show"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: framework/features/header/header-options.php:79
|
|
|
1716 |
msgid "Offset"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
#: framework/features/header/header-options.php:92,
|
1720 |
-
#: framework/features/header/header-options.php:174
|
|
|
|
|
1721 |
msgid "Enable on"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: framework/features/header/header-options.php:120
|
|
|
1725 |
msgid "Transparent Functionality"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: framework/features/
|
1729 |
-
#: framework/premium/
|
1730 |
-
|
1731 |
-
#: framework/premium/features/content-blocks/options/header.php:142,
|
1732 |
-
#: framework/premium/features/content-blocks/options/hook.php:236,
|
1733 |
-
#: framework/premium/features/content-blocks/options/popup.php:297,
|
1734 |
-
#: framework/premium/features/content-blocks/options/single.php:119
|
1735 |
-
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
|
1736 |
-
#: framework/premium/static/js/footer/EditConditions.js:97
|
1737 |
-
#: static/js/header/EditConditions.js:98
|
1738 |
-
msgid "Display Conditions"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: framework/premium/features/content-blocks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1742 |
msgid "Hooks Locations"
|
1743 |
msgstr ""
|
1744 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1745 |
#: framework/premium/features/content-blocks.php:564,
|
1746 |
-
#: framework/premium/features/content-blocks.php:570
|
|
|
|
|
1747 |
msgid "Content Blocks"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
#: framework/premium/features/content-blocks.php:565,
|
1751 |
-
#: framework/premium/extensions/mega-menu/options.php:333
|
|
|
|
|
1752 |
msgid "Content Block"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: framework/premium/features/content-blocks.php:566
|
|
|
1756 |
msgid "Add New"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: framework/premium/features/content-blocks.php:567
|
|
|
1760 |
msgid "Add New Content Block"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: framework/premium/features/content-blocks.php:568
|
|
|
1764 |
msgid "Edit Content Block"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: framework/premium/features/content-blocks.php:569
|
|
|
1768 |
#: framework/premium/static/js/hooks/CreateHook.js:33
|
1769 |
msgid "New Content Block"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: framework/premium/features/content-blocks.php:571
|
|
|
1773 |
msgid "View Content Block"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: framework/premium/features/content-blocks.php:572
|
|
|
1777 |
msgid "Search Content Blocks"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: framework/premium/features/content-blocks.php:573
|
|
|
1781 |
msgid "Nothing found"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: framework/premium/features/content-blocks.php:574
|
|
|
1785 |
msgid "Nothing found in Trash"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: framework/premium/features/content-blocks.php:863
|
|
|
1789 |
msgid "Close popup"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: framework/premium/features/media-meta-fields.php:29
|
|
|
1793 |
msgid "Attachment Video"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: framework/premium/features/media-meta-fields.php:33
|
|
|
1797 |
msgid "Video URL"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
#. translators: %s: Link to wordpress.org article
|
1801 |
-
#: framework/premium/features/media-meta-fields.php:39
|
|
|
1802 |
msgid ""
|
1803 |
"Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
|
1804 |
"MP4 file into the media library."
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: framework/premium/features/media-meta-fields.php:42
|
|
|
1808 |
msgid "Upload"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: framework/premium/features/media-meta-fields.php:44
|
|
|
1812 |
msgid "Upload Video (MP4 File)"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: framework/premium/features/premium-footer.php:14,
|
1816 |
-
#: framework/premium/features/premium-footer.php:28
|
|
|
|
|
1817 |
msgid "Footer Menu 1"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
#: framework/premium/features/premium-footer.php:29,
|
1821 |
-
#: framework/premium/features/premium-footer
|
|
|
|
|
1822 |
msgid "Footer Menu 2"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: framework/premium/features/premium-header.php:
|
|
|
1826 |
msgid "Header Menu 3"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: framework/premium/features/premium-header.php:
|
|
|
1830 |
msgid "Mobile Menu 1"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: framework/premium/features/premium-header.php:
|
|
|
1834 |
msgid "Mobile Menu 2"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: framework/premium/features/premium-header.php:
|
|
|
1838 |
msgid "Header Widget Area "
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: framework/premium/features/premium-header.php:
|
1842 |
#: framework/premium/extensions/mega-menu/options.php:422,
|
|
|
1843 |
#: framework/features/header/items/account/options.php:140,
|
1844 |
#: framework/features/header/items/account/options.php:365,
|
1845 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447
|
|
|
|
|
|
|
|
|
1846 |
msgid "Icon"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: framework/premium/features/premium-header.php:
|
1850 |
#: framework/premium/extensions/mega-menu/options.php:436,
|
1851 |
#: framework/premium/extensions/woocommerce-extra/extension.php:373,
|
|
|
1852 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
|
1853 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:75,
|
1854 |
-
#: framework/premium/
|
|
|
|
|
|
|
|
|
|
|
1855 |
msgid "Icons Size"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: framework/premium/features/premium-header.php:
|
1859 |
-
#: framework/premium/extensions/mega-menu/options.php:458
|
|
|
|
|
1860 |
msgid "Icon Position"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: framework/premium/features/premium-header.php:
|
1864 |
#: framework/premium/extensions/mega-menu/options.php:465,
|
1865 |
#: framework/premium/extensions/shortcuts/customizer.php:659,
|
|
|
1866 |
#: framework/features/header/items/account/options.php:276,
|
1867 |
#: framework/features/header/items/account/options.php:482,
|
1868 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
|
|
1869 |
msgid "Left"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: framework/premium/features/premium-header.php:
|
1873 |
#: framework/premium/extensions/mega-menu/options.php:466,
|
1874 |
#: framework/premium/extensions/shortcuts/customizer.php:660,
|
|
|
1875 |
#: framework/features/header/items/account/options.php:277,
|
1876 |
#: framework/features/header/items/account/options.php:483,
|
1877 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
|
|
1878 |
msgid "Right"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
|
1882 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
|
|
|
|
|
1883 |
msgid "Newsletter"
|
1884 |
msgstr ""
|
1885 |
|
@@ -1888,169 +2872,235 @@ msgstr ""
|
|
1888 |
#: framework/premium/extensions/shortcuts/customizer.php:889,
|
1889 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:30,
|
1890 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:31,
|
1891 |
-
#: framework/features/header/items/account/options.php:294
|
|
|
|
|
|
|
|
|
|
|
|
|
1892 |
msgid "Text"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
|
1896 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:33,
|
1897 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:34
|
|
|
|
|
|
|
1898 |
msgid "You can add here some arbitrary HTML code."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
|
|
|
1902 |
msgid "Container Type"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
|
|
|
1906 |
msgid "Boxed"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
|
|
|
1910 |
msgid "Content Alignment"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
|
|
|
1914 |
msgid "Newsletter Subscribe"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
|
|
|
1918 |
msgid "Newsletter subscribe form"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
|
|
|
1922 |
msgid "Thank you for subscribing to our newsletter!"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: framework/extensions/product-reviews/views/single-top.php:238
|
|
|
1926 |
msgid "Specs"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
#: framework/features/header/modal/login.php:28,
|
1930 |
-
#: framework/features/header/modal/lostpassword.php:5
|
|
|
|
|
1931 |
msgid "Username or Email Address"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
#: framework/features/header/modal/login.php:33,
|
1935 |
-
#: framework/features/header/modal/register.php:42
|
|
|
|
|
1936 |
msgid "Password"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: framework/features/header/modal/login.php:40
|
|
|
1940 |
msgid "Remember Me"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: framework/features/header/modal/login.php:44
|
|
|
1944 |
msgid "Forgot Password?"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: framework/features/header/modal/login.php:60
|
|
|
1948 |
msgid "Log In"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: framework/features/header/modal/lostpassword.php:13
|
|
|
1952 |
msgid "Get New Password"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: framework/features/header/modal/register.php:30
|
|
|
1956 |
msgid "Username"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: framework/features/header/modal/register.php:58
|
|
|
1960 |
msgid "Registration confirmation will be emailed to you"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: framework/features/header/modal/register.php:63
|
|
|
1964 |
msgid "Register"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
#. translators: This is a brand name. Preferably to not be translated
|
1968 |
-
#: framework/premium/extensions/adobe-typekit/config.php:5
|
|
|
1969 |
msgctxt "Extension Brand Name"
|
1970 |
msgid "Adobe Fonts"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: framework/premium/extensions/adobe-typekit/config.php:6
|
|
|
1974 |
msgid ""
|
1975 |
"Connect your Adobe Fonts project and use the selected fonts throughout "
|
1976 |
"Blocksy and your favorite page builder."
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#. translators: This is a brand name. Preferably to not be translated
|
1980 |
-
#. translators: This is a brand name. Preferably to not be translated
|
1981 |
-
#. translators: This is a brand name. Preferably to not be translated
|
1982 |
#. translators: This is a brand name. Preferably to not be translated
|
1983 |
#: framework/premium/extensions/code-snippets/config.php:5,
|
1984 |
#: framework/premium/extensions/code-snippets/extension.php:24,
|
1985 |
-
#: framework/premium/extensions/code-snippets/extension.php:
|
1986 |
-
#: framework/premium/extensions/code-snippets/extension.php:
|
|
|
|
|
|
|
|
|
1987 |
msgctxt "Extension Brand Name"
|
1988 |
msgid "Custom Code Snippets"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: framework/premium/extensions/code-snippets/config.php:6
|
|
|
1992 |
msgid ""
|
1993 |
"Inject custom code snippets throughout your website. The extension works "
|
1994 |
"globally or on a per post/page basis."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: framework/premium/extensions/code-snippets/extension.php:
|
1998 |
-
#: framework/premium/extensions/code-snippets/extension.php:
|
1999 |
-
#: framework/premium/extensions/code-snippets/extension.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000 |
msgid "After body open scripts"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: framework/premium/extensions/code-snippets/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004 |
msgid ""
|
2005 |
"After activating the Custom Code Snippets extension you will have two ways "
|
2006 |
"to manage your snippets:"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: framework/premium/extensions/code-snippets/readme.php:9
|
|
|
2010 |
msgid "Globally"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: framework/premium/extensions/code-snippets/readme.php:13
|
|
|
2014 |
msgid "Navigate to %s and place there your header, body or footer scripts."
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: framework/premium/extensions/code-snippets/readme.php:16
|
|
|
2018 |
msgid "Customizer ➝ Custom Code Snippets"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: framework/premium/extensions/code-snippets/readme.php:24
|
|
|
2022 |
msgid "Per page/post"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: framework/premium/extensions/code-snippets/readme.php:28
|
|
|
2026 |
msgid ""
|
2027 |
"Edit your page or post, click on %s, scroll down and you will see the %2s "
|
2028 |
"panel."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: framework/premium/extensions/code-snippets/readme.php:32
|
|
|
2032 |
msgid "%s Page Settings"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#. translators: This is a brand name. Preferably to not be translated
|
2036 |
-
#: framework/premium/extensions/custom-fonts/config.php:5
|
|
|
2037 |
msgctxt "Extension Brand Name"
|
2038 |
msgid "Custom Fonts"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: framework/premium/extensions/custom-fonts/config.php:6
|
|
|
2042 |
msgid ""
|
2043 |
"Upload an unlimited number of custom fonts or variable fonts and use them "
|
2044 |
"throughout Blocksy and your favorite page builder."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
#. translators: This is a brand name. Preferably to not be translated
|
2048 |
-
#: framework/premium/extensions/local-google-fonts/config.php:5
|
|
|
2049 |
msgctxt "Extension Brand Name"
|
2050 |
msgid "Local Google Fonts"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: framework/premium/extensions/local-google-fonts/config.php:6
|
|
|
2054 |
msgid ""
|
2055 |
"Serve your chosen Google Fonts from your own web server. This will increase "
|
2056 |
"the loading speed and makes sure your website complies with the privacy "
|
@@ -2058,12 +3108,14 @@ msgid ""
|
|
2058 |
msgstr ""
|
2059 |
|
2060 |
#. translators: This is a brand name. Preferably to not be translated
|
2061 |
-
#: framework/premium/extensions/mega-menu/config.php:5
|
|
|
2062 |
msgctxt "Extension Brand Name"
|
2063 |
msgid "Advanced Menu"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: framework/premium/extensions/mega-menu/config.php:6
|
|
|
2067 |
msgid ""
|
2068 |
"Create beautiful personalised menus that set your website apart from the "
|
2069 |
"others. Add icons and badges to your entries and even add Content Blocks "
|
@@ -2071,79 +3123,114 @@ msgid ""
|
|
2071 |
msgstr ""
|
2072 |
|
2073 |
#: framework/premium/extensions/mega-menu/config.php:10,
|
2074 |
-
#: framework/premium/extensions/shortcuts/config.php:13
|
|
|
|
|
2075 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
|
2076 |
#: framework/extensions/product-reviews/static/js/EditSettings.js:30
|
2077 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
|
2078 |
msgid "Configure"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: framework/premium/extensions/mega-menu/extension.php:99
|
|
|
2082 |
msgid "Menu Item Settings"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: framework/premium/extensions/mega-menu/extension.php:257
|
|
|
2086 |
msgid "New"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
#: framework/premium/extensions/mega-menu/options.php:16,
|
2090 |
-
#: framework/premium/extensions/mega-menu/options.php:530
|
|
|
|
|
2091 |
msgid "Mega Menu Settings"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: framework/premium/extensions/mega-menu/options.php:27
|
|
|
2095 |
msgid "Dropdown Width"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
#: framework/premium/extensions/mega-menu/options.php:35,
|
2099 |
-
#: framework/premium/extensions/mega-menu/options.php:48
|
|
|
|
|
2100 |
msgid "Content Width"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
#: framework/premium/extensions/mega-menu/options.php:36,
|
2104 |
-
#: framework/premium/extensions/mega-menu/options.php:57
|
|
|
|
|
2105 |
msgid "Full Width"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
#: framework/premium/extensions/mega-menu/options.php:37,
|
2109 |
-
#: framework/premium/features/content-blocks/options/archive.php:59
|
|
|
|
|
2110 |
msgid "Custom Width"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: framework/premium/extensions/mega-menu/options.php:56
|
|
|
2114 |
msgid "Default Width"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: framework/premium/extensions/mega-menu/options.php:85
|
|
|
2118 |
msgid "Columns"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: framework/premium/extensions/mega-menu/options.php:320
|
|
|
2122 |
msgid "Custom Content"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: framework/premium/extensions/mega-menu/options.php:324
|
|
|
2126 |
msgid "Content Type"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: framework/premium/extensions/mega-menu/options.php:331
|
|
|
2130 |
msgid "Default (Menu Item)"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: framework/premium/extensions/mega-menu/options.php:332
|
|
|
2134 |
msgid "Custom Text"
|
2135 |
msgstr ""
|
2136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2137 |
#: framework/premium/extensions/mega-menu/options.php:394,
|
2138 |
-
#: framework/premium/extensions/mega-menu/options.php:710
|
|
|
|
|
2139 |
msgid "Item Label Settings"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: framework/premium/extensions/mega-menu/options.php:399
|
|
|
2143 |
msgid "Item Label"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: framework/premium/extensions/mega-menu/options.php:407
|
|
|
2147 |
msgid "Enabled"
|
2148 |
msgstr ""
|
2149 |
|
@@ -2152,87 +3239,125 @@ msgstr ""
|
|
2152 |
#: framework/premium/features/content-blocks/options/archive.php:160,
|
2153 |
#: framework/premium/features/content-blocks/options/header.php:108,
|
2154 |
#: framework/premium/features/content-blocks/options/hook.php:113,
|
2155 |
-
#: framework/premium/features/content-blocks/options/single.php:81
|
|
|
|
|
|
|
|
|
|
|
|
|
2156 |
msgid "Disabled"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: framework/premium/extensions/mega-menu/options.php:409
|
|
|
2160 |
msgid "Heading"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: framework/premium/extensions/mega-menu/options.php:415
|
|
|
2164 |
msgid "Label Link"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: framework/premium/extensions/mega-menu/options.php:481,
|
2168 |
-
#: framework/premium/extensions/mega-menu/options.php:792
|
|
|
|
|
2169 |
msgid "Menu Badge Settings"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
#: framework/premium/extensions/mega-menu/options.php:499,
|
2173 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
|
|
|
|
|
2174 |
msgid "Vertical Alignment"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
#: framework/premium/extensions/mega-menu/options.php:534,
|
2178 |
#: framework/premium/extensions/shortcuts/customizer.php:883,
|
2179 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
|
2180 |
-
#: framework/features/header/items/account/options.php:1033
|
|
|
|
|
|
|
|
|
2181 |
msgid "Background"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: framework/premium/extensions/mega-menu/options.php:548
|
|
|
2185 |
msgid "Link Color"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#: framework/premium/extensions/mega-menu/options.php:568,
|
2189 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
|
|
|
|
|
2190 |
#: framework/premium/features/premium-header/items/contacts/options.php:414,
|
2191 |
#: framework/premium/features/premium-header/items/contacts/options.php:456,
|
2192 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:496
|
|
|
|
|
|
|
2193 |
msgid "Link Initial"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: framework/premium/extensions/mega-menu/options.php:573
|
|
|
2197 |
msgid "Link Hover/Active"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: framework/premium/extensions/mega-menu/options.php:578
|
|
|
2201 |
msgid "Background Hover"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
#: framework/premium/extensions/mega-menu/options.php:585,
|
2205 |
-
#: framework/premium/extensions/mega-menu/options.php:719
|
|
|
|
|
2206 |
msgid "Heading Color"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: framework/premium/extensions/mega-menu/options.php:597,
|
2210 |
#: framework/premium/extensions/mega-menu/options.php:617,
|
2211 |
-
#: framework/premium/extensions/mega-menu/options.php:731
|
|
|
|
|
|
|
2212 |
msgid "Initial Color"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
#: framework/premium/extensions/mega-menu/options.php:624,
|
2216 |
#: framework/premium/extensions/shortcuts/customizer.php:900,
|
|
|
|
|
2217 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:432,
|
2218 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:826
|
|
|
|
|
2219 |
msgid "Items Divider"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: framework/premium/extensions/mega-menu/options.php:639
|
|
|
2223 |
msgid "Columns Divider"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#: framework/premium/extensions/mega-menu/options.php:654,
|
2227 |
-
#:
|
|
|
|
|
2228 |
msgid "Dropdown Shadow"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: framework/premium/extensions/mega-menu/options.php:686
|
|
|
2232 |
msgid "Column Settings"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: framework/premium/extensions/mega-menu/options.php:690
|
|
|
2236 |
msgid "Column Spacing"
|
2237 |
msgstr ""
|
2238 |
|
@@ -2246,6 +3371,8 @@ msgstr ""
|
|
2246 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
|
2247 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
|
2248 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
|
|
|
|
|
2249 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
|
2250 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
|
2251 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
|
@@ -2253,24 +3380,43 @@ msgstr ""
|
|
2253 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
|
2254 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
|
2255 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
|
2256 |
-
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2257 |
msgid "Icon Color"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#. translators: This is a brand name. Preferably to not be translated
|
2261 |
-
#: framework/premium/extensions/post-types-extra/config.php:5
|
|
|
2262 |
msgctxt "Extension Brand Name"
|
2263 |
msgid "Post Types Extra"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: framework/premium/extensions/post-types-extra/config.php:6
|
|
|
2267 |
msgid ""
|
2268 |
"Enables support for Custom Fields inside archive cards and single page post "
|
2269 |
"title, adds a reading progress bar for your posts and lets you set featured "
|
2270 |
"images and colors for your categories archives."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: framework/premium/extensions/post-types-extra/readme.php:4
|
|
|
2274 |
msgid ""
|
2275 |
"After activating this extension you will be able to enable the read progress "
|
2276 |
"bar for your single posts, add a featured image and set different colors to "
|
@@ -2279,71 +3425,86 @@ msgid ""
|
|
2279 |
"taxonomies archive filters."
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: framework/premium/extensions/post-types-extra/readme.php:10
|
|
|
2283 |
msgid "Custom Fields"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: framework/premium/extensions/post-types-extra/readme.php:14
|
|
|
2287 |
msgid ""
|
2288 |
"After setting up your custom fields you will be able to output them from %s "
|
2289 |
"or from %2s."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: framework/premium/extensions/post-types-extra/readme.php:17
|
|
|
2293 |
msgid "Customizer ➝ Blog Posts ➝ Card Options"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: framework/premium/extensions/post-types-extra/readme.php:21
|
|
|
2297 |
msgid "Customizer ➝ Single Posts ➝ Post Title"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: framework/premium/extensions/post-types-extra/readme.php:29
|
|
|
2301 |
msgid "Taxonomies Filters"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: framework/premium/extensions/post-types-extra/readme.php:33
|
|
|
2305 |
msgid "You can enable the taxonomies filters from %s."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: framework/premium/extensions/post-types-extra/readme.php:36
|
|
|
2309 |
msgid "Customizer ➝ Blog Posts ➝ Filters"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: framework/premium/extensions/post-types-extra/readme.php:44
|
|
|
2313 |
msgid "Read Progress Bar"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: framework/premium/extensions/post-types-extra/readme.php:48
|
|
|
2317 |
msgid "This options could be enabled from %s."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: framework/premium/extensions/post-types-extra/readme.php:51
|
|
|
2321 |
msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: framework/premium/extensions/post-types-extra/readme.php:59
|
|
|
2325 |
msgid "Taxonomy Featured Image & Custom Colors"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: framework/premium/extensions/post-types-extra/readme.php:63
|
|
|
2329 |
msgid ""
|
2330 |
"To customize these options simply navigate to %s and edit one of your "
|
2331 |
"categories."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: framework/premium/extensions/post-types-extra/readme.php:66
|
|
|
2335 |
msgid "Dashboard ➝ Posts ➝ Categories"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#. translators: This is a brand name. Preferably to not be translated
|
2339 |
#. translators: This is a brand name. Preferably to not be translated
|
2340 |
#: framework/premium/extensions/shortcuts/config.php:5,
|
2341 |
-
#: framework/premium/extensions/shortcuts/customizer.php:524
|
|
|
|
|
2342 |
msgctxt "Extension Brand Name"
|
2343 |
msgid "Shortcuts Bar"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: framework/premium/extensions/shortcuts/config.php:6
|
|
|
2347 |
msgid ""
|
2348 |
"Easily turn your websites into mobile first experiences. You can easily add "
|
2349 |
"the most important actions at the bottom of the screen for easy access."
|
@@ -2353,7 +3514,12 @@ msgstr ""
|
|
2353 |
#: framework/premium/extensions/shortcuts/customizer.php:35,
|
2354 |
#: framework/premium/extensions/shortcuts/customizer.php:563,
|
2355 |
#: framework/premium/extensions/shortcuts/views/bar.php:13,
|
2356 |
-
#: framework/premium/extensions/shortcuts/views/bar.php:43
|
|
|
|
|
|
|
|
|
|
|
2357 |
msgid "Home"
|
2358 |
msgstr ""
|
2359 |
|
@@ -2363,71 +3529,109 @@ msgstr ""
|
|
2363 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:102,
|
2364 |
#: framework/premium/extensions/shortcuts/views/bar.php:22,
|
2365 |
#: framework/premium/extensions/shortcuts/views/bar.php:44,
|
2366 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2367 |
msgid "Phone"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
#: framework/premium/extensions/shortcuts/customizer.php:192,
|
2371 |
#: framework/premium/extensions/shortcuts/customizer.php:215,
|
2372 |
-
#: framework/premium/extensions/shortcuts/views/bar.php:46
|
|
|
|
|
|
|
2373 |
msgid "Scroll Top"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
#: framework/premium/extensions/shortcuts/customizer.php:293,
|
2377 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
|
2378 |
-
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:322
|
|
|
|
|
|
|
2379 |
msgid "Open link in new tab"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: framework/premium/extensions/shortcuts/customizer.php:300
|
|
|
2383 |
msgid "Set link to nofollow"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: framework/premium/extensions/shortcuts/customizer.php:306
|
|
|
2387 |
msgid "Custom class"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#: framework/premium/extensions/shortcuts/customizer.php:338,
|
2391 |
#: framework/premium/extensions/shortcuts/customizer.php:361,
|
2392 |
-
#: framework/premium/extensions/shortcuts/views/bar.php:47
|
|
|
|
|
|
|
2393 |
msgid "Cart"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
#: framework/premium/extensions/shortcuts/customizer.php:394,
|
2397 |
-
#: framework/premium/extensions/shortcuts/customizer.php:417
|
|
|
|
|
2398 |
msgid "Shop"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
#: framework/premium/extensions/shortcuts/customizer.php:450,
|
2402 |
#: framework/premium/extensions/shortcuts/customizer.php:473,
|
2403 |
#: framework/premium/extensions/woocommerce-extra/readme.php:70,
|
|
|
|
|
|
|
2404 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
|
2405 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
|
2406 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:82,
|
2407 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
|
|
|
|
|
|
|
|
|
2408 |
msgid "Wishlist"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
#: framework/premium/extensions/shortcuts/customizer.php:538,
|
2412 |
-
#: framework/premium/features/content-blocks/admin-ui.php:196
|
|
|
|
|
2413 |
msgid "Type"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: framework/premium/extensions/shortcuts/customizer.php:557
|
|
|
2417 |
msgid "Shortcuts"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
#: framework/premium/extensions/shortcuts/customizer.php:612,
|
2421 |
#: framework/features/header/items/account/options.php:233,
|
2422 |
#: framework/features/header/items/account/options.php:439,
|
2423 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
2424 |
msgid "Label Visibility"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
#: framework/premium/extensions/shortcuts/customizer.php:652,
|
2428 |
#: framework/features/header/items/account/options.php:269,
|
2429 |
#: framework/features/header/items/account/options.php:475,
|
2430 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
2431 |
msgid "Label Position"
|
2432 |
msgstr ""
|
2433 |
|
@@ -2437,26 +3641,40 @@ msgstr ""
|
|
2437 |
#: framework/features/header/items/account/options.php:278,
|
2438 |
#: framework/features/header/items/account/options.php:484,
|
2439 |
#: framework/premium/features/content-blocks/options/hook.php:307,
|
2440 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2441 |
msgid "Bottom"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
#: framework/premium/extensions/shortcuts/customizer.php:672,
|
2445 |
#: framework/features/header/items/account/options.php:215,
|
2446 |
#: framework/features/header/items/account/options.php:421,
|
2447 |
-
#: framework/premium/extensions/
|
|
|
|
|
|
|
|
|
2448 |
msgid "Icon Size"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: framework/premium/extensions/shortcuts/customizer.php:682
|
|
|
2452 |
msgid "Container Height"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: framework/premium/extensions/shortcuts/customizer.php:697
|
|
|
2456 |
msgid "Container Max Width"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: framework/premium/extensions/shortcuts/customizer.php:721
|
|
|
2460 |
msgid "Scroll Interaction"
|
2461 |
msgstr ""
|
2462 |
|
@@ -2470,96 +3688,135 @@ msgstr ""
|
|
2470 |
#: framework/premium/features/content-blocks/options/hook.php:158,
|
2471 |
#: framework/premium/features/content-blocks/options/popup.php:162,
|
2472 |
#: framework/premium/features/content-blocks/options/popup.php:437,
|
2473 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2474 |
msgid "None"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: framework/premium/extensions/shortcuts/customizer.php:727
|
|
|
2478 |
msgid "Hide"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: framework/premium/extensions/shortcuts/customizer.php:769
|
|
|
2482 |
msgid "Shortcuts Bar Display Conditions"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: framework/premium/extensions/shortcuts/customizer.php:770
|
|
|
2486 |
msgid "Add one or more conditions to display the shortcuts bar."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: framework/premium/extensions/shortcuts/customizer.php:784,
|
|
|
2490 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
|
2491 |
#: framework/premium/features/premium-header/items/contacts/options.php:346,
|
2492 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:192,
|
2493 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:376
|
|
|
|
|
|
|
|
|
2494 |
msgid "Font"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
#: framework/premium/extensions/shortcuts/customizer.php:826,
|
|
|
2498 |
#: framework/premium/features/premium-header/items/contacts/options.php:526,
|
2499 |
#: framework/premium/features/premium-header/items/contacts/options.php:555,
|
2500 |
#: framework/premium/features/premium-header/items/contacts/options.php:586,
|
2501 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:616
|
|
|
|
|
|
|
|
|
2502 |
msgid "Icons Color"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: framework/premium/extensions/shortcuts/customizer.php:865
|
|
|
2506 |
msgid "Cart Badge Color"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: framework/premium/extensions/shortcuts/customizer.php:920
|
|
|
2510 |
msgid "Items Divider Height"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
#: framework/premium/extensions/shortcuts/customizer.php:934,
|
2514 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
|
2515 |
#: framework/premium/features/content-blocks/options/popup.php:387,
|
2516 |
-
#:
|
|
|
|
|
|
|
|
|
2517 |
msgid "Shadow"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
#. translators: This is a brand name. Preferably to not be translated
|
2521 |
-
#: framework/premium/extensions/sidebars/config.php:5
|
|
|
2522 |
msgctxt "Extension Brand Name"
|
2523 |
msgid "Multiple Sidebars"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: framework/premium/extensions/sidebars/config.php:6
|
|
|
2527 |
msgid ""
|
2528 |
"Create unlimited personalized sets of widget areas and display them on any "
|
2529 |
"page or post using our conditional logic functionality."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: framework/premium/extensions/sidebars/config.php:10
|
|
|
2533 |
msgid "Create New Sidebar"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: framework/premium/extensions/sidebars/form.php:3
|
|
|
2537 |
#: framework/premium/extensions/sidebars/static/js/main.js:42
|
2538 |
msgid "Create Sidebar/Widget Area"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: framework/premium/extensions/sidebars/form.php:6
|
|
|
2542 |
msgid ""
|
2543 |
"In order to create a new sidebar/widget area simply enter a name in the "
|
2544 |
"input below and click the Create Sidebar button."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: framework/premium/extensions/sidebars/form.php:16
|
|
|
2548 |
#: framework/premium/extensions/sidebars/static/js/main.js:58
|
2549 |
msgid "Create Sidebar"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: framework/premium/extensions/sidebars/form.php:20
|
|
|
2553 |
msgid "Available Sidebars/Widget Areas"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
#. translators: This is a brand name. Preferably to not be translated
|
2557 |
-
#: framework/premium/extensions/white-label/config.php:5
|
|
|
2558 |
msgctxt "Extension Brand Name"
|
2559 |
msgid "White Label"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: framework/premium/extensions/white-label/config.php:6
|
|
|
2563 |
msgid ""
|
2564 |
"Replace Blocksy's branding with your own. Easily hide licensing info and "
|
2565 |
"other sections of the theme and companion plugin from your clients and make "
|
@@ -2567,35 +3824,42 @@ msgid ""
|
|
2567 |
msgstr ""
|
2568 |
|
2569 |
#. translators: This is a brand name. Preferably to not be translated
|
2570 |
-
#: framework/premium/extensions/woocommerce-extra/config.php:5
|
|
|
2571 |
msgctxt "Extension Brand Name"
|
2572 |
msgid "WooCommerce Extra"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: framework/premium/extensions/woocommerce-extra/config.php:6
|
|
|
2576 |
msgid ""
|
2577 |
"Make the shopping experience better for your visitors! Add features such as "
|
2578 |
"Product Quick View, Wishlist functionality and a Floating Add to Cart "
|
2579 |
"button. Customize the single product gallery/slider and the layout."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: framework/premium/extensions/woocommerce-extra/customizer.php:5
|
|
|
2583 |
msgid "Quick View Button"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: framework/premium/extensions/woocommerce-extra/customizer.php:21
|
|
|
2587 |
msgid "Trigger On"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: framework/premium/extensions/woocommerce-extra/customizer.php:29
|
|
|
2591 |
msgid "Button click"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: framework/premium/extensions/woocommerce-extra/customizer.php:30
|
|
|
2595 |
msgid "Image click"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: framework/premium/extensions/woocommerce-extra/customizer.php:31
|
|
|
2599 |
msgid "Card click"
|
2600 |
msgstr ""
|
2601 |
|
@@ -2603,226 +3867,298 @@ msgstr ""
|
|
2603 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
|
2604 |
#: framework/features/header/items/account/options.php:194,
|
2605 |
#: framework/features/header/items/account/options.php:400,
|
2606 |
-
#: framework/premium/extensions/woocommerce-extra/
|
|
|
|
|
|
|
|
|
|
|
2607 |
msgid "Type 3"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
#: framework/premium/extensions/woocommerce-extra/extension.php:88,
|
2611 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
|
2612 |
#: framework/features/header/items/account/options.php:199,
|
2613 |
-
#: framework/features/header/items/account/options.php:405
|
|
|
|
|
|
|
|
|
2614 |
msgid "Type 4"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
#: framework/premium/extensions/woocommerce-extra/extension.php:111,
|
2618 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:130
|
|
|
|
|
2619 |
msgid "Number of Columns"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:154
|
|
|
2623 |
msgid "Gallery Arrows Visibility"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:175
|
|
|
2627 |
msgid "Thumbnails Arrows Visibility"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:384
|
|
|
2631 |
msgid "Icons Spacing"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:428
|
|
|
2635 |
msgid "WooCommerce Offcanvas Filters"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:430
|
|
|
2639 |
msgid "Add widgets here."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2643 |
msgid "Available Filters"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2647 |
msgid "Close filters modal"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2651 |
msgid "Quick view title before"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2655 |
msgid "Quick view title after"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2659 |
msgid "Quick view price before"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2663 |
msgid "Quick view price after"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2667 |
msgid "Quick view summary before"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
|
|
2671 |
msgid "Quick view summary after"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
|
2675 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:25
|
|
|
|
|
2676 |
msgid "Floating Cart"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:17
|
|
|
2680 |
msgid "Position"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
|
2684 |
#: framework/premium/features/content-blocks/hooks-manager.php:407,
|
2685 |
-
#: framework/premium/features/content-blocks/options/hook.php:306
|
|
|
|
|
|
|
2686 |
msgid "Top"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:34
|
|
|
2690 |
msgid "Product Title Visibility"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:58
|
|
|
2694 |
msgid "Floating Cart Visibility"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
|
|
2698 |
msgid "Close quick view"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
|
|
2702 |
msgid "Go to product page"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
|
|
2706 |
msgid "Quick view toggle"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
|
|
2710 |
msgid "Quick view icon"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
|
|
2714 |
msgid "Filter"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
|
|
|
2718 |
msgid "Off Canvas Filter"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
|
|
|
2722 |
msgid "Filter Widgets"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
|
|
|
2726 |
msgid "Widgets"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
|
|
|
2730 |
msgid "Widgets Vertical Spacing"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
|
|
|
2734 |
msgid "Widgets Title Font"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
|
|
|
2738 |
msgid "Widgets Title Font Color"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
|
|
|
2742 |
msgid "Widgets Font"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
|
|
|
2746 |
msgid "Widgets Font Color"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
|
|
|
2750 |
#: framework/premium/features/premium-header/items/contacts/options.php:408,
|
2751 |
#: framework/premium/features/premium-header/items/contacts/options.php:451,
|
2752 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:491
|
|
|
|
|
|
|
2753 |
msgid "Text Initial"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
|
|
|
2757 |
#: framework/premium/features/premium-header/items/contacts/options.php:420,
|
2758 |
#: framework/premium/features/premium-header/items/contacts/options.php:461,
|
2759 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:501
|
|
|
|
|
|
|
2760 |
msgid "Link Hover"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
|
|
|
2764 |
msgid "Filter Button & Panel"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
|
|
|
2768 |
msgid "Filter Icon Type"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
|
|
|
2772 |
msgid "Filter Button Visibility"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
|
|
|
2776 |
msgid "Panel Reveal"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
|
|
|
2780 |
msgid "Left Side"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
|
|
|
2784 |
msgid "Right Side"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
|
|
|
2788 |
msgid "Panel Width"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
|
|
|
2792 |
msgid "Panel Background"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
|
|
|
2796 |
msgid "Panel Shadow"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
|
2800 |
-
#: framework/features/header/items/account/options.php:1022
|
|
|
|
|
2801 |
msgid "Close Button Type"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
|
2805 |
-
#: framework/features/header/items/account/options.php:1031
|
|
|
|
|
2806 |
msgid "Simple"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
|
2810 |
-
#: framework/features/header/items/account/options.php:1032
|
|
|
|
|
2811 |
msgid "Border"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
|
2815 |
-
#: framework/features/header/items/account/options.php:1075
|
|
|
|
|
2816 |
msgid "Border Color"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:4
|
|
|
2820 |
msgid ""
|
2821 |
"After installing and activating the WooCommerce Extra extension you will "
|
2822 |
"have these features:"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:10
|
|
|
2826 |
msgid "Product Quick View"
|
2827 |
msgstr ""
|
2828 |
|
@@ -2830,222 +4166,334 @@ msgstr ""
|
|
2830 |
#: framework/premium/extensions/woocommerce-extra/readme.php:29,
|
2831 |
#: framework/premium/extensions/woocommerce-extra/readme.php:44,
|
2832 |
#: framework/premium/extensions/woocommerce-extra/readme.php:59,
|
2833 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:74
|
|
|
|
|
|
|
|
|
|
|
2834 |
msgid "Navigate to %s."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:17
|
|
|
2838 |
msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:32
|
|
|
2842 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:40
|
|
|
2846 |
msgid "Advanced Gallery & Slider"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:47
|
|
|
2850 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:55
|
|
|
2854 |
msgid "Share Box"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:62
|
|
|
2858 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:77
|
|
|
2862 |
msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: framework/premium/features/content-blocks/admin-ui.php:17
|
|
|
2866 |
msgid "Enable"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: framework/premium/features/content-blocks/admin-ui.php:18
|
|
|
2870 |
msgid "Disable"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: framework/premium/features/content-blocks/admin-ui.php:69
|
|
|
2874 |
msgid "Enabled %s content block."
|
2875 |
msgid_plural "Enabled %s content blocks."
|
2876 |
msgstr[0] ""
|
2877 |
msgstr[1] ""
|
2878 |
|
2879 |
-
#: framework/premium/features/content-blocks/admin-ui.php:94
|
|
|
2880 |
msgid "Disabled %s content block."
|
2881 |
msgid_plural "Disabled %s content blocks."
|
2882 |
msgstr[0] ""
|
2883 |
msgstr[1] ""
|
2884 |
|
2885 |
-
#: framework/premium/features/content-blocks/admin-ui.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2886 |
msgid "All types"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: framework/premium/features/content-blocks/admin-ui.php:197
|
|
|
2890 |
msgid "Location/Trigger"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: framework/premium/features/content-blocks/admin-ui.php:198
|
|
|
2894 |
msgid "Conditions"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: framework/premium/features/content-blocks/admin-ui.php:199
|
|
|
2898 |
msgid "Output"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: framework/premium/features/content-blocks/admin-ui.php:200
|
|
|
2902 |
msgid "Enable/Disable"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
#: framework/premium/features/content-blocks/admin-ui.php:226,
|
2906 |
-
#: framework/premium/features/content-blocks/options/popup.php:163
|
|
|
|
|
2907 |
msgid "On scroll"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
#: framework/premium/features/content-blocks/admin-ui.php:227,
|
2911 |
-
#: framework/premium/features/content-blocks/options/popup.php:164
|
|
|
|
|
2912 |
msgid "On scroll to element"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
#: framework/premium/features/content-blocks/admin-ui.php:228,
|
2916 |
-
#: framework/premium/features/content-blocks/options/popup.php:165
|
|
|
|
|
2917 |
msgid "On page load"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
#: framework/premium/features/content-blocks/admin-ui.php:229,
|
2921 |
-
#: framework/premium/features/content-blocks/options/popup.php:166
|
|
|
|
|
2922 |
msgid "After inactivity"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
#: framework/premium/features/content-blocks/admin-ui.php:230,
|
2926 |
-
#: framework/premium/features/content-blocks/options/popup.php:167
|
|
|
|
|
2927 |
msgid "After x time"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
#: framework/premium/features/content-blocks/admin-ui.php:231,
|
2931 |
-
#: framework/premium/features/content-blocks/options/popup.php:168
|
|
|
|
|
2932 |
msgid "After x pages"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
#: framework/premium/features/content-blocks/admin-ui.php:232,
|
2936 |
-
#: framework/premium/features/content-blocks/options/popup.php:169
|
|
|
|
|
2937 |
msgid "On page exit intent"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: framework/premium/features/content-blocks/admin-ui.php:236
|
|
|
2941 |
msgid "Down"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: framework/premium/features/content-blocks/admin-ui.php:237
|
|
|
2945 |
msgid "Up"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:11
|
|
|
2949 |
msgid "WP head"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
#: framework/premium/features/content-blocks/hooks-manager.php:13,
|
2953 |
#: framework/premium/features/content-blocks/hooks-manager.php:22,
|
2954 |
#: framework/premium/features/content-blocks/hooks-manager.php:32,
|
2955 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:41
|
|
|
|
|
|
|
|
|
2956 |
msgid "Head"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:20
|
|
|
2960 |
msgid "WP head start"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:30
|
|
|
2964 |
msgid "WP head end"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:39
|
|
|
2968 |
msgid "WP body open"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:48
|
|
|
2972 |
msgid "Header before"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
2976 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
2977 |
-
msgid "Header"
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:57
|
2981 |
msgid "Header after"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:66
|
|
|
2985 |
msgid "Desktop top"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
#: framework/premium/features/content-blocks/hooks-manager.php:68,
|
2989 |
#: framework/premium/features/content-blocks/hooks-manager.php:77,
|
2990 |
#: framework/premium/features/content-blocks/hooks-manager.php:86,
|
2991 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:95
|
|
|
|
|
|
|
|
|
2992 |
msgid "Header offcanvas"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:75
|
|
|
2996 |
msgid "Desktop bottom"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:84
|
|
|
3000 |
msgid "Mobile top"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:93
|
|
|
3004 |
msgid "Mobile bottom"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:102
|
|
|
3008 |
msgid "Sidebar before"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
#: framework/premium/features/content-blocks/hooks-manager.php:103,
|
3012 |
#: framework/premium/features/content-blocks/hooks-manager.php:110,
|
3013 |
#: framework/premium/features/content-blocks/hooks-manager.php:117,
|
3014 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:124
|
|
|
|
|
|
|
|
|
3015 |
msgid "Left/Right sidebar"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:109
|
|
|
3019 |
msgid "Sidebar start"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:116
|
|
|
3023 |
msgid "Sidebar end"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:123
|
|
|
3027 |
msgid "Sidebar after"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:130
|
|
|
3031 |
msgid "Dynamic sidebar before"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
#: framework/premium/features/content-blocks/hooks-manager.php:131,
|
3035 |
#: framework/premium/features/content-blocks/hooks-manager.php:138,
|
3036 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:146
|
|
|
|
|
|
|
3037 |
msgid "All widget areas"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:137
|
|
|
3041 |
msgid "Dynamic sidebar"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:145
|
|
|
3045 |
msgid "Dynamic sidebar after"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:154
|
|
|
3049 |
msgid "Before section"
|
3050 |
msgstr ""
|
3051 |
|
@@ -3058,69 +4506,99 @@ msgstr ""
|
|
3058 |
#: framework/premium/features/content-blocks/hooks-manager.php:203,
|
3059 |
#: framework/premium/features/content-blocks/hooks-manager.php:211,
|
3060 |
#: framework/premium/features/content-blocks/hooks-manager.php:219,
|
3061 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:227
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3062 |
msgid "Page/post title"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
#: framework/premium/features/content-blocks/hooks-manager.php:162,
|
3066 |
#: framework/premium/features/content-blocks/hooks-manager.php:280,
|
3067 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:322
|
|
|
|
|
|
|
3068 |
msgid "Before title"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:170
|
|
|
3072 |
msgid "Before description"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:178
|
|
|
3076 |
msgid "Before breadcrumbs"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:186
|
|
|
3080 |
msgid "Before post meta"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
#: framework/premium/features/content-blocks/hooks-manager.php:194,
|
3084 |
#: framework/premium/features/content-blocks/hooks-manager.php:287,
|
3085 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:329
|
|
|
|
|
|
|
3086 |
msgid "After title"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:202
|
|
|
3090 |
msgid "After description"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:210
|
|
|
3094 |
msgid "After breadcrumbs"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:218
|
|
|
3098 |
msgid "After post meta"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:226
|
|
|
3102 |
msgid "After section"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:234
|
|
|
3106 |
msgid "Before content"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
#: framework/premium/features/content-blocks/hooks-manager.php:242,
|
3110 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:415
|
|
|
|
|
3111 |
msgid "Top content"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
#: framework/premium/features/content-blocks/hooks-manager.php:250,
|
3115 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:437
|
|
|
|
|
3116 |
msgid "Bottom content"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:258
|
|
|
3120 |
msgid "After content"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:266
|
|
|
3124 |
msgid "Before comments"
|
3125 |
msgstr ""
|
3126 |
|
@@ -3129,23 +4607,33 @@ msgstr ""
|
|
3129 |
#: framework/premium/features/content-blocks/hooks-manager.php:281,
|
3130 |
#: framework/premium/features/content-blocks/hooks-manager.php:288,
|
3131 |
#: framework/premium/features/content-blocks/hooks-manager.php:295,
|
3132 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:302
|
|
|
|
|
|
|
|
|
|
|
|
|
3133 |
msgid "Comments"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:273
|
|
|
3137 |
msgid "Top comments"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:294
|
|
|
3141 |
msgid "Bottom comments"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:301
|
|
|
3145 |
msgid "After comments"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:308
|
|
|
3149 |
msgid "Before related posts"
|
3150 |
msgstr ""
|
3151 |
|
@@ -3158,75 +4646,105 @@ msgstr ""
|
|
3158 |
#: framework/premium/features/content-blocks/hooks-manager.php:351,
|
3159 |
#: framework/premium/features/content-blocks/hooks-manager.php:358,
|
3160 |
#: framework/premium/features/content-blocks/hooks-manager.php:366,
|
3161 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:373
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3162 |
msgid "Related posts"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:315
|
|
|
3166 |
msgid "Related posts top"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:336
|
|
|
3170 |
msgid "Card top"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:343
|
|
|
3174 |
msgid "Before featured image"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:350
|
|
|
3178 |
msgid "After featured image"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:357
|
|
|
3182 |
msgid "Card bottom"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:365
|
|
|
3186 |
msgid "Related posts bottom"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:372
|
|
|
3190 |
msgid "After related posts"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
#: framework/premium/features/content-blocks/hooks-manager.php:379,
|
3194 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
|
|
|
|
|
3195 |
msgid "Before"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
#: framework/premium/features/content-blocks/hooks-manager.php:380,
|
3199 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:387
|
|
|
|
|
3200 |
msgid "Loop"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
#: framework/premium/features/content-blocks/hooks-manager.php:386,
|
3204 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
|
|
|
|
|
3205 |
msgid "After"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:393
|
|
|
3209 |
msgid "Start"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
#: framework/premium/features/content-blocks/hooks-manager.php:394,
|
3213 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:401
|
|
|
|
|
3214 |
msgid "Loop card"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:400
|
|
|
3218 |
msgid "End"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:423
|
|
|
3222 |
msgid "After certain number of blocks"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:430
|
|
|
3226 |
msgid "Before certain number of headings"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:453
|
|
|
3230 |
msgid "Login form start"
|
3231 |
msgstr ""
|
3232 |
|
@@ -3239,447 +4757,568 @@ msgstr ""
|
|
3239 |
#: framework/premium/features/content-blocks/hooks-manager.php:496,
|
3240 |
#: framework/premium/features/content-blocks/hooks-manager.php:503,
|
3241 |
#: framework/premium/features/content-blocks/hooks-manager.php:510,
|
3242 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:517
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3243 |
msgid "Auth forms"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:460
|
|
|
3247 |
msgid "Login form end"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:467
|
|
|
3251 |
msgid "Login form modal start"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:474
|
|
|
3255 |
msgid "Login form modal end"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:481
|
|
|
3259 |
msgid "Register form start"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:488
|
|
|
3263 |
msgid "Register form end"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:495
|
|
|
3267 |
msgid "Register form modal start"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:502
|
|
|
3271 |
msgid "Register form modal end"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:509
|
|
|
3275 |
msgid "Lost password form modal start"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:516
|
|
|
3279 |
msgid "Lost password form modal end"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:524
|
|
|
3283 |
msgid "Before main content"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:530
|
|
|
3287 |
msgid "After main content"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:536
|
|
|
3291 |
msgid "Offcanvas Filters Top"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:542
|
|
|
3295 |
msgid "Offcanvas Filters Bottom"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:545
|
|
|
3299 |
msgid "WooCommerce Global"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:550
|
|
|
3303 |
msgid "Archive description"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:555
|
|
|
3307 |
msgid "Before shop loop"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:572
|
|
|
3311 |
msgid "Before shop loop item title"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:577
|
|
|
3315 |
msgid "After shop loop item title"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:582
|
|
|
3319 |
msgid "Before shop loop item price"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:587
|
|
|
3323 |
msgid "After shop loop item price"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:592
|
|
|
3327 |
msgid "Before shop loop item actions"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:597
|
|
|
3331 |
msgid "After shop loop item actions"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:602
|
|
|
3335 |
msgid "After shop loop"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:604
|
|
|
3339 |
msgid "WooCommerce Archive"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:609
|
|
|
3343 |
msgid "Before single product"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:627
|
|
|
3347 |
msgid "Product meta start"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:631
|
|
|
3351 |
msgid "Product meta end"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:635
|
|
|
3355 |
msgid "Share"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:639
|
|
|
3359 |
msgid "After single product"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:645
|
|
|
3363 |
msgid "Before single product excerpt"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:650
|
|
|
3367 |
msgid "After single product excerpt"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:655
|
|
|
3371 |
msgid "Before single product tabs"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:661
|
|
|
3375 |
msgid "After single product tabs"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:665
|
|
|
3379 |
msgid "WooCommerce Product"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:670
|
|
|
3383 |
msgid "Cart is empty"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:674
|
|
|
3387 |
msgid "Before cart"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:678
|
|
|
3391 |
msgid "Before cart table"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:682
|
|
|
3395 |
msgid "Before cart contents"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:686
|
|
|
3399 |
msgid "Cart contents"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:690
|
|
|
3403 |
msgid "After cart contents"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:694
|
|
|
3407 |
msgid "Cart coupon"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:698
|
|
|
3411 |
msgid "Cart actions"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:702
|
|
|
3415 |
msgid "After cart table"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:706
|
|
|
3419 |
msgid "Cart collaterals"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:710
|
|
|
3423 |
msgid "Before cart totals"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:714
|
|
|
3427 |
msgid "Cart totals before order total"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:718
|
|
|
3431 |
msgid "Cart totals after order total"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:722
|
|
|
3435 |
msgid "Proceed to checkout"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:726
|
|
|
3439 |
msgid "After cart totals"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:730
|
|
|
3443 |
msgid "After cart"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:735
|
|
|
3447 |
msgid "Before Mini Cart"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:740
|
|
|
3451 |
msgid "Before Mini Cart Contents"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:745
|
|
|
3455 |
msgid "Mini Cart Contents"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:750
|
|
|
3459 |
msgid "Widget Shopping Cart Before Buttons"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:755
|
|
|
3463 |
msgid "Widget Shopping Cart After Buttons"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:760
|
|
|
3467 |
msgid "After Mini Cart"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:762
|
|
|
3471 |
msgid "WooCommerce Cart"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:768
|
|
|
3475 |
msgid "Before checkout form"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:772
|
|
|
3479 |
msgid "Before customer details"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:776
|
|
|
3483 |
msgid "After customer details"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:780
|
|
|
3487 |
msgid "Checkout billing"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:784
|
|
|
3491 |
msgid "Before checkout billing form"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:788
|
|
|
3495 |
msgid "After checkout billing form"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:792
|
|
|
3499 |
msgid "Before order notes"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:796
|
|
|
3503 |
msgid "After order notes"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:800
|
|
|
3507 |
msgid "Checkout shipping"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:804
|
|
|
3511 |
msgid "Checkout before order review"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:808
|
|
|
3515 |
msgid "Checkout order review"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:812
|
|
|
3519 |
msgid "Review order before cart contents"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:816
|
|
|
3523 |
msgid "Review order after cart contents"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:820
|
|
|
3527 |
msgid "Review order before order total"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:824
|
|
|
3531 |
msgid "Review order after order total"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:828
|
|
|
3535 |
msgid "Review order before payment"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:832
|
|
|
3539 |
msgid "Review order before submit"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:836
|
|
|
3543 |
msgid "Review order after submit"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:840
|
|
|
3547 |
msgid "Review order after payment"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:844
|
|
|
3551 |
msgid "Checkout after order review"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:848
|
|
|
3555 |
msgid "After checkout form"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:851
|
|
|
3559 |
msgid "WooCommerce Checkout"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:857
|
|
|
3563 |
msgid "Before my account"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:861
|
|
|
3567 |
msgid "Before account navigation"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:865
|
|
|
3571 |
msgid "Account navigation"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:869
|
|
|
3575 |
msgid "After account navigation"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:873
|
|
|
3579 |
msgid "Account content"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:877
|
|
|
3583 |
msgid "Account dashboard"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:881
|
|
|
3587 |
msgid "After my account"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
#: framework/premium/features/content-blocks/hooks-manager.php:883,
|
3591 |
#: framework/features/header/items/account/options.php:17,
|
3592 |
-
#: framework/features/header/items/account/options.php:18
|
|
|
|
|
|
|
3593 |
msgid "WooCommerce Account"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:889
|
|
|
3597 |
msgid "WP footer"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
3601 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
3602 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:906
|
3603 |
-
msgid "Footer"
|
3604 |
-
msgstr ""
|
3605 |
-
|
3606 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:897
|
3607 |
msgid "Footer before"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:905
|
|
|
3611 |
msgid "Footer after"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:920
|
|
|
3615 |
msgid "Custom Hook (%s)"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
#: framework/premium/features/content-blocks/hooks-manager.php:926,
|
3619 |
-
#: framework/premium/features/content-blocks/options/hook.php:197
|
|
|
|
|
3620 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:90
|
3621 |
msgid "After Block Number"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
#: framework/premium/features/content-blocks/hooks-manager.php:932,
|
3625 |
-
#: framework/premium/features/content-blocks/options/hook.php:214
|
|
|
|
|
3626 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:112
|
3627 |
msgid "Before Heading Number"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: framework/extensions/widgets/widgets/ct-about-me/widget.php:13
|
|
|
3631 |
msgid "About Me"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
|
|
|
3635 |
msgid "About me"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
|
3639 |
#: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
|
3640 |
#: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
|
3641 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
|
|
|
|
|
|
|
|
|
3642 |
msgid "Advertisement"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:31
|
|
|
3646 |
msgid "Code"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:32
|
|
|
3650 |
msgid "Image"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:42
|
|
|
3654 |
msgid "Ad Code"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:58
|
|
|
3658 |
msgid "Upload Image"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
|
3662 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:66
|
|
|
|
|
3663 |
msgid "Select Image"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
|
3667 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:67
|
|
|
|
|
3668 |
msgid "Change Image"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
|
3672 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:126
|
|
|
|
|
3673 |
msgid "Image Ratio"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:75
|
|
|
3677 |
msgid "Ad URL"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:18,
|
3681 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
|
3682 |
-
#: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
|
|
|
|
|
|
|
3683 |
msgid "Contact Info"
|
3684 |
msgstr ""
|
3685 |
|
@@ -3688,7 +5327,13 @@ msgstr ""
|
|
3688 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
|
3689 |
#: framework/premium/features/premium-header/items/contacts/options.php:17,
|
3690 |
#: framework/premium/features/premium-header/items/contacts/options.php:46,
|
3691 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:22
|
|
|
|
|
|
|
|
|
|
|
|
|
3692 |
msgid "Address:"
|
3693 |
msgstr ""
|
3694 |
|
@@ -3697,7 +5342,13 @@ msgstr ""
|
|
3697 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
|
3698 |
#: framework/premium/features/premium-header/items/contacts/options.php:24,
|
3699 |
#: framework/premium/features/premium-header/items/contacts/options.php:72,
|
3700 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:29
|
|
|
|
|
|
|
|
|
|
|
|
|
3701 |
msgid "Phone:"
|
3702 |
msgstr ""
|
3703 |
|
@@ -3706,12 +5357,20 @@ msgstr ""
|
|
3706 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
|
3707 |
#: framework/premium/features/premium-header/items/contacts/options.php:32,
|
3708 |
#: framework/premium/features/premium-header/items/contacts/options.php:99,
|
3709 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:37
|
|
|
|
|
|
|
|
|
|
|
|
|
3710 |
msgid "Mobile:"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:75,
|
3714 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:41
|
|
|
|
|
3715 |
msgid "Address"
|
3716 |
msgstr ""
|
3717 |
|
@@ -3728,400 +5387,536 @@ msgstr ""
|
|
3728 |
#: framework/premium/features/premium-header/items/contacts/options.php:139,
|
3729 |
#: framework/premium/features/premium-header/items/contacts/options.php:166,
|
3730 |
#: framework/premium/features/premium-header/items/contacts/options.php:193,
|
3731 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:220
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3732 |
msgid "Link (optional)"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:159,
|
3736 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:121
|
|
|
|
|
3737 |
msgid "Work Hours"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:165,
|
3741 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:126
|
|
|
|
|
3742 |
msgid "Opening hours"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:187,
|
3746 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:148
|
|
|
|
|
3747 |
msgid "Fax"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:193,
|
3751 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:153
|
|
|
|
|
3752 |
msgid "Fax:"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:221,
|
3756 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:180
|
|
|
|
|
3757 |
msgid "Email:"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:243,
|
3761 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:202
|
|
|
|
|
3762 |
msgid "Website"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:249,
|
3766 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:207
|
|
|
|
|
3767 |
msgid "Website:"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
|
3771 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:82,
|
3772 |
-
#: framework/premium/features/content-blocks/options/archive.php:46
|
|
|
|
|
|
|
3773 |
msgid "Small"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:281,
|
3777 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:84
|
|
|
|
|
3778 |
msgid "Large"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:286,
|
3782 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:89,
|
3783 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:267
|
|
|
|
|
|
|
3784 |
msgid "Icons Shape Type"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:294,
|
3788 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:97,
|
3789 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:275
|
|
|
|
|
|
|
3790 |
msgid "Rounded"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:295,
|
3794 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:98,
|
3795 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:276
|
|
|
|
|
|
|
3796 |
msgid "Square"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:305,
|
3800 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:108,
|
3801 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:287
|
|
|
|
|
|
|
3802 |
msgid "Shape Fill Type"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:312,
|
3806 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:115,
|
3807 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:294
|
|
|
|
|
|
|
3808 |
msgid "Solid"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:313,
|
3812 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:116,
|
3813 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:295
|
|
|
|
|
|
|
3814 |
msgid "Outline"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
|
|
|
3818 |
msgid "Contact info"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: framework/extensions/widgets/widgets/ct-facebook/options.php:22
|
|
|
3822 |
msgid "Page URL"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#: framework/extensions/widgets/widgets/ct-facebook/options.php:30
|
|
|
3826 |
msgid "Profile Photos"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: framework/extensions/widgets/widgets/ct-facebook/options.php:37
|
|
|
3830 |
msgid "Timeline"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: framework/extensions/widgets/widgets/ct-facebook/options.php:44
|
|
|
3834 |
msgid "Cover Photo"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: framework/extensions/widgets/widgets/ct-facebook/options.php:51
|
|
|
3838 |
msgid "Small Header"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: framework/extensions/widgets/widgets/ct-facebook/widget.php:14
|
|
|
3842 |
msgid "Facebook like box"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:103
|
|
|
3846 |
msgid "Widget Design"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:108
|
|
|
3850 |
msgid "Without Thumbnails"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:109
|
|
|
3854 |
msgid "Small Thumbnails"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:110
|
|
|
3858 |
msgid "Large Thumbnails"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:111
|
|
|
3862 |
msgid "First Thumbnail Large"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:112
|
|
|
3866 |
msgid "Rounded Thumbnails"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:113
|
|
|
3870 |
msgid "Numbered"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
3874 |
-
|
3875 |
-
msgstr ""
|
3876 |
-
|
3877 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:193
|
3878 |
msgid "Sort by"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:199
|
|
|
3882 |
msgid "Recent"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:200
|
|
|
3886 |
msgid "Most Commented"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:201
|
|
|
3890 |
msgid "Random"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:208
|
|
|
3894 |
msgid "Order by"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:214
|
|
|
3898 |
msgid "1 Week"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:215
|
|
|
3902 |
msgid "1 Month"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:216
|
|
|
3906 |
msgid "3 Months"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:217
|
|
|
3910 |
msgid "6 Months"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:218
|
|
|
3914 |
msgid "1 Year"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:225
|
|
|
3918 |
msgid "Posts Count"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:265
|
|
|
3922 |
msgid "Pages ID"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:269
|
|
|
3926 |
msgid "Separate pages ID by comma. More info %shere%s."
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:287
|
|
|
3930 |
msgid "Pages Count"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:298
|
|
|
3934 |
msgid "Show Date"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:305
|
|
|
3938 |
msgid "Show Comments"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:312
|
|
|
3942 |
msgid "Show Excerpt"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:324
|
|
|
3946 |
msgid "Excerpt Lenght"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: framework/extensions/widgets/widgets/ct-posts/view.php:220
|
|
|
3950 |
msgid "1 Comment"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: framework/extensions/widgets/widgets/ct-posts/view.php:220
|
|
|
3954 |
msgid "% Comments"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:18,
|
3958 |
#: framework/extensions/widgets/widgets/ct-quote/view.php:12,
|
3959 |
#: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
|
3960 |
-
#: framework/extensions/widgets/widgets/ct-quote/widget.php:14
|
|
|
|
|
|
|
|
|
3961 |
msgid "Quote"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:46
|
|
|
3965 |
msgid "Author Name"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:49,
|
3969 |
-
#: framework/extensions/widgets/widgets/ct-quote/view.php:18
|
|
|
|
|
3970 |
msgid "John Doe"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:55
|
|
|
3974 |
msgid "Author Label"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: framework/extensions/widgets/widgets/ct-quote/options.php:62
|
|
|
3978 |
msgid "Author Avatar"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
#. translators: %s here is the author name
|
3982 |
-
#: framework/extensions/widgets/widgets/ct-quote/view.php:58
|
|
|
3983 |
msgid "By %s"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:18,
|
3987 |
-
#: framework/extensions/widgets/widgets/ct-socials/view.php:11
|
|
|
|
|
3988 |
msgid "Social Icons"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
#. translators: placeholder here means the actual URL.
|
3992 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:28
|
|
|
3993 |
msgid ""
|
3994 |
"Configure the social links in Customizer ➝ General ➝ %sSocial Network "
|
3995 |
"Accounts%s."
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:61
|
|
|
3999 |
msgid "Open links in new tab"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:69
|
|
|
4003 |
msgid "Set links to nofollow"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: framework/features/header/items/account/options.php:4
|
|
|
4007 |
msgid "Profile Page"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: framework/features/header/items/account/options.php:5
|
|
|
4011 |
msgid "Dashboard Page"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
#: framework/features/header/items/account/options.php:7,
|
4015 |
-
#: framework/features/header/items/account/options.php:13
|
|
|
|
|
4016 |
msgid "Custom Link"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: framework/features/header/items/account/options.php:8
|
|
|
4020 |
msgid "Logout"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: framework/features/header/items/account/options.php:12
|
|
|
4024 |
msgid "Modal"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: framework/features/header/items/account/options.php:28
|
|
|
4028 |
msgid "Customizing: Logged in State"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: framework/features/header/items/account/options.php:39
|
|
|
4032 |
msgid "Customizing: Logged out State"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: framework/features/header/items/account/options.php:53
|
|
|
4036 |
msgid "Logged In Options"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: framework/features/header/items/account/options.php:58
|
|
|
4040 |
msgid "Logged Out Options"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
#: framework/features/header/items/account/options.php:78,
|
4044 |
-
#: framework/features/header/items/account/options.php:328
|
|
|
|
|
4045 |
msgid "Account Action"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: framework/features/header/items/account/options.php:91
|
|
|
4049 |
msgid "Select Menu"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: framework/features/header/items/account/options.php:97
|
|
|
4053 |
msgid "Select menu..."
|
4054 |
msgstr ""
|
4055 |
|
4056 |
#. translators: placeholder here means the actual URL.
|
4057 |
-
#: framework/features/header/items/account/options.php:101
|
|
|
4058 |
msgid "Manage your menu items in the %sMenus screen%s."
|
4059 |
msgstr ""
|
4060 |
|
4061 |
#: framework/features/header/items/account/options.php:118,
|
4062 |
-
#: framework/features/header/items/account/options.php:343
|
|
|
|
|
4063 |
msgid "Custom Page Link"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
#: framework/features/header/items/account/options.php:133,
|
4067 |
-
#: framework/features/header/items/account/options.php:359
|
|
|
|
|
4068 |
msgid "Account Image"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: framework/features/header/items/account/options.php:139
|
|
|
4072 |
msgid "Avatar"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: framework/features/header/items/account/options.php:152
|
|
|
4076 |
msgid "Avatar Size"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
#: framework/features/header/items/account/options.php:204,
|
4080 |
-
#: framework/features/header/items/account/options.php:410
|
|
|
|
|
4081 |
msgid "Type 5"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
#: framework/features/header/items/account/options.php:209,
|
4085 |
-
#: framework/features/header/items/account/options.php:415
|
|
|
|
|
4086 |
msgid "Type 6"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: framework/features/header/items/account/options.php:286
|
|
|
4090 |
msgid "Label Type"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
#: framework/features/header/items/account/options.php:305,
|
4094 |
#: framework/features/header/items/account/options.php:492,
|
4095 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
|
|
|
|
|
|
|
4096 |
msgid "Label Text"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
#: framework/features/header/items/account/options.php:310,
|
4100 |
-
#: framework/features/header/items/account/views/login.php:68
|
|
|
|
|
4101 |
msgid "My Account"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: framework/features/header/items/account/options.php:508
|
|
|
4105 |
msgid "User Visibility"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: framework/features/header/items/account/options.php:519
|
|
|
4109 |
msgid "Logged In"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: framework/features/header/items/account/options.php:520
|
|
|
4113 |
msgid "Logged Out"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
#: framework/features/header/items/account/options.php:537,
|
4117 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:135
|
|
|
|
|
4118 |
msgid "Label Font"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
#: framework/features/header/items/account/options.php:548,
|
4122 |
#: framework/features/header/items/account/options.php:577,
|
4123 |
#: framework/features/header/items/account/options.php:609,
|
4124 |
-
#: framework/features/header/items/account/options.php:639
|
|
|
|
|
|
|
|
|
4125 |
msgid "Label Color"
|
4126 |
msgstr ""
|
4127 |
|
@@ -4137,7 +5932,20 @@ msgstr ""
|
|
4137 |
#: framework/premium/features/premium-header/items/search-input/options.php:189,
|
4138 |
#: framework/premium/features/premium-header/items/search-input/options.php:319,
|
4139 |
#: framework/premium/features/premium-header/items/search-input/options.php:449,
|
4140 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:585
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4141 |
msgid "Default State"
|
4142 |
msgstr ""
|
4143 |
|
@@ -4153,7 +5961,20 @@ msgstr ""
|
|
4153 |
#: framework/premium/features/premium-header/items/search-input/options.php:194,
|
4154 |
#: framework/premium/features/premium-header/items/search-input/options.php:324,
|
4155 |
#: framework/premium/features/premium-header/items/search-input/options.php:454,
|
4156 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:590
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4157 |
msgid "Transparent State"
|
4158 |
msgstr ""
|
4159 |
|
@@ -4169,161 +5990,218 @@ msgstr ""
|
|
4169 |
#: framework/premium/features/premium-header/items/search-input/options.php:203,
|
4170 |
#: framework/premium/features/premium-header/items/search-input/options.php:333,
|
4171 |
#: framework/premium/features/premium-header/items/search-input/options.php:463,
|
4172 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:599
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4173 |
msgid "Sticky State"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: framework/features/header/items/account/options.php:819
|
|
|
4177 |
msgid "Item Margin"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: framework/features/header/items/account/options.php:838
|
|
|
4181 |
msgid "Modal Options"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: framework/features/header/items/account/options.php:973
|
|
|
4185 |
msgid "Modal Background"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: framework/features/header/items/account/options.php:988
|
|
|
4189 |
msgid "Modal Backdrop"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: framework/features/header/items/account/options.php:1003
|
|
|
4193 |
msgid "Modal Shadow"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: framework/features/header/items/account/options.php:1168
|
|
|
|
|
|
|
4197 |
msgid "Element Visibility"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409
|
|
|
4201 |
msgid "You have no %s fields declared for this custom post type."
|
4202 |
msgstr ""
|
4203 |
|
4204 |
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
|
4205 |
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
|
4206 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907
|
|
|
|
|
|
|
4207 |
msgid "Field"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
|
4211 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:60
|
|
|
|
|
4212 |
msgid "Label"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482
|
|
|
4216 |
msgid "Fallback"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494
|
|
|
4220 |
msgid "%s Field"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880
|
|
|
4224 |
msgid "Custom Field"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894
|
|
|
4228 |
msgid "%s %s Font"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905
|
|
|
4232 |
msgid "%s %s Color"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
|
4236 |
-
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:50
|
|
|
|
|
4237 |
msgid "Read Time"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:107
|
|
|
4241 |
msgid "%s min"
|
4242 |
msgid_plural "%s mins"
|
4243 |
msgstr[0] ""
|
4244 |
msgstr[1] ""
|
4245 |
|
4246 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering.php:286
|
|
|
4247 |
msgid "All"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161
|
|
|
4251 |
msgid "Featured Image"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166
|
|
|
4255 |
msgid "Accent Color"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
#: framework/premium/extensions/shortcuts/views/bar.php:49,
|
4259 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143
|
|
|
|
|
4260 |
msgid "Wish List"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38
|
|
|
4264 |
msgid "Wishlist icon"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
|
4268 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54
|
|
|
|
|
4269 |
msgid "Add to wishlist"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
|
|
|
4273 |
msgid "Select a page"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
|
|
|
4277 |
msgid "Products Wishlist"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
|
|
|
4281 |
msgid "Show Wishlist Page To"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
|
|
|
4285 |
msgid "Logged Users"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
|
|
|
4289 |
msgid "All Users"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
|
|
|
4293 |
msgid "Wish List Page"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
|
|
|
4297 |
msgid ""
|
4298 |
"The page you select here will display the wish list for your logged out "
|
4299 |
"users."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
|
|
|
4303 |
msgid "Display Wishlist Button On"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
|
|
|
4307 |
msgid "Archive Pages"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
|
|
|
4311 |
msgid "Single Product Pages"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
|
|
|
4315 |
msgid "Quick View Modal"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
|
|
|
4319 |
msgid "AJAX Add To Cart"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101
|
|
|
4323 |
msgid "Enable AJAX loading"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137
|
|
|
4327 |
msgid "Archive Button"
|
4328 |
msgstr ""
|
4329 |
|
@@ -4335,51 +6213,77 @@ msgstr ""
|
|
4335 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
|
4336 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:254,
|
4337 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:284,
|
4338 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4339 |
msgid "Hover/Active"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214
|
|
|
4343 |
msgid "Single Product Button"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290
|
|
|
4347 |
msgid "Quick View Modal Button"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192
|
|
|
4351 |
msgid "You don't have any products in your wish list yet."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35
|
|
|
4355 |
msgid "Add to cart"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
|
4359 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
|
|
|
|
|
4360 |
msgid "Remove Product"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
|
|
|
4364 |
msgid "Blocksy Variation Images"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
#: framework/premium/features/content-blocks/options/404.php:33,
|
4368 |
#: framework/premium/features/content-blocks/options/header.php:35,
|
4369 |
#: framework/premium/features/content-blocks/options/hook.php:40,
|
4370 |
-
#: framework/premium/features/content-blocks/options/popup.php:42
|
|
|
|
|
|
|
|
|
4371 |
msgid "Container Structure"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
#: framework/premium/features/content-blocks/options/404.php:65,
|
4375 |
#: framework/premium/features/content-blocks/options/header.php:63,
|
4376 |
-
#: framework/premium/features/content-blocks/options/hook.php:68
|
|
|
|
|
|
|
4377 |
msgid "Narrow Width"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
#: framework/premium/features/content-blocks/options/404.php:70,
|
4381 |
#: framework/premium/features/content-blocks/options/header.php:68,
|
4382 |
-
#: framework/premium/features/content-blocks/options/hook.php:73
|
|
|
|
|
|
|
4383 |
msgid "Normal Width"
|
4384 |
msgstr ""
|
4385 |
|
@@ -4387,14 +6291,23 @@ msgstr ""
|
|
4387 |
#: framework/premium/features/content-blocks/options/archive.php:126,
|
4388 |
#: framework/premium/features/content-blocks/options/header.php:74,
|
4389 |
#: framework/premium/features/content-blocks/options/hook.php:79,
|
4390 |
-
#: framework/premium/features/content-blocks/options/single.php:47
|
|
|
|
|
|
|
|
|
|
|
4391 |
msgid "Content Area Style"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
#: framework/premium/features/content-blocks/options/404.php:90,
|
4395 |
#: framework/premium/features/content-blocks/options/archive.php:140,
|
4396 |
#: framework/premium/features/content-blocks/options/header.php:88,
|
4397 |
-
#: framework/premium/features/content-blocks/options/hook.php:93
|
|
|
|
|
|
|
|
|
4398 |
msgid "Content Area Vertical Spacing"
|
4399 |
msgstr ""
|
4400 |
|
@@ -4402,7 +6315,12 @@ msgstr ""
|
|
4402 |
#: framework/premium/features/content-blocks/options/archive.php:151,
|
4403 |
#: framework/premium/features/content-blocks/options/header.php:99,
|
4404 |
#: framework/premium/features/content-blocks/options/hook.php:104,
|
4405 |
-
#: framework/premium/features/content-blocks/options/single.php:72
|
|
|
|
|
|
|
|
|
|
|
4406 |
msgid "Top & Bottom"
|
4407 |
msgstr ""
|
4408 |
|
@@ -4410,7 +6328,12 @@ msgstr ""
|
|
4410 |
#: framework/premium/features/content-blocks/options/archive.php:154,
|
4411 |
#: framework/premium/features/content-blocks/options/header.php:102,
|
4412 |
#: framework/premium/features/content-blocks/options/hook.php:107,
|
4413 |
-
#: framework/premium/features/content-blocks/options/single.php:75
|
|
|
|
|
|
|
|
|
|
|
4414 |
msgid "Only Top"
|
4415 |
msgstr ""
|
4416 |
|
@@ -4418,477 +6341,655 @@ msgstr ""
|
|
4418 |
#: framework/premium/features/content-blocks/options/archive.php:157,
|
4419 |
#: framework/premium/features/content-blocks/options/header.php:105,
|
4420 |
#: framework/premium/features/content-blocks/options/hook.php:110,
|
4421 |
-
#: framework/premium/features/content-blocks/options/single.php:78
|
|
|
|
|
|
|
|
|
|
|
4422 |
msgid "Only Bottom"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: framework/premium/features/content-blocks/options/archive.php:11
|
|
|
4426 |
msgid "Replacement Behavior"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: framework/premium/features/content-blocks/options/archive.php:17
|
|
|
4430 |
msgid "Only Card"
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: framework/premium/features/content-blocks/options/archive.php:18
|
|
|
4434 |
msgid "Full Page"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
#: framework/premium/features/content-blocks/options/archive.php:28,
|
4438 |
-
#: framework/premium/features/content-blocks/options/single.php:105
|
|
|
|
|
4439 |
msgid "Dynamic Content Preview"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: framework/premium/features/content-blocks/options/archive.php:35
|
|
|
4443 |
msgid ""
|
4444 |
"Select a post/page to preview it's content inside the editor while building "
|
4445 |
"the archive."
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: framework/premium/features/content-blocks/options/archive.php:39
|
|
|
4449 |
msgid "Editor/Card Width"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: framework/premium/features/content-blocks/options/archive.php:50
|
|
|
4453 |
msgid ""
|
4454 |
"Set the editor width for better understanging the layout you are building "
|
4455 |
"(just for preview purpose, this option won't apply in frontend)."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: framework/premium/features/content-blocks/options/archive.php:71
|
|
|
4459 |
msgid "Default Card Layout"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: framework/premium/features/content-blocks/options/archive.php:76
|
|
|
4463 |
msgid ""
|
4464 |
"Inherit card wrapper settings from Customizer (background color, spacing, "
|
4465 |
"shadow)."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: framework/premium/features/content-blocks/options/archive.php:91
|
|
|
4469 |
msgid "Page Structure"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
#: framework/premium/features/content-blocks/options/archive.php:207,
|
4473 |
#: framework/premium/features/content-blocks/options/hook.php:256,
|
4474 |
#: framework/premium/features/content-blocks/options/popup.php:314,
|
4475 |
-
#: framework/premium/features/content-blocks/options/single.php:140
|
|
|
|
|
|
|
|
|
4476 |
msgid "Expiration Date/Time"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
#: framework/premium/features/content-blocks/options/hook.php:23,
|
4480 |
-
#: framework/premium/features/content-blocks/options/hook.php:181
|
|
|
|
|
4481 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:72
|
4482 |
msgid "Custom Hook"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: framework/premium/features/content-blocks/options/hook.php:148
|
|
|
4486 |
msgid "Location & Priority"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
-
#: framework/premium/features/content-blocks/options/hook.php:283
|
|
|
4490 |
msgid "Block Position"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: framework/premium/features/content-blocks/options/hook.php:290
|
|
|
4494 |
msgid "Fixed"
|
4495 |
msgstr ""
|
4496 |
|
4497 |
-
#: framework/premium/features/content-blocks/options/hook.php:300
|
|
|
4498 |
msgid "Location"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: framework/premium/features/content-blocks/options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4502 |
msgid "Popup Position"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: framework/premium/features/content-blocks/options/popup.php:57
|
|
|
4506 |
msgid "Popup Size"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#: framework/premium/features/content-blocks/options/popup.php:63
|
|
|
4510 |
msgid "Small Size"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#: framework/premium/features/content-blocks/options/popup.php:64
|
|
|
4514 |
msgid "Medium Size"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: framework/premium/features/content-blocks/options/popup.php:65
|
|
|
4518 |
msgid "Large Size"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
-
#: framework/premium/features/content-blocks/options/popup.php:66
|
|
|
4522 |
msgid "Custom Size"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: framework/premium/features/content-blocks/options/popup.php:76
|
|
|
4526 |
msgid "Max Width"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: framework/premium/features/content-blocks/options/popup.php:92
|
|
|
4530 |
msgid "Max Height"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: framework/premium/features/content-blocks/options/popup.php:111
|
|
|
4534 |
msgid "Popup Animation"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: framework/premium/features/content-blocks/options/popup.php:117
|
|
|
4538 |
msgid "Fade in fade out"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: framework/premium/features/content-blocks/options/popup.php:118
|
|
|
4542 |
msgid "Zoom in zoom out"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: framework/premium/features/content-blocks/options/popup.php:119
|
|
|
4546 |
msgid "Slide in from left"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: framework/premium/features/content-blocks/options/popup.php:120
|
|
|
4550 |
msgid "Slide in from right"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: framework/premium/features/content-blocks/options/popup.php:121
|
|
|
4554 |
msgid "Slide in from top"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: framework/premium/features/content-blocks/options/popup.php:122
|
|
|
4558 |
msgid "Slide in from bottom"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: framework/premium/features/content-blocks/options/popup.php:127
|
|
|
4562 |
msgid "Animation Speed"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: framework/premium/features/content-blocks/options/popup.php:144
|
|
|
4566 |
msgid "Entrance Value"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: framework/premium/features/content-blocks/options/popup.php:156
|
|
|
4570 |
msgid "Trigger Condition"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: framework/premium/features/content-blocks/options/popup.php:181
|
|
|
4574 |
msgid "Element Class"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: framework/premium/features/content-blocks/options/popup.php:188
|
|
|
4578 |
msgid "Separate each class by comma if you have multiple elements."
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#: framework/premium/features/content-blocks/options/popup.php:200
|
|
|
4582 |
msgid "Scroll Direction"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: framework/premium/features/content-blocks/options/popup.php:205
|
|
|
4586 |
msgid "Scroll Down"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: framework/premium/features/content-blocks/options/popup.php:206
|
|
|
4590 |
msgid "Scroll Up"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
#: framework/premium/features/content-blocks/options/popup.php:211
|
|
|
4594 |
msgid "Scroll Distance"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#: framework/premium/features/content-blocks/options/popup.php:221
|
|
|
4598 |
msgid "Set the scroll distance till the popup block will appear."
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: framework/premium/features/content-blocks/options/popup.php:233
|
|
|
4602 |
msgid "Inactivity Time"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
-
#: framework/premium/features/content-blocks/options/popup.php:239
|
|
|
4606 |
msgid "Set the inactivity time (in seconds) till the popup block will appear."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: framework/premium/features/content-blocks/options/popup.php:251
|
|
|
4610 |
msgid "After X Time"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: framework/premium/features/content-blocks/options/popup.php:257
|
|
|
4614 |
msgid "Set after how much time (in seconds) the popup block will appear."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: framework/premium/features/content-blocks/options/popup.php:269
|
|
|
4618 |
msgid "After X Pages"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: framework/premium/features/content-blocks/options/popup.php:275
|
|
|
4622 |
msgid "Set after how many visited pages the popup block will appear."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: framework/premium/features/content-blocks/options/popup.php:287
|
|
|
4626 |
msgid "Trigger Popup Only Once"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: framework/premium/features/content-blocks/options/popup.php:290
|
|
|
4630 |
msgid ""
|
4631 |
"If the close button is clicked the popup won't be triggered anymore for the "
|
4632 |
"current visitor."
|
4633 |
msgstr ""
|
4634 |
|
4635 |
-
#: framework/premium/features/content-blocks/options/popup.php:366
|
|
|
4636 |
msgid "Padding"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
#: framework/premium/features/content-blocks/options/popup.php:376,
|
4640 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
|
4641 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:465
|
|
|
|
|
|
|
4642 |
msgid "Border Radius"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: framework/premium/features/content-blocks/options/popup.php:405
|
|
|
4646 |
msgid "Popup Offset"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: framework/premium/features/content-blocks/options/popup.php:415
|
|
|
4650 |
msgid "Container Overflow"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: framework/premium/features/content-blocks/options/popup.php:422
|
|
|
4654 |
msgid "Hidden"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: framework/premium/features/content-blocks/options/popup.php:423
|
|
|
4658 |
msgid "Visible"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: framework/premium/features/content-blocks/options/popup.php:424
|
|
|
4662 |
msgid "Scroll"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: framework/premium/features/content-blocks/options/popup.php:426
|
|
|
4666 |
msgid ""
|
4667 |
"Control what happens to the content that is too big to fit into the popup."
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: framework/premium/features/content-blocks/options/popup.php:430
|
|
|
4671 |
msgid "Close Button"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: framework/premium/features/content-blocks/options/popup.php:438
|
|
|
4675 |
msgid "Inside"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: framework/premium/features/content-blocks/options/popup.php:439
|
|
|
4679 |
msgid "Outside"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: framework/premium/features/content-blocks/options/popup.php:513
|
|
|
4683 |
msgid "Popup Background"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: framework/premium/features/content-blocks/options/popup.php:527
|
|
|
4687 |
msgid "Popup Backdrop Background"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: framework/premium/features/content-blocks/options/single.php:61
|
|
|
4691 |
msgid "Content Area Vel Spacing"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: framework/premium/features/content-blocks/options/single.php:111
|
|
|
4695 |
msgid ""
|
4696 |
"Select a post/page to preview it's content inside the editor while building "
|
4697 |
"the post/page."
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
|
|
|
4701 |
msgid "Posts Filter"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
|
|
|
4705 |
msgid "Filtering Behavior"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
|
|
|
4709 |
msgid "Instant Reload"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
|
|
|
4713 |
msgid "Page Reload"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4717 |
msgid "Items Horizontal Spacing"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
|
4721 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:360
|
|
|
|
|
4722 |
msgid "Items Vertical Spacing"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
|
|
|
4726 |
msgid "Container Bottom Spacing"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
|
|
|
4730 |
msgid "Horizontal Alignment"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
|
|
|
4734 |
msgid "Button Padding"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
|
|
|
4738 |
msgid "Read Progress"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
|
|
|
4742 |
msgid "Indicator Height"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
|
|
|
4746 |
msgid "Auto Hide"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
|
|
|
4750 |
msgid ""
|
4751 |
"Automatically hide the read progress bar once you arrive at the bottom of "
|
4752 |
"the article."
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
|
|
|
4756 |
msgid "Main Color"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49
|
|
|
4760 |
msgid "Icon Badge"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:146
|
|
|
4764 |
msgid "Label Font Color"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#: framework/premium/features/premium-header/items/contacts/config.php:4
|
|
|
4768 |
msgid "Contacts"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:236
|
|
|
4772 |
msgid "Open Links In New Tab"
|
4773 |
msgstr ""
|
4774 |
|
4775 |
#: framework/premium/features/premium-header/items/contacts/options.php:256,
|
4776 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:95
|
|
|
|
|
4777 |
msgid "Items Spacing"
|
4778 |
msgstr ""
|
4779 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4780 |
#: framework/premium/features/premium-header/items/contacts/options.php:831,
|
4781 |
#: framework/premium/features/premium-header/items/divider/options.php:107,
|
4782 |
#: framework/premium/features/premium-header/items/divider/options.php:126,
|
4783 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:323,
|
4784 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:724
|
|
|
|
|
|
|
|
|
|
|
4785 |
msgid "Margin"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
|
|
|
4789 |
msgid "Dark Mode"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: framework/premium/features/premium-header/items/divider/config.php:4
|
|
|
4793 |
msgid "Divider"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
-
#: framework/premium/features/premium-header/items/divider/options.php:6
|
|
|
4797 |
msgid "Size"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
-
#: framework/premium/features/premium-header/items/language-switcher/
|
4801 |
-
|
4802 |
-
msgstr ""
|
4803 |
-
|
4804 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:17
|
4805 |
msgid "Top Level Options"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:37
|
|
|
4809 |
msgid "Dropdown"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:47
|
|
|
4813 |
msgid "Display"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:59
|
|
|
4817 |
msgid "Flag"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:73
|
|
|
4821 |
msgid "Label Style"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:79
|
|
|
4825 |
msgid "Long"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:80
|
|
|
4829 |
msgid "Short"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:112
|
|
|
4833 |
msgid "Hide Current Language"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:343
|
|
|
4837 |
msgid "Dropdown Options"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:352
|
|
|
4841 |
msgid "Dropdown Top Offset"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: framework/premium/features/premium-header/items/search-input/config.php:4
|
|
|
4845 |
msgid "Search Box"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:42
|
|
|
4849 |
msgid "Placeholder Text"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:52
|
|
|
4853 |
msgid "Input Maximum Width"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:64
|
|
|
4857 |
msgid "Input Height"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:79
|
|
|
4861 |
msgid "Live Results"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:90
|
|
|
4865 |
msgid "Live Results Images"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:101
|
|
|
4869 |
msgid "Search Through Criteria"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:102
|
|
|
4873 |
msgid "Chose in which post types do you want to perform searches."
|
4874 |
msgstr ""
|
4875 |
|
4876 |
#: framework/premium/features/premium-header/items/search-input/options.php:314,
|
4877 |
#: framework/premium/features/premium-header/items/search-input/options.php:343,
|
4878 |
#: framework/premium/features/premium-header/items/search-input/options.php:375,
|
4879 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:405
|
|
|
|
|
|
|
|
|
4880 |
msgid "Input Icon Color"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:755
|
|
|
4884 |
msgid "Dropdown Text Color"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:786
|
|
|
4888 |
msgid "Dropdown Background"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#: framework/premium/features/premium-header/items/widget-area-1/config.php:4
|
|
|
4892 |
msgid "Widget Area"
|
4893 |
msgstr ""
|
4894 |
|
@@ -5407,7 +7508,7 @@ msgid "Add one or more conditions in order to display your footer."
|
|
5407 |
msgstr ""
|
5408 |
|
5409 |
#: framework/premium/static/js/footer/EditConditions.js:84
|
5410 |
-
#: static/js/header/EditConditions.js:
|
5411 |
#: static/js/options/DisplayCondition.js:55
|
5412 |
msgid "Add/Edit Conditions"
|
5413 |
msgstr ""
|
@@ -5427,13 +7528,13 @@ msgstr ""
|
|
5427 |
|
5428 |
#: framework/premium/static/js/footer/PanelsManager.js:211
|
5429 |
#: framework/premium/static/js/hooks/CodeEditor.js:183
|
5430 |
-
#: static/js/header/PanelsManager.js:
|
5431 |
#: static/js/options/CustomizerOptionsManager.js:422
|
5432 |
msgid "Cancel"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
#: framework/premium/static/js/footer/PanelsManager.js:227
|
5436 |
-
#: static/js/header/PanelsManager.js:
|
5437 |
msgid "Confirm"
|
5438 |
msgstr ""
|
5439 |
|
@@ -5549,14 +7650,6 @@ msgid ""
|
|
5549 |
"you want based on your display and user conditions."
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#: framework/premium/static/js/hooks/CreateHook.js:68
|
5553 |
-
msgid "Custom Content/Hooks"
|
5554 |
-
msgstr ""
|
5555 |
-
|
5556 |
-
#: framework/premium/static/js/hooks/CreateHook.js:77
|
5557 |
-
msgid "Popup"
|
5558 |
-
msgstr ""
|
5559 |
-
|
5560 |
#: framework/premium/static/js/hooks/CreateHook.js:86
|
5561 |
msgid "Custom Template"
|
5562 |
msgstr ""
|
@@ -5622,12 +7715,12 @@ msgid "Select location"
|
|
5622 |
msgstr ""
|
5623 |
|
5624 |
#: framework/premium/static/js/options/PreviewedPostsSelect.js:107
|
5625 |
-
#: static/js/options/ConditionsManager/PostIdPicker.js:
|
5626 |
msgid "Type to search by ID or title..."
|
5627 |
msgstr ""
|
5628 |
|
5629 |
#: framework/premium/static/js/options/PreviewedPostsSelect.js:111
|
5630 |
-
#: static/js/options/ConditionsManager/PostIdPicker.js:
|
5631 |
msgid "Select post"
|
5632 |
msgstr ""
|
5633 |
|
@@ -5672,24 +7765,24 @@ msgstr ""
|
|
5672 |
msgid "Extensions"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: static/js/header/EditConditions.js:
|
5676 |
msgid "Add one or more conditions in order to display your header."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#: static/js/header/EditConditions.js:
|
5680 |
#: static/js/options/DisplayCondition.js:88
|
5681 |
msgid "Save Conditions"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: static/js/header/PanelsManager.js:
|
5685 |
msgid "Remove header"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: static/js/header/PanelsManager.js:
|
5689 |
msgid "Remove Header"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: static/js/header/PanelsManager.js:
|
5693 |
msgid ""
|
5694 |
"You are about to remove a custom header, are you sure you want to continue?"
|
5695 |
msgstr ""
|
@@ -5726,14 +7819,6 @@ msgid ""
|
|
5726 |
"features and future updates."
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: static/js/options/ConditionsManager.js:104
|
5730 |
-
msgid "Include"
|
5731 |
-
msgstr ""
|
5732 |
-
|
5733 |
-
#: static/js/options/ConditionsManager.js:105
|
5734 |
-
msgid "Exclude"
|
5735 |
-
msgstr ""
|
5736 |
-
|
5737 |
#: static/js/options/ConditionsManager.js:127
|
5738 |
msgid "Select rule"
|
5739 |
msgstr ""
|
@@ -5762,7 +7847,7 @@ msgstr ""
|
|
5762 |
msgid "Add User Condition"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: static/js/options/ConditionsManager/PostIdPicker.js:
|
5766 |
msgid "Select page"
|
5767 |
msgstr ""
|
5768 |
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"POT-Creation-Date: 2022-06-20 14:33+0000\n"
|
11 |
+
"Project-Id-Version: undefined\n"
|
12 |
"X-Poedit-Basepath: ..\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
|
14 |
"_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
21 |
"x-generator: babel-plugin-wp-i18n\n"
|
22 |
|
23 |
#. translators: %s: PHP version
|
24 |
+
#: blocksy-companion.php:128, build_tmp/build/blocksy-companion.php:128
|
25 |
msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
|
26 |
msgstr ""
|
27 |
|
28 |
#. translators: %s: WordPress version
|
29 |
+
#: blocksy-companion.php:139, build_tmp/build/blocksy-companion.php:139
|
30 |
msgid ""
|
31 |
"Blocksy requires WordPress version %s+. Because you are using an earlier "
|
32 |
"version, the plugin is currently NOT RUNNING."
|
33 |
msgstr ""
|
34 |
|
35 |
#: framework/extensions-manager.php:245,
|
36 |
+
#: build_tmp/build/framework/extensions-manager.php:245,
|
37 |
+
#: framework/premium/extensions/adobe-typekit/extension.php:46,
|
38 |
+
#: build_tmp/build/framework/premium/extensions/adobe-typekit/extension.php:46
|
39 |
msgid "Adobe Typekit"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: framework/extensions-manager.php:246,
|
43 |
+
#: build_tmp/build/framework/extensions-manager.php:246
|
44 |
msgid ""
|
45 |
"Connect your Typekit account and use your fonts in any typography option."
|
46 |
msgstr ""
|
47 |
|
48 |
#: framework/extensions-manager.php:257,
|
49 |
+
#: build_tmp/build/framework/extensions-manager.php:257,
|
50 |
+
#: framework/premium/extensions/code-snippets/readme.php:38,
|
51 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:38
|
52 |
msgid "Custom Code Snippets"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: framework/extensions-manager.php:258,
|
56 |
+
#: build_tmp/build/framework/extensions-manager.php:258
|
57 |
msgid ""
|
58 |
"Add custom code snippets in your header and footer, globally and per post or "
|
59 |
"page individually."
|
60 |
msgstr ""
|
61 |
|
62 |
#: framework/extensions-manager.php:269,
|
63 |
+
#: build_tmp/build/framework/extensions-manager.php:269,
|
64 |
+
#: framework/premium/extensions/custom-fonts/extension.php:145,
|
65 |
+
#: build_tmp/build/framework/premium/extensions/custom-fonts/extension.php:145
|
66 |
msgid "Custom Fonts"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: framework/extensions-manager.php:270,
|
70 |
+
#: build_tmp/build/framework/extensions-manager.php:270
|
71 |
msgid ""
|
72 |
"Upload unlimited number of custom fonts or variable fonts and use them in "
|
73 |
"any typography option."
|
74 |
msgstr ""
|
75 |
|
76 |
#: framework/extensions-manager.php:281,
|
77 |
+
#: build_tmp/build/framework/extensions-manager.php:281,
|
78 |
+
#: framework/premium/extensions/local-google-fonts/extension.php:188,
|
79 |
+
#: build_tmp/build/framework/premium/extensions/local-google-fonts/extension.php:188
|
80 |
msgid "Local Google Fonts"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: framework/extensions-manager.php:282,
|
84 |
+
#: build_tmp/build/framework/extensions-manager.php:282
|
85 |
msgid "Serve Google Fonts from your own server for full GDPR compliancy."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: framework/extensions-manager.php:293,
|
89 |
+
#: build_tmp/build/framework/extensions-manager.php:293
|
90 |
msgid "Advanced Menu"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: framework/extensions-manager.php:294,
|
94 |
+
#: build_tmp/build/framework/extensions-manager.php:294
|
95 |
msgid ""
|
96 |
"Create beautiful mega menus, assign icons add badges to menu items, and "
|
97 |
"content blocks inside menu items."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: framework/extensions-manager.php:305,
|
101 |
+
#: build_tmp/build/framework/extensions-manager.php:305
|
102 |
msgid "Shortcuts Bar"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: framework/extensions-manager.php:306,
|
106 |
+
#: build_tmp/build/framework/extensions-manager.php:306
|
107 |
msgid ""
|
108 |
"Transform your website into a app like by displaying a neat shortcuts bar at "
|
109 |
"the bottom of the vieport."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: framework/extensions-manager.php:317,
|
113 |
+
#: build_tmp/build/framework/extensions-manager.php:317
|
114 |
msgid "Multiple Sidebars"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: framework/extensions-manager.php:318,
|
118 |
+
#: build_tmp/build/framework/extensions-manager.php:318
|
119 |
msgid ""
|
120 |
"Create unlimited number of sidebars and display them conditionaly on any "
|
121 |
"page or post."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: framework/extensions-manager.php:329,
|
125 |
+
#: build_tmp/build/framework/extensions-manager.php:329
|
126 |
msgid "White Label (Agency Package)"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: framework/extensions-manager.php:330,
|
130 |
+
#: build_tmp/build/framework/extensions-manager.php:330
|
131 |
msgid "Change the theme and companion plugin branding to your own custom one."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: framework/extensions-manager.php:341,
|
135 |
+
#: build_tmp/build/framework/extensions-manager.php:341
|
136 |
msgid "WooCommerce Extra"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: framework/extensions-manager.php:342,
|
140 |
+
#: build_tmp/build/framework/extensions-manager.php:342
|
141 |
msgid ""
|
142 |
"Increase the conversion rate by adding a product quick view modal, a "
|
143 |
"floating cart. Control the single product gallery/slider and the layout, add "
|
144 |
"a wishlits page."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: framework/theme-integration.php:310,
|
148 |
+
#: build_tmp/build/framework/theme-integration.php:310,
|
149 |
#: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
|
150 |
#: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
|
151 |
+
#: framework/extensions/widgets/widgets/ct-facebook/widget.php:13,
|
152 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:16,
|
153 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/view.php:12,
|
154 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:13
|
155 |
msgid "Facebook"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: framework/theme-integration.php:311,
|
159 |
+
#: build_tmp/build/framework/theme-integration.php:311
|
160 |
msgid "Twitter"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: framework/theme-integration.php:312,
|
164 |
+
#: build_tmp/build/framework/theme-integration.php:312
|
165 |
msgid "LinkedIn"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: framework/theme-integration.php:313,
|
169 |
+
#: build_tmp/build/framework/theme-integration.php:313
|
170 |
msgid "Dribbble"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: framework/theme-integration.php:314,
|
174 |
+
#: build_tmp/build/framework/theme-integration.php:314
|
175 |
msgid "Instagram"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: framework/theme-integration.php:315,
|
179 |
+
#: build_tmp/build/framework/theme-integration.php:315
|
180 |
msgid "Pinterest"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: framework/theme-integration.php:316,
|
184 |
+
#: build_tmp/build/framework/theme-integration.php:316
|
185 |
msgid "WordPress"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: framework/theme-integration.php:317,
|
189 |
+
#: build_tmp/build/framework/theme-integration.php:317
|
190 |
msgid "GitHub"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: framework/theme-integration.php:318,
|
194 |
+
#: build_tmp/build/framework/theme-integration.php:318,
|
195 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
|
196 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:83,
|
197 |
+
#: framework/premium/features/content-blocks/options/archive.php:47,
|
198 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
|
199 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:83,
|
200 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:47
|
201 |
msgid "Medium"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: framework/theme-integration.php:319,
|
205 |
+
#: build_tmp/build/framework/theme-integration.php:319
|
206 |
msgid "YouTube"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: framework/theme-integration.php:320,
|
210 |
+
#: build_tmp/build/framework/theme-integration.php:320
|
211 |
msgid "Vimeo"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: framework/theme-integration.php:321,
|
215 |
+
#: build_tmp/build/framework/theme-integration.php:321
|
216 |
msgid "VKontakte"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: framework/theme-integration.php:322,
|
220 |
+
#: build_tmp/build/framework/theme-integration.php:322
|
221 |
msgid "Odnoklassniki"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: framework/theme-integration.php:323,
|
225 |
+
#: build_tmp/build/framework/theme-integration.php:323
|
226 |
msgid "TikTok"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: framework/theme-integration.php:395,
|
230 |
+
#: build_tmp/build/framework/theme-integration.php:395
|
231 |
msgid "Companion"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: framework/theme-integration.php:411,
|
235 |
+
#: build_tmp/build/framework/theme-integration.php:411
|
236 |
+
#: static/js/screens/SiteExport.js:106
|
237 |
msgid "PRO"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: framework/widgets-manager.php:75,
|
241 |
+
#: build_tmp/build/framework/widgets-manager.php:75
|
242 |
msgid "Default widget name"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: framework/widgets-manager.php:81,
|
246 |
+
#: build_tmp/build/framework/widgets-manager.php:81
|
247 |
msgid "Display online support infomation"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: framework/widgets-manager.php:144,
|
251 |
+
#: build_tmp/build/framework/widgets-manager.php:144
|
252 |
msgid "Widget Title"
|
253 |
msgstr ""
|
254 |
|
255 |
#. translators: %s: Link to the login page.
|
256 |
+
#: framework/features/account-auth.php:92,
|
257 |
+
#: build_tmp/build/framework/features/account-auth.php:92
|
258 |
msgid ""
|
259 |
"Check your email for the confirmation link, then visit the <a href=\"%s"
|
260 |
"\">login page</a>."
|
261 |
msgstr ""
|
262 |
|
263 |
#: framework/features/account-auth.php:104,
|
264 |
+
#: framework/features/account-auth.php:231,
|
265 |
+
#: build_tmp/build/framework/features/account-auth.php:104,
|
266 |
+
#: build_tmp/build/framework/features/account-auth.php:231
|
267 |
msgid "Check your email"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: framework/features/account-auth.php:198,
|
271 |
+
#: build_tmp/build/framework/features/account-auth.php:198
|
272 |
msgid ""
|
273 |
"Your account was created successfully. Your login details have been sent to "
|
274 |
"your email address. Please visit the <a href=\"%s\">login page</a>."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: framework/features/account-auth.php:207,
|
278 |
+
#: build_tmp/build/framework/features/account-auth.php:207
|
279 |
msgid ""
|
280 |
"Your account was created successfully and a password has been sent to your "
|
281 |
"email address. Please visit the <a href=\"%s\">login page</a>."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: framework/features/account-auth.php:237,
|
285 |
+
#: build_tmp/build/framework/features/account-auth.php:237
|
286 |
msgid "Registration Form"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: framework/features/account-auth.php:238,
|
290 |
+
#: build_tmp/build/framework/features/account-auth.php:238
|
291 |
msgid "Register For This Site"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: framework/features/conditions-manager.php:463,
|
295 |
+
#: build_tmp/build/framework/features/conditions-manager.php:463
|
296 |
msgid "Entire Website"
|
297 |
msgstr ""
|
298 |
|
299 |
#: framework/features/conditions-manager.php:471,
|
300 |
#: framework/features/conditions-manager.php:513,
|
301 |
+
#: framework/features/conditions-manager.php:545,
|
302 |
+
#: build_tmp/build/framework/features/conditions-manager.php:471,
|
303 |
+
#: build_tmp/build/framework/features/conditions-manager.php:513,
|
304 |
+
#: build_tmp/build/framework/features/conditions-manager.php:545
|
305 |
msgid "Basic"
|
306 |
msgstr ""
|
307 |
|
308 |
#: framework/features/conditions-manager.php:475,
|
309 |
+
#: framework/features/conditions-manager.php:549,
|
310 |
+
#: build_tmp/build/framework/features/conditions-manager.php:475,
|
311 |
+
#: build_tmp/build/framework/features/conditions-manager.php:549
|
312 |
msgid "Singulars"
|
313 |
msgstr ""
|
314 |
|
315 |
#: framework/features/conditions-manager.php:480,
|
316 |
+
#: framework/features/conditions-manager.php:517,
|
317 |
+
#: build_tmp/build/framework/features/conditions-manager.php:480,
|
318 |
+
#: build_tmp/build/framework/features/conditions-manager.php:517
|
319 |
msgid "Archives"
|
320 |
msgstr ""
|
321 |
|
323 |
#: framework/features/conditions-manager.php:523,
|
324 |
#: framework/features/conditions-manager.php:555,
|
325 |
#: framework/extensions/trending/customizer.php:4,
|
326 |
+
#: build_tmp/build/framework/features/conditions-manager.php:486,
|
327 |
+
#: build_tmp/build/framework/features/conditions-manager.php:523,
|
328 |
+
#: build_tmp/build/framework/features/conditions-manager.php:555,
|
329 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:4,
|
330 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:11,
|
331 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:98,
|
332 |
#: framework/extensions/widgets/widgets/ct-posts/view.php:139,
|
333 |
#: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
|
334 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:4,
|
335 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:11,
|
336 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:98,
|
337 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:139,
|
338 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:13,
|
339 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:4
|
340 |
msgid "Posts"
|
341 |
msgstr ""
|
342 |
|
343 |
#: framework/features/conditions-manager.php:490,
|
344 |
#: framework/features/conditions-manager.php:559,
|
345 |
+
#: build_tmp/build/framework/features/conditions-manager.php:490,
|
346 |
+
#: build_tmp/build/framework/features/conditions-manager.php:559,
|
347 |
#: framework/premium/features/content-blocks/hooks-manager.php:408,
|
348 |
#: framework/premium/features/content-blocks/hooks-manager.php:416,
|
349 |
#: framework/premium/features/content-blocks/hooks-manager.php:424,
|
350 |
#: framework/premium/features/content-blocks/hooks-manager.php:431,
|
351 |
#: framework/premium/features/content-blocks/hooks-manager.php:438,
|
352 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:446,
|
353 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:408,
|
354 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:416,
|
355 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:424,
|
356 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:431,
|
357 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:438,
|
358 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:446
|
359 |
msgid "Single Post"
|
360 |
msgstr ""
|
361 |
|
362 |
#: framework/features/conditions-manager.php:495,
|
363 |
+
#: framework/features/conditions-manager.php:527,
|
364 |
+
#: build_tmp/build/framework/features/conditions-manager.php:495,
|
365 |
+
#: build_tmp/build/framework/features/conditions-manager.php:527
|
366 |
msgid "All Post Archives"
|
367 |
msgstr ""
|
368 |
|
369 |
#: framework/features/conditions-manager.php:500,
|
370 |
+
#: framework/features/conditions-manager.php:532,
|
371 |
+
#: build_tmp/build/framework/features/conditions-manager.php:500,
|
372 |
+
#: build_tmp/build/framework/features/conditions-manager.php:532
|
373 |
msgid "Post Categories"
|
374 |
msgstr ""
|
375 |
|
376 |
#: framework/features/conditions-manager.php:505,
|
377 |
+
#: framework/features/conditions-manager.php:537,
|
378 |
+
#: build_tmp/build/framework/features/conditions-manager.php:505,
|
379 |
+
#: build_tmp/build/framework/features/conditions-manager.php:537
|
380 |
msgid "Post Tags"
|
381 |
msgstr ""
|
382 |
|
383 |
#: framework/features/conditions-manager.php:567,
|
384 |
+
#: build_tmp/build/framework/features/conditions-manager.php:567,
|
385 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:12,
|
386 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:5,
|
387 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:12,
|
388 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:5
|
389 |
msgid "Pages"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: framework/features/conditions-manager.php:571,
|
393 |
+
#: build_tmp/build/framework/features/conditions-manager.php:571
|
394 |
msgid "Single Page"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: framework/features/conditions-manager.php:598,
|
398 |
+
#: build_tmp/build/framework/features/conditions-manager.php:598
|
399 |
msgid "%s Single"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: framework/features/conditions-manager.php:608,
|
403 |
+
#: build_tmp/build/framework/features/conditions-manager.php:608
|
404 |
msgid "%s Archive"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: framework/features/conditions-manager.php:621,
|
408 |
+
#: build_tmp/build/framework/features/conditions-manager.php:621
|
409 |
msgid "%s %s Taxonomy"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: framework/features/conditions-manager.php:636,
|
413 |
+
#: build_tmp/build/framework/features/conditions-manager.php:636
|
414 |
msgid "Post ID"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: framework/features/conditions-manager.php:641,
|
418 |
+
#: build_tmp/build/framework/features/conditions-manager.php:641
|
419 |
msgid "Page ID"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: framework/features/conditions-manager.php:646,
|
423 |
+
#: build_tmp/build/framework/features/conditions-manager.php:646
|
424 |
+
#: static/js/options/ConditionsManager/PostIdPicker.js:76
|
425 |
msgid "Custom Post Type ID"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: framework/features/conditions-manager.php:651,
|
429 |
+
#: build_tmp/build/framework/features/conditions-manager.php:651
|
430 |
msgid "Post with Taxonomy ID"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: framework/features/conditions-manager.php:656,
|
434 |
+
#: build_tmp/build/framework/features/conditions-manager.php:656
|
435 |
msgid "Taxonomy ID"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: framework/features/conditions-manager.php:660,
|
439 |
+
#: build_tmp/build/framework/features/conditions-manager.php:660
|
440 |
msgid "Specific"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: framework/features/conditions-manager.php:666,
|
444 |
+
#: build_tmp/build/framework/features/conditions-manager.php:666
|
445 |
msgid "Other Pages"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: framework/features/conditions-manager.php:670,
|
449 |
+
#: build_tmp/build/framework/features/conditions-manager.php:670
|
450 |
msgid "404"
|
451 |
msgstr ""
|
452 |
|
453 |
#: framework/features/conditions-manager.php:675,
|
454 |
+
#: build_tmp/build/framework/features/conditions-manager.php:675,
|
455 |
#: framework/premium/features/premium-header/items/search-input/options.php:45,
|
456 |
+
#: framework/premium/features/premium-header/items/search-input/view.php:71,
|
457 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:45,
|
458 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/view.php:71
|
459 |
msgid "Search"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: framework/features/conditions-manager.php:680,
|
463 |
+
#: build_tmp/build/framework/features/conditions-manager.php:680
|
464 |
msgid "Blog"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: framework/features/conditions-manager.php:685,
|
468 |
+
#: build_tmp/build/framework/features/conditions-manager.php:685
|
469 |
msgid "Front Page"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: framework/features/conditions-manager.php:697,
|
473 |
+
#: build_tmp/build/framework/features/conditions-manager.php:697
|
474 |
msgid "Author"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: framework/features/conditions-manager.php:707,
|
478 |
+
#: build_tmp/build/framework/features/conditions-manager.php:707
|
479 |
+
msgid "WooCommerce"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: framework/features/conditions-manager.php:711,
|
483 |
+
#: build_tmp/build/framework/features/conditions-manager.php:711
|
484 |
+
msgid "Shop Home"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: framework/features/conditions-manager.php:716,
|
488 |
+
#: build_tmp/build/framework/features/conditions-manager.php:716
|
489 |
+
msgid "Single Product"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: framework/features/conditions-manager.php:721,
|
493 |
+
#: build_tmp/build/framework/features/conditions-manager.php:721
|
494 |
+
msgid "Product Archives"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: framework/features/conditions-manager.php:726,
|
498 |
+
#: build_tmp/build/framework/features/conditions-manager.php:726
|
499 |
+
msgid "Product Categories"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: framework/features/conditions-manager.php:731,
|
503 |
+
#: build_tmp/build/framework/features/conditions-manager.php:731
|
504 |
+
msgid "Product Tags"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: framework/features/conditions-manager.php:739,
|
508 |
+
#: build_tmp/build/framework/features/conditions-manager.php:739
|
509 |
+
msgid "Custom Post Types"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: framework/features/conditions-manager.php:748,
|
513 |
+
#: build_tmp/build/framework/features/conditions-manager.php:748
|
514 |
msgid "User Auth"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: framework/features/conditions-manager.php:752,
|
518 |
+
#: build_tmp/build/framework/features/conditions-manager.php:752
|
519 |
msgid "User Logged In"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: framework/features/conditions-manager.php:757,
|
523 |
+
#: build_tmp/build/framework/features/conditions-manager.php:757
|
524 |
msgid "User Logged Out"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: framework/features/conditions-manager.php:763,
|
528 |
+
#: build_tmp/build/framework/features/conditions-manager.php:763
|
529 |
msgid "User Roles"
|
530 |
msgstr ""
|
531 |
|
532 |
#: framework/features/conditions-manager.php:768,
|
533 |
+
#: build_tmp/build/framework/features/conditions-manager.php:768,
|
534 |
#: framework/premium/features/content-blocks/options/404.php:19,
|
535 |
#: framework/premium/features/content-blocks/options/header.php:19,
|
536 |
#: framework/premium/features/content-blocks/options/hook.php:24,
|
537 |
+
#: framework/premium/features/content-blocks/options/popup.php:25,
|
538 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:19,
|
539 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:19,
|
540 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:24,
|
541 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:25
|
542 |
msgid "Other"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: framework/features/conditions-manager.php:772,
|
546 |
+
#: build_tmp/build/framework/features/conditions-manager.php:772
|
547 |
msgid "Post Author"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: framework/features/conditions-manager.php:784,
|
551 |
+
#: build_tmp/build/framework/features/conditions-manager.php:784,
|
552 |
+
#: framework/premium/features/premium-header/items/language-switcher/config.php:14,
|
553 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/config.php:14
|
554 |
+
msgid "Languages"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: framework/features/conditions-manager.php:788,
|
558 |
+
#: build_tmp/build/framework/features/conditions-manager.php:788
|
559 |
+
msgid "Current Language"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: framework/features/conditions-manager.php:796,
|
563 |
+
#: build_tmp/build/framework/features/conditions-manager.php:796
|
564 |
+
msgid "bbPress"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: framework/features/conditions-manager.php:800,
|
568 |
+
#: build_tmp/build/framework/features/conditions-manager.php:800
|
569 |
+
msgid "Profile"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: framework/features/conditions-manager.php:812,
|
573 |
+
#: build_tmp/build/framework/features/conditions-manager.php:812
|
574 |
+
#: static/js/options/ConditionsManager.js:104
|
575 |
+
msgid "Include"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: framework/features/conditions-manager.php:812,
|
579 |
+
#: build_tmp/build/framework/features/conditions-manager.php:812
|
580 |
+
#: static/js/options/ConditionsManager.js:105
|
581 |
+
msgid "Exclude"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: framework/features/conditions-manager.php:865,
|
585 |
+
#: build_tmp/build/framework/features/conditions-manager.php:865
|
586 |
msgid "Language"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: framework/features/demo-install.php:233,
|
590 |
+
#: build_tmp/build/framework/features/demo-install.php:233
|
591 |
msgid ""
|
592 |
"Your PHP installation doesn't have support for XML. Please install the "
|
593 |
"<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
|
595 |
"in doing so."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: framework/features/dynamic-css.php:46,
|
599 |
+
#: build_tmp/build/framework/features/dynamic-css.php:46
|
600 |
msgid "Dynamic CSS Output"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: framework/features/dynamic-css.php:50,
|
604 |
+
#: build_tmp/build/framework/features/dynamic-css.php:50
|
605 |
msgid ""
|
606 |
"The strategy of outputting the dynamic CSS. File - all the CSS code will be "
|
607 |
"placed in a static file, otherwise it will be placed inline in head."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: framework/features/dynamic-css.php:52,
|
611 |
+
#: build_tmp/build/framework/features/dynamic-css.php:52
|
612 |
msgid "File"
|
613 |
msgstr ""
|
614 |
|
615 |
#: framework/features/dynamic-css.php:53,
|
616 |
+
#: build_tmp/build/framework/features/dynamic-css.php:53,
|
617 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:32,
|
618 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:32
|
619 |
msgid "Inline"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: framework/features/google-analytics.php:69,
|
623 |
+
#: build_tmp/build/framework/features/google-analytics.php:69
|
624 |
msgid "Google Analytics v3"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: framework/features/google-analytics.php:74,
|
628 |
+
#: build_tmp/build/framework/features/google-analytics.php:74
|
629 |
msgid "Link your Google Analytics 3 tracking ID."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: framework/features/google-analytics.php:80,
|
633 |
+
#: build_tmp/build/framework/features/google-analytics.php:80
|
634 |
msgid "Google Analytics v4"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: framework/features/google-analytics.php:86,
|
638 |
+
#: build_tmp/build/framework/features/google-analytics.php:86
|
639 |
msgid ""
|
640 |
"Link your Google Analytics 4 tracking ID. More info and instructions can be "
|
641 |
"found %shere%s."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: framework/features/google-analytics.php:98,
|
645 |
+
#: build_tmp/build/framework/features/google-analytics.php:98
|
646 |
msgid "IP Anonymization"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: framework/features/google-analytics.php:102,
|
650 |
+
#: build_tmp/build/framework/features/google-analytics.php:102
|
651 |
msgid ""
|
652 |
"Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
|
653 |
"instructions can be found %shere%s."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: framework/features/opengraph-meta-data.php:17,
|
657 |
+
#: build_tmp/build/framework/features/opengraph-meta-data.php:17
|
658 |
msgid "OpenGraph Meta Data"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: framework/features/opengraph-meta-data.php:20,
|
662 |
+
#: build_tmp/build/framework/features/opengraph-meta-data.php:20
|
663 |
msgid "Enable the OpenGraph rich meta data features for your website."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: framework/features/opengraph-meta-data.php:29,
|
667 |
+
#: build_tmp/build/framework/features/opengraph-meta-data.php:29
|
668 |
msgid "Facebook Page URL"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: framework/features/opengraph-meta-data.php:36,
|
672 |
+
#: build_tmp/build/framework/features/opengraph-meta-data.php:36
|
673 |
msgid "Facebook App ID"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: framework/features/opengraph-meta-data.php:43,
|
677 |
+
#: build_tmp/build/framework/features/opengraph-meta-data.php:43
|
678 |
msgid "Twitter Username"
|
679 |
msgstr ""
|
680 |
|
|
|
681 |
#. translators: This is a brand name. Preferably to not be translated
|
682 |
#: framework/extensions/cookies-consent/config.php:5,
|
683 |
+
#: framework/extensions/cookies-consent/customizer.php:5,
|
684 |
+
#: build_tmp/build/framework/extensions/cookies-consent/config.php:5,
|
685 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:5
|
686 |
msgctxt "Extension Brand Name"
|
687 |
msgid "Cookies Consent"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: framework/extensions/cookies-consent/config.php:6,
|
691 |
+
#: build_tmp/build/framework/extensions/cookies-consent/config.php:6
|
692 |
msgid ""
|
693 |
"Display a cookie acceptance box in order to comply with the privacy "
|
694 |
"regulations in your country."
|
696 |
|
697 |
#: framework/extensions/cookies-consent/customizer.php:15,
|
698 |
#: framework/extensions/newsletter-subscribe/customizer.php:12,
|
699 |
+
#: framework/extensions/product-reviews/extension.php:291,
|
700 |
#: framework/extensions/product-reviews/metabox.php:6,
|
701 |
#: framework/extensions/trending/customizer.php:110,
|
702 |
#: framework/premium/extensions/mega-menu/options.php:6,
|
703 |
#: framework/premium/extensions/shortcuts/customizer.php:534,
|
704 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
|
705 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
|
706 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:15,
|
707 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:12,
|
708 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:291,
|
709 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:6,
|
710 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:110,
|
711 |
#: framework/features/header/items/account/options.php:68,
|
712 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
|
713 |
#: framework/premium/features/content-blocks/options/popup.php:30,
|
714 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:6,
|
715 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:534,
|
716 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
|
717 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
|
718 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
|
719 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
|
720 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
|
721 |
#: framework/premium/features/premium-header/items/contacts/options.php:5,
|
722 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:21,
|
723 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:347,
|
724 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:37,
|
725 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:68,
|
726 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
|
727 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:30,
|
728 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
|
729 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
|
730 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
|
731 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:5,
|
732 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:21,
|
733 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:347,
|
734 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:37
|
735 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
|
736 |
msgid "General"
|
737 |
msgstr ""
|
740 |
#: framework/premium/extensions/shortcuts/customizer.php:546,
|
741 |
#: framework/premium/extensions/woocommerce-extra/extension.php:73,
|
742 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
|
743 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:28,
|
744 |
#: framework/features/header/items/account/options.php:184,
|
745 |
#: framework/features/header/items/account/options.php:390,
|
746 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:546,
|
747 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:73,
|
748 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
|
749 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
|
750 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23,
|
751 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:184,
|
752 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:390,
|
753 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
|
754 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
|
755 |
msgid "Type 1"
|
756 |
msgstr ""
|
757 |
|
759 |
#: framework/premium/extensions/shortcuts/customizer.php:551,
|
760 |
#: framework/premium/extensions/woocommerce-extra/extension.php:78,
|
761 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
|
762 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:33,
|
763 |
#: framework/features/header/items/account/options.php:189,
|
764 |
#: framework/features/header/items/account/options.php:395,
|
765 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:551,
|
766 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:78,
|
767 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
|
768 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
|
769 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
|
770 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:189,
|
771 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:395,
|
772 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
|
773 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
|
774 |
msgid "Type 2"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: framework/extensions/cookies-consent/customizer.php:40,
|
778 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:40
|
779 |
msgid "Cookie period"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: framework/extensions/cookies-consent/customizer.php:48,
|
783 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:48
|
784 |
msgid "One hour"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: framework/extensions/cookies-consent/customizer.php:49,
|
788 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:49
|
789 |
msgid "One day"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: framework/extensions/cookies-consent/customizer.php:50,
|
793 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:50
|
794 |
msgid "One week"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: framework/extensions/cookies-consent/customizer.php:51,
|
798 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:51
|
799 |
msgid "One month"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: framework/extensions/cookies-consent/customizer.php:52,
|
803 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:52
|
804 |
msgid "Three months"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: framework/extensions/cookies-consent/customizer.php:53,
|
808 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:53
|
809 |
msgid "Six months"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: framework/extensions/cookies-consent/customizer.php:54,
|
813 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:54
|
814 |
msgid "One year"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: framework/extensions/cookies-consent/customizer.php:55,
|
818 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:55
|
819 |
msgid "Forever"
|
820 |
msgstr ""
|
821 |
|
824 |
#: framework/premium/features/content-blocks/hooks-manager.php:243,
|
825 |
#: framework/premium/features/content-blocks/hooks-manager.php:251,
|
826 |
#: framework/premium/features/content-blocks/hooks-manager.php:259,
|
827 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:62,
|
828 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:86,
|
829 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:115,
|
830 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:143,
|
832 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:199,
|
833 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:227,
|
834 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
|
835 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:235,
|
836 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:243,
|
837 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:251,
|
838 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:259,
|
839 |
#: framework/premium/features/premium-header/items/contacts/options.php:52,
|
840 |
#: framework/premium/features/premium-header/items/contacts/options.php:78,
|
841 |
#: framework/premium/features/premium-header/items/contacts/options.php:105,
|
842 |
#: framework/premium/features/premium-header/items/contacts/options.php:132,
|
843 |
#: framework/premium/features/premium-header/items/contacts/options.php:159,
|
844 |
#: framework/premium/features/premium-header/items/contacts/options.php:186,
|
845 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:213,
|
846 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:86,
|
847 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:115,
|
848 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:143,
|
849 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:171,
|
850 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:199,
|
851 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:227,
|
852 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
|
853 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:52,
|
854 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:78,
|
855 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:105,
|
856 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:132,
|
857 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:159,
|
858 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:186,
|
859 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:213
|
860 |
msgid "Content"
|
861 |
msgstr ""
|
862 |
|
863 |
#: framework/extensions/cookies-consent/customizer.php:64,
|
864 |
+
#: framework/extensions/cookies-consent/helpers.php:30,
|
865 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:64,
|
866 |
+
#: build_tmp/build/framework/extensions/cookies-consent/helpers.php:30
|
867 |
msgid ""
|
868 |
"We use cookies to ensure that we give you the best experience on our website."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: framework/extensions/cookies-consent/customizer.php:76,
|
872 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:76
|
873 |
msgid "Accept Button text"
|
874 |
msgstr ""
|
875 |
|
876 |
#: framework/extensions/cookies-consent/customizer.php:80,
|
877 |
+
#: framework/extensions/cookies-consent/helpers.php:33,
|
878 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:80,
|
879 |
+
#: build_tmp/build/framework/extensions/cookies-consent/helpers.php:33
|
880 |
msgid "Accept"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: framework/extensions/cookies-consent/customizer.php:85,
|
884 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:85
|
885 |
msgid "Decline Button text"
|
886 |
msgstr ""
|
887 |
|
888 |
#: framework/extensions/cookies-consent/customizer.php:88,
|
889 |
+
#: framework/extensions/cookies-consent/helpers.php:34,
|
890 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:88,
|
891 |
+
#: build_tmp/build/framework/extensions/cookies-consent/helpers.php:34
|
892 |
msgid "Decline"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: framework/extensions/cookies-consent/customizer.php:98,
|
896 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:98
|
897 |
msgid "Maximum Width"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: framework/extensions/cookies-consent/customizer.php:119,
|
901 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:119
|
902 |
msgid "I accept the %sPrivacy Policy%s*"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: framework/extensions/cookies-consent/customizer.php:123,
|
906 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:123
|
907 |
msgid "This text will appear under each comment form and subscribe form."
|
908 |
msgstr ""
|
909 |
|
910 |
#: framework/extensions/cookies-consent/customizer.php:142,
|
911 |
#: framework/extensions/newsletter-subscribe/customizer.php:147,
|
912 |
+
#: framework/extensions/product-reviews/extension.php:331,
|
913 |
#: framework/extensions/trending/customizer.php:333,
|
914 |
#: framework/premium/extensions/mega-menu/options.php:516,
|
915 |
#: framework/premium/extensions/shortcuts/customizer.php:778,
|
916 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
|
917 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
|
918 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
|
919 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:142,
|
920 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:147,
|
921 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:331,
|
922 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:333,
|
923 |
#: framework/features/header/items/account/options.php:531,
|
924 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
|
925 |
#: framework/premium/features/content-blocks/options/popup.php:361,
|
926 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:516,
|
927 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:778,
|
928 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
|
929 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
|
930 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
|
931 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
|
932 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
|
933 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
|
934 |
#: framework/premium/features/premium-header/items/contacts/options.php:340,
|
935 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:186,
|
936 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:371,
|
937 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:178,
|
938 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:531,
|
939 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
|
940 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:361,
|
941 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
|
942 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
|
943 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
|
944 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:340,
|
945 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:186,
|
946 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:371,
|
947 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:178
|
948 |
msgid "Design"
|
949 |
msgstr ""
|
950 |
|
951 |
#: framework/extensions/cookies-consent/customizer.php:147,
|
952 |
+
#: framework/premium/extensions/mega-menu/options.php:605,
|
953 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:147,
|
954 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:605
|
955 |
msgid "Text Color"
|
956 |
msgstr ""
|
957 |
|
978 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
|
979 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
|
980 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
|
981 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:164,
|
982 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:191,
|
983 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:220,
|
984 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:251,
|
985 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:287,
|
986 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:316,
|
987 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:165,
|
988 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:190,
|
989 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:222,
|
990 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:253,
|
991 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:290,
|
992 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:322,
|
993 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:366,
|
994 |
#: framework/features/header/items/account/options.php:595,
|
995 |
#: framework/features/header/items/account/options.php:627,
|
996 |
#: framework/features/header/items/account/options.php:657,
|
1008 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
|
1009 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
|
1010 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
|
1011 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:762,
|
1012 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:809,
|
1013 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:828,
|
1014 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:812,
|
1015 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:844,
|
1016 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
|
1017 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
|
1018 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
|
1019 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
|
1020 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
|
1021 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
|
1022 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
|
1023 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
|
1055 |
#: framework/premium/features/premium-header/items/search-input/options.php:656,
|
1056 |
#: framework/premium/features/premium-header/items/search-input/options.php:686,
|
1057 |
#: framework/premium/features/premium-header/items/search-input/options.php:773,
|
1058 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:801,
|
1059 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:595,
|
1060 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:627,
|
1061 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:657,
|
1062 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:739,
|
1063 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:770,
|
1064 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:799,
|
1065 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:860,
|
1066 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:890,
|
1067 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:920,
|
1068 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:956,
|
1069 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1056,
|
1070 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1092,
|
1071 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1131,
|
1072 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
|
1073 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
|
1074 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
|
1075 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
|
1076 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
|
1077 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
|
1078 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
|
1079 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:105,
|
1080 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:191,
|
1081 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:222,
|
1082 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:251,
|
1083 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:318,
|
1084 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:349,
|
1085 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:378,
|
1086 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:573,
|
1087 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:604,
|
1088 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:634,
|
1089 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:734,
|
1090 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:773,
|
1091 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:812,
|
1092 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
|
1093 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
|
1094 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
|
1095 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:249,
|
1096 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:279,
|
1097 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:308,
|
1098 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:399,
|
1099 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:425,
|
1100 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:231,
|
1101 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:263,
|
1102 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:293,
|
1103 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:361,
|
1104 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:393,
|
1105 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:423,
|
1106 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:491,
|
1107 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:523,
|
1108 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:553,
|
1109 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:626,
|
1110 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:656,
|
1111 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:686,
|
1112 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:773,
|
1113 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:801
|
1114 |
msgid "Initial"
|
1115 |
msgstr ""
|
1116 |
|
1128 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
|
1129 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
|
1130 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
|
1131 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:170,
|
1132 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:226,
|
1133 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:257,
|
1134 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:292,
|
1135 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:321,
|
1136 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:196,
|
1137 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:327,
|
1138 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:372,
|
1139 |
#: framework/features/header/items/account/options.php:601,
|
1140 |
#: framework/features/header/items/account/options.php:632,
|
1141 |
#: framework/features/header/items/account/options.php:662,
|
1146 |
#: framework/features/header/items/account/options.php:1062,
|
1147 |
#: framework/features/header/items/account/options.php:1098,
|
1148 |
#: framework/features/header/items/account/options.php:1137,
|
1149 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:767,
|
1150 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:818,
|
1151 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:850,
|
1152 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
|
1153 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
|
1154 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
|
1155 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
|
1156 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
|
1157 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
|
1168 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
|
1169 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
|
1170 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:404,
|
1171 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:778,
|
1172 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:601,
|
1173 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:632,
|
1174 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:662,
|
1175 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:745,
|
1176 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:775,
|
1177 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:804,
|
1178 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:866,
|
1179 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1062,
|
1180 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1098,
|
1181 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1137,
|
1182 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
|
1183 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
|
1184 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
|
1185 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
|
1186 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:354,
|
1187 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:383,
|
1188 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:578,
|
1189 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:609,
|
1190 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:639,
|
1191 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:739,
|
1192 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:778,
|
1193 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:817,
|
1194 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
|
1195 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
|
1196 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
|
1197 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:404,
|
1198 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:778
|
1199 |
msgid "Hover"
|
1200 |
msgstr ""
|
1201 |
|
1204 |
#: framework/extensions/cookies-consent/customizer.php:299,
|
1205 |
#: framework/premium/extensions/mega-menu/options.php:816,
|
1206 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
|
1207 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:178,
|
1208 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:234,
|
1209 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:299,
|
1210 |
#: framework/features/header/items/account/options.php:1114,
|
1211 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
|
1212 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:816,
|
1213 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
|
1214 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
|
1215 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:412,
|
1216 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1114,
|
1217 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
|
1218 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
|
1219 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:412
|
1220 |
msgid "Background Color"
|
1221 |
msgstr ""
|
1222 |
|
1226 |
#: framework/premium/extensions/mega-menu/options.php:796,
|
1227 |
#: framework/premium/extensions/shortcuts/customizer.php:794,
|
1228 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
|
1229 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:203,
|
1230 |
+
#: build_tmp/build/framework/extensions/cookies-consent/customizer.php:270,
|
1231 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:348,
|
1232 |
#: framework/features/header/items/account/options.php:842,
|
1233 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:796,
|
1234 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:794,
|
1235 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
|
1236 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
|
1237 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
|
1238 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
|
1245 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:232,
|
1246 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:262,
|
1247 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:291,
|
1248 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:382,
|
1249 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:842,
|
1250 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
|
1251 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
|
1252 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
|
1253 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:234,
|
1254 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:356,
|
1255 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:385,
|
1256 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:428,
|
1257 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:468,
|
1258 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:203,
|
1259 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:232,
|
1260 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:262,
|
1261 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:291,
|
1262 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:382
|
1263 |
msgid "Font Color"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: framework/extensions/cookies-consent/helpers.php:79,
|
1267 |
+
#: build_tmp/build/framework/extensions/cookies-consent/helpers.php:79
|
1268 |
msgid "I accept the %sPrivacy Policy%s"
|
1269 |
msgstr ""
|
1270 |
|
1272 |
#: framework/extensions/newsletter-subscribe/readme.php:1,
|
1273 |
#: framework/premium/extensions/code-snippets/readme.php:1,
|
1274 |
#: framework/premium/extensions/post-types-extra/readme.php:1,
|
1275 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:1,
|
1276 |
+
#: build_tmp/build/framework/extensions/cookies-consent/readme.php:1,
|
1277 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:1,
|
1278 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:1,
|
1279 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:1,
|
1280 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:1
|
1281 |
msgid "Instructions"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: framework/extensions/cookies-consent/readme.php:4,
|
1285 |
+
#: build_tmp/build/framework/extensions/cookies-consent/readme.php:4
|
1286 |
msgid ""
|
1287 |
"After installing and activating the Cookies Consent extension you will be "
|
1288 |
"able to configure it from this location:"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: framework/extensions/cookies-consent/readme.php:9,
|
1292 |
+
#: build_tmp/build/framework/extensions/cookies-consent/readme.php:9
|
1293 |
msgid "Customizer"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: framework/extensions/cookies-consent/readme.php:13,
|
1297 |
+
#: build_tmp/build/framework/extensions/cookies-consent/readme.php:13
|
1298 |
msgid "Navigate to %s and customize the notification to meet your needs."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: framework/extensions/cookies-consent/readme.php:16,
|
1302 |
+
#: build_tmp/build/framework/extensions/cookies-consent/readme.php:16
|
1303 |
msgid "Customizer ➝ Cookie Consent"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#. translators: This is a brand name. Preferably to not be translated
|
1307 |
+
#: framework/extensions/newsletter-subscribe/config.php:5,
|
1308 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:5
|
1309 |
msgctxt "Extension Brand Name"
|
1310 |
msgid "Newsletter Subscribe"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: framework/extensions/newsletter-subscribe/config.php:6,
|
1314 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:6
|
1315 |
msgid ""
|
1316 |
"Easily capture new leads for your newsletter with the help of a widget, "
|
1317 |
"shortcode or even a block inserted on your pages or posts."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: framework/extensions/newsletter-subscribe/customizer.php:4,
|
1321 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:4
|
1322 |
msgid "Subscribe Form"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: framework/extensions/newsletter-subscribe/customizer.php:18,
|
1326 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
|
1327 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:18,
|
1328 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
|
1329 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
|
1330 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:79,
|
1338 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:95,
|
1339 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:15,
|
1340 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:15,
|
1341 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
|
1342 |
#: framework/premium/features/premium-header/items/contacts/options.php:45,
|
1343 |
#: framework/premium/features/premium-header/items/contacts/options.php:71,
|
1344 |
#: framework/premium/features/premium-header/items/contacts/options.php:98,
|
1345 |
#: framework/premium/features/premium-header/items/contacts/options.php:125,
|
1346 |
#: framework/premium/features/premium-header/items/contacts/options.php:152,
|
1347 |
#: framework/premium/features/premium-header/items/contacts/options.php:179,
|
1348 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:206,
|
1349 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
|
1350 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
|
1351 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:79,
|
1352 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:108,
|
1353 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:136,
|
1354 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:164,
|
1355 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:192,
|
1356 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:220,
|
1357 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
|
1358 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:13,
|
1359 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:95,
|
1360 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:15,
|
1361 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:15,
|
1362 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:45,
|
1363 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:71,
|
1364 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:98,
|
1365 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:125,
|
1366 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:152,
|
1367 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:179,
|
1368 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:206
|
1369 |
msgid "Title"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
#: framework/extensions/newsletter-subscribe/customizer.php:21,
|
1373 |
#: framework/extensions/newsletter-subscribe/helpers.php:42,
|
1374 |
+
#: framework/extensions/newsletter-subscribe/helpers.php:96,
|
1375 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:21,
|
1376 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:42,
|
1377 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:96
|
1378 |
msgid "Newsletter Updates"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
#: framework/extensions/newsletter-subscribe/customizer.php:27,
|
1382 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:27,
|
1383 |
+
#: framework/extensions/widgets/widgets/ct-posts/widget.php:14,
|
1384 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:14
|
1385 |
msgid "Description"
|
1386 |
msgstr ""
|
1387 |
|
1389 |
#: framework/extensions/newsletter-subscribe/helpers.php:45,
|
1390 |
#: framework/extensions/newsletter-subscribe/helpers.php:97,
|
1391 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
|
1392 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16,
|
1393 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:29,
|
1394 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:45,
|
1395 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:97,
|
1396 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
|
1397 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
|
1398 |
msgid "Enter your email address below to subscribe to our newsletter"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
#: framework/extensions/newsletter-subscribe/customizer.php:42,
|
1402 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46,
|
1403 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:42,
|
1404 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
|
1405 |
msgid "List Source"
|
1406 |
msgstr ""
|
1407 |
|
1410 |
#: framework/features/header/header-options.php:71,
|
1411 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
|
1412 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
|
1413 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:49,
|
1414 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:17,
|
1415 |
+
#: build_tmp/build/framework/features/header/header-options.php:71,
|
1416 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:173,
|
1417 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:198,
|
1418 |
+
#: framework/premium/features/content-blocks/options/hook.php:289,
|
1419 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
|
1420 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
|
1421 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:173,
|
1422 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:198,
|
1423 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:289
|
1424 |
msgid "Default"
|
1425 |
msgstr ""
|
1426 |
|
1428 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
|
1429 |
#: framework/premium/extensions/shortcuts/customizer.php:250,
|
1430 |
#: framework/premium/extensions/shortcuts/customizer.php:276,
|
1431 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:50,
|
1432 |
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
|
1433 |
+
#: framework/premium/features/content-blocks/options/archive.php:48,
|
1434 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
|
1435 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:250,
|
1436 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:276,
|
1437 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
|
1438 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:48
|
1439 |
#: framework/premium/static/js/options/IconPicker/Modal.js:148
|
1440 |
msgid "Custom"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
#: framework/extensions/newsletter-subscribe/customizer.php:62,
|
1444 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64,
|
1445 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:62,
|
1446 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
|
1447 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
|
1448 |
msgid "List ID"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: framework/extensions/newsletter-subscribe/customizer.php:80,
|
1452 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76,
|
1453 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:80,
|
1454 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
|
1455 |
msgid "Name Field"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: framework/extensions/newsletter-subscribe/customizer.php:93,
|
1459 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88,
|
1460 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:93,
|
1461 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
|
1462 |
msgid "Name Label"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
#: framework/extensions/newsletter-subscribe/customizer.php:95,
|
1466 |
+
#: framework/extensions/newsletter-subscribe/extension.php:180,
|
1467 |
#: framework/extensions/newsletter-subscribe/helpers.php:57,
|
1468 |
#: framework/extensions/newsletter-subscribe/helpers.php:108,
|
1469 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
|
1470 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69,
|
1471 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:95,
|
1472 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:180,
|
1473 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:57,
|
1474 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:108,
|
1475 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
|
1476 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
|
1477 |
msgid "Your name"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
#: framework/extensions/newsletter-subscribe/customizer.php:105,
|
1481 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99,
|
1482 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:105,
|
1483 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
|
1484 |
msgid "Mail Label"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
#: framework/extensions/newsletter-subscribe/customizer.php:107,
|
1488 |
+
#: framework/extensions/newsletter-subscribe/extension.php:181,
|
1489 |
#: framework/extensions/newsletter-subscribe/helpers.php:61,
|
1490 |
#: framework/extensions/newsletter-subscribe/helpers.php:109,
|
1491 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
|
1492 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70,
|
1493 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:107,
|
1494 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:181,
|
1495 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:61,
|
1496 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:109,
|
1497 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
|
1498 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
|
1499 |
msgid "Your email"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
#: framework/extensions/newsletter-subscribe/customizer.php:114,
|
1503 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107,
|
1504 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:114,
|
1505 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
|
1506 |
msgid "Button Label"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
#: framework/extensions/newsletter-subscribe/customizer.php:116,
|
1510 |
+
#: framework/extensions/newsletter-subscribe/extension.php:175,
|
1511 |
#: framework/extensions/newsletter-subscribe/helpers.php:52,
|
1512 |
#: framework/extensions/newsletter-subscribe/helpers.php:101,
|
1513 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
|
1514 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19,
|
1515 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:116,
|
1516 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:175,
|
1517 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:52,
|
1518 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:101,
|
1519 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
|
1520 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
|
1521 |
msgid "Subscribe"
|
1522 |
msgstr ""
|
1523 |
|
1531 |
#: framework/premium/extensions/shortcuts/customizer.php:427,
|
1532 |
#: framework/premium/extensions/shortcuts/customizer.php:483,
|
1533 |
#: framework/premium/extensions/shortcuts/customizer.php:742,
|
1534 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:126,
|
1535 |
#: framework/premium/features/content-blocks/options/404.php:146,
|
1536 |
#: framework/premium/features/content-blocks/options/header.php:166,
|
1537 |
+
#: framework/premium/features/content-blocks/options/hook.php:343,
|
1538 |
#: framework/premium/features/content-blocks/options/popup.php:339,
|
1539 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:45,
|
1540 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:107,
|
1541 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:169,
|
1542 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:225,
|
1543 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:312,
|
1544 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:371,
|
1545 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:427,
|
1546 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:483,
|
1547 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:742,
|
1548 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
|
1549 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43,
|
1550 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:146,
|
1551 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:166,
|
1552 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:343,
|
1553 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:339,
|
1554 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
|
1555 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
|
1556 |
msgid "Visibility"
|
1557 |
msgstr ""
|
1558 |
|
1575 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
|
1576 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
|
1577 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
|
1578 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:137,
|
1579 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:279,
|
1580 |
+
#: build_tmp/build/framework/features/header/header-options.php:103,
|
1581 |
+
#: build_tmp/build/framework/features/header/header-options.php:185,
|
1582 |
#: framework/features/header/items/account/options.php:245,
|
1583 |
#: framework/features/header/items/account/options.php:451,
|
1584 |
#: framework/premium/features/content-blocks/options/404.php:157,
|
1585 |
#: framework/premium/features/content-blocks/options/header.php:177,
|
1586 |
+
#: framework/premium/features/content-blocks/options/hook.php:354,
|
1587 |
#: framework/premium/features/content-blocks/options/popup.php:350,
|
1588 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:59,
|
1589 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:121,
|
1590 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:183,
|
1591 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:239,
|
1592 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:327,
|
1593 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:385,
|
1594 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:441,
|
1595 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:497,
|
1596 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:634,
|
1597 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:756,
|
1598 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:168,
|
1599 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:189,
|
1600 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
|
1601 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
|
1602 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
|
1603 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
|
1604 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
|
1605 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73,
|
1606 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:245,
|
1607 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:451,
|
1608 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:157,
|
1609 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:177,
|
1610 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:354,
|
1611 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:350,
|
1612 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
|
1613 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
|
1614 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
|
1615 |
msgid "Desktop"
|
1616 |
msgstr ""
|
1617 |
|
1632 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
|
1633 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
|
1634 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
|
1635 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:138,
|
1636 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:280,
|
1637 |
#: framework/features/header/items/account/options.php:246,
|
1638 |
#: framework/features/header/items/account/options.php:452,
|
1639 |
#: framework/features/header/items/account/options.php:1179,
|
1640 |
#: framework/premium/features/content-blocks/options/404.php:158,
|
1641 |
#: framework/premium/features/content-blocks/options/header.php:178,
|
1642 |
+
#: framework/premium/features/content-blocks/options/hook.php:355,
|
1643 |
#: framework/premium/features/content-blocks/options/popup.php:351,
|
1644 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:60,
|
1645 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:122,
|
1646 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:184,
|
1647 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:240,
|
1648 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:328,
|
1649 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:386,
|
1650 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:442,
|
1651 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:498,
|
1652 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:635,
|
1653 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:757,
|
1654 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:169,
|
1655 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:190,
|
1656 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
|
1657 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
|
1658 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
|
1659 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
|
1660 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
|
1661 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74,
|
1662 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:246,
|
1663 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:452,
|
1664 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1179,
|
1665 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:158,
|
1666 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:178,
|
1667 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:355,
|
1668 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:351,
|
1669 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
|
1670 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
|
1671 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
|
1672 |
msgid "Tablet"
|
1673 |
msgstr ""
|
1674 |
|
1691 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
|
1692 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
|
1693 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
|
1694 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:139,
|
1695 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:281,
|
1696 |
+
#: build_tmp/build/framework/features/header/header-options.php:105,
|
1697 |
+
#: build_tmp/build/framework/features/header/header-options.php:187,
|
1698 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:131,
|
1699 |
#: framework/features/header/items/account/options.php:247,
|
1700 |
#: framework/features/header/items/account/options.php:453,
|
1701 |
#: framework/features/header/items/account/options.php:1180,
|
1702 |
#: framework/premium/features/content-blocks/options/404.php:159,
|
1703 |
#: framework/premium/features/content-blocks/options/header.php:179,
|
1704 |
+
#: framework/premium/features/content-blocks/options/hook.php:356,
|
1705 |
#: framework/premium/features/content-blocks/options/popup.php:352,
|
1706 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:61,
|
1707 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:123,
|
1708 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:185,
|
1709 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:241,
|
1710 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:329,
|
1711 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:387,
|
1712 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:443,
|
1713 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:499,
|
1714 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:636,
|
1715 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:758,
|
1716 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:170,
|
1717 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:191,
|
1718 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
|
1719 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
|
1720 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
|
1721 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
|
1722 |
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
|
1723 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
|
1724 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:94,
|
1725 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:131,
|
1726 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:247,
|
1727 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:453,
|
1728 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1180,
|
1729 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:159,
|
1730 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:179,
|
1731 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:356,
|
1732 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:352,
|
1733 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
|
1734 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
|
1735 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
|
1736 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:94
|
1737 |
msgid "Mobile"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: framework/extensions/newsletter-subscribe/customizer.php:152,
|
1741 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:152
|
1742 |
msgid "Title Color"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: framework/extensions/newsletter-subscribe/customizer.php:173,
|
1746 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:173
|
1747 |
msgid "Description Color"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
#: framework/extensions/newsletter-subscribe/customizer.php:204,
|
1751 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:204,
|
1752 |
#: framework/features/header/items/account/options.php:874,
|
1753 |
#: framework/premium/features/premium-header/items/search-input/options.php:184,
|
1754 |
#: framework/premium/features/premium-header/items/search-input/options.php:213,
|
1755 |
#: framework/premium/features/premium-header/items/search-input/options.php:245,
|
1756 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:275,
|
1757 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:874,
|
1758 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:184,
|
1759 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:213,
|
1760 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:245,
|
1761 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:275
|
1762 |
msgid "Input Font Color"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: framework/extensions/newsletter-subscribe/customizer.php:228,
|
1766 |
#: framework/extensions/newsletter-subscribe/customizer.php:259,
|
1767 |
#: framework/extensions/newsletter-subscribe/customizer.php:295,
|
1768 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:228,
|
1769 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:259,
|
1770 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:295,
|
1771 |
#: framework/features/header/items/account/options.php:896,
|
1772 |
#: framework/features/header/items/account/options.php:926,
|
1773 |
#: framework/features/header/items/account/options.php:962,
|
1782 |
#: framework/premium/features/premium-header/items/search-input/options.php:558,
|
1783 |
#: framework/premium/features/premium-header/items/search-input/options.php:631,
|
1784 |
#: framework/premium/features/premium-header/items/search-input/options.php:661,
|
1785 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:691,
|
1786 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:896,
|
1787 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:926,
|
1788 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:962,
|
1789 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:237,
|
1790 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:268,
|
1791 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:298,
|
1792 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:367,
|
1793 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:398,
|
1794 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:428,
|
1795 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:497,
|
1796 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:528,
|
1797 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:558,
|
1798 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:631,
|
1799 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:661,
|
1800 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:691
|
1801 |
msgid "Focus"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
#: framework/extensions/newsletter-subscribe/customizer.php:236,
|
1805 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:236,
|
1806 |
#: framework/features/header/items/account/options.php:904,
|
1807 |
#: framework/premium/features/premium-header/items/search-input/options.php:444,
|
1808 |
#: framework/premium/features/premium-header/items/search-input/options.php:473,
|
1809 |
#: framework/premium/features/premium-header/items/search-input/options.php:505,
|
1810 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:535,
|
1811 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:904,
|
1812 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:444,
|
1813 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:473,
|
1814 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:505,
|
1815 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:535
|
1816 |
msgid "Input Border Color"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
#: framework/extensions/newsletter-subscribe/customizer.php:273,
|
1820 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:273,
|
1821 |
#: framework/features/header/items/account/options.php:940,
|
1822 |
#: framework/premium/features/premium-header/items/search-input/options.php:580,
|
1823 |
#: framework/premium/features/premium-header/items/search-input/options.php:608,
|
1824 |
#: framework/premium/features/premium-header/items/search-input/options.php:638,
|
1825 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:668,
|
1826 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:940,
|
1827 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:580,
|
1828 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:608,
|
1829 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:638,
|
1830 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:668
|
1831 |
msgid "Input Background Color"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
#: framework/extensions/newsletter-subscribe/customizer.php:305,
|
1835 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:305,
|
1836 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220,
|
1837 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
|
1838 |
msgid "Button Color"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
#: framework/extensions/newsletter-subscribe/customizer.php:334,
|
1842 |
#: framework/extensions/trending/customizer.php:380,
|
1843 |
+
#: framework/premium/extensions/shortcuts/customizer.php:953,
|
1844 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:334,
|
1845 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:380,
|
1846 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:953
|
1847 |
msgid "Container Background"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: framework/extensions/newsletter-subscribe/customizer.php:350,
|
1851 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:350
|
1852 |
msgid "Container Border"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: framework/extensions/newsletter-subscribe/customizer.php:385,
|
1856 |
+
#: framework/extensions/trending/customizer.php:396,
|
1857 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:385,
|
1858 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:396
|
1859 |
msgid "Container Inner Spacing"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: framework/extensions/newsletter-subscribe/customizer.php:400,
|
1863 |
+
#: framework/premium/extensions/shortcuts/customizer.php:974,
|
1864 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:400,
|
1865 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:974
|
1866 |
msgid "Container Border Radius"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: framework/extensions/newsletter-subscribe/extension.php:128,
|
1870 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:128
|
1871 |
msgid "Disable Subscribe Form"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: framework/extensions/newsletter-subscribe/helpers.php:163,
|
1875 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:163,
|
1876 |
+
#: framework/features/header/items/account/options.php:295,
|
1877 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:295
|
1878 |
#: static/js/screens/SiteExport.js:85
|
1879 |
msgid "Name"
|
1880 |
msgstr ""
|
1883 |
#: framework/features/header/modal/register.php:36,
|
1884 |
#: framework/premium/extensions/shortcuts/customizer.php:130,
|
1885 |
#: framework/premium/extensions/shortcuts/customizer.php:153,
|
1886 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:166,
|
1887 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:215,
|
1888 |
#: framework/premium/extensions/shortcuts/views/bar.php:45,
|
1889 |
+
#: build_tmp/build/framework/features/header/modal/register.php:36,
|
1890 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:130,
|
1891 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:153,
|
1892 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:175,
|
1893 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:215,
|
1894 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:45,
|
1895 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:175
|
1896 |
msgid "Email"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: framework/extensions/newsletter-subscribe/readme.php:4,
|
1900 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:4
|
1901 |
msgid ""
|
1902 |
"After installing and activating the Newsletter Subscribe\n"
|
1903 |
" extension you will have two possibilities to show your subscribe form:"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: framework/extensions/newsletter-subscribe/readme.php:10,
|
1907 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:10
|
1908 |
msgid "Widget"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: framework/extensions/newsletter-subscribe/readme.php:14,
|
1912 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:14
|
1913 |
msgid "Navigate to %s and place the widget in any widget area you want."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: framework/extensions/newsletter-subscribe/readme.php:17,
|
1917 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:17
|
1918 |
msgid "Appearance ➝ Widgets"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: framework/extensions/newsletter-subscribe/readme.php:25,
|
1922 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:25
|
1923 |
msgid "Single Page Block"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: framework/extensions/newsletter-subscribe/readme.php:29,
|
1927 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:29
|
1928 |
msgid "Navigate to %s and customize the form and more."
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: framework/extensions/newsletter-subscribe/readme.php:32,
|
1932 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:32
|
1933 |
msgid "Customizer ➝ Single Posts"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
#. translators: This is a brand name. Preferably to not be translated
|
1937 |
+
#: framework/extensions/product-reviews/config.php:5,
|
1938 |
+
#: build_tmp/build/framework/extensions/product-reviews/config.php:5
|
1939 |
msgctxt "Extension Brand Name"
|
1940 |
msgid "Product Reviews"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: framework/extensions/product-reviews/config.php:6,
|
1944 |
+
#: build_tmp/build/framework/extensions/product-reviews/config.php:6
|
1945 |
msgid ""
|
1946 |
"This extension lets you easily create an affiliate marketing type of website "
|
1947 |
"by giving you options to create a personalized product review and use your "
|
1948 |
"affiliate links to direct your readers to the purchase page."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: framework/extensions/product-reviews/extension.php:227,
|
1952 |
+
#: framework/extensions/product-reviews/views/single-top.php:139,
|
1953 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:227,
|
1954 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:139
|
1955 |
msgid "Overall Score"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: framework/extensions/product-reviews/extension.php:285,
|
1959 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:285
|
1960 |
msgid "Review Summary"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: framework/extensions/product-reviews/extension.php:296,
|
1964 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:296
|
1965 |
msgid "Scores Box Width"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: framework/extensions/product-reviews/extension.php:306,
|
1969 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:306
|
1970 |
msgid "Read More Button"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: framework/extensions/product-reviews/extension.php:317,
|
1974 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:317
|
1975 |
msgid "Buy Now Button"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: framework/extensions/product-reviews/extension.php:336,
|
1979 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:336
|
1980 |
msgid "Star Rating Color"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: framework/extensions/product-reviews/extension.php:353,
|
1984 |
+
#: framework/extensions/product-reviews/extension.php:381,
|
1985 |
+
#: framework/extensions/product-reviews/extension.php:402,
|
1986 |
+
#: framework/premium/extensions/mega-menu/options.php:772,
|
1987 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:353,
|
1988 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:381,
|
1989 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:402,
|
1990 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:772
|
1991 |
msgid "Active"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: framework/extensions/product-reviews/extension.php:359,
|
1995 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:359
|
1996 |
msgid "Inactive"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: framework/extensions/product-reviews/extension.php:367,
|
2000 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:367
|
2001 |
msgid "Overll Score Text"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: framework/extensions/product-reviews/extension.php:389,
|
2005 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:389
|
2006 |
msgid "Overll Score Background"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: framework/extensions/product-reviews/extension.php:449,
|
2010 |
+
#: framework/extensions/product-reviews/extension.php:450,
|
2011 |
+
#: framework/extensions/product-reviews/extension.php:453,
|
2012 |
+
#: framework/extensions/product-reviews/extension.php:455,
|
2013 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:449,
|
2014 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:450,
|
2015 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:453,
|
2016 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:455
|
2017 |
msgid "Product Reviews"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: framework/extensions/product-reviews/extension.php:454,
|
2021 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:454
|
2022 |
msgid "Product Review"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: framework/extensions/product-reviews/extension.php:456,
|
2026 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:456
|
2027 |
msgid "Parent Product Review"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: framework/extensions/product-reviews/extension.php:457,
|
2031 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:457
|
2032 |
msgid "All Reviews"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: framework/extensions/product-reviews/extension.php:458,
|
2036 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:458
|
2037 |
msgid "View Product Review"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: framework/extensions/product-reviews/extension.php:459,
|
2041 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:459
|
2042 |
msgid "Add New Product Review"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: framework/extensions/product-reviews/extension.php:460,
|
2046 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:460
|
2047 |
msgid "Add New Review"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: framework/extensions/product-reviews/extension.php:461,
|
2051 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:461
|
2052 |
msgid "Edit Product Review"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: framework/extensions/product-reviews/extension.php:462,
|
2056 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:462
|
2057 |
msgid "Update Product Review"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: framework/extensions/product-reviews/extension.php:463,
|
2061 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:463
|
2062 |
msgid "Search Product Review"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: framework/extensions/product-reviews/extension.php:464,
|
2066 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:464
|
2067 |
msgid "Not Found"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: framework/extensions/product-reviews/extension.php:465,
|
2071 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:465
|
2072 |
msgid "Not found in Trash"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: framework/extensions/product-reviews/extension.php:499,
|
2076 |
+
#: framework/extensions/product-reviews/extension.php:509,
|
2077 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:499,
|
2078 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:509
|
2079 |
msgid "Categories"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: framework/extensions/product-reviews/extension.php:500,
|
2083 |
#: framework/extensions/trending/customizer.php:35,
|
2084 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:500,
|
2085 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:35,
|
2086 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:37,
|
2087 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:37
|
2088 |
msgid "Category"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: framework/extensions/product-reviews/extension.php:501,
|
2092 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:501
|
2093 |
msgid "Search Category"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: framework/extensions/product-reviews/extension.php:502,
|
2097 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:502
|
2098 |
msgid "All Categories"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: framework/extensions/product-reviews/extension.php:503,
|
2102 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:503
|
2103 |
msgid "Parent Category"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: framework/extensions/product-reviews/extension.php:504,
|
2107 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:504
|
2108 |
msgid "Parent Category:"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: framework/extensions/product-reviews/extension.php:505,
|
2112 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:505
|
2113 |
msgid "Edit Category"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: framework/extensions/product-reviews/extension.php:506,
|
2117 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:506
|
2118 |
msgid "Update Category"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: framework/extensions/product-reviews/extension.php:507,
|
2122 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:507
|
2123 |
msgid "Add New Category"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: framework/extensions/product-reviews/extension.php:508,
|
2127 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:508
|
2128 |
msgid "New Category Name"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#. translators: %s is the theme name.
|
2132 |
+
#: framework/extensions/product-reviews/extension.php:527,
|
2133 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:527
|
2134 |
msgid "%s Settings"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: framework/extensions/product-reviews/extension.php:528,
|
2138 |
+
#: build_tmp/build/framework/extensions/product-reviews/extension.php:528
|
2139 |
msgid "Blocksy"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#: framework/extensions/product-reviews/helpers.php:30,
|
2143 |
+
#: framework/extensions/product-reviews/metabox.php:179,
|
2144 |
+
#: build_tmp/build/framework/extensions/product-reviews/helpers.php:30,
|
2145 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:179
|
2146 |
msgid "Rating"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: framework/extensions/product-reviews/metabox.php:10,
|
2150 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:10
|
2151 |
msgid "Review Entity"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: framework/extensions/product-reviews/metabox.php:18,
|
2155 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:18,
|
2156 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34,
|
2157 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34
|
2158 |
msgid "Product"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: framework/extensions/product-reviews/metabox.php:19,
|
2162 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:19
|
2163 |
msgid "Book"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: framework/extensions/product-reviews/metabox.php:21,
|
2167 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:21
|
2168 |
msgid "Creative Work Season"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: framework/extensions/product-reviews/metabox.php:22,
|
2172 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:22
|
2173 |
msgid "Creative Work Series"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: framework/extensions/product-reviews/metabox.php:23,
|
2177 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:23
|
2178 |
msgid "Episode"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: framework/extensions/product-reviews/metabox.php:25,
|
2182 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:25
|
2183 |
msgid "Game"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: framework/extensions/product-reviews/metabox.php:27,
|
2187 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:27
|
2188 |
msgid "Local Business"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: framework/extensions/product-reviews/metabox.php:28,
|
2192 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:28
|
2193 |
msgid "Media Object"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: framework/extensions/product-reviews/metabox.php:29,
|
2197 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:29
|
2198 |
msgid "Movie"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: framework/extensions/product-reviews/metabox.php:30,
|
2202 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:30
|
2203 |
msgid "Music Playlist"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: framework/extensions/product-reviews/metabox.php:31,
|
2207 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:31
|
2208 |
msgid "Music Recording"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: framework/extensions/product-reviews/metabox.php:32,
|
2212 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:32
|
2213 |
msgid "Organization"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: framework/extensions/product-reviews/metabox.php:38,
|
2217 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:38
|
2218 |
msgid ""
|
2219 |
"More info about review entity and how to choose the right one can be found "
|
2220 |
"%shere%s."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: framework/extensions/product-reviews/metabox.php:60,
|
2224 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:60
|
2225 |
msgid ""
|
2226 |
"Please note that some of this information (price, sku, brand) won't be "
|
2227 |
"displayed on the front-end. It is solely used for Google's Schema.org markup."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: framework/extensions/product-reviews/metabox.php:69,
|
2231 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:69
|
2232 |
msgid "Product Price"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: framework/extensions/product-reviews/metabox.php:76,
|
2236 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:76
|
2237 |
msgid "Product SKU"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: framework/extensions/product-reviews/metabox.php:83,
|
2241 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:83
|
2242 |
msgid "Product Brand"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: framework/extensions/product-reviews/metabox.php:96,
|
2246 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:96
|
2247 |
msgid "Gallery"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: framework/extensions/product-reviews/metabox.php:107,
|
2251 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:107
|
2252 |
msgid "Affiliate Button Label"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
#: framework/extensions/product-reviews/metabox.php:109,
|
2256 |
+
#: framework/extensions/product-reviews/views/single-top.php:156,
|
2257 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:109,
|
2258 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:156
|
2259 |
msgid "Buy Now"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: framework/extensions/product-reviews/metabox.php:114,
|
2263 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:114
|
2264 |
msgid "Affiliate Link"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: framework/extensions/product-reviews/metabox.php:120,
|
2268 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:120
|
2269 |
msgid "Open Link In New Tab"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: framework/extensions/product-reviews/metabox.php:126,
|
2273 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:126
|
2274 |
msgid "Sponsored Attribute"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: framework/extensions/product-reviews/metabox.php:148,
|
2278 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:148
|
2279 |
msgid "Read More Button Label"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
#: framework/extensions/product-reviews/metabox.php:150,
|
2283 |
+
#: framework/extensions/product-reviews/views/single-top.php:162,
|
2284 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:150,
|
2285 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:162
|
2286 |
msgid "Read More"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: framework/extensions/product-reviews/metabox.php:170,
|
2290 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:170
|
2291 |
msgid "Short Description"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: framework/extensions/product-reviews/metabox.php:185,
|
2295 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:185
|
2296 |
msgid "Scores"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: framework/extensions/product-reviews/metabox.php:225,
|
2300 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:225
|
2301 |
msgid "Product specs"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: framework/extensions/product-reviews/metabox.php:250,
|
2305 |
+
#: framework/extensions/product-reviews/views/single-top.php:262,
|
2306 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:250,
|
2307 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:262
|
2308 |
msgid "Pros"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
#: framework/extensions/product-reviews/metabox.php:270,
|
2312 |
+
#: framework/extensions/product-reviews/views/single-top.php:285,
|
2313 |
+
#: build_tmp/build/framework/extensions/product-reviews/metabox.php:270,
|
2314 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:285
|
2315 |
msgid "Cons"
|
2316 |
msgstr ""
|
2317 |
|
|
|
2318 |
#. translators: This is a brand name. Preferably to not be translated
|
2319 |
#: framework/extensions/trending/config.php:5,
|
2320 |
+
#: framework/extensions/trending/customizer.php:97,
|
2321 |
+
#: build_tmp/build/framework/extensions/trending/config.php:5,
|
2322 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:97
|
2323 |
msgctxt "Extension Brand Name"
|
2324 |
msgid "Trending Posts"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: framework/extensions/trending/config.php:6,
|
2328 |
+
#: build_tmp/build/framework/extensions/trending/config.php:6
|
2329 |
msgid ""
|
2330 |
"Highlight your most popular posts or products based on the number of "
|
2331 |
"comments or reviews they have gotten in the specified period of time."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: framework/extensions/trending/customizer.php:8,
|
2335 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:8,
|
2336 |
#: framework/premium/extensions/shortcuts/views/bar.php:48,
|
2337 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:6,
|
2338 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:48,
|
2339 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:6
|
2340 |
msgid "Products"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
#: framework/extensions/trending/customizer.php:36,
|
2344 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:36,
|
2345 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:38,
|
2346 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:38
|
2347 |
msgid "All categories"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
#: framework/extensions/trending/customizer.php:41,
|
2351 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:41,
|
2352 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:43,
|
2353 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:43
|
2354 |
msgid "Taxonomy"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
#: framework/extensions/trending/customizer.php:42,
|
2358 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:42,
|
2359 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:44,
|
2360 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:44
|
2361 |
msgid "All taxonomies"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: framework/extensions/trending/customizer.php:106,
|
2365 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:106
|
2366 |
msgid "Trending Posts"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: framework/extensions/trending/customizer.php:115,
|
2370 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:115
|
2371 |
msgid "Module Title"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
#: framework/extensions/trending/customizer.php:118,
|
2375 |
+
#: framework/extensions/trending/helpers.php:221,
|
2376 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:118,
|
2377 |
+
#: build_tmp/build/framework/extensions/trending/helpers.php:221
|
2378 |
msgid "Trending now"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: framework/extensions/trending/customizer.php:123,
|
2382 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:123
|
2383 |
msgid "Module Title Tag"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: framework/extensions/trending/customizer.php:149,
|
2387 |
+
#: framework/extensions/trending/customizer.php:162,
|
2388 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:149,
|
2389 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:162,
|
2390 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:137,
|
2391 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:137
|
2392 |
+
msgid "Post Type"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
#: framework/extensions/trending/customizer.php:171,
|
2396 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:171,
|
2397 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
|
2398 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:149,
|
2399 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:168,
|
2400 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
|
2401 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:149,
|
2402 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:168
|
2403 |
msgid "Source"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
#: framework/extensions/trending/customizer.php:176,
|
2407 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:176,
|
2408 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:154,
|
2409 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:154
|
2410 |
msgid "Taxonomies"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#: framework/extensions/trending/customizer.php:177,
|
2414 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:177,
|
2415 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:155,
|
2416 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:174,
|
2417 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:155,
|
2418 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:174
|
2419 |
msgid "Custom Query"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
#: framework/extensions/trending/customizer.php:200,
|
2423 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:200,
|
2424 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:243,
|
2425 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:243
|
2426 |
msgid "Posts ID"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
#: framework/extensions/trending/customizer.php:204,
|
2430 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:204,
|
2431 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:247,
|
2432 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:247
|
2433 |
msgid "Separate posts ID by comma. How to find the %spost ID%s."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: framework/extensions/trending/customizer.php:220,
|
2437 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:220
|
2438 |
msgid "Trending From"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
#: framework/extensions/trending/customizer.php:229,
|
2442 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:229,
|
2443 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:213,
|
2444 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:213
|
2445 |
msgid "All Time"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: framework/extensions/trending/customizer.php:230,
|
2449 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:230
|
2450 |
msgid "Last 24 Hours"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: framework/extensions/trending/customizer.php:231,
|
2454 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:231
|
2455 |
msgid "Last 7 Days"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: framework/extensions/trending/customizer.php:232,
|
2459 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:232
|
2460 |
msgid "Last Month"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: framework/extensions/trending/customizer.php:245,
|
2464 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:245
|
2465 |
msgid "Image Size"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: framework/extensions/trending/customizer.php:267,
|
2469 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:267
|
2470 |
msgid "Container Visibility"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: framework/extensions/trending/customizer.php:288,
|
2474 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:288
|
2475 |
+
msgid "Display Location"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: framework/extensions/trending/customizer.php:296,
|
2479 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:296
|
2480 |
+
msgid "Before Footer"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: framework/extensions/trending/customizer.php:301,
|
2484 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:301
|
2485 |
+
msgid "After Footer"
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: framework/extensions/trending/customizer.php:306,
|
2489 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:306
|
2490 |
+
msgid "After Header"
|
2491 |
+
msgstr ""
|
2492 |
+
|
2493 |
+
#: framework/extensions/trending/customizer.php:312,
|
2494 |
+
#: framework/features/header/header-options.php:158,
|
2495 |
+
#: framework/premium/extensions/shortcuts/customizer.php:763,
|
2496 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:312,
|
2497 |
+
#: build_tmp/build/framework/features/header/header-options.php:158,
|
2498 |
+
#: framework/premium/features/content-blocks/options/archive.php:186,
|
2499 |
+
#: framework/premium/features/content-blocks/options/header.php:142,
|
2500 |
+
#: framework/premium/features/content-blocks/options/hook.php:236,
|
2501 |
+
#: framework/premium/features/content-blocks/options/popup.php:297,
|
2502 |
+
#: framework/premium/features/content-blocks/options/single.php:119,
|
2503 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:763,
|
2504 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:186,
|
2505 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:142,
|
2506 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:236,
|
2507 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:297,
|
2508 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/single.php:119
|
2509 |
+
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
|
2510 |
+
#: framework/premium/static/js/footer/EditConditions.js:97
|
2511 |
+
#: static/js/header/EditConditions.js:103
|
2512 |
+
msgid "Display Conditions"
|
2513 |
+
msgstr ""
|
2514 |
+
|
2515 |
+
#: framework/extensions/trending/customizer.php:323,
|
2516 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:323
|
2517 |
+
msgid "Trending Block Display Conditions"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: framework/extensions/trending/customizer.php:324,
|
2521 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:324
|
2522 |
+
msgid "Add one or more conditions to display the trending block."
|
2523 |
+
msgstr ""
|
2524 |
+
|
2525 |
+
#: framework/extensions/trending/customizer.php:339,
|
2526 |
+
#: build_tmp/build/framework/extensions/trending/customizer.php:339
|
2527 |
msgid "Posts Font"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
#. translators: This is a brand name. Preferably to not be translated
|
2531 |
+
#: framework/extensions/widgets/config.php:5,
|
2532 |
+
#: build_tmp/build/framework/extensions/widgets/config.php:5
|
2533 |
msgctxt "Extension Brand Name"
|
2534 |
msgid "Widgets"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: framework/extensions/widgets/config.php:6,
|
2538 |
+
#: build_tmp/build/framework/extensions/widgets/config.php:6
|
2539 |
msgid ""
|
2540 |
"Add new handcrafted widgets to your sidebars! Social Network Icons, "
|
2541 |
"Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
|
2542 |
"Posts are the choices available."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: framework/features/header/account-modal.php:37,
|
2546 |
+
#: build_tmp/build/framework/features/header/account-modal.php:37
|
2547 |
msgid "Close account modal"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
#: framework/features/header/account-modal.php:49,
|
2551 |
+
#: build_tmp/build/framework/features/header/account-modal.php:49,
|
2552 |
#: framework/features/header/items/account/options.php:498,
|
2553 |
+
#: framework/features/header/items/account/views/logout.php:7,
|
2554 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:498,
|
2555 |
+
#: build_tmp/build/framework/features/header/items/account/views/logout.php:7
|
2556 |
msgid "Login"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: framework/features/header/account-modal.php:53,
|
2560 |
+
#: build_tmp/build/framework/features/header/account-modal.php:53
|
2561 |
msgid "Sign Up"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: framework/features/header/account-modal.php:72,
|
2565 |
+
#: build_tmp/build/framework/features/header/account-modal.php:72
|
2566 |
msgid "Back to login"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: framework/features/header/header-options.php:6,
|
2570 |
+
#: build_tmp/build/framework/features/header/header-options.php:6
|
2571 |
msgid "Sticky Functionality"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: framework/features/header/header-options.php:32,
|
2575 |
+
#: build_tmp/build/framework/features/header/header-options.php:32
|
2576 |
msgid "Only Main Row"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: framework/features/header/header-options.php:37,
|
2580 |
+
#: build_tmp/build/framework/features/header/header-options.php:37
|
2581 |
msgid "Top & Main Row"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: framework/features/header/header-options.php:42,
|
2585 |
+
#: build_tmp/build/framework/features/header/header-options.php:42
|
2586 |
msgid "All Rows"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: framework/features/header/header-options.php:47,
|
2590 |
+
#: build_tmp/build/framework/features/header/header-options.php:47
|
2591 |
msgid "Main & Bottom Row"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: framework/features/header/header-options.php:52,
|
2595 |
+
#: build_tmp/build/framework/features/header/header-options.php:52
|
2596 |
msgid "Only Top Row"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: framework/features/header/header-options.php:57,
|
2600 |
+
#: build_tmp/build/framework/features/header/header-options.php:57
|
2601 |
msgid "Only Bottom Row"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: framework/features/header/header-options.php:63,
|
2605 |
+
#: build_tmp/build/framework/features/header/header-options.php:63
|
2606 |
msgid "Effect"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: framework/features/header/header-options.php:72,
|
2610 |
+
#: build_tmp/build/framework/features/header/header-options.php:72
|
2611 |
msgid "Slide Down"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: framework/features/header/header-options.php:73,
|
2615 |
+
#: build_tmp/build/framework/features/header/header-options.php:73
|
2616 |
msgid "Fade"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: framework/features/header/header-options.php:74,
|
2620 |
+
#: build_tmp/build/framework/features/header/header-options.php:74
|
2621 |
msgid "Auto Hide/Show"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: framework/features/header/header-options.php:79,
|
2625 |
+
#: build_tmp/build/framework/features/header/header-options.php:79
|
2626 |
msgid "Offset"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
#: framework/features/header/header-options.php:92,
|
2630 |
+
#: framework/features/header/header-options.php:174,
|
2631 |
+
#: build_tmp/build/framework/features/header/header-options.php:92,
|
2632 |
+
#: build_tmp/build/framework/features/header/header-options.php:174
|
2633 |
msgid "Enable on"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: framework/features/header/header-options.php:120,
|
2637 |
+
#: build_tmp/build/framework/features/header/header-options.php:120
|
2638 |
msgid "Transparent Functionality"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: framework/premium/features/content-blocks.php:113,
|
2642 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:113
|
2643 |
+
msgid "Hide Hooks"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: framework/premium/features/content-blocks.php:114,
|
2647 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:114
|
2648 |
+
msgid "Show Hooks"
|
2649 |
+
msgstr ""
|
2650 |
+
|
2651 |
+
#: framework/premium/features/content-blocks.php:125,
|
2652 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:125
|
2653 |
msgid "Hooks Locations"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: framework/premium/features/content-blocks.php:170,
|
2657 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:170
|
2658 |
+
msgid "Hide Theme Hooks"
|
2659 |
+
msgstr ""
|
2660 |
+
|
2661 |
+
#: framework/premium/features/content-blocks.php:171,
|
2662 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:171
|
2663 |
+
msgid "Show Theme Hooks"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: framework/premium/features/content-blocks.php:179,
|
2667 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:179
|
2668 |
+
msgid "Hide WooCommerce Hooks"
|
2669 |
+
msgstr ""
|
2670 |
+
|
2671 |
+
#: framework/premium/features/content-blocks.php:180,
|
2672 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:180
|
2673 |
+
msgid "Show WooCommerce Hooks"
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
#: framework/premium/features/content-blocks.php:564,
|
2677 |
+
#: framework/premium/features/content-blocks.php:570,
|
2678 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:564,
|
2679 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:570
|
2680 |
msgid "Content Blocks"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
#: framework/premium/features/content-blocks.php:565,
|
2684 |
+
#: framework/premium/extensions/mega-menu/options.php:333,
|
2685 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:565,
|
2686 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:333
|
2687 |
msgid "Content Block"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: framework/premium/features/content-blocks.php:566,
|
2691 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:566
|
2692 |
msgid "Add New"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: framework/premium/features/content-blocks.php:567,
|
2696 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:567
|
2697 |
msgid "Add New Content Block"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: framework/premium/features/content-blocks.php:568,
|
2701 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:568
|
2702 |
msgid "Edit Content Block"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: framework/premium/features/content-blocks.php:569,
|
2706 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:569
|
2707 |
#: framework/premium/static/js/hooks/CreateHook.js:33
|
2708 |
msgid "New Content Block"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: framework/premium/features/content-blocks.php:571,
|
2712 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:571
|
2713 |
msgid "View Content Block"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: framework/premium/features/content-blocks.php:572,
|
2717 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:572
|
2718 |
msgid "Search Content Blocks"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: framework/premium/features/content-blocks.php:573,
|
2722 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:573
|
2723 |
msgid "Nothing found"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: framework/premium/features/content-blocks.php:574,
|
2727 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:574
|
2728 |
msgid "Nothing found in Trash"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: framework/premium/features/content-blocks.php:863,
|
2732 |
+
#: build_tmp/build/framework/premium/features/content-blocks.php:863
|
2733 |
msgid "Close popup"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: framework/premium/features/media-meta-fields.php:29,
|
2737 |
+
#: build_tmp/build/framework/premium/features/media-meta-fields.php:29
|
2738 |
msgid "Attachment Video"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: framework/premium/features/media-meta-fields.php:33,
|
2742 |
+
#: build_tmp/build/framework/premium/features/media-meta-fields.php:33
|
2743 |
msgid "Video URL"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
#. translators: %s: Link to wordpress.org article
|
2747 |
+
#: framework/premium/features/media-meta-fields.php:39,
|
2748 |
+
#: build_tmp/build/framework/premium/features/media-meta-fields.php:39
|
2749 |
msgid ""
|
2750 |
"Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
|
2751 |
"MP4 file into the media library."
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: framework/premium/features/media-meta-fields.php:42,
|
2755 |
+
#: build_tmp/build/framework/premium/features/media-meta-fields.php:42
|
2756 |
msgid "Upload"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: framework/premium/features/media-meta-fields.php:44,
|
2760 |
+
#: build_tmp/build/framework/premium/features/media-meta-fields.php:44
|
2761 |
msgid "Upload Video (MP4 File)"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
#: framework/premium/features/premium-footer.php:14,
|
2765 |
+
#: framework/premium/features/premium-footer.php:28,
|
2766 |
+
#: build_tmp/build/framework/premium/features/premium-footer.php:14,
|
2767 |
+
#: build_tmp/build/framework/premium/features/premium-footer.php:28
|
2768 |
msgid "Footer Menu 1"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
#: framework/premium/features/premium-footer.php:29,
|
2772 |
+
#: build_tmp/build/framework/premium/features/premium-footer.php:29,
|
2773 |
+
#: framework/premium/features/premium-footer/items/menu-secondary/config.php:4,
|
2774 |
+
#: build_tmp/build/framework/premium/features/premium-footer/items/menu-secondary/config.php:4
|
2775 |
msgid "Footer Menu 2"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: framework/premium/features/premium-header.php:49,
|
2779 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:49
|
2780 |
msgid "Header Menu 3"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: framework/premium/features/premium-header.php:50,
|
2784 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:50
|
2785 |
msgid "Mobile Menu 1"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: framework/premium/features/premium-header.php:51,
|
2789 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:51
|
2790 |
msgid "Mobile Menu 2"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: framework/premium/features/premium-header.php:142,
|
2794 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:142
|
2795 |
msgid "Header Widget Area "
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: framework/premium/features/premium-header.php:198,
|
2799 |
#: framework/premium/extensions/mega-menu/options.php:422,
|
2800 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:198,
|
2801 |
#: framework/features/header/items/account/options.php:140,
|
2802 |
#: framework/features/header/items/account/options.php:365,
|
2803 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
|
2804 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:422,
|
2805 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:140,
|
2806 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:365,
|
2807 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447
|
2808 |
msgid "Icon"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: framework/premium/features/premium-header.php:212,
|
2812 |
#: framework/premium/extensions/mega-menu/options.php:436,
|
2813 |
#: framework/premium/extensions/woocommerce-extra/extension.php:373,
|
2814 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:212,
|
2815 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
|
2816 |
#: framework/extensions/widgets/widgets/ct-socials/options.php:75,
|
2817 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:436,
|
2818 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:373,
|
2819 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:246,
|
2820 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
|
2821 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:75,
|
2822 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:246
|
2823 |
msgid "Icons Size"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: framework/premium/features/premium-header.php:224,
|
2827 |
+
#: framework/premium/extensions/mega-menu/options.php:458,
|
2828 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:224,
|
2829 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:458
|
2830 |
msgid "Icon Position"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: framework/premium/features/premium-header.php:231,
|
2834 |
#: framework/premium/extensions/mega-menu/options.php:465,
|
2835 |
#: framework/premium/extensions/shortcuts/customizer.php:659,
|
2836 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:231,
|
2837 |
#: framework/features/header/items/account/options.php:276,
|
2838 |
#: framework/features/header/items/account/options.php:482,
|
2839 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:465,
|
2840 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:659,
|
2841 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98,
|
2842 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:276,
|
2843 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:482,
|
2844 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
|
2845 |
msgid "Left"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: framework/premium/features/premium-header.php:232,
|
2849 |
#: framework/premium/extensions/mega-menu/options.php:466,
|
2850 |
#: framework/premium/extensions/shortcuts/customizer.php:660,
|
2851 |
+
#: build_tmp/build/framework/premium/features/premium-header.php:232,
|
2852 |
#: framework/features/header/items/account/options.php:277,
|
2853 |
#: framework/features/header/items/account/options.php:483,
|
2854 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:466,
|
2855 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:660,
|
2856 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99,
|
2857 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:277,
|
2858 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:483,
|
2859 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
|
2860 |
msgid "Right"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
|
2864 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12,
|
2865 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
|
2866 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
|
2867 |
msgid "Newsletter"
|
2868 |
msgstr ""
|
2869 |
|
2872 |
#: framework/premium/extensions/shortcuts/customizer.php:889,
|
2873 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:30,
|
2874 |
#: framework/extensions/widgets/widgets/ct-quote/options.php:31,
|
2875 |
+
#: framework/features/header/items/account/options.php:294,
|
2876 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:30,
|
2877 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:493,
|
2878 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:889,
|
2879 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:30,
|
2880 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:31,
|
2881 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:294
|
2882 |
msgid "Text"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
|
2886 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:33,
|
2887 |
+
#: framework/extensions/widgets/widgets/ct-quote/options.php:34,
|
2888 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
|
2889 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:33,
|
2890 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:34
|
2891 |
msgid "You can add here some arbitrary HTML code."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114,
|
2895 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
|
2896 |
msgid "Container Type"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121,
|
2900 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
|
2901 |
msgid "Boxed"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127,
|
2905 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
|
2906 |
msgid "Content Alignment"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13,
|
2910 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
|
2911 |
msgid "Newsletter Subscribe"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14,
|
2915 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
|
2916 |
msgid "Newsletter subscribe form"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99,
|
2920 |
+
#: build_tmp/build/framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
|
2921 |
msgid "Thank you for subscribing to our newsletter!"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: framework/extensions/product-reviews/views/single-top.php:238,
|
2925 |
+
#: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:238
|
2926 |
msgid "Specs"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
#: framework/features/header/modal/login.php:28,
|
2930 |
+
#: framework/features/header/modal/lostpassword.php:5,
|
2931 |
+
#: build_tmp/build/framework/features/header/modal/login.php:28,
|
2932 |
+
#: build_tmp/build/framework/features/header/modal/lostpassword.php:5
|
2933 |
msgid "Username or Email Address"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
#: framework/features/header/modal/login.php:33,
|
2937 |
+
#: framework/features/header/modal/register.php:42,
|
2938 |
+
#: build_tmp/build/framework/features/header/modal/login.php:33,
|
2939 |
+
#: build_tmp/build/framework/features/header/modal/register.php:42
|
2940 |
msgid "Password"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: framework/features/header/modal/login.php:40,
|
2944 |
+
#: build_tmp/build/framework/features/header/modal/login.php:40
|
2945 |
msgid "Remember Me"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: framework/features/header/modal/login.php:44,
|
2949 |
+
#: build_tmp/build/framework/features/header/modal/login.php:44
|
2950 |
msgid "Forgot Password?"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: framework/features/header/modal/login.php:60,
|
2954 |
+
#: build_tmp/build/framework/features/header/modal/login.php:60
|
2955 |
msgid "Log In"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: framework/features/header/modal/lostpassword.php:13,
|
2959 |
+
#: build_tmp/build/framework/features/header/modal/lostpassword.php:13
|
2960 |
msgid "Get New Password"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: framework/features/header/modal/register.php:30,
|
2964 |
+
#: build_tmp/build/framework/features/header/modal/register.php:30
|
2965 |
msgid "Username"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: framework/features/header/modal/register.php:58,
|
2969 |
+
#: build_tmp/build/framework/features/header/modal/register.php:58
|
2970 |
msgid "Registration confirmation will be emailed to you"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: framework/features/header/modal/register.php:63,
|
2974 |
+
#: build_tmp/build/framework/features/header/modal/register.php:63
|
2975 |
msgid "Register"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
#. translators: This is a brand name. Preferably to not be translated
|
2979 |
+
#: framework/premium/extensions/adobe-typekit/config.php:5,
|
2980 |
+
#: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:5
|
2981 |
msgctxt "Extension Brand Name"
|
2982 |
msgid "Adobe Fonts"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: framework/premium/extensions/adobe-typekit/config.php:6,
|
2986 |
+
#: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:6
|
2987 |
msgid ""
|
2988 |
"Connect your Adobe Fonts project and use the selected fonts throughout "
|
2989 |
"Blocksy and your favorite page builder."
|
2990 |
msgstr ""
|
2991 |
|
|
|
|
|
|
|
2992 |
#. translators: This is a brand name. Preferably to not be translated
|
2993 |
#: framework/premium/extensions/code-snippets/config.php:5,
|
2994 |
#: framework/premium/extensions/code-snippets/extension.php:24,
|
2995 |
+
#: framework/premium/extensions/code-snippets/extension.php:71,
|
2996 |
+
#: framework/premium/extensions/code-snippets/extension.php:114,
|
2997 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/config.php:5,
|
2998 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:24,
|
2999 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:71,
|
3000 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:114
|
3001 |
msgctxt "Extension Brand Name"
|
3002 |
msgid "Custom Code Snippets"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: framework/premium/extensions/code-snippets/config.php:6,
|
3006 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/config.php:6
|
3007 |
msgid ""
|
3008 |
"Inject custom code snippets throughout your website. The extension works "
|
3009 |
"globally or on a per post/page basis."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: framework/premium/extensions/code-snippets/extension.php:31,
|
3013 |
+
#: framework/premium/extensions/code-snippets/extension.php:78,
|
3014 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:31,
|
3015 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:78
|
3016 |
+
msgid "Header scripts"
|
3017 |
+
msgstr ""
|
3018 |
+
|
3019 |
+
#: framework/premium/extensions/code-snippets/extension.php:42,
|
3020 |
+
#: framework/premium/extensions/code-snippets/extension.php:89,
|
3021 |
+
#: framework/premium/extensions/code-snippets/extension.php:134,
|
3022 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:42,
|
3023 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:89,
|
3024 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:134
|
3025 |
msgid "After body open scripts"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: framework/premium/extensions/code-snippets/extension.php:53,
|
3029 |
+
#: framework/premium/extensions/code-snippets/extension.php:100,
|
3030 |
+
#: framework/premium/extensions/code-snippets/extension.php:145,
|
3031 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:53,
|
3032 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:100,
|
3033 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:145
|
3034 |
+
msgid "Footer scripts"
|
3035 |
+
msgstr ""
|
3036 |
+
|
3037 |
+
#: framework/premium/extensions/code-snippets/extension.php:123,
|
3038 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:123
|
3039 |
+
msgid "Header scripts2"
|
3040 |
+
msgstr ""
|
3041 |
+
|
3042 |
+
#: framework/premium/extensions/code-snippets/readme.php:4,
|
3043 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:4
|
3044 |
msgid ""
|
3045 |
"After activating the Custom Code Snippets extension you will have two ways "
|
3046 |
"to manage your snippets:"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: framework/premium/extensions/code-snippets/readme.php:9,
|
3050 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:9
|
3051 |
msgid "Globally"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: framework/premium/extensions/code-snippets/readme.php:13,
|
3055 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:13
|
3056 |
msgid "Navigate to %s and place there your header, body or footer scripts."
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: framework/premium/extensions/code-snippets/readme.php:16,
|
3060 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:16
|
3061 |
msgid "Customizer ➝ Custom Code Snippets"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: framework/premium/extensions/code-snippets/readme.php:24,
|
3065 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:24
|
3066 |
msgid "Per page/post"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
+
#: framework/premium/extensions/code-snippets/readme.php:28,
|
3070 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:28
|
3071 |
msgid ""
|
3072 |
"Edit your page or post, click on %s, scroll down and you will see the %2s "
|
3073 |
"panel."
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: framework/premium/extensions/code-snippets/readme.php:32,
|
3077 |
+
#: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:32
|
3078 |
msgid "%s Page Settings"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
#. translators: This is a brand name. Preferably to not be translated
|
3082 |
+
#: framework/premium/extensions/custom-fonts/config.php:5,
|
3083 |
+
#: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:5
|
3084 |
msgctxt "Extension Brand Name"
|
3085 |
msgid "Custom Fonts"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: framework/premium/extensions/custom-fonts/config.php:6,
|
3089 |
+
#: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:6
|
3090 |
msgid ""
|
3091 |
"Upload an unlimited number of custom fonts or variable fonts and use them "
|
3092 |
"throughout Blocksy and your favorite page builder."
|
3093 |
msgstr ""
|
3094 |
|
3095 |
#. translators: This is a brand name. Preferably to not be translated
|
3096 |
+
#: framework/premium/extensions/local-google-fonts/config.php:5,
|
3097 |
+
#: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:5
|
3098 |
msgctxt "Extension Brand Name"
|
3099 |
msgid "Local Google Fonts"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: framework/premium/extensions/local-google-fonts/config.php:6,
|
3103 |
+
#: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:6
|
3104 |
msgid ""
|
3105 |
"Serve your chosen Google Fonts from your own web server. This will increase "
|
3106 |
"the loading speed and makes sure your website complies with the privacy "
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#. translators: This is a brand name. Preferably to not be translated
|
3111 |
+
#: framework/premium/extensions/mega-menu/config.php:5,
|
3112 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/config.php:5
|
3113 |
msgctxt "Extension Brand Name"
|
3114 |
msgid "Advanced Menu"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: framework/premium/extensions/mega-menu/config.php:6,
|
3118 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/config.php:6
|
3119 |
msgid ""
|
3120 |
"Create beautiful personalised menus that set your website apart from the "
|
3121 |
"others. Add icons and badges to your entries and even add Content Blocks "
|
3123 |
msgstr ""
|
3124 |
|
3125 |
#: framework/premium/extensions/mega-menu/config.php:10,
|
3126 |
+
#: framework/premium/extensions/shortcuts/config.php:13,
|
3127 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/config.php:10,
|
3128 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/config.php:13
|
3129 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
|
3130 |
#: framework/extensions/product-reviews/static/js/EditSettings.js:30
|
3131 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
|
3132 |
msgid "Configure"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: framework/premium/extensions/mega-menu/extension.php:99,
|
3136 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:99
|
3137 |
msgid "Menu Item Settings"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: framework/premium/extensions/mega-menu/extension.php:257,
|
3141 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:257
|
3142 |
msgid "New"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
#: framework/premium/extensions/mega-menu/options.php:16,
|
3146 |
+
#: framework/premium/extensions/mega-menu/options.php:530,
|
3147 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:16,
|
3148 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:530
|
3149 |
msgid "Mega Menu Settings"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: framework/premium/extensions/mega-menu/options.php:27,
|
3153 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:27
|
3154 |
msgid "Dropdown Width"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
#: framework/premium/extensions/mega-menu/options.php:35,
|
3158 |
+
#: framework/premium/extensions/mega-menu/options.php:48,
|
3159 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:35,
|
3160 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:48
|
3161 |
msgid "Content Width"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
#: framework/premium/extensions/mega-menu/options.php:36,
|
3165 |
+
#: framework/premium/extensions/mega-menu/options.php:57,
|
3166 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:36,
|
3167 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:57
|
3168 |
msgid "Full Width"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
#: framework/premium/extensions/mega-menu/options.php:37,
|
3172 |
+
#: framework/premium/features/content-blocks/options/archive.php:59,
|
3173 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:37,
|
3174 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:59
|
3175 |
msgid "Custom Width"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: framework/premium/extensions/mega-menu/options.php:56,
|
3179 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:56
|
3180 |
msgid "Default Width"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: framework/premium/extensions/mega-menu/options.php:85,
|
3184 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:85
|
3185 |
msgid "Columns"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: framework/premium/extensions/mega-menu/options.php:320,
|
3189 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:320
|
3190 |
msgid "Custom Content"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: framework/premium/extensions/mega-menu/options.php:324,
|
3194 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:324
|
3195 |
msgid "Content Type"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: framework/premium/extensions/mega-menu/options.php:331,
|
3199 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:331
|
3200 |
msgid "Default (Menu Item)"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: framework/premium/extensions/mega-menu/options.php:332,
|
3204 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:332
|
3205 |
msgid "Custom Text"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: framework/premium/extensions/mega-menu/options.php:364,
|
3209 |
+
#: framework/premium/extensions/mega-menu/options.php:371,
|
3210 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:364,
|
3211 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:371
|
3212 |
+
msgid "Select Content Block"
|
3213 |
+
msgstr ""
|
3214 |
+
|
3215 |
+
#: framework/premium/extensions/mega-menu/options.php:367,
|
3216 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:367
|
3217 |
+
msgid "Create a new content Block/Hook"
|
3218 |
+
msgstr ""
|
3219 |
+
|
3220 |
#: framework/premium/extensions/mega-menu/options.php:394,
|
3221 |
+
#: framework/premium/extensions/mega-menu/options.php:710,
|
3222 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:394,
|
3223 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:710
|
3224 |
msgid "Item Label Settings"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: framework/premium/extensions/mega-menu/options.php:399,
|
3228 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:399
|
3229 |
msgid "Item Label"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: framework/premium/extensions/mega-menu/options.php:407,
|
3233 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:407
|
3234 |
msgid "Enabled"
|
3235 |
msgstr ""
|
3236 |
|
3239 |
#: framework/premium/features/content-blocks/options/archive.php:160,
|
3240 |
#: framework/premium/features/content-blocks/options/header.php:108,
|
3241 |
#: framework/premium/features/content-blocks/options/hook.php:113,
|
3242 |
+
#: framework/premium/features/content-blocks/options/single.php:81,
|
3243 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:408,
|
3244 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/404.php:110,
|
3245 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:160,
|
3246 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/header.php:108,
|
3247 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:113,
|
3248 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/single.php:81
|
3249 |
msgid "Disabled"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: framework/premium/extensions/mega-menu/options.php:409,
|
3253 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:409
|
3254 |
msgid "Heading"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: framework/premium/extensions/mega-menu/options.php:415,
|
3258 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:415
|
3259 |
msgid "Label Link"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
#: framework/premium/extensions/mega-menu/options.php:481,
|
3263 |
+
#: framework/premium/extensions/mega-menu/options.php:792,
|
3264 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:481,
|
3265 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:792
|
3266 |
msgid "Menu Badge Settings"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
#: framework/premium/extensions/mega-menu/options.php:499,
|
3270 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260,
|
3271 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:499,
|
3272 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
|
3273 |
msgid "Vertical Alignment"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
#: framework/premium/extensions/mega-menu/options.php:534,
|
3277 |
#: framework/premium/extensions/shortcuts/customizer.php:883,
|
3278 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
|
3279 |
+
#: framework/features/header/items/account/options.php:1033,
|
3280 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:534,
|
3281 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:883,
|
3282 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
|
3283 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1033
|
3284 |
msgid "Background"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: framework/premium/extensions/mega-menu/options.php:548,
|
3288 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:548
|
3289 |
msgid "Link Color"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
#: framework/premium/extensions/mega-menu/options.php:568,
|
3293 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
|
3294 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:568,
|
3295 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
|
3296 |
#: framework/premium/features/premium-header/items/contacts/options.php:414,
|
3297 |
#: framework/premium/features/premium-header/items/contacts/options.php:456,
|
3298 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:496,
|
3299 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:414,
|
3300 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:456,
|
3301 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:496
|
3302 |
msgid "Link Initial"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: framework/premium/extensions/mega-menu/options.php:573,
|
3306 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:573
|
3307 |
msgid "Link Hover/Active"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: framework/premium/extensions/mega-menu/options.php:578,
|
3311 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:578
|
3312 |
msgid "Background Hover"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
#: framework/premium/extensions/mega-menu/options.php:585,
|
3316 |
+
#: framework/premium/extensions/mega-menu/options.php:719,
|
3317 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:585,
|
3318 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:719
|
3319 |
msgid "Heading Color"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
#: framework/premium/extensions/mega-menu/options.php:597,
|
3323 |
#: framework/premium/extensions/mega-menu/options.php:617,
|
3324 |
+
#: framework/premium/extensions/mega-menu/options.php:731,
|
3325 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:597,
|
3326 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:617,
|
3327 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:731
|
3328 |
msgid "Initial Color"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
#: framework/premium/extensions/mega-menu/options.php:624,
|
3332 |
#: framework/premium/extensions/shortcuts/customizer.php:900,
|
3333 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:624,
|
3334 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:900,
|
3335 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:432,
|
3336 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:826,
|
3337 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:432,
|
3338 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:826
|
3339 |
msgid "Items Divider"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: framework/premium/extensions/mega-menu/options.php:639,
|
3343 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:639
|
3344 |
msgid "Columns Divider"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
#: framework/premium/extensions/mega-menu/options.php:654,
|
3348 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:654,
|
3349 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:808,
|
3350 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:808
|
3351 |
msgid "Dropdown Shadow"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: framework/premium/extensions/mega-menu/options.php:686,
|
3355 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:686
|
3356 |
msgid "Column Settings"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: framework/premium/extensions/mega-menu/options.php:690,
|
3360 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:690
|
3361 |
msgid "Column Spacing"
|
3362 |
msgstr ""
|
3363 |
|
3371 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
|
3372 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
|
3373 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
|
3374 |
+
#: build_tmp/build/framework/premium/extensions/mega-menu/options.php:742,
|
3375 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
|
3376 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
|
3377 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
|
3378 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
|
3380 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
|
3381 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
|
3382 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
|
3383 |
+
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118,
|
3384 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:694,
|
3385 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:722,
|
3386 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:753,
|
3387 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:782,
|
3388 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1039,
|
3389 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
|
3390 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
|
3391 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
|
3392 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
|
3393 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
|
3394 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
|
3395 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:361,
|
3396 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
|
3397 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
|
3398 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
|
3399 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
|
3400 |
msgid "Icon Color"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
#. translators: This is a brand name. Preferably to not be translated
|
3404 |
+
#: framework/premium/extensions/post-types-extra/config.php:5,
|
3405 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:5
|
3406 |
msgctxt "Extension Brand Name"
|
3407 |
msgid "Post Types Extra"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: framework/premium/extensions/post-types-extra/config.php:6,
|
3411 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:6
|
3412 |
msgid ""
|
3413 |
"Enables support for Custom Fields inside archive cards and single page post "
|
3414 |
"title, adds a reading progress bar for your posts and lets you set featured "
|
3415 |
"images and colors for your categories archives."
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: framework/premium/extensions/post-types-extra/readme.php:4,
|
3419 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:4
|
3420 |
msgid ""
|
3421 |
"After activating this extension you will be able to enable the read progress "
|
3422 |
"bar for your single posts, add a featured image and set different colors to "
|
3425 |
"taxonomies archive filters."
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: framework/premium/extensions/post-types-extra/readme.php:10,
|
3429 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:10
|
3430 |
msgid "Custom Fields"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: framework/premium/extensions/post-types-extra/readme.php:14,
|
3434 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:14
|
3435 |
msgid ""
|
3436 |
"After setting up your custom fields you will be able to output them from %s "
|
3437 |
"or from %2s."
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: framework/premium/extensions/post-types-extra/readme.php:17,
|
3441 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:17
|
3442 |
msgid "Customizer ➝ Blog Posts ➝ Card Options"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: framework/premium/extensions/post-types-extra/readme.php:21,
|
3446 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:21
|
3447 |
msgid "Customizer ➝ Single Posts ➝ Post Title"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: framework/premium/extensions/post-types-extra/readme.php:29,
|
3451 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:29
|
3452 |
msgid "Taxonomies Filters"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: framework/premium/extensions/post-types-extra/readme.php:33,
|
3456 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:33
|
3457 |
msgid "You can enable the taxonomies filters from %s."
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: framework/premium/extensions/post-types-extra/readme.php:36,
|
3461 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:36
|
3462 |
msgid "Customizer ➝ Blog Posts ➝ Filters"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: framework/premium/extensions/post-types-extra/readme.php:44,
|
3466 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:44
|
3467 |
msgid "Read Progress Bar"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: framework/premium/extensions/post-types-extra/readme.php:48,
|
3471 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:48
|
3472 |
msgid "This options could be enabled from %s."
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: framework/premium/extensions/post-types-extra/readme.php:51,
|
3476 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:51
|
3477 |
msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: framework/premium/extensions/post-types-extra/readme.php:59,
|
3481 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:59
|
3482 |
msgid "Taxonomy Featured Image & Custom Colors"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: framework/premium/extensions/post-types-extra/readme.php:63,
|
3486 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:63
|
3487 |
msgid ""
|
3488 |
"To customize these options simply navigate to %s and edit one of your "
|
3489 |
"categories."
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: framework/premium/extensions/post-types-extra/readme.php:66,
|
3493 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:66
|
3494 |
msgid "Dashboard ➝ Posts ➝ Categories"
|
3495 |
msgstr ""
|
3496 |
|
|
|
3497 |
#. translators: This is a brand name. Preferably to not be translated
|
3498 |
#: framework/premium/extensions/shortcuts/config.php:5,
|
3499 |
+
#: framework/premium/extensions/shortcuts/customizer.php:524,
|
3500 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/config.php:5,
|
3501 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:524
|
3502 |
msgctxt "Extension Brand Name"
|
3503 |
msgid "Shortcuts Bar"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: framework/premium/extensions/shortcuts/config.php:6,
|
3507 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/config.php:6
|
3508 |
msgid ""
|
3509 |
"Easily turn your websites into mobile first experiences. You can easily add "
|
3510 |
"the most important actions at the bottom of the screen for easy access."
|
3514 |
#: framework/premium/extensions/shortcuts/customizer.php:35,
|
3515 |
#: framework/premium/extensions/shortcuts/customizer.php:563,
|
3516 |
#: framework/premium/extensions/shortcuts/views/bar.php:13,
|
3517 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:43,
|
3518 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:12,
|
3519 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:35,
|
3520 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:563,
|
3521 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:13,
|
3522 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:43
|
3523 |
msgid "Home"
|
3524 |
msgstr ""
|
3525 |
|
3529 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:102,
|
3530 |
#: framework/premium/extensions/shortcuts/views/bar.php:22,
|
3531 |
#: framework/premium/extensions/shortcuts/views/bar.php:44,
|
3532 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:68,
|
3533 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:91,
|
3534 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:572,
|
3535 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:66,
|
3536 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:102,
|
3537 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:22,
|
3538 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:44,
|
3539 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:66
|
3540 |
msgid "Phone"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
#: framework/premium/extensions/shortcuts/customizer.php:192,
|
3544 |
#: framework/premium/extensions/shortcuts/customizer.php:215,
|
3545 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:46,
|
3546 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:192,
|
3547 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:215,
|
3548 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:46
|
3549 |
msgid "Scroll Top"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
#: framework/premium/extensions/shortcuts/customizer.php:293,
|
3553 |
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
|
3554 |
+
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:322,
|
3555 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:293,
|
3556 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
|
3557 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:322
|
3558 |
msgid "Open link in new tab"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: framework/premium/extensions/shortcuts/customizer.php:300,
|
3562 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:300
|
3563 |
msgid "Set link to nofollow"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: framework/premium/extensions/shortcuts/customizer.php:306,
|
3567 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:306
|
3568 |
msgid "Custom class"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: framework/premium/extensions/shortcuts/customizer.php:338,
|
3572 |
#: framework/premium/extensions/shortcuts/customizer.php:361,
|
3573 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:47,
|
3574 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:338,
|
3575 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:361,
|
3576 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:47
|
3577 |
msgid "Cart"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
#: framework/premium/extensions/shortcuts/customizer.php:394,
|
3581 |
+
#: framework/premium/extensions/shortcuts/customizer.php:417,
|
3582 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:394,
|
3583 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:417
|
3584 |
msgid "Shop"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
#: framework/premium/extensions/shortcuts/customizer.php:450,
|
3588 |
#: framework/premium/extensions/shortcuts/customizer.php:473,
|
3589 |
#: framework/premium/extensions/woocommerce-extra/readme.php:70,
|
3590 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:450,
|
3591 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:473,
|
3592 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:70,
|
3593 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
|
3594 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
|
3595 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:82,
|
3596 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88,
|
3597 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
|
3598 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
|
3599 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:82,
|
3600 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
|
3601 |
msgid "Wishlist"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
#: framework/premium/extensions/shortcuts/customizer.php:538,
|
3605 |
+
#: framework/premium/features/content-blocks/admin-ui.php:196,
|
3606 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:538,
|
3607 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:196
|
3608 |
msgid "Type"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: framework/premium/extensions/shortcuts/customizer.php:557,
|
3612 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:557
|
3613 |
msgid "Shortcuts"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#: framework/premium/extensions/shortcuts/customizer.php:612,
|
3617 |
#: framework/features/header/items/account/options.php:233,
|
3618 |
#: framework/features/header/items/account/options.php:439,
|
3619 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:612,
|
3620 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61,
|
3621 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:233,
|
3622 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:439,
|
3623 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
|
3624 |
msgid "Label Visibility"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
#: framework/premium/extensions/shortcuts/customizer.php:652,
|
3628 |
#: framework/features/header/items/account/options.php:269,
|
3629 |
#: framework/features/header/items/account/options.php:475,
|
3630 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:652,
|
3631 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91,
|
3632 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:269,
|
3633 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:475,
|
3634 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
|
3635 |
msgid "Label Position"
|
3636 |
msgstr ""
|
3637 |
|
3641 |
#: framework/features/header/items/account/options.php:278,
|
3642 |
#: framework/features/header/items/account/options.php:484,
|
3643 |
#: framework/premium/features/content-blocks/options/hook.php:307,
|
3644 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:661,
|
3645 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
|
3646 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:445,
|
3647 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100,
|
3648 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:278,
|
3649 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:484,
|
3650 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:307,
|
3651 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
|
3652 |
msgid "Bottom"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
#: framework/premium/extensions/shortcuts/customizer.php:672,
|
3656 |
#: framework/features/header/items/account/options.php:215,
|
3657 |
#: framework/features/header/items/account/options.php:421,
|
3658 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:672,
|
3659 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39,
|
3660 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:215,
|
3661 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:421,
|
3662 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
|
3663 |
msgid "Icon Size"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: framework/premium/extensions/shortcuts/customizer.php:682,
|
3667 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:682
|
3668 |
msgid "Container Height"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: framework/premium/extensions/shortcuts/customizer.php:697,
|
3672 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:697
|
3673 |
msgid "Container Max Width"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: framework/premium/extensions/shortcuts/customizer.php:721,
|
3677 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:721
|
3678 |
msgid "Scroll Interaction"
|
3679 |
msgstr ""
|
3680 |
|
3688 |
#: framework/premium/features/content-blocks/options/hook.php:158,
|
3689 |
#: framework/premium/features/content-blocks/options/popup.php:162,
|
3690 |
#: framework/premium/features/content-blocks/options/popup.php:437,
|
3691 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:726,
|
3692 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:225,
|
3693 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:274,
|
3694 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:293,
|
3695 |
+
#: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:96,
|
3696 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:141,
|
3697 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:366,
|
3698 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:9,
|
3699 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:158,
|
3700 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:162,
|
3701 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:437,
|
3702 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:274
|
3703 |
msgid "None"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: framework/premium/extensions/shortcuts/customizer.php:727,
|
3707 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:727
|
3708 |
msgid "Hide"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: framework/premium/extensions/shortcuts/customizer.php:769,
|
3712 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:769
|
3713 |
msgid "Shortcuts Bar Display Conditions"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: framework/premium/extensions/shortcuts/customizer.php:770,
|
3717 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:770
|
3718 |
msgid "Add one or more conditions to display the shortcuts bar."
|
3719 |
msgstr ""
|
3720 |
|
3721 |
#: framework/premium/extensions/shortcuts/customizer.php:784,
|
3722 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:784,
|
3723 |
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
|
3724 |
#: framework/premium/features/premium-header/items/contacts/options.php:346,
|
3725 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:192,
|
3726 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:376,
|
3727 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
|
3728 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:346,
|
3729 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:192,
|
3730 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:376
|
3731 |
msgid "Font"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
#: framework/premium/extensions/shortcuts/customizer.php:826,
|
3735 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:826,
|
3736 |
#: framework/premium/features/premium-header/items/contacts/options.php:526,
|
3737 |
#: framework/premium/features/premium-header/items/contacts/options.php:555,
|
3738 |
#: framework/premium/features/premium-header/items/contacts/options.php:586,
|
3739 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:616,
|
3740 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:526,
|
3741 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:555,
|
3742 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:586,
|
3743 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:616
|
3744 |
msgid "Icons Color"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: framework/premium/extensions/shortcuts/customizer.php:865,
|
3748 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:865
|
3749 |
msgid "Cart Badge Color"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: framework/premium/extensions/shortcuts/customizer.php:920,
|
3753 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:920
|
3754 |
msgid "Items Divider Height"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
#: framework/premium/extensions/shortcuts/customizer.php:934,
|
3758 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
|
3759 |
#: framework/premium/features/content-blocks/options/popup.php:387,
|
3760 |
+
#: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:934,
|
3761 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
|
3762 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:446,
|
3763 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:387,
|
3764 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:446
|
3765 |
msgid "Shadow"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
#. translators: This is a brand name. Preferably to not be translated
|
3769 |
+
#: framework/premium/extensions/sidebars/config.php:5,
|
3770 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/config.php:5
|
3771 |
msgctxt "Extension Brand Name"
|
3772 |
msgid "Multiple Sidebars"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: framework/premium/extensions/sidebars/config.php:6,
|
3776 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/config.php:6
|
3777 |
msgid ""
|
3778 |
"Create unlimited personalized sets of widget areas and display them on any "
|
3779 |
"page or post using our conditional logic functionality."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: framework/premium/extensions/sidebars/config.php:10,
|
3783 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/config.php:10
|
3784 |
msgid "Create New Sidebar"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: framework/premium/extensions/sidebars/form.php:3,
|
3788 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/form.php:3
|
3789 |
#: framework/premium/extensions/sidebars/static/js/main.js:42
|
3790 |
msgid "Create Sidebar/Widget Area"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: framework/premium/extensions/sidebars/form.php:6,
|
3794 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/form.php:6
|
3795 |
msgid ""
|
3796 |
"In order to create a new sidebar/widget area simply enter a name in the "
|
3797 |
"input below and click the Create Sidebar button."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: framework/premium/extensions/sidebars/form.php:16,
|
3801 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/form.php:16
|
3802 |
#: framework/premium/extensions/sidebars/static/js/main.js:58
|
3803 |
msgid "Create Sidebar"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: framework/premium/extensions/sidebars/form.php:20,
|
3807 |
+
#: build_tmp/build/framework/premium/extensions/sidebars/form.php:20
|
3808 |
msgid "Available Sidebars/Widget Areas"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#. translators: This is a brand name. Preferably to not be translated
|
3812 |
+
#: framework/premium/extensions/white-label/config.php:5,
|
3813 |
+
#: build_tmp/build/framework/premium/extensions/white-label/config.php:5
|
3814 |
msgctxt "Extension Brand Name"
|
3815 |
msgid "White Label"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: framework/premium/extensions/white-label/config.php:6,
|
3819 |
+
#: build_tmp/build/framework/premium/extensions/white-label/config.php:6
|
3820 |
msgid ""
|
3821 |
"Replace Blocksy's branding with your own. Easily hide licensing info and "
|
3822 |
"other sections of the theme and companion plugin from your clients and make "
|
3824 |
msgstr ""
|
3825 |
|
3826 |
#. translators: This is a brand name. Preferably to not be translated
|
3827 |
+
#: framework/premium/extensions/woocommerce-extra/config.php:5,
|
3828 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:5
|
3829 |
msgctxt "Extension Brand Name"
|
3830 |
msgid "WooCommerce Extra"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: framework/premium/extensions/woocommerce-extra/config.php:6,
|
3834 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:6
|
3835 |
msgid ""
|
3836 |
"Make the shopping experience better for your visitors! Add features such as "
|
3837 |
"Product Quick View, Wishlist functionality and a Floating Add to Cart "
|
3838 |
"button. Customize the single product gallery/slider and the layout."
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:5,
|
3842 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:5
|
3843 |
msgid "Quick View Button"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:21,
|
3847 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:21
|
3848 |
msgid "Trigger On"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:29,
|
3852 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:29
|
3853 |
msgid "Button click"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:30,
|
3857 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:30
|
3858 |
msgid "Image click"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:31,
|
3862 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:31
|
3863 |
msgid "Card click"
|
3864 |
msgstr ""
|
3865 |
|
3867 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
|
3868 |
#: framework/features/header/items/account/options.php:194,
|
3869 |
#: framework/features/header/items/account/options.php:400,
|
3870 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:83,
|
3871 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
|
3872 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33,
|
3873 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:194,
|
3874 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:400,
|
3875 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
|
3876 |
msgid "Type 3"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
#: framework/premium/extensions/woocommerce-extra/extension.php:88,
|
3880 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
|
3881 |
#: framework/features/header/items/account/options.php:199,
|
3882 |
+
#: framework/features/header/items/account/options.php:405,
|
3883 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:88,
|
3884 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
|
3885 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:199,
|
3886 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:405
|
3887 |
msgid "Type 4"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
#: framework/premium/extensions/woocommerce-extra/extension.php:111,
|
3891 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:130,
|
3892 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:111,
|
3893 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:130
|
3894 |
msgid "Number of Columns"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:154,
|
3898 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:154
|
3899 |
msgid "Gallery Arrows Visibility"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:175,
|
3903 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:175
|
3904 |
msgid "Thumbnails Arrows Visibility"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:384,
|
3908 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:384
|
3909 |
msgid "Icons Spacing"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:428,
|
3913 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:428
|
3914 |
msgid "WooCommerce Offcanvas Filters"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:430,
|
3918 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:430
|
3919 |
msgid "Add widgets here."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:703,
|
3923 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:703
|
3924 |
msgid "Available Filters"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:704,
|
3928 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:704
|
3929 |
msgid "Close filters modal"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:798,
|
3933 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:798
|
3934 |
msgid "Quick view title before"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:803,
|
3938 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:803
|
3939 |
msgid "Quick view title after"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:808,
|
3943 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:808
|
3944 |
msgid "Quick view price before"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:813,
|
3948 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:813
|
3949 |
msgid "Quick view price after"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:818,
|
3953 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:818
|
3954 |
msgid "Quick view summary before"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:823,
|
3958 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:823
|
3959 |
msgid "Quick view summary after"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
|
3963 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:25,
|
3964 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
|
3965 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:25
|
3966 |
msgid "Floating Cart"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:17,
|
3970 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:17
|
3971 |
msgid "Position"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
|
3975 |
#: framework/premium/features/content-blocks/hooks-manager.php:407,
|
3976 |
+
#: framework/premium/features/content-blocks/options/hook.php:306,
|
3977 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
|
3978 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:407,
|
3979 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:306
|
3980 |
msgid "Top"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:34,
|
3984 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:34
|
3985 |
msgid "Product Title Visibility"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:58,
|
3989 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:58
|
3990 |
msgid "Floating Cart Visibility"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:79,
|
3994 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:79
|
3995 |
msgid "Close quick view"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:106,
|
3999 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:106
|
4000 |
msgid "Go to product page"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:152,
|
4004 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
|
4005 |
msgid "Quick view toggle"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:152,
|
4009 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
|
4010 |
msgid "Quick view icon"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:186,
|
4014 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:186
|
4015 |
msgid "Filter"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3,
|
4019 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
|
4020 |
msgid "Off Canvas Filter"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14,
|
4024 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
|
4025 |
msgid "Filter Widgets"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18,
|
4029 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
|
4030 |
msgid "Widgets"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36,
|
4034 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
|
4035 |
msgid "Widgets Vertical Spacing"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51,
|
4039 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
|
4040 |
msgid "Widgets Title Font"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59,
|
4044 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
|
4045 |
msgid "Widgets Title Font Color"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107,
|
4049 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
|
4050 |
msgid "Widgets Font"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116,
|
4054 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
|
4055 |
msgid "Widgets Font Color"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
|
4059 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
|
4060 |
#: framework/premium/features/premium-header/items/contacts/options.php:408,
|
4061 |
#: framework/premium/features/premium-header/items/contacts/options.php:451,
|
4062 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:491,
|
4063 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:408,
|
4064 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:451,
|
4065 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:491
|
4066 |
msgid "Text Initial"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
|
4070 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
|
4071 |
#: framework/premium/features/premium-header/items/contacts/options.php:420,
|
4072 |
#: framework/premium/features/premium-header/items/contacts/options.php:461,
|
4073 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:501,
|
4074 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:420,
|
4075 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:461,
|
4076 |
+
#: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:501
|
4077 |
msgid "Link Hover"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160,
|
4081 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
|
4082 |
msgid "Filter Button & Panel"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169,
|
4086 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
|
4087 |
msgid "Filter Icon Type"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207,
|
4091 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
|
4092 |
msgid "Filter Button Visibility"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230,
|
4096 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
|
4097 |
msgid "Panel Reveal"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237,
|
4101 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
|
4102 |
msgid "Left Side"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238,
|
4106 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
|
4107 |
msgid "Right Side"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243,
|
4111 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
|
4112 |
msgid "Panel Width"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284,
|
4116 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
|
4117 |
msgid "Panel Background"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316,
|
4121 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
|
4122 |
msgid "Panel Shadow"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
|
4126 |
+
#: framework/features/header/items/account/options.php:1022,
|
4127 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
|
4128 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1022
|
4129 |
msgid "Close Button Type"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
|
4133 |
+
#: framework/features/header/items/account/options.php:1031,
|
4134 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
|
4135 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1031
|
4136 |
msgid "Simple"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
|
4140 |
+
#: framework/features/header/items/account/options.php:1032,
|
4141 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
|
4142 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1032
|
4143 |
msgid "Border"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
|
4147 |
+
#: framework/features/header/items/account/options.php:1075,
|
4148 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
|
4149 |
+
#: build_tmp/build/framework/features/header/items/account/options.php:1075
|
4150 |
msgid "Border Color"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:4,
|
4154 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:4
|
4155 |
msgid ""
|
4156 |
"After installing and activating the WooCommerce Extra extension you will "
|
4157 |
"have these features:"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:10,
|
4161 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:10
|
4162 |
msgid "Product Quick View"
|
4163 |
msgstr ""
|
4164 |
|
4166 |
#: framework/premium/extensions/woocommerce-extra/readme.php:29,
|
4167 |
#: framework/premium/extensions/woocommerce-extra/readme.php:44,
|
4168 |
#: framework/premium/extensions/woocommerce-extra/readme.php:59,
|
4169 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:74,
|
4170 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:14,
|
4171 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:29,
|
4172 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:44,
|
4173 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:59,
|
4174 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:74
|
4175 |
msgid "Navigate to %s."
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:17,
|
4179 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:17
|
4180 |
msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:32,
|
4184 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:32
|
4185 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:40,
|
4189 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:40
|
4190 |
msgid "Advanced Gallery & Slider"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:47,
|
4194 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:47
|
4195 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:55,
|
4199 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:55
|
4200 |
msgid "Share Box"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:62,
|
4204 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:62
|
4205 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:77,
|
4209 |
+
#: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:77
|
4210 |
msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: framework/premium/features/content-blocks/admin-ui.php:17,
|
4214 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:17
|
4215 |
msgid "Enable"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: framework/premium/features/content-blocks/admin-ui.php:18,
|
4219 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:18
|
4220 |
msgid "Disable"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: framework/premium/features/content-blocks/admin-ui.php:69,
|
4224 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:69
|
4225 |
msgid "Enabled %s content block."
|
4226 |
msgid_plural "Enabled %s content blocks."
|
4227 |
msgstr[0] ""
|
4228 |
msgstr[1] ""
|
4229 |
|
4230 |
+
#: framework/premium/features/content-blocks/admin-ui.php:94,
|
4231 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:94
|
4232 |
msgid "Disabled %s content block."
|
4233 |
msgid_plural "Disabled %s content blocks."
|
4234 |
msgstr[0] ""
|
4235 |
msgstr[1] ""
|
4236 |
|
4237 |
+
#: framework/premium/features/content-blocks/admin-ui.php:120,
|
4238 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:120
|
4239 |
+
#: framework/premium/static/js/hooks/CreateHook.js:68
|
4240 |
+
msgid "Custom Content/Hooks"
|
4241 |
+
msgstr ""
|
4242 |
+
|
4243 |
+
#: framework/premium/features/content-blocks/admin-ui.php:121,
|
4244 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:121
|
4245 |
+
#: framework/premium/static/js/hooks/CreateHook.js:77
|
4246 |
+
msgid "Popup"
|
4247 |
+
msgstr ""
|
4248 |
+
|
4249 |
+
#: framework/premium/features/content-blocks/admin-ui.php:122,
|
4250 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:122
|
4251 |
+
msgid "404 Page"
|
4252 |
+
msgstr ""
|
4253 |
+
|
4254 |
+
#: framework/premium/features/content-blocks/admin-ui.php:123,
|
4255 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:50,
|
4256 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:59,
|
4257 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:123,
|
4258 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:50,
|
4259 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:59
|
4260 |
+
msgid "Header"
|
4261 |
+
msgstr ""
|
4262 |
+
|
4263 |
+
#: framework/premium/features/content-blocks/admin-ui.php:124,
|
4264 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:890,
|
4265 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:898,
|
4266 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:906,
|
4267 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:124,
|
4268 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:890,
|
4269 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:898,
|
4270 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:906
|
4271 |
+
msgid "Footer"
|
4272 |
+
msgstr ""
|
4273 |
+
|
4274 |
+
#: framework/premium/features/content-blocks/admin-ui.php:125,
|
4275 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:125
|
4276 |
+
msgid "Archive"
|
4277 |
+
msgstr ""
|
4278 |
+
|
4279 |
+
#: framework/premium/features/content-blocks/admin-ui.php:126,
|
4280 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:126
|
4281 |
+
msgid "Single"
|
4282 |
+
msgstr ""
|
4283 |
+
|
4284 |
+
#: framework/premium/features/content-blocks/admin-ui.php:131,
|
4285 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:131
|
4286 |
msgid "All types"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: framework/premium/features/content-blocks/admin-ui.php:197,
|
4290 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:197
|
4291 |
msgid "Location/Trigger"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: framework/premium/features/content-blocks/admin-ui.php:198,
|
4295 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:198
|
4296 |
msgid "Conditions"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: framework/premium/features/content-blocks/admin-ui.php:199,
|
4300 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:199
|
4301 |
msgid "Output"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: framework/premium/features/content-blocks/admin-ui.php:200,
|
4305 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:200
|
4306 |
msgid "Enable/Disable"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
#: framework/premium/features/content-blocks/admin-ui.php:226,
|
4310 |
+
#: framework/premium/features/content-blocks/options/popup.php:163,
|
4311 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:226,
|
4312 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:163
|
4313 |
msgid "On scroll"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
#: framework/premium/features/content-blocks/admin-ui.php:227,
|
4317 |
+
#: framework/premium/features/content-blocks/options/popup.php:164,
|
4318 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:227,
|
4319 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:164
|
4320 |
msgid "On scroll to element"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
#: framework/premium/features/content-blocks/admin-ui.php:228,
|
4324 |
+
#: framework/premium/features/content-blocks/options/popup.php:165,
|
4325 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:228,
|
4326 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:165
|
4327 |
msgid "On page load"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
#: framework/premium/features/content-blocks/admin-ui.php:229,
|
4331 |
+
#: framework/premium/features/content-blocks/options/popup.php:166,
|
4332 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:229,
|
4333 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:166
|
4334 |
msgid "After inactivity"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
#: framework/premium/features/content-blocks/admin-ui.php:230,
|
4338 |
+
#: framework/premium/features/content-blocks/options/popup.php:167,
|
4339 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:230,
|
4340 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:167
|
4341 |
msgid "After x time"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
#: framework/premium/features/content-blocks/admin-ui.php:231,
|
4345 |
+
#: framework/premium/features/content-blocks/options/popup.php:168,
|
4346 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:231,
|
4347 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:168
|
4348 |
msgid "After x pages"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
#: framework/premium/features/content-blocks/admin-ui.php:232,
|
4352 |
+
#: framework/premium/features/content-blocks/options/popup.php:169,
|
4353 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:232,
|
4354 |
+
#: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:169
|
4355 |
msgid "On page exit intent"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: framework/premium/features/content-blocks/admin-ui.php:236,
|
4359 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:236
|
4360 |
msgid "Down"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: framework/premium/features/content-blocks/admin-ui.php:237,
|
4364 |
+
#: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:237
|
4365 |
msgid "Up"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:11,
|
4369 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:11
|
4370 |
msgid "WP head"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
#: framework/premium/features/content-blocks/hooks-manager.php:13,
|
4374 |
#: framework/premium/features/content-blocks/hooks-manager.php:22,
|
4375 |
#: framework/premium/features/content-blocks/hooks-manager.php:32,
|
4376 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:41,
|
4377 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:13,
|
4378 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:22,
|
4379 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:32,
|
4380 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:41
|
4381 |
msgid "Head"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:20,
|
4385 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:20
|
4386 |
msgid "WP head start"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:30,
|
4390 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:30
|
4391 |
msgid "WP head end"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:39,
|
4395 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:39
|
4396 |
msgid "WP body open"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:48,
|
4400 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:48
|
4401 |
msgid "Header before"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:57,
|
4405 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:57
|
|
|
|
|
|
|
|
|
4406 |
msgid "Header after"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:66,
|
4410 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:66
|
4411 |
msgid "Desktop top"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
#: framework/premium/features/content-blocks/hooks-manager.php:68,
|
4415 |
#: framework/premium/features/content-blocks/hooks-manager.php:77,
|
4416 |
#: framework/premium/features/content-blocks/hooks-manager.php:86,
|
4417 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:95,
|
4418 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:68,
|
4419 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:77,
|
4420 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:86,
|
4421 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:95
|
4422 |
msgid "Header offcanvas"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:75,
|
4426 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:75
|
4427 |
msgid "Desktop bottom"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:84,
|
4431 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:84
|
4432 |
msgid "Mobile top"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:93,
|
4436 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:93
|
4437 |
msgid "Mobile bottom"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:102,
|
4441 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:102
|
4442 |
msgid "Sidebar before"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
#: framework/premium/features/content-blocks/hooks-manager.php:103,
|
4446 |
#: framework/premium/features/content-blocks/hooks-manager.php:110,
|
4447 |
#: framework/premium/features/content-blocks/hooks-manager.php:117,
|
4448 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:124,
|
4449 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:103,
|
4450 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:110,
|
4451 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:117,
|
4452 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:124
|
4453 |
msgid "Left/Right sidebar"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:109,
|
4457 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:109
|
4458 |
msgid "Sidebar start"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:116,
|
4462 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:116
|
4463 |
msgid "Sidebar end"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:123,
|
4467 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:123
|
4468 |
msgid "Sidebar after"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:130,
|
4472 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:130
|
4473 |
msgid "Dynamic sidebar before"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
#: framework/premium/features/content-blocks/hooks-manager.php:131,
|
4477 |
#: framework/premium/features/content-blocks/hooks-manager.php:138,
|
4478 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:146,
|
4479 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:131,
|
4480 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:138,
|
4481 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:146
|
4482 |
msgid "All widget areas"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:137,
|
4486 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:137
|
4487 |
msgid "Dynamic sidebar"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:145,
|
4491 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:145
|
4492 |
msgid "Dynamic sidebar after"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:154,
|
4496 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:154
|
4497 |
msgid "Before section"
|
4498 |
msgstr ""
|
4499 |
|
4506 |
#: framework/premium/features/content-blocks/hooks-manager.php:203,
|
4507 |
#: framework/premium/features/content-blocks/hooks-manager.php:211,
|
4508 |
#: framework/premium/features/content-blocks/hooks-manager.php:219,
|
4509 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:227,
|
4510 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:155,
|
4511 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:163,
|
4512 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:171,
|
4513 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:179,
|
4514 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:187,
|
4515 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:195,
|
4516 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:203,
|
4517 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:211,
|
4518 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:219,
|
4519 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:227
|
4520 |
msgid "Page/post title"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
#: framework/premium/features/content-blocks/hooks-manager.php:162,
|
4524 |
#: framework/premium/features/content-blocks/hooks-manager.php:280,
|
4525 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:322,
|
4526 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:162,
|
4527 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:280,
|
4528 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:322
|
4529 |
msgid "Before title"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:170,
|
4533 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:170
|
4534 |
msgid "Before description"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:178,
|
4538 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:178
|
4539 |
msgid "Before breadcrumbs"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:186,
|
4543 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:186
|
4544 |
msgid "Before post meta"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
#: framework/premium/features/content-blocks/hooks-manager.php:194,
|
4548 |
#: framework/premium/features/content-blocks/hooks-manager.php:287,
|
4549 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:329,
|
4550 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:194,
|
4551 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:287,
|
4552 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:329
|
4553 |
msgid "After title"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:202,
|
4557 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:202
|
4558 |
msgid "After description"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:210,
|
4562 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:210
|
4563 |
msgid "After breadcrumbs"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:218,
|
4567 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:218
|
4568 |
msgid "After post meta"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:226,
|
4572 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:226
|
4573 |
msgid "After section"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:234,
|
4577 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:234
|
4578 |
msgid "Before content"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
#: framework/premium/features/content-blocks/hooks-manager.php:242,
|
4582 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:415,
|
4583 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:242,
|
4584 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:415
|
4585 |
msgid "Top content"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
#: framework/premium/features/content-blocks/hooks-manager.php:250,
|
4589 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:437,
|
4590 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:250,
|
4591 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:437
|
4592 |
msgid "Bottom content"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:258,
|
4596 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:258
|
4597 |
msgid "After content"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:266,
|
4601 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:266
|
4602 |
msgid "Before comments"
|
4603 |
msgstr ""
|
4604 |
|
4607 |
#: framework/premium/features/content-blocks/hooks-manager.php:281,
|
4608 |
#: framework/premium/features/content-blocks/hooks-manager.php:288,
|
4609 |
#: framework/premium/features/content-blocks/hooks-manager.php:295,
|
4610 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:302,
|
4611 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:267,
|
4612 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:274,
|
4613 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:281,
|
4614 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:288,
|
4615 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:295,
|
4616 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:302
|
4617 |
msgid "Comments"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:273,
|
4621 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:273
|
4622 |
msgid "Top comments"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:294,
|
4626 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:294
|
4627 |
msgid "Bottom comments"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:301,
|
4631 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:301
|
4632 |
msgid "After comments"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:308,
|
4636 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:308
|
4637 |
msgid "Before related posts"
|
4638 |
msgstr ""
|
4639 |
|
4646 |
#: framework/premium/features/content-blocks/hooks-manager.php:351,
|
4647 |
#: framework/premium/features/content-blocks/hooks-manager.php:358,
|
4648 |
#: framework/premium/features/content-blocks/hooks-manager.php:366,
|
4649 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:373,
|
4650 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:309,
|
4651 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:316,
|
4652 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:323,
|
4653 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:330,
|
4654 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:337,
|
4655 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:344,
|
4656 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:351,
|
4657 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:358,
|
4658 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:366,
|
4659 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:373
|
4660 |
msgid "Related posts"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:315,
|
4664 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:315
|
4665 |
msgid "Related posts top"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:336,
|
4669 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:336
|
4670 |
msgid "Card top"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:343,
|
4674 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:343
|
4675 |
msgid "Before featured image"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:350,
|
4679 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:350
|
4680 |
msgid "After featured image"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:357,
|
4684 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:357
|
4685 |
msgid "Card bottom"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:365,
|
4689 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:365
|
4690 |
msgid "Related posts bottom"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:372,
|
4694 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:372
|
4695 |
msgid "After related posts"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
#: framework/premium/features/content-blocks/hooks-manager.php:379,
|
4699 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459,
|
4700 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:379,
|
4701 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
|
4702 |
msgid "Before"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
#: framework/premium/features/content-blocks/hooks-manager.php:380,
|
4706 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:387,
|
4707 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:380,
|
4708 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:387
|
4709 |
msgid "Loop"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
#: framework/premium/features/content-blocks/hooks-manager.php:386,
|
4713 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470,
|
4714 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:386,
|
4715 |
+
#: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
|
4716 |
msgid "After"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:393,
|
4720 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:393
|
4721 |
msgid "Start"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
#: framework/premium/features/content-blocks/hooks-manager.php:394,
|
4725 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:401,
|
4726 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:394,
|
4727 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:401
|
4728 |
msgid "Loop card"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:400,
|
4732 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:400
|
4733 |
msgid "End"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:423,
|
4737 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:423
|
4738 |
msgid "After certain number of blocks"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:430,
|
4742 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:430
|
4743 |
msgid "Before certain number of headings"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:453,
|
4747 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:453
|
4748 |
msgid "Login form start"
|
4749 |
msgstr ""
|
4750 |
|
4757 |
#: framework/premium/features/content-blocks/hooks-manager.php:496,
|
4758 |
#: framework/premium/features/content-blocks/hooks-manager.php:503,
|
4759 |
#: framework/premium/features/content-blocks/hooks-manager.php:510,
|
4760 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:517,
|
4761 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:454,
|
4762 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:461,
|
4763 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:468,
|
4764 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:475,
|
4765 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:482,
|
4766 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:489,
|
4767 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:496,
|
4768 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:503,
|
4769 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:510,
|
4770 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:517
|
4771 |
msgid "Auth forms"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:460,
|
4775 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:460
|
4776 |
msgid "Login form end"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:467,
|
4780 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:467
|
4781 |
msgid "Login form modal start"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:474,
|
4785 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:474
|
4786 |
msgid "Login form modal end"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:481,
|
4790 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:481
|
4791 |
msgid "Register form start"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:488,
|
4795 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:488
|
4796 |
msgid "Register form end"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:495,
|
4800 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:495
|
4801 |
msgid "Register form modal start"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:502,
|
4805 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:502
|
4806 |
msgid "Register form modal end"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:509,
|
4810 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:509
|
4811 |
msgid "Lost password form modal start"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:516,
|
4815 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:516
|
4816 |
msgid "Lost password form modal end"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:524,
|
4820 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:524
|
4821 |
msgid "Before main content"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:530,
|
4825 |
+
#: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:530
|
4826 |
msgid "After main content"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:536,
|
4830 |
+
#: build_tmp/build/framework/premium/features/c |