Version Description
31/10/2022 =
Fixed: EA Login / Register Form | Security token did not match error
Fixed: EA Scroll to Top | Throwing Uncaught ReferenceError
Fixed: EA Post Grid | Preset 2 & 3 not displaying authors & avatars
Fixed: EA Login / Register Form | Custom template for Register User Email option not working
Few minor bug fixes & improvements
Download this release
Release Info
Developer | wpdevteam |
Plugin | Elementor Essential Addons |
Version | 5.4.2 |
Comparing to | |
See all releases |
Code changes from version 5.4.1 to 5.4.2
- assets/front-end/css/view/post-grid.css +24 -10
- assets/front-end/css/view/post-grid.min.css +1 -1
- assets/front-end/js/view/general.js +1 -1
- assets/front-end/js/view/general.min.js +1 -1
- assets/front-end/js/view/login-register.js +1 -1
- assets/front-end/js/view/login-register.min.js +1 -1
- assets/front-end/js/view/scroll-to-top.js +1 -1
- assets/front-end/js/view/scroll-to-top.min.js +1 -1
- essential_adons_elementor.php +4 -4
- includes/Elements/Post_Grid.php +5 -4
- includes/Template/Post-Grid/default.php +65 -36
- includes/Traits/Controls.php +162 -29
- includes/Traits/Login_Registration.php +2 -2
- languages/essential-addons-for-elementor-lite.pot +80 -72
- readme.txt +9 -1
assets/front-end/css/view/post-grid.css
CHANGED
@@ -71,16 +71,18 @@
|
|
71 |
height: 100%;
|
72 |
}
|
73 |
|
74 |
-
.eael-entry-footer .eael-author-avatar
|
|
|
75 |
width: 50px;
|
|
|
76 |
}
|
77 |
|
78 |
-
.eael-entry-footer .eael-author-avatar .avatar
|
|
|
79 |
border-radius: 50%;
|
80 |
}
|
81 |
|
82 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
83 |
-
padding-left: 8px;
|
84 |
text-align: left;
|
85 |
}
|
86 |
|
@@ -117,16 +119,17 @@
|
|
117 |
display: block;
|
118 |
}
|
119 |
|
120 |
-
.eael-grid-post .eael-entry-wrapper
|
121 |
-
.eael-grid-post .eael-entry-footer {
|
122 |
padding: 15px;
|
123 |
}
|
124 |
|
125 |
-
.eael-post-grid .eael-entry-wrapper > .eael-entry-meta span.eael-posted-
|
126 |
-
|
|
|
127 |
}
|
128 |
|
129 |
-
.eael-post-grid .eael-entry-wrapper > .eael-entry-meta span.eael-posted-on::before
|
|
|
130 |
content: "\f111";
|
131 |
font-family: "Font Awesome 5 Free";
|
132 |
font-weight: 700;
|
@@ -565,14 +568,16 @@
|
|
565 |
display: block;
|
566 |
}
|
567 |
|
568 |
-
.eael-entry-footer
|
|
|
569 |
overflow: hidden;
|
570 |
display: -webkit-box;
|
571 |
display: -ms-flexbox;
|
572 |
display: flex;
|
573 |
}
|
574 |
|
575 |
-
.eael-entry-footer > div
|
|
|
576 |
display: inline-block;
|
577 |
float: left;
|
578 |
}
|
@@ -662,6 +667,15 @@
|
|
662 |
margin-right: 7px;
|
663 |
}
|
664 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
.eael-post-grid-style-two .eael-entry-meta .post-meta-categories {
|
666 |
list-style: none;
|
667 |
display: -webkit-inline-box;
|
71 |
height: 100%;
|
72 |
}
|
73 |
|
74 |
+
.eael-entry-footer .eael-author-avatar,
|
75 |
+
.eael-entry-header-after .eael-author-avatar {
|
76 |
width: 50px;
|
77 |
+
padding-right: 8px;
|
78 |
}
|
79 |
|
80 |
+
.eael-entry-footer .eael-author-avatar .avatar,
|
81 |
+
.eael-entry-header-after .eael-author-avatar .avatar {
|
82 |
border-radius: 50%;
|
83 |
}
|
84 |
|
85 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
|
|
86 |
text-align: left;
|
87 |
}
|
88 |
|
119 |
display: block;
|
120 |
}
|
121 |
|
122 |
+
.eael-grid-post .eael-entry-wrapper {
|
|
|
123 |
padding: 15px;
|
124 |
}
|
125 |
|
126 |
+
.eael-post-grid .eael-entry-wrapper > .eael-entry-meta span.eael-posted-by,
|
127 |
+
.eael-post-grid .eael-entry-wrapper > .eael-entry-header-after .eael-entry-meta span.eael-posted-by {
|
128 |
+
padding-right: 8px;
|
129 |
}
|
130 |
|
131 |
+
.eael-post-grid .eael-entry-wrapper > .eael-entry-meta span.eael-posted-on::before,
|
132 |
+
.eael-post-grid .eael-entry-wrapper > .eael-entry-header-after .eael-entry-meta span.eael-posted-on::before {
|
133 |
content: "\f111";
|
134 |
font-family: "Font Awesome 5 Free";
|
135 |
font-weight: 700;
|
568 |
display: block;
|
569 |
}
|
570 |
|
571 |
+
.eael-entry-footer,
|
572 |
+
.eael-entry-header-after {
|
573 |
overflow: hidden;
|
574 |
display: -webkit-box;
|
575 |
display: -ms-flexbox;
|
576 |
display: flex;
|
577 |
}
|
578 |
|
579 |
+
.eael-entry-footer > div,
|
580 |
+
.eael-entry-header-after > div {
|
581 |
display: inline-block;
|
582 |
float: left;
|
583 |
}
|
667 |
margin-right: 7px;
|
668 |
}
|
669 |
|
670 |
+
.eael-post-grid-style-two .eael-entry-meta .eael-posted-by.style-two-footer {
|
671 |
+
padding: 0;
|
672 |
+
font-size: 12px;
|
673 |
+
}
|
674 |
+
|
675 |
+
.eael-post-grid-style-two .eael-entry-meta .eael-posted-by.style-two-footer a {
|
676 |
+
color: #929292;
|
677 |
+
}
|
678 |
+
|
679 |
.eael-post-grid-style-two .eael-entry-meta .post-meta-categories {
|
680 |
list-style: none;
|
681 |
display: -webkit-inline-box;
|
assets/front-end/css/view/post-grid.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-post-grid-container .eael-post-grid{margin:0 -10px}.eael-post-grid-container .eael-post-grid .eael-grid-post{float:left;padding:10px}.eael-post-carousel .eael-grid-post{float:none;padding:0}.eael-grid-post-holder{border:1px solid rgba(0,0,0,.1)}.eael-grid-post-holder-inner{height:100%}.eael-entry-media{position:relative}.eael-entry-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1);-o-transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1),-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1)}.eael-entry-overlay>a{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.eael-entry-title{margin:10px 0 5px;font-size:1.2em}.eael-entry-thumbnail img{width:100%;max-width:100%;vertical-align:middle}.eael-entry-thumbnail.eael-image-ratio img{position:absolute;top:calc(50% + 1px);left:calc(50% + 1px);-webkit-transform:scale(1.01) translate(-50%, -50%);-ms-transform:scale(1.01) translate(-50%, -50%);transform:scale(1.01) translate(-50%, -50%)}.eael-entry-thumbnail>img{height:100%}.eael-entry-footer .eael-author-avatar{width:50px}.eael-entry-footer .eael-author-avatar .avatar{border-radius:50%}.eael-post-grid .eael-entry-footer .eael-entry-meta{padding-left:8px;text-align:left}.eael-grid-post .eael-entry-meta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;white-space:nowrap}.eael-grid-post .eael-entry-footer .eael-entry-meta{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-entry-meta>div{font-size:12px;line-height:1.2;padding-bottom:5px}.eael-grid-post-excerpt p{margin:0;font-size:14px}.eael-entry-meta .eael-entry-footer .eael-posted-by{display:block}.eael-grid-post .eael-entry-wrapper,.eael-grid-post .eael-entry-footer{padding:15px}.eael-post-grid .eael-entry-wrapper>.eael-entry-meta span.eael-posted-on{padding-left:5px}.eael-post-grid .eael-entry-wrapper>.eael-entry-meta span.eael-posted-on::before{content:"";font-family:"Font Awesome 5 Free";font-weight:700;color:inherit;opacity:.4;font-size:.8em;padding-right:7px}.eael-entry-media{position:relative}.eael-entry-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-entry-overlay>i{color:#fff}.eael-entry-overlay.fade-in{visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.fade-in{visibility:visible;opacity:1}.eael-entry-media:hover .eael-entry-overlay.fade-in>i{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);opacity:1}.eael-entry-overlay.zoom-in{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.zoom-in{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-entry-overlay.slide-up{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.slide-up{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);visibility:visible;opacity:1}.eael-entry-media{overflow:hidden}.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay{opacity:0}.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay{opacity:1}.eael-entry-media.grid-hover-style-none .eael-entry-overlay{display:none}.eael-entry-overlay.none{opacity:0}.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay{-webkit-transform:scale(0.4);-ms-transform:scale(0.4);transform:scale(0.4);opacity:0}.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay>i{-webkit-transform:translateY(-100px);-ms-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition-delay:100ms;-o-transition-delay:100ms;transition-delay:100ms;-webkit-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay>i{-webkit-transform:translateY(100px);-ms-transform:translateY(100px);transform:translateY(100px);-webkit-transition-delay:100ms;-o-transition-delay:100ms;transition-delay:100ms;-webkit-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible;opacity:1}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-grid-post .eael-entry-thumbnail>img{height:100%;-o-object-fit:cover;object-fit:cover}.eael-post-elements-readmore-btn{display:block}@media only screen and (min-width: 1025px){.elementor-element.elementor-grid-eael-col-1{position:relative}.elementor-element.elementor-grid-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-eael-col-2{position:relative}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-eael-col-3{position:relative}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-eael-col-4{position:relative}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-eael-col-5{position:relative}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-eael-col-6{position:relative}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}@media only screen and (max-width: 1024px)and (min-width: 766px){.elementor-element.elementor-grid-tablet-eael-col-1{position:relative}.elementor-element.elementor-grid-tablet-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-tablet-eael-col-2{position:relative}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-3{position:relative}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-4{position:relative}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-5{position:relative}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-6{position:relative}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}@media only screen and (max-width: 767px){.elementor-element.elementor-grid-mobile-eael-col-1{position:relative}.elementor-element.elementor-grid-mobile-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-mobile-eael-col-2{position:relative}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-3{position:relative}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-4{position:relative}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-5{position:relative}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-6{position:relative}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}.eael-author-avatar>a{display:block}.eael-entry-footer{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.eael-entry-footer>div{display:inline-block;float:left}.post-carousel-categories{position:absolute;left:0;top:0;z-index:11;width:100%;margin:0;padding:15px;text-align:left;visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.post-carousel-categories li{display:inline-block;text-transform:capitalize;margin-right:5px;position:relative}.post-carousel-categories li:after{content:",";color:#fff}.post-carousel-categories li:last-child:after{display:none}.post-carousel-categories li a{color:#fff}.eael-entry-media:hover .post-carousel-categories{visibility:visible;opacity:1}.eael-post-grid-style-three .eael-meta-posted-on{min-width:60px;height:50px;padding:5px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;-webkit-box-shadow:0px 0px 10px 0px rgba(0,0,0,.5);box-shadow:0px 0px 10px 0px rgba(0,0,0,.5);text-align:center;font-size:16px;line-height:18px;margin-top:12px;margin-left:12px}.eael-post-grid-style-three .eael-meta-posted-on span{display:block}.eael-post-grid-style-two .eael-entry-meta{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.eael-post-grid-style-two .eael-entry-meta .eael-meta-posted-on{padding:0;font-size:12px;margin-right:15px;color:#929292}.eael-post-grid-style-two .eael-entry-meta .eael-meta-posted-on i{margin-right:7px}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories{list-style:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:wrap;flex-flow:wrap;margin:0;padding-left:0}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li{font-size:12px;margin-right:7px;color:#929292}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li:last-child{margin-right:0}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li a{color:#929292}.rtl .eael-grid-post .eael-entry-footer{direction:ltr}
|
1 |
+
.eael-post-grid-container .eael-post-grid{margin:0 -10px}.eael-post-grid-container .eael-post-grid .eael-grid-post{float:left;padding:10px}.eael-post-carousel .eael-grid-post{float:none;padding:0}.eael-grid-post-holder{border:1px solid rgba(0,0,0,.1)}.eael-grid-post-holder-inner{height:100%}.eael-entry-media{position:relative}.eael-entry-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1);-o-transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(0.19, 1, 0.22, 1),-webkit-transform .25s cubic-bezier(0.19, 1, 0.22, 1)}.eael-entry-overlay>a{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.eael-entry-title{margin:10px 0 5px;font-size:1.2em}.eael-entry-thumbnail img{width:100%;max-width:100%;vertical-align:middle}.eael-entry-thumbnail.eael-image-ratio img{position:absolute;top:calc(50% + 1px);left:calc(50% + 1px);-webkit-transform:scale(1.01) translate(-50%, -50%);-ms-transform:scale(1.01) translate(-50%, -50%);transform:scale(1.01) translate(-50%, -50%)}.eael-entry-thumbnail>img{height:100%}.eael-entry-footer .eael-author-avatar,.eael-entry-header-after .eael-author-avatar{width:50px;padding-right:8px}.eael-entry-footer .eael-author-avatar .avatar,.eael-entry-header-after .eael-author-avatar .avatar{border-radius:50%}.eael-post-grid .eael-entry-footer .eael-entry-meta{text-align:left}.eael-grid-post .eael-entry-meta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;white-space:nowrap}.eael-grid-post .eael-entry-footer .eael-entry-meta{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-entry-meta>div{font-size:12px;line-height:1.2;padding-bottom:5px}.eael-grid-post-excerpt p{margin:0;font-size:14px}.eael-entry-meta .eael-entry-footer .eael-posted-by{display:block}.eael-grid-post .eael-entry-wrapper{padding:15px}.eael-post-grid .eael-entry-wrapper>.eael-entry-meta span.eael-posted-by,.eael-post-grid .eael-entry-wrapper>.eael-entry-header-after .eael-entry-meta span.eael-posted-by{padding-right:8px}.eael-post-grid .eael-entry-wrapper>.eael-entry-meta span.eael-posted-on::before,.eael-post-grid .eael-entry-wrapper>.eael-entry-header-after .eael-entry-meta span.eael-posted-on::before{content:"";font-family:"Font Awesome 5 Free";font-weight:700;color:inherit;opacity:.4;font-size:.8em;padding-right:7px}.eael-entry-media{position:relative}.eael-entry-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-entry-overlay>i{color:#fff}.eael-entry-overlay.fade-in{visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.fade-in{visibility:visible;opacity:1}.eael-entry-media:hover .eael-entry-overlay.fade-in>i{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);opacity:1}.eael-entry-overlay.zoom-in{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.zoom-in{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-entry-overlay.slide-up{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.eael-entry-media:hover .eael-entry-overlay.slide-up{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);visibility:visible;opacity:1}.eael-entry-media{overflow:hidden}.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay{opacity:0}.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay{opacity:1}.eael-entry-media.grid-hover-style-none .eael-entry-overlay{display:none}.eael-entry-overlay.none{opacity:0}.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay{-webkit-transform:scale(0.4);-ms-transform:scale(0.4);transform:scale(0.4);opacity:0}.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay>i{-webkit-transform:translateY(-100px);-ms-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition-delay:100ms;-o-transition-delay:100ms;transition-delay:100ms;-webkit-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay>i{-webkit-transform:translateY(100px);-ms-transform:translateY(100px);transform:translateY(100px);-webkit-transition-delay:100ms;-o-transition-delay:100ms;transition-delay:100ms;-webkit-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible;opacity:1}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-grid-post .eael-entry-thumbnail>img{height:100%;-o-object-fit:cover;object-fit:cover}.eael-post-elements-readmore-btn{display:block}@media only screen and (min-width: 1025px){.elementor-element.elementor-grid-eael-col-1{position:relative}.elementor-element.elementor-grid-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-eael-col-2{position:relative}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-eael-col-3{position:relative}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-eael-col-4{position:relative}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-eael-col-5{position:relative}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-eael-col-6{position:relative}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}@media only screen and (max-width: 1024px)and (min-width: 766px){.elementor-element.elementor-grid-tablet-eael-col-1{position:relative}.elementor-element.elementor-grid-tablet-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-tablet-eael-col-2{position:relative}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-3{position:relative}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-4{position:relative}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-5{position:relative}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-tablet-eael-col-6{position:relative}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-tablet-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}@media only screen and (max-width: 767px){.elementor-element.elementor-grid-mobile-eael-col-1{position:relative}.elementor-element.elementor-grid-mobile-eael-col-1 .eael-grid-post{width:100%;float:left}.elementor-element.elementor-grid-mobile-eael-col-2{position:relative}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post{width:50%;float:left}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post:nth-of-type(2n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-2 .eael-grid-post:nth-of-type(2n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-3{position:relative}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post{width:33.3333%;float:left}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post:nth-of-type(3n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-3 .eael-grid-post:nth-of-type(3n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-4{position:relative}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post{width:25%;float:left}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post:nth-of-type(4n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-4 .eael-grid-post:nth-of-type(4n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-5{position:relative}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post{width:20%;float:left}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post:nth-of-type(5n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-5 .eael-grid-post:nth-of-type(5n + 1){clear:left}.elementor-element.elementor-grid-mobile-eael-col-6{position:relative}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post{width:16%;float:left}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post:nth-of-type(6n){margin-right:0 !important}.elementor-element.elementor-grid-mobile-eael-col-6 .eael-grid-post:nth-of-type(6n + 1){clear:left}}.eael-author-avatar>a{display:block}.eael-entry-footer,.eael-entry-header-after{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.eael-entry-footer>div,.eael-entry-header-after>div{display:inline-block;float:left}.post-carousel-categories{position:absolute;left:0;top:0;z-index:11;width:100%;margin:0;padding:15px;text-align:left;visibility:hidden;opacity:0;-webkit-transition:300ms;-o-transition:300ms;transition:300ms}.post-carousel-categories li{display:inline-block;text-transform:capitalize;margin-right:5px;position:relative}.post-carousel-categories li:after{content:",";color:#fff}.post-carousel-categories li:last-child:after{display:none}.post-carousel-categories li a{color:#fff}.eael-entry-media:hover .post-carousel-categories{visibility:visible;opacity:1}.eael-post-grid-style-three .eael-meta-posted-on{min-width:60px;height:50px;padding:5px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;-webkit-box-shadow:0px 0px 10px 0px rgba(0,0,0,.5);box-shadow:0px 0px 10px 0px rgba(0,0,0,.5);text-align:center;font-size:16px;line-height:18px;margin-top:12px;margin-left:12px}.eael-post-grid-style-three .eael-meta-posted-on span{display:block}.eael-post-grid-style-two .eael-entry-meta{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.eael-post-grid-style-two .eael-entry-meta .eael-meta-posted-on{padding:0;font-size:12px;margin-right:15px;color:#929292}.eael-post-grid-style-two .eael-entry-meta .eael-meta-posted-on i{margin-right:7px}.eael-post-grid-style-two .eael-entry-meta .eael-posted-by.style-two-footer{padding:0;font-size:12px}.eael-post-grid-style-two .eael-entry-meta .eael-posted-by.style-two-footer a{color:#929292}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories{list-style:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:wrap;flex-flow:wrap;margin:0;padding-left:0}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li{font-size:12px;margin-right:7px;color:#929292}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li:last-child{margin-right:0}.eael-post-grid-style-two .eael-entry-meta .post-meta-categories li a{color:#929292}.rtl .eael-grid-post .eael-entry-footer{direction:ltr}
|
assets/front-end/js/view/general.js
CHANGED
@@ -310,7 +310,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace
|
|
310 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
311 |
|
312 |
"use strict";
|
313 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/@wordpress/hooks/build-module/index.js\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n ea.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n ea.getToken = function () {\n if (localize.nonce && !ea.noncegenerated) {\n
|
314 |
|
315 |
/***/ })
|
316 |
|
310 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
311 |
|
312 |
"use strict";
|
313 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/@wordpress/hooks/build-module/index.js\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false,\n elementStatusCheck: function elementStatusCheck(name) {\n if (window.eaElementList && name in window.eaElementList) {\n return true;\n } else {\n window.eaElementList = _objectSpread(_objectSpread({}, window.eaElementList), {}, _defineProperty({}, name, true));\n }\n return false;\n }\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode();\n\n // hooks\n ea.hooks.doAction(\"init\");\n\n // init edit mode hook\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n(function ($) {\n ea.getToken = function () {\n if (localize.nonce && !ea.noncegenerated) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_get_token\"\n },\n success: function success(response) {\n if (response.success) {\n localize.nonce = response.data.nonce;\n ea.noncegenerated = true;\n }\n }\n });\n }\n };\n $('a').on('click', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n }\n\n // we will try and catch the error but not show anything just do it if possible\n try {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n }\n } catch (err) {\n // nothing to do\n }\n });\n})(jQuery);\n(function ($) {\n $(document).on('click', '.theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus', function (e) {\n // Get elements and values\n var $this = $(this),\n $qty = $this.closest('.quantity').find('.qty'),\n currentVal = parseFloat($qty.val()),\n max = parseFloat($qty.attr('max')),\n min = parseFloat($qty.attr('min')),\n step = $qty.attr('step');\n\n // Format values\n if (!currentVal || currentVal === '' || currentVal === 'NaN') currentVal = 0;\n if (max === '' || max === 'NaN') max = '';\n if (min === '' || min === 'NaN') min = 0;\n if (step === 'any' || step === '' || step === undefined || parseFloat(step) === 'NaN') step = 1;\n\n // Change the value\n if ($this.hasClass('nm-qty-plus')) {\n if (max && (max == currentVal || currentVal > max)) {\n $qty.val(max);\n } else {\n $qty.val(currentVal + parseFloat(step));\n }\n } else {\n if (min && (min == currentVal || currentVal < min)) {\n $qty.val(min);\n } else if (currentVal > 0) {\n $qty.val(currentVal - parseFloat(step));\n }\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?");
|
314 |
|
315 |
/***/ })
|
316 |
|
assets/front-end/js/view/general.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=90)}({90:function(e,t,n){"use strict";n.r(t);var r=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e,t){return function(n,i,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(n)&&r(i))if("function"==typeof a)if("number"==typeof s){var c={callback:a,priority:s,namespace:i};if(l[n]){var u,d=l[n].handlers;for(u=d.length;u>0&&!(s>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===n&&e.currentIndex>=u&&e.currentIndex++}))}else l[n]={handlers:[c],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,i,a,s)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,a){var s=e[t];if(o(i)&&(n||r(a))){if(!s[i])return 0;var l=0;if(n)l=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else for(var c=s[i].handlers,u=function(e){c[e].namespace===a&&(c.splice(e,1),l++,s.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,a),l}}};var s=function(e,t){return function(n,r){var o=e[t];return void 0!==r?n in o&&o[n].handlers.some((function(e){return e.namespace===r})):n in o}};var l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var o=e[t];o[r]||(o[r]={handlers:[],runs:0}),o[r].runs++;var i=o[r].handlers;for(var a=arguments.length,s=new Array(a>1?a-1:0),l=1;l<a;l++)s[l-1]=arguments[l];if(!i||!i.length)return n?s[0]:void 0;var c={name:r,currentIndex:0};for(o.__current.push(c);c.currentIndex<i.length;){var u=i[c.currentIndex],d=u.callback.apply(null,s);n&&(s[0]=d),c.currentIndex++}return o.__current.pop(),n?s[0]:void 0}};var c=function(e,t){return function(){var n,r,o=e[t];return null!==(n=null===(r=o.__current[o.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var u=function(e,t){return function(n){var r=e[t];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var d=function(e,t){return function(n){var r=e[t];if(o(n))return r[n]&&r[n].runs?r[n].runs:0}},h=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=i(this,"actions"),this.addFilter=i(this,"filters"),this.removeAction=a(this,"actions"),this.removeFilter=a(this,"filters"),this.hasAction=s(this,"actions"),this.hasFilter=s(this,"filters"),this.removeAllActions=a(this,"actions",!0),this.removeAllFilters=a(this,"filters",!0),this.doAction=l(this,"actions"),this.applyFilters=l(this,"filters",!0),this.currentAction=c(this,"actions"),this.currentFilter=c(this,"filters"),this.doingAction=u(this,"actions"),this.doingFilter=u(this,"filters"),this.didAction=d(this,"actions"),this.didFilter=d(this,"filters")};var f,p=function(){return new h},v=p();v.addAction,v.addFilter,v.removeAction,v.removeFilter,v.hasAction,v.hasFilter,v.removeAllActions,v.removeAllFilters,v.doAction,v.applyFilters,v.currentAction,v.currentFilter,v.doingAction,v.doingFilter,v.didAction,v.didFilter,v.actions,v.filters;function y(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 m(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){g(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function g(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}window.isEditMode=!1,window.ea={hooks:p(),isEditMode:!1,elementStatusCheck:function(e){return!(!window.eaElementList||!(e in window.eaElementList))||(window.eaElementList=m(m({},window.eaElementList),{},g({},e,!0)),!1)}},ea.hooks.addAction("widgets.reinit","ea",(function(e){var t=jQuery(".eael-filter-gallery-container",e),n=jQuery(".eael-post-grid:not(.eael-post-carousel)",e),r=jQuery(".eael-twitter-feed-masonry",e),o=jQuery(".eael-instafeed",e),i=jQuery(".premium-gallery-container",e),a=jQuery(".eael-event-calendar-cls",e),s=jQuery(".eael-testimonial-slider",e),l=jQuery(".eael-tm-carousel",e),c=jQuery(".eael-post-carousel:not(.eael-post-grid)",e),u=jQuery(".eael-logo-carousel",e),d=jQuery(".eael-twitter-feed-carousel",e);t.length&&t.isotope("layout"),n.length&&n.isotope("layout"),r.length&&r.isotope("layout"),o.length&&o.isotope("layout"),i.length&&i.isotope("layout"),a.length&&ea.hooks.doAction("eventCalendar.reinit"),s.length&&ea.hooks.doAction("testimonialSlider.reinit"),l.length&&ea.hooks.doAction("teamMemberCarousel.reinit"),c.length&&ea.hooks.doAction("postCarousel.reinit"),u.length&&ea.hooks.doAction("logoCarousel.reinit"),d.length&&ea.hooks.doAction("twitterCarousel.reinit")})),jQuery(window).on("elementor/frontend/init",(function(){window.isEditMode=elementorFrontend.isEditMode(),window.ea.isEditMode=elementorFrontend.isEditMode(),ea.hooks.doAction("init"),ea.isEditMode&&ea.hooks.doAction("editMode.init")})),f=jQuery,ea.getToken=function(){localize.nonce&&!ea.noncegenerated&&
|
1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=90)}({90:function(e,t,n){"use strict";n.r(t);var r=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e,t){return function(n,i,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(n)&&r(i))if("function"==typeof a)if("number"==typeof s){var c={callback:a,priority:s,namespace:i};if(l[n]){var u,d=l[n].handlers;for(u=d.length;u>0&&!(s>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===n&&e.currentIndex>=u&&e.currentIndex++}))}else l[n]={handlers:[c],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,i,a,s)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var a=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,a){var s=e[t];if(o(i)&&(n||r(a))){if(!s[i])return 0;var l=0;if(n)l=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else for(var c=s[i].handlers,u=function(e){c[e].namespace===a&&(c.splice(e,1),l++,s.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,a),l}}};var s=function(e,t){return function(n,r){var o=e[t];return void 0!==r?n in o&&o[n].handlers.some((function(e){return e.namespace===r})):n in o}};var l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var o=e[t];o[r]||(o[r]={handlers:[],runs:0}),o[r].runs++;var i=o[r].handlers;for(var a=arguments.length,s=new Array(a>1?a-1:0),l=1;l<a;l++)s[l-1]=arguments[l];if(!i||!i.length)return n?s[0]:void 0;var c={name:r,currentIndex:0};for(o.__current.push(c);c.currentIndex<i.length;){var u=i[c.currentIndex],d=u.callback.apply(null,s);n&&(s[0]=d),c.currentIndex++}return o.__current.pop(),n?s[0]:void 0}};var c=function(e,t){return function(){var n,r,o=e[t];return null!==(n=null===(r=o.__current[o.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var u=function(e,t){return function(n){var r=e[t];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var d=function(e,t){return function(n){var r=e[t];if(o(n))return r[n]&&r[n].runs?r[n].runs:0}},h=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=i(this,"actions"),this.addFilter=i(this,"filters"),this.removeAction=a(this,"actions"),this.removeFilter=a(this,"filters"),this.hasAction=s(this,"actions"),this.hasFilter=s(this,"filters"),this.removeAllActions=a(this,"actions",!0),this.removeAllFilters=a(this,"filters",!0),this.doAction=l(this,"actions"),this.applyFilters=l(this,"filters",!0),this.currentAction=c(this,"actions"),this.currentFilter=c(this,"filters"),this.doingAction=u(this,"actions"),this.doingFilter=u(this,"filters"),this.didAction=d(this,"actions"),this.didFilter=d(this,"filters")};var f,p=function(){return new h},v=p();v.addAction,v.addFilter,v.removeAction,v.removeFilter,v.hasAction,v.hasFilter,v.removeAllActions,v.removeAllFilters,v.doAction,v.applyFilters,v.currentAction,v.currentFilter,v.doingAction,v.doingFilter,v.didAction,v.didFilter,v.actions,v.filters;function y(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 m(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){g(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function g(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}window.isEditMode=!1,window.ea={hooks:p(),isEditMode:!1,elementStatusCheck:function(e){return!(!window.eaElementList||!(e in window.eaElementList))||(window.eaElementList=m(m({},window.eaElementList),{},g({},e,!0)),!1)}},ea.hooks.addAction("widgets.reinit","ea",(function(e){var t=jQuery(".eael-filter-gallery-container",e),n=jQuery(".eael-post-grid:not(.eael-post-carousel)",e),r=jQuery(".eael-twitter-feed-masonry",e),o=jQuery(".eael-instafeed",e),i=jQuery(".premium-gallery-container",e),a=jQuery(".eael-event-calendar-cls",e),s=jQuery(".eael-testimonial-slider",e),l=jQuery(".eael-tm-carousel",e),c=jQuery(".eael-post-carousel:not(.eael-post-grid)",e),u=jQuery(".eael-logo-carousel",e),d=jQuery(".eael-twitter-feed-carousel",e);t.length&&t.isotope("layout"),n.length&&n.isotope("layout"),r.length&&r.isotope("layout"),o.length&&o.isotope("layout"),i.length&&i.isotope("layout"),a.length&&ea.hooks.doAction("eventCalendar.reinit"),s.length&&ea.hooks.doAction("testimonialSlider.reinit"),l.length&&ea.hooks.doAction("teamMemberCarousel.reinit"),c.length&&ea.hooks.doAction("postCarousel.reinit"),u.length&&ea.hooks.doAction("logoCarousel.reinit"),d.length&&ea.hooks.doAction("twitterCarousel.reinit")})),jQuery(window).on("elementor/frontend/init",(function(){window.isEditMode=elementorFrontend.isEditMode(),window.ea.isEditMode=elementorFrontend.isEditMode(),ea.hooks.doAction("init"),ea.isEditMode&&ea.hooks.doAction("editMode.init")})),f=jQuery,ea.getToken=function(){localize.nonce&&!ea.noncegenerated&&f.ajax({url:localize.ajaxurl,type:"post",data:{action:"eael_get_token"},success:function(e){e.success&&(localize.nonce=e.data.nonce,ea.noncegenerated=!0)}})},f("a").on("click",(function(e){var t,n=f(this).attr("href");(t=(n=void 0===n?"":n).startsWith("#"))||(t=(n=n.replace(localize.page_permalink,"")).startsWith("#"));try{t&&(f(n).hasClass("eael-tab-item-trigger")||f(n).hasClass("eael-accordion-header"))&&f(n).trigger("click")}catch(e){}})),function(e){e(document).on("click",".theme-savoy .eael-product-popup .nm-qty-minus, .theme-savoy .eael-product-popup .nm-qty-plus",(function(t){var n=e(this),r=n.closest(".quantity").find(".qty"),o=parseFloat(r.val()),i=parseFloat(r.attr("max")),a=parseFloat(r.attr("min")),s=r.attr("step");o&&""!==o&&"NaN"!==o||(o=0),""!==i&&"NaN"!==i||(i=""),""!==a&&"NaN"!==a||(a=0),"any"!==s&&""!==s&&void 0!==s&&"NaN"!==parseFloat(s)||(s=1),n.hasClass("nm-qty-plus")?i&&(i==o||o>i)?r.val(i):r.val(o+parseFloat(s)):a&&(a==o||o<a)?r.val(a):o>0&&r.val(o-parseFloat(s))}))}(jQuery)}});
|
assets/front-end/js/view/login-register.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n var EALoginRegister = function EALoginRegister($scope, $) {\n var $wrap = $scope.find('.eael-login-registration-wrapper'); // cache wrapper\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var recaptchaSiteKeyV3 = $wrap.data('recaptcha-sitekey-v3');\n var isProAndAjaxEnabled = typeof $wrap.data('is-ajax') !== 'undefined' && $wrap.data('is-ajax') == 'yes';\n var loggedInLocation = $scope.find('[data-logged-in-location]').data('logged-in-location');\n var $loginFormWrapper = $scope.find(\"#eael-login-form-wrapper\");\n var $lostpasswordFormWrapper = $scope.find(\"#eael-lostpassword-form-wrapper\");\n var $resetpasswordFormWrapper = $scope.find(\"#eael-resetpassword-form-wrapper\");\n var loginRcTheme = $loginFormWrapper.data('recaptcha-theme');\n var loginRcSize = $loginFormWrapper.data('recaptcha-size');\n var $regFormWrapper = $scope.find(\"#eael-register-form-wrapper\");\n var regRcTheme = $regFormWrapper.data('recaptcha-theme');\n var regRcSize = $regFormWrapper.data('recaptcha-size');\n var loginRecaptchaVersion = $wrap.data('login-recaptcha-version');\n var registerRecaptchaVersion = $wrap.data('register-recaptcha-version');\n var $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $lostpasswordLinkAction = $scope.find('#eael-lr-lostpassword-toggle');\n var $lostpasswordLoginLinkAction = $scope.find('#eael-lr-login-toggle-lostpassword');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n var $pass1Field = $resetpasswordFormWrapper.find('#eael-pass1');\n var $pass2Field = $resetpasswordFormWrapper.find('#eael-pass2');\n var recaptchaAvailable = typeof grecaptcha !== 'undefined' && grecaptcha !== null;\n var params = new URLSearchParams(location.search);\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n if (loggedInLocation !== undefined && loggedInLocation !== '') {\n location.replace(loggedInLocation);\n }\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n if (!params.has('eael-register')) {\n params.append('eael-register', 1);\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n $loginFormWrapper.hide();\n $lostpasswordFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n if (params.has('eael-register')) {\n params[\"delete\"]('eael-register');\n } else if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n e.preventDefault();\n $regFormWrapper.hide();\n $lostpasswordFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n }\n if ('form' === $lostpasswordLoginLinkAction.data('action')) {\n $lostpasswordLoginLinkAction.on('click', function (e) {\n if (params.has('eael-register')) {\n params[\"delete\"]('eael-register');\n } else if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n e.preventDefault();\n $lostpasswordFormWrapper.hide();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n }\n if ('form' === $lostpasswordLinkAction.data('action')) {\n $lostpasswordLinkAction.on('click', function (e) {\n e.preventDefault();\n if (!params.has('eael-lostpassword')) {\n params.append('eael-lostpassword', 1);\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n $regFormWrapper.hide();\n $loginFormWrapper.hide();\n $lostpasswordFormWrapper.fadeIn();\n });\n }\n\n // Password Visibility Toggle\n $(document).on('click', '#wp-hide-pw, #wp-hide-pw1, #wp-hide-pw2', function (e) {\n var $buttonId = $(this).attr('id');\n switch ($buttonId) {\n case 'wp-hide-pw1':\n togglePasswordVisibility($pass1Field);\n togglePasswordVisibility($pass2Field);\n break;\n case 'wp-hide-pw2':\n togglePasswordVisibility($pass2Field);\n break;\n default:\n togglePasswordVisibility($passField);\n break;\n }\n });\n function togglePasswordVisibility($selector) {\n var fieldType = $selector.attr('type') === 'text' ? 'password' : 'text';\n $selector.attr('type', fieldType);\n $icon = $selector.parent().find('span');\n if (fieldType === 'password') {\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n } else {\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n }\n }\n $('form input[type=\"submit\"]', $scope).on('click', function (e) {\n if (!isProAndAjaxEnabled) {\n var isRecaptchaVersion3 = false;\n isRecaptchaVersion3 = loginRecaptchaVersion === 'v3' || registerRecaptchaVersion === 'v3';\n if (recaptchaAvailable && isRecaptchaVersion3) {\n grecaptcha.execute(recaptchaSiteKeyV3, {\n action: 'eael_login_register_form'\n }).then(function (token) {\n if ($('form input[name=\"g-recaptcha-response\"]', $scope).length === 0) {\n $('form', $scope).append('<input type=\"hidden\" name=\"g-recaptcha-response\" value=\"' + token + '\">');\n } else {\n $('form input[name=\"g-recaptcha-response\"]', $scope).val(token);\n }\n });\n }\n }\n });\n $(document).ready(function () {\n var eaelGetTokenPromise = new Promise(function (eaelGetTokenResolve, eaelGetTokenReject) {\n ea.getToken();\n
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n var EALoginRegister = function EALoginRegister($scope, $) {\n var $wrap = $scope.find('.eael-login-registration-wrapper'); // cache wrapper\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var recaptchaSiteKeyV3 = $wrap.data('recaptcha-sitekey-v3');\n var isProAndAjaxEnabled = typeof $wrap.data('is-ajax') !== 'undefined' && $wrap.data('is-ajax') == 'yes';\n var loggedInLocation = $scope.find('[data-logged-in-location]').data('logged-in-location');\n var $loginFormWrapper = $scope.find(\"#eael-login-form-wrapper\");\n var $lostpasswordFormWrapper = $scope.find(\"#eael-lostpassword-form-wrapper\");\n var $resetpasswordFormWrapper = $scope.find(\"#eael-resetpassword-form-wrapper\");\n var loginRcTheme = $loginFormWrapper.data('recaptcha-theme');\n var loginRcSize = $loginFormWrapper.data('recaptcha-size');\n var $regFormWrapper = $scope.find(\"#eael-register-form-wrapper\");\n var regRcTheme = $regFormWrapper.data('recaptcha-theme');\n var regRcSize = $regFormWrapper.data('recaptcha-size');\n var loginRecaptchaVersion = $wrap.data('login-recaptcha-version');\n var registerRecaptchaVersion = $wrap.data('register-recaptcha-version');\n var $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $lostpasswordLinkAction = $scope.find('#eael-lr-lostpassword-toggle');\n var $lostpasswordLoginLinkAction = $scope.find('#eael-lr-login-toggle-lostpassword');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n var $pass1Field = $resetpasswordFormWrapper.find('#eael-pass1');\n var $pass2Field = $resetpasswordFormWrapper.find('#eael-pass2');\n var recaptchaAvailable = typeof grecaptcha !== 'undefined' && grecaptcha !== null;\n var params = new URLSearchParams(location.search);\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n if (loggedInLocation !== undefined && loggedInLocation !== '') {\n location.replace(loggedInLocation);\n }\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n if (!params.has('eael-register')) {\n params.append('eael-register', 1);\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n $loginFormWrapper.hide();\n $lostpasswordFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n if (params.has('eael-register')) {\n params[\"delete\"]('eael-register');\n } else if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n e.preventDefault();\n $regFormWrapper.hide();\n $lostpasswordFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n }\n if ('form' === $lostpasswordLoginLinkAction.data('action')) {\n $lostpasswordLoginLinkAction.on('click', function (e) {\n if (params.has('eael-register')) {\n params[\"delete\"]('eael-register');\n } else if (params.has('eael-lostpassword')) {\n params[\"delete\"]('eael-lostpassword');\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n e.preventDefault();\n $lostpasswordFormWrapper.hide();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n }\n if ('form' === $lostpasswordLinkAction.data('action')) {\n $lostpasswordLinkAction.on('click', function (e) {\n e.preventDefault();\n if (!params.has('eael-lostpassword')) {\n params.append('eael-lostpassword', 1);\n }\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n $regFormWrapper.hide();\n $loginFormWrapper.hide();\n $lostpasswordFormWrapper.fadeIn();\n });\n }\n\n // Password Visibility Toggle\n $(document).on('click', '#wp-hide-pw, #wp-hide-pw1, #wp-hide-pw2', function (e) {\n var $buttonId = $(this).attr('id');\n switch ($buttonId) {\n case 'wp-hide-pw1':\n togglePasswordVisibility($pass1Field);\n togglePasswordVisibility($pass2Field);\n break;\n case 'wp-hide-pw2':\n togglePasswordVisibility($pass2Field);\n break;\n default:\n togglePasswordVisibility($passField);\n break;\n }\n });\n function togglePasswordVisibility($selector) {\n var fieldType = $selector.attr('type') === 'text' ? 'password' : 'text';\n $selector.attr('type', fieldType);\n $icon = $selector.parent().find('span');\n if (fieldType === 'password') {\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n } else {\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n }\n }\n $('form input[type=\"submit\"]', $scope).on('click', function (e) {\n if (!isProAndAjaxEnabled) {\n var isRecaptchaVersion3 = false;\n isRecaptchaVersion3 = loginRecaptchaVersion === 'v3' || registerRecaptchaVersion === 'v3';\n if (recaptchaAvailable && isRecaptchaVersion3) {\n grecaptcha.execute(recaptchaSiteKeyV3, {\n action: 'eael_login_register_form'\n }).then(function (token) {\n if ($('form input[name=\"g-recaptcha-response\"]', $scope).length === 0) {\n $('form', $scope).append('<input type=\"hidden\" name=\"g-recaptcha-response\" value=\"' + token + '\">');\n } else {\n $('form input[name=\"g-recaptcha-response\"]', $scope).val(token);\n }\n });\n }\n }\n });\n $(document).ready(function () {\n var eaelGetTokenPromise = new Promise(function (eaelGetTokenResolve, eaelGetTokenReject) {\n ea.getToken();\n var interval = setInterval(function () {\n if (ea.noncegenerated === true && typeof localize.nonce !== 'undefined') {\n eaelGetTokenResolve(localize.nonce);\n clearInterval(interval);\n }\n }, 100);\n });\n eaelGetTokenPromise.then(function (updatedNonce) {\n $('#eael-login-nonce, #eael-register-nonce, #eael-lostpassword-nonce, #eael-resetpassword-nonce').val(updatedNonce);\n });\n });\n\n // reCAPTCHA\n function onloadLRcb() {\n if (typeof grecaptcha.render != \"function\") {\n return false;\n }\n if (loginRecaptchaNode) {\n if (registerRecaptchaVersion !== 'v3') {\n try {\n grecaptcha.render(loginRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': loginRcTheme,\n 'size': loginRcSize\n });\n } catch (error) {\n // duplicate instance\n }\n }\n }\n if (registerRecaptchaNode) {\n if (loginRecaptchaVersion !== 'v3') {\n try {\n grecaptcha.render(registerRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': regRcTheme,\n 'size': regRcSize\n });\n } catch (error) {\n // duplicate instance\n }\n }\n }\n }\n if (recaptchaAvailable && isEditMode) {\n // on elementor editor, window load event already fired, so run recaptcha\n onloadLRcb();\n } else {\n // on frontend, load even is yet to fire, so wait and fire recaptcha\n var navData = window.performance.getEntriesByType(\"navigation\");\n if (navData.length > 0 && navData[0].loadEventEnd > 0) {\n if (recaptchaAvailable) {\n onloadLRcb();\n }\n } else {\n $(window).on('load', function () {\n if (recaptchaAvailable) {\n onloadLRcb();\n }\n });\n }\n }\n };\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-login-register.default\", EALoginRegister);\n});\n\n//# sourceURL=webpack:///./src/js/view/login-register.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/login-register.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var a={};function t(n){if(a[n])return a[n].exports;var o=a[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=a,t.d=function(e,a,n){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(1&a&&(e=t(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var o in e)t.d(n,o,function(a){return e[a]}.bind(null,o));return n},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="",t(t.s=15)}({15:function(e,a){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-login-register.default",(function(e,a){var t=e.find(".eael-login-registration-wrapper"),n=t.data("widget-id"),o=t.data("recaptcha-sitekey"),r=t.data("recaptcha-sitekey-v3"),i=void 0!==t.data("is-ajax")&&"yes"==t.data("is-ajax"),c=e.find("[data-logged-in-location]").data("logged-in-location"),
|
1 |
+
!function(e){var a={};function t(n){if(a[n])return a[n].exports;var o=a[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=a,t.d=function(e,a,n){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(1&a&&(e=t(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var o in e)t.d(n,o,function(a){return e[a]}.bind(null,o));return n},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="",t(t.s=15)}({15:function(e,a){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-login-register.default",(function(e,a){var t=e.find(".eael-login-registration-wrapper"),n=t.data("widget-id"),o=t.data("recaptcha-sitekey"),r=t.data("recaptcha-sitekey-v3"),i=void 0!==t.data("is-ajax")&&"yes"==t.data("is-ajax"),c=e.find("[data-logged-in-location]").data("logged-in-location"),d=e.find("#eael-login-form-wrapper"),l=e.find("#eael-lostpassword-form-wrapper"),s=e.find("#eael-resetpassword-form-wrapper"),p=d.data("recaptcha-theme"),f=d.data("recaptcha-size"),u=e.find("#eael-register-form-wrapper"),h=u.data("recaptcha-theme"),g=u.data("recaptcha-size"),w=t.data("login-recaptcha-version"),m=t.data("register-recaptcha-version"),v=e.find("#eael-lr-reg-toggle"),y=e.find("#eael-lr-login-toggle"),b=e.find("#eael-lr-lostpassword-toggle"),k=e.find("#eael-lr-login-toggle-lostpassword"),x=d.find("#eael-user-password"),S=s.find("#eael-pass1"),_=s.find("#eael-pass2"),j="undefined"!=typeof grecaptcha&&null!==grecaptcha,I=new URLSearchParams(location.search),O=document.getElementById("login-recaptcha-node-"+n),P=document.getElementById("register-recaptcha-node-"+n);function z(e){var a="text"===e.attr("type")?"password":"text";e.attr("type",a),$icon=e.parent().find("span"),"password"===a?$icon.removeClass("dashicons-hidden").addClass("dashicons-visibility"):$icon.removeClass("dashicons-visibility").addClass("dashicons-hidden")}function E(){if("function"!=typeof grecaptcha.render)return!1;if(O&&"v3"!==m)try{grecaptcha.render(O,{sitekey:o,theme:p,size:f})}catch(e){}if(P&&"v3"!==w)try{grecaptcha.render(P,{sitekey:o,theme:h,size:g})}catch(e){}}if(void 0!==c&&""!==c&&location.replace(c),"form"===v.data("action")&&v.on("click",(function(e){e.preventDefault(),I.has("eael-lostpassword")&&I.delete("eael-lostpassword"),I.has("eael-register")||I.append("eael-register",1),window.history.replaceState({},"","".concat(location.pathname,"?").concat(I)),d.hide(),l.hide(),u.fadeIn()})),"form"===y.data("action")&&y.on("click",(function(e){I.has("eael-register")?I.delete("eael-register"):I.has("eael-lostpassword")&&I.delete("eael-lostpassword"),window.history.replaceState({},"","".concat(location.pathname,"?").concat(I)),e.preventDefault(),u.hide(),l.hide(),d.fadeIn()})),"form"===k.data("action")&&k.on("click",(function(e){I.has("eael-register")?I.delete("eael-register"):I.has("eael-lostpassword")&&I.delete("eael-lostpassword"),window.history.replaceState({},"","".concat(location.pathname,"?").concat(I)),e.preventDefault(),l.hide(),u.hide(),d.fadeIn()})),"form"===b.data("action")&&b.on("click",(function(e){e.preventDefault(),I.has("eael-lostpassword")||I.append("eael-lostpassword",1),window.history.replaceState({},"","".concat(location.pathname,"?").concat(I)),u.hide(),d.hide(),l.fadeIn()})),a(document).on("click","#wp-hide-pw, #wp-hide-pw1, #wp-hide-pw2",(function(e){switch(a(this).attr("id")){case"wp-hide-pw1":z(S),z(_);break;case"wp-hide-pw2":z(_);break;default:z(x)}})),a('form input[type="submit"]',e).on("click",(function(t){if(!i){j&&("v3"===w||"v3"===m)&&grecaptcha.execute(r,{action:"eael_login_register_form"}).then((function(t){0===a('form input[name="g-recaptcha-response"]',e).length?a("form",e).append('<input type="hidden" name="g-recaptcha-response" value="'+t+'">'):a('form input[name="g-recaptcha-response"]',e).val(t)}))}})),a(document).ready((function(){new Promise((function(e,a){ea.getToken();var t=setInterval((function(){!0===ea.noncegenerated&&void 0!==localize.nonce&&(e(localize.nonce),clearInterval(t))}),100)})).then((function(e){a("#eael-login-nonce, #eael-register-nonce, #eael-lostpassword-nonce, #eael-resetpassword-nonce").val(e)}))})),j&&isEditMode)E();else{var M=window.performance.getEntriesByType("navigation");M.length>0&&M[0].loadEventEnd>0?j&&E():a(window).on("load",(function(){j&&E()}))}}))}))}});
|
assets/front-end/js/view/scroll-to-top.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("(function ($) {\n \"use strict\";\n\n $(function () {\n var offset = 100;\n var speed = 300;\n var duration = 300;\n if ($(this).scrollTop() > offset) {\n $('.eael-ext-scroll-to-top-wrap').removeClass('scroll-to-top-hide');\n }\n if (elementorFrontend) {\n elementorFrontend.elements.$body[0].addEventListener('scroll', eaelScrollToTop);\n }\n $(window).scroll(function () {\n eaelScrollToTop();\n });\n function eaelScrollToTop() {\n if ($(this).scrollTop() < offset) {\n $('.eael-ext-scroll-to-top-wrap').fadeOut(duration);\n } else {\n $('.eael-ext-scroll-to-top-wrap').fadeIn(duration);\n }\n }\n $('.eael-ext-scroll-to-top-wrap').on('click', function () {\n $('html, body').animate({\n scrollTop: 0\n }, speed);\n return false;\n });\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/scroll-to-top.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("(function ($) {\n \"use strict\";\n\n $(function () {\n var offset = 100;\n var speed = 300;\n var duration = 300;\n if ($(this).scrollTop() > offset) {\n $('.eael-ext-scroll-to-top-wrap').removeClass('scroll-to-top-hide');\n }\n if (typeof elementorFrontend !== 'undefined' && elementorFrontend) {\n elementorFrontend.elements.$body[0].addEventListener('scroll', eaelScrollToTop);\n }\n $(window).scroll(function () {\n eaelScrollToTop();\n });\n function eaelScrollToTop() {\n if ($(this).scrollTop() < offset) {\n $('.eael-ext-scroll-to-top-wrap').fadeOut(duration);\n } else {\n $('.eael-ext-scroll-to-top-wrap').fadeIn(duration);\n }\n }\n $('.eael-ext-scroll-to-top-wrap').on('click', function () {\n $('html, body').animate({\n scrollTop: 0\n }, speed);\n return false;\n });\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/scroll-to-top.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/scroll-to-top.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function o(
|
1 |
+
!function(e){var t={};function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=22)}({22:function(e,t){!function(e){"use strict";e((function(){function t(){e(this).scrollTop()<100?e(".eael-ext-scroll-to-top-wrap").fadeOut(300):e(".eael-ext-scroll-to-top-wrap").fadeIn(300)}e(this).scrollTop()>100&&e(".eael-ext-scroll-to-top-wrap").removeClass("scroll-to-top-hide"),"undefined"!=typeof elementorFrontend&&elementorFrontend&&elementorFrontend.elements.$body[0].addEventListener("scroll",t),e(window).scroll((function(){t()})),e(".eael-ext-scroll-to-top-wrap").on("click",(function(){return e("html, body").animate({scrollTop:0},300),!1}))}))}(jQuery)}});
|
essential_adons_elementor.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 5.4.
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 7.0.0
|
13 |
-
* Elementor tested up to: 3.
|
14 |
-
* Elementor Pro tested up to: 3.
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
-
define('EAEL_PLUGIN_VERSION', '5.4.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 5.4.2
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 7.0.0
|
13 |
+
* Elementor tested up to: 3.8.0
|
14 |
+
* Elementor Pro tested up to: 3.8.0
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
+
define('EAEL_PLUGIN_VERSION', '5.4.2');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Elements/Post_Grid.php
CHANGED
@@ -498,7 +498,8 @@ class Post_Grid extends Widget_Base
|
|
498 |
],
|
499 |
'default' => 'flex-start',
|
500 |
'selectors' => [
|
501 |
-
'{{WRAPPER}} .eael-grid-post .eael-entry-footer
|
|
|
502 |
],
|
503 |
]
|
504 |
);
|
@@ -535,7 +536,7 @@ class Post_Grid extends Widget_Base
|
|
535 |
'type' => Controls_Manager::DIMENSIONS,
|
536 |
'size_units' => ['px', '%', 'em'],
|
537 |
'selectors' => [
|
538 |
-
'{{WRAPPER}} .eael-entry-
|
539 |
],
|
540 |
'condition' => [
|
541 |
'meta_position' => 'meta-entry-header',
|
@@ -551,6 +552,7 @@ class Post_Grid extends Widget_Base
|
|
551 |
'size_units' => ['px', '%', 'em'],
|
552 |
'selectors' => [
|
553 |
'{{WRAPPER}} .eael-entry-footer' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
|
554 |
],
|
555 |
'condition' => [
|
556 |
'meta_position' => 'meta-entry-footer',
|
@@ -578,11 +580,10 @@ class Post_Grid extends Widget_Base
|
|
578 |
$this,
|
579 |
'eael_meta_header_',
|
580 |
__('Meta Position', 'essential-addons-for-elementor-lite'),
|
581 |
-
'.eael-grid-post .eael-entry-
|
582 |
[
|
583 |
'eael_show_meta' => 'yes',
|
584 |
'meta_position' => ['meta-entry-header'],
|
585 |
-
'eael_post_grid_preset_style!' => 'three',
|
586 |
]
|
587 |
);
|
588 |
|
498 |
],
|
499 |
'default' => 'flex-start',
|
500 |
'selectors' => [
|
501 |
+
'{{WRAPPER}} .eael-grid-post .eael-entry-footer' => 'justify-content: {{VALUE}};',
|
502 |
+
'{{WRAPPER}} .eael-grid-post .eael-entry-header-after' => 'justify-content: {{VALUE}}; align-items: center;',
|
503 |
],
|
504 |
]
|
505 |
);
|
536 |
'type' => Controls_Manager::DIMENSIONS,
|
537 |
'size_units' => ['px', '%', 'em'],
|
538 |
'selectors' => [
|
539 |
+
'{{WRAPPER}} .eael-entry-header-after' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
540 |
],
|
541 |
'condition' => [
|
542 |
'meta_position' => 'meta-entry-header',
|
552 |
'size_units' => ['px', '%', 'em'],
|
553 |
'selectors' => [
|
554 |
'{{WRAPPER}} .eael-entry-footer' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
555 |
+
'{{WRAPPER}} .eael-entry-header-after' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
556 |
],
|
557 |
'condition' => [
|
558 |
'meta_position' => 'meta-entry-footer',
|
580 |
$this,
|
581 |
'eael_meta_header_',
|
582 |
__('Meta Position', 'essential-addons-for-elementor-lite'),
|
583 |
+
'.eael-grid-post .eael-entry-header-after',
|
584 |
[
|
585 |
'eael_show_meta' => 'yes',
|
586 |
'meta_position' => ['meta-entry-header'],
|
|
|
587 |
]
|
588 |
);
|
589 |
|
includes/Template/Post-Grid/default.php
CHANGED
@@ -28,7 +28,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
28 |
<div class="eael-grid-post-holder-inner">';
|
29 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
30 |
echo '<div class="eael-entry-media">';
|
31 |
-
if ($settings['eael_show_post_terms']
|
32 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
33 |
}
|
34 |
|
@@ -67,9 +67,14 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
67 |
}
|
68 |
|
69 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
|
|
|
|
|
|
|
|
|
|
70 |
if ($settings['eael_show_meta']) {
|
71 |
echo '<div class="eael-entry-meta">';
|
72 |
-
if ($settings['
|
73 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
74 |
}
|
75 |
if ($settings['eael_show_date'] === 'yes') {
|
@@ -77,6 +82,8 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
77 |
}
|
78 |
echo '</div>';
|
79 |
}
|
|
|
|
|
80 |
}
|
81 |
|
82 |
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
@@ -100,39 +107,54 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
100 |
}
|
101 |
|
102 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
103 |
-
echo '<div class="eael-entry-
|
104 |
-
|
105 |
-
|
106 |
-
}
|
107 |
-
if ($settings['eael_show_post_terms'] === 'yes') {
|
108 |
-
if ($settings['eael_post_terms'] === 'category') {
|
109 |
-
$terms = get_the_category();
|
110 |
}
|
111 |
-
|
112 |
-
|
|
|
|
|
113 |
}
|
114 |
-
if (
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
124 |
-
$
|
125 |
-
$html
|
126 |
-
$html .= '<a href="' . esc_url($link) . '">';
|
127 |
-
$html .= $term->name;
|
128 |
-
$html .= '</a>';
|
129 |
-
$html .= '</li>';
|
130 |
-
$count++;
|
131 |
}
|
132 |
-
$html .= '</ul>';
|
133 |
-
echo $html;
|
134 |
}
|
135 |
-
|
136 |
echo '</div>';
|
137 |
}
|
138 |
echo '</div>';
|
@@ -148,7 +170,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
148 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
149 |
|
150 |
echo '<div class="eael-entry-media">';
|
151 |
-
if ($settings['eael_show_post_terms']
|
152 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
153 |
}
|
154 |
|
@@ -196,7 +218,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
196 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
197 |
if ($settings['eael_show_meta']) {
|
198 |
echo '<div class="eael-entry-meta">';
|
199 |
-
if ($settings['
|
200 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
201 |
}
|
202 |
if ($settings['eael_show_date'] === 'yes') {
|
@@ -239,7 +261,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
239 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
240 |
|
241 |
echo '<div class="eael-entry-media">';
|
242 |
-
if ($settings['eael_show_post_terms']
|
243 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
244 |
}
|
245 |
|
@@ -281,9 +303,14 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
281 |
echo '</' . $title_tag . '></header>';
|
282 |
}
|
283 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
|
|
|
|
|
|
|
|
|
|
284 |
if ($settings['eael_show_meta']) {
|
285 |
echo '<div class="eael-entry-meta">';
|
286 |
-
if ($settings['eael_show_author']
|
287 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
288 |
}
|
289 |
if ($settings['eael_show_date'] === 'yes') {
|
@@ -291,6 +318,8 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
291 |
}
|
292 |
echo '</div>';
|
293 |
}
|
|
|
|
|
294 |
}
|
295 |
|
296 |
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
@@ -315,13 +344,13 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
315 |
|
316 |
if ($settings['eael_show_meta'] && $settings['meta_position'] == 'meta-entry-footer') {
|
317 |
echo '<div class="eael-entry-footer">';
|
318 |
-
if ($settings['eael_show_avatar']
|
319 |
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
320 |
}
|
321 |
|
322 |
if ($settings['eael_show_meta']) {
|
323 |
echo '<div class="eael-entry-meta">';
|
324 |
-
if ($settings['eael_show_author']
|
325 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
326 |
}
|
327 |
if ($settings['eael_show_date'] === 'yes') {
|
28 |
<div class="eael-grid-post-holder-inner">';
|
29 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
30 |
echo '<div class="eael-entry-media">';
|
31 |
+
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
32 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
33 |
}
|
34 |
|
67 |
}
|
68 |
|
69 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
70 |
+
echo '<div class="eael-entry-header-after">';
|
71 |
+
if ( isset( $settings['eael_show_avatar_two'] ) && 'yes' === $settings['eael_show_avatar_two'] ) {
|
72 |
+
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
73 |
+
}
|
74 |
+
|
75 |
if ($settings['eael_show_meta']) {
|
76 |
echo '<div class="eael-entry-meta">';
|
77 |
+
if ( isset( $settings['eael_show_author_two'] ) && 'yes' === $settings['eael_show_author_two'] ) {
|
78 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
79 |
}
|
80 |
if ($settings['eael_show_date'] === 'yes') {
|
82 |
}
|
83 |
echo '</div>';
|
84 |
}
|
85 |
+
|
86 |
+
echo '</div>';
|
87 |
}
|
88 |
|
89 |
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
107 |
}
|
108 |
|
109 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
110 |
+
echo '<div class="eael-entry-header-after style-two">';
|
111 |
+
if ( isset( $settings['eael_show_avatar_two'] ) && 'yes' === $settings['eael_show_avatar_two'] ) {
|
112 |
+
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
|
|
|
|
|
|
|
|
113 |
}
|
114 |
+
|
115 |
+
echo '<div class="eael-entry-meta">';
|
116 |
+
if ( isset( $settings['eael_show_author_two'] ) && 'yes' === $settings['eael_show_author_two'] ) {
|
117 |
+
echo '<span class="eael-posted-by style-two-footer">' . get_the_author_posts_link() . '</span>';
|
118 |
}
|
119 |
+
if ( 'yes' === $settings['eael_show_date'] ) {
|
120 |
+
echo '<span class="eael-meta-posted-on"><i class="far fa-clock"></i><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
121 |
+
}
|
122 |
+
if ( 'yes' === $settings['eael_show_post_terms'] ) {
|
123 |
+
if ($settings['eael_post_terms'] === 'category') {
|
124 |
+
$terms = get_the_category();
|
125 |
+
}
|
126 |
+
if ($settings['eael_post_terms'] === 'tags') {
|
127 |
+
$terms = get_the_tags();
|
128 |
+
}
|
129 |
+
if (!empty($terms)) {
|
130 |
+
$html = '<ul class="post-meta-categories">';
|
131 |
+
$count = 0;
|
132 |
+
|
133 |
+
$eael_post_terms_separator = ! empty( $settings['eael_post_terms_separator'] ) ? wp_strip_all_tags( $settings['eael_post_terms_separator'] ) : '';
|
134 |
+
foreach ($terms as $term) {
|
135 |
+
if ($count === intval($settings['eael_post_terms_max_length'])) {
|
136 |
+
break;
|
137 |
+
}
|
138 |
+
if ($count === 0) {
|
139 |
+
$html .= '<li class="meta-cat-icon"><i class="far fa-folder-open"></i></li>';
|
140 |
+
}
|
141 |
+
|
142 |
+
$is_last_item = $count + 1 === intval($settings['eael_post_terms_max_length']) || $count + 1 === count($terms);
|
143 |
+
$eael_post_terms_separator = $is_last_item ? '' : $eael_post_terms_separator;
|
144 |
+
|
145 |
+
$link = ($settings['eael_post_terms'] === 'category') ? get_category_link($term->term_id) : get_tag_link($term->term_id);
|
146 |
+
$html .= '<li>';
|
147 |
+
$html .= '<a href="' . esc_url($link) . '">';
|
148 |
+
$html .= $term->name . esc_html( $eael_post_terms_separator );
|
149 |
+
$html .= '</a>';
|
150 |
+
$html .= '</li>';
|
151 |
+
$count++;
|
152 |
}
|
153 |
+
$html .= '</ul>';
|
154 |
+
echo $html;
|
|
|
|
|
|
|
|
|
|
|
155 |
}
|
|
|
|
|
156 |
}
|
157 |
+
echo '</div>';
|
158 |
echo '</div>';
|
159 |
}
|
160 |
echo '</div>';
|
170 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
171 |
|
172 |
echo '<div class="eael-entry-media">';
|
173 |
+
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
174 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
175 |
}
|
176 |
|
218 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
219 |
if ($settings['eael_show_meta']) {
|
220 |
echo '<div class="eael-entry-meta">';
|
221 |
+
if ( isset( $settings['eael_show_author_three'] ) && 'yes' === $settings['eael_show_author_three'] ) {
|
222 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
223 |
}
|
224 |
if ($settings['eael_show_date'] === 'yes') {
|
261 |
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
262 |
|
263 |
echo '<div class="eael-entry-media">';
|
264 |
+
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
265 |
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
266 |
}
|
267 |
|
303 |
echo '</' . $title_tag . '></header>';
|
304 |
}
|
305 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
306 |
+
echo '<div class="eael-entry-header-after">';
|
307 |
+
if ( isset( $settings['eael_show_avatar'] ) && 'yes' === $settings['eael_show_avatar'] ) {
|
308 |
+
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
309 |
+
}
|
310 |
+
|
311 |
if ($settings['eael_show_meta']) {
|
312 |
echo '<div class="eael-entry-meta">';
|
313 |
+
if ( isset( $settings['eael_show_author'] ) && 'yes' === $settings['eael_show_author'] ) {
|
314 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
315 |
}
|
316 |
if ($settings['eael_show_date'] === 'yes') {
|
318 |
}
|
319 |
echo '</div>';
|
320 |
}
|
321 |
+
|
322 |
+
echo '</div>';
|
323 |
}
|
324 |
|
325 |
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
344 |
|
345 |
if ($settings['eael_show_meta'] && $settings['meta_position'] == 'meta-entry-footer') {
|
346 |
echo '<div class="eael-entry-footer">';
|
347 |
+
if ( isset( $settings['eael_show_avatar'] ) && 'yes' === $settings['eael_show_avatar'] ) {
|
348 |
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
349 |
}
|
350 |
|
351 |
if ($settings['eael_show_meta']) {
|
352 |
echo '<div class="eael-entry-meta">';
|
353 |
+
if ( isset( $settings['eael_show_author'] ) && 'yes' === $settings['eael_show_author'] ) {
|
354 |
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
355 |
}
|
356 |
if ($settings['eael_show_date'] === 'yes') {
|
includes/Traits/Controls.php
CHANGED
@@ -1296,6 +1296,36 @@ trait Controls
|
|
1296 |
]
|
1297 |
);
|
1298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1299 |
}
|
1300 |
|
1301 |
if ('eael-post-grid' === $wb->get_name() || 'eael-post-block' === $wb->get_name() || 'eael-post-carousel' === $wb->get_name()) {
|
@@ -1328,36 +1358,139 @@ trait Controls
|
|
1328 |
]
|
1329 |
);
|
1330 |
|
1331 |
-
$wb->
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
'
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1346 |
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
'
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1361 |
|
1362 |
$wb->add_control(
|
1363 |
'eael_show_date',
|
1296 |
]
|
1297 |
);
|
1298 |
|
1299 |
+
if ( 'eael-post-grid' === $wb->get_name() ){
|
1300 |
+
$wb->add_control(
|
1301 |
+
'eael_post_terms_separator',
|
1302 |
+
[
|
1303 |
+
'label' => esc_html__('Terms Separator', 'essential-addons-for-elementor-lite'),
|
1304 |
+
'type' => Controls_Manager::TEXT,
|
1305 |
+
'label_block' => false,
|
1306 |
+
'default' => esc_html__('', 'essential-addons-for-elementor-lite'),
|
1307 |
+
'condition' => [
|
1308 |
+
'eael_show_post_terms' => 'yes',
|
1309 |
+
],
|
1310 |
+
]
|
1311 |
+
);
|
1312 |
+
|
1313 |
+
$wb->add_control(
|
1314 |
+
'eael_post_terms_on_image_hover',
|
1315 |
+
[
|
1316 |
+
'label' => esc_html__('Show Terms on Image Hover', 'essential-addons-for-elementor-lite'),
|
1317 |
+
'type' => Controls_Manager::SWITCHER,
|
1318 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1319 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1320 |
+
'return_value' => 'yes',
|
1321 |
+
'default' => 'yes',
|
1322 |
+
'condition' => [
|
1323 |
+
'eael_show_post_terms' => 'yes',
|
1324 |
+
],
|
1325 |
+
]
|
1326 |
+
);
|
1327 |
+
}
|
1328 |
+
|
1329 |
}
|
1330 |
|
1331 |
if ('eael-post-grid' === $wb->get_name() || 'eael-post-block' === $wb->get_name() || 'eael-post-carousel' === $wb->get_name()) {
|
1358 |
]
|
1359 |
);
|
1360 |
|
1361 |
+
if ( 'eael-post-grid' === $wb->get_name() ){
|
1362 |
+
$wb->add_control(
|
1363 |
+
'eael_show_avatar',
|
1364 |
+
[
|
1365 |
+
'label' => __('Show Avatar', 'essential-addons-for-elementor-lite'),
|
1366 |
+
'type' => Controls_Manager::SWITCHER,
|
1367 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1368 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1369 |
+
'return_value' => 'yes',
|
1370 |
+
'default' => 'yes',
|
1371 |
+
'condition' => [
|
1372 |
+
'eael_show_meta' => 'yes',
|
1373 |
+
'eael_post_grid_preset_style' => '',
|
1374 |
+
],
|
1375 |
+
]
|
1376 |
+
);
|
1377 |
+
|
1378 |
+
$wb->add_control(
|
1379 |
+
'eael_show_author',
|
1380 |
+
[
|
1381 |
+
'label' => __('Show Author Name', 'essential-addons-for-elementor-lite'),
|
1382 |
+
'type' => Controls_Manager::SWITCHER,
|
1383 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1384 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1385 |
+
'return_value' => 'yes',
|
1386 |
+
'default' => 'yes',
|
1387 |
+
'condition' => [
|
1388 |
+
'eael_show_meta' => 'yes',
|
1389 |
+
'eael_post_grid_preset_style' => '',
|
1390 |
+
],
|
1391 |
+
]
|
1392 |
+
);
|
1393 |
|
1394 |
+
// Style two and three has different default values and keeping controls consistant (Avatar and Author).
|
1395 |
+
$wb->add_control(
|
1396 |
+
'eael_show_avatar_two',
|
1397 |
+
[
|
1398 |
+
'label' => __('Show Avatar', 'essential-addons-for-elementor-lite'),
|
1399 |
+
'type' => Controls_Manager::SWITCHER,
|
1400 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1401 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1402 |
+
'return_value' => 'yes',
|
1403 |
+
'default' => '',
|
1404 |
+
'condition' => [
|
1405 |
+
'eael_show_meta' => 'yes',
|
1406 |
+
'eael_post_grid_preset_style' => 'two',
|
1407 |
+
],
|
1408 |
+
]
|
1409 |
+
);
|
1410 |
+
|
1411 |
+
// $wb->add_control(
|
1412 |
+
// 'eael_show_avatar_three',
|
1413 |
+
// [
|
1414 |
+
// 'label' => __('Show Avatar', 'essential-addons-for-elementor-lite'),
|
1415 |
+
// 'type' => Controls_Manager::SWITCHER,
|
1416 |
+
// 'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1417 |
+
// 'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1418 |
+
// 'return_value' => 'yes',
|
1419 |
+
// 'default' => '',
|
1420 |
+
// 'condition' => [
|
1421 |
+
// 'eael_show_meta' => 'yes',
|
1422 |
+
// 'meta_position' => 'meta-entry-footer',
|
1423 |
+
// 'eael_post_grid_preset_style' => 'three',
|
1424 |
+
// ],
|
1425 |
+
// ]
|
1426 |
+
// );
|
1427 |
+
|
1428 |
+
$wb->add_control(
|
1429 |
+
'eael_show_author_two',
|
1430 |
+
[
|
1431 |
+
'label' => __('Show Author Name', 'essential-addons-for-elementor-lite'),
|
1432 |
+
'type' => Controls_Manager::SWITCHER,
|
1433 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1434 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1435 |
+
'return_value' => 'yes',
|
1436 |
+
'default' => '',
|
1437 |
+
'condition' => [
|
1438 |
+
'eael_show_meta' => 'yes',
|
1439 |
+
'eael_post_grid_preset_style' => 'two',
|
1440 |
+
],
|
1441 |
+
]
|
1442 |
+
);
|
1443 |
+
|
1444 |
+
$wb->add_control(
|
1445 |
+
'eael_show_author_three',
|
1446 |
+
[
|
1447 |
+
'label' => __('Show Author Name', 'essential-addons-for-elementor-lite'),
|
1448 |
+
'type' => Controls_Manager::SWITCHER,
|
1449 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1450 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1451 |
+
'return_value' => 'yes',
|
1452 |
+
'default' => 'yes',
|
1453 |
+
'condition' => [
|
1454 |
+
'eael_show_meta' => 'yes',
|
1455 |
+
'meta_position' => 'meta-entry-footer',
|
1456 |
+
'eael_post_grid_preset_style' => 'three',
|
1457 |
+
],
|
1458 |
+
]
|
1459 |
+
);
|
1460 |
+
}
|
1461 |
+
|
1462 |
+
if ( 'eael-post-grid' !== $wb->get_name() ){
|
1463 |
+
$wb->add_control(
|
1464 |
+
'eael_show_avatar',
|
1465 |
+
[
|
1466 |
+
'label' => __('Show Avatar', 'essential-addons-for-elementor-lite'),
|
1467 |
+
'type' => Controls_Manager::SWITCHER,
|
1468 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1469 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1470 |
+
'return_value' => 'yes',
|
1471 |
+
'default' => 'yes',
|
1472 |
+
'condition' => [
|
1473 |
+
'meta_position' => 'meta-entry-footer',
|
1474 |
+
'eael_show_meta' => 'yes',
|
1475 |
+
],
|
1476 |
+
]
|
1477 |
+
);
|
1478 |
+
|
1479 |
+
$wb->add_control(
|
1480 |
+
'eael_show_author',
|
1481 |
+
[
|
1482 |
+
'label' => __('Show Author Name', 'essential-addons-for-elementor-lite'),
|
1483 |
+
'type' => Controls_Manager::SWITCHER,
|
1484 |
+
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
1485 |
+
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
1486 |
+
'return_value' => 'yes',
|
1487 |
+
'default' => 'yes',
|
1488 |
+
'condition' => [
|
1489 |
+
'eael_show_meta' => 'yes',
|
1490 |
+
],
|
1491 |
+
]
|
1492 |
+
);
|
1493 |
+
}
|
1494 |
|
1495 |
$wb->add_control(
|
1496 |
'eael_show_date',
|
includes/Traits/Login_Registration.php
CHANGED
@@ -451,7 +451,7 @@ trait Login_Registration {
|
|
451 |
self::$email_options['subject'] = wp_strip_all_tags( $settings['reg_email_subject'] );
|
452 |
}
|
453 |
if ( isset( $settings['reg_email_message'] ) ) {
|
454 |
-
self::$email_options['message'] =
|
455 |
}
|
456 |
if ( isset( $settings['reg_email_content_type'] ) ) {
|
457 |
self::$email_options['headers'] = 'Content-Type: text/' . wp_strip_all_tags( $settings['reg_email_content_type'] ) . '; charset=UTF-8' . "\r\n";
|
@@ -464,7 +464,7 @@ trait Login_Registration {
|
|
464 |
self::$email_options['admin_subject'] = wp_strip_all_tags( $settings['reg_admin_email_subject'] );
|
465 |
}
|
466 |
if ( isset( $settings['reg_admin_email_message'] ) ) {
|
467 |
-
self::$email_options['admin_message'] =
|
468 |
}
|
469 |
if ( isset( $settings['reg_admin_email_content_type'] ) ) {
|
470 |
self::$email_options['admin_headers'] = 'Content-Type: text/' . wp_strip_all_tags( $settings['reg_admin_email_content_type'] ) . '; charset=UTF-8' . "\r\n";
|
451 |
self::$email_options['subject'] = wp_strip_all_tags( $settings['reg_email_subject'] );
|
452 |
}
|
453 |
if ( isset( $settings['reg_email_message'] ) ) {
|
454 |
+
self::$email_options['message'] = Helper::eael_wp_kses( $settings['reg_email_message'] );
|
455 |
}
|
456 |
if ( isset( $settings['reg_email_content_type'] ) ) {
|
457 |
self::$email_options['headers'] = 'Content-Type: text/' . wp_strip_all_tags( $settings['reg_email_content_type'] ) . '; charset=UTF-8' . "\r\n";
|
464 |
self::$email_options['admin_subject'] = wp_strip_all_tags( $settings['reg_admin_email_subject'] );
|
465 |
}
|
466 |
if ( isset( $settings['reg_admin_email_message'] ) ) {
|
467 |
+
self::$email_options['admin_message'] = Helper::eael_wp_kses( $settings['reg_admin_email_message'] );
|
468 |
}
|
469 |
if ( isset( $settings['reg_admin_email_content_type'] ) ) {
|
470 |
self::$email_options['admin_headers'] = 'Content-Type: text/' . wp_strip_all_tags( $settings['reg_admin_email_content_type'] ) . '; charset=UTF-8' . "\r\n";
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -6,7 +6,7 @@ msgstr ""
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"POT-Creation-Date: 2022-10-
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
msgid "Next"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1122, ../includes/Elements/Creative_Button.php:456, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1171, ../includes/Elements/Event_Calendar.php:1303, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:312, ../includes/Elements/Filterable_Gallery.php:779, ../includes/Elements/Filterable_Gallery.php:1311, ../includes/Elements/Filterable_Gallery.php:1694, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:681, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2218, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:1214, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:4296, ../includes/Elements/Login_Register.php:4645, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:
|
138 |
msgid "Right"
|
139 |
msgstr ""
|
140 |
|
@@ -761,11 +761,11 @@ msgstr ""
|
|
761 |
msgid "Width"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:468, ../includes/Elements/Adv_Accordion.php:659, ../includes/Elements/Adv_Accordion.php:720, ../includes/Elements/Adv_Accordion.php:782, ../includes/Elements/Adv_Accordion.php:865, ../includes/Elements/Adv_Accordion.php:989, ../includes/Elements/Adv_Accordion.php:1036, ../includes/Elements/Adv_Accordion.php:1083, ../includes/Elements/Adv_Tabs.php:407, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Adv_Tabs.php:831, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:624, ../includes/Elements/Countdown.php:703, ../includes/Elements/Cta_Box.php:557, ../includes/Elements/Cta_Box.php:885, ../includes/Elements/Cta_Box.php:1244, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:966, ../includes/Elements/Event_Calendar.php:1033, ../includes/Elements/Event_Calendar.php:1087, ../includes/Elements/Event_Calendar.php:1759, ../includes/Elements/Event_Calendar.php:1830, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:988, ../includes/Elements/Filterable_Gallery.php:1054, ../includes/Elements/Filterable_Gallery.php:1134, ../includes/Elements/Filterable_Gallery.php:1281, ../includes/Elements/Filterable_Gallery.php:1338, ../includes/Elements/Filterable_Gallery.php:1557, ../includes/Elements/Filterable_Gallery.php:1832, ../includes/Elements/Filterable_Gallery.php:1893, ../includes/Elements/Filterable_Gallery.php:2414, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Elements/Flip_Box.php:995, ../includes/Elements/Flip_Box.php:1109, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:879, ../includes/Elements/GravityForms.php:943, ../includes/Elements/GravityForms.php:1678, ../includes/Elements/GravityForms.php:1884, ../includes/Elements/GravityForms.php:2056, ../includes/Elements/GravityForms.php:2290, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:358, ../includes/Elements/Interactive_Circle.php:516, ../includes/Elements/Interactive_Circle.php:743, ../includes/Elements/Login_Register.php:3504, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1821, ../includes/Elements/Pricing_Table.php:1989, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Simple_Menu.php:664, ../includes/Elements/Simple_Menu.php:737, ../includes/Elements/Team_Member.php:440, ../includes/Elements/Team_Member.php:528, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:443, ../includes/Elements/Tooltip.php:487, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/Twitter_Feed.php:732, ../includes/Elements/Twitter_Feed.php:1049, ../includes/Elements/Twitter_Feed.php:1203, ../includes/Elements/Woo_Checkout.php:1714, ../includes/Elements/Woo_Checkout.php:1993, ../includes/Elements/Woo_Product_Carousel.php:2254, ../includes/Elements/Woo_Product_Carousel.php:2688, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:577, ../includes/Traits/Controls.php:
|
765 |
msgid "Border"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:475, ../includes/Elements/Adv_Accordion.php:666, ../includes/Elements/Adv_Accordion.php:727, ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Tabs.php:415, ../includes/Elements/Adv_Tabs.php:608, ../includes/Elements/Adv_Tabs.php:675, ../includes/Elements/Adv_Tabs.php:744, ../includes/Elements/Adv_Tabs.php:838, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:634, ../includes/Elements/Countdown.php:711, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1252, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1041, ../includes/Elements/Event_Calendar.php:1095, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1499, ../includes/Elements/Event_Calendar.php:1767, ../includes/Elements/Event_Calendar.php:1838, ../includes/Elements/Facebook_Feed.php:550, ../includes/Elements/Facebook_Feed.php:610, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:641, ../includes/Elements/Filterable_Gallery.php:883, ../includes/Elements/Filterable_Gallery.php:996, ../includes/Elements/Filterable_Gallery.php:1062, ../includes/Elements/Filterable_Gallery.php:1142, ../includes/Elements/Filterable_Gallery.php:1346, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:1901, ../includes/Elements/Filterable_Gallery.php:2072, ../includes/Elements/Filterable_Gallery.php:2203, ../includes/Elements/Filterable_Gallery.php:2338, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1018, ../includes/Elements/Flip_Box.php:1132, ../includes/Elements/Flip_Box.php:1393, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:890, ../includes/Elements/GravityForms.php:1360, ../includes/Elements/GravityForms.php:1556, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/GravityForms.php:1894, ../includes/Elements/GravityForms.php:2066, ../includes/Elements/GravityForms.php:2300, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1215, ../includes/Elements/Login_Register.php:2301, ../includes/Elements/Login_Register.php:2536, ../includes/Elements/Login_Register.php:2714, ../includes/Elements/Login_Register.php:2870, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3104, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3369, ../includes/Elements/Login_Register.php:3406, ../includes/Elements/Login_Register.php:3520, ../includes/Elements/Login_Register.php:4337, ../includes/Elements/Login_Register.php:4374, ../includes/Elements/Login_Register.php:4687, ../includes/Elements/Login_Register.php:4724, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Post_Timeline.php:183, ../includes/Elements/Post_Timeline.php:266, ../includes/Elements/Post_Timeline.php:564, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1592, ../includes/Elements/Pricing_Table.php:1844, ../includes/Elements/Pricing_Table.php:1997, ../includes/Elements/Product_Grid.php:969, ../includes/Elements/Product_Grid.php:2021, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Product_Grid.php:2717, ../includes/Elements/Product_Grid.php:2916, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Simple_Menu.php:672, ../includes/Elements/Sticky_Video.php:607, ../includes/Elements/Team_Member.php:448, ../includes/Elements/Team_Member.php:547, ../includes/Elements/Team_Member.php:798, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:504, ../includes/Elements/Twitter_Feed.php:650, ../includes/Elements/Twitter_Feed.php:743, ../includes/Elements/Twitter_Feed.php:1217, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1323, ../includes/Elements/Woo_Cart.php:1495, ../includes/Elements/Woo_Cart.php:1751, ../includes/Elements/Woo_Cart.php:1890, ../includes/Elements/Woo_Cart.php:2014, ../includes/Elements/Woo_Cart.php:2168, ../includes/Elements/Woo_Cart.php:2373, ../includes/Elements/Woo_Cart.php:2459, ../includes/Elements/Woo_Cart.php:2543, ../includes/Elements/Woo_Checkout.php:783, ../includes/Elements/Woo_Checkout.php:932, ../includes/Elements/Woo_Checkout.php:1128, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1581, ../includes/Elements/Woo_Checkout.php:1723, ../includes/Elements/Woo_Checkout.php:1931, ../includes/Elements/Woo_Checkout.php:2139, ../includes/Elements/Woo_Checkout.php:2341, ../includes/Elements/Woo_Checkout.php:2521, ../includes/Elements/Woo_Checkout.php:2801, ../includes/Elements/Woo_Product_Carousel.php:1019, ../includes/Elements/Woo_Product_Carousel.php:1423, ../includes/Elements/Woo_Product_Carousel.php:1826, ../includes/Elements/Woo_Product_Carousel.php:2022, ../includes/Elements/Woo_Product_Carousel.php:2054, ../includes/Elements/Woo_Product_Carousel.php:2264, ../includes/Elements/Woo_Product_Carousel.php:2387, ../includes/Elements/Woo_Product_Carousel.php:2511, ../includes/Elements/Woo_Product_Carousel.php:2698, ../includes/Elements/Woo_Product_Gallery.php:688, ../includes/Elements/Woo_Product_Gallery.php:1705, ../includes/Elements/Woo_Product_Gallery.php:2065, ../includes/Elements/Woo_Product_Gallery.php:2264, ../includes/Elements/Woo_Product_Gallery.php:2296, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:600, ../includes/Extensions/Table_of_Content.php:815, ../includes/Traits/Controls.php:
|
769 |
msgid "Border Radius"
|
770 |
msgstr ""
|
771 |
|
@@ -777,7 +777,7 @@ msgstr ""
|
|
777 |
msgid "Head"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:895, ../includes/Elements/Event_Calendar.php:925, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1248, ../includes/Elements/Event_Calendar.php:1491, ../includes/Elements/Event_Calendar.php:1554, ../includes/Elements/Event_Calendar.php:1583, ../includes/Elements/Event_Calendar.php:1651, ../includes/Elements/Event_Calendar.php:1809, ../includes/Elements/Filterable_Gallery.php:1968, ../includes/Elements/Filterable_Gallery.php:2015, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2108, ../includes/Elements/Filterable_Gallery.php:2402, ../includes/Elements/Filterable_Gallery.php:2562, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:529, ../includes/Elements/GravityForms.php:560, ../includes/Elements/GravityForms.php:601, ../includes/Elements/GravityForms.php:644, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1046, ../includes/Elements/GravityForms.php:1182, ../includes/Elements/GravityForms.php:1772, ../includes/Elements/GravityForms.php:1792, ../includes/Elements/GravityForms.php:1827, ../includes/Elements/GravityForms.php:2172, ../includes/Elements/GravityForms.php:2393, ../includes/Elements/GravityForms.php:2586, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:
|
781 |
msgid "Typography"
|
782 |
msgstr ""
|
783 |
|
@@ -785,19 +785,19 @@ msgstr ""
|
|
785 |
msgid "Text Alignment"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1114, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1295, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:304, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:673, ../includes/Elements/GravityForms.php:1950, ../includes/Elements/GravityForms.php:2210, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:1210, ../includes/Elements/Login_Register.php:1262, ../includes/Elements/Login_Register.php:3313, ../includes/Elements/Login_Register.php:4288, ../includes/Elements/Login_Register.php:4637, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:
|
789 |
msgid "Left"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1118, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1167, ../includes/Elements/Event_Calendar.php:1299, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:677, ../includes/Elements/GravityForms.php:1954, ../includes/Elements/GravityForms.php:2214, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:3317, ../includes/Elements/Login_Register.php:4270, ../includes/Elements/Login_Register.php:4292, ../includes/Elements/Login_Register.php:4598, ../includes/Elements/Login_Register.php:4618, ../includes/Elements/Login_Register.php:4641, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:
|
793 |
msgid "Center"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:695, ../includes/Elements/Adv_Accordion.php:756, ../includes/Elements/Adv_Accordion.php:824, ../includes/Elements/Adv_Tabs.php:574, ../includes/Elements/Adv_Tabs.php:641, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1193, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:811, ../includes/Elements/Cta_Box.php:826, ../includes/Elements/Cta_Box.php:997, ../includes/Elements/Cta_Box.php:1012, ../includes/Elements/Cta_Box.php:1204, ../includes/Elements/Cta_Box.php:1219, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Cta_Box.php:1288, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1409, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Filterable_Gallery.php:963, ../includes/Elements/Filterable_Gallery.php:1029, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Filterable_Gallery.php:2709, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:516, ../includes/Elements/GravityForms.php:547, ../includes/Elements/GravityForms.php:586, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:716, ../includes/Elements/GravityForms.php:980, ../includes/Elements/GravityForms.php:1033, ../includes/Elements/GravityForms.php:1220, ../includes/Elements/GravityForms.php:1663, ../includes/Elements/GravityForms.php:1739, ../includes/Elements/GravityForms.php:2041, ../includes/Elements/GravityForms.php:2103, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2364, ../includes/Elements/GravityForms.php:2438, ../includes/Elements/GravityForms.php:2573, ../includes/Elements/Info_Box.php:1237, ../includes/Elements/Info_Box.php:1284, ../includes/Elements/Interactive_Circle.php:489, ../includes/Elements/Interactive_Circle.php:549, ../includes/Elements/Interactive_Circle.php:617, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Login_Register.php:3342, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/Login_Register.php:3922, ../includes/Elements/Login_Register.php:4317, ../includes/Elements/Login_Register.php:4354, ../includes/Elements/Login_Register.php:4667, ../includes/Elements/Login_Register.php:4704, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1948, ../includes/Elements/Pricing_Table.php:2018, ../includes/Elements/Product_Grid.php:2252, ../includes/Elements/Product_Grid.php:2290, ../includes/Elements/Product_Grid.php:2334, ../includes/Elements/Simple_Menu.php:406, ../includes/Elements/Simple_Menu.php:440, ../includes/Elements/Simple_Menu.php:474, ../includes/Elements/Simple_Menu.php:532, ../includes/Elements/Simple_Menu.php:566, ../includes/Elements/Simple_Menu.php:892, ../includes/Elements/Simple_Menu.php:1019, ../includes/Elements/Simple_Menu.php:1203, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/Tooltip.php:421, ../includes/Elements/Tooltip.php:465, ../includes/Elements/Tooltip.php:639, ../includes/Elements/Twitter_Feed.php:1186, ../includes/Elements/Twitter_Feed.php:1381, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1254, ../includes/Elements/Woo_Cart.php:1533, ../includes/Elements/Woo_Cart.php:1824, ../includes/Elements/Woo_Cart.php:1862, ../includes/Elements/Woo_Cart.php:1950, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2138, ../includes/Elements/Woo_Cart.php:2333, ../includes/Elements/Woo_Cart.php:2416, ../includes/Elements/Woo_Cart.php:2503, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:658, ../includes/Extensions/Table_of_Content.php:973, ../includes/Extensions/Table_of_Content.php:996, ../includes/Extensions/Table_of_Content.php:1022, ../includes/Traits/Controls.php:
|
797 |
msgid "Text Color"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Accordion.php:1069, ../includes/Elements/Adv_Tabs.php:555, ../includes/Elements/Adv_Tabs.php:771, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:829, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:901, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:973, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1045, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:384, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:477, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:840, ../includes/Elements/Cta_Box.php:856, ../includes/Elements/Cta_Box.php:1026, ../includes/Elements/Cta_Box.php:1043, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1421, ../includes/Elements/Filterable_Gallery.php:838, ../includes/Elements/Filterable_Gallery.php:975, ../includes/Elements/Filterable_Gallery.php:1041, ../includes/Elements/Filterable_Gallery.php:1187, ../includes/Elements/Filterable_Gallery.php:1377, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1512, ../includes/Elements/Filterable_Gallery.php:1528, ../includes/Elements/Filterable_Gallery.php:1730, ../includes/Elements/Filterable_Gallery.php:1868, ../includes/Elements/Filterable_Gallery.php:2498, ../includes/Elements/Filterable_Gallery.php:2693, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:704, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1649, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1848, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2089, ../includes/Elements/GravityForms.php:2265, ../includes/Elements/GravityForms.php:2352, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1250, ../includes/Elements/Info_Box.php:1297, ../includes/Elements/Interactive_Circle.php:478, ../includes/Elements/Interactive_Circle.php:535, ../includes/Elements/Interactive_Circle.php:603, ../includes/Elements/Interactive_Circle.php:685, ../includes/Elements/Login_Register.php:2316, ../includes/Elements/Login_Register.php:2449, ../includes/Elements/Login_Register.php:2551, ../includes/Elements/Login_Register.php:2729, ../includes/Elements/Login_Register.php:3085, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3356, ../includes/Elements/Login_Register.php:3394, ../includes/Elements/Login_Register.php:3491, ../includes/Elements/Login_Register.php:4049, ../includes/Elements/Login_Register.php:4325, ../includes/Elements/Login_Register.php:4362, ../includes/Elements/Login_Register.php:4675, ../includes/Elements/Login_Register.php:4712, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:
|
801 |
msgid "Background Color"
|
802 |
msgstr ""
|
803 |
|
@@ -805,7 +805,7 @@ msgstr ""
|
|
805 |
msgid "Cell Border"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:445, ../includes/Elements/Adv_Accordion.php:599, ../includes/Elements/Adv_Accordion.php:842, ../includes/Elements/Adv_Tabs.php:384, ../includes/Elements/Adv_Tabs.php:529, ../includes/Elements/Adv_Tabs.php:808, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:696, ../includes/Elements/Countdown.php:690, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:1168, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:680, ../includes/Elements/Facebook_Feed.php:706, ../includes/Elements/Facebook_Feed.php:778, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:598, ../includes/Elements/Filterable_Gallery.php:850, ../includes/Elements/Filterable_Gallery.php:927, ../includes/Elements/Filterable_Gallery.php:1109, ../includes/Elements/Filterable_Gallery.php:1199, ../includes/Elements/Filterable_Gallery.php:1543, ../includes/Elements/Filterable_Gallery.php:1754, ../includes/Elements/Filterable_Gallery.php:2617, ../includes/Elements/Flip_Box.php:1006, ../includes/Elements/Flip_Box.php:1120, ../includes/Elements/Flip_Box.php:1356, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:766, ../includes/Elements/GravityForms.php:1387, ../includes/Elements/GravityForms.php:1583, ../includes/Elements/GravityForms.php:1702, ../includes/Elements/GravityForms.php:1906, ../includes/Elements/GravityForms.php:2135, ../includes/Elements/GravityForms.php:2312, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:335, ../includes/Elements/Interactive_Circle.php:720, ../includes/Elements/Login_Register.php:2279, ../includes/Elements/Login_Register.php:2848, ../includes/Elements/Login_Register.php:2987, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3151, ../includes/Elements/Login_Register.php:3253, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3451, ../includes/Elements/Login_Register.php:4230, ../includes/Elements/Login_Register.php:4558, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Post_Timeline.php:168, ../includes/Elements/Post_Timeline.php:552, ../includes/Elements/Pricing_Table.php:770, ../includes/Elements/Pricing_Table.php:1570, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Product_Grid.php:832, ../includes/Elements/Product_Grid.php:1083, ../includes/Elements/Product_Grid.php:1495, ../includes/Elements/Simple_Menu.php:351, ../includes/Elements/Simple_Menu.php:511, ../includes/Elements/Simple_Menu.php:684, ../includes/Elements/Simple_Menu.php:1148, ../includes/Elements/Team_Member.php:514, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:352, ../includes/Elements/Tooltip.php:606, ../includes/Elements/Twitter_Feed.php:625, ../includes/Elements/Twitter_Feed.php:684, ../includes/Elements/Twitter_Feed.php:717, ../includes/Elements/Twitter_Feed.php:1289, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1208, ../includes/Elements/Woo_Cart.php:1763, ../includes/Elements/Woo_Cart.php:1910, ../includes/Elements/Woo_Cart.php:2027, ../includes/Elements/Woo_Cart.php:2181, ../includes/Elements/Woo_Cart.php:2283, ../includes/Elements/Woo_Checkout.php:764, ../includes/Elements/Woo_Checkout.php:1356, ../includes/Elements/Woo_Checkout.php:1403, ../includes/Elements/Woo_Checkout.php:1601, ../includes/Elements/Woo_Checkout.php:1750, ../includes/Elements/Woo_Checkout.php:1779, ../includes/Elements/Woo_Checkout.php:1951, ../includes/Elements/Woo_Checkout.php:2166, ../includes/Elements/Woo_Checkout.php:2502, ../includes/Elements/Woo_Checkout.php:2833, ../includes/Elements/Woo_Product_Carousel.php:1041, ../includes/Elements/Woo_Product_Carousel.php:2276, ../includes/Elements/Woo_Product_Gallery.php:603, ../includes/Elements/Woo_Product_Gallery.php:707, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1231, ../includes/Elements/Woo_Product_Gallery.php:1293, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:680, ../includes/Extensions/Table_of_Content.php:868, ../includes/Traits/Controls.php:
|
809 |
msgid "Padding"
|
810 |
msgstr ""
|
811 |
|
@@ -825,7 +825,7 @@ msgstr ""
|
|
825 |
msgid "Highlight"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:196, ../includes/Elements/Countdown.php:486, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:230, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:435, ../includes/Elements/Flip_Box.php:654, ../includes/Elements/GravityForms.php:1060, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1119, ../includes/Elements/Interactive_Circle.php:285, ../includes/Elements/Post_Grid.php:
|
829 |
msgid "None"
|
830 |
msgstr ""
|
831 |
|
@@ -861,23 +861,23 @@ msgstr ""
|
|
861 |
msgid "Margin Bottom"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1159, ../includes/Elements/Event_Calendar.php:1291, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:669, ../includes/Elements/GravityForms.php:1946, ../includes/Elements/GravityForms.php:2206, ../includes/Elements/Login_Register.php:4284, ../includes/Elements/Login_Register.php:4633, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:
|
865 |
msgid "Alignment"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:456, ../includes/Elements/Adv_Accordion.php:610, ../includes/Elements/Adv_Accordion.php:853, ../includes/Elements/Adv_Tabs.php:395, ../includes/Elements/Adv_Tabs.php:540, ../includes/Elements/Adv_Tabs.php:819, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1172, ../includes/Elements/Cta_Box.php:544, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:1180, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:862, ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/Filterable_Gallery.php:1121, ../includes/Elements/Filterable_Gallery.php:1766, ../includes/Elements/Filterable_Gallery.php:2215, ../includes/Elements/Filterable_Gallery.php:2658, ../includes/Elements/Flip_Box.php:1344, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1375, ../includes/Elements/GravityForms.php:1571, ../includes/Elements/GravityForms.php:1920, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1378, ../includes/Elements/Interactive_Circle.php:346, ../includes/Elements/Interactive_Circle.php:731, ../includes/Elements/Login_Register.php:2264, ../includes/Elements/Login_Register.php:2833, ../includes/Elements/Login_Register.php:2972, ../includes/Elements/Login_Register.php:3045, ../includes/Elements/Login_Register.php:3136, ../includes/Elements/Login_Register.php:3238, ../includes/Elements/Login_Register.php:3274, ../includes/Elements/Login_Register.php:3436, ../includes/Elements/Login_Register.php:4215, ../includes/Elements/Login_Register.php:4462, ../includes/Elements/Login_Register.php:4543, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:
|
869 |
msgid "Margin"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:953, ../includes/Elements/Adv_Tabs.php:551, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:591, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:806, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:936, ../includes/Elements/Filterable_Gallery.php:958, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:2487, ../includes/Elements/Flip_Box.php:1338, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:697, ../includes/Elements/GravityForms.php:1287, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1642, ../includes/Elements/GravityForms.php:2020, ../includes/Elements/GravityForms.php:2258, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1231, ../includes/Elements/Info_Box.php:1344, ../includes/Elements/Interactive_Circle.php:474, ../includes/Elements/Login_Register.php:3339, ../includes/Elements/Login_Register.php:4314, ../includes/Elements/Login_Register.php:4489, ../includes/Elements/Login_Register.php:4664, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1943, ../includes/Elements/Product_Grid.php:887, ../includes/Elements/Product_Grid.php:1534, ../includes/Elements/Product_Grid.php:1952, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Product_Grid.php:2681, ../includes/Elements/Team_Member.php:744, ../includes/Elements/Tooltip.php:406, ../includes/Elements/Twitter_Feed.php:1159, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1806, ../includes/Elements/Woo_Cart.php:2078, ../includes/Elements/Woo_Checkout.php:1036, ../includes/Elements/Woo_Checkout.php:1079, ../includes/Elements/Woo_Checkout.php:1222, ../includes/Elements/Woo_Checkout.php:1493, ../includes/Elements/Woo_Checkout.php:1843, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2559, ../includes/Elements/Woo_Checkout.php:2713, ../includes/Elements/Woo_Product_Carousel.php:947, ../includes/Elements/Woo_Product_Carousel.php:1385, ../includes/Elements/Woo_Product_Carousel.php:1790, ../includes/Elements/Woo_Product_Carousel.php:2234, ../includes/Elements/Woo_Product_Carousel.php:2656, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1021, ../includes/Elements/Woo_Product_Gallery.php:1316, ../includes/Elements/Woo_Product_Gallery.php:1676, ../includes/Elements/Woo_Product_Gallery.php:2029, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:966, ../includes/Traits/Controls.php:
|
873 |
msgid "Normal"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:618, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:648, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:992, ../includes/Elements/Cta_Box.php:1268, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2682, ../includes/Elements/Flip_Box.php:1445, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1718, ../includes/Elements/GravityForms.php:2082, ../includes/Elements/GravityForms.php:2345, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Info_Box.php:1454, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:531, ../includes/Elements/Login_Register.php:4351, ../includes/Elements/Login_Register.php:4701, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:424, ../includes/Elements/Pricing_Table.php:2013, ../includes/Elements/Product_Grid.php:937, ../includes/Elements/Product_Grid.php:1610, ../includes/Elements/Product_Grid.php:2061, ../includes/Elements/Product_Grid.php:2285, ../includes/Elements/Product_Grid.php:2732, ../includes/Elements/Simple_Menu.php:433, ../includes/Elements/Simple_Menu.php:559, ../includes/Elements/Simple_Menu.php:1012, ../includes/Elements/Simple_Menu.php:1321, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Twitter_Feed.php:1354, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1844, ../includes/Elements/Woo_Cart.php:2119, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1096, ../includes/Elements/Woo_Checkout.php:1238, ../includes/Elements/Woo_Checkout.php:1533, ../includes/Elements/Woo_Checkout.php:1883, ../includes/Elements/Woo_Checkout.php:2319, ../includes/Elements/Woo_Checkout.php:2753, ../includes/Elements/Woo_Product_Carousel.php:987, ../includes/Elements/Woo_Product_Carousel.php:1467, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:2297, ../includes/Elements/Woo_Product_Carousel.php:2712, ../includes/Elements/Woo_Product_Gallery.php:656, ../includes/Elements/Woo_Product_Gallery.php:1089, ../includes/Elements/Woo_Product_Gallery.php:1350, ../includes/Elements/Woo_Product_Gallery.php:1726, ../includes/Elements/Woo_Product_Gallery.php:2080, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:989, ../includes/Traits/Controls.php:
|
877 |
msgid "Hover"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:610, ../includes/Elements/Content_Ticker.php:667, ../includes/Elements/Cta_Box.php:612, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:695, ../includes/Elements/Cta_Box.php:1377, ../includes/Elements/Cta_Box.php:1393, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:903, ../includes/Elements/Event_Calendar.php:943, ../includes/Elements/Event_Calendar.php:1010, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Event_Calendar.php:1222, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Event_Calendar.php:1365, ../includes/Elements/Event_Calendar.php:1731, ../includes/Elements/Facebook_Feed.php:844, ../includes/Elements/Facebook_Feed.php:882, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:970, ../includes/Elements/Facebook_Feed.php:1008, ../includes/Elements/Facebook_Feed.php:1046, ../includes/Elements/Facebook_Feed.php:1099, ../includes/Elements/Facebook_Feed.php:1137, ../includes/Elements/Facebook_Feed.php:1175, ../includes/Elements/Facebook_Feed.php:1207, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:764, ../includes/Elements/Feature_List.php:798, ../includes/Elements/Filterable_Gallery.php:1220, ../includes/Elements/Filterable_Gallery.php:1260, ../includes/Elements/Filterable_Gallery.php:1582, ../includes/Elements/Filterable_Gallery.php:1597, ../includes/Elements/Filterable_Gallery.php:1642, ../includes/Elements/Filterable_Gallery.php:1657, ../includes/Elements/Filterable_Gallery.php:1742, ../includes/Elements/Filterable_Gallery.php:1880, ../includes/Elements/Filterable_Gallery.php:1956, ../includes/Elements/Filterable_Gallery.php:1992, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2180, ../includes/Elements/Filterable_Gallery.php:2367, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1065, ../includes/Elements/Flip_Box.php:1193, ../includes/Elements/Flip_Box.php:1224, ../includes/Elements/Flip_Box.php:1262, ../includes/Elements/Flip_Box.php:1294, ../includes/Elements/Flip_Box.php:1368, ../includes/Elements/Flip_Box.php:1451, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1191, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/GravityForms.php:1493, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/GravityForms.php:1800, ../includes/Elements/GravityForms.php:1836, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1358, ../includes/Elements/Info_Box.php:1434, ../includes/Elements/Interactive_Circle.php:388, ../includes/Elements/Login_Register.php:3075, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3580, ../includes/Elements/Login_Register.php:4038, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:
|
881 |
msgid "Color"
|
882 |
msgstr ""
|
883 |
|
@@ -1057,7 +1057,7 @@ msgstr ""
|
|
1057 |
msgid "Distance"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: ../includes/Elements/Adv_Accordion.php:645, ../includes/Elements/Adv_Accordion.php:706, ../includes/Elements/Adv_Accordion.php:768, ../includes/Elements/Adv_Tabs.php:585, ../includes/Elements/Adv_Tabs.php:652, ../includes/Elements/Adv_Tabs.php:719, ../includes/Elements/Cta_Box.php:975, ../includes/Elements/Cta_Box.php:1106, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1630, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1004, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Interactive_Circle.php:500, ../includes/Elements/Interactive_Circle.php:562, ../includes/Elements/Interactive_Circle.php:628, ../includes/Elements/Post_Grid.php:
|
1061 |
msgid "Icon Color"
|
1062 |
msgstr ""
|
1063 |
|
@@ -1205,11 +1205,11 @@ msgstr ""
|
|
1205 |
msgid "Show Icon"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:587, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:170, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:380, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Facebook_Feed.php:407, ../includes/Elements/Facebook_Feed.php:422, ../includes/Elements/Facebook_Feed.php:437, ../includes/Elements/Facebook_Feed.php:503, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:291, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:447, ../includes/Elements/Login_Register.php:854, ../includes/Elements/Login_Register.php:1127, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:532, ../includes/Elements/Pricing_Table.php:1682, ../includes/Elements/Product_Grid.php:583, ../includes/Elements/Product_Grid.php:685, ../includes/Elements/Product_Grid.php:1526, ../includes/Elements/Product_Grid.php:2145, ../includes/Elements/Twitter_Feed.php:573, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Cart.php:478, ../includes/Elements/Woo_Cart.php:548, ../includes/Elements/Woo_Cart.php:560, ../includes/Elements/Woo_Cart.php:631, ../includes/Elements/Woo_Cart.php:709, ../includes/Elements/Woo_Cart.php:780, ../includes/Elements/Woo_Cart.php:904, ../includes/Elements/Woo_Cart.php:928, ../includes/Elements/Woo_Cart.php:965, ../includes/Elements/Woo_Cart.php:1009, ../includes/Elements/Woo_Cart.php:1022, ../includes/Elements/Woo_Cart.php:1037, ../includes/Elements/Woo_Cart.php:1052, ../includes/Elements/Woo_Cart.php:1067, ../includes/Elements/Woo_Cart.php:1082, ../includes/Elements/Woo_Cart.php:1097, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:638, ../includes/Elements/Woo_Product_Carousel.php:697, ../includes/Elements/Woo_Product_Gallery.php:530, ../includes/Elements/Woo_Product_Gallery.php:1013, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:591, ../includes/Traits/Controls.php:691, ../includes/Traits/Controls.php:721, ../includes/Traits/Controls.php:1001, ../includes/Traits/Controls.php:1050, ../includes/Traits/Controls.php:1079, ../includes/Traits/Controls.php:1147, ../includes/Traits/Controls.php:1182, ../includes/Traits/Controls.php:1219, ../includes/Traits/Controls.php:
|
1209 |
msgid "Show"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:588, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:171, ../includes/Elements/Cta_Box.php:354, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:381, ../includes/Elements/Facebook_Feed.php:393, ../includes/Elements/Facebook_Feed.php:408, ../includes/Elements/Facebook_Feed.php:423, ../includes/Elements/Facebook_Feed.php:438, ../includes/Elements/Facebook_Feed.php:504, ../includes/Elements/Filterable_Gallery.php:292, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:446, ../includes/Elements/Login_Register.php:762, ../includes/Elements/Login_Register.php:853, ../includes/Elements/Login_Register.php:914, ../includes/Elements/Login_Register.php:1036, ../includes/Elements/Login_Register.php:1126, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:121, ../includes/Elements/Pricing_Table.php:533, ../includes/Elements/Pricing_Table.php:1683, ../includes/Elements/Product_Grid.php:584, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:1527, ../includes/Elements/Product_Grid.php:2146, ../includes/Elements/Twitter_Feed.php:574, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:479, ../includes/Elements/Woo_Cart.php:549, ../includes/Elements/Woo_Cart.php:561, ../includes/Elements/Woo_Cart.php:632, ../includes/Elements/Woo_Cart.php:710, ../includes/Elements/Woo_Cart.php:781, ../includes/Elements/Woo_Cart.php:905, ../includes/Elements/Woo_Cart.php:929, ../includes/Elements/Woo_Cart.php:966, ../includes/Elements/Woo_Cart.php:1010, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Cart.php:1038, ../includes/Elements/Woo_Cart.php:1053, ../includes/Elements/Woo_Cart.php:1068, ../includes/Elements/Woo_Cart.php:1083, ../includes/Elements/Woo_Cart.php:1098, ../includes/Elements/Woo_Checkout.php:334, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:639, ../includes/Elements/Woo_Product_Carousel.php:698, ../includes/Elements/Woo_Product_Gallery.php:531, ../includes/Elements/Woo_Product_Gallery.php:1014, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:592, ../includes/Traits/Controls.php:692, ../includes/Traits/Controls.php:722, ../includes/Traits/Controls.php:1002, ../includes/Traits/Controls.php:1051, ../includes/Traits/Controls.php:1080, ../includes/Traits/Controls.php:1148, ../includes/Traits/Controls.php:1183, ../includes/Traits/Controls.php:1220, ../includes/Traits/Controls.php:
|
1213 |
msgid "Hide"
|
1214 |
msgstr ""
|
1215 |
|
@@ -1261,7 +1261,7 @@ msgstr ""
|
|
1261 |
msgid "Size"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:657, ../includes/Elements/Filterable_Gallery.php:2423, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:728, ../includes/Elements/GravityForms.php:1000, ../includes/Elements/Login_Register.php:3225, ../includes/Elements/Login_Register.php:3427, ../includes/Elements/Login_Register.php:4207, ../includes/Elements/Login_Register.php:4535, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:
|
1265 |
msgid "Spacing"
|
1266 |
msgstr ""
|
1267 |
|
@@ -1285,7 +1285,7 @@ msgstr ""
|
|
1285 |
msgid "File Not Found"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:
|
1289 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1373,7 +1373,7 @@ msgstr ""
|
|
1373 |
msgid "Area Spacing"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:443, ../includes/Elements/Pricing_Table.php:859, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:
|
1377 |
msgid "Button Alignment"
|
1378 |
msgstr ""
|
1379 |
|
@@ -1409,7 +1409,7 @@ msgstr ""
|
|
1409 |
msgid "Close Icon"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:680, ../includes/Elements/Countdown.php:868, ../includes/Elements/Countdown.php:940, ../includes/Elements/Countdown.php:1012, ../includes/Elements/Countdown.php:1084, ../includes/Elements/Creative_Button.php:423, ../includes/Elements/Cta_Box.php:1073, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Event_Calendar.php:834, ../includes/Elements/Facebook_Feed.php:803, ../includes/Elements/Filterable_Gallery.php:2725, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1101, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1753, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2376, ../includes/Elements/Interactive_Circle.php:367, ../includes/Elements/Interactive_Circle.php:577, ../includes/Elements/Interactive_Circle.php:647, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2058, ../includes/Elements/Product_Grid.php:802, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:1923, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Product_Grid.php:2314, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2649, ../includes/Elements/Product_Grid.php:2761, ../includes/Elements/Simple_Menu.php:998, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1402, ../includes/Elements/Sticky_Video.php:595, ../includes/Elements/Twitter_Feed.php:823, ../includes/Elements/Twitter_Feed.php:1397, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1510, ../includes/Elements/Woo_Cart.php:1873, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:910, ../includes/Elements/Woo_Checkout.php:1117, ../includes/Elements/Woo_Checkout.php:1564, ../includes/Elements/Woo_Checkout.php:1914, ../includes/Elements/Woo_Checkout.php:2031, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2308, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2672, ../includes/Elements/Woo_Checkout.php:2784, ../includes/Elements/Woo_Product_Carousel.php:992, ../includes/Elements/Woo_Product_Carousel.php:1370, ../includes/Elements/Woo_Product_Carousel.php:1494, ../includes/Elements/Woo_Product_Carousel.php:1662, ../includes/Elements/Woo_Product_Carousel.php:1757, ../includes/Elements/Woo_Product_Carousel.php:1871, ../includes/Elements/Woo_Product_Carousel.php:2316, ../includes/Elements/Woo_Product_Carousel.php:2743, ../includes/Elements/Woo_Product_Gallery.php:661, ../includes/Elements/Woo_Product_Gallery.php:1135, ../includes/Elements/Woo_Product_Gallery.php:1377, ../includes/Elements/Woo_Product_Gallery.php:1415, ../includes/Elements/Woo_Product_Gallery.php:1901, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2109, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:
|
1413 |
msgid "Border Color"
|
1414 |
msgstr ""
|
1415 |
|
@@ -1485,7 +1485,7 @@ msgstr ""
|
|
1485 |
msgid "Form Alignment"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:735, ../includes/Elements/Cta_Box.php:1158, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:760, ../includes/Elements/Login_Register.php:912, ../includes/Elements/Login_Register.php:1034, ../includes/Elements/Login_Register.php:1729, ../includes/Elements/Login_Register.php:2158, ../includes/Elements/Login_Register.php:2340, ../includes/Elements/Login_Register.php:2601, ../includes/Elements/Login_Register.php:2745, ../includes/Elements/Login_Register.php:2895, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3129, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3429, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/Login_Register.php:3506, ../includes/Elements/Login_Register.php:3837, ../includes/Elements/Login_Register.php:3969, ../includes/Elements/Login_Register.php:4209, ../includes/Elements/Login_Register.php:4537, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:484, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:399, ../includes/Elements/Simple_Menu.php:525, ../includes/Elements/Simple_Menu.php:885, ../includes/Elements/Simple_Menu.php:1196, ../includes/Elements/Sticky_Video.php:377, ../includes/Elements/Team_Member.php:403, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:129, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:580, ../includes/Traits/Controls.php:
|
1489 |
msgid "Default"
|
1490 |
msgstr ""
|
1491 |
|
@@ -1625,7 +1625,7 @@ msgstr ""
|
|
1625 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:872, ../includes/Elements/Cta_Box.php:1061, ../includes/Elements/Cta_Box.php:1234, ../includes/Elements/Cta_Box.php:1303, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:822, ../includes/Elements/Event_Calendar.php:954, ../includes/Elements/Event_Calendar.php:1021, ../includes/Elements/Event_Calendar.php:1075, ../includes/Elements/Event_Calendar.php:1187, ../includes/Elements/Event_Calendar.php:1279, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Event_Calendar.php:1743, ../includes/Elements/Event_Calendar.php:1852, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:651, ../includes/Elements/Facebook_Feed.php:664, ../includes/Elements/Facebook_Feed.php:749, ../includes/Elements/Facebook_Feed.php:762, ../includes/Elements/Facebook_Feed.php:833, ../includes/Elements/Facebook_Feed.php:871, ../includes/Elements/Facebook_Feed.php:911, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2284, ../includes/Elements/Flip_Box.php:1381, ../includes/Elements/Flip_Box.php:1465, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1555, ../includes/Elements/Product_Grid.php:1570, ../includes/Elements/Product_Grid.php:1630, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Product_Grid.php:2905, ../includes/Elements/Product_Grid.php:2962, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:777, ../includes/Elements/Team_Member.php:855, ../includes/Elements/Twitter_Feed.php:583, ../includes/Elements/Twitter_Feed.php:835, ../includes/Elements/Woo_Cart.php:1287, ../includes/Elements/Woo_Cart.php:1469, ../includes/Elements/Woo_Cart.php:1701, ../includes/Elements/Woo_Cart.php:2322, ../includes/Elements/Woo_Cart.php:2404, ../includes/Elements/Woo_Cart.php:2492, ../includes/Elements/Woo_Checkout.php:2009, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2097, ../includes/Elements/Woo_Product_Carousel.php:2011, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1053, ../includes/Elements/Woo_Product_Gallery.php:1107, ../includes/Elements/Woo_Product_Gallery.php:1119, ../includes/Elements/Woo_Product_Gallery.php:1165, ../includes/Elements/Woo_Product_Gallery.php:1332, ../includes/Elements/Woo_Product_Gallery.php:1366, ../includes/Elements/Woo_Product_Gallery.php:1404, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_Gallery.php:2310, ../includes/Traits/Controls.php:
|
1629 |
msgid "Background"
|
1630 |
msgstr ""
|
1631 |
|
@@ -2041,11 +2041,11 @@ msgstr ""
|
|
2041 |
msgid "Expire Message"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:604, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Info_Box.php:1350, ../includes/Elements/Post_Grid.php:
|
2045 |
msgid "Title Style"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: ../includes/Elements/Countdown.php:1145, ../includes/Elements/Event_Calendar.php:1562, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1460, ../includes/Elements/Post_Grid.php:
|
2049 |
msgid "Title Color"
|
2050 |
msgstr ""
|
2051 |
|
@@ -2413,7 +2413,7 @@ msgstr ""
|
|
2413 |
msgid "Icon Space"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: ../includes/Elements/Data_Table.php:773, ../includes/Elements/Post_Grid.php:
|
2417 |
msgid "Title Alignment"
|
2418 |
msgstr ""
|
2419 |
|
@@ -3293,7 +3293,7 @@ msgstr ""
|
|
3293 |
msgid "Framed"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: ../includes/Elements/Feature_List.php:308, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1266, ../includes/Elements/Post_Timeline.php:482, ../includes/Elements/Pricing_Table.php:399, ../includes/Elements/Tooltip.php:293, ../includes/Elements/Twitter_Feed.php:546, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:641, ../includes/Traits/Controls.php:
|
3297 |
msgid "Top"
|
3298 |
msgstr ""
|
3299 |
|
@@ -3537,7 +3537,7 @@ msgstr ""
|
|
3537 |
msgid "Gallery Link Button?"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: ../includes/Elements/Filterable_Gallery.php:663, ../includes/Elements/Filterable_Gallery.php:670, ../includes/Elements/Filterable_Gallery.php:2454, ../includes/Elements/Twitter_Feed.php:353, ../includes/Elements/Twitter_Feed.php:1126, ../includes/Traits/Controls.php:
|
3541 |
msgid "Load More Button"
|
3542 |
msgstr ""
|
3543 |
|
@@ -3749,7 +3749,7 @@ msgstr ""
|
|
3749 |
msgid "Middle"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:490, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Twitter_Feed.php:554, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:643, ../includes/Traits/Controls.php:
|
3753 |
msgid "Bottom"
|
3754 |
msgstr ""
|
3755 |
|
@@ -4121,7 +4121,7 @@ msgstr ""
|
|
4121 |
msgid "Show Content"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: ../includes/Elements/Info_Box.php:327, ../includes/Elements/Post_Grid.php:
|
4125 |
msgid "Content Height"
|
4126 |
msgstr ""
|
4127 |
|
@@ -4149,7 +4149,7 @@ msgstr ""
|
|
4149 |
msgid "Image Shape"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: ../includes/Elements/Info_Box.php:615, ../includes/Elements/Info_Box.php:843, ../includes/Elements/Info_Box.php:1076, ../includes/Elements/Interactive_Circle.php:280, ../includes/Elements/Post_Grid.php:
|
4153 |
msgid "Animation"
|
4154 |
msgstr ""
|
4155 |
|
@@ -5617,83 +5617,83 @@ msgstr ""
|
|
5617 |
msgid "Meta Style"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: ../includes/Elements/Post_Grid.php:
|
5621 |
msgid "Meta Position"
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: ../includes/Elements/Post_Grid.php:
|
5625 |
msgid "Color, Typography & Spacing"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: ../includes/Elements/Post_Grid.php:
|
5629 |
msgid "Title Hover Color"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: ../includes/Elements/Post_Grid.php:
|
5633 |
msgid "Excerpt Style"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: ../includes/Elements/Post_Grid.php:
|
5637 |
msgid "Excerpt Color"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: ../includes/Elements/Post_Grid.php:
|
5641 |
msgid "Excerpt Alignment"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: ../includes/Elements/Post_Grid.php:
|
5645 |
msgid "Justified"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: ../includes/Elements/Post_Grid.php:
|
5649 |
msgid "Excerpt Typography"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: ../includes/Elements/Post_Grid.php:
|
5653 |
msgid "Terms Style"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: ../includes/Elements/Post_Grid.php:
|
5657 |
msgid "Terms Color"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: ../includes/Elements/Post_Grid.php:
|
5661 |
msgid "Meta Typography"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: ../includes/Elements/Post_Grid.php:
|
5665 |
msgid "Terms"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: ../includes/Elements/Post_Grid.php:
|
5669 |
msgid "Hover Card Style"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: ../includes/Elements/Post_Grid.php:
|
5673 |
msgid "FadeIn"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: ../includes/Elements/Post_Grid.php:
|
5677 |
msgid "ZoomIn"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: ../includes/Elements/Post_Grid.php:
|
5681 |
msgid "SlideUp"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: ../includes/Elements/Post_Grid.php:
|
5685 |
msgid "Post Hover Icon"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: ../includes/Elements/Post_Grid.php:
|
5689 |
msgid "Cards Radius"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: ../includes/Elements/Post_Grid.php:
|
5693 |
msgid "Icon font size"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: ../includes/Elements/Post_Grid.php:
|
5697 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
5698 |
msgstr ""
|
5699 |
|
@@ -6165,7 +6165,7 @@ msgstr ""
|
|
6165 |
msgid "Products Count"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: ../includes/Elements/Product_Grid.php:407, ../includes/Elements/Woo_Product_Carousel.php:768, ../includes/Elements/Woo_Product_Gallery.php:426, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:317, ../includes/Traits/Controls.php:
|
6169 |
msgid "Offset"
|
6170 |
msgstr ""
|
6171 |
|
@@ -6626,7 +6626,7 @@ msgstr ""
|
|
6626 |
msgid "Sticky"
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2122, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:489, ../includes/Traits/Controls.php:620, ../includes/Traits/Controls.php:637, ../includes/Traits/Controls.php:
|
6630 |
msgid "Position"
|
6631 |
msgstr ""
|
6632 |
|
@@ -7178,11 +7178,11 @@ msgstr ""
|
|
7178 |
msgid "Card Settings"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: ../includes/Elements/Twitter_Feed.php:275, ../includes/Traits/Controls.php:
|
7182 |
msgid "Show Avatar"
|
7183 |
msgstr ""
|
7184 |
|
7185 |
-
#: ../includes/Elements/Twitter_Feed.php:287, ../includes/Traits/Controls.php:
|
7186 |
msgid "Show Date"
|
7187 |
msgstr ""
|
7188 |
|
@@ -7382,7 +7382,7 @@ msgstr ""
|
|
7382 |
msgid "Table Items"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
-
#: ../includes/Elements/Woo_Cart.php:384, ../includes/Elements/Woo_Cart.php:392
|
7386 |
msgid ""
|
7387 |
msgstr ""
|
7388 |
|
@@ -7782,7 +7782,7 @@ msgstr ""
|
|
7782 |
msgid "Max Terms to Show"
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:370, ../includes/Traits/Controls.php:
|
7786 |
msgid "Not Found Message"
|
7787 |
msgstr ""
|
7788 |
|
@@ -8562,55 +8562,63 @@ msgstr ""
|
|
8562 |
msgid "Show Post Terms"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
-
#: ../includes/Traits/Controls.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8566 |
msgid "Show Meta"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
-
#: ../includes/Traits/Controls.php:
|
8570 |
msgid "Entry Header"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
-
#: ../includes/Traits/Controls.php:
|
8574 |
msgid "Entry Footer"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
-
#: ../includes/Traits/Controls.php:
|
8578 |
msgid "Show Author Name"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
-
#: ../includes/Traits/Controls.php:
|
8582 |
msgid "Read More Button Style"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
-
#: ../includes/Traits/Controls.php:
|
8586 |
msgid "Absolute"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
-
#: ../includes/Traits/Controls.php:
|
8590 |
msgid "Horizontal Orientation"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
-
#: ../includes/Traits/Controls.php:
|
8594 |
msgid "Vertical Orientation"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
-
#: ../includes/Traits/Controls.php:
|
8598 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
8599 |
msgstr ""
|
8600 |
|
8601 |
-
#: ../includes/Traits/Controls.php:
|
8602 |
msgid "Table ID"
|
8603 |
msgstr ""
|
8604 |
|
8605 |
-
#: ../includes/Traits/Controls.php:
|
8606 |
msgid "EventON (Pro) "
|
8607 |
msgstr ""
|
8608 |
|
8609 |
-
#: ../includes/Traits/Controls.php:
|
8610 |
msgid "EventON"
|
8611 |
msgstr ""
|
8612 |
|
8613 |
-
#: ../includes/Traits/Controls.php:
|
8614 |
msgid "Style the message when no posts are found."
|
8615 |
msgstr ""
|
8616 |
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"POT-Creation-Date: 2022-10-31 08:17+0000\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;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
134 |
msgid "Next"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:210, ../includes/Elements/Countdown.php:1122, ../includes/Elements/Creative_Button.php:456, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1171, ../includes/Elements/Event_Calendar.php:1303, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:312, ../includes/Elements/Filterable_Gallery.php:779, ../includes/Elements/Filterable_Gallery.php:1311, ../includes/Elements/Filterable_Gallery.php:1694, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:681, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2218, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:1214, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:4296, ../includes/Elements/Login_Register.php:4645, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:651, ../includes/Elements/Post_Grid.php:719, ../includes/Elements/Post_Grid.php:814, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Post_Timeline.php:325, ../includes/Elements/Post_Timeline.php:383, ../includes/Elements/Pricing_Table.php:143, ../includes/Elements/Pricing_Table.php:275, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:701, ../includes/Elements/Pricing_Table.php:847, ../includes/Elements/Pricing_Table.php:872, ../includes/Elements/Product_Grid.php:729, ../includes/Elements/Product_Grid.php:1047, ../includes/Elements/Product_Grid.php:1717, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:203, ../includes/Elements/Simple_Menu.php:384, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:817, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1137, ../includes/Elements/Team_Member.php:415, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:220, ../includes/Elements/Tooltip.php:292, ../includes/Elements/Tooltip.php:388, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:279, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:596, ../includes/Elements/Woo_Cart.php:667, ../includes/Elements/Woo_Cart.php:745, ../includes/Elements/Woo_Cart.php:857, ../includes/Elements/Woo_Cart.php:1627, ../includes/Elements/Woo_Cart.php:2256, ../includes/Elements/Woo_Product_Carousel.php:716, ../includes/Elements/Woo_Product_Carousel.php:835, ../includes/Elements/Woo_Product_Carousel.php:888, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:573, ../includes/Elements/Woo_Product_Gallery.php:1536, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:495, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:1625, ../includes/Traits/Controls.php:1963, ../includes/Traits/Controls.php:2006, ../includes/Traits/Controls.php:2007, ../includes/Traits/Controls.php:2337
|
138 |
msgid "Right"
|
139 |
msgstr ""
|
140 |
|
761 |
msgid "Width"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:468, ../includes/Elements/Adv_Accordion.php:659, ../includes/Elements/Adv_Accordion.php:720, ../includes/Elements/Adv_Accordion.php:782, ../includes/Elements/Adv_Accordion.php:865, ../includes/Elements/Adv_Accordion.php:989, ../includes/Elements/Adv_Accordion.php:1036, ../includes/Elements/Adv_Accordion.php:1083, ../includes/Elements/Adv_Tabs.php:407, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Adv_Tabs.php:831, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:624, ../includes/Elements/Countdown.php:703, ../includes/Elements/Cta_Box.php:557, ../includes/Elements/Cta_Box.php:885, ../includes/Elements/Cta_Box.php:1244, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:966, ../includes/Elements/Event_Calendar.php:1033, ../includes/Elements/Event_Calendar.php:1087, ../includes/Elements/Event_Calendar.php:1759, ../includes/Elements/Event_Calendar.php:1830, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:988, ../includes/Elements/Filterable_Gallery.php:1054, ../includes/Elements/Filterable_Gallery.php:1134, ../includes/Elements/Filterable_Gallery.php:1281, ../includes/Elements/Filterable_Gallery.php:1338, ../includes/Elements/Filterable_Gallery.php:1557, ../includes/Elements/Filterable_Gallery.php:1832, ../includes/Elements/Filterable_Gallery.php:1893, ../includes/Elements/Filterable_Gallery.php:2414, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Elements/Flip_Box.php:995, ../includes/Elements/Flip_Box.php:1109, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:879, ../includes/Elements/GravityForms.php:943, ../includes/Elements/GravityForms.php:1678, ../includes/Elements/GravityForms.php:1884, ../includes/Elements/GravityForms.php:2056, ../includes/Elements/GravityForms.php:2290, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:358, ../includes/Elements/Interactive_Circle.php:516, ../includes/Elements/Interactive_Circle.php:743, ../includes/Elements/Login_Register.php:3504, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1821, ../includes/Elements/Pricing_Table.php:1989, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Simple_Menu.php:664, ../includes/Elements/Simple_Menu.php:737, ../includes/Elements/Team_Member.php:440, ../includes/Elements/Team_Member.php:528, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:443, ../includes/Elements/Tooltip.php:487, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/Twitter_Feed.php:732, ../includes/Elements/Twitter_Feed.php:1049, ../includes/Elements/Twitter_Feed.php:1203, ../includes/Elements/Woo_Checkout.php:1714, ../includes/Elements/Woo_Checkout.php:1993, ../includes/Elements/Woo_Product_Carousel.php:2254, ../includes/Elements/Woo_Product_Carousel.php:2688, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:577, ../includes/Traits/Controls.php:1682, ../includes/Traits/Controls.php:1736, ../includes/Traits/Controls.php:1866
|
765 |
msgid "Border"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:475, ../includes/Elements/Adv_Accordion.php:666, ../includes/Elements/Adv_Accordion.php:727, ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Tabs.php:415, ../includes/Elements/Adv_Tabs.php:608, ../includes/Elements/Adv_Tabs.php:675, ../includes/Elements/Adv_Tabs.php:744, ../includes/Elements/Adv_Tabs.php:838, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:634, ../includes/Elements/Countdown.php:711, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1252, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1041, ../includes/Elements/Event_Calendar.php:1095, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1499, ../includes/Elements/Event_Calendar.php:1767, ../includes/Elements/Event_Calendar.php:1838, ../includes/Elements/Facebook_Feed.php:550, ../includes/Elements/Facebook_Feed.php:610, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:641, ../includes/Elements/Filterable_Gallery.php:883, ../includes/Elements/Filterable_Gallery.php:996, ../includes/Elements/Filterable_Gallery.php:1062, ../includes/Elements/Filterable_Gallery.php:1142, ../includes/Elements/Filterable_Gallery.php:1346, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:1901, ../includes/Elements/Filterable_Gallery.php:2072, ../includes/Elements/Filterable_Gallery.php:2203, ../includes/Elements/Filterable_Gallery.php:2338, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1018, ../includes/Elements/Flip_Box.php:1132, ../includes/Elements/Flip_Box.php:1393, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:890, ../includes/Elements/GravityForms.php:1360, ../includes/Elements/GravityForms.php:1556, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/GravityForms.php:1894, ../includes/Elements/GravityForms.php:2066, ../includes/Elements/GravityForms.php:2300, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1215, ../includes/Elements/Login_Register.php:2301, ../includes/Elements/Login_Register.php:2536, ../includes/Elements/Login_Register.php:2714, ../includes/Elements/Login_Register.php:2870, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3104, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3369, ../includes/Elements/Login_Register.php:3406, ../includes/Elements/Login_Register.php:3520, ../includes/Elements/Login_Register.php:4337, ../includes/Elements/Login_Register.php:4374, ../includes/Elements/Login_Register.php:4687, ../includes/Elements/Login_Register.php:4724, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Post_Timeline.php:183, ../includes/Elements/Post_Timeline.php:266, ../includes/Elements/Post_Timeline.php:564, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1592, ../includes/Elements/Pricing_Table.php:1844, ../includes/Elements/Pricing_Table.php:1997, ../includes/Elements/Product_Grid.php:969, ../includes/Elements/Product_Grid.php:2021, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Product_Grid.php:2717, ../includes/Elements/Product_Grid.php:2916, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Simple_Menu.php:672, ../includes/Elements/Sticky_Video.php:607, ../includes/Elements/Team_Member.php:448, ../includes/Elements/Team_Member.php:547, ../includes/Elements/Team_Member.php:798, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:504, ../includes/Elements/Twitter_Feed.php:650, ../includes/Elements/Twitter_Feed.php:743, ../includes/Elements/Twitter_Feed.php:1217, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1323, ../includes/Elements/Woo_Cart.php:1495, ../includes/Elements/Woo_Cart.php:1751, ../includes/Elements/Woo_Cart.php:1890, ../includes/Elements/Woo_Cart.php:2014, ../includes/Elements/Woo_Cart.php:2168, ../includes/Elements/Woo_Cart.php:2373, ../includes/Elements/Woo_Cart.php:2459, ../includes/Elements/Woo_Cart.php:2543, ../includes/Elements/Woo_Checkout.php:783, ../includes/Elements/Woo_Checkout.php:932, ../includes/Elements/Woo_Checkout.php:1128, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1581, ../includes/Elements/Woo_Checkout.php:1723, ../includes/Elements/Woo_Checkout.php:1931, ../includes/Elements/Woo_Checkout.php:2139, ../includes/Elements/Woo_Checkout.php:2341, ../includes/Elements/Woo_Checkout.php:2521, ../includes/Elements/Woo_Checkout.php:2801, ../includes/Elements/Woo_Product_Carousel.php:1019, ../includes/Elements/Woo_Product_Carousel.php:1423, ../includes/Elements/Woo_Product_Carousel.php:1826, ../includes/Elements/Woo_Product_Carousel.php:2022, ../includes/Elements/Woo_Product_Carousel.php:2054, ../includes/Elements/Woo_Product_Carousel.php:2264, ../includes/Elements/Woo_Product_Carousel.php:2387, ../includes/Elements/Woo_Product_Carousel.php:2511, ../includes/Elements/Woo_Product_Carousel.php:2698, ../includes/Elements/Woo_Product_Gallery.php:688, ../includes/Elements/Woo_Product_Gallery.php:1705, ../includes/Elements/Woo_Product_Gallery.php:2065, ../includes/Elements/Woo_Product_Gallery.php:2264, ../includes/Elements/Woo_Product_Gallery.php:2296, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:600, ../includes/Extensions/Table_of_Content.php:815, ../includes/Traits/Controls.php:1690, ../includes/Traits/Controls.php:1744, ../includes/Traits/Controls.php:1874, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
|
769 |
msgid "Border Radius"
|
770 |
msgstr ""
|
771 |
|
777 |
msgid "Head"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:895, ../includes/Elements/Event_Calendar.php:925, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1248, ../includes/Elements/Event_Calendar.php:1491, ../includes/Elements/Event_Calendar.php:1554, ../includes/Elements/Event_Calendar.php:1583, ../includes/Elements/Event_Calendar.php:1651, ../includes/Elements/Event_Calendar.php:1809, ../includes/Elements/Filterable_Gallery.php:1968, ../includes/Elements/Filterable_Gallery.php:2015, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2108, ../includes/Elements/Filterable_Gallery.php:2402, ../includes/Elements/Filterable_Gallery.php:2562, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:529, ../includes/Elements/GravityForms.php:560, ../includes/Elements/GravityForms.php:601, ../includes/Elements/GravityForms.php:644, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1046, ../includes/Elements/GravityForms.php:1182, ../includes/Elements/GravityForms.php:1772, ../includes/Elements/GravityForms.php:1792, ../includes/Elements/GravityForms.php:1827, ../includes/Elements/GravityForms.php:2172, ../includes/Elements/GravityForms.php:2393, ../includes/Elements/GravityForms.php:2586, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:511, ../includes/Elements/Post_Grid.php:523, ../includes/Elements/Post_Grid.php:665, ../includes/Elements/Post_Grid.php:877, ../includes/Elements/Post_Timeline.php:283, ../includes/Elements/Post_Timeline.php:544, ../includes/Elements/Product_Grid.php:2437, ../includes/Elements/Product_Grid.php:2468, ../includes/Elements/Product_Grid.php:2510, ../includes/Elements/Product_Grid.php:2576, ../includes/Elements/Product_Grid.php:2617, ../includes/Elements/Product_Grid.php:2674, ../includes/Elements/Product_Grid.php:2791, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:874, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Twitter_Feed.php:1234, ../includes/Elements/Woo_Cart.php:1736, ../includes/Elements/Woo_Cart.php:1797, ../includes/Elements/Woo_Cart.php:1975, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1484, ../includes/Elements/Woo_Checkout.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1534, ../includes/Elements/Woo_Product_Carousel.php:1564, ../includes/Elements/Woo_Product_Carousel.php:1606, ../includes/Elements/Woo_Product_Carousel.php:1685, ../includes/Elements/Woo_Product_Carousel.php:1725, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1901, ../includes/Elements/Woo_Product_Gallery.php:1786, ../includes/Elements/Woo_Product_Gallery.php:1816, ../includes/Elements/Woo_Product_Gallery.php:1858, ../includes/Elements/Woo_Product_Gallery.php:1924, ../includes/Elements/Woo_Product_Gallery.php:1965, ../includes/Elements/Woo_Product_Gallery.php:2022, ../includes/Elements/Woo_Product_Gallery.php:2139, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
|
781 |
msgid "Typography"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Text Alignment"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:155, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:202, ../includes/Elements/Countdown.php:1114, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1295, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:304, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:673, ../includes/Elements/GravityForms.php:1950, ../includes/Elements/GravityForms.php:2210, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:1210, ../includes/Elements/Login_Register.php:1262, ../includes/Elements/Login_Register.php:3313, ../includes/Elements/Login_Register.php:4288, ../includes/Elements/Login_Register.php:4637, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:643, ../includes/Elements/Post_Grid.php:711, ../includes/Elements/Post_Grid.php:806, ../includes/Elements/Post_Grid.php:889, ../includes/Elements/Post_Timeline.php:317, ../includes/Elements/Post_Timeline.php:375, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:274, ../includes/Elements/Pricing_Table.php:395, ../includes/Elements/Pricing_Table.php:697, ../includes/Elements/Pricing_Table.php:839, ../includes/Elements/Pricing_Table.php:864, ../includes/Elements/Product_Grid.php:721, ../includes/Elements/Product_Grid.php:1039, ../includes/Elements/Product_Grid.php:1713, ../includes/Elements/Product_Grid.php:2198, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:195, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:783, ../includes/Elements/Simple_Menu.php:809, ../includes/Elements/Simple_Menu.php:834, ../includes/Elements/Simple_Menu.php:1129, ../includes/Elements/Team_Member.php:407, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:212, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Tooltip.php:380, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:271, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:588, ../includes/Elements/Woo_Cart.php:659, ../includes/Elements/Woo_Cart.php:737, ../includes/Elements/Woo_Cart.php:849, ../includes/Elements/Woo_Cart.php:1619, ../includes/Elements/Woo_Cart.php:2248, ../includes/Elements/Woo_Product_Carousel.php:715, ../includes/Elements/Woo_Product_Carousel.php:831, ../includes/Elements/Woo_Product_Carousel.php:880, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:565, ../includes/Elements/Woo_Product_Gallery.php:1532, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:494, ../includes/Traits/Controls.php:626, ../includes/Traits/Controls.php:1617, ../includes/Traits/Controls.php:1955, ../includes/Traits/Controls.php:2006, ../includes/Traits/Controls.php:2007, ../includes/Traits/Controls.php:2329
|
789 |
msgid "Left"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:206, ../includes/Elements/Countdown.php:1118, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1167, ../includes/Elements/Event_Calendar.php:1299, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:677, ../includes/Elements/GravityForms.php:1954, ../includes/Elements/GravityForms.php:2214, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:3317, ../includes/Elements/Login_Register.php:4270, ../includes/Elements/Login_Register.php:4292, ../includes/Elements/Login_Register.php:4598, ../includes/Elements/Login_Register.php:4618, ../includes/Elements/Login_Register.php:4641, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:647, ../includes/Elements/Post_Grid.php:715, ../includes/Elements/Post_Grid.php:810, ../includes/Elements/Post_Grid.php:893, ../includes/Elements/Post_Timeline.php:321, ../includes/Elements/Post_Timeline.php:379, ../includes/Elements/Pricing_Table.php:843, ../includes/Elements/Pricing_Table.php:868, ../includes/Elements/Product_Grid.php:725, ../includes/Elements/Product_Grid.php:1043, ../includes/Elements/Product_Grid.php:2202, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:199, ../includes/Elements/Simple_Menu.php:380, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:813, ../includes/Elements/Simple_Menu.php:838, ../includes/Elements/Simple_Menu.php:1133, ../includes/Elements/Team_Member.php:411, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:216, ../includes/Elements/Tooltip.php:384, ../includes/Elements/Twitter_Feed.php:465, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:275, ../includes/Elements/Woo_Cart.php:592, ../includes/Elements/Woo_Cart.php:663, ../includes/Elements/Woo_Cart.php:741, ../includes/Elements/Woo_Cart.php:853, ../includes/Elements/Woo_Cart.php:1623, ../includes/Elements/Woo_Cart.php:2252, ../includes/Elements/Woo_Product_Carousel.php:884, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:569, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:642, ../includes/Traits/Controls.php:1621, ../includes/Traits/Controls.php:1959, ../includes/Traits/Controls.php:2333
|
793 |
msgid "Center"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:695, ../includes/Elements/Adv_Accordion.php:756, ../includes/Elements/Adv_Accordion.php:824, ../includes/Elements/Adv_Tabs.php:574, ../includes/Elements/Adv_Tabs.php:641, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Adv_Tabs.php:790, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1193, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:811, ../includes/Elements/Cta_Box.php:826, ../includes/Elements/Cta_Box.php:997, ../includes/Elements/Cta_Box.php:1012, ../includes/Elements/Cta_Box.php:1204, ../includes/Elements/Cta_Box.php:1219, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Cta_Box.php:1288, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1409, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Filterable_Gallery.php:963, ../includes/Elements/Filterable_Gallery.php:1029, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Filterable_Gallery.php:2709, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:516, ../includes/Elements/GravityForms.php:547, ../includes/Elements/GravityForms.php:586, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:716, ../includes/Elements/GravityForms.php:980, ../includes/Elements/GravityForms.php:1033, ../includes/Elements/GravityForms.php:1220, ../includes/Elements/GravityForms.php:1663, ../includes/Elements/GravityForms.php:1739, ../includes/Elements/GravityForms.php:2041, ../includes/Elements/GravityForms.php:2103, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2364, ../includes/Elements/GravityForms.php:2438, ../includes/Elements/GravityForms.php:2573, ../includes/Elements/Info_Box.php:1237, ../includes/Elements/Info_Box.php:1284, ../includes/Elements/Interactive_Circle.php:489, ../includes/Elements/Interactive_Circle.php:549, ../includes/Elements/Interactive_Circle.php:617, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Login_Register.php:3342, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/Login_Register.php:3922, ../includes/Elements/Login_Register.php:4317, ../includes/Elements/Login_Register.php:4354, ../includes/Elements/Login_Register.php:4667, ../includes/Elements/Login_Register.php:4704, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1948, ../includes/Elements/Pricing_Table.php:2018, ../includes/Elements/Product_Grid.php:2252, ../includes/Elements/Product_Grid.php:2290, ../includes/Elements/Product_Grid.php:2334, ../includes/Elements/Simple_Menu.php:406, ../includes/Elements/Simple_Menu.php:440, ../includes/Elements/Simple_Menu.php:474, ../includes/Elements/Simple_Menu.php:532, ../includes/Elements/Simple_Menu.php:566, ../includes/Elements/Simple_Menu.php:892, ../includes/Elements/Simple_Menu.php:1019, ../includes/Elements/Simple_Menu.php:1203, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/Tooltip.php:421, ../includes/Elements/Tooltip.php:465, ../includes/Elements/Tooltip.php:639, ../includes/Elements/Twitter_Feed.php:1186, ../includes/Elements/Twitter_Feed.php:1381, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1254, ../includes/Elements/Woo_Cart.php:1533, ../includes/Elements/Woo_Cart.php:1824, ../includes/Elements/Woo_Cart.php:1862, ../includes/Elements/Woo_Cart.php:1950, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2138, ../includes/Elements/Woo_Cart.php:2333, ../includes/Elements/Woo_Cart.php:2416, ../includes/Elements/Woo_Cart.php:2503, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:658, ../includes/Extensions/Table_of_Content.php:973, ../includes/Extensions/Table_of_Content.php:996, ../includes/Extensions/Table_of_Content.php:1022, ../includes/Traits/Controls.php:1656, ../includes/Traits/Controls.php:1711, ../includes/Traits/Controls.php:1841, ../includes/Traits/Controls.php:1903, ../includes/Traits/Controls.php:2286
|
797 |
msgid "Text Color"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Accordion.php:1069, ../includes/Elements/Adv_Tabs.php:555, ../includes/Elements/Adv_Tabs.php:771, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:598, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:829, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:901, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:973, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1045, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:384, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:477, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:840, ../includes/Elements/Cta_Box.php:856, ../includes/Elements/Cta_Box.php:1026, ../includes/Elements/Cta_Box.php:1043, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1421, ../includes/Elements/Filterable_Gallery.php:838, ../includes/Elements/Filterable_Gallery.php:975, ../includes/Elements/Filterable_Gallery.php:1041, ../includes/Elements/Filterable_Gallery.php:1187, ../includes/Elements/Filterable_Gallery.php:1377, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1512, ../includes/Elements/Filterable_Gallery.php:1528, ../includes/Elements/Filterable_Gallery.php:1730, ../includes/Elements/Filterable_Gallery.php:1868, ../includes/Elements/Filterable_Gallery.php:2498, ../includes/Elements/Filterable_Gallery.php:2693, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:704, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1649, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1848, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2089, ../includes/Elements/GravityForms.php:2265, ../includes/Elements/GravityForms.php:2352, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1250, ../includes/Elements/Info_Box.php:1297, ../includes/Elements/Interactive_Circle.php:478, ../includes/Elements/Interactive_Circle.php:535, ../includes/Elements/Interactive_Circle.php:603, ../includes/Elements/Interactive_Circle.php:685, ../includes/Elements/Login_Register.php:2316, ../includes/Elements/Login_Register.php:2449, ../includes/Elements/Login_Register.php:2551, ../includes/Elements/Login_Register.php:2729, ../includes/Elements/Login_Register.php:3085, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3356, ../includes/Elements/Login_Register.php:3394, ../includes/Elements/Login_Register.php:3491, ../includes/Elements/Login_Register.php:4049, ../includes/Elements/Login_Register.php:4325, ../includes/Elements/Login_Register.php:4362, ../includes/Elements/Login_Register.php:4675, ../includes/Elements/Login_Register.php:4712, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:963, ../includes/Elements/Post_Timeline.php:154, ../includes/Elements/Pricing_Table.php:758, ../includes/Elements/Pricing_Table.php:920, ../includes/Elements/Pricing_Table.php:1451, ../includes/Elements/Pricing_Table.php:1528, ../includes/Elements/Pricing_Table.php:1694, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Pricing_Table.php:2031, ../includes/Elements/Product_Grid.php:1862, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Product_Grid.php:2264, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Product_Grid.php:2346, ../includes/Elements/Product_Grid.php:2594, ../includes/Elements/Product_Grid.php:2637, ../includes/Elements/Product_Grid.php:2698, ../includes/Elements/Product_Grid.php:2749, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:419, ../includes/Elements/Simple_Menu.php:453, ../includes/Elements/Simple_Menu.php:487, ../includes/Elements/Simple_Menu.php:545, ../includes/Elements/Simple_Menu.php:579, ../includes/Elements/Simple_Menu.php:651, ../includes/Elements/Simple_Menu.php:723, ../includes/Elements/Simple_Menu.php:906, ../includes/Elements/Simple_Menu.php:986, ../includes/Elements/Simple_Menu.php:1034, ../includes/Elements/Simple_Menu.php:1081, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1342, ../includes/Elements/Simple_Menu.php:1389, ../includes/Elements/Team_Member.php:762, ../includes/Elements/Tooltip.php:410, ../includes/Elements/Tooltip.php:454, ../includes/Elements/Tooltip.php:628, ../includes/Elements/Twitter_Feed.php:595, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Elements/Twitter_Feed.php:1365, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1149, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:1851, ../includes/Elements/Woo_Cart.php:2085, ../includes/Elements/Woo_Cart.php:2126, ../includes/Elements/Woo_Checkout.php:753, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:990, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1540, ../includes/Elements/Woo_Checkout.php:1850, ../includes/Elements/Woo_Checkout.php:1890, ../includes/Elements/Woo_Checkout.php:2480, ../includes/Elements/Woo_Checkout.php:2610, ../includes/Elements/Woo_Checkout.php:2720, ../includes/Elements/Woo_Checkout.php:2760, ../includes/Elements/Woo_Product_Carousel.php:906, ../includes/Elements/Woo_Product_Carousel.php:1401, ../includes/Elements/Woo_Product_Carousel.php:1483, ../includes/Elements/Woo_Product_Carousel.php:1702, ../includes/Elements/Woo_Product_Carousel.php:1745, ../includes/Elements/Woo_Product_Carousel.php:1807, ../includes/Elements/Woo_Product_Carousel.php:1859, ../includes/Elements/Woo_Product_Carousel.php:2663, ../includes/Elements/Woo_Product_Carousel.php:2719, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:1743, ../includes/Elements/Woo_Product_Gallery.php:1942, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2046, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:403, ../includes/Extensions/Table_of_Content.php:645, ../includes/Extensions/Table_of_Content.php:791, ../includes/Extensions/Table_of_Content.php:855, ../includes/Traits/Controls.php:1853, ../includes/Traits/Controls.php:1915, ../includes/Traits/Controls.php:2296, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
|
801 |
msgid "Background Color"
|
802 |
msgstr ""
|
803 |
|
805 |
msgid "Cell Border"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:445, ../includes/Elements/Adv_Accordion.php:599, ../includes/Elements/Adv_Accordion.php:842, ../includes/Elements/Adv_Tabs.php:384, ../includes/Elements/Adv_Tabs.php:529, ../includes/Elements/Adv_Tabs.php:808, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:696, ../includes/Elements/Countdown.php:690, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:1168, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:680, ../includes/Elements/Facebook_Feed.php:706, ../includes/Elements/Facebook_Feed.php:778, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:598, ../includes/Elements/Filterable_Gallery.php:850, ../includes/Elements/Filterable_Gallery.php:927, ../includes/Elements/Filterable_Gallery.php:1109, ../includes/Elements/Filterable_Gallery.php:1199, ../includes/Elements/Filterable_Gallery.php:1543, ../includes/Elements/Filterable_Gallery.php:1754, ../includes/Elements/Filterable_Gallery.php:2617, ../includes/Elements/Flip_Box.php:1006, ../includes/Elements/Flip_Box.php:1120, ../includes/Elements/Flip_Box.php:1356, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:766, ../includes/Elements/GravityForms.php:1387, ../includes/Elements/GravityForms.php:1583, ../includes/Elements/GravityForms.php:1702, ../includes/Elements/GravityForms.php:1906, ../includes/Elements/GravityForms.php:2135, ../includes/Elements/GravityForms.php:2312, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:335, ../includes/Elements/Interactive_Circle.php:720, ../includes/Elements/Login_Register.php:2279, ../includes/Elements/Login_Register.php:2848, ../includes/Elements/Login_Register.php:2987, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3151, ../includes/Elements/Login_Register.php:3253, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3451, ../includes/Elements/Login_Register.php:4230, ../includes/Elements/Login_Register.php:4558, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Post_Timeline.php:168, ../includes/Elements/Post_Timeline.php:552, ../includes/Elements/Pricing_Table.php:770, ../includes/Elements/Pricing_Table.php:1570, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Product_Grid.php:832, ../includes/Elements/Product_Grid.php:1083, ../includes/Elements/Product_Grid.php:1495, ../includes/Elements/Simple_Menu.php:351, ../includes/Elements/Simple_Menu.php:511, ../includes/Elements/Simple_Menu.php:684, ../includes/Elements/Simple_Menu.php:1148, ../includes/Elements/Team_Member.php:514, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:352, ../includes/Elements/Tooltip.php:606, ../includes/Elements/Twitter_Feed.php:625, ../includes/Elements/Twitter_Feed.php:684, ../includes/Elements/Twitter_Feed.php:717, ../includes/Elements/Twitter_Feed.php:1289, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1208, ../includes/Elements/Woo_Cart.php:1763, ../includes/Elements/Woo_Cart.php:1910, ../includes/Elements/Woo_Cart.php:2027, ../includes/Elements/Woo_Cart.php:2181, ../includes/Elements/Woo_Cart.php:2283, ../includes/Elements/Woo_Checkout.php:764, ../includes/Elements/Woo_Checkout.php:1356, ../includes/Elements/Woo_Checkout.php:1403, ../includes/Elements/Woo_Checkout.php:1601, ../includes/Elements/Woo_Checkout.php:1750, ../includes/Elements/Woo_Checkout.php:1779, ../includes/Elements/Woo_Checkout.php:1951, ../includes/Elements/Woo_Checkout.php:2166, ../includes/Elements/Woo_Checkout.php:2502, ../includes/Elements/Woo_Checkout.php:2833, ../includes/Elements/Woo_Product_Carousel.php:1041, ../includes/Elements/Woo_Product_Carousel.php:2276, ../includes/Elements/Woo_Product_Gallery.php:603, ../includes/Elements/Woo_Product_Gallery.php:707, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1231, ../includes/Elements/Woo_Product_Gallery.php:1293, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:680, ../includes/Extensions/Table_of_Content.php:868, ../includes/Traits/Controls.php:1760, ../includes/Traits/Controls.php:1805, ../includes/Traits/Controls.php:2306, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615
|
809 |
msgid "Padding"
|
810 |
msgstr ""
|
811 |
|
825 |
msgid "Highlight"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:196, ../includes/Elements/Countdown.php:486, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:230, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:435, ../includes/Elements/Flip_Box.php:654, ../includes/Elements/GravityForms.php:1060, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1119, ../includes/Elements/Interactive_Circle.php:285, ../includes/Elements/Post_Grid.php:937, ../includes/Elements/Simple_Menu.php:1443, ../includes/Elements/Sticky_Video.php:568, ../includes/Extensions/Table_of_Content.php:893, ../includes/Extensions/Table_of_Content.php:1114
|
829 |
msgid "None"
|
830 |
msgstr ""
|
831 |
|
861 |
msgid "Margin Bottom"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1159, ../includes/Elements/Event_Calendar.php:1291, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:669, ../includes/Elements/GravityForms.php:1946, ../includes/Elements/GravityForms.php:2206, ../includes/Elements/Login_Register.php:4284, ../includes/Elements/Login_Register.php:4633, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:802, ../includes/Elements/Post_Grid.php:885, ../includes/Elements/Post_Timeline.php:478, ../includes/Elements/Product_Grid.php:717, ../includes/Elements/Product_Grid.php:1035, ../includes/Elements/Product_Grid.php:1709, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:372, ../includes/Elements/Simple_Menu.php:779, ../includes/Elements/Simple_Menu.php:805, ../includes/Elements/Simple_Menu.php:830, ../includes/Elements/Simple_Menu.php:1125, ../includes/Elements/Tooltip.php:207, ../includes/Elements/Twitter_Feed.php:457, ../includes/Elements/Woo_Cart.php:267, ../includes/Elements/Woo_Cart.php:492, ../includes/Elements/Woo_Cart.php:584, ../includes/Elements/Woo_Cart.php:655, ../includes/Elements/Woo_Cart.php:733, ../includes/Elements/Woo_Cart.php:845, ../includes/Elements/Woo_Cart.php:1615, ../includes/Elements/Woo_Cart.php:2244, ../includes/Elements/Woo_Product_Carousel.php:827, ../includes/Elements/Woo_Product_Carousel.php:876, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:561, ../includes/Elements/Woo_Product_Gallery.php:1528, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1613, ../includes/Traits/Controls.php:2325
|
865 |
msgid "Alignment"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:456, ../includes/Elements/Adv_Accordion.php:610, ../includes/Elements/Adv_Accordion.php:853, ../includes/Elements/Adv_Tabs.php:395, ../includes/Elements/Adv_Tabs.php:540, ../includes/Elements/Adv_Tabs.php:819, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1172, ../includes/Elements/Cta_Box.php:544, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:1180, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:862, ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/Filterable_Gallery.php:1121, ../includes/Elements/Filterable_Gallery.php:1766, ../includes/Elements/Filterable_Gallery.php:2215, ../includes/Elements/Filterable_Gallery.php:2658, ../includes/Elements/Flip_Box.php:1344, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1375, ../includes/Elements/GravityForms.php:1571, ../includes/Elements/GravityForms.php:1920, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1378, ../includes/Elements/Interactive_Circle.php:346, ../includes/Elements/Interactive_Circle.php:731, ../includes/Elements/Login_Register.php:2264, ../includes/Elements/Login_Register.php:2833, ../includes/Elements/Login_Register.php:2972, ../includes/Elements/Login_Register.php:3045, ../includes/Elements/Login_Register.php:3136, ../includes/Elements/Login_Register.php:3238, ../includes/Elements/Login_Register.php:3274, ../includes/Elements/Login_Register.php:3436, ../includes/Elements/Login_Register.php:4215, ../includes/Elements/Login_Register.php:4462, ../includes/Elements/Login_Register.php:4543, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:535, ../includes/Elements/Post_Grid.php:550, ../includes/Elements/Post_Grid.php:674, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:838, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1110, ../includes/Elements/Pricing_Table.php:1180, ../includes/Elements/Pricing_Table.php:1890, ../includes/Elements/Team_Member.php:502, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:363, ../includes/Elements/Tooltip.php:617, ../includes/Elements/Twitter_Feed.php:1330, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Cart.php:1220, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:1922, ../includes/Elements/Woo_Cart.php:2040, ../includes/Elements/Woo_Cart.php:2195, ../includes/Elements/Woo_Cart.php:2297, ../includes/Elements/Woo_Checkout.php:1422, ../includes/Elements/Woo_Checkout.php:1798, ../includes/Elements/Woo_Product_Carousel.php:935, ../includes/Elements/Woo_Product_Gallery.php:1219, ../includes/Elements/Woo_Product_Gallery.php:1281, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1772, ../includes/Traits/Controls.php:1817, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
|
869 |
msgid "Margin"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:953, ../includes/Elements/Adv_Tabs.php:551, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:591, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:806, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:936, ../includes/Elements/Filterable_Gallery.php:958, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:2487, ../includes/Elements/Flip_Box.php:1338, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:697, ../includes/Elements/GravityForms.php:1287, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1642, ../includes/Elements/GravityForms.php:2020, ../includes/Elements/GravityForms.php:2258, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1231, ../includes/Elements/Info_Box.php:1344, ../includes/Elements/Interactive_Circle.php:474, ../includes/Elements/Login_Register.php:3339, ../includes/Elements/Login_Register.php:4314, ../includes/Elements/Login_Register.php:4489, ../includes/Elements/Login_Register.php:4664, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1943, ../includes/Elements/Product_Grid.php:887, ../includes/Elements/Product_Grid.php:1534, ../includes/Elements/Product_Grid.php:1952, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Product_Grid.php:2681, ../includes/Elements/Team_Member.php:744, ../includes/Elements/Tooltip.php:406, ../includes/Elements/Twitter_Feed.php:1159, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1806, ../includes/Elements/Woo_Cart.php:2078, ../includes/Elements/Woo_Checkout.php:1036, ../includes/Elements/Woo_Checkout.php:1079, ../includes/Elements/Woo_Checkout.php:1222, ../includes/Elements/Woo_Checkout.php:1493, ../includes/Elements/Woo_Checkout.php:1843, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2559, ../includes/Elements/Woo_Checkout.php:2713, ../includes/Elements/Woo_Product_Carousel.php:947, ../includes/Elements/Woo_Product_Carousel.php:1385, ../includes/Elements/Woo_Product_Carousel.php:1790, ../includes/Elements/Woo_Product_Carousel.php:2234, ../includes/Elements/Woo_Product_Carousel.php:2656, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1021, ../includes/Elements/Woo_Product_Gallery.php:1316, ../includes/Elements/Woo_Product_Gallery.php:1676, ../includes/Elements/Woo_Product_Gallery.php:2029, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:966, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1836, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643
|
873 |
msgid "Normal"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:618, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:648, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:992, ../includes/Elements/Cta_Box.php:1268, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2682, ../includes/Elements/Flip_Box.php:1445, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1718, ../includes/Elements/GravityForms.php:2082, ../includes/Elements/GravityForms.php:2345, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Info_Box.php:1454, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:531, ../includes/Elements/Login_Register.php:4351, ../includes/Elements/Login_Register.php:4701, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:424, ../includes/Elements/Pricing_Table.php:2013, ../includes/Elements/Product_Grid.php:937, ../includes/Elements/Product_Grid.php:1610, ../includes/Elements/Product_Grid.php:2061, ../includes/Elements/Product_Grid.php:2285, ../includes/Elements/Product_Grid.php:2732, ../includes/Elements/Simple_Menu.php:433, ../includes/Elements/Simple_Menu.php:559, ../includes/Elements/Simple_Menu.php:1012, ../includes/Elements/Simple_Menu.php:1321, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Twitter_Feed.php:1354, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1844, ../includes/Elements/Woo_Cart.php:2119, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1096, ../includes/Elements/Woo_Checkout.php:1238, ../includes/Elements/Woo_Checkout.php:1533, ../includes/Elements/Woo_Checkout.php:1883, ../includes/Elements/Woo_Checkout.php:2319, ../includes/Elements/Woo_Checkout.php:2753, ../includes/Elements/Woo_Product_Carousel.php:987, ../includes/Elements/Woo_Product_Carousel.php:1467, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:2297, ../includes/Elements/Woo_Product_Carousel.php:2712, ../includes/Elements/Woo_Product_Gallery.php:656, ../includes/Elements/Woo_Product_Gallery.php:1089, ../includes/Elements/Woo_Product_Gallery.php:1350, ../includes/Elements/Woo_Product_Gallery.php:1726, ../includes/Elements/Woo_Product_Gallery.php:2080, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:989, ../includes/Traits/Controls.php:1704, ../includes/Traits/Controls.php:1898, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693
|
877 |
msgid "Hover"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:610, ../includes/Elements/Content_Ticker.php:667, ../includes/Elements/Cta_Box.php:612, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:695, ../includes/Elements/Cta_Box.php:1377, ../includes/Elements/Cta_Box.php:1393, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:903, ../includes/Elements/Event_Calendar.php:943, ../includes/Elements/Event_Calendar.php:1010, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Event_Calendar.php:1222, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Event_Calendar.php:1365, ../includes/Elements/Event_Calendar.php:1731, ../includes/Elements/Facebook_Feed.php:844, ../includes/Elements/Facebook_Feed.php:882, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:970, ../includes/Elements/Facebook_Feed.php:1008, ../includes/Elements/Facebook_Feed.php:1046, ../includes/Elements/Facebook_Feed.php:1099, ../includes/Elements/Facebook_Feed.php:1137, ../includes/Elements/Facebook_Feed.php:1175, ../includes/Elements/Facebook_Feed.php:1207, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:764, ../includes/Elements/Feature_List.php:798, ../includes/Elements/Filterable_Gallery.php:1220, ../includes/Elements/Filterable_Gallery.php:1260, ../includes/Elements/Filterable_Gallery.php:1582, ../includes/Elements/Filterable_Gallery.php:1597, ../includes/Elements/Filterable_Gallery.php:1642, ../includes/Elements/Filterable_Gallery.php:1657, ../includes/Elements/Filterable_Gallery.php:1742, ../includes/Elements/Filterable_Gallery.php:1880, ../includes/Elements/Filterable_Gallery.php:1956, ../includes/Elements/Filterable_Gallery.php:1992, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2180, ../includes/Elements/Filterable_Gallery.php:2367, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1065, ../includes/Elements/Flip_Box.php:1193, ../includes/Elements/Flip_Box.php:1224, ../includes/Elements/Flip_Box.php:1262, ../includes/Elements/Flip_Box.php:1294, ../includes/Elements/Flip_Box.php:1368, ../includes/Elements/Flip_Box.php:1451, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1191, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/GravityForms.php:1493, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/GravityForms.php:1800, ../includes/Elements/GravityForms.php:1836, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1358, ../includes/Elements/Info_Box.php:1434, ../includes/Elements/Interactive_Circle.php:388, ../includes/Elements/Login_Register.php:3075, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3580, ../includes/Elements/Login_Register.php:4038, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:864, ../includes/Elements/Pricing_Table.php:907, ../includes/Elements/Pricing_Table.php:971, ../includes/Elements/Pricing_Table.php:1062, ../includes/Elements/Pricing_Table.php:1091, ../includes/Elements/Pricing_Table.php:1132, ../includes/Elements/Pricing_Table.php:1161, ../includes/Elements/Pricing_Table.php:1201, ../includes/Elements/Pricing_Table.php:1236, ../includes/Elements/Pricing_Table.php:1418, ../includes/Elements/Pricing_Table.php:1558, ../includes/Elements/Product_Grid.php:1357, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Product_Grid.php:2403, ../includes/Elements/Product_Grid.php:2584, ../includes/Elements/Product_Grid.php:2625, ../includes/Elements/Product_Grid.php:2686, ../includes/Elements/Product_Grid.php:2737, ../includes/Elements/Product_Grid.php:2894, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:974, ../includes/Elements/Simple_Menu.php:1068, ../includes/Elements/Simple_Menu.php:1283, ../includes/Elements/Simple_Menu.php:1376, ../includes/Elements/Twitter_Feed.php:876, ../includes/Elements/Twitter_Feed.php:905, ../includes/Elements/Twitter_Feed.php:935, ../includes/Elements/Twitter_Feed.php:1105, ../includes/Elements/Woo_Checkout.php:708, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:896, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1018, ../includes/Elements/Woo_Checkout.php:1191, ../includes/Elements/Woo_Checkout.php:1227, ../includes/Elements/Woo_Checkout.php:1243, ../includes/Elements/Woo_Checkout.php:1311, ../includes/Elements/Woo_Checkout.php:1462, ../includes/Elements/Woo_Checkout.php:1512, ../includes/Elements/Woo_Checkout.php:1552, ../includes/Elements/Woo_Checkout.php:1649, ../includes/Elements/Woo_Checkout.php:1862, ../includes/Elements/Woo_Checkout.php:1902, ../includes/Elements/Woo_Checkout.php:2020, ../includes/Elements/Woo_Checkout.php:2064, ../includes/Elements/Woo_Checkout.php:2108, ../includes/Elements/Woo_Checkout.php:2214, ../includes/Elements/Woo_Checkout.php:2253, ../includes/Elements/Woo_Checkout.php:2293, ../includes/Elements/Woo_Checkout.php:2566, ../includes/Elements/Woo_Checkout.php:2587, ../includes/Elements/Woo_Checkout.php:2622, ../includes/Elements/Woo_Checkout.php:2643, ../includes/Elements/Woo_Checkout.php:2732, ../includes/Elements/Woo_Checkout.php:2772, ../includes/Elements/Woo_Product_Carousel.php:1195, ../includes/Elements/Woo_Product_Carousel.php:1390, ../includes/Elements/Woo_Product_Carousel.php:1472, ../includes/Elements/Woo_Product_Carousel.php:1692, ../includes/Elements/Woo_Product_Carousel.php:1733, ../includes/Elements/Woo_Product_Carousel.php:1795, ../includes/Elements/Woo_Product_Carousel.php:1847, ../includes/Elements/Woo_Product_Carousel.php:2000, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2304, ../includes/Elements/Woo_Product_Carousel.php:2337, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/Woo_Product_Carousel.php:2731, ../includes/Elements/Woo_Product_Gallery.php:1321, ../includes/Elements/Woo_Product_Gallery.php:1355, ../includes/Elements/Woo_Product_Gallery.php:1393, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1932, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/Woo_Product_Gallery.php:2242, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1125, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
|
881 |
msgid "Color"
|
882 |
msgstr ""
|
883 |
|
1057 |
msgid "Distance"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../includes/Elements/Adv_Accordion.php:645, ../includes/Elements/Adv_Accordion.php:706, ../includes/Elements/Adv_Accordion.php:768, ../includes/Elements/Adv_Tabs.php:585, ../includes/Elements/Adv_Tabs.php:652, ../includes/Elements/Adv_Tabs.php:719, ../includes/Elements/Cta_Box.php:975, ../includes/Elements/Cta_Box.php:1106, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1630, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1004, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Interactive_Circle.php:500, ../includes/Elements/Interactive_Circle.php:562, ../includes/Elements/Interactive_Circle.php:628, ../includes/Elements/Post_Grid.php:987, ../includes/Elements/Pricing_Table.php:355, ../includes/Elements/Pricing_Table.php:1793, ../includes/Elements/Simple_Menu.php:337, ../includes/Elements/Team_Member.php:749, ../includes/Elements/Twitter_Feed.php:812, ../includes/Elements/Woo_Cart.php:237, ../includes/Elements/Woo_Cart.php:811, ../includes/Elements/Woo_Cart.php:1962, ../includes/Elements/Woo_Cart.php:2345, ../includes/Elements/Woo_Cart.php:2428, ../includes/Elements/Woo_Cart.php:2515, ../includes/Elements/Woo_Checkout.php:1322, ../includes/Elements/Woo_Checkout.php:1660, ../includes/Extensions/Scroll_to_Top.php:387
|
1061 |
msgid "Icon Color"
|
1062 |
msgstr ""
|
1063 |
|
1205 |
msgid "Show Icon"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:587, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:170, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:380, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Facebook_Feed.php:407, ../includes/Elements/Facebook_Feed.php:422, ../includes/Elements/Facebook_Feed.php:437, ../includes/Elements/Facebook_Feed.php:503, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:291, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:447, ../includes/Elements/Login_Register.php:854, ../includes/Elements/Login_Register.php:1127, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:532, ../includes/Elements/Pricing_Table.php:1682, ../includes/Elements/Product_Grid.php:583, ../includes/Elements/Product_Grid.php:685, ../includes/Elements/Product_Grid.php:1526, ../includes/Elements/Product_Grid.php:2145, ../includes/Elements/Twitter_Feed.php:573, ../includes/Elements/Woo_Cart.php:430, ../includes/Elements/Woo_Cart.php:478, ../includes/Elements/Woo_Cart.php:548, ../includes/Elements/Woo_Cart.php:560, ../includes/Elements/Woo_Cart.php:631, ../includes/Elements/Woo_Cart.php:709, ../includes/Elements/Woo_Cart.php:780, ../includes/Elements/Woo_Cart.php:904, ../includes/Elements/Woo_Cart.php:928, ../includes/Elements/Woo_Cart.php:965, ../includes/Elements/Woo_Cart.php:1009, ../includes/Elements/Woo_Cart.php:1022, ../includes/Elements/Woo_Cart.php:1037, ../includes/Elements/Woo_Cart.php:1052, ../includes/Elements/Woo_Cart.php:1067, ../includes/Elements/Woo_Cart.php:1082, ../includes/Elements/Woo_Cart.php:1097, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:638, ../includes/Elements/Woo_Product_Carousel.php:697, ../includes/Elements/Woo_Product_Gallery.php:530, ../includes/Elements/Woo_Product_Gallery.php:1013, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:591, ../includes/Traits/Controls.php:691, ../includes/Traits/Controls.php:721, ../includes/Traits/Controls.php:1001, ../includes/Traits/Controls.php:1050, ../includes/Traits/Controls.php:1079, ../includes/Traits/Controls.php:1147, ../includes/Traits/Controls.php:1182, ../includes/Traits/Controls.php:1219, ../includes/Traits/Controls.php:1318, ../includes/Traits/Controls.php:1338, ../includes/Traits/Controls.php:1367, ../includes/Traits/Controls.php:1383, ../includes/Traits/Controls.php:1400, ../includes/Traits/Controls.php:1433, ../includes/Traits/Controls.php:1449, ../includes/Traits/Controls.php:1468, ../includes/Traits/Controls.php:1484, ../includes/Traits/Controls.php:1500
|
1209 |
msgid "Show"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:588, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:171, ../includes/Elements/Cta_Box.php:354, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:381, ../includes/Elements/Facebook_Feed.php:393, ../includes/Elements/Facebook_Feed.php:408, ../includes/Elements/Facebook_Feed.php:423, ../includes/Elements/Facebook_Feed.php:438, ../includes/Elements/Facebook_Feed.php:504, ../includes/Elements/Filterable_Gallery.php:292, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:446, ../includes/Elements/Login_Register.php:762, ../includes/Elements/Login_Register.php:853, ../includes/Elements/Login_Register.php:914, ../includes/Elements/Login_Register.php:1036, ../includes/Elements/Login_Register.php:1126, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:121, ../includes/Elements/Pricing_Table.php:533, ../includes/Elements/Pricing_Table.php:1683, ../includes/Elements/Product_Grid.php:584, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:1527, ../includes/Elements/Product_Grid.php:2146, ../includes/Elements/Twitter_Feed.php:574, ../includes/Elements/Woo_Cart.php:431, ../includes/Elements/Woo_Cart.php:479, ../includes/Elements/Woo_Cart.php:549, ../includes/Elements/Woo_Cart.php:561, ../includes/Elements/Woo_Cart.php:632, ../includes/Elements/Woo_Cart.php:710, ../includes/Elements/Woo_Cart.php:781, ../includes/Elements/Woo_Cart.php:905, ../includes/Elements/Woo_Cart.php:929, ../includes/Elements/Woo_Cart.php:966, ../includes/Elements/Woo_Cart.php:1010, ../includes/Elements/Woo_Cart.php:1023, ../includes/Elements/Woo_Cart.php:1038, ../includes/Elements/Woo_Cart.php:1053, ../includes/Elements/Woo_Cart.php:1068, ../includes/Elements/Woo_Cart.php:1083, ../includes/Elements/Woo_Cart.php:1098, ../includes/Elements/Woo_Checkout.php:334, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:639, ../includes/Elements/Woo_Product_Carousel.php:698, ../includes/Elements/Woo_Product_Gallery.php:531, ../includes/Elements/Woo_Product_Gallery.php:1014, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:592, ../includes/Traits/Controls.php:692, ../includes/Traits/Controls.php:722, ../includes/Traits/Controls.php:1002, ../includes/Traits/Controls.php:1051, ../includes/Traits/Controls.php:1080, ../includes/Traits/Controls.php:1148, ../includes/Traits/Controls.php:1183, ../includes/Traits/Controls.php:1220, ../includes/Traits/Controls.php:1319, ../includes/Traits/Controls.php:1339, ../includes/Traits/Controls.php:1368, ../includes/Traits/Controls.php:1384, ../includes/Traits/Controls.php:1401, ../includes/Traits/Controls.php:1434, ../includes/Traits/Controls.php:1450, ../includes/Traits/Controls.php:1469, ../includes/Traits/Controls.php:1485, ../includes/Traits/Controls.php:1501
|
1213 |
msgid "Hide"
|
1214 |
msgstr ""
|
1215 |
|
1261 |
msgid "Size"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:657, ../includes/Elements/Filterable_Gallery.php:2423, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:728, ../includes/Elements/GravityForms.php:1000, ../includes/Elements/Login_Register.php:3225, ../includes/Elements/Login_Register.php:3427, ../includes/Elements/Login_Register.php:4207, ../includes/Elements/Login_Register.php:4535, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:910, ../includes/Elements/Post_Timeline.php:220, ../includes/Elements/Woo_Checkout.php:2225, ../includes/Elements/Woo_Product_Carousel.php:2213, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
|
1265 |
msgid "Spacing"
|
1266 |
msgstr ""
|
1267 |
|
1285 |
msgid "File Not Found"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:1104, ../includes/Elements/Post_Timeline.php:781, ../includes/Elements/Product_Grid.php:3070, ../includes/Elements/Woo_Product_Gallery.php:2404, ../includes/Traits/Ajax_Handler.php:254
|
1289 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1290 |
msgstr ""
|
1291 |
|
1373 |
msgid "Area Spacing"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:443, ../includes/Elements/Pricing_Table.php:859, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1951
|
1377 |
msgid "Button Alignment"
|
1378 |
msgstr ""
|
1379 |
|
1409 |
msgid "Close Icon"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:680, ../includes/Elements/Countdown.php:868, ../includes/Elements/Countdown.php:940, ../includes/Elements/Countdown.php:1012, ../includes/Elements/Countdown.php:1084, ../includes/Elements/Creative_Button.php:423, ../includes/Elements/Cta_Box.php:1073, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Event_Calendar.php:834, ../includes/Elements/Facebook_Feed.php:803, ../includes/Elements/Filterable_Gallery.php:2725, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1101, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1753, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2376, ../includes/Elements/Interactive_Circle.php:367, ../includes/Elements/Interactive_Circle.php:577, ../includes/Elements/Interactive_Circle.php:647, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2058, ../includes/Elements/Product_Grid.php:802, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:1923, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Product_Grid.php:2314, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2649, ../includes/Elements/Product_Grid.php:2761, ../includes/Elements/Simple_Menu.php:998, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1402, ../includes/Elements/Sticky_Video.php:595, ../includes/Elements/Twitter_Feed.php:823, ../includes/Elements/Twitter_Feed.php:1397, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1510, ../includes/Elements/Woo_Cart.php:1873, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:910, ../includes/Elements/Woo_Checkout.php:1117, ../includes/Elements/Woo_Checkout.php:1564, ../includes/Elements/Woo_Checkout.php:1914, ../includes/Elements/Woo_Checkout.php:2031, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2308, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2672, ../includes/Elements/Woo_Checkout.php:2784, ../includes/Elements/Woo_Product_Carousel.php:992, ../includes/Elements/Woo_Product_Carousel.php:1370, ../includes/Elements/Woo_Product_Carousel.php:1494, ../includes/Elements/Woo_Product_Carousel.php:1662, ../includes/Elements/Woo_Product_Carousel.php:1757, ../includes/Elements/Woo_Product_Carousel.php:1871, ../includes/Elements/Woo_Product_Carousel.php:2316, ../includes/Elements/Woo_Product_Carousel.php:2743, ../includes/Elements/Woo_Product_Gallery.php:661, ../includes/Elements/Woo_Product_Gallery.php:1135, ../includes/Elements/Woo_Product_Gallery.php:1377, ../includes/Elements/Woo_Product_Gallery.php:1415, ../includes/Elements/Woo_Product_Gallery.php:1901, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2109, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1927, ../includes/Traits/Woo_Product_Comparable.php:1724
|
1413 |
msgid "Border Color"
|
1414 |
msgstr ""
|
1415 |
|
1485 |
msgid "Form Alignment"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Countdown.php:73, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:735, ../includes/Elements/Cta_Box.php:1158, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:760, ../includes/Elements/Login_Register.php:912, ../includes/Elements/Login_Register.php:1034, ../includes/Elements/Login_Register.php:1729, ../includes/Elements/Login_Register.php:2158, ../includes/Elements/Login_Register.php:2340, ../includes/Elements/Login_Register.php:2601, ../includes/Elements/Login_Register.php:2745, ../includes/Elements/Login_Register.php:2895, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3129, ../includes/Elements/Login_Register.php:3227, ../includes/Elements/Login_Register.php:3429, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/Login_Register.php:3506, ../includes/Elements/Login_Register.php:3837, ../includes/Elements/Login_Register.php:3969, ../includes/Elements/Login_Register.php:4209, ../includes/Elements/Login_Register.php:4537, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:484, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:399, ../includes/Elements/Simple_Menu.php:525, ../includes/Elements/Simple_Menu.php:885, ../includes/Elements/Simple_Menu.php:1196, ../includes/Elements/Sticky_Video.php:377, ../includes/Elements/Team_Member.php:403, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:129, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:580, ../includes/Traits/Controls.php:1997, ../includes/Traits/Login_Registration.php:1093, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:4, ../includes/Template/Woo-Product-Gallery/default.php:3
|
1489 |
msgid "Default"
|
1490 |
msgstr ""
|
1491 |
|
1625 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:872, ../includes/Elements/Cta_Box.php:1061, ../includes/Elements/Cta_Box.php:1234, ../includes/Elements/Cta_Box.php:1303, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:822, ../includes/Elements/Event_Calendar.php:954, ../includes/Elements/Event_Calendar.php:1021, ../includes/Elements/Event_Calendar.php:1075, ../includes/Elements/Event_Calendar.php:1187, ../includes/Elements/Event_Calendar.php:1279, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Event_Calendar.php:1743, ../includes/Elements/Event_Calendar.php:1852, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:651, ../includes/Elements/Facebook_Feed.php:664, ../includes/Elements/Facebook_Feed.php:749, ../includes/Elements/Facebook_Feed.php:762, ../includes/Elements/Facebook_Feed.php:833, ../includes/Elements/Facebook_Feed.php:871, ../includes/Elements/Facebook_Feed.php:911, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2284, ../includes/Elements/Flip_Box.php:1381, ../includes/Elements/Flip_Box.php:1465, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1555, ../includes/Elements/Product_Grid.php:1570, ../includes/Elements/Product_Grid.php:1630, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Product_Grid.php:2905, ../includes/Elements/Product_Grid.php:2962, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:777, ../includes/Elements/Team_Member.php:855, ../includes/Elements/Twitter_Feed.php:583, ../includes/Elements/Twitter_Feed.php:835, ../includes/Elements/Woo_Cart.php:1287, ../includes/Elements/Woo_Cart.php:1469, ../includes/Elements/Woo_Cart.php:1701, ../includes/Elements/Woo_Cart.php:2322, ../includes/Elements/Woo_Cart.php:2404, ../includes/Elements/Woo_Cart.php:2492, ../includes/Elements/Woo_Checkout.php:2009, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2097, ../includes/Elements/Woo_Product_Carousel.php:2011, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1053, ../includes/Elements/Woo_Product_Gallery.php:1107, ../includes/Elements/Woo_Product_Gallery.php:1119, ../includes/Elements/Woo_Product_Gallery.php:1165, ../includes/Elements/Woo_Product_Gallery.php:1332, ../includes/Elements/Woo_Product_Gallery.php:1366, ../includes/Elements/Woo_Product_Gallery.php:1404, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_Gallery.php:2310, ../includes/Traits/Controls.php:1669, ../includes/Traits/Controls.php:1723, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712
|
1629 |
msgid "Background"
|
1630 |
msgstr ""
|
1631 |
|
2041 |
msgid "Expire Message"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:604, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Info_Box.php:1350, ../includes/Elements/Post_Grid.php:604, ../includes/Elements/Post_Timeline.php:291, ../includes/Elements/Pricing_Table.php:899, ../includes/Elements/Twitter_Feed.php:868
|
2045 |
msgid "Title Style"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: ../includes/Elements/Countdown.php:1145, ../includes/Elements/Event_Calendar.php:1562, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1460, ../includes/Elements/Post_Grid.php:613, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Product_Grid.php:2445, ../includes/Elements/Product_Grid.php:2800, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:772, ../includes/Elements/Woo_Checkout.php:2391, ../includes/Elements/Woo_Checkout.php:2491, ../includes/Elements/Woo_Product_Carousel.php:1542, ../includes/Elements/Woo_Product_Carousel.php:1908, ../includes/Elements/Woo_Product_Gallery.php:1794, ../includes/Elements/Woo_Product_Gallery.php:2148, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249
|
2049 |
msgid "Title Color"
|
2050 |
msgstr ""
|
2051 |
|
2413 |
msgid "Icon Space"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: ../includes/Elements/Data_Table.php:773, ../includes/Elements/Post_Grid.php:639, ../includes/Elements/Post_Timeline.php:313
|
2417 |
msgid "Title Alignment"
|
2418 |
msgstr ""
|
2419 |
|
3293 |
msgid "Framed"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: ../includes/Elements/Feature_List.php:308, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:1266, ../includes/Elements/Post_Timeline.php:482, ../includes/Elements/Pricing_Table.php:399, ../includes/Elements/Tooltip.php:293, ../includes/Elements/Twitter_Feed.php:546, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:641, ../includes/Traits/Controls.php:2121
|
3297 |
msgid "Top"
|
3298 |
msgstr ""
|
3299 |
|
3537 |
msgid "Gallery Link Button?"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: ../includes/Elements/Filterable_Gallery.php:663, ../includes/Elements/Filterable_Gallery.php:670, ../includes/Elements/Filterable_Gallery.php:2454, ../includes/Elements/Twitter_Feed.php:353, ../includes/Elements/Twitter_Feed.php:1126, ../includes/Traits/Controls.php:1794
|
3541 |
msgid "Load More Button"
|
3542 |
msgstr ""
|
3543 |
|
3749 |
msgid "Middle"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:490, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Tooltip.php:294, ../includes/Elements/Twitter_Feed.php:554, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:643, ../includes/Traits/Controls.php:2125
|
3753 |
msgid "Bottom"
|
3754 |
msgstr ""
|
3755 |
|
4121 |
msgid "Show Content"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: ../includes/Elements/Info_Box.php:327, ../includes/Elements/Post_Grid.php:746
|
4125 |
msgid "Content Height"
|
4126 |
msgstr ""
|
4127 |
|
4149 |
msgid "Image Shape"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: ../includes/Elements/Info_Box.php:615, ../includes/Elements/Info_Box.php:843, ../includes/Elements/Info_Box.php:1076, ../includes/Elements/Interactive_Circle.php:280, ../includes/Elements/Post_Grid.php:933, ../includes/Elements/Simple_Menu.php:633
|
4153 |
msgid "Animation"
|
4154 |
msgstr ""
|
4155 |
|
5617 |
msgid "Meta Style"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
+
#: ../includes/Elements/Post_Grid.php:570, ../includes/Elements/Post_Grid.php:582, ../includes/Traits/Controls.php:1348
|
5621 |
msgid "Meta Position"
|
5622 |
msgstr ""
|
5623 |
|
5624 |
+
#: ../includes/Elements/Post_Grid.php:596
|
5625 |
msgid "Color, Typography & Spacing"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
+
#: ../includes/Elements/Post_Grid.php:626
|
5629 |
msgid "Title Hover Color"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
+
#: ../includes/Elements/Post_Grid.php:686, ../includes/Elements/Post_Timeline.php:350
|
5633 |
msgid "Excerpt Style"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: ../includes/Elements/Post_Grid.php:695, ../includes/Elements/Post_Timeline.php:359
|
5637 |
msgid "Excerpt Color"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
+
#: ../includes/Elements/Post_Grid.php:707, ../includes/Elements/Post_Timeline.php:371
|
5641 |
msgid "Excerpt Alignment"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Tooltip.php:224, ../includes/Elements/Tooltip.php:392
|
5645 |
msgid "Justified"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: ../includes/Elements/Post_Grid.php:737, ../includes/Elements/Post_Timeline.php:401
|
5649 |
msgid "Excerpt Typography"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: ../includes/Elements/Post_Grid.php:779
|
5653 |
msgid "Terms Style"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: ../includes/Elements/Post_Grid.php:790
|
5657 |
msgid "Terms Color"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: ../includes/Elements/Post_Grid.php:829
|
5661 |
msgid "Meta Typography"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: ../includes/Elements/Post_Grid.php:852
|
5665 |
msgid "Terms"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: ../includes/Elements/Post_Grid.php:925
|
5669 |
msgid "Hover Card Style"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: ../includes/Elements/Post_Grid.php:938
|
5673 |
msgid "FadeIn"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: ../includes/Elements/Post_Grid.php:939, ../includes/Elements/Simple_Menu.php:638
|
5677 |
msgid "ZoomIn"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: ../includes/Elements/Post_Grid.php:940
|
5681 |
msgid "SlideUp"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: ../includes/Elements/Post_Grid.php:948
|
5685 |
msgid "Post Hover Icon"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: ../includes/Elements/Post_Grid.php:976
|
5689 |
msgid "Cards Radius"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: ../includes/Elements/Post_Grid.php:999
|
5693 |
msgid "Icon font size"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: ../includes/Elements/Post_Grid.php:1108
|
5697 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
5698 |
msgstr ""
|
5699 |
|
6165 |
msgid "Products Count"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: ../includes/Elements/Product_Grid.php:407, ../includes/Elements/Woo_Product_Carousel.php:768, ../includes/Elements/Woo_Product_Gallery.php:426, ../includes/Traits/Controls.php:187, ../includes/Traits/Controls.php:317, ../includes/Traits/Controls.php:2037, ../includes/Traits/Controls.php:2076, ../includes/Traits/Controls.php:2139, ../includes/Traits/Controls.php:2177
|
6169 |
msgid "Offset"
|
6170 |
msgstr ""
|
6171 |
|
6626 |
msgid "Sticky"
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2122, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:489, ../includes/Traits/Controls.php:620, ../includes/Traits/Controls.php:637, ../includes/Traits/Controls.php:1993, ../includes/Traits/Woo_Product_Comparable.php:1473
|
6630 |
msgid "Position"
|
6631 |
msgstr ""
|
6632 |
|
7178 |
msgid "Card Settings"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
+
#: ../includes/Elements/Twitter_Feed.php:275, ../includes/Traits/Controls.php:1365, ../includes/Traits/Controls.php:1398, ../includes/Traits/Controls.php:1466
|
7182 |
msgid "Show Avatar"
|
7183 |
msgstr ""
|
7184 |
|
7185 |
+
#: ../includes/Elements/Twitter_Feed.php:287, ../includes/Traits/Controls.php:1498
|
7186 |
msgid "Show Date"
|
7187 |
msgstr ""
|
7188 |
|
7382 |
msgid "Table Items"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: ../includes/Elements/Woo_Cart.php:384, ../includes/Elements/Woo_Cart.php:392, ../includes/Traits/Controls.php:1306
|
7386 |
msgid ""
|
7387 |
msgstr ""
|
7388 |
|
7782 |
msgid "Max Terms to Show"
|
7783 |
msgstr ""
|
7784 |
|
7785 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:370, ../includes/Traits/Controls.php:2265
|
7786 |
msgid "Not Found Message"
|
7787 |
msgstr ""
|
7788 |
|
8562 |
msgid "Show Post Terms"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
+
#: ../includes/Traits/Controls.php:1303
|
8566 |
+
msgid "Terms Separator"
|
8567 |
+
msgstr ""
|
8568 |
+
|
8569 |
+
#: ../includes/Traits/Controls.php:1316
|
8570 |
+
msgid "Show Terms on Image Hover"
|
8571 |
+
msgstr ""
|
8572 |
+
|
8573 |
+
#: ../includes/Traits/Controls.php:1336
|
8574 |
msgid "Show Meta"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: ../includes/Traits/Controls.php:1352
|
8578 |
msgid "Entry Header"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
+
#: ../includes/Traits/Controls.php:1353
|
8582 |
msgid "Entry Footer"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
+
#: ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1431, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1482
|
8586 |
msgid "Show Author Name"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: ../includes/Traits/Controls.php:1601
|
8590 |
msgid "Read More Button Style"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: ../includes/Traits/Controls.php:1998
|
8594 |
msgid "Absolute"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
+
#: ../includes/Traits/Controls.php:2012
|
8598 |
msgid "Horizontal Orientation"
|
8599 |
msgstr ""
|
8600 |
|
8601 |
+
#: ../includes/Traits/Controls.php:2115
|
8602 |
msgid "Vertical Orientation"
|
8603 |
msgstr ""
|
8604 |
|
8605 |
+
#: ../includes/Traits/Controls.php:2234
|
8606 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
8607 |
msgstr ""
|
8608 |
|
8609 |
+
#: ../includes/Traits/Controls.php:2221
|
8610 |
msgid "Table ID"
|
8611 |
msgstr ""
|
8612 |
|
8613 |
+
#: ../includes/Traits/Controls.php:2255
|
8614 |
msgid "EventON (Pro) "
|
8615 |
msgstr ""
|
8616 |
|
8617 |
+
#: ../includes/Traits/Controls.php:2253
|
8618 |
msgid "EventON"
|
8619 |
msgstr ""
|
8620 |
|
8621 |
+
#: ../includes/Traits/Controls.php:2272
|
8622 |
msgid "Style the message when no posts are found."
|
8623 |
msgstr ""
|
8624 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 5.4.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -242,6 +242,14 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
242 |
|
243 |
== Changelog ==
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
= 5.4.1 - 27/10/2022 =
|
246 |
|
247 |
- Fixed: EA Login / Register Form | Security token did not match error
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 5.4.2
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
242 |
|
243 |
== Changelog ==
|
244 |
|
245 |
+
= 5.4.2 - 31/10/2022 =
|
246 |
+
|
247 |
+
- Fixed: EA Login / Register Form | Security token did not match error
|
248 |
+
- Fixed: EA Scroll to Top | Throwing Uncaught ReferenceError
|
249 |
+
- Fixed: EA Post Grid | Preset 2 & 3 not displaying authors & avatars
|
250 |
+
- Fixed: EA Login / Register Form | Custom template for Register User Email option not working
|
251 |
+
- Few minor bug fixes & improvements
|
252 |
+
|
253 |
= 5.4.1 - 27/10/2022 =
|
254 |
|
255 |
- Fixed: EA Login / Register Form | Security token did not match error
|