Elementor Essential Addons - Version 4.2.2

Version Description

  • 27/08/2020 =
  • Fixed: Sorting not working when Pagination is disabled in EA Advanced Data Table
  • Added: Styling controls for reCAPTCHA in EA Login | Register Form
  • Added: Translatable Strings in EA Login | Register Form
  • Added: Options to change the Error Messages in EA Login | Register Form
  • Few minor bugfix and improvements
Download this release

Release Info

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

Code changes from version 4.2.1 to 4.2.2

Files changed (41) hide show
  1. assets/admin/css/admin.css +31 -1
  2. assets/admin/js/admin.js +294 -221
  3. assets/front-end/css/view/login-register.css +45 -0
  4. assets/front-end/css/view/login-register.min.css +1 -1
  5. assets/front-end/js/view/advanced-data-table.js +1 -1
  6. assets/front-end/js/view/advanced-data-table.min.js +1 -1
  7. assets/front-end/js/view/login-register.js +1 -1
  8. assets/front-end/js/view/login-register.min.js +1 -1
  9. essential_adons_elementor.php +2 -3
  10. includes/Elements/Adv_Accordion.php +9 -9
  11. includes/Elements/Adv_Tabs.php +6 -6
  12. includes/Elements/Contact_Form_7.php +4 -4
  13. includes/Elements/Content_Ticker.php +3 -3
  14. includes/Elements/Countdown.php +2 -2
  15. includes/Elements/Creative_Button.php +2 -2
  16. includes/Elements/Cta_Box.php +11 -11
  17. includes/Elements/Data_Table.php +11 -11
  18. includes/Elements/Dual_Color_Header.php +5 -5
  19. includes/Elements/Event_Calendar.php +1 -1
  20. includes/Elements/Facebook_Feed.php +3 -3
  21. includes/Elements/Fancy_Text.php +8 -8
  22. includes/Elements/Filterable_Gallery.php +47 -47
  23. includes/Elements/Flip_Box.php +19 -19
  24. includes/Elements/Info_Box.php +35 -35
  25. includes/Elements/Login_Register.php +687 -501
  26. includes/Elements/Pricing_Table.php +1 -1
  27. includes/Elements/Progress_Bar.php +1 -1
  28. includes/Elements/Team_Member.php +32 -32
  29. includes/Elements/Testimonial.php +7 -7
  30. includes/Elements/Tooltip.php +5 -5
  31. includes/Elements/Twitter_Feed.php +3 -3
  32. includes/Elements/WeForms.php +2 -2
  33. includes/Traits/Admin.php +47 -8
  34. includes/Traits/Elements.php +4 -0
  35. includes/Traits/Enqueue.php +6 -2
  36. includes/Traits/Generator.php +8 -0
  37. includes/Traits/Helper.php +1 -1
  38. includes/Traits/Login_Registration.php +99 -57
  39. includes/templates/admin/elements.php +11 -9
  40. languages/essential-addons-for-elementor-lite.pot +4989 -3604
  41. readme.txt +8 -1
assets/admin/css/admin.css CHANGED
@@ -955,4 +955,34 @@ button.eael-btn.eael-global-control-disable:hover {
955
  #eael-css-print-method,
956
  #eael-js-print-method {
957
  margin: 0 0 8px 0;
958
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
  #eael-css-print-method,
956
  #eael-js-print-method {
957
  margin: 0 0 8px 0;
958
+ }
959
+
960
+ /*----LR-Settings Modal---*/
961
+ .sf-group{
962
+ width: calc(100% - 30px);
963
+ display: flex;
964
+ flex-wrap: wrap;
965
+ justify-content: center;
966
+ align-items: center;
967
+ }
968
+ .sf-group input{
969
+ padding: 10px;
970
+ margin: 0 0 10px 10px;
971
+ display: block;
972
+ line-height: 2;
973
+ min-height: 30px;
974
+ border-radius: 5px;
975
+ outline: none;
976
+ border: 1px solid gray;
977
+ width: calc(75% - 10px);
978
+ }
979
+ .sf-group input:focus{
980
+ border: 2px solid #007cba;
981
+ }
982
+ .sf-group input:last-child{
983
+ margin: 0;
984
+ }
985
+ .sf-group label{
986
+ width:25%;
987
+ max-width: 200px;
988
+ }
assets/admin/js/admin.js CHANGED
@@ -1,225 +1,298 @@
1
  (function ($) {
2
- "use strict";
3
- /**
4
- * Eael Tabs
5
- */
6
- $(".eael-tabs li a").on("click", function (e) {
7
- e.preventDefault();
8
- $(".eael-tabs li a").removeClass("active");
9
- $(this).addClass("active");
10
- var tab = $(this).attr("href");
11
- $(".eael-settings-tab").removeClass("active");
12
- $(".eael-settings-tabs").find(tab).addClass("active");
13
- });
14
-
15
- $(".eael-get-pro").on("click", function () {
16
- Swal.fire({
17
- type: "warning",
18
- title: "<h2><span>Go</span> Premium",
19
- html:
20
- 'Purchase our <b><a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" rel="nofollow">premium version</a></b> to unlock these pro components!',
21
- showConfirmButton: false,
22
- timer: 3000,
23
- });
24
- });
25
-
26
- // Save Button reacting on any changes
27
- var saveButton = $(".js-eael-settings-save");
28
-
29
- $(".eael-checkbox input:enabled").on("click", function (e) {
30
- saveButton
31
- .addClass("save-now")
32
- .removeAttr("disabled")
33
- .css("cursor", "pointer");
34
- });
35
-
36
- // Saving Data With Ajax Request
37
- $(".js-eael-settings-save").on("click", function (event) {
38
- event.preventDefault();
39
-
40
- var _this = $(this);
41
-
42
- if ($(this).hasClass("save-now")) {
43
- $.ajax({
44
- url: localize.ajaxurl,
45
- type: "post",
46
- data: {
47
- action: "save_settings_with_ajax",
48
- security: localize.nonce,
49
- fields: $("form#eael-settings").serialize(),
50
- },
51
- beforeSend: function () {
52
- _this.html(
53
- '<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>Saving Data..</span>'
54
- );
55
- },
56
- success: function (response) {
57
- setTimeout(function () {
58
- _this.html("Save Settings");
59
- Swal.fire({
60
- type: "success",
61
- title: "Settings Saved!",
62
- footer: "Have Fun :-)",
63
- showConfirmButton: false,
64
- timer: 2000,
65
- });
66
- saveButton.removeClass("save-now");
67
- }, 500);
68
- },
69
- error: function () {
70
- Swal.fire({
71
- type: "error",
72
- title: "Oops...",
73
- text: "Something went wrong!",
74
- });
75
- },
76
- });
77
- } else {
78
- $(this).attr("disabled", "true").css("cursor", "not-allowed");
79
- }
80
- });
81
-
82
- // Regenerate Assets
83
- $("#eael-regenerate-files").on("click", function (e) {
84
- e.preventDefault();
85
- var _this = $(this);
86
-
87
- $.ajax({
88
- url: localize.ajaxurl,
89
- type: "post",
90
- data: {
91
- action: "clear_cache_files_with_ajax",
92
- security: localize.nonce,
93
- },
94
- beforeSend: function () {
95
- _this.html(
96
- '<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>Generating...</span>'
97
- );
98
- },
99
- success: function (response) {
100
- setTimeout(function () {
101
- _this.html("Regenerate Assets");
102
-
103
- Swal.fire({
104
- type: "success",
105
- title: "Assets Regenerated!",
106
- showConfirmButton: false,
107
- timer: 2000,
108
- });
109
- }, 1000);
110
- },
111
- error: function () {
112
- Swal.fire({
113
- type: "error",
114
- title: "Ops!",
115
- footer: "Something went wrong!",
116
- showConfirmButton: false,
117
- timer: 2000,
118
- });
119
- },
120
- });
121
- });
122
-
123
- // Elements global control
124
- $(document).on("click", ".eael-global-control-enable", function (e) {
125
- e.preventDefault();
126
-
127
- $(".eael-checkbox-container .eael-checkbox input:enabled").each(function (
128
- i
129
- ) {
130
- $(this).prop("checked", true).change();
131
- });
132
-
133
- saveButton
134
- .addClass("save-now")
135
- .removeAttr("disabled")
136
- .css("cursor", "pointer");
137
- });
138
-
139
- $(document).on("click", ".eael-global-control-disable", function (e) {
140
- e.preventDefault();
141
-
142
- $(".eael-checkbox-container .eael-checkbox input:enabled").each(function (
143
- i
144
- ) {
145
- $(this).prop("checked", false).change();
146
- });
147
-
148
- saveButton
149
- .addClass("save-now")
150
- .removeAttr("disabled")
151
- .css("cursor", "pointer");
152
- });
153
-
154
- // Popup
155
- $(document).on("click", ".eael-admin-settings-popup", function (e) {
156
- e.preventDefault();
157
-
158
- var title = $(this).data("title");
159
- var placeholder = $(this).data("placeholder");
160
- var type = $(this).data("option") || "text";
161
- var options = $(this).data("options") || {};
162
- var prepareOptions = {};
163
- var target = $(this).data("target");
164
- var val = $(target).val();
165
- var docSelector = $(this).data("doc");
166
- var docMarkup = docSelector
167
- ? $(docSelector).clone().css("display", "block")
168
- : false;
169
-
170
- if (Object.keys(options).length > 0) {
171
- prepareOptions["all"] = "All";
172
-
173
- for (var index in options) {
174
- prepareOptions[index] = options[index].toUpperCase();
175
- }
176
- }
177
-
178
- Swal.fire({
179
- title: title,
180
- input: type,
181
- inputPlaceholder: placeholder,
182
- inputValue: val,
183
- inputOptions: prepareOptions,
184
- footer: docMarkup,
185
- preConfirm: function (res) {
186
- $(target).val(res);
187
-
188
- saveButton
189
- .addClass("save-now")
190
- .removeAttr("disabled")
191
- .css("cursor", "pointer");
192
- },
193
- });
194
- });
195
-
196
- $("#eael-js-print-method").on("change", function (evt) {
197
- var printMethod = $(this).val();
198
- saveButton
199
- .addClass("save-now")
200
- .removeAttr("disabled")
201
- .css("cursor", "pointer");
202
-
203
- if (printMethod === "internal") {
204
- $(".eael-external-printjs").hide();
205
- $(".eael-internal-printjs").show();
206
- } else {
207
- $(".eael-external-printjs").show();
208
- $(".eael-internal-printjs").hide();
209
- }
210
- });
211
-
212
-
213
- /**
214
- * Open a popup for typeform auth2 authentication
215
- */
216
- $("#eael-typeform-get-access").on('click',function (e) {
217
- e.preventDefault();
218
- var link = $(this).data("link");
219
- if(link!=''){
220
- window.open(link,'mywindowtitle','width=500,height=500,left=500,top=200');
221
- }
222
- })
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
 
224
  })(jQuery);
225
 
1
  (function ($) {
2
+ "use strict";
3
+ /**
4
+ * Eael Tabs
5
+ */
6
+ $(".eael-tabs li a").on("click", function (e) {
7
+ e.preventDefault();
8
+ $(".eael-tabs li a").removeClass("active");
9
+ $(this).addClass("active");
10
+ var tab = $(this).attr("href");
11
+ $(".eael-settings-tab").removeClass("active");
12
+ $(".eael-settings-tabs").find(tab).addClass("active");
13
+ });
14
+
15
+ $(".eael-get-pro").on("click", function () {
16
+ Swal.fire({
17
+ type: "warning",
18
+ title: "<h2><span>Go</span> Premium",
19
+ html:
20
+ 'Purchase our <b><a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" rel="nofollow">premium version</a></b> to unlock these pro components!',
21
+ showConfirmButton: false,
22
+ timer: 3000,
23
+ });
24
+ });
25
+
26
+ // Save Button reacting on any changes
27
+ var saveButton = $(".js-eael-settings-save");
28
+
29
+ $(".eael-checkbox input:enabled").on("click", function (e) {
30
+ saveButton
31
+ .addClass("save-now")
32
+ .removeAttr("disabled")
33
+ .css("cursor", "pointer");
34
+ });
35
+
36
+ // Saving Data With Ajax Request
37
+ $(".js-eael-settings-save").on("click", function (event) {
38
+ event.preventDefault();
39
+
40
+ var _this = $(this);
41
+
42
+ if ($(this).hasClass("save-now")) {
43
+ $.ajax({
44
+ url: localize.ajaxurl,
45
+ type: "post",
46
+ data: {
47
+ action: "save_settings_with_ajax",
48
+ security: localize.nonce,
49
+ fields: $("form#eael-settings").serialize(),
50
+ },
51
+ beforeSend: function () {
52
+ _this.html(
53
+ '<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>Saving Data..</span>'
54
+ );
55
+ },
56
+ success: function (response) {
57
+ setTimeout(function () {
58
+ _this.html("Save Settings");
59
+ Swal.fire({
60
+ type: "success",
61
+ title: "Settings Saved!",
62
+ footer: "Have Fun :-)",
63
+ showConfirmButton: false,
64
+ timer: 2000,
65
+ });
66
+ saveButton.removeClass("save-now");
67
+ }, 500);
68
+ },
69
+ error: function () {
70
+ Swal.fire({
71
+ type: "error",
72
+ title: "Oops...",
73
+ text: "Something went wrong!",
74
+ });
75
+ },
76
+ });
77
+ } else {
78
+ $(this).attr("disabled", "true").css("cursor", "not-allowed");
79
+ }
80
+ });
81
+
82
+ // Regenerate Assets
83
+ $("#eael-regenerate-files").on("click", function (e) {
84
+ e.preventDefault();
85
+ var _this = $(this);
86
+
87
+ $.ajax({
88
+ url: localize.ajaxurl,
89
+ type: "post",
90
+ data: {
91
+ action: "clear_cache_files_with_ajax",
92
+ security: localize.nonce,
93
+ },
94
+ beforeSend: function () {
95
+ _this.html(
96
+ '<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>Generating...</span>'
97
+ );
98
+ },
99
+ success: function (response) {
100
+ setTimeout(function () {
101
+ _this.html("Regenerate Assets");
102
+
103
+ Swal.fire({
104
+ type: "success",
105
+ title: "Assets Regenerated!",
106
+ showConfirmButton: false,
107
+ timer: 2000,
108
+ });
109
+ }, 1000);
110
+ },
111
+ error: function () {
112
+ Swal.fire({
113
+ type: "error",
114
+ title: "Ops!",
115
+ footer: "Something went wrong!",
116
+ showConfirmButton: false,
117
+ timer: 2000,
118
+ });
119
+ },
120
+ });
121
+ });
122
+
123
+ // Elements global control
124
+ $(document).on("click", ".eael-global-control-enable", function (e) {
125
+ e.preventDefault();
126
+
127
+ $(".eael-checkbox-container .eael-checkbox input:enabled").each(function (
128
+ i
129
+ ) {
130
+ $(this).prop("checked", true).change();
131
+ });
132
+
133
+ saveButton
134
+ .addClass("save-now")
135
+ .removeAttr("disabled")
136
+ .css("cursor", "pointer");
137
+ });
138
+
139
+ $(document).on("click", ".eael-global-control-disable", function (e) {
140
+ e.preventDefault();
141
+
142
+ $(".eael-checkbox-container .eael-checkbox input:enabled").each(function (
143
+ i
144
+ ) {
145
+ $(this).prop("checked", false).change();
146
+ });
147
+
148
+ saveButton
149
+ .addClass("save-now")
150
+ .removeAttr("disabled")
151
+ .css("cursor", "pointer");
152
+ });
153
+
154
+ // Popup
155
+ $(document).on("click", ".eael-admin-settings-popup", function (e) {
156
+ e.preventDefault();
157
+
158
+ var title = $(this).data("title");
159
+ var placeholder = $(this).data("placeholder");
160
+ var type = $(this).data("option") || "text";
161
+ var options = $(this).data("options") || {};
162
+ var prepareOptions = {};
163
+ var target = $(this).data("target");
164
+ var val = $(target).val();
165
+ var docSelector = $(this).data("doc");
166
+ var docMarkup = docSelector
167
+ ? $(docSelector).clone().css("display", "block")
168
+ : false;
169
+
170
+ if (Object.keys(options).length > 0) {
171
+ prepareOptions["all"] = "All";
172
+
173
+ for (var index in options) {
174
+ prepareOptions[index] = options[index].toUpperCase();
175
+ }
176
+ }
177
+
178
+ Swal.fire({
179
+ title: title,
180
+ input: type,
181
+ inputPlaceholder: placeholder,
182
+ inputValue: val,
183
+ inputOptions: prepareOptions,
184
+ footer: docMarkup,
185
+ preConfirm: function (res) {
186
+ $(target).val(res);
187
+
188
+ saveButton
189
+ .addClass("save-now")
190
+ .removeAttr("disabled")
191
+ .css("cursor", "pointer");
192
+ },
193
+ });
194
+ });
195
+
196
+ $("#eael-js-print-method").on("change", function (evt) {
197
+ var printMethod = $(this).val();
198
+ saveButton
199
+ .addClass("save-now")
200
+ .removeAttr("disabled")
201
+ .css("cursor", "pointer");
202
+
203
+ if (printMethod === "internal") {
204
+ $(".eael-external-printjs").hide();
205
+ $(".eael-internal-printjs").show();
206
+ } else {
207
+ $(".eael-external-printjs").show();
208
+ $(".eael-internal-printjs").hide();
209
+ }
210
+ });
211
+
212
+
213
+ /**
214
+ * Open a popup for typeform auth2 authentication
215
+ */
216
+ $("#eael-typeform-get-access").on('click', function (e) {
217
+ e.preventDefault();
218
+ var link = $(this).data("link");
219
+ if (link != '') {
220
+ window.open(link, 'mywindowtitle', 'width=500,height=500,left=500,top=200');
221
+ }
222
+ });
223
+
224
+ // New Sweet Alert Forms for admin settings | Login & Register Settings
225
+ $(document).on('click', '#eael-admin-settings-popup-extended', function (e) {
226
+ e.preventDefault();
227
+ const lr_i18n = localize.i18n.login_register;
228
+ let settingsNodeId = $(this).data('settings-id');
229
+ let $dnode = $('#'+settingsNodeId);
230
+ let rSitekey = $dnode.data('r-sitekey');
231
+ let rSecret = $dnode.data('r-secret');
232
+ let footerLink = `<a target="_blank" href="https://www.google.com/recaptcha/admin/create">${lr_i18n.m_footer}</a>`
233
+
234
+ let html = `<div class="eael-lr-settings-fields" id="lr_settings_fields">
235
+ <h2>${lr_i18n.r_title}</h2>
236
+ <div class="sf-group">
237
+ <label for="lr_recaptcha_sitekey">${lr_i18n.r_sitekey}:</label>
238
+ <input value="${rSitekey}" name="lr_recaptcha_sitekey" id="lr_recaptcha_sitekey" placeholder="${lr_i18n.r_sitekey}"/><br/>
239
+ </div>
240
+ <div class="sf-group">
241
+ <label for="lr_recaptcha_secret">${lr_i18n.r_sitesecret}:</label>
242
+ <input value="${rSecret}" name="lr_recaptcha_secret" id="lr_recaptcha_secret" placeholder="${lr_i18n.r_sitesecret}"/><br/>
243
+ </div>
244
+ `;
245
+
246
+ html += '</div>'
247
+
248
+ Swal.fire({
249
+ title: `<strong>${lr_i18n.m_title}</strong>`,
250
+ html: html,
251
+ footer: footerLink,
252
+ showCloseButton: true,
253
+ showCancelButton: true,
254
+ focusConfirm: false,
255
+ confirmButtonText: lr_i18n.save,
256
+ cancelButtonText: lr_i18n.cancel,
257
+ preConfirm: () => {
258
+ return {
259
+ recaptchaSiteKey: document.getElementById('lr_recaptcha_sitekey').value,
260
+ recaptchaSiteSecret: document.getElementById('lr_recaptcha_secret').value,
261
+ }
262
+ }
263
+ }).then((result) => {
264
+ if (result.value){
265
+ $.ajax({
266
+ url: localize.ajaxurl,
267
+ type: "POST",
268
+ data: {
269
+ action: "save_settings_with_ajax",
270
+ security: localize.nonce,
271
+ fields: $.param(result.value),
272
+ is_login_register: 1,
273
+ },
274
+ success: function (response) {
275
+ if (response.success){
276
+ Swal.fire({
277
+ type: "success",
278
+ title: response.message ? response.message : lr_i18n.rm_title,
279
+ footer: lr_i18n.rm_footer,
280
+ showConfirmButton: true,
281
+ timer: 5000,
282
+ });
283
+ }
284
+ },
285
+ error: function (err) {
286
+ Swal.fire({
287
+ type: "error",
288
+ title: lr_i18n.e_title,
289
+ text: lr_i18n.e_text,
290
+ });
291
+ },
292
+ });
293
+ }
294
+ });
295
+ });
296
 
297
  })(jQuery);
298
 
assets/front-end/css/view/login-register.css CHANGED
@@ -428,3 +428,48 @@
428
  opacity: 0.6;
429
  }
430
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  opacity: 0.6;
429
  }
430
  }
431
+ .lr-social-login-container {
432
+ margin-top: 1rem;
433
+ }
434
+ .lr-social-login-container .lr-separator {
435
+ width: 100%;
436
+ text-align: center;
437
+ }
438
+ .lr-social-login-container .lr-separator p {
439
+ padding: 0;
440
+ margin: 0;
441
+ }
442
+ .lr-social-login-container .lr-separator hr {
443
+ width: 100%;
444
+ height: 1px;
445
+ background: gray;
446
+ }
447
+ .lr-social-login-container .lr-social-buttons-container {
448
+ display: -webkit-box;
449
+ display: -ms-flexbox;
450
+ display: flex;
451
+ -ms-flex-wrap: wrap;
452
+ flex-wrap: wrap;
453
+ }
454
+ .lr-social-login-container .eael-social-button {
455
+ display: -webkit-box;
456
+ display: -ms-flexbox;
457
+ display: flex;
458
+ max-width: 100%;
459
+ -webkit-box-pack: space-evenly;
460
+ -ms-flex-pack: space-evenly;
461
+ justify-content: space-evenly;
462
+ -webkit-box-align: center;
463
+ -ms-flex-align: center;
464
+ align-items: center;
465
+ padding-top: 10px;
466
+ margin-left: auto;
467
+ margin-right: auto;
468
+ cursor: pointer;
469
+ }
470
+ .lr-social-login-container .eael-social-button.eael-google {
471
+ width: 175px;
472
+ }
473
+ .lr-social-login-container .eael-social-button.eael-facebook {
474
+ width: 190px;
475
+ }
assets/front-end/css/view/login-register.min.css CHANGED
@@ -1 +1 @@
1
- .eael-w-10{width:10%}.eael-w-20{width:20%}.eael-w-25{width:25%}.eael-w-30{width:30%}.eael-w-33{width:33%}.eael-w-40{width:40%}.eael-w-50{width:50%}.eael-w-60{width:60%}.eael-w-66{width:66%}.eael-w-70{width:70%}.eael-w-75{width:75%}.eael-w-80{width:80%}.eael-w-90{width:90%}.eael-w-100{width:100%}.d-none{display:none}.d-ib{display:inline-block}.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}.fd-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.fd-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-lr-form-wrapper{width:370px;margin:0 auto;background-color:#fff;padding:35px;border-radius:10px;-webkit-box-shadow:0 0 37.5px 14px rgba(2,8,53,.06);box-shadow:0 0 37.5px 14px rgba(2,8,53,.06)}.eael-lr-form-wrapper.style-2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:0;border-radius:0}@media(max-width: 767px){.eael-lr-form-wrapper.style-2{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.eael-lr-form-wrapper.style-2 .lr-form-illustration{width:50%;background-repeat:no-repeat;background-size:cover;background-position:center;position:relative;z-index:1}@media(max-width: 767px){.eael-lr-form-wrapper.style-2 .lr-form-illustration{padding-bottom:200px}}.eael-lr-form-wrapper.style-2 .lr-form-wrapper{padding:35px;width:370px}.eael-lr-form-wrapper .eael-lr-form-group{margin-bottom:1rem}.eael-lr-form-wrapper .eael-lr-form-group label{display:inline-block;margin-bottom:.5rem}.eael-lr-form-wrapper .eael-lr-form-group label.mark-required{position:relative}.eael-lr-form-wrapper .eael-lr-form-group label.mark-required::after{content:" *";color:red;position:absolute;line-height:0;top:17px;right:-10px}.eael-lr-form-wrapper .eael-lr-form-group .eael-lr-form-control{display:block;width:100%;padding:15px;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #cfcfe8;border-radius:3px;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;outline:none}.eael-lr-form-wrapper .eael-forever-forget{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.9em}.eael-lr-form-wrapper .eael-forever-forget .forget-menot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-lr-form-wrapper .eael-forever-forget .forget-menot label{margin:0 0 0 10px}.eael-lr-form-wrapper .eael-forever-forget .forget-menot,.eael-lr-form-wrapper .eael-forever-forget .forget-pass{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:0}.eael-lr-form-wrapper .eael-forever-forget .forget-pass{text-align:right}.eael-lr-form-wrapper .eael-lr-password-wrapper{position:relative}.eael-lr-form-wrapper .eael-lr-password-wrapper button{position:absolute;top:0;right:0;height:100%;background:transparent;border:none;color:red}.eael-lr-form-wrapper .eael-lr-btn{background-color:#744ffb;color:#fff;position:relative;overflow:hidden;display:inline-block;vertical-align:top;text-decoration:none;border:none;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;padding:15px;width:130px}.eael-lr-form-wrapper .eael-lr-btn.eael-lr-btn-block{display:block}.eael-lr-form-wrapper .eael-lr-btn.eael-lr-btn-inline{display:inline-block}.eael-lr-form-wrapper .eael-lr-link{display:inline-block}.eael-lr-form-wrapper .eael-sign-wrapper{text-align:center;padding:20px 0 0}.eael-lr-form-wrapper .lr-form-header.header-inline{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-lr-form-wrapper .lr-form-header.header-inline .form-logo{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.eael-lr-form-wrapper .lr-form-header.header-inline .form-dsc{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding-left:15px}.eael-lr-form-wrapper .lr-form-header img{width:100px}.eael-lr-form-wrapper .lr-form-header h4{font-size:18px;font-weight:500;margin-top:0}.eael-lr-form-wrapper .lr-form-header p{font-size:14px}.eael-lr-form-wrapper .eael-form-msg{display:block;width:100%;margin-top:1rem;font-size:1rem;padding:10px 15px;border-top-right-radius:8px;border-bottom-right-radius:8px}.eael-lr-form-wrapper .eael-form-msg.invalid{color:#721c24;background-color:#f8d7da;border-left:3px solid red}.eael-lr-form-wrapper .eael-form-msg.valid{color:#155724;background-color:#d4edda;border-left:3px solid green}.eael-lr-form-wrapper ul,.eael-lr-form-wrapper ol,.eael-lr-form-wrapper .eael-form-msg ul,.eael-lr-form-wrapper .eael-form-msg ol{margin:0;padding-left:30px}.eael-lr-form-wrapper ul li:not(:last-child),.eael-lr-form-wrapper ol li:not(:last-child),.eael-lr-form-wrapper .eael-form-msg ul li:not(:last-child),.eael-lr-form-wrapper .eael-form-msg ol li:not(:last-child){padding-bottom:10px}.eael-lr-form-wrapper .eael_accept_tnc_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-lr-form-wrapper .eael_accept_tnc_wrap .eael-lr-tnc-link{margin-left:5px;display:inline-block}.eael-lr-form-wrapper .eael-recaptcha-wrapper{margin-bottom:1rem}.eael-lr-form-wrapper .eael-lr-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@supports(-webkit-appearance: none) or (-moz-appearance: none){.eael-lr-form-wrapper input[type=checkbox]{--active: #275EFE;--active-inner: #fff;--focus: 0;--border: #b7b7b7;--border-hover: var(--active);--background: #fff;--disabled: #F6F8FF;--disabled-inner: #E1E6F9;-webkit-appearance:none;-moz-appearance:none;height:18px;outline:none;display:inline-block;vertical-align:top;position:relative;top:2px;margin:0;cursor:pointer;border:2px solid var(--bc, var(--border));background:var(--b, var(--background));-webkit-transition:background .3s,border-color .3s,-webkit-box-shadow .2s;transition:background .3s,border-color .3s,-webkit-box-shadow .2s;-o-transition:background .3s,border-color .3s,box-shadow .2s;transition:background .3s,border-color .3s,box-shadow .2s;transition:background .3s,border-color .3s,box-shadow .2s,-webkit-box-shadow .2s}.eael-lr-form-wrapper input[type=checkbox]:after{content:"";display:block;left:0;top:0;position:absolute;-webkit-transition:opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);transition:opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);-o-transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s);transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s);transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease)}.eael-lr-form-wrapper input[type=checkbox]:before{content:none}.eael-lr-form-wrapper input[type=checkbox]:checked{--b: var(--active);--bc: var(--active);--d-o: .3s;--d-t: .6s;--d-t-e: cubic-bezier(.2, .85, .32, 1.2)}.eael-lr-form-wrapper input[type=checkbox]:checked:before{content:none}.eael-lr-form-wrapper input[type=checkbox]:disabled{--b: var(--disabled);cursor:not-allowed;opacity:.9}.eael-lr-form-wrapper input[type=checkbox]:disabled:checked{--b: var(--disabled-inner);--bc: var(--border)}.eael-lr-form-wrapper input[type=checkbox]:disabled+label{cursor:not-allowed}.eael-lr-form-wrapper input[type=checkbox]:hover:not(:checked):not(:disabled){--bc: var(--border-hover)}.eael-lr-form-wrapper input[type=checkbox]:focus{-webkit-box-shadow:0 0 0 var(--focus);box-shadow:0 0 0 var(--focus)}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc){width:18px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):after{opacity:var(--o, 0)}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):checked{--o: 1}.eael-lr-form-wrapper input[type=checkbox]+label{font-size:14px;line-height:21px;display:inline-block;vertical-align:top;cursor:pointer;margin-left:4px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc){border-radius:3px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):after{width:5px;height:9px;border:2px solid var(--active-inner);border-top:0;border-left:0;left:5px;top:1px;-webkit-transform:rotate(var(--r, 20deg));-ms-transform:rotate(var(--r, 20deg));transform:rotate(var(--r, 20deg))}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):checked{--r: 43deg}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc{width:31px;border-radius:11px;border-width:1px}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:after{left:2px;top:2px;border-radius:50%;width:12px;height:12px;background:var(--ab, var(--border));-webkit-transform:translateX(var(--x, 0));-ms-transform:translateX(var(--x, 0));transform:translateX(var(--x, 0))}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:checked{--ab: var(--active-inner);--x: 13px}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:disabled:not(:checked):after{opacity:.6}}
1
+ .eael-w-10{width:10%}.eael-w-20{width:20%}.eael-w-25{width:25%}.eael-w-30{width:30%}.eael-w-33{width:33%}.eael-w-40{width:40%}.eael-w-50{width:50%}.eael-w-60{width:60%}.eael-w-66{width:66%}.eael-w-70{width:70%}.eael-w-75{width:75%}.eael-w-80{width:80%}.eael-w-90{width:90%}.eael-w-100{width:100%}.d-none{display:none}.d-ib{display:inline-block}.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}.fd-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.fd-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-lr-form-wrapper{width:370px;margin:0 auto;background-color:#fff;padding:35px;border-radius:10px;-webkit-box-shadow:0 0 37.5px 14px rgba(2,8,53,.06);box-shadow:0 0 37.5px 14px rgba(2,8,53,.06)}.eael-lr-form-wrapper.style-2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:0;border-radius:0}@media(max-width: 767px){.eael-lr-form-wrapper.style-2{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.eael-lr-form-wrapper.style-2 .lr-form-illustration{width:50%;background-repeat:no-repeat;background-size:cover;background-position:center;position:relative;z-index:1}@media(max-width: 767px){.eael-lr-form-wrapper.style-2 .lr-form-illustration{padding-bottom:200px}}.eael-lr-form-wrapper.style-2 .lr-form-wrapper{padding:35px;width:370px}.eael-lr-form-wrapper .eael-lr-form-group{margin-bottom:1rem}.eael-lr-form-wrapper .eael-lr-form-group label{display:inline-block;margin-bottom:.5rem}.eael-lr-form-wrapper .eael-lr-form-group label.mark-required{position:relative}.eael-lr-form-wrapper .eael-lr-form-group label.mark-required::after{content:" *";color:red;position:absolute;line-height:0;top:17px;right:-10px}.eael-lr-form-wrapper .eael-lr-form-group .eael-lr-form-control{display:block;width:100%;padding:15px;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #cfcfe8;border-radius:3px;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;outline:none}.eael-lr-form-wrapper .eael-forever-forget{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.9em}.eael-lr-form-wrapper .eael-forever-forget .forget-menot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-lr-form-wrapper .eael-forever-forget .forget-menot label{margin:0 0 0 10px}.eael-lr-form-wrapper .eael-forever-forget .forget-menot,.eael-lr-form-wrapper .eael-forever-forget .forget-pass{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:0}.eael-lr-form-wrapper .eael-forever-forget .forget-pass{text-align:right}.eael-lr-form-wrapper .eael-lr-password-wrapper{position:relative}.eael-lr-form-wrapper .eael-lr-password-wrapper button{position:absolute;top:0;right:0;height:100%;background:transparent;border:none;color:red}.eael-lr-form-wrapper .eael-lr-btn{background-color:#744ffb;color:#fff;position:relative;overflow:hidden;display:inline-block;vertical-align:top;text-decoration:none;border:none;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;padding:15px;width:130px}.eael-lr-form-wrapper .eael-lr-btn.eael-lr-btn-block{display:block}.eael-lr-form-wrapper .eael-lr-btn.eael-lr-btn-inline{display:inline-block}.eael-lr-form-wrapper .eael-lr-link{display:inline-block}.eael-lr-form-wrapper .eael-sign-wrapper{text-align:center;padding:20px 0 0}.eael-lr-form-wrapper .lr-form-header.header-inline{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-lr-form-wrapper .lr-form-header.header-inline .form-logo{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.eael-lr-form-wrapper .lr-form-header.header-inline .form-dsc{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding-left:15px}.eael-lr-form-wrapper .lr-form-header img{width:100px}.eael-lr-form-wrapper .lr-form-header h4{font-size:18px;font-weight:500;margin-top:0}.eael-lr-form-wrapper .lr-form-header p{font-size:14px}.eael-lr-form-wrapper .eael-form-msg{display:block;width:100%;margin-top:1rem;font-size:1rem;padding:10px 15px;border-top-right-radius:8px;border-bottom-right-radius:8px}.eael-lr-form-wrapper .eael-form-msg.invalid{color:#721c24;background-color:#f8d7da;border-left:3px solid red}.eael-lr-form-wrapper .eael-form-msg.valid{color:#155724;background-color:#d4edda;border-left:3px solid green}.eael-lr-form-wrapper ul,.eael-lr-form-wrapper ol,.eael-lr-form-wrapper .eael-form-msg ul,.eael-lr-form-wrapper .eael-form-msg ol{margin:0;padding-left:30px}.eael-lr-form-wrapper ul li:not(:last-child),.eael-lr-form-wrapper ol li:not(:last-child),.eael-lr-form-wrapper .eael-form-msg ul li:not(:last-child),.eael-lr-form-wrapper .eael-form-msg ol li:not(:last-child){padding-bottom:10px}.eael-lr-form-wrapper .eael_accept_tnc_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-lr-form-wrapper .eael_accept_tnc_wrap .eael-lr-tnc-link{margin-left:5px;display:inline-block}.eael-lr-form-wrapper .eael-recaptcha-wrapper{margin-bottom:1rem}.eael-lr-form-wrapper .eael-lr-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@supports(-webkit-appearance: none) or (-moz-appearance: none){.eael-lr-form-wrapper input[type=checkbox]{--active: #275EFE;--active-inner: #fff;--focus: 0;--border: #b7b7b7;--border-hover: var(--active);--background: #fff;--disabled: #F6F8FF;--disabled-inner: #E1E6F9;-webkit-appearance:none;-moz-appearance:none;height:18px;outline:none;display:inline-block;vertical-align:top;position:relative;top:2px;margin:0;cursor:pointer;border:2px solid var(--bc, var(--border));background:var(--b, var(--background));-webkit-transition:background .3s,border-color .3s,-webkit-box-shadow .2s;transition:background .3s,border-color .3s,-webkit-box-shadow .2s;-o-transition:background .3s,border-color .3s,box-shadow .2s;transition:background .3s,border-color .3s,box-shadow .2s;transition:background .3s,border-color .3s,box-shadow .2s,-webkit-box-shadow .2s}.eael-lr-form-wrapper input[type=checkbox]:after{content:"";display:block;left:0;top:0;position:absolute;-webkit-transition:opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);transition:opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);-o-transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s);transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s);transition:transform var(--d-t, 0.3s) var(--d-t-e, ease),opacity var(--d-o, 0.2s),-webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease)}.eael-lr-form-wrapper input[type=checkbox]:before{content:none}.eael-lr-form-wrapper input[type=checkbox]:checked{--b: var(--active);--bc: var(--active);--d-o: .3s;--d-t: .6s;--d-t-e: cubic-bezier(.2, .85, .32, 1.2)}.eael-lr-form-wrapper input[type=checkbox]:checked:before{content:none}.eael-lr-form-wrapper input[type=checkbox]:disabled{--b: var(--disabled);cursor:not-allowed;opacity:.9}.eael-lr-form-wrapper input[type=checkbox]:disabled:checked{--b: var(--disabled-inner);--bc: var(--border)}.eael-lr-form-wrapper input[type=checkbox]:disabled+label{cursor:not-allowed}.eael-lr-form-wrapper input[type=checkbox]:hover:not(:checked):not(:disabled){--bc: var(--border-hover)}.eael-lr-form-wrapper input[type=checkbox]:focus{-webkit-box-shadow:0 0 0 var(--focus);box-shadow:0 0 0 var(--focus)}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc){width:18px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):after{opacity:var(--o, 0)}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):checked{--o: 1}.eael-lr-form-wrapper input[type=checkbox]+label{font-size:14px;line-height:21px;display:inline-block;vertical-align:top;cursor:pointer;margin-left:4px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc){border-radius:3px}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):after{width:5px;height:9px;border:2px solid var(--active-inner);border-top:0;border-left:0;left:5px;top:1px;-webkit-transform:rotate(var(--r, 20deg));-ms-transform:rotate(var(--r, 20deg));transform:rotate(var(--r, 20deg))}.eael-lr-form-wrapper input[type=checkbox]:not(#eael_accept_tnc):checked{--r: 43deg}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc{width:31px;border-radius:11px;border-width:1px}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:after{left:2px;top:2px;border-radius:50%;width:12px;height:12px;background:var(--ab, var(--border));-webkit-transform:translateX(var(--x, 0));-ms-transform:translateX(var(--x, 0));transform:translateX(var(--x, 0))}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:checked{--ab: var(--active-inner);--x: 13px}.eael-lr-form-wrapper input[type=checkbox]#eael_accept_tnc:disabled:not(:checked):after{opacity:.6}}.lr-social-login-container{margin-top:1rem}.lr-social-login-container .lr-separator{width:100%;text-align:center}.lr-social-login-container .lr-separator p{padding:0;margin:0}.lr-social-login-container .lr-separator hr{width:100%;height:1px;background:gray}.lr-social-login-container .lr-social-buttons-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.lr-social-login-container .eael-social-button{display:-webkit-box;display:-ms-flexbox;display:flex;max-width:100%;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:10px;margin-left:auto;margin-right:auto;cursor:pointer}.lr-social-login-container .eael-social-button.eael-google{width:175px}.lr-social-login-container .eael-social-button.eael-facebook{width:190px}
assets/front-end/js/view/advanced-data-table.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar advancedDataTable = /*#__PURE__*/function () {\n function advancedDataTable() {\n _classCallCheck(this, advancedDataTable);\n\n // register hooks\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-advanced-data-table.default\", this.initFrontend.bind(this));\n } // init frontend features\n\n\n _createClass(advancedDataTable, [{\n key: \"initFrontend\",\n value: function initFrontend($scope, $) {\n var table = $scope.context.querySelector(\".ea-advanced-data-table\");\n var search = $scope.context.querySelector(\".ea-advanced-data-table-search\");\n var pagination = $scope.context.querySelector(\".ea-advanced-data-table-pagination\");\n var classCollection = {};\n\n if (!ea.isEditMode && table !== null) {\n // search\n this.initTableSearch(table, search, pagination); // sort\n\n this.initTableSort(table, pagination, classCollection); // paginated table\n\n this.initTablePagination(table, pagination, classCollection); // woocommerce\n\n this.initWooFeatures(table);\n }\n } // frontend - search\n\n }, {\n key: \"initTableSearch\",\n value: function initTableSearch(table, search, pagination) {\n if (search) {\n search.addEventListener(\"input\", function (e) {\n var input = e.target.value.toLowerCase();\n var hasSort = table.classList.contains(\"ea-advanced-data-table-sortable\");\n var offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n\n if (table.rows.length > 1) {\n if (input.length > 0) {\n if (hasSort) {\n table.classList.add(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"none\";\n }\n\n for (var i = offset; i < table.rows.length; i++) {\n var matchFound = false;\n\n if (table.rows[i].cells.length > 0) {\n for (var j = 0; j < table.rows[i].cells.length; j++) {\n if (table.rows[i].cells[j].textContent.toLowerCase().indexOf(input) > -1) {\n matchFound = true;\n break;\n }\n }\n }\n\n if (matchFound) {\n table.rows[i].style.display = \"table-row\";\n } else {\n table.rows[i].style.display = \"none\";\n }\n }\n } else {\n if (hasSort) {\n table.classList.remove(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n var startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i = 1; _i <= table.rows.length - 1; _i++) {\n if (_i >= startIndex && _i <= endIndex) {\n table.rows[_i].style.display = \"table-row\";\n } else {\n table.rows[_i].style.display = \"none\";\n }\n }\n } else {\n for (var _i2 = 1; _i2 <= table.rows.length - 1; _i2++) {\n table.rows[_i2].style.display = \"table-row\";\n }\n }\n }\n }\n });\n }\n } // frontend - sort\n\n }, {\n key: \"initTableSort\",\n value: function initTableSort(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-sortable\")) {\n table.addEventListener(\"click\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n var index = e.target.cellIndex;\n var currentPage = 1;\n var startIndex = 1;\n var endIndex = table.rows.length - 1;\n var sort = \"\";\n var classList = e.target.classList;\n var collection = [];\n var origTable = table.cloneNode(true);\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n\n if (classList.contains(\"asc\")) {\n e.target.classList.remove(\"asc\");\n e.target.classList.add(\"desc\");\n sort = \"desc\";\n } else if (classList.contains(\"desc\")) {\n e.target.classList.remove(\"desc\");\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n } else {\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n endIndex = endIndex - (currentPage - 1) * table.dataset.itemsPerPage >= table.dataset.itemsPerPage ? currentPage * table.dataset.itemsPerPage : endIndex;\n } // collect header class\n\n\n classCollection[currentPage] = [];\n table.querySelectorAll(\"th\").forEach(function (el) {\n if (el.cellIndex != index) {\n el.classList.remove(\"asc\", \"desc\");\n }\n\n classCollection[currentPage].push(el.classList.contains(\"asc\") ? \"asc\" : el.classList.contains(\"desc\") ? \"desc\" : \"\");\n }); // collect table cells value\n\n for (var i = startIndex; i <= endIndex; i++) {\n var value = void 0;\n var cell = table.rows[i].cells[index];\n\n if (isNaN(parseInt(cell.innerText))) {\n value = cell.innerText.toLowerCase();\n } else {\n value = parseInt(cell.innerText);\n }\n\n collection.push({\n index: i,\n value: value\n });\n } // sort collection array\n\n\n if (sort == \"asc\") {\n collection.sort(function (x, y) {\n return x.value > y.value ? 1 : -1;\n });\n } else if (sort == \"desc\") {\n collection.sort(function (x, y) {\n return x.value < y.value ? 1 : -1;\n });\n } // sort table\n\n\n collection.forEach(function (row, index) {\n table.rows[startIndex + index].innerHTML = origTable.rows[row.index].innerHTML;\n });\n }\n });\n }\n } // frontend - pagination\n\n }, {\n key: \"initTablePagination\",\n value: function initTablePagination(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-paginated\")) {\n var paginationHTML = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = 1;\n var startIndex = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n var maxPages = Math.ceil((table.rows.length - 1) / table.dataset.itemsPerPage); // insert pagination\n\n if (maxPages > 1) {\n if (paginationType == \"button\") {\n for (var i = 1; i <= maxPages; i++) {\n paginationHTML += \"<a href=\\\"#\\\" data-page=\\\"\".concat(i, \"\\\" class=\\\"\").concat(i == 1 ? \"ea-advanced-data-table-pagination-current\" : \"\", \"\\\">\").concat(i, \"</a>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<a href=\\\"#\\\" data-page=\\\"1\\\">&laquo;</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">&raquo;</a>\"));\n } else {\n for (var _i3 = 1; _i3 <= maxPages; _i3++) {\n paginationHTML += \"<option value=\\\"\".concat(_i3, \"\\\">\").concat(_i3, \"</option>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<select>\".concat(paginationHTML, \"</select>\"));\n }\n } // make initial item visible\n\n\n for (var _i4 = 0; _i4 <= endIndex; _i4++) {\n if (_i4 >= table.rows.length) {\n break;\n }\n\n table.rows[_i4].style.display = \"table-row\";\n } // paginate on click\n\n\n if (paginationType == \"button\") {\n pagination.addEventListener(\"click\", function (e) {\n e.preventDefault();\n\n if (e.target.tagName.toLowerCase() == \"a\") {\n currentPage = e.target.dataset.page;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n pagination.querySelectorAll(\".ea-advanced-data-table-pagination-current\").forEach(function (el) {\n el.classList.remove(\"ea-advanced-data-table-pagination-current\");\n });\n pagination.querySelectorAll(\"[data-page=\\\"\".concat(currentPage, \"\\\"]\")).forEach(function (el) {\n el.classList.add(\"ea-advanced-data-table-pagination-current\");\n });\n\n for (var _i5 = offset; _i5 <= table.rows.length - 1; _i5++) {\n if (_i5 >= startIndex && _i5 <= endIndex) {\n table.rows[_i5].style.display = \"table-row\";\n } else {\n table.rows[_i5].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n }\n });\n } else {\n if (pagination.hasChildNodes()) {\n pagination.querySelector(\"select\").addEventListener(\"input\", function (e) {\n e.preventDefault();\n currentPage = e.target.value;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i6 = offset; _i6 <= table.rows.length - 1; _i6++) {\n if (_i6 >= startIndex && _i6 <= endIndex) {\n table.rows[_i6].style.display = \"table-row\";\n } else {\n table.rows[_i6].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n });\n }\n }\n }\n } // woocommerce features\n\n }, {\n key: \"initWooFeatures\",\n value: function initWooFeatures(table) {\n table.querySelectorAll(\".nt_button_woo\").forEach(function (el) {\n el.classList.add(\"add_to_cart_button\", \"ajax_add_to_cart\");\n });\n table.querySelectorAll(\".nt_woo_quantity\").forEach(function (el) {\n el.addEventListener(\"input\", function (e) {\n var product_id = e.target.dataset.product_id;\n var quantity = e.target.value;\n $(\".nt_add_to_cart_\".concat(product_id), $(table)).data(\"quantity\", quantity);\n });\n });\n }\n }]);\n\n return advancedDataTable;\n}();\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n new advancedDataTable();\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-data-table.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar advancedDataTable = /*#__PURE__*/function () {\n function advancedDataTable() {\n _classCallCheck(this, advancedDataTable);\n\n // register hooks\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-advanced-data-table.default\", this.initFrontend.bind(this));\n } // init frontend features\n\n\n _createClass(advancedDataTable, [{\n key: \"initFrontend\",\n value: function initFrontend($scope, $) {\n var table = $scope.context.querySelector(\".ea-advanced-data-table\");\n var search = $scope.context.querySelector(\".ea-advanced-data-table-search\");\n var pagination = $scope.context.querySelector(\".ea-advanced-data-table-pagination\");\n var classCollection = {};\n\n if (!ea.isEditMode && table !== null) {\n // search\n this.initTableSearch(table, search, pagination); // sort\n\n this.initTableSort(table, pagination, classCollection); // paginated table\n\n this.initTablePagination(table, pagination, classCollection); // woocommerce\n\n this.initWooFeatures(table);\n }\n } // frontend - search\n\n }, {\n key: \"initTableSearch\",\n value: function initTableSearch(table, search, pagination) {\n if (search) {\n search.addEventListener(\"input\", function (e) {\n var input = e.target.value.toLowerCase();\n var hasSort = table.classList.contains(\"ea-advanced-data-table-sortable\");\n var offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n\n if (table.rows.length > 1) {\n if (input.length > 0) {\n if (hasSort) {\n table.classList.add(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"none\";\n }\n\n for (var i = offset; i < table.rows.length; i++) {\n var matchFound = false;\n\n if (table.rows[i].cells.length > 0) {\n for (var j = 0; j < table.rows[i].cells.length; j++) {\n if (table.rows[i].cells[j].textContent.toLowerCase().indexOf(input) > -1) {\n matchFound = true;\n break;\n }\n }\n }\n\n if (matchFound) {\n table.rows[i].style.display = \"table-row\";\n } else {\n table.rows[i].style.display = \"none\";\n }\n }\n } else {\n if (hasSort) {\n table.classList.remove(\"ea-advanced-data-table-unsortable\");\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n pagination.style.display = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n var startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i = 1; _i <= table.rows.length - 1; _i++) {\n if (_i >= startIndex && _i <= endIndex) {\n table.rows[_i].style.display = \"table-row\";\n } else {\n table.rows[_i].style.display = \"none\";\n }\n }\n } else {\n for (var _i2 = 1; _i2 <= table.rows.length - 1; _i2++) {\n table.rows[_i2].style.display = \"table-row\";\n }\n }\n }\n }\n });\n }\n } // frontend - sort\n\n }, {\n key: \"initTableSort\",\n value: function initTableSort(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-sortable\")) {\n table.addEventListener(\"click\", function (e) {\n if (e.target.tagName.toLowerCase() === \"th\") {\n var index = e.target.cellIndex;\n var currentPage = 1;\n var startIndex = 1;\n var endIndex = table.rows.length - 1;\n var sort = \"\";\n var classList = e.target.classList;\n var collection = [];\n var origTable = table.cloneNode(true);\n\n if (classList.contains(\"asc\")) {\n e.target.classList.remove(\"asc\");\n e.target.classList.add(\"desc\");\n sort = \"desc\";\n } else if (classList.contains(\"desc\")) {\n e.target.classList.remove(\"desc\");\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n } else {\n e.target.classList.add(\"asc\");\n sort = \"asc\";\n }\n\n if (pagination && pagination.innerHTML.length > 0) {\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n currentPage = paginationType == \"button\" ? pagination.querySelector(\".ea-advanced-data-table-pagination-current\").dataset.page : pagination.querySelector(\"select\").value;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + 1;\n endIndex = endIndex - (currentPage - 1) * table.dataset.itemsPerPage >= table.dataset.itemsPerPage ? currentPage * table.dataset.itemsPerPage : endIndex;\n } // collect header class\n\n\n classCollection[currentPage] = [];\n table.querySelectorAll(\"th\").forEach(function (el) {\n if (el.cellIndex != index) {\n el.classList.remove(\"asc\", \"desc\");\n }\n\n classCollection[currentPage].push(el.classList.contains(\"asc\") ? \"asc\" : el.classList.contains(\"desc\") ? \"desc\" : \"\");\n }); // collect table cells value\n\n for (var i = startIndex; i <= endIndex; i++) {\n var value = void 0;\n var cell = table.rows[i].cells[index];\n\n if (isNaN(parseInt(cell.innerText))) {\n value = cell.innerText.toLowerCase();\n } else {\n value = parseInt(cell.innerText);\n }\n\n collection.push({\n index: i,\n value: value\n });\n } // sort collection array\n\n\n if (sort == \"asc\") {\n collection.sort(function (x, y) {\n return x.value > y.value ? 1 : -1;\n });\n } else if (sort == \"desc\") {\n collection.sort(function (x, y) {\n return x.value < y.value ? 1 : -1;\n });\n } // sort table\n\n\n collection.forEach(function (row, index) {\n table.rows[startIndex + index].innerHTML = origTable.rows[row.index].innerHTML;\n });\n }\n });\n }\n } // frontend - pagination\n\n }, {\n key: \"initTablePagination\",\n value: function initTablePagination(table, pagination, classCollection) {\n if (table.classList.contains(\"ea-advanced-data-table-paginated\")) {\n var paginationHTML = \"\";\n var paginationType = pagination.classList.contains(\"ea-advanced-data-table-pagination-button\") ? \"button\" : \"select\";\n var currentPage = 1;\n var startIndex = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n var endIndex = currentPage * table.dataset.itemsPerPage;\n var maxPages = Math.ceil((table.rows.length - 1) / table.dataset.itemsPerPage); // insert pagination\n\n if (maxPages > 1) {\n if (paginationType == \"button\") {\n for (var i = 1; i <= maxPages; i++) {\n paginationHTML += \"<a href=\\\"#\\\" data-page=\\\"\".concat(i, \"\\\" class=\\\"\").concat(i == 1 ? \"ea-advanced-data-table-pagination-current\" : \"\", \"\\\">\").concat(i, \"</a>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<a href=\\\"#\\\" data-page=\\\"1\\\">&laquo;</a>\".concat(paginationHTML, \"<a href=\\\"#\\\" data-page=\\\"\").concat(maxPages, \"\\\">&raquo;</a>\"));\n } else {\n for (var _i3 = 1; _i3 <= maxPages; _i3++) {\n paginationHTML += \"<option value=\\\"\".concat(_i3, \"\\\">\").concat(_i3, \"</option>\");\n }\n\n pagination.insertAdjacentHTML(\"beforeend\", \"<select>\".concat(paginationHTML, \"</select>\"));\n }\n } // make initial item visible\n\n\n for (var _i4 = 0; _i4 <= endIndex; _i4++) {\n if (_i4 >= table.rows.length) {\n break;\n }\n\n table.rows[_i4].style.display = \"table-row\";\n } // paginate on click\n\n\n if (paginationType == \"button\") {\n pagination.addEventListener(\"click\", function (e) {\n e.preventDefault();\n\n if (e.target.tagName.toLowerCase() == \"a\") {\n currentPage = e.target.dataset.page;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n pagination.querySelectorAll(\".ea-advanced-data-table-pagination-current\").forEach(function (el) {\n el.classList.remove(\"ea-advanced-data-table-pagination-current\");\n });\n pagination.querySelectorAll(\"[data-page=\\\"\".concat(currentPage, \"\\\"]\")).forEach(function (el) {\n el.classList.add(\"ea-advanced-data-table-pagination-current\");\n });\n\n for (var _i5 = offset; _i5 <= table.rows.length - 1; _i5++) {\n if (_i5 >= startIndex && _i5 <= endIndex) {\n table.rows[_i5].style.display = \"table-row\";\n } else {\n table.rows[_i5].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n }\n });\n } else {\n if (pagination.hasChildNodes()) {\n pagination.querySelector(\"select\").addEventListener(\"input\", function (e) {\n e.preventDefault();\n currentPage = e.target.value;\n offset = table.rows[0].parentNode.tagName.toLowerCase() == \"thead\" ? 1 : 0;\n startIndex = (currentPage - 1) * table.dataset.itemsPerPage + offset;\n endIndex = currentPage * table.dataset.itemsPerPage;\n\n for (var _i6 = offset; _i6 <= table.rows.length - 1; _i6++) {\n if (_i6 >= startIndex && _i6 <= endIndex) {\n table.rows[_i6].style.display = \"table-row\";\n } else {\n table.rows[_i6].style.display = \"none\";\n }\n }\n\n table.querySelectorAll(\"th\").forEach(function (el, index) {\n el.classList.remove(\"asc\", \"desc\");\n\n if (typeof classCollection[currentPage] != \"undefined\") {\n if (classCollection[currentPage][index]) {\n el.classList.add(classCollection[currentPage][index]);\n }\n }\n });\n });\n }\n }\n }\n } // woocommerce features\n\n }, {\n key: \"initWooFeatures\",\n value: function initWooFeatures(table) {\n table.querySelectorAll(\".nt_button_woo\").forEach(function (el) {\n el.classList.add(\"add_to_cart_button\", \"ajax_add_to_cart\");\n });\n table.querySelectorAll(\".nt_woo_quantity\").forEach(function (el) {\n el.addEventListener(\"input\", function (e) {\n var product_id = e.target.dataset.product_id;\n var quantity = e.target.value;\n $(\".nt_add_to_cart_\".concat(product_id), $(table)).data(\"quantity\", quantity);\n });\n });\n }\n }]);\n\n return advancedDataTable;\n}();\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n new advancedDataTable();\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-data-table.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/advanced-data-table.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(a.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(n,r,function(t){return e[t]}.bind(null,r));return n},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=1)}([,function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var n=t[a];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var n=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),elementorFrontend.hooks.addAction("frontend/element_ready/eael-advanced-data-table.default",this.initFrontend.bind(this))}var t,n,r;return t=e,(n=[{key:"initFrontend",value:function(e,t){var a=e.context.querySelector(".ea-advanced-data-table"),n=e.context.querySelector(".ea-advanced-data-table-search"),r=e.context.querySelector(".ea-advanced-data-table-pagination"),o={};ea.isEditMode||null===a||(this.initTableSearch(a,n,r),this.initTableSort(a,r,o),this.initTablePagination(a,r,o),this.initWooFeatures(a))}},{key:"initTableSearch",value:function(e,t,a){t&&t.addEventListener("input",(function(t){var n=t.target.value.toLowerCase(),r=e.classList.contains("ea-advanced-data-table-sortable"),o="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0;if(e.rows.length>1)if(n.length>0){r&&e.classList.add("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0&&(a.style.display="none");for(var s=o;s<e.rows.length;s++){var i=!1;if(e.rows[s].cells.length>0)for(var c=0;c<e.rows[s].cells.length;c++)if(e.rows[s].cells[c].textContent.toLowerCase().indexOf(n)>-1){i=!0;break}e.rows[s].style.display=i?"table-row":"none"}}else if(r&&e.classList.remove("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0){a.style.display="";for(var l="button"==(a.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select")?a.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:a.querySelector("select").value,d=(l-1)*e.dataset.itemsPerPage+1,u=l*e.dataset.itemsPerPage,f=1;f<=e.rows.length-1;f++)e.rows[f].style.display=f>=d&&f<=u?"table-row":"none"}else for(var v=1;v<=e.rows.length-1;v++)e.rows[v].style.display="table-row"}))}},{key:"initTableSort",value:function(e,t,a){e.classList.contains("ea-advanced-data-table-sortable")&&e.addEventListener("click",(function(n){if("th"===n.target.tagName.toLowerCase()){var r=n.target.cellIndex,o=1,s=1,i=e.rows.length-1,c="",l=n.target.classList,d=[],u=e.cloneNode(!0),f=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select";l.contains("asc")?(n.target.classList.remove("asc"),n.target.classList.add("desc"),c="desc"):l.contains("desc")?(n.target.classList.remove("desc"),n.target.classList.add("asc"),c="asc"):(n.target.classList.add("asc"),c="asc"),t&&t.innerHTML.length>0&&(o="button"==f?t.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:t.querySelector("select").value,s=(o-1)*e.dataset.itemsPerPage+1,i=i-(o-1)*e.dataset.itemsPerPage>=e.dataset.itemsPerPage?o*e.dataset.itemsPerPage:i),a[o]=[],e.querySelectorAll("th").forEach((function(e){e.cellIndex!=r&&e.classList.remove("asc","desc"),a[o].push(e.classList.contains("asc")?"asc":e.classList.contains("desc")?"desc":"")}));for(var v=s;v<=i;v++){var g=void 0,b=e.rows[v].cells[r];g=isNaN(parseInt(b.innerText))?b.innerText.toLowerCase():parseInt(b.innerText),d.push({index:v,value:g})}"asc"==c?d.sort((function(e,t){return e.value>t.value?1:-1})):"desc"==c&&d.sort((function(e,t){return e.value<t.value?1:-1})),d.forEach((function(t,a){e.rows[s+a].innerHTML=u.rows[t.index].innerHTML}))}}))}},{key:"initTablePagination",value:function(e,t,a){if(e.classList.contains("ea-advanced-data-table-paginated")){var n="",r=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select",o=1,s="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,i=o*e.dataset.itemsPerPage,c=Math.ceil((e.rows.length-1)/e.dataset.itemsPerPage);if(c>1)if("button"==r){for(var l=1;l<=c;l++)n+='<a href="#" data-page="'.concat(l,'" class="').concat(1==l?"ea-advanced-data-table-pagination-current":"",'">').concat(l,"</a>");t.insertAdjacentHTML("beforeend",'<a href="#" data-page="1">&laquo;</a>'.concat(n,'<a href="#" data-page="').concat(c,'">&raquo;</a>'))}else{for(var d=1;d<=c;d++)n+='<option value="'.concat(d,'">').concat(d,"</option>");t.insertAdjacentHTML("beforeend","<select>".concat(n,"</select>"))}for(var u=0;u<=i&&!(u>=e.rows.length);u++)e.rows[u].style.display="table-row";"button"==r?t.addEventListener("click",(function(n){if(n.preventDefault(),"a"==n.target.tagName.toLowerCase()){o=n.target.dataset.page,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage,t.querySelectorAll(".ea-advanced-data-table-pagination-current").forEach((function(e){e.classList.remove("ea-advanced-data-table-pagination-current")})),t.querySelectorAll('[data-page="'.concat(o,'"]')).forEach((function(e){e.classList.add("ea-advanced-data-table-pagination-current")}));for(var r=offset;r<=e.rows.length-1;r++)e.rows[r].style.display=r>=s&&r<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}})):t.hasChildNodes()&&t.querySelector("select").addEventListener("input",(function(t){t.preventDefault(),o=t.target.value,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage;for(var n=offset;n<=e.rows.length-1;n++)e.rows[n].style.display=n>=s&&n<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}))}}},{key:"initWooFeatures",value:function(e){e.querySelectorAll(".nt_button_woo").forEach((function(e){e.classList.add("add_to_cart_button","ajax_add_to_cart")})),e.querySelectorAll(".nt_woo_quantity").forEach((function(t){t.addEventListener("input",(function(t){var a=t.target.dataset.product_id,n=t.target.value;$(".nt_add_to_cart_".concat(a),$(e)).data("quantity",n)}))}))}}])&&a(t.prototype,n),r&&a(t,r),e}();ea.hooks.addAction("init","ea",(function(){new n}))}]);
1
+ !function(e){var t={};function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(a.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)a.d(n,r,function(t){return e[t]}.bind(null,r));return n},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=1)}([,function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var n=t[a];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var n=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),elementorFrontend.hooks.addAction("frontend/element_ready/eael-advanced-data-table.default",this.initFrontend.bind(this))}var t,n,r;return t=e,(n=[{key:"initFrontend",value:function(e,t){var a=e.context.querySelector(".ea-advanced-data-table"),n=e.context.querySelector(".ea-advanced-data-table-search"),r=e.context.querySelector(".ea-advanced-data-table-pagination"),o={};ea.isEditMode||null===a||(this.initTableSearch(a,n,r),this.initTableSort(a,r,o),this.initTablePagination(a,r,o),this.initWooFeatures(a))}},{key:"initTableSearch",value:function(e,t,a){t&&t.addEventListener("input",(function(t){var n=t.target.value.toLowerCase(),r=e.classList.contains("ea-advanced-data-table-sortable"),o="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0;if(e.rows.length>1)if(n.length>0){r&&e.classList.add("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0&&(a.style.display="none");for(var s=o;s<e.rows.length;s++){var i=!1;if(e.rows[s].cells.length>0)for(var c=0;c<e.rows[s].cells.length;c++)if(e.rows[s].cells[c].textContent.toLowerCase().indexOf(n)>-1){i=!0;break}e.rows[s].style.display=i?"table-row":"none"}}else if(r&&e.classList.remove("ea-advanced-data-table-unsortable"),a&&a.innerHTML.length>0){a.style.display="";for(var l="button"==(a.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select")?a.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:a.querySelector("select").value,d=(l-1)*e.dataset.itemsPerPage+1,u=l*e.dataset.itemsPerPage,f=1;f<=e.rows.length-1;f++)e.rows[f].style.display=f>=d&&f<=u?"table-row":"none"}else for(var v=1;v<=e.rows.length-1;v++)e.rows[v].style.display="table-row"}))}},{key:"initTableSort",value:function(e,t,a){e.classList.contains("ea-advanced-data-table-sortable")&&e.addEventListener("click",(function(n){if("th"===n.target.tagName.toLowerCase()){var r=n.target.cellIndex,o=1,s=1,i=e.rows.length-1,c="",l=n.target.classList,d=[],u=e.cloneNode(!0);if(l.contains("asc")?(n.target.classList.remove("asc"),n.target.classList.add("desc"),c="desc"):l.contains("desc")?(n.target.classList.remove("desc"),n.target.classList.add("asc"),c="asc"):(n.target.classList.add("asc"),c="asc"),t&&t.innerHTML.length>0){var f=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select";o="button"==f?t.querySelector(".ea-advanced-data-table-pagination-current").dataset.page:t.querySelector("select").value,s=(o-1)*e.dataset.itemsPerPage+1,i=i-(o-1)*e.dataset.itemsPerPage>=e.dataset.itemsPerPage?o*e.dataset.itemsPerPage:i}a[o]=[],e.querySelectorAll("th").forEach((function(e){e.cellIndex!=r&&e.classList.remove("asc","desc"),a[o].push(e.classList.contains("asc")?"asc":e.classList.contains("desc")?"desc":"")}));for(var v=s;v<=i;v++){var g=void 0,b=e.rows[v].cells[r];g=isNaN(parseInt(b.innerText))?b.innerText.toLowerCase():parseInt(b.innerText),d.push({index:v,value:g})}"asc"==c?d.sort((function(e,t){return e.value>t.value?1:-1})):"desc"==c&&d.sort((function(e,t){return e.value<t.value?1:-1})),d.forEach((function(t,a){e.rows[s+a].innerHTML=u.rows[t.index].innerHTML}))}}))}},{key:"initTablePagination",value:function(e,t,a){if(e.classList.contains("ea-advanced-data-table-paginated")){var n="",r=t.classList.contains("ea-advanced-data-table-pagination-button")?"button":"select",o=1,s="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,i=o*e.dataset.itemsPerPage,c=Math.ceil((e.rows.length-1)/e.dataset.itemsPerPage);if(c>1)if("button"==r){for(var l=1;l<=c;l++)n+='<a href="#" data-page="'.concat(l,'" class="').concat(1==l?"ea-advanced-data-table-pagination-current":"",'">').concat(l,"</a>");t.insertAdjacentHTML("beforeend",'<a href="#" data-page="1">&laquo;</a>'.concat(n,'<a href="#" data-page="').concat(c,'">&raquo;</a>'))}else{for(var d=1;d<=c;d++)n+='<option value="'.concat(d,'">').concat(d,"</option>");t.insertAdjacentHTML("beforeend","<select>".concat(n,"</select>"))}for(var u=0;u<=i&&!(u>=e.rows.length);u++)e.rows[u].style.display="table-row";"button"==r?t.addEventListener("click",(function(n){if(n.preventDefault(),"a"==n.target.tagName.toLowerCase()){o=n.target.dataset.page,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage,t.querySelectorAll(".ea-advanced-data-table-pagination-current").forEach((function(e){e.classList.remove("ea-advanced-data-table-pagination-current")})),t.querySelectorAll('[data-page="'.concat(o,'"]')).forEach((function(e){e.classList.add("ea-advanced-data-table-pagination-current")}));for(var r=offset;r<=e.rows.length-1;r++)e.rows[r].style.display=r>=s&&r<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}})):t.hasChildNodes()&&t.querySelector("select").addEventListener("input",(function(t){t.preventDefault(),o=t.target.value,offset="thead"==e.rows[0].parentNode.tagName.toLowerCase()?1:0,s=(o-1)*e.dataset.itemsPerPage+offset,i=o*e.dataset.itemsPerPage;for(var n=offset;n<=e.rows.length-1;n++)e.rows[n].style.display=n>=s&&n<=i?"table-row":"none";e.querySelectorAll("th").forEach((function(e,t){e.classList.remove("asc","desc"),void 0!==a[o]&&a[o][t]&&e.classList.add(a[o][t])}))}))}}},{key:"initWooFeatures",value:function(e){e.querySelectorAll(".nt_button_woo").forEach((function(e){e.classList.add("add_to_cart_button","ajax_add_to_cart")})),e.querySelectorAll(".nt_woo_quantity").forEach((function(t){t.addEventListener("input",(function(t){var a=t.target.dataset.product_id,n=t.target.value;$(".nt_add_to_cart_".concat(a),$(e)).data("quantity",n)}))}))}}])&&a(t.prototype,n),r&&a(t,r),e}();ea.hooks.addAction("init","ea",(function(){new n}))}]);
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 //const recaptchaEnabled = $wrap.data('is-recaptcha');\n\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var $loginFormWrapper = $scope.find(\"#eael-login-form-wrapper\");\n var $regFormWrapper = $scope.find(\"#eael-register-form-wrapper\");\n var $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n $loginFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n e.preventDefault();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n } // Password Visibility Toggle\n\n\n var pass_shown = false;\n $(document).on('click', '#wp-hide-pw', function (e) {\n var $icon = $(this).find('span'); // cache\n\n if (pass_shown) {\n $passField.attr('type', 'password');\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n pass_shown = false;\n } else {\n $passField.attr('type', 'text');\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n pass_shown = true;\n }\n }); // Recaptcha\n\n function onloadLRcb() {\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n\n if (loginRecaptchaNode) {\n grecaptcha.render(loginRecaptchaNode, {\n 'sitekey': recaptchaSiteKey\n });\n }\n\n if (registerRecaptchaNode) {\n grecaptcha.render(registerRecaptchaNode, {\n 'sitekey': recaptchaSiteKey\n });\n }\n }\n\n if (grecaptcha && 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 $(window).load(function () {\n if (grecaptcha) {\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
 
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 //const recaptchaEnabled = $wrap.data('is-recaptcha');\n\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var $loginFormWrapper = $scope.find(\"#eael-login-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 $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n var recaptchaAvailable = typeof grecaptcha !== 'undefined' && grecaptcha !== null;\n\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n $loginFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n e.preventDefault();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n } // Password Visibility Toggle\n\n\n var pass_shown = false;\n $(document).on('click', '#wp-hide-pw', function (e) {\n var $icon = $(this).find('span'); // cache\n\n if (pass_shown) {\n $passField.attr('type', 'password');\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n pass_shown = false;\n } else {\n $passField.attr('type', 'text');\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n pass_shown = true;\n }\n }); // reCAPTCHA\n\n function onloadLRcb() {\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n\n if (loginRecaptchaNode) {\n grecaptcha.render(loginRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': loginRcTheme,\n 'size': loginRcSize\n });\n }\n\n if (registerRecaptchaNode) {\n grecaptcha.render(registerRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': regRcTheme,\n 'size': regRcSize\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 $(window).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 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=13)}({13:function(e,t){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-login-register.default",(function(e,t){var n=e.find(".eael-login-registration-wrapper"),r=n.data("widget-id"),o=n.data("recaptcha-sitekey"),i=e.find("#eael-login-form-wrapper"),a=e.find("#eael-register-form-wrapper"),d=e.find("#eael-lr-reg-toggle"),c=e.find("#eael-lr-login-toggle"),l=i.find("#eael-user-password");"form"===d.data("action")&&d.on("click",(function(e){e.preventDefault(),i.hide(),a.fadeIn()})),"form"===c.data("action")&&c.on("click",(function(e){e.preventDefault(),a.hide(),i.fadeIn()}));var f=!1;function u(){var e=document.getElementById("login-recaptcha-node-"+r),t=document.getElementById("register-recaptcha-node-"+r);e&&grecaptcha.render(e,{sitekey:o}),t&&grecaptcha.render(t,{sitekey:o})}t(document).on("click","#wp-hide-pw",(function(e){var n=t(this).find("span");f?(l.attr("type","password"),n.removeClass("dashicons-hidden").addClass("dashicons-visibility"),f=!1):(l.attr("type","text"),n.removeClass("dashicons-visibility").addClass("dashicons-hidden"),f=!0)})),grecaptcha&&isEditMode?u():t(window).load((function(){grecaptcha&&u()}))}))}))}});
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.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 a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));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=13)}({13:function(e,t){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-login-register.default",(function(e,t){var n=e.find(".eael-login-registration-wrapper"),r=n.data("widget-id"),a=n.data("recaptcha-sitekey"),i=e.find("#eael-login-form-wrapper"),o=i.data("recaptcha-theme"),d=i.data("recaptcha-size"),c=e.find("#eael-register-form-wrapper"),l=c.data("recaptcha-theme"),f=c.data("recaptcha-size"),u=e.find("#eael-lr-reg-toggle"),s=e.find("#eael-lr-login-toggle"),p=i.find("#eael-user-password"),h="undefined"!=typeof grecaptcha&&null!==grecaptcha;"form"===u.data("action")&&u.on("click",(function(e){e.preventDefault(),i.hide(),c.fadeIn()})),"form"===s.data("action")&&s.on("click",(function(e){e.preventDefault(),c.hide(),i.fadeIn()}));var g=!1;function m(){var e=document.getElementById("login-recaptcha-node-"+r),t=document.getElementById("register-recaptcha-node-"+r);e&&grecaptcha.render(e,{sitekey:a,theme:o,size:d}),t&&grecaptcha.render(t,{sitekey:a,theme:l,size:f})}t(document).on("click","#wp-hide-pw",(function(e){var n=t(this).find("span");g?(p.attr("type","password"),n.removeClass("dashicons-hidden").addClass("dashicons-visibility"),g=!1):(p.attr("type","text"),n.removeClass("dashicons-visibility").addClass("dashicons-hidden"),g=!0)})),h&&isEditMode?m():t(window).load((function(){h&&m()}))}))}))}});
essential_adons_elementor.php CHANGED
@@ -4,7 +4,7 @@
4
  * Description: The Essential plugin you install after Elementor! 70+ Premium elements, including WooCommerce, Event Calender, Data Table, Post Grid, Instagram Feed.
5
  * Plugin URI: https://essential-addons.com/elementor/
6
  * Author: WPDeveloper
7
- * Version: 4.2.1
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
@@ -26,10 +26,9 @@ define('EAEL_PLUGIN_FILE', __FILE__);
26
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
27
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
28
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
29
- define('EAEL_PLUGIN_VERSION', '4.2.1');
30
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
31
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
32
- define('EAEL_TEXTDOMAIN', 'essential-addons-for-elementor-lite');
33
  /**
34
  * Including composer autoloader globally.
35
  *
4
  * Description: The Essential plugin you install after Elementor! 70+ Premium elements, including WooCommerce, Event Calender, Data Table, Post Grid, Instagram Feed.
5
  * Plugin URI: https://essential-addons.com/elementor/
6
  * Author: WPDeveloper
7
+ * Version: 4.2.2
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
26
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
27
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
28
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
29
+ define('EAEL_PLUGIN_VERSION', '4.2.2');
30
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
31
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
 
32
  /**
33
  * Including composer autoloader globally.
34
  *
includes/Elements/Adv_Accordion.php CHANGED
@@ -238,7 +238,7 @@ class Adv_Accordion extends Widget_Base
238
  'type' => Controls_Manager::CHOOSE,
239
  'options' => [
240
  '1' => [
241
- 'title' => __('', 'essential-addons-for-elementor-lite'),
242
  'icon' => 'fa fa-unlock-alt',
243
  ],
244
  ],
@@ -407,7 +407,7 @@ class Adv_Accordion extends Widget_Base
407
  ]
408
  ]
409
  );
410
-
411
  $this->add_responsive_control(
412
  'eael_adv_accordion_tab_distance',
413
  [
@@ -816,7 +816,7 @@ class Adv_Accordion extends Widget_Base
816
  ],
817
  ]
818
  );
819
-
820
  // caret tabs
821
  $this->start_controls_tabs(
822
  'eael_adv_accordion_tab_caret_tabs'
@@ -863,8 +863,8 @@ class Adv_Accordion extends Widget_Base
863
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle',
864
  ]
865
  );
866
-
867
-
868
 
869
  $this->end_controls_tab();
870
 
@@ -910,10 +910,10 @@ class Adv_Accordion extends Widget_Base
910
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle:hover',
911
  ]
912
  );
913
-
914
 
915
  $this->end_controls_tab();
916
-
917
  $this->start_controls_tab(
918
  'eael_adv_accordion_tab_caret_tabs_active',
919
  [
@@ -957,7 +957,7 @@ class Adv_Accordion extends Widget_Base
957
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle',
958
  ]
959
  );
960
-
961
 
962
  $this->end_controls_tab();
963
 
@@ -1082,4 +1082,4 @@ class Adv_Accordion extends Widget_Base
1082
  }
1083
  echo '</div>';
1084
  }
1085
- }
238
  'type' => Controls_Manager::CHOOSE,
239
  'options' => [
240
  '1' => [
241
+ 'title' => '',
242
  'icon' => 'fa fa-unlock-alt',
243
  ],
244
  ],
407
  ]
408
  ]
409
  );
410
+
411
  $this->add_responsive_control(
412
  'eael_adv_accordion_tab_distance',
413
  [
816
  ],
817
  ]
818
  );
819
+
820
  // caret tabs
821
  $this->start_controls_tabs(
822
  'eael_adv_accordion_tab_caret_tabs'
863
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle',
864
  ]
865
  );
866
+
867
+
868
 
869
  $this->end_controls_tab();
870
 
910
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle:hover',
911
  ]
912
  );
913
+
914
 
915
  $this->end_controls_tab();
916
+
917
  $this->start_controls_tab(
918
  'eael_adv_accordion_tab_caret_tabs_active',
919
  [
957
  'selector' => '{{WRAPPER}} .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle',
958
  ]
959
  );
960
+
961
 
962
  $this->end_controls_tab();
963
 
1082
  }
1083
  echo '</div>';
1084
  }
1085
+ }
includes/Elements/Adv_Tabs.php CHANGED
@@ -242,7 +242,7 @@ class Adv_Tabs extends Widget_Base
242
  'type' => Controls_Manager::CHOOSE,
243
  'options' => [
244
  '1' => [
245
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
246
  'icon' => 'fa fa-unlock-alt',
247
  ],
248
  ],
@@ -250,10 +250,10 @@ class Adv_Tabs extends Widget_Base
250
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
251
  ]
252
  );
253
-
254
  $this->end_controls_section();
255
  }
256
-
257
  /**
258
  * -------------------------------------------
259
  * Tab Style Advance Tabs Generel Style
@@ -266,7 +266,7 @@ class Adv_Tabs extends Widget_Base
266
  'tab' => Controls_Manager::TAB_STYLE,
267
  ]
268
  );
269
-
270
  $this->add_responsive_control(
271
  'eael_adv_tabs_padding',
272
  [
@@ -822,7 +822,7 @@ class Adv_Tabs extends Widget_Base
822
  'default' => 'yes',
823
  ]
824
  );
825
-
826
  $this->end_controls_section();
827
  }
828
 
@@ -893,4 +893,4 @@ class Adv_Tabs extends Widget_Base
893
  }
894
 
895
  protected function content_template(){}
896
- }
242
  'type' => Controls_Manager::CHOOSE,
243
  'options' => [
244
  '1' => [
245
+ 'title' => '',
246
  'icon' => 'fa fa-unlock-alt',
247
  ],
248
  ],
250
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
251
  ]
252
  );
253
+
254
  $this->end_controls_section();
255
  }
256
+
257
  /**
258
  * -------------------------------------------
259
  * Tab Style Advance Tabs Generel Style
266
  'tab' => Controls_Manager::TAB_STYLE,
267
  ]
268
  );
269
+
270
  $this->add_responsive_control(
271
  'eael_adv_tabs_padding',
272
  [
822
  'default' => 'yes',
823
  ]
824
  );
825
+
826
  $this->end_controls_section();
827
  }
828
 
893
  }
894
 
895
  protected function content_template(){}
896
+ }
includes/Elements/Contact_Form_7.php CHANGED
@@ -271,7 +271,7 @@ class Contact_Form_7 extends Widget_Base
271
  'type' => Controls_Manager::CHOOSE,
272
  'options' => [
273
  '1' => [
274
- 'title' => __('', 'essential-addons-for-elementor-lite'),
275
  'icon' => 'fa fa-unlock-alt',
276
  ],
277
  ],
@@ -1532,7 +1532,7 @@ class Contact_Form_7 extends Widget_Base
1532
  'tab' => Controls_Manager::TAB_STYLE,
1533
  ]
1534
  );
1535
-
1536
  $this->add_group_control(
1537
  Group_Control_Typography::get_type(),
1538
  [
@@ -1629,7 +1629,7 @@ class Contact_Form_7 extends Widget_Base
1629
  'separator' => 'before',
1630
  ]
1631
  );
1632
-
1633
  $this->end_controls_section();
1634
 
1635
  }
@@ -1694,4 +1694,4 @@ class Contact_Form_7 extends Widget_Base
1694
  </div>';
1695
  }
1696
  }
1697
- }
271
  'type' => Controls_Manager::CHOOSE,
272
  'options' => [
273
  '1' => [
274
+ 'title' => '',
275
  'icon' => 'fa fa-unlock-alt',
276
  ],
277
  ],
1532
  'tab' => Controls_Manager::TAB_STYLE,
1533
  ]
1534
  );
1535
+
1536
  $this->add_group_control(
1537
  Group_Control_Typography::get_type(),
1538
  [
1629
  'separator' => 'before',
1630
  ]
1631
  );
1632
+
1633
  $this->end_controls_section();
1634
 
1635
  }
1694
  </div>';
1695
  }
1696
  }
1697
+ }
includes/Elements/Content_Ticker.php CHANGED
@@ -340,7 +340,7 @@ class Content_Ticker extends Widget_Base
340
  'type' => Controls_Manager::CHOOSE,
341
  'options' => [
342
  '1' => [
343
- 'title' => __('', 'essential-addons-for-elementor-lite'),
344
  'icon' => 'fa fa-unlock-alt',
345
  ],
346
  ],
@@ -826,7 +826,7 @@ class Content_Ticker extends Widget_Base
826
  $html .= '<i class="' . $arrow . '"></i>';
827
  }
828
  $html .= '</div>';
829
-
830
  $html .='<div class="swiper-button-prev swiper-button-prev-' . $this->get_id() . '">';
831
  if( isset($settings['prev_arrow']['value']['url'])) {
832
  $html .= '<img src="'.esc_url($settings['prev_arrow']['value']['url']).'" alt="'.esc_attr(get_post_meta($settings['prev_arrow']['value']['id'], '_wp_attachment_image_alt', true)).'" />';
@@ -834,7 +834,7 @@ class Content_Ticker extends Widget_Base
834
  $html .= '<i class="' . esc_attr($settings['prev_arrow']['value']) . '"></i>';
835
  }
836
  $html .= '</div>';
837
-
838
  $html .= '</div>';
839
 
840
 
340
  'type' => Controls_Manager::CHOOSE,
341
  'options' => [
342
  '1' => [
343
+ 'title' => '',
344
  'icon' => 'fa fa-unlock-alt',
345
  ],
346
  ],
826
  $html .= '<i class="' . $arrow . '"></i>';
827
  }
828
  $html .= '</div>';
829
+
830
  $html .='<div class="swiper-button-prev swiper-button-prev-' . $this->get_id() . '">';
831
  if( isset($settings['prev_arrow']['value']['url'])) {
832
  $html .= '<img src="'.esc_url($settings['prev_arrow']['value']['url']).'" alt="'.esc_attr(get_post_meta($settings['prev_arrow']['value']['id'], '_wp_attachment_image_alt', true)).'" />';
834
  $html .= '<i class="' . esc_attr($settings['prev_arrow']['value']) . '"></i>';
835
  }
836
  $html .= '</div>';
837
+
838
  $html .= '</div>';
839
 
840
 
includes/Elements/Countdown.php CHANGED
@@ -459,7 +459,7 @@ class Countdown extends Widget_Base {
459
  'type' => Controls_Manager::CHOOSE,
460
  'options' => [
461
  '1' => [
462
- 'title' => __( '', 'essential-addons-for-elementor-lite' ),
463
  'icon' => 'fa fa-unlock-alt',
464
  ],
465
  ],
@@ -1199,4 +1199,4 @@ class Countdown extends Widget_Base {
1199
  <?php
1200
 
1201
  }
1202
- }
459
  'type' => Controls_Manager::CHOOSE,
460
  'options' => [
461
  '1' => [
462
+ 'title' => '',
463
  'icon' => 'fa fa-unlock-alt',
464
  ],
465
  ],
1199
  <?php
1200
 
1201
  }
1202
+ }
includes/Elements/Creative_Button.php CHANGED
@@ -171,7 +171,7 @@ class Creative_Button extends Widget_Base {
171
  'type' => Controls_Manager::CHOOSE,
172
  'options' => [
173
  '1' => [
174
- 'title' => __( '', 'essential-addons-for-elementor-lite' ),
175
  'icon' => 'fa fa-unlock-alt',
176
  ],
177
  ],
@@ -569,4 +569,4 @@ class Creative_Button extends Widget_Base {
569
  <?php
570
 
571
  }
572
- }
171
  'type' => Controls_Manager::CHOOSE,
172
  'options' => [
173
  '1' => [
174
+ 'title' => '',
175
  'icon' => 'fa fa-unlock-alt',
176
  ],
177
  ],
569
  <?php
570
 
571
  }
572
+ }
includes/Elements/Cta_Box.php CHANGED
@@ -340,7 +340,7 @@ class Cta_Box extends Widget_Base
340
  'type' => Controls_Manager::CHOOSE,
341
  'options' => [
342
  '1' => [
343
- 'title' => __('', 'essential-addons-for-elementor-lite'),
344
  'icon' => 'fa fa-unlock-alt',
345
  ],
346
  ],
@@ -690,8 +690,8 @@ class Cta_Box extends Widget_Base
690
  ]
691
  );
692
 
693
-
694
-
695
  $this->add_control(
696
  'eael_cta_btn_normal_bg_color',
697
  [
@@ -1048,7 +1048,7 @@ class Cta_Box extends Widget_Base
1048
  // Button
1049
  $target_primary = $settings['eael_cta_btn_link']['is_external'] ? 'target="_blank"' : '';
1050
  $nofollow_primary = $settings['eael_cta_btn_link']['nofollow'] ? 'rel="nofollow"' : '';
1051
-
1052
 
1053
  if ('cta-bg-color' == $settings['eael_cta_color_type']) {
1054
  $cta_class = 'bg-lite';
@@ -1105,20 +1105,20 @@ class Cta_Box extends Widget_Base
1105
  ?>
1106
  <?php if ('cta-basic' == $settings['eael_cta_type']): ?>
1107
  <div class="eael-call-to-action <?php echo esc_attr($cta_class); ?>">
1108
- <?php
1109
  print $headingMarkup;
1110
  print $contentMarkup;
1111
- print $buttonMarkup;
1112
  ?>
1113
  </div>
1114
  <?php endif;?>
1115
  <?php if ('cta-flex' == $settings['eael_cta_type']): ?>
1116
  <div class="eael-call-to-action cta-flex <?php echo esc_attr($cta_class); ?>">
1117
  <div class="content">
1118
- <?php
1119
  print $headingMarkup;
1120
  print $contentMarkup;
1121
- ?>
1122
  </div>
1123
  <div class="action">
1124
  <?php print $buttonMarkup; ?>
@@ -1139,10 +1139,10 @@ class Cta_Box extends Widget_Base
1139
  <?php }?>
1140
  </div>
1141
  <div class="content">
1142
- <?php
1143
  print $headingMarkup;
1144
  print $contentMarkup;
1145
- ?>
1146
  </div>
1147
  <div class="action">
1148
  <?php print $buttonMarkup; ?>
@@ -1151,4 +1151,4 @@ class Cta_Box extends Widget_Base
1151
  <?php endif;?>
1152
  <?php
1153
  }
1154
- }
340
  'type' => Controls_Manager::CHOOSE,
341
  'options' => [
342
  '1' => [
343
+ 'title' => '',
344
  'icon' => 'fa fa-unlock-alt',
345
  ],
346
  ],
690
  ]
691
  );
692
 
693
+
694
+
695
  $this->add_control(
696
  'eael_cta_btn_normal_bg_color',
697
  [
1048
  // Button
1049
  $target_primary = $settings['eael_cta_btn_link']['is_external'] ? 'target="_blank"' : '';
1050
  $nofollow_primary = $settings['eael_cta_btn_link']['nofollow'] ? 'rel="nofollow"' : '';
1051
+
1052
 
1053
  if ('cta-bg-color' == $settings['eael_cta_color_type']) {
1054
  $cta_class = 'bg-lite';
1105
  ?>
1106
  <?php if ('cta-basic' == $settings['eael_cta_type']): ?>
1107
  <div class="eael-call-to-action <?php echo esc_attr($cta_class); ?>">
1108
+ <?php
1109
  print $headingMarkup;
1110
  print $contentMarkup;
1111
+ print $buttonMarkup;
1112
  ?>
1113
  </div>
1114
  <?php endif;?>
1115
  <?php if ('cta-flex' == $settings['eael_cta_type']): ?>
1116
  <div class="eael-call-to-action cta-flex <?php echo esc_attr($cta_class); ?>">
1117
  <div class="content">
1118
+ <?php
1119
  print $headingMarkup;
1120
  print $contentMarkup;
1121
+ ?>
1122
  </div>
1123
  <div class="action">
1124
  <?php print $buttonMarkup; ?>
1139
  <?php }?>
1140
  </div>
1141
  <div class="content">
1142
+ <?php
1143
  print $headingMarkup;
1144
  print $contentMarkup;
1145
+ ?>
1146
  </div>
1147
  <div class="action">
1148
  <?php print $buttonMarkup; ?>
1151
  <?php endif;?>
1152
  <?php
1153
  }
1154
+ }
includes/Elements/Data_Table.php CHANGED
@@ -33,7 +33,7 @@ class Data_Table extends Widget_Base {
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
-
37
  public function get_keywords() {
38
  return [
39
  'table',
@@ -230,7 +230,7 @@ class Data_Table extends Widget_Base {
230
  'label' => esc_html__( 'Content', 'essential-addons-for-elementor-lite')
231
  ]
232
  );
233
-
234
  $repeater = new Repeater();
235
 
236
  $repeater->add_control(
@@ -432,7 +432,7 @@ class Data_Table extends Widget_Base {
432
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
433
  ]
434
  );
435
-
436
  $this->add_control(
437
  'eael_control_get_pro',
438
  [
@@ -440,7 +440,7 @@ class Data_Table extends Widget_Base {
440
  'type' => Controls_Manager::CHOOSE,
441
  'options' => [
442
  '1' => [
443
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
444
  'icon' => 'fa fa-unlock-alt',
445
  ],
446
  ],
@@ -448,7 +448,7 @@ class Data_Table extends Widget_Base {
448
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
449
  ]
450
  );
451
-
452
  $this->end_controls_section();
453
  }
454
 
@@ -592,7 +592,7 @@ class Data_Table extends Widget_Base {
592
  ],
593
  ]
594
  );
595
-
596
  $this->add_group_control(
597
  Group_Control_Border::get_type(),
598
  [
@@ -603,7 +603,7 @@ class Data_Table extends Widget_Base {
603
  );
604
 
605
  $this->end_controls_tab();
606
-
607
  $this->start_controls_tab( 'eael_data_table_header_title_hover', [ 'label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite') ] );
608
 
609
  $this->add_control(
@@ -847,7 +847,7 @@ class Data_Table extends Widget_Base {
847
  );
848
 
849
  $this->end_controls_tab();
850
-
851
  $this->start_controls_tab('eael_data_table_odd_cell_hover_style', ['label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite')]);
852
 
853
  $this->add_control(
@@ -1126,7 +1126,7 @@ class Data_Table extends Widget_Base {
1126
 
1127
  $table_tr_keys = array_keys( $table_tr );
1128
  $last_key = end( $table_tr_keys );
1129
-
1130
  $tbody_content = ($content_row['eael_data_table_content_type'] == 'editor') ? $content_row['eael_data_table_content_row_content'] : $content_row['eael_data_table_content_row_title'];
1131
 
1132
  $table_td[] = [
@@ -1144,7 +1144,7 @@ class Data_Table extends Widget_Base {
1144
  'tr_id' => $content_row['eael_data_table_content_row_css_id']
1145
  ];
1146
  }
1147
- }
1148
  $table_th_count = count($settings['eael_data_table_header_cols_data']);
1149
  $this->add_render_attribute('eael_data_table_wrap', [
1150
  'class' => 'eael-data-table-wrap',
@@ -1256,4 +1256,4 @@ class Data_Table extends Widget_Base {
1256
  }
1257
 
1258
  protected function content_template() {}
1259
- }
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
+
37
  public function get_keywords() {
38
  return [
39
  'table',
230
  'label' => esc_html__( 'Content', 'essential-addons-for-elementor-lite')
231
  ]
232
  );
233
+
234
  $repeater = new Repeater();
235
 
236
  $repeater->add_control(
432
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
433
  ]
434
  );
435
+
436
  $this->add_control(
437
  'eael_control_get_pro',
438
  [
440
  'type' => Controls_Manager::CHOOSE,
441
  'options' => [
442
  '1' => [
443
+ 'title' => '',
444
  'icon' => 'fa fa-unlock-alt',
445
  ],
446
  ],
448
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
449
  ]
450
  );
451
+
452
  $this->end_controls_section();
453
  }
454
 
592
  ],
593
  ]
594
  );
595
+
596
  $this->add_group_control(
597
  Group_Control_Border::get_type(),
598
  [
603
  );
604
 
605
  $this->end_controls_tab();
606
+
607
  $this->start_controls_tab( 'eael_data_table_header_title_hover', [ 'label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite') ] );
608
 
609
  $this->add_control(
847
  );
848
 
849
  $this->end_controls_tab();
850
+
851
  $this->start_controls_tab('eael_data_table_odd_cell_hover_style', ['label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite')]);
852
 
853
  $this->add_control(
1126
 
1127
  $table_tr_keys = array_keys( $table_tr );
1128
  $last_key = end( $table_tr_keys );
1129
+
1130
  $tbody_content = ($content_row['eael_data_table_content_type'] == 'editor') ? $content_row['eael_data_table_content_row_content'] : $content_row['eael_data_table_content_row_title'];
1131
 
1132
  $table_td[] = [
1144
  'tr_id' => $content_row['eael_data_table_content_row_css_id']
1145
  ];
1146
  }
1147
+ }
1148
  $table_th_count = count($settings['eael_data_table_header_cols_data']);
1149
  $this->add_render_attribute('eael_data_table_wrap', [
1150
  'class' => 'eael-data-table-wrap',
1256
  }
1257
 
1258
  protected function content_template() {}
1259
+ }
includes/Elements/Dual_Color_Header.php CHANGED
@@ -30,7 +30,7 @@ class Dual_Color_Header extends Widget_Base {
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
-
34
  public function get_keywords()
35
  {
36
  return [
@@ -196,7 +196,7 @@ class Dual_Color_Header extends Widget_Base {
196
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
197
  ]
198
  );
199
-
200
  $this->add_control(
201
  'eael_control_get_pro',
202
  [
@@ -204,7 +204,7 @@ class Dual_Color_Header extends Widget_Base {
204
  'type' => Controls_Manager::CHOOSE,
205
  'options' => [
206
  '1' => [
207
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
208
  'icon' => 'fa fa-unlock-alt',
209
  ],
210
  ],
@@ -212,7 +212,7 @@ class Dual_Color_Header extends Widget_Base {
212
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
213
  ]
214
  );
215
-
216
  $this->end_controls_section();
217
  }
218
 
@@ -506,4 +506,4 @@ class Dual_Color_Header extends Widget_Base {
506
 
507
  <?php
508
  }
509
- }
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
+
34
  public function get_keywords()
35
  {
36
  return [
196
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
197
  ]
198
  );
199
+
200
  $this->add_control(
201
  'eael_control_get_pro',
202
  [
204
  'type' => Controls_Manager::CHOOSE,
205
  'options' => [
206
  '1' => [
207
+ 'title' => '',
208
  'icon' => 'fa fa-unlock-alt',
209
  ],
210
  ],
212
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
213
  ]
214
  );
215
+
216
  $this->end_controls_section();
217
  }
218
 
506
 
507
  <?php
508
  }
509
+ }
includes/Elements/Event_Calendar.php CHANGED
@@ -1650,7 +1650,7 @@ class Event_Calendar extends Widget_Base {
1650
  <p></p>
1651
  </div>
1652
  <div class="eaelec-modal-footer">
1653
- <a class="eaelec-event-details-link">'.__("Event Details","essential-addons-for-elementor-lite").'</a>
1654
  </div>
1655
  </div>
1656
  </div>';
1650
  <p></p>
1651
  </div>
1652
  <div class="eaelec-modal-footer">
1653
+ <a class="eaelec-event-details-link">'.__('Event Details', 'essential-addons-for-elementor-lite').'</a>
1654
  </div>
1655
  </div>
1656
  </div>';
includes/Elements/Facebook_Feed.php CHANGED
@@ -34,7 +34,7 @@ class Facebook_Feed extends Widget_Base
34
  {
35
  return ['essential-addons-elementor'];
36
  }
37
-
38
  public function get_keywords() {
39
  return [
40
  'facebook',
@@ -84,7 +84,7 @@ class Facebook_Feed extends Widget_Base
84
  'label' => esc_html__('Page ID', 'essential-addons-for-elementor-lite'),
85
  'type' => Controls_Manager::TEXT,
86
  'label_block' => true,
87
- 'default' => esc_html__('', 'essential-addons-for-elementor-lite'),
88
  'description' => __('<a href="https://findmyfbid.com/" class="eael-btn" target="_blank">Find Your Page ID</a>', 'essential-addons-for-elementor-lite'),
89
  ]
90
  );
@@ -95,7 +95,7 @@ class Facebook_Feed extends Widget_Base
95
  'label' => esc_html__('Access Token', 'essential-addons-for-elementor-lite'),
96
  'type' => Controls_Manager::TEXT,
97
  'label_block' => true,
98
- 'default' => esc_html__('', 'essential-addons-for-elementor-lite'),
99
  'description' => __('<a href="https://essential-addons.com/elementor/docs/facebook-feed/" class="eael-btn" target="_blank">Get Access Token</a>', 'essential-addons-for-elementor-lite'),
100
  ]
101
  );
34
  {
35
  return ['essential-addons-elementor'];
36
  }
37
+
38
  public function get_keywords() {
39
  return [
40
  'facebook',
84
  'label' => esc_html__('Page ID', 'essential-addons-for-elementor-lite'),
85
  'type' => Controls_Manager::TEXT,
86
  'label_block' => true,
87
+ 'default' => '',
88
  'description' => __('<a href="https://findmyfbid.com/" class="eael-btn" target="_blank">Find Your Page ID</a>', 'essential-addons-for-elementor-lite'),
89
  ]
90
  );
95
  'label' => esc_html__('Access Token', 'essential-addons-for-elementor-lite'),
96
  'type' => Controls_Manager::TEXT,
97
  'label_block' => true,
98
+ 'default' => '',
99
  'description' => __('<a href="https://essential-addons.com/elementor/docs/facebook-feed/" class="eael-btn" target="_blank">Get Access Token</a>', 'essential-addons-for-elementor-lite'),
100
  ]
101
  );
includes/Elements/Fancy_Text.php CHANGED
@@ -31,7 +31,7 @@ class Fancy_Text extends Widget_Base {
31
  public function get_categories() {
32
  return [ 'essential-addons-elementor' ];
33
  }
34
-
35
  public function get_keywords() {
36
  return [
37
  'ea fancy text',
@@ -128,7 +128,7 @@ class Fancy_Text extends Widget_Base {
128
  'label' => esc_html__( 'Fancy Text Settings', 'essential-addons-for-elementor-lite')
129
  ]
130
  );
131
-
132
  $style_options = apply_filters(
133
  'fancy_text_style_types',
134
  [
@@ -139,7 +139,7 @@ class Fancy_Text extends Widget_Base {
139
  'conditions' => ['style-2']
140
  ]
141
  );
142
-
143
  $this->add_control(
144
  'eael_fancy_text_style',
145
  [
@@ -258,7 +258,7 @@ class Fancy_Text extends Widget_Base {
258
 
259
  $this->end_controls_section();
260
 
261
-
262
  if(!apply_filters('eael/pro_enabled', false)) {
263
  $this->start_controls_section(
264
  'eael_section_pro',
@@ -266,7 +266,7 @@ class Fancy_Text extends Widget_Base {
266
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
267
  ]
268
  );
269
-
270
  $this->add_control(
271
  'eael_control_get_pro',
272
  [
@@ -274,7 +274,7 @@ class Fancy_Text extends Widget_Base {
274
  'type' => Controls_Manager::CHOOSE,
275
  'options' => [
276
  '1' => [
277
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
278
  'icon' => 'fa fa-unlock-alt',
279
  ],
280
  ],
@@ -282,7 +282,7 @@ class Fancy_Text extends Widget_Base {
282
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
283
  ]
284
  );
285
-
286
  $this->end_controls_section();
287
  }
288
 
@@ -527,4 +527,4 @@ class Fancy_Text extends Widget_Base {
527
  }
528
 
529
  protected function content_template() {}
530
- }
31
  public function get_categories() {
32
  return [ 'essential-addons-elementor' ];
33
  }
34
+
35
  public function get_keywords() {
36
  return [
37
  'ea fancy text',
128
  'label' => esc_html__( 'Fancy Text Settings', 'essential-addons-for-elementor-lite')
129
  ]
130
  );
131
+
132
  $style_options = apply_filters(
133
  'fancy_text_style_types',
134
  [
139
  'conditions' => ['style-2']
140
  ]
141
  );
142
+
143
  $this->add_control(
144
  'eael_fancy_text_style',
145
  [
258
 
259
  $this->end_controls_section();
260
 
261
+
262
  if(!apply_filters('eael/pro_enabled', false)) {
263
  $this->start_controls_section(
264
  'eael_section_pro',
266
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
267
  ]
268
  );
269
+
270
  $this->add_control(
271
  'eael_control_get_pro',
272
  [
274
  'type' => Controls_Manager::CHOOSE,
275
  'options' => [
276
  '1' => [
277
+ 'title' => '',
278
  'icon' => 'fa fa-unlock-alt',
279
  ],
280
  ],
282
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
283
  ]
284
  );
285
+
286
  $this->end_controls_section();
287
  }
288
 
527
  }
528
 
529
  protected function content_template() {}
530
+ }
includes/Elements/Filterable_Gallery.php CHANGED
@@ -52,7 +52,7 @@ class Filterable_Gallery extends Widget_Base
52
  'font-awesome-4-shim'
53
  ];
54
  }
55
-
56
  public function get_keywords()
57
  {
58
  return [
@@ -273,7 +273,7 @@ class Filterable_Gallery extends Widget_Base
273
  'default' => ''
274
  ]
275
  );
276
-
277
  $this->add_control(
278
  'eael_section_fg_full_image_clickable',
279
  [
@@ -285,7 +285,7 @@ class Filterable_Gallery extends Widget_Base
285
  'default' => ''
286
  ]
287
  );
288
-
289
  $this->add_control(
290
  'eael_section_fg_full_image_action',
291
  [
@@ -779,7 +779,7 @@ class Filterable_Gallery extends Widget_Base
779
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
780
  ]
781
  );
782
-
783
  $this->add_control(
784
  'eael_control_get_pro',
785
  [
@@ -787,7 +787,7 @@ class Filterable_Gallery extends Widget_Base
787
  'type' => Controls_Manager::CHOOSE,
788
  'options' => [
789
  '1' => [
790
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
791
  'icon' => 'fa fa-unlock-alt',
792
  ],
793
  ],
@@ -795,7 +795,7 @@ class Filterable_Gallery extends Widget_Base
795
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
796
  ]
797
  );
798
-
799
  $this->end_controls_section();
800
  }
801
 
@@ -1715,7 +1715,7 @@ class Filterable_Gallery extends Widget_Base
1715
  ],
1716
  ]
1717
  );
1718
-
1719
  $this->add_control(
1720
  'eael_fg_item_icon_color',
1721
  [
@@ -1727,7 +1727,7 @@ class Filterable_Gallery extends Widget_Base
1727
  ],
1728
  ]
1729
  );
1730
-
1731
  $this->add_responsive_control(
1732
  'eael_fg_item_icon_padding',
1733
  [
@@ -1739,7 +1739,7 @@ class Filterable_Gallery extends Widget_Base
1739
  ],
1740
  ]
1741
  );
1742
-
1743
  $this->add_responsive_control(
1744
  'eael_fg_item_icon_margin',
1745
  [
@@ -1751,7 +1751,7 @@ class Filterable_Gallery extends Widget_Base
1751
  ],
1752
  ]
1753
  );
1754
-
1755
  $this->add_control(
1756
  'eael_fg_item_icon_exact_size',
1757
  [
@@ -1777,7 +1777,7 @@ class Filterable_Gallery extends Widget_Base
1777
  ],
1778
  ]
1779
  );
1780
-
1781
  $this->add_control(
1782
  'eael_fg_item_icon_size',
1783
  [
@@ -1802,7 +1802,7 @@ class Filterable_Gallery extends Widget_Base
1802
  ],
1803
  ]
1804
  );
1805
-
1806
  $this->add_group_control(
1807
  Group_Control_Border::get_type(),
1808
  [
@@ -1811,7 +1811,7 @@ class Filterable_Gallery extends Widget_Base
1811
  'selector' => '{{WRAPPER}} .gallery-item-caption-wrap .gallery-item-buttons > a span',
1812
  ]
1813
  );
1814
-
1815
  $this->add_control(
1816
  'eael_fg_item_icon_border_radius',
1817
  [
@@ -1851,7 +1851,7 @@ class Filterable_Gallery extends Widget_Base
1851
  ],
1852
  ]
1853
  );
1854
-
1855
  $this->add_control(
1856
  'eael_fg_item_icon_color_hover',
1857
  [
@@ -1872,7 +1872,7 @@ class Filterable_Gallery extends Widget_Base
1872
  'selector' => '{{WRAPPER}} .gallery-item-caption-wrap .gallery-item-buttons > a span:hover',
1873
  ]
1874
  );
1875
-
1876
  $this->add_control(
1877
  'eael_fg_item_icon_border_radius_hover',
1878
  [
@@ -2198,7 +2198,7 @@ class Filterable_Gallery extends Widget_Base
2198
  'selector' => '{{WRAPPER}} .fg-filter-wrap button'
2199
  ]
2200
  );
2201
-
2202
  $this->add_control(
2203
  'fg_sf_separator',
2204
  [
@@ -2364,7 +2364,7 @@ class Filterable_Gallery extends Widget_Base
2364
  'selector' => '{{WRAPPER}} .fg-layout-3-filter-controls',
2365
  ]
2366
  );
2367
-
2368
  $this->add_group_control(
2369
  Group_Control_Typography::get_type(),
2370
  [
@@ -2409,7 +2409,7 @@ class Filterable_Gallery extends Widget_Base
2409
  ]
2410
  ]
2411
  );
2412
-
2413
  $this->end_controls_section();
2414
 
2415
  /**
@@ -2558,7 +2558,7 @@ class Filterable_Gallery extends Widget_Base
2558
  ]
2559
  ]
2560
  );
2561
-
2562
  $this->add_control(
2563
  'load_more_button_icon_spacing',
2564
  [
@@ -2787,7 +2787,7 @@ class Filterable_Gallery extends Widget_Base
2787
  echo '<i class="fas fa-angle-down"></i>';
2788
  }
2789
  ?>
2790
-
2791
  </button>
2792
  <ul class="fg-layout-3-filter-controls">
2793
  <?php if ($settings['eael_fg_all_label_text']) {?>
@@ -2913,7 +2913,7 @@ class Filterable_Gallery extends Widget_Base
2913
 
2914
  if ($item['show_lightbox'] == true) {
2915
  echo '<a href="' . esc_url($item['image']) . '" class="eael-magnific-link" data-elementor-open-lightbox="no">';
2916
-
2917
  echo '<span class="fg-item-icon-inner">';
2918
  if ($zoom_icon_is_new || $zoom_icon_migrated) {
2919
  if (isset($settings['eael_section_fg_zoom_icon_new']['value']['url'])) {
@@ -2959,7 +2959,7 @@ class Filterable_Gallery extends Widget_Base
2959
  }
2960
 
2961
  echo '</div>';
2962
-
2963
  return ob_get_clean();
2964
  }
2965
 
@@ -2976,33 +2976,33 @@ class Filterable_Gallery extends Widget_Base
2976
  if ( $settings['eael_section_fg_full_image_clickable'] ) {
2977
 
2978
  if ( $settings['eael_section_fg_full_image_action'] === 'lightbox' ) {
2979
-
2980
  $html .= '<a href="' . esc_url($item['image']) . '" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no">';
2981
-
2982
  }
2983
-
2984
  if ( $settings['eael_section_fg_full_image_action'] === 'link' ) {
2985
-
2986
  $fia_string = 'href="' . esc_url($item['link']['url']) . '"';
2987
-
2988
  if ( $item['link']['nofollow'] ) {
2989
  $fia_string .= 'rel="nofollow"';
2990
  }
2991
-
2992
  if ( $item['link']['is_external'] ) {
2993
  $fia_string .= 'target="_blank"';
2994
  }
2995
-
2996
  $html .= '<a ' . $fia_string . '>';
2997
-
2998
  }
2999
-
3000
  }
3001
 
3002
  $html .= '<div class="fg-layout-3-item-thumb">';
3003
 
3004
  $html .= '<img src="' . $item['image'] . '" data-lazy-src="'.$item['image'].'" alt="' . esc_attr(get_post_meta($item['image_id'], '_wp_attachment_image_alt', true)) . '" class="gallery-item-thumbnail">';
3005
-
3006
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer">';
3007
  $html .= '<div class="fg-caption-head">';
3008
  if(isset($item['price_switch']) && $item['price_switch'] == 'true') {
@@ -3016,16 +3016,16 @@ class Filterable_Gallery extends Widget_Base
3016
  if (isset($item['video_gallery_switch']) && ($item['video_gallery_switch'] === 'true')) {
3017
  $icon_url = isset($item['play_icon']['url']) ? $item['play_icon']['url'] : '';
3018
  $video_url = isset($item['video_link']) ? $item['video_link'] : '#';
3019
-
3020
  $html .= '<a href="' . esc_url($video_url) . '" class="video-popup eael-magnific-link eael-magnific-video-link mfp-iframe">';
3021
  if (!empty($icon_url)) $html .= '<img src="' . esc_url($icon_url) . '">';
3022
  $html .= '</a>';
3023
  }else {
3024
-
3025
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3026
-
3027
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3028
-
3029
  }
3030
  }
3031
 
@@ -3087,13 +3087,13 @@ class Filterable_Gallery extends Widget_Base
3087
  }
3088
 
3089
  if ( $settings['eael_section_fg_full_image_action'] === 'link' ) {
3090
-
3091
  $fia_string = 'href="' . esc_url($item['link']['url']) . '"';
3092
 
3093
  if ( $item['link']['nofollow'] ) {
3094
  $fia_string .= 'rel="nofollow"';
3095
  }
3096
-
3097
  if ( $item['link']['is_external'] ) {
3098
  $fia_string .= 'target="_blank"';
3099
  }
@@ -3105,15 +3105,15 @@ class Filterable_Gallery extends Widget_Base
3105
  }
3106
  $html .= '<div class="gallery-item-thumbnail-wrap">';
3107
  $html .= '<img src="' . $item['image'] . '" data-lazy-src="'.$item['image'].'" alt="' . esc_attr(get_post_meta($item['image_id'], '_wp_attachment_image_alt', true)) . '" class="gallery-item-thumbnail">';
3108
-
3109
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3110
-
3111
  if ($settings['eael_fg_show_popup'] == 'buttons' && $settings['eael_fg_caption_style'] === 'card') {
3112
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer ' . $settings['eael_fg_grid_hover_style'] . '">';
3113
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3114
  $html .= '</div>';
3115
  }
3116
-
3117
  }
3118
 
3119
  if (isset($item['video_gallery_switch']) && ($item['video_gallery_switch'] === 'true')) {
@@ -3156,14 +3156,14 @@ class Filterable_Gallery extends Widget_Base
3156
  }
3157
 
3158
  if ($settings['eael_fg_show_popup'] == 'buttons' && $settings['eael_fg_caption_style'] !== 'card') {
3159
-
3160
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3161
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3162
  }
3163
 
3164
  }
3165
  $html .= '</div>';
3166
-
3167
  $html .= '</div>';
3168
  if ( $settings['eael_section_fg_full_image_clickable'] ) $html .= '</a>';
3169
  }
@@ -3300,7 +3300,7 @@ class Filterable_Gallery extends Widget_Base
3300
  // init isotope
3301
  var layoutMode = $('.eael-filter-gallery-wrapper').data('layout-mode');
3302
  var mfpCaption = $('.eael-filter-gallery-wrapper').data('mfp_caption');
3303
-
3304
  var $isotope_gallery = $gallery.isotope({
3305
  itemSelector: '.eael-filterable-gallery-item-wrap',
3306
  layoutMode: $layout_mode,
@@ -3333,12 +3333,12 @@ class Filterable_Gallery extends Widget_Base
3333
  titleSrc: function(item) {
3334
  if (mfpCaption == "yes") {
3335
  return item.el.parents('.gallery-item-caption-over').find('.fg-item-title').html() || item.el.parents('.gallery-item-caption-wrap').find('.fg-item-title').html() || item.el.parents('.eael-filterable-gallery-item-wrap').find('.fg-item-title').html();
3336
-
3337
  }
3338
  }
3339
  }
3340
  });
3341
-
3342
  // filter
3343
  $scope.on("click", ".control", function(){
3344
  var $this = $(this);
@@ -3412,4 +3412,4 @@ class Filterable_Gallery extends Widget_Base
3412
  </script>
3413
  <?php
3414
  }
3415
- }
52
  'font-awesome-4-shim'
53
  ];
54
  }
55
+
56
  public function get_keywords()
57
  {
58
  return [
273
  'default' => ''
274
  ]
275
  );
276
+
277
  $this->add_control(
278
  'eael_section_fg_full_image_clickable',
279
  [
285
  'default' => ''
286
  ]
287
  );
288
+
289
  $this->add_control(
290
  'eael_section_fg_full_image_action',
291
  [
779
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
780
  ]
781
  );
782
+
783
  $this->add_control(
784
  'eael_control_get_pro',
785
  [
787
  'type' => Controls_Manager::CHOOSE,
788
  'options' => [
789
  '1' => [
790
+ 'title' => '',
791
  'icon' => 'fa fa-unlock-alt',
792
  ],
793
  ],
795
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
796
  ]
797
  );
798
+
799
  $this->end_controls_section();
800
  }
801
 
1715
  ],
1716
  ]
1717
  );
1718
+
1719
  $this->add_control(
1720
  'eael_fg_item_icon_color',
1721
  [
1727
  ],
1728
  ]
1729
  );
1730
+
1731
  $this->add_responsive_control(
1732
  'eael_fg_item_icon_padding',
1733
  [
1739
  ],
1740
  ]
1741
  );
1742
+
1743
  $this->add_responsive_control(
1744
  'eael_fg_item_icon_margin',
1745
  [
1751
  ],
1752
  ]
1753
  );
1754
+
1755
  $this->add_control(
1756
  'eael_fg_item_icon_exact_size',
1757
  [
1777
  ],
1778
  ]
1779
  );
1780
+
1781
  $this->add_control(
1782
  'eael_fg_item_icon_size',
1783
  [
1802
  ],
1803
  ]
1804
  );
1805
+
1806
  $this->add_group_control(
1807
  Group_Control_Border::get_type(),
1808
  [
1811
  'selector' => '{{WRAPPER}} .gallery-item-caption-wrap .gallery-item-buttons > a span',
1812
  ]
1813
  );
1814
+
1815
  $this->add_control(
1816
  'eael_fg_item_icon_border_radius',
1817
  [
1851
  ],
1852
  ]
1853
  );
1854
+
1855
  $this->add_control(
1856
  'eael_fg_item_icon_color_hover',
1857
  [
1872
  'selector' => '{{WRAPPER}} .gallery-item-caption-wrap .gallery-item-buttons > a span:hover',
1873
  ]
1874
  );
1875
+
1876
  $this->add_control(
1877
  'eael_fg_item_icon_border_radius_hover',
1878
  [
2198
  'selector' => '{{WRAPPER}} .fg-filter-wrap button'
2199
  ]
2200
  );
2201
+
2202
  $this->add_control(
2203
  'fg_sf_separator',
2204
  [
2364
  'selector' => '{{WRAPPER}} .fg-layout-3-filter-controls',
2365
  ]
2366
  );
2367
+
2368
  $this->add_group_control(
2369
  Group_Control_Typography::get_type(),
2370
  [
2409
  ]
2410
  ]
2411
  );
2412
+
2413
  $this->end_controls_section();
2414
 
2415
  /**
2558
  ]
2559
  ]
2560
  );
2561
+
2562
  $this->add_control(
2563
  'load_more_button_icon_spacing',
2564
  [
2787
  echo '<i class="fas fa-angle-down"></i>';
2788
  }
2789
  ?>
2790
+
2791
  </button>
2792
  <ul class="fg-layout-3-filter-controls">
2793
  <?php if ($settings['eael_fg_all_label_text']) {?>
2913
 
2914
  if ($item['show_lightbox'] == true) {
2915
  echo '<a href="' . esc_url($item['image']) . '" class="eael-magnific-link" data-elementor-open-lightbox="no">';
2916
+
2917
  echo '<span class="fg-item-icon-inner">';
2918
  if ($zoom_icon_is_new || $zoom_icon_migrated) {
2919
  if (isset($settings['eael_section_fg_zoom_icon_new']['value']['url'])) {
2959
  }
2960
 
2961
  echo '</div>';
2962
+
2963
  return ob_get_clean();
2964
  }
2965
 
2976
  if ( $settings['eael_section_fg_full_image_clickable'] ) {
2977
 
2978
  if ( $settings['eael_section_fg_full_image_action'] === 'lightbox' ) {
2979
+
2980
  $html .= '<a href="' . esc_url($item['image']) . '" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no">';
2981
+
2982
  }
2983
+
2984
  if ( $settings['eael_section_fg_full_image_action'] === 'link' ) {
2985
+
2986
  $fia_string = 'href="' . esc_url($item['link']['url']) . '"';
2987
+
2988
  if ( $item['link']['nofollow'] ) {
2989
  $fia_string .= 'rel="nofollow"';
2990
  }
2991
+
2992
  if ( $item['link']['is_external'] ) {
2993
  $fia_string .= 'target="_blank"';
2994
  }
2995
+
2996
  $html .= '<a ' . $fia_string . '>';
2997
+
2998
  }
2999
+
3000
  }
3001
 
3002
  $html .= '<div class="fg-layout-3-item-thumb">';
3003
 
3004
  $html .= '<img src="' . $item['image'] . '" data-lazy-src="'.$item['image'].'" alt="' . esc_attr(get_post_meta($item['image_id'], '_wp_attachment_image_alt', true)) . '" class="gallery-item-thumbnail">';
3005
+
3006
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer">';
3007
  $html .= '<div class="fg-caption-head">';
3008
  if(isset($item['price_switch']) && $item['price_switch'] == 'true') {
3016
  if (isset($item['video_gallery_switch']) && ($item['video_gallery_switch'] === 'true')) {
3017
  $icon_url = isset($item['play_icon']['url']) ? $item['play_icon']['url'] : '';
3018
  $video_url = isset($item['video_link']) ? $item['video_link'] : '#';
3019
+
3020
  $html .= '<a href="' . esc_url($video_url) . '" class="video-popup eael-magnific-link eael-magnific-video-link mfp-iframe">';
3021
  if (!empty($icon_url)) $html .= '<img src="' . esc_url($icon_url) . '">';
3022
  $html .= '</a>';
3023
  }else {
3024
+
3025
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3026
+
3027
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3028
+
3029
  }
3030
  }
3031
 
3087
  }
3088
 
3089
  if ( $settings['eael_section_fg_full_image_action'] === 'link' ) {
3090
+
3091
  $fia_string = 'href="' . esc_url($item['link']['url']) . '"';
3092
 
3093
  if ( $item['link']['nofollow'] ) {
3094
  $fia_string .= 'rel="nofollow"';
3095
  }
3096
+
3097
  if ( $item['link']['is_external'] ) {
3098
  $fia_string .= 'target="_blank"';
3099
  }
3105
  }
3106
  $html .= '<div class="gallery-item-thumbnail-wrap">';
3107
  $html .= '<img src="' . $item['image'] . '" data-lazy-src="'.$item['image'].'" alt="' . esc_attr(get_post_meta($item['image_id'], '_wp_attachment_image_alt', true)) . '" class="gallery-item-thumbnail">';
3108
+
3109
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3110
+
3111
  if ($settings['eael_fg_show_popup'] == 'buttons' && $settings['eael_fg_caption_style'] === 'card') {
3112
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer ' . $settings['eael_fg_grid_hover_style'] . '">';
3113
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3114
  $html .= '</div>';
3115
  }
3116
+
3117
  }
3118
 
3119
  if (isset($item['video_gallery_switch']) && ($item['video_gallery_switch'] === 'true')) {
3156
  }
3157
 
3158
  if ($settings['eael_fg_show_popup'] == 'buttons' && $settings['eael_fg_caption_style'] !== 'card') {
3159
+
3160
  if ( empty($settings['eael_section_fg_full_image_clickable']) ) {
3161
  $html .= ($this->eael_render_fg_buttons($settings, $item));
3162
  }
3163
 
3164
  }
3165
  $html .= '</div>';
3166
+
3167
  $html .= '</div>';
3168
  if ( $settings['eael_section_fg_full_image_clickable'] ) $html .= '</a>';
3169
  }
3300
  // init isotope
3301
  var layoutMode = $('.eael-filter-gallery-wrapper').data('layout-mode');
3302
  var mfpCaption = $('.eael-filter-gallery-wrapper').data('mfp_caption');
3303
+
3304
  var $isotope_gallery = $gallery.isotope({
3305
  itemSelector: '.eael-filterable-gallery-item-wrap',
3306
  layoutMode: $layout_mode,
3333
  titleSrc: function(item) {
3334
  if (mfpCaption == "yes") {
3335
  return item.el.parents('.gallery-item-caption-over').find('.fg-item-title').html() || item.el.parents('.gallery-item-caption-wrap').find('.fg-item-title').html() || item.el.parents('.eael-filterable-gallery-item-wrap').find('.fg-item-title').html();
3336
+
3337
  }
3338
  }
3339
  }
3340
  });
3341
+
3342
  // filter
3343
  $scope.on("click", ".control", function(){
3344
  var $this = $(this);
3412
  </script>
3413
  <?php
3414
  }
3415
+ }
includes/Elements/Flip_Box.php CHANGED
@@ -33,7 +33,7 @@ class Flip_Box extends Widget_Base {
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
-
37
  public function get_keywords() {
38
  return [
39
  'flip',
@@ -333,8 +333,8 @@ class Flip_Box extends Widget_Base {
333
  );
334
 
335
  $this->end_controls_tab();
336
-
337
-
338
  $this->start_controls_tab(
339
  'eael_flipbox_content_back',
340
  [
@@ -365,7 +365,7 @@ class Flip_Box extends Widget_Base {
365
  $this->end_controls_tab();
366
 
367
  $this->end_controls_tabs();
368
-
369
  $this->add_control(
370
  'eael_flipbox_content_alignment',
371
  [
@@ -468,7 +468,7 @@ class Flip_Box extends Widget_Base {
468
  ],
469
  ]
470
  );
471
-
472
  $this->add_control(
473
  'button_icon_position',
474
  [
@@ -495,7 +495,7 @@ class Flip_Box extends Widget_Base {
495
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
496
  ]
497
  );
498
-
499
  $this->add_control(
500
  'eael_control_get_pro',
501
  [
@@ -503,7 +503,7 @@ class Flip_Box extends Widget_Base {
503
  'type' => Controls_Manager::CHOOSE,
504
  'options' => [
505
  '1' => [
506
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
507
  'icon' => 'fa fa-unlock-alt',
508
  ],
509
  ],
@@ -511,10 +511,10 @@ class Flip_Box extends Widget_Base {
511
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
512
  ]
513
  );
514
-
515
  $this->end_controls_section();
516
  }
517
-
518
  /**
519
  * -------------------------------------------
520
  * Tab Style (Flipbox Style)
@@ -676,7 +676,7 @@ class Flip_Box extends Widget_Base {
676
  * -------------------------------------------
677
  * Tab Style (Flip Box Icon Style)
678
  * -------------------------------------------
679
- */
680
  $this->start_controls_section(
681
  'eael_section_flipbox_icon_style_settings',
682
  [
@@ -760,7 +760,7 @@ class Flip_Box extends Widget_Base {
760
  ]
761
  ]
762
  );
763
-
764
  $this->add_responsive_control(
765
  'eael_flipbox_icon_front_padding',
766
  [
@@ -772,7 +772,7 @@ class Flip_Box extends Widget_Base {
772
  ],
773
  ]
774
  );
775
-
776
  $this->add_control(
777
  'eael_flipbox_icon_front_border_radius',
778
  [
@@ -799,9 +799,9 @@ class Flip_Box extends Widget_Base {
799
  ]
800
  ]
801
  );
802
-
803
  $this->end_controls_tab();
804
-
805
  $this->start_controls_tab('eael_section_icon_back_style_settings', [
806
  'label' => esc_html__( 'Back', 'essential-addons-for-elementor-lite')
807
  ]);
@@ -873,7 +873,7 @@ class Flip_Box extends Widget_Base {
873
  ]
874
  ]
875
  );
876
-
877
  $this->add_responsive_control(
878
  'eael_flipbox_icon_back_padding',
879
  [
@@ -885,7 +885,7 @@ class Flip_Box extends Widget_Base {
885
  ],
886
  ]
887
  );
888
-
889
  $this->add_control(
890
  'eael_flipbox_icon_back_border_radius',
891
  [
@@ -930,7 +930,7 @@ class Flip_Box extends Widget_Base {
930
  'tab' => Controls_Manager::TAB_STYLE
931
  ]
932
  );
933
-
934
  $this->start_controls_tabs('eael_section_flipbox_typo_style_settings');
935
  $this->start_controls_tab('eael_section_flipbox_typo_style_front_settings', [
936
  'label' => esc_html__( 'Front', 'essential-addons-for-elementor-lite')
@@ -997,7 +997,7 @@ class Flip_Box extends Widget_Base {
997
  'selector' => '{{WRAPPER}} .eael-elements-flip-box-front-container .eael-elements-flip-box-content'
998
  ]
999
  );
1000
-
1001
  $this->end_controls_tab();
1002
 
1003
  $this->start_controls_tab('eael_section_flipbox_typo_style_back_settings', [
@@ -1395,4 +1395,4 @@ class Flip_Box extends Widget_Base {
1395
 
1396
  <?php
1397
  }
1398
- }
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
+
37
  public function get_keywords() {
38
  return [
39
  'flip',
333
  );
334
 
335
  $this->end_controls_tab();
336
+
337
+
338
  $this->start_controls_tab(
339
  'eael_flipbox_content_back',
340
  [
365
  $this->end_controls_tab();
366
 
367
  $this->end_controls_tabs();
368
+
369
  $this->add_control(
370
  'eael_flipbox_content_alignment',
371
  [
468
  ],
469
  ]
470
  );
471
+
472
  $this->add_control(
473
  'button_icon_position',
474
  [
495
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
496
  ]
497
  );
498
+
499
  $this->add_control(
500
  'eael_control_get_pro',
501
  [
503
  'type' => Controls_Manager::CHOOSE,
504
  'options' => [
505
  '1' => [
506
+ 'title' => '',
507
  'icon' => 'fa fa-unlock-alt',
508
  ],
509
  ],
511
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
512
  ]
513
  );
514
+
515
  $this->end_controls_section();
516
  }
517
+
518
  /**
519
  * -------------------------------------------
520
  * Tab Style (Flipbox Style)
676
  * -------------------------------------------
677
  * Tab Style (Flip Box Icon Style)
678
  * -------------------------------------------
679
+ */
680
  $this->start_controls_section(
681
  'eael_section_flipbox_icon_style_settings',
682
  [
760
  ]
761
  ]
762
  );
763
+
764
  $this->add_responsive_control(
765
  'eael_flipbox_icon_front_padding',
766
  [
772
  ],
773
  ]
774
  );
775
+
776
  $this->add_control(
777
  'eael_flipbox_icon_front_border_radius',
778
  [
799
  ]
800
  ]
801
  );
802
+
803
  $this->end_controls_tab();
804
+
805
  $this->start_controls_tab('eael_section_icon_back_style_settings', [
806
  'label' => esc_html__( 'Back', 'essential-addons-for-elementor-lite')
807
  ]);
873
  ]
874
  ]
875
  );
876
+
877
  $this->add_responsive_control(
878
  'eael_flipbox_icon_back_padding',
879
  [
885
  ],
886
  ]
887
  );
888
+
889
  $this->add_control(
890
  'eael_flipbox_icon_back_border_radius',
891
  [
930
  'tab' => Controls_Manager::TAB_STYLE
931
  ]
932
  );
933
+
934
  $this->start_controls_tabs('eael_section_flipbox_typo_style_settings');
935
  $this->start_controls_tab('eael_section_flipbox_typo_style_front_settings', [
936
  'label' => esc_html__( 'Front', 'essential-addons-for-elementor-lite')
997
  'selector' => '{{WRAPPER}} .eael-elements-flip-box-front-container .eael-elements-flip-box-content'
998
  ]
999
  );
1000
+
1001
  $this->end_controls_tab();
1002
 
1003
  $this->start_controls_tab('eael_section_flipbox_typo_style_back_settings', [
1395
 
1396
  <?php
1397
  }
1398
+ }
includes/Elements/Info_Box.php CHANGED
@@ -33,7 +33,7 @@ class Info_Box extends Widget_Base {
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
-
37
  public function get_keywords()
38
  {
39
  return [
@@ -402,7 +402,7 @@ class Info_Box extends Widget_Base {
402
  ]
403
  ]
404
  );
405
-
406
  $this->add_control(
407
  'eael_infobox_button_icon_new',
408
  [
@@ -454,7 +454,7 @@ class Info_Box extends Widget_Base {
454
  );
455
  $this->end_controls_section();
456
 
457
-
458
  if(!apply_filters('eael/pro_enabled', false)) {
459
  $this->start_controls_section(
460
  'eael_section_pro',
@@ -470,7 +470,7 @@ class Info_Box extends Widget_Base {
470
  'type' => Controls_Manager::CHOOSE,
471
  'options' => [
472
  '1' => [
473
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
474
  'icon' => 'fa fa-unlock-alt',
475
  ],
476
  ],
@@ -478,7 +478,7 @@ class Info_Box extends Widget_Base {
478
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
479
  ]
480
  );
481
-
482
  $this->end_controls_section();
483
  }
484
 
@@ -499,7 +499,7 @@ class Info_Box extends Widget_Base {
499
  );
500
 
501
  $this->start_controls_tabs('eael_infobox_image_style');
502
-
503
  $this->start_controls_tab(
504
  'eael_infobox_image_icon_normal',
505
  [
@@ -539,7 +539,7 @@ class Info_Box extends Widget_Base {
539
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon img'
540
  ]
541
  );
542
-
543
  $this->add_control(
544
  'eael_infobox_img_shape',
545
  [
@@ -594,7 +594,7 @@ class Info_Box extends Widget_Base {
594
  'selector' => '{{WRAPPER}} .eael-infobox:hover .infobox-icon img'
595
  ]
596
  );
597
-
598
  $this->add_control(
599
  'eael_infobox_hover_img_shape',
600
  [
@@ -749,7 +749,7 @@ class Info_Box extends Widget_Base {
749
  ],
750
  ]
751
  );
752
-
753
  $this->add_control(
754
  'eael_infobox_number_icon_bg_color',
755
  [
@@ -764,7 +764,7 @@ class Info_Box extends Widget_Base {
764
  ]
765
  ]
766
  );
767
-
768
  $this->add_control(
769
  'eael_infobox_number_icon_bg_shape',
770
  [
@@ -781,7 +781,7 @@ class Info_Box extends Widget_Base {
781
  'prefix_class' => 'eael-infobox-icon-bg-shape-'
782
  ]
783
  );
784
-
785
  $this->add_group_control(
786
  Group_Control_Border::get_type(),
787
  [
@@ -790,7 +790,7 @@ class Info_Box extends Widget_Base {
790
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon-wrap'
791
  ]
792
  );
793
-
794
  $this->add_group_control(
795
  Group_Control_Box_Shadow::get_type(),
796
  [
@@ -998,7 +998,7 @@ class Info_Box extends Widget_Base {
998
  'prefix_class' => 'eael-infobox-icon-bg-shape-'
999
  ]
1000
  );
1001
-
1002
  $this->add_control(
1003
  'eael_infobox_icon_bg_color',
1004
  [
@@ -1013,7 +1013,7 @@ class Info_Box extends Widget_Base {
1013
  ]
1014
  ]
1015
  );
1016
-
1017
  $this->add_group_control(
1018
  Group_Control_Border::get_type(),
1019
  [
@@ -1022,7 +1022,7 @@ class Info_Box extends Widget_Base {
1022
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon-wrap'
1023
  ]
1024
  );
1025
-
1026
  $this->add_group_control(
1027
  Group_Control_Box_Shadow::get_type(),
1028
  [
@@ -1061,7 +1061,7 @@ class Info_Box extends Widget_Base {
1061
  ],
1062
  ]
1063
  );
1064
-
1065
  $this->add_control(
1066
  'eael_infobox_icon_hover_bg_color',
1067
  [
@@ -1077,7 +1077,7 @@ class Info_Box extends Widget_Base {
1077
  ]
1078
  ]
1079
  );
1080
-
1081
  $this->add_control(
1082
  'eael_infobox_icon_hover_bg_shape',
1083
  [
@@ -1094,7 +1094,7 @@ class Info_Box extends Widget_Base {
1094
  'prefix_class' => 'eael-infobox-icon-hover-bg-shape-',
1095
  ]
1096
  );
1097
-
1098
  $this->add_group_control(
1099
  Group_Control_Border::get_type(),
1100
  [
@@ -1103,7 +1103,7 @@ class Info_Box extends Widget_Base {
1103
  'selector' => '{{WRAPPER}} .eael-infobox:hover .infobox-icon-wrap'
1104
  ]
1105
  );
1106
-
1107
  $this->add_group_control(
1108
  Group_Control_Box_Shadow::get_type(),
1109
  [
@@ -1165,7 +1165,7 @@ class Info_Box extends Widget_Base {
1165
  ],
1166
  ]
1167
  );
1168
-
1169
  // $this->add_responsive_control(
1170
  // 'eael_infobox_button_icon_gap',
1171
  // [
@@ -1314,7 +1314,7 @@ class Info_Box extends Widget_Base {
1314
 
1315
  $this->end_controls_tabs();
1316
 
1317
-
1318
 
1319
  $this->end_controls_section();
1320
 
@@ -1344,7 +1344,7 @@ class Info_Box extends Widget_Base {
1344
  'type' => Controls_Manager::HEADING,
1345
  ]
1346
  );
1347
-
1348
  $this->add_control(
1349
  'eael_infobox_title_color',
1350
  [
@@ -1356,7 +1356,7 @@ class Info_Box extends Widget_Base {
1356
  ],
1357
  ]
1358
  );
1359
-
1360
  $this->add_group_control(
1361
  Group_Control_Typography::get_type(),
1362
  [
@@ -1364,7 +1364,7 @@ class Info_Box extends Widget_Base {
1364
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-content .title',
1365
  ]
1366
  );
1367
-
1368
  $this->add_responsive_control(
1369
  'eael_infobox_title_margin',
1370
  [
@@ -1432,7 +1432,7 @@ class Info_Box extends Widget_Base {
1432
  ],
1433
  ]
1434
  );
1435
-
1436
  $this->add_group_control(
1437
  Group_Control_Typography::get_type(),
1438
  [
@@ -1499,7 +1499,7 @@ class Info_Box extends Widget_Base {
1499
  /**
1500
  * This function is responsible for rendering divs and contents
1501
  * for infobox before partial.
1502
- *
1503
  * @param $settings
1504
  */
1505
  protected function eael_infobox_before() {
@@ -1527,7 +1527,7 @@ class Info_Box extends Widget_Base {
1527
  /**
1528
  * This function is rendering closing divs and tags
1529
  * of before partial for infobox.
1530
- *
1531
  * @param $settings
1532
  */
1533
  protected function eael_infobox_after() {
@@ -1539,7 +1539,7 @@ class Info_Box extends Widget_Base {
1539
 
1540
  /**
1541
  * This function is rendering appropriate icon for infobox.
1542
- *
1543
  * @param $settings
1544
  */
1545
  protected function render_infobox_icon() {
@@ -1567,11 +1567,11 @@ class Info_Box extends Widget_Base {
1567
  if( $settings['eael_infobox_image_icon_hover_animation'] ) {
1568
  $this->add_render_attribute('infobox_icon', 'class', 'elementor-animation-' . $settings['eael_infobox_image_icon_hover_animation']);
1569
  }
1570
-
1571
  if( $settings['eael_infobox_number_icon_hover_animation'] ) {
1572
  $this->add_render_attribute('infobox_icon', 'class', 'elementor-animation-' . $settings['eael_infobox_number_icon_hover_animation']);
1573
  }
1574
-
1575
  if( 'icon' == $settings['eael_infobox_img_or_icon'] ) {
1576
  $this->add_render_attribute('infobox_icon', 'class', 'eael-icon-only');
1577
  }
@@ -1650,7 +1650,7 @@ class Info_Box extends Widget_Base {
1650
 
1651
  /**
1652
  * This function rendering infobox button
1653
- *
1654
  * @param $settings
1655
  */
1656
  protected function render_infobox_button() {
@@ -1695,10 +1695,10 @@ class Info_Box extends Widget_Base {
1695
  <i class="<?php echo esc_attr( $settings['eael_infobox_button_icon_new']['value'] ); ?> eael_infobox_button_icon_right"></i>
1696
  <?php } ?>
1697
  <?php } else {
1698
-
1699
  if( 'left' == $settings['eael_infobox_button_icon_alignment'])
1700
  $this->add_render_attribute('button_icon', 'class', 'eael_infobox_button_icon_left');
1701
-
1702
  if( 'right' == $settings['eael_infobox_button_icon_alignment'])
1703
  $this->add_render_attribute('button_icon', 'class', 'eael_infobox_button_icon_right');
1704
 
@@ -1710,7 +1710,7 @@ class Info_Box extends Widget_Base {
1710
  $settings['eael_infobox_button_icon']
1711
  ]
1712
  ]
1713
- );
1714
  ?>
1715
  <i <?php echo $this->get_render_attribute_string('button_icon'); ?>></i>
1716
  <?php } ?>
@@ -1727,4 +1727,4 @@ class Info_Box extends Widget_Base {
1727
  $this->render_infobox_content();
1728
  $this->eael_infobox_after();
1729
  }
1730
- }
33
  public function get_categories() {
34
  return [ 'essential-addons-elementor' ];
35
  }
36
+
37
  public function get_keywords()
38
  {
39
  return [
402
  ]
403
  ]
404
  );
405
+
406
  $this->add_control(
407
  'eael_infobox_button_icon_new',
408
  [
454
  );
455
  $this->end_controls_section();
456
 
457
+
458
  if(!apply_filters('eael/pro_enabled', false)) {
459
  $this->start_controls_section(
460
  'eael_section_pro',
470
  'type' => Controls_Manager::CHOOSE,
471
  'options' => [
472
  '1' => [
473
+ 'title' => '',
474
  'icon' => 'fa fa-unlock-alt',
475
  ],
476
  ],
478
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
479
  ]
480
  );
481
+
482
  $this->end_controls_section();
483
  }
484
 
499
  );
500
 
501
  $this->start_controls_tabs('eael_infobox_image_style');
502
+
503
  $this->start_controls_tab(
504
  'eael_infobox_image_icon_normal',
505
  [
539
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon img'
540
  ]
541
  );
542
+
543
  $this->add_control(
544
  'eael_infobox_img_shape',
545
  [
594
  'selector' => '{{WRAPPER}} .eael-infobox:hover .infobox-icon img'
595
  ]
596
  );
597
+
598
  $this->add_control(
599
  'eael_infobox_hover_img_shape',
600
  [
749
  ],
750
  ]
751
  );
752
+
753
  $this->add_control(
754
  'eael_infobox_number_icon_bg_color',
755
  [
764
  ]
765
  ]
766
  );
767
+
768
  $this->add_control(
769
  'eael_infobox_number_icon_bg_shape',
770
  [
781
  'prefix_class' => 'eael-infobox-icon-bg-shape-'
782
  ]
783
  );
784
+
785
  $this->add_group_control(
786
  Group_Control_Border::get_type(),
787
  [
790
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon-wrap'
791
  ]
792
  );
793
+
794
  $this->add_group_control(
795
  Group_Control_Box_Shadow::get_type(),
796
  [
998
  'prefix_class' => 'eael-infobox-icon-bg-shape-'
999
  ]
1000
  );
1001
+
1002
  $this->add_control(
1003
  'eael_infobox_icon_bg_color',
1004
  [
1013
  ]
1014
  ]
1015
  );
1016
+
1017
  $this->add_group_control(
1018
  Group_Control_Border::get_type(),
1019
  [
1022
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-icon-wrap'
1023
  ]
1024
  );
1025
+
1026
  $this->add_group_control(
1027
  Group_Control_Box_Shadow::get_type(),
1028
  [
1061
  ],
1062
  ]
1063
  );
1064
+
1065
  $this->add_control(
1066
  'eael_infobox_icon_hover_bg_color',
1067
  [
1077
  ]
1078
  ]
1079
  );
1080
+
1081
  $this->add_control(
1082
  'eael_infobox_icon_hover_bg_shape',
1083
  [
1094
  'prefix_class' => 'eael-infobox-icon-hover-bg-shape-',
1095
  ]
1096
  );
1097
+
1098
  $this->add_group_control(
1099
  Group_Control_Border::get_type(),
1100
  [
1103
  'selector' => '{{WRAPPER}} .eael-infobox:hover .infobox-icon-wrap'
1104
  ]
1105
  );
1106
+
1107
  $this->add_group_control(
1108
  Group_Control_Box_Shadow::get_type(),
1109
  [
1165
  ],
1166
  ]
1167
  );
1168
+
1169
  // $this->add_responsive_control(
1170
  // 'eael_infobox_button_icon_gap',
1171
  // [
1314
 
1315
  $this->end_controls_tabs();
1316
 
1317
+
1318
 
1319
  $this->end_controls_section();
1320
 
1344
  'type' => Controls_Manager::HEADING,
1345
  ]
1346
  );
1347
+
1348
  $this->add_control(
1349
  'eael_infobox_title_color',
1350
  [
1356
  ],
1357
  ]
1358
  );
1359
+
1360
  $this->add_group_control(
1361
  Group_Control_Typography::get_type(),
1362
  [
1364
  'selector' => '{{WRAPPER}} .eael-infobox .infobox-content .title',
1365
  ]
1366
  );
1367
+
1368
  $this->add_responsive_control(
1369
  'eael_infobox_title_margin',
1370
  [
1432
  ],
1433
  ]
1434
  );
1435
+
1436
  $this->add_group_control(
1437
  Group_Control_Typography::get_type(),
1438
  [
1499
  /**
1500
  * This function is responsible for rendering divs and contents
1501
  * for infobox before partial.
1502
+ *
1503
  * @param $settings
1504
  */
1505
  protected function eael_infobox_before() {
1527
  /**
1528
  * This function is rendering closing divs and tags
1529
  * of before partial for infobox.
1530
+ *
1531
  * @param $settings
1532
  */
1533
  protected function eael_infobox_after() {
1539
 
1540
  /**
1541
  * This function is rendering appropriate icon for infobox.
1542
+ *
1543
  * @param $settings
1544
  */
1545
  protected function render_infobox_icon() {
1567
  if( $settings['eael_infobox_image_icon_hover_animation'] ) {
1568
  $this->add_render_attribute('infobox_icon', 'class', 'elementor-animation-' . $settings['eael_infobox_image_icon_hover_animation']);
1569
  }
1570
+
1571
  if( $settings['eael_infobox_number_icon_hover_animation'] ) {
1572
  $this->add_render_attribute('infobox_icon', 'class', 'elementor-animation-' . $settings['eael_infobox_number_icon_hover_animation']);
1573
  }
1574
+
1575
  if( 'icon' == $settings['eael_infobox_img_or_icon'] ) {
1576
  $this->add_render_attribute('infobox_icon', 'class', 'eael-icon-only');
1577
  }
1650
 
1651
  /**
1652
  * This function rendering infobox button
1653
+ *
1654
  * @param $settings
1655
  */
1656
  protected function render_infobox_button() {
1695
  <i class="<?php echo esc_attr( $settings['eael_infobox_button_icon_new']['value'] ); ?> eael_infobox_button_icon_right"></i>
1696
  <?php } ?>
1697
  <?php } else {
1698
+
1699
  if( 'left' == $settings['eael_infobox_button_icon_alignment'])
1700
  $this->add_render_attribute('button_icon', 'class', 'eael_infobox_button_icon_left');
1701
+
1702
  if( 'right' == $settings['eael_infobox_button_icon_alignment'])
1703
  $this->add_render_attribute('button_icon', 'class', 'eael_infobox_button_icon_right');
1704
 
1710
  $settings['eael_infobox_button_icon']
1711
  ]
1712
  ]
1713
+ );
1714
  ?>
1715
  <i <?php echo $this->get_render_attribute_string('button_icon'); ?>></i>
1716
  <?php } ?>
1727
  $this->render_infobox_content();
1728
  $this->eael_infobox_after();
1729
  }
1730
+ }
includes/Elements/Login_Register.php CHANGED
@@ -84,7 +84,7 @@ class Login_Register extends Widget_Base {
84
  */
85
  protected $form_logo_pos;
86
  /**
87
- * Google Recaptcha Site key
88
  * @var string|false
89
  */
90
  protected $recaptcha_sitekey;
@@ -103,9 +103,10 @@ class Login_Register extends Widget_Base {
103
  }
104
 
105
  public function get_script_depends() {
106
- $scripts = parent::get_script_depends();
107
- $scripts[] = 'eael-recaptcha'; //@TODO; debug later why this does not let recaptcha work on editor.
108
- return $scripts;
 
109
  }
110
 
111
 
@@ -120,7 +121,7 @@ class Login_Register extends Widget_Base {
120
  * @inheritDoc
121
  */
122
  public function get_title() {
123
- return esc_html__( 'Login | Register Form', EAEL_TEXTDOMAIN );
124
  }
125
 
126
  /**
@@ -174,13 +175,13 @@ class Login_Register extends Widget_Base {
174
  */
175
  protected function get_form_field_types() {
176
  return apply_filters( 'eael/registration-form-fields', [
177
- 'user_name' => __( 'Username', EAEL_TEXTDOMAIN ),
178
- 'email' => __( 'Email', EAEL_TEXTDOMAIN ),
179
- 'password' => __( 'Password', EAEL_TEXTDOMAIN ),
180
- 'confirm_pass' => __( 'Confirm Password', EAEL_TEXTDOMAIN ),
181
- 'first_name' => __( 'First Name', EAEL_TEXTDOMAIN ),
182
- 'last_name' => __( 'Last Name', EAEL_TEXTDOMAIN ),
183
- 'website' => __( 'Website', EAEL_TEXTDOMAIN ),
184
  ] );
185
  }
186
 
@@ -195,7 +196,7 @@ class Login_Register extends Widget_Base {
195
  // Login Form Related---
196
  $this->init_content_login_fields_controls();
197
  $this->init_content_login_options_controls();
198
- do_action( 'eael/login-register/after-login-controls-section', $this);
199
  // Registration For Related---
200
  $this->init_content_register_fields_controls();
201
  $this->init_content_register_options_controls();
@@ -203,6 +204,8 @@ class Login_Register extends Widget_Base {
203
  $this->init_content_register_admin_email_controls();
204
  //Terms & Conditions
205
  $this->init_content_terms_controls();
 
 
206
  do_action( 'eael/login-register/after-content-controls', $this );
207
 
208
  /*----Style Tab----*/
@@ -216,6 +219,8 @@ class Login_Register extends Widget_Base {
216
  $this->init_style_register_button_controls();
217
  $this->init_style_login_link_controls();
218
  $this->init_style_register_link_controls();
 
 
219
  do_action( 'eael/login-register/after-style-controls', $this );
220
 
221
  }
@@ -225,19 +230,19 @@ class Login_Register extends Widget_Base {
225
  */
226
  protected function init_content_general_controls() {
227
  $this->start_controls_section( 'section_content_general', [
228
- 'label' => __( 'General', EAEL_TEXTDOMAIN ),
229
  ] );
230
  $this->add_control( 'default_form_type_notice', [
231
  'type' => Controls_Manager::RAW_HTML,
232
- 'raw' => __( 'Choose the type of form you want to show by default. Note: you can show both forms in a single page even if you select only login or registration from below.', EAEL_TEXTDOMAIN ),
233
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
234
  ] );
235
  $this->add_control( 'default_form_type', [
236
- 'label' => __( 'Default Form Type', EAEL_TEXTDOMAIN ),
237
  'type' => Controls_Manager::SELECT,
238
  'options' => [
239
- 'login' => __( 'Login', EAEL_TEXTDOMAIN ),
240
- 'register' => __( 'Registration', EAEL_TEXTDOMAIN ),
241
  ],
242
  'default' => 'login',
243
  ] );
@@ -245,7 +250,7 @@ class Login_Register extends Widget_Base {
245
  $this->add_control( 'registration_off_notice', [
246
  'type' => Controls_Manager::RAW_HTML,
247
  /* translators: %1$s is settings page link open tag, %2$s is link closing tag */
248
- 'raw' => sprintf( __( 'Registration is disabled on your site. Please enable it to use registration form. You can enable it from Dashboard » Settings » General » %1$sMembership%2$s.', EAEL_TEXTDOMAIN ), '<a href="' . esc_attr( esc_url( admin_url( 'options-general.php' ) ) ) . '" target="_blank">', '</a>' ),
249
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-warning',
250
  'condition' => [
251
  'default_form_type' => 'register',
@@ -253,49 +258,49 @@ class Login_Register extends Widget_Base {
253
  ] );
254
  }
255
  $this->add_control( 'hide_for_logged_in_user', [
256
- 'label' => __( 'Hide all Forms from Logged-in Users', EAEL_TEXTDOMAIN ),
257
  'type' => Controls_Manager::SWITCHER,
258
  'default' => 'yes',
259
  ] );
260
  $this->add_control( 'gen_lgn_content_po_toggle', [
261
- 'label' => __( 'Login Form General', EAEL_TEXTDOMAIN ),
262
  'type' => Controls_Manager::POPOVER_TOGGLE,
263
- 'label_off' => __( 'Controls', EAEL_TEXTDOMAIN ),
264
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
265
  'return_value' => 'yes',
266
  'default' => 'yes',
267
  ] );
268
  $this->start_popover();
269
  $this->add_control( 'show_log_out_message', [
270
- 'label' => __( 'Show Logout Link', EAEL_TEXTDOMAIN ),
271
  'type' => Controls_Manager::SWITCHER,
272
  'default' => 'yes',
273
  ] );
274
  $this->add_control( 'show_lost_password', [
275
- 'label' => __( 'Show Lost your password?', EAEL_TEXTDOMAIN ),
276
  'type' => Controls_Manager::SWITCHER,
277
  'default' => 'yes',
278
  ] );
279
 
280
  $this->add_control( 'lost_password_text', [
281
- 'label' => __( 'Lost Password Text', EAEL_TEXTDOMAIN ),
282
  'label_block' => true,
283
  'type' => Controls_Manager::TEXT,
284
  'dynamic' => [
285
  'active' => true,
286
  ],
287
- 'default' => __( 'Forgot password?', EAEL_TEXTDOMAIN ),
288
  'condition' => [
289
  'show_lost_password' => 'yes',
290
  ],
291
  ] );
292
  $this->add_control( 'lost_password_link_type', [
293
- 'label' => __( 'Lost Password Link to', EAEL_TEXTDOMAIN ),
294
  'label_block' => true,
295
  'type' => Controls_Manager::SELECT,
296
  'options' => [
297
- 'default' => __( 'Default WordPress Page', EAEL_TEXTDOMAIN ),
298
- 'custom' => __( 'Custom URL', EAEL_TEXTDOMAIN ),
299
  ],
300
  'default' => 'default',
301
  'condition' => [
@@ -303,7 +308,7 @@ class Login_Register extends Widget_Base {
303
  ],
304
  ] );
305
  $this->add_control( 'lost_password_url', [
306
- 'label' => __( 'Custom Lost Password URL', EAEL_TEXTDOMAIN ),
307
  'label_block' => true,
308
  'type' => Controls_Manager::URL,
309
  'show_external' => false,
@@ -321,34 +326,34 @@ class Login_Register extends Widget_Base {
321
  'type' => Controls_Manager::DIVIDER,
322
  ] );
323
  $this->add_control( 'show_register_link', [
324
- 'label' => __( 'Show Register Link', EAEL_TEXTDOMAIN ),
325
  'type' => Controls_Manager::SWITCHER,
326
  'default' => 'yes',
327
  'separator' => 'before',
328
 
329
  ] );
330
  $this->add_control( 'registration_link_text', [
331
- 'label' => __( 'Register Link Text', EAEL_TEXTDOMAIN ),
332
  'label_block' => true,
333
- 'description' => __( 'You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only.', EAEL_TEXTDOMAIN ),
334
  'type' => Controls_Manager::TEXTAREA,
335
  'rows' => 2,
336
  'dynamic' => [
337
  'active' => true,
338
  ],
339
- 'default' => __( " \nRegister Now", EAEL_TEXTDOMAIN ),
340
  'condition' => [
341
  'show_register_link' => 'yes',
342
  ],
343
  ] );
344
  $this->add_control( 'registration_link_action', [
345
- 'label' => __( 'Registration Link Action', EAEL_TEXTDOMAIN ),
346
  'label_block' => true,
347
  'type' => Controls_Manager::SELECT,
348
  'options' => [
349
- 'default' => __( 'WordPress Registration Page', EAEL_TEXTDOMAIN ),
350
- 'custom' => __( 'Custom URL', EAEL_TEXTDOMAIN ),
351
- 'form' => __( 'Show Register Form', EAEL_TEXTDOMAIN ),
352
  ],
353
  'default' => 'form',
354
  'condition' => [
@@ -356,7 +361,7 @@ class Login_Register extends Widget_Base {
356
  ],
357
  ] );
358
  $this->add_control( 'custom_register_url', [
359
- 'label' => __( 'Custom Register URL', EAEL_TEXTDOMAIN ),
360
  'label_block' => true,
361
  'type' => Controls_Manager::URL,
362
  'show_external' => false,
@@ -370,24 +375,24 @@ class Login_Register extends Widget_Base {
370
  ] );
371
  } else {
372
  $this->add_control( 'show_register_link', [
373
- 'label' => __( 'Show Register Link', EAEL_TEXTDOMAIN ),
374
  'type' => Controls_Manager::HIDDEN,
375
  'default' => 'no',
376
  'separator' => 'before',
377
  ] );
378
  }
379
  $this->add_control( 'enable_login_recaptcha', [
380
- 'label' => __( 'Enable Google reCAPTCHA', EAEL_TEXTDOMAIN ),
381
- 'description' => __( 'reCAPTCHA will prevent spam login from bots.', EAEL_TEXTDOMAIN ),
382
  'type' => Controls_Manager::SWITCHER,
383
- 'label_on' => __( 'Yes', EAEL_TEXTDOMAIN ),
384
- 'label_off' => __( 'No', EAEL_TEXTDOMAIN ),
385
  'return_value' => 'yes',
386
  ] );
387
  if ( empty( $this->recaptcha_sitekey ) ) {
388
  $this->add_control( 'eael_login_recaptcha_keys_missing', [
389
  'type' => Controls_Manager::RAW_HTML,
390
- 'raw' => sprintf( __( 'reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings', EAEL_TEXTDOMAIN ), '<strong>', '</strong>' ),
391
  'content_classes' => 'eael-warning',
392
  'condition' => [
393
  'enable_login_recaptcha' => 'yes',
@@ -400,41 +405,41 @@ class Login_Register extends Widget_Base {
400
  /*--show registration related control only if registration is enable on the site--*/
401
  if ( $this->user_can_register ) {
402
  $this->add_control( 'gen_reg_content_po_toggle', [
403
- 'label' => __( 'Register Form General', EAEL_TEXTDOMAIN ),
404
  'type' => Controls_Manager::POPOVER_TOGGLE,
405
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
406
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
407
  'return_value' => 'yes',
408
  'default' => 'yes',
409
  ] );
410
  $this->start_popover();
411
  $this->add_control( 'show_login_link', [
412
- 'label' => __( 'Show Login Link', EAEL_TEXTDOMAIN ),
413
  'type' => Controls_Manager::SWITCHER,
414
  'default' => 'yes',
415
  ] );
416
  $this->add_control( 'login_link_text', [
417
- 'label' => __( 'Login Link Text', EAEL_TEXTDOMAIN ),
418
  'label_block' => true,
419
- 'description' => __( 'You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only.', EAEL_TEXTDOMAIN ),
420
  'type' => Controls_Manager::TEXTAREA,
421
  'rows' => 2,
422
  'dynamic' => [
423
  'active' => true,
424
  ],
425
- 'default' => __( " \nSign In", EAEL_TEXTDOMAIN ),
426
  'condition' => [
427
  'show_login_link' => 'yes',
428
  ],
429
  ] );
430
  $this->add_control( 'login_link_action', [
431
- 'label' => __( 'Login Link Action', EAEL_TEXTDOMAIN ),
432
  'label_block' => true,
433
  'type' => Controls_Manager::SELECT,
434
  'options' => [
435
- 'default' => __( 'Default WordPress Page', EAEL_TEXTDOMAIN ),
436
- 'custom' => __( 'Custom URL', EAEL_TEXTDOMAIN ),
437
- 'form' => __( 'Show Login Form', EAEL_TEXTDOMAIN ),
438
  ],
439
  'default' => 'form',
440
  'condition' => [
@@ -442,7 +447,7 @@ class Login_Register extends Widget_Base {
442
  ],
443
  ] );
444
  $this->add_control( 'custom_login_url', [
445
- 'label' => __( 'Custom Login URL', EAEL_TEXTDOMAIN ),
446
  'label_block' => true,
447
  'show_external' => false,
448
  'type' => Controls_Manager::URL,
@@ -455,17 +460,17 @@ class Login_Register extends Widget_Base {
455
  ],
456
  ] );
457
  $this->add_control( 'enable_register_recaptcha', [
458
- 'label' => __( 'Enable Google reCAPTCHA', EAEL_TEXTDOMAIN ),
459
- 'description' => __( 'reCAPTCHA will prevent spam registration from bots.', EAEL_TEXTDOMAIN ),
460
  'type' => Controls_Manager::SWITCHER,
461
- 'label_on' => __( 'Yes', EAEL_TEXTDOMAIN ),
462
- 'label_off' => __( 'No', EAEL_TEXTDOMAIN ),
463
  'return_value' => 'yes',
464
  ] );
465
  if ( empty( $this->recaptcha_sitekey ) ) {
466
  $this->add_control( 'eael_recaptcha_keys_missing', [
467
  'type' => Controls_Manager::RAW_HTML,
468
- 'raw' => sprintf( __( 'Recaptcha API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings', EAEL_TEXTDOMAIN ), '<strong>', '</strong>' ),
469
  'content_classes' => 'eael-warning',
470
  'condition' => [
471
  'enable_register_recaptcha' => 'yes',
@@ -476,7 +481,7 @@ class Login_Register extends Widget_Base {
476
 
477
  } else {
478
  $this->add_control( 'show_login_link', [
479
- 'label' => __( 'Show Login Link', EAEL_TEXTDOMAIN ),
480
  'type' => Controls_Manager::HIDDEN,
481
  'default' => 'no',
482
  ] );
@@ -491,23 +496,23 @@ class Login_Register extends Widget_Base {
491
  */
492
  protected function init_content_login_fields_controls() {
493
  $this->start_controls_section( 'section_content_login_fields', [
494
- 'label' => __( 'Login Form Fields', EAEL_TEXTDOMAIN ),
495
  'conditions' => $this->get_form_controls_display_condition( 'login' ),
496
  ] );
497
 
498
  $this->add_control( 'login_label_types', [
499
- 'label' => __( 'Labels & Placeholders', EAEL_TEXTDOMAIN ),
500
  'type' => Controls_Manager::SELECT,
501
  'options' => [
502
- 'default' => __( 'Default', EAEL_TEXTDOMAIN ),
503
- 'custom' => __( 'Custom', EAEL_TEXTDOMAIN ),
504
- 'none' => __( 'Hide', EAEL_TEXTDOMAIN ),
505
  ],
506
  'default' => 'default',
507
  ] );
508
 
509
  $this->add_control( 'login_labels_heading', [
510
- 'label' => __( 'Labels', EAEL_TEXTDOMAIN ),
511
  'type' => Controls_Manager::HEADING,
512
  'separator' => 'before',
513
  'condition' => [ 'login_label_types' => 'custom', ],
@@ -515,9 +520,9 @@ class Login_Register extends Widget_Base {
515
 
516
 
517
  $this->add_control( 'login_user_label', [
518
- 'label' => __( 'Username Label', EAEL_TEXTDOMAIN ),
519
- 'placeholder' => __( 'Username or Email Address', EAEL_TEXTDOMAIN ),
520
- 'default' => __( 'Username or Email Address', EAEL_TEXTDOMAIN ),
521
  'type' => Controls_Manager::TEXT,
522
  'dynamic' => [ 'active' => true, ],
523
  'label_block' => true,
@@ -525,9 +530,9 @@ class Login_Register extends Widget_Base {
525
  ] );
526
 
527
  $this->add_control( 'login_password_label', [
528
- 'label' => __( 'Password Label', EAEL_TEXTDOMAIN ),
529
- 'placeholder' => __( 'Password', EAEL_TEXTDOMAIN ),
530
- 'default' => __( 'Password', EAEL_TEXTDOMAIN ),
531
  'type' => Controls_Manager::TEXT,
532
  'dynamic' => [ 'active' => true, ],
533
  'label_block' => true,
@@ -535,16 +540,16 @@ class Login_Register extends Widget_Base {
535
  ] );
536
 
537
  $this->add_control( 'login_placeholders_heading', [
538
- 'label' => esc_html__( 'Placeholders', EAEL_TEXTDOMAIN ),
539
  'type' => Controls_Manager::HEADING,
540
  'condition' => [ 'login_label_types' => 'custom', ],
541
  'separator' => 'before',
542
  ] );
543
 
544
  $this->add_control( 'login_user_placeholder', [
545
- 'label' => __( 'Username Placeholder', EAEL_TEXTDOMAIN ),
546
- 'placeholder' => __( 'Username or Email Address', EAEL_TEXTDOMAIN ),
547
- 'default' => __( 'Username or Email Address', EAEL_TEXTDOMAIN ),
548
  'type' => Controls_Manager::TEXT,
549
  'dynamic' => [ 'active' => true, ],
550
  'label_block' => true,
@@ -552,9 +557,9 @@ class Login_Register extends Widget_Base {
552
  ] );
553
 
554
  $this->add_control( 'login_password_placeholder', [
555
- 'label' => __( 'Password Placeholder', EAEL_TEXTDOMAIN ),
556
- 'placeholder' => __( 'Password', EAEL_TEXTDOMAIN ),
557
- 'default' => __( 'Password', EAEL_TEXTDOMAIN ),
558
  'type' => Controls_Manager::TEXT,
559
  'dynamic' => [ 'active' => true, ],
560
  'label_block' => true,
@@ -562,7 +567,7 @@ class Login_Register extends Widget_Base {
562
  ] );
563
 
564
  $this->add_responsive_control( 'login_field_width', [
565
- 'label' => esc_html__( 'Input Fields width', EAEL_TEXTDOMAIN ),
566
  'type' => Controls_Manager::SLIDER,
567
  'size_units' => [
568
  'px',
@@ -590,34 +595,34 @@ class Login_Register extends Widget_Base {
590
  ] );
591
 
592
  $this->add_control( 'login_show_remember_me', [
593
- 'label' => __( 'Remember Me Checkbox', EAEL_TEXTDOMAIN ),
594
  'type' => Controls_Manager::SWITCHER,
595
  'default' => 'yes',
596
- 'label_off' => __( 'Hide', EAEL_TEXTDOMAIN ),
597
- 'label_on' => __( 'Show', EAEL_TEXTDOMAIN ),
598
  ] );
599
 
600
  $this->add_control( 'password_toggle', [
601
- 'label' => __( 'Password Visibility Icon', EAEL_TEXTDOMAIN ),
602
  'type' => Controls_Manager::SWITCHER,
603
- 'label_off' => __( 'Hide', EAEL_TEXTDOMAIN ),
604
- 'label_on' => __( 'Show', EAEL_TEXTDOMAIN ),
605
  'default' => 'yes',
606
  ] );
607
 
608
  /*--Login Fields Button--*/
609
  $this->add_control( 'login_button_heading', [
610
- 'label' => esc_html__( 'Login Button', EAEL_TEXTDOMAIN ),
611
  'type' => Controls_Manager::HEADING,
612
  'separator' => 'before',
613
  ] );
614
 
615
  $this->add_control( 'login_button_text', [
616
- 'label' => __( 'Button Text', EAEL_TEXTDOMAIN ),
617
  'type' => Controls_Manager::TEXT,
618
  'dynamic' => [ 'active' => true, ],
619
- 'default' => __( 'Log In', EAEL_TEXTDOMAIN ),
620
- 'placeholder' => __( 'Log In', EAEL_TEXTDOMAIN ),
621
  ] );
622
 
623
  $this->end_controls_section();
@@ -625,11 +630,11 @@ class Login_Register extends Widget_Base {
625
 
626
  protected function init_form_header_controls() {
627
  $this->start_controls_section( 'section_content_lr_form_header', [
628
- 'label' => __( 'Form Header Content', EAEL_TEXTDOMAIN ),
629
  ] );
630
 
631
  $this->add_control( 'lr_form_image', [
632
- 'label' => __( 'Form Header Image', EAEL_TEXTDOMAIN ),
633
  'type' => Controls_Manager::MEDIA,
634
  'dynamic' => [
635
  'active' => true,
@@ -647,15 +652,15 @@ class Login_Register extends Widget_Base {
647
  ] );
648
 
649
  $this->add_control( "lr_form_image_position", [
650
- 'label' => __( 'Header Image Position', EAEL_TEXTDOMAIN ),
651
  'type' => Controls_Manager::CHOOSE,
652
  'options' => [
653
  'left' => [
654
- 'title' => __( 'Left', EAEL_TEXTDOMAIN ),
655
  'icon' => 'eicon-arrow-left',
656
  ],
657
  'right' => [
658
- 'title' => __( 'Right', EAEL_TEXTDOMAIN ),
659
  'icon' => 'eicon-arrow-right',
660
  ],
661
  ],
@@ -664,7 +669,7 @@ class Login_Register extends Widget_Base {
664
  ] );
665
 
666
  $this->add_control( 'lr_form_logo', [
667
- 'label' => __( 'Form Header Logo', EAEL_TEXTDOMAIN ),
668
  'type' => Controls_Manager::MEDIA,
669
  'dynamic' => [
670
  'active' => true,
@@ -680,15 +685,15 @@ class Login_Register extends Widget_Base {
680
  'separator' => 'none',
681
  ] );
682
  $this->add_control( "lr_form_logo_position", [
683
- 'label' => __( 'Form Logo Position', EAEL_TEXTDOMAIN ),
684
  'type' => Controls_Manager::CHOOSE,
685
  'options' => [
686
  'inline' => [
687
- 'title' => __( 'Left', EAEL_TEXTDOMAIN ),
688
  'icon' => 'eicon-arrow-left',
689
  ],
690
  'block' => [
691
- 'title' => __( 'Top', EAEL_TEXTDOMAIN ),
692
  'icon' => 'eicon-arrow-up',
693
  ],
694
  ],
@@ -697,31 +702,31 @@ class Login_Register extends Widget_Base {
697
  ] );
698
 
699
  $this->add_control( 'login_form_title', [
700
- 'label' => __( 'Login Form Title', EAEL_TEXTDOMAIN ),
701
  'type' => Controls_Manager::TEXT,
702
  'dynamic' => [ 'active' => true, ],
703
- 'placeholder' => __( 'Welcome Back!', EAEL_TEXTDOMAIN ),
704
  'separator' => 'before',
705
  ] );
706
  $this->add_control( 'login_form_subtitle', [
707
- 'label' => __( 'Login Form Sub Title', EAEL_TEXTDOMAIN ),
708
  'type' => Controls_Manager::TEXTAREA,
709
  'dynamic' => [ 'active' => true, ],
710
- 'placeholder' => __( 'Please login to your account', EAEL_TEXTDOMAIN ),
711
  ] );
712
 
713
  $this->add_control( 'register_form_title', [
714
- 'label' => __( 'Register Form Title', EAEL_TEXTDOMAIN ),
715
  'type' => Controls_Manager::TEXT,
716
  'dynamic' => [ 'active' => true, ],
717
- 'placeholder' => __( 'Create a New Account', EAEL_TEXTDOMAIN ),
718
  'separator' => 'before',
719
  ] );
720
  $this->add_control( 'register_form_subtitle', [
721
- 'label' => __( 'Register Form Sub Title', EAEL_TEXTDOMAIN ),
722
  'type' => Controls_Manager::TEXTAREA,
723
  'dynamic' => [ 'active' => true, ],
724
- 'placeholder' => __( 'Create an account to enjoy awesome features.', EAEL_TEXTDOMAIN ),
725
  ] );
726
 
727
  $this->end_controls_section();
@@ -730,12 +735,12 @@ class Login_Register extends Widget_Base {
730
  protected function init_content_login_options_controls() {
731
 
732
  $this->start_controls_section( 'section_content_login_options', [
733
- 'label' => __( 'Login Form Options', EAEL_TEXTDOMAIN ),
734
  'conditions' => $this->get_form_controls_display_condition( 'login' ),
735
  ] );
736
 
737
  $this->add_control( 'redirect_after_login', [
738
- 'label' => __( 'Redirect After Login', EAEL_TEXTDOMAIN ),
739
  'type' => Controls_Manager::SWITCHER,
740
  ] );
741
 
@@ -744,7 +749,7 @@ class Login_Register extends Widget_Base {
744
  'show_label' => false,
745
  'show_external' => false,
746
  'placeholder' => admin_url(),
747
- 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', EAEL_TEXTDOMAIN ),
748
  'condition' => [
749
  'redirect_after_login' => 'yes',
750
  ],
@@ -757,7 +762,7 @@ class Login_Register extends Widget_Base {
757
  ] );
758
  // @todo; in future
759
  //$this->add_control( 'redirect_after_logout', [
760
- // 'label' => __( 'Redirect After Logout', EAEL_TEXTDOMAIN ),
761
  // 'type' => Controls_Manager::SWITCHER,
762
  //] );
763
  //
@@ -765,8 +770,8 @@ class Login_Register extends Widget_Base {
765
  // 'type' => Controls_Manager::URL,
766
  // 'show_label' => false,
767
  // 'show_external' => false,
768
- // 'placeholder' => __( 'https://your-link.com', EAEL_TEXTDOMAIN ),
769
- // 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', EAEL_TEXTDOMAIN ),
770
  // 'condition' => [
771
  // 'redirect_after_logout' => 'yes',
772
  // ],
@@ -778,39 +783,39 @@ class Login_Register extends Widget_Base {
778
 
779
  protected function init_content_terms_controls() {
780
  $this->start_controls_section( 'section_content_terms_conditions', [
781
- 'label' => __( 'Terms & Conditions', EAEL_TEXTDOMAIN ),
782
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
783
  ] );
784
 
785
  $this->add_control( 'show_terms_conditions', [
786
- 'label' => __( 'Enforce Terms & Conditions', EAEL_TEXTDOMAIN ),
787
  'type' => Controls_Manager::SWITCHER,
788
- 'label_on' => __( 'Yes', EAEL_TEXTDOMAIN ),
789
- 'label_off' => __( 'No', EAEL_TEXTDOMAIN ),
790
  'default' => 'no',
791
  'return_value' => 'yes',
792
  ] );
793
 
794
  $this->add_control( 'acceptance_label', [
795
- 'label' => __( 'Acceptance Label', EAEL_TEXTDOMAIN ),
796
- 'description' => __( 'Eg. I accept the terms & conditions. Note: First line is checkbox label & Last line will be used as link text.', EAEL_TEXTDOMAIN ),
797
  'type' => Controls_Manager::TEXTAREA,
798
  'rows' => 2,
799
  'label_block' => true,
800
- 'placeholder' => __( 'I Accept the Terms and Conditions.', EAEL_TEXTDOMAIN ),
801
  /* translators: \n means new line. So, Don't translate this*/
802
- 'default' => __( "I Accept\n the Terms and Conditions.", EAEL_TEXTDOMAIN ),
803
  'condition' => [
804
  'show_terms_conditions' => 'yes',
805
  ],
806
  ] );
807
 
808
  $this->add_control( 'acceptance_text_source', [
809
- 'label' => __( 'Content Source', EAEL_TEXTDOMAIN ),
810
  'type' => Controls_Manager::SELECT,
811
  'options' => [
812
- 'editor' => __( 'Editor', EAEL_TEXTDOMAIN ),
813
- 'custom' => __( 'Custom', EAEL_TEXTDOMAIN ),
814
  ],
815
  'default' => 'custom',
816
  'condition' => [
@@ -819,10 +824,10 @@ class Login_Register extends Widget_Base {
819
  ] );
820
 
821
  $this->add_control( 'acceptance_text', [
822
- 'label' => __( 'Terms and Conditions', EAEL_TEXTDOMAIN ),
823
  'type' => Controls_Manager::WYSIWYG,
824
  'rows' => 3,
825
- 'default' => __( 'Please go through the following terms and conditions carefully.', EAEL_TEXTDOMAIN ),
826
  'condition' => [
827
  'show_terms_conditions' => 'yes',
828
  'acceptance_text_source' => 'editor',
@@ -831,8 +836,8 @@ class Login_Register extends Widget_Base {
831
 
832
 
833
  $this->add_control( 'acceptance_text_url', [
834
- 'label' => __( 'Terms & Conditions URL', EAEL_TEXTDOMAIN ),
835
- 'description' => __( 'Enter the link where your terms & condition or privacy policy is found.', EAEL_TEXTDOMAIN ),
836
  'type' => Controls_Manager::URL,
837
  'dynamic' => [
838
  'active' => true,
@@ -851,28 +856,145 @@ class Login_Register extends Widget_Base {
851
  $this->end_controls_section();
852
  }
853
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
854
  protected function init_content_register_fields_controls() {
855
 
856
  $this->start_controls_section( 'section_content_register_fields', [
857
- 'label' => __( 'Register Form Fields', EAEL_TEXTDOMAIN ),
858
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
859
  ] );
860
  $this->add_control( 'register_form_field_note', [
861
  'type' => Controls_Manager::RAW_HTML,
862
- 'raw' => __( 'Select the type of fields you want to show in the registration form', EAEL_TEXTDOMAIN ),
863
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
864
  ] );
865
  $repeater = new Repeater();
866
 
867
  $repeater->add_control( 'field_type', [
868
- 'label' => __( 'Type', EAEL_TEXTDOMAIN ),
869
  'type' => Controls_Manager::SELECT,
870
  'options' => $this->get_form_field_types(),
871
  'default' => 'first_name',
872
  ] );
873
 
874
  $repeater->add_control( 'field_label', [
875
- 'label' => __( 'Label', EAEL_TEXTDOMAIN ),
876
  'type' => Controls_Manager::TEXT,
877
  'default' => '',
878
  'dynamic' => [
@@ -881,7 +1003,7 @@ class Login_Register extends Widget_Base {
881
  ] );
882
 
883
  $repeater->add_control( 'placeholder', [
884
- 'label' => __( 'Placeholder', EAEL_TEXTDOMAIN ),
885
  'type' => Controls_Manager::TEXT,
886
  'default' => '',
887
  'dynamic' => [
@@ -890,7 +1012,7 @@ class Login_Register extends Widget_Base {
890
  ] );
891
 
892
  $repeater->add_control( 'required', [
893
- 'label' => __( 'Required', EAEL_TEXTDOMAIN ),
894
  'type' => Controls_Manager::SWITCHER,
895
  'condition' => [
896
  'field_type!' => [
@@ -903,7 +1025,7 @@ class Login_Register extends Widget_Base {
903
 
904
  $repeater->add_control( 'required_note', [
905
  'type' => Controls_Manager::RAW_HTML,
906
- 'raw' => __( 'Note: This field is required by default.', EAEL_TEXTDOMAIN ),
907
  'condition' => [
908
  'field_type' => [
909
  'email',
@@ -915,10 +1037,10 @@ class Login_Register extends Widget_Base {
915
  ] );
916
 
917
  $repeater->add_responsive_control( 'width', [
918
- 'label' => __( 'Field Width', EAEL_TEXTDOMAIN ),
919
  'type' => Controls_Manager::SELECT,
920
  'options' => [
921
- '' => __( 'Default', EAEL_TEXTDOMAIN ),
922
  '100' => '100%',
923
  '80' => '80%',
924
  '75' => '75%',
@@ -934,26 +1056,27 @@ class Login_Register extends Widget_Base {
934
  ] );
935
 
936
  $this->add_control( 'register_fields', [
 
937
  'type' => Controls_Manager::REPEATER,
938
- 'fields' => array_values( $repeater->get_controls() ),
939
  'default' => [
940
  [
941
  'field_type' => 'user_name',
942
- 'field_label' => __( 'Username', EAEL_TEXTDOMAIN ),
943
- 'placeholder' => __( 'Username', EAEL_TEXTDOMAIN ),
944
  'width' => '100',
945
  ],
946
  [
947
  'field_type' => 'email',
948
- 'field_label' => __( 'Email', EAEL_TEXTDOMAIN ),
949
- 'placeholder' => __( 'Email', EAEL_TEXTDOMAIN ),
950
  'required' => 'yes',
951
  'width' => '100',
952
  ],
953
  [
954
  'field_type' => 'password',
955
- 'field_label' => __( 'Password', EAEL_TEXTDOMAIN ),
956
- 'placeholder' => __( 'Password', EAEL_TEXTDOMAIN ),
957
  'required' => 'yes',
958
  'width' => '100',
959
  ],
@@ -962,13 +1085,13 @@ class Login_Register extends Widget_Base {
962
  ] );
963
 
964
  $this->add_control( 'show_labels', [
965
- 'label' => __( 'Show Label', EAEL_TEXTDOMAIN ),
966
  'type' => Controls_Manager::SWITCHER,
967
  'default' => 'yes',
968
  ] );
969
 
970
  $this->add_control( 'mark_required', [
971
- 'label' => __( 'Show Required Mark', EAEL_TEXTDOMAIN ),
972
  'type' => Controls_Manager::SWITCHER,
973
  'condition' => [
974
  'show_labels' => 'yes',
@@ -978,16 +1101,16 @@ class Login_Register extends Widget_Base {
978
 
979
  /*--Register Fields Button--*/
980
  $this->add_control( 'reg_button_heading', [
981
- 'label' => esc_html__( 'Register Button', EAEL_TEXTDOMAIN ),
982
  'type' => Controls_Manager::HEADING,
983
  'separator' => 'before',
984
  ] );
985
 
986
  $this->add_control( 'reg_button_text', [
987
- 'label' => __( 'Button Text', EAEL_TEXTDOMAIN ),
988
  'type' => Controls_Manager::TEXT,
989
  'dynamic' => [ 'active' => true, ],
990
- 'default' => __( 'Register', EAEL_TEXTDOMAIN ),
991
  ] );
992
 
993
 
@@ -997,30 +1120,30 @@ class Login_Register extends Widget_Base {
997
  protected function init_content_register_options_controls() {
998
 
999
  $this->start_controls_section( 'section_content_register_actions', [
1000
- 'label' => __( 'Register Form Options', EAEL_TEXTDOMAIN ),
1001
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
1002
  ] );
1003
 
1004
  $this->add_control( 'register_action', [
1005
- 'label' => __( 'Register Actions', EAEL_TEXTDOMAIN ),
1006
- 'description' => __( 'You can select what should happen after a user registers successfully', EAEL_TEXTDOMAIN ),
1007
  'type' => Controls_Manager::SELECT2,
1008
  'multiple' => true,
1009
  'label_block' => true,
1010
  'default' => 'send_email',
1011
  'options' => [
1012
- 'redirect' => __( 'Redirect', EAEL_TEXTDOMAIN ),
1013
- 'auto_login' => __( 'Auto Login', EAEL_TEXTDOMAIN ),
1014
- 'send_email' => __( 'Notify User By Email', EAEL_TEXTDOMAIN ),
1015
  ],
1016
  ] );
1017
 
1018
  $this->add_control( 'register_redirect_url', [
1019
  'type' => Controls_Manager::URL,
1020
- 'label' => __( 'Custom Redirect URL', EAEL_TEXTDOMAIN ),
1021
  'show_external' => false,
1022
- 'placeholder' => __( 'eg. https://your-link.com/wp-admin/', EAEL_TEXTDOMAIN ),
1023
- 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', EAEL_TEXTDOMAIN ),
1024
  'default' => [
1025
  'url' => get_admin_url(),
1026
  'is_external' => false,
@@ -1032,7 +1155,7 @@ class Login_Register extends Widget_Base {
1032
  ] );
1033
 
1034
  $this->add_control( 'register_user_role', [
1035
- 'label' => __( 'New User Role', EAEL_TEXTDOMAIN ),
1036
  'type' => Controls_Manager::SELECT,
1037
  'default' => '',
1038
  'options' => $this->get_user_roles(),
@@ -1040,36 +1163,22 @@ class Login_Register extends Widget_Base {
1040
  ] );
1041
 
1042
 
1043
- $this->add_control( 'register_success_msg', [
1044
- 'label' => __( 'Success Message', EAEL_TEXTDOMAIN ),
1045
- 'type' => Controls_Manager::TEXTAREA,
1046
- 'default' => __( 'Registration completed successfully, Check your inbox for password if you did not provided while registering.', EAEL_TEXTDOMAIN ),
1047
- 'placeholder' => __( 'eg. Registration completed successfully', EAEL_TEXTDOMAIN ),
1048
- ] );
1049
-
1050
- $this->add_control( 'register_error_msg', [
1051
- 'label' => __( 'Error Message', EAEL_TEXTDOMAIN ),
1052
- 'type' => Controls_Manager::TEXTAREA,
1053
- 'default' => __( 'Something went wrong, Please try again.', EAEL_TEXTDOMAIN ),
1054
- 'placeholder' => __( 'eg. Something went wrong, Please try again.', EAEL_TEXTDOMAIN ),
1055
- ] );
1056
-
1057
  $this->end_controls_section();
1058
  }
1059
 
1060
  protected function init_content_register_user_email_controls() {
1061
  /* translators: %s: Site Name */
1062
- $default_subject = sprintf( __( 'Thank you for registering on "%s"!', EAEL_TEXTDOMAIN ), get_option( 'blogname' ) );
1063
  $default_message = $default_subject . "\r\n\r\n";
1064
- $default_message .= __( 'Username: [username]', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1065
- $default_message .= __( 'Password: [password]', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1066
- $default_message .= __( 'To reset your password, visit the following address:', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1067
  $default_message .= "[password_reset_link]\r\n\r\n";
1068
- $default_message .= __( 'Please click the following address to login to your account:', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1069
  $default_message .= wp_login_url() . "\r\n";
1070
 
1071
  $this->start_controls_section( 'section_content_reg_email', [
1072
- 'label' => __( 'Register User Email Options', EAEL_TEXTDOMAIN ),
1073
  'conditions' => [
1074
  'relation' => 'or',
1075
  'terms' => [
@@ -1103,19 +1212,19 @@ class Login_Register extends Widget_Base {
1103
  ] );
1104
 
1105
  $this->add_control( 'reg_email_template_type', [
1106
- 'label' => __( 'Email Template Type', EAEL_TEXTDOMAIN ),
1107
- 'description' => __( 'Default template uses WordPress Default email template. So, please select the Custom Option to send the user proper information if you used any username field.', EAEL_TEXTDOMAIN ),
1108
  'type' => Controls_Manager::SELECT,
1109
  'default' => 'default',
1110
  'render_type' => 'none',
1111
  'options' => [
1112
- 'default' => __( 'WordPres Default', EAEL_TEXTDOMAIN ),
1113
- 'custom' => __( 'Custom', EAEL_TEXTDOMAIN ),
1114
  ],
1115
  ] );
1116
 
1117
  $this->add_control( 'reg_email_subject', [
1118
- 'label' => __( 'Email Subject', EAEL_TEXTDOMAIN ),
1119
  'type' => Controls_Manager::TEXT,
1120
  'placeholder' => $default_subject,
1121
  'default' => $default_subject,
@@ -1127,9 +1236,9 @@ class Login_Register extends Widget_Base {
1127
  ] );
1128
 
1129
  $this->add_control( 'reg_email_message', [
1130
- 'label' => __( 'Email Message', EAEL_TEXTDOMAIN ),
1131
  'type' => Controls_Manager::WYSIWYG,
1132
- 'placeholder' => __( 'Enter Your Custom Email Message..', EAEL_TEXTDOMAIN ),
1133
  'default' => $default_message,
1134
  'label_block' => true,
1135
  'render_type' => 'none',
@@ -1140,7 +1249,7 @@ class Login_Register extends Widget_Base {
1140
 
1141
  $this->add_control( 'reg_email_content_note', [
1142
  'type' => Controls_Manager::RAW_HTML,
1143
- 'raw' => __( '<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [password], [username], [email], [firstname],[lastname], [website], [loginurl], [password_reset_link] and [sitetitle] ', EAEL_TEXTDOMAIN ),
1144
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1145
  'condition' => [
1146
  'reg_email_template_type' => 'custom',
@@ -1149,13 +1258,13 @@ class Login_Register extends Widget_Base {
1149
  ] );
1150
 
1151
  $this->add_control( 'reg_email_content_type', [
1152
- 'label' => __( 'Email Content Type', EAEL_TEXTDOMAIN ),
1153
  'type' => Controls_Manager::SELECT,
1154
  'default' => 'html',
1155
  'render_type' => 'none',
1156
  'options' => [
1157
- 'html' => __( 'HTML', EAEL_TEXTDOMAIN ),
1158
- 'plain' => __( 'Plain', EAEL_TEXTDOMAIN ),
1159
  ],
1160
  'condition' => [
1161
  'reg_email_template_type' => 'custom',
@@ -1167,15 +1276,15 @@ class Login_Register extends Widget_Base {
1167
 
1168
  protected function init_content_register_admin_email_controls() {
1169
  /* translators: %s: Site Name */
1170
- $default_subject = sprintf( __( '["%s"] New User Registration', EAEL_TEXTDOMAIN ), get_option( 'blogname' ) );
1171
  /* translators: %s: Site Name */
1172
- $default_message = sprintf( __( "New user registration on your site %s", EAEL_TEXTDOMAIN ), get_option( 'blogname' ) ) . "\r\n\r\n";
1173
- $default_message .= __( 'Username: [username]', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1174
- $default_message .= __( 'Email: [email]', EAEL_TEXTDOMAIN ) . "\r\n\r\n";
1175
 
1176
 
1177
  $this->start_controls_section( 'section_content_reg_admin_email', [
1178
- 'label' => __( 'Register Admin Email Options', EAEL_TEXTDOMAIN ),
1179
  'conditions' => [
1180
  'relation' => 'or',
1181
  'terms' => [
@@ -1209,19 +1318,19 @@ class Login_Register extends Widget_Base {
1209
  ] );
1210
 
1211
  $this->add_control( 'reg_admin_email_template_type', [
1212
- 'label' => __( 'Email Template Type', EAEL_TEXTDOMAIN ),
1213
- 'description' => __( 'Default template uses WordPress Default Admin email template. You can customize it by choosing the custom option.', EAEL_TEXTDOMAIN ),
1214
  'type' => Controls_Manager::SELECT,
1215
  'default' => 'default',
1216
  'render_type' => 'none',
1217
  'options' => [
1218
- 'default' => __( 'WordPres Default', EAEL_TEXTDOMAIN ),
1219
- 'custom' => __( 'Custom', EAEL_TEXTDOMAIN ),
1220
  ],
1221
  ] );
1222
 
1223
  $this->add_control( 'reg_admin_email_subject', [
1224
- 'label' => __( 'Email Subject', EAEL_TEXTDOMAIN ),
1225
  'type' => Controls_Manager::TEXT,
1226
  'placeholder' => $default_subject,
1227
  'default' => $default_subject,
@@ -1233,9 +1342,9 @@ class Login_Register extends Widget_Base {
1233
  ] );
1234
 
1235
  $this->add_control( 'reg_admin_email_message', [
1236
- 'label' => __( 'Email Message', EAEL_TEXTDOMAIN ),
1237
  'type' => Controls_Manager::WYSIWYG,
1238
- 'placeholder' => __( 'Enter Your Custom Email Message..', EAEL_TEXTDOMAIN ),
1239
  'default' => $default_message,
1240
  'label_block' => true,
1241
  'render_type' => 'none',
@@ -1246,7 +1355,7 @@ class Login_Register extends Widget_Base {
1246
 
1247
  $this->add_control( 'reg_admin_email_content_note', [
1248
  'type' => Controls_Manager::RAW_HTML,
1249
- 'raw' => __( '<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [username], [email], [firstname],[lastname], [website], [loginurl] and [sitetitle] ', EAEL_TEXTDOMAIN ),
1250
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1251
  'condition' => [
1252
  'reg_admin_email_template_type' => 'custom',
@@ -1255,13 +1364,13 @@ class Login_Register extends Widget_Base {
1255
  ] );
1256
 
1257
  $this->add_control( 'reg_admin_email_content_type', [
1258
- 'label' => __( 'Email Content Type', EAEL_TEXTDOMAIN ),
1259
  'type' => Controls_Manager::SELECT,
1260
  'default' => 'html',
1261
  'render_type' => 'none',
1262
  'options' => [
1263
- 'html' => __( 'HTML', EAEL_TEXTDOMAIN ),
1264
- 'plain' => __( 'Plain', EAEL_TEXTDOMAIN ),
1265
  ],
1266
  'condition' => [
1267
  'reg_admin_email_template_type' => 'custom',
@@ -1277,20 +1386,20 @@ class Login_Register extends Widget_Base {
1277
  */
1278
  protected function init_style_general_controls() {
1279
  $this->start_controls_section( 'section_style_general', [
1280
- 'label' => __( 'General', EAEL_TEXTDOMAIN ),
1281
  'tab' => Controls_Manager::TAB_STYLE,
1282
  ] );
1283
  //---Form Container or Box
1284
  $this->add_control( 'form_form_wrap_po_toggle', [
1285
- 'label' => __( 'Container Box', EAEL_TEXTDOMAIN ),
1286
  'type' => Controls_Manager::POPOVER_TOGGLE,
1287
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
1288
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
1289
  'return_value' => 'yes',
1290
  ] );
1291
  $this->start_popover();
1292
  $this->add_responsive_control( "eael_form_wrap_width", [
1293
- 'label' => esc_html__( 'width', EAEL_TEXTDOMAIN ),
1294
  'type' => Controls_Manager::SLIDER,
1295
  'size_units' => [
1296
  'px',
@@ -1334,7 +1443,7 @@ class Login_Register extends Widget_Base {
1334
  ] );
1335
 
1336
  $this->add_responsive_control( "eael_form_wrap_margin", [
1337
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
1338
  'type' => Controls_Manager::DIMENSIONS,
1339
  'size_units' => [
1340
  'px',
@@ -1349,7 +1458,7 @@ class Login_Register extends Widget_Base {
1349
  ],
1350
  ] );
1351
  $this->add_responsive_control( "eael_form_wrap_padding", [
1352
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
1353
  'type' => Controls_Manager::DIMENSIONS,
1354
  'size_units' => [
1355
  'px',
@@ -1371,7 +1480,7 @@ class Login_Register extends Widget_Base {
1371
  ],
1372
  ] );
1373
  $this->add_control( "eael_form_wrap_border_radius", [
1374
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
1375
  'type' => Controls_Manager::DIMENSIONS,
1376
  'size_units' => [
1377
  'px',
@@ -1386,16 +1495,19 @@ class Login_Register extends Widget_Base {
1386
  ] );
1387
  $this->add_group_control( Group_Control_Background::get_type(), [
1388
  'name' => "eael_form_wrap_bg_color",
1389
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
1390
  'types' => [
1391
  'classic',
1392
  'gradient',
1393
  ],
1394
  'selector' => "{{WRAPPER}} .eael-lr-form-wrapper",
 
 
 
1395
  ] );
1396
  $this->end_popover();
1397
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1398
- 'label' => __( 'Container Box Shadow', EAEL_TEXTDOMAIN ),
1399
  'name' => 'eael_form_wrap_shadow',
1400
  'selector' => "{{WRAPPER}} .eael-lr-form-wrapper",
1401
  'exclude' => [
@@ -1405,22 +1517,22 @@ class Login_Register extends Widget_Base {
1405
 
1406
  //----Form Wrapper-----
1407
  $this->add_control( 'form_form_po_toggle', [
1408
- 'label' => __( 'Form', EAEL_TEXTDOMAIN ),
1409
  'type' => Controls_Manager::POPOVER_TOGGLE,
1410
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
1411
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
1412
  'return_value' => 'yes',
1413
  'separator' => 'before',
1414
  ] );
1415
  $this->start_popover();
1416
  $this->add_control( 'eael_form_wrapper_heading', [
1417
  'type' => Controls_Manager::HEADING,
1418
- 'label' => __( '---Form Wrapper---', EAEL_TEXTDOMAIN ),
1419
  'separator' => 'before',
1420
  ] );
1421
 
1422
  $this->add_responsive_control( "eael_form_width", [
1423
- 'label' => esc_html__( 'Wrapper width', EAEL_TEXTDOMAIN ),
1424
  'type' => Controls_Manager::SLIDER,
1425
  'size_units' => [
1426
  'px',
@@ -1464,7 +1576,7 @@ class Login_Register extends Widget_Base {
1464
  ] );
1465
 
1466
  $this->add_responsive_control( "eael_form_margin", [
1467
- 'label' => __( 'Wrapper Margin', EAEL_TEXTDOMAIN ),
1468
  'type' => Controls_Manager::DIMENSIONS,
1469
  'size_units' => [
1470
  'px',
@@ -1479,7 +1591,7 @@ class Login_Register extends Widget_Base {
1479
  ],
1480
  ] );
1481
  $this->add_responsive_control( "eael_form_padding", [
1482
- 'label' => __( 'Wrapper Padding', EAEL_TEXTDOMAIN ),
1483
  'type' => Controls_Manager::DIMENSIONS,
1484
  'size_units' => [
1485
  'px',
@@ -1501,7 +1613,7 @@ class Login_Register extends Widget_Base {
1501
  ],
1502
  ] );
1503
  $this->add_control( "eael_form_border_radius", [
1504
- 'label' => __( 'Wrapper Border Radius', EAEL_TEXTDOMAIN ),
1505
  'type' => Controls_Manager::DIMENSIONS,
1506
  'size_units' => [
1507
  'px',
@@ -1516,7 +1628,7 @@ class Login_Register extends Widget_Base {
1516
  ] );
1517
  $this->add_group_control( Group_Control_Background::get_type(), [
1518
  'name' => "eael_form_bg_color",
1519
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
1520
  'types' => [
1521
  'classic',
1522
  'gradient',
@@ -1526,18 +1638,18 @@ class Login_Register extends Widget_Base {
1526
 
1527
  $this->add_control( 'eael_form_input_container', [
1528
  'type' => Controls_Manager::HEADING,
1529
- 'label' => __( '---Form Style---', EAEL_TEXTDOMAIN ),
1530
  'separator' => 'before',
1531
  ] );
1532
  $this->add_responsive_control( "eael_form_ic_width", [
1533
- 'label' => esc_html__( 'Form width', EAEL_TEXTDOMAIN ),
1534
- 'type' => Controls_Manager::SLIDER,
1535
- 'size_units' => [
1536
  'px',
1537
  'rem',
1538
  '%',
1539
  ],
1540
- 'range' => [
1541
  'px' => [
1542
  'min' => 0,
1543
  'max' => 1000,
@@ -1553,20 +1665,20 @@ class Login_Register extends Widget_Base {
1553
  'max' => 100,
1554
  ],
1555
  ],
1556
- 'default' => [
1557
  'unit' => '%',
1558
  'size' => 100,
1559
  ],
1560
- 'selectors' => [
1561
  "{{WRAPPER}} .lr-form-wrapper form" => 'width: {{SIZE}}{{UNIT}};',
1562
  ],
1563
- 'condition' => [
1564
  'form_form_po_toggle' => 'yes',
1565
  ],
1566
  ] );
1567
 
1568
  $this->add_responsive_control( "eael_form_ic_margin", [
1569
- 'label' => __( 'Form Margin', EAEL_TEXTDOMAIN ),
1570
  'type' => Controls_Manager::DIMENSIONS,
1571
  'size_units' => [
1572
  'px',
@@ -1581,7 +1693,7 @@ class Login_Register extends Widget_Base {
1581
  ],
1582
  ] );
1583
  $this->add_responsive_control( "eael_form_ic_padding", [
1584
- 'label' => __( 'Form Padding', EAEL_TEXTDOMAIN ),
1585
  'type' => Controls_Manager::DIMENSIONS,
1586
  'size_units' => [
1587
  'px',
@@ -1603,7 +1715,7 @@ class Login_Register extends Widget_Base {
1603
  ],
1604
  ] );
1605
  $this->add_control( "eael_form_ic_border_radius", [
1606
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
1607
  'type' => Controls_Manager::DIMENSIONS,
1608
  'size_units' => [
1609
  'px',
@@ -1618,7 +1730,7 @@ class Login_Register extends Widget_Base {
1618
  ] );
1619
  $this->add_group_control( Group_Control_Background::get_type(), [
1620
  'name' => "eael_form_ic_bg_color",
1621
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
1622
  'types' => [
1623
  'classic',
1624
  'gradient',
@@ -1628,7 +1740,7 @@ class Login_Register extends Widget_Base {
1628
  $this->end_popover();
1629
 
1630
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1631
- 'label' => __( 'Form Wrapper Shadow', EAEL_TEXTDOMAIN ),
1632
  'name' => 'eael_form_shadow',
1633
  'selector' => "{{WRAPPER}} .lr-form-wrapper",
1634
  'exclude' => [
@@ -1637,7 +1749,7 @@ class Login_Register extends Widget_Base {
1637
  ] );
1638
 
1639
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1640
- 'label' => __( 'Form Shadow', EAEL_TEXTDOMAIN ),
1641
  'name' => 'eael_form_ic_shadow',
1642
  'selector' => "{{WRAPPER}} .lr-form-wrapper form",
1643
  'exclude' => [
@@ -1650,7 +1762,8 @@ class Login_Register extends Widget_Base {
1650
 
1651
  protected function init_style_header_content_controls( $form_type = 'login' ) {
1652
  $this->start_controls_section( "section_style_{$form_type}_header_content", [
1653
- 'label' => sprintf( __( '%s Form Header', EAEL_TEXTDOMAIN ), ucfirst( $form_type ) ), // Login Form Header | Register Form Header
 
1654
  'tab' => Controls_Manager::TAB_STYLE,
1655
  'conditions' => $this->get_form_controls_display_condition( $form_type ),
1656
  ] );
@@ -1661,24 +1774,24 @@ class Login_Register extends Widget_Base {
1661
  $title_selector = "{{WRAPPER}} .eael-{$form_type}-form-wrapper .lr-form-header .form-dsc h4";
1662
  $subtitle_selector = "{{WRAPPER}} .eael-{$form_type}-form-wrapper .lr-form-header .form-dsc p";
1663
  $this->add_control( "{$form_type}_fhc_po_toggle", [
1664
- 'label' => __( 'Header Content', EAEL_TEXTDOMAIN ),
1665
  'type' => Controls_Manager::POPOVER_TOGGLE,
1666
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
1667
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
1668
  'return_value' => 'yes',
1669
  ] );
1670
 
1671
  $this->start_popover();
1672
 
1673
  $this->add_responsive_control( "{$form_type}_fhc_width", [
1674
- 'label' => esc_html__( 'Header width', EAEL_TEXTDOMAIN ),
1675
- 'type' => Controls_Manager::SLIDER,
1676
- 'size_units' => [
1677
  'px',
1678
  'rem',
1679
  '%',
1680
  ],
1681
- 'range' => [
1682
  'px' => [
1683
  'min' => 0,
1684
  'max' => 1000,
@@ -1694,26 +1807,26 @@ class Login_Register extends Widget_Base {
1694
  'max' => 100,
1695
  ],
1696
  ],
1697
- 'default' => [
1698
  'unit' => '%',
1699
  'size' => 100,
1700
  ],
1701
- 'selectors' => [
1702
  $header_selector => 'width: {{SIZE}}{{UNIT}};',
1703
  ],
1704
- 'condition' => [
1705
  "{$form_type}_fhc_po_toggle" => 'yes',
1706
  ],
1707
  ] );
1708
  $this->add_responsive_control( "{$form_type}_fhc_height", [
1709
- 'label' => esc_html__( 'Header height', EAEL_TEXTDOMAIN ),
1710
- 'type' => Controls_Manager::SLIDER,
1711
- 'size_units' => [
1712
  'px',
1713
  'rem',
1714
  '%',
1715
  ],
1716
- 'range' => [
1717
  'px' => [
1718
  'min' => 0,
1719
  'max' => 1000,
@@ -1729,15 +1842,15 @@ class Login_Register extends Widget_Base {
1729
  'max' => 100,
1730
  ],
1731
  ],
1732
- 'selectors' => [
1733
  $header_selector => 'height: {{SIZE}}{{UNIT}};',
1734
  ],
1735
- 'condition' => [
1736
  "{$form_type}_fhc_po_toggle" => 'yes',
1737
  ],
1738
  ] );
1739
  $this->add_responsive_control( "{$form_type}_fhc_margin", [
1740
- 'label' => __( 'Header Margin', EAEL_TEXTDOMAIN ),
1741
  'type' => Controls_Manager::DIMENSIONS,
1742
  'size_units' => [
1743
  'px',
@@ -1747,12 +1860,12 @@ class Login_Register extends Widget_Base {
1747
  'selectors' => [
1748
  $header_selector => $this->apply_dim( 'margin' ),
1749
  ],
1750
- 'condition' => [
1751
  "{$form_type}_fhc_po_toggle" => 'yes',
1752
  ],
1753
  ] );
1754
  $this->add_responsive_control( "{$form_type}_fhc_padding", [
1755
- 'label' => __( 'Header Padding', EAEL_TEXTDOMAIN ),
1756
  'type' => Controls_Manager::DIMENSIONS,
1757
  'size_units' => [
1758
  'px',
@@ -1762,7 +1875,7 @@ class Login_Register extends Widget_Base {
1762
  'selectors' => [
1763
  $header_selector => $this->apply_dim( 'padding' ),
1764
  ],
1765
- 'condition' => [
1766
  "{$form_type}_fhc_po_toggle" => 'yes',
1767
  ],
1768
  ] );
@@ -1776,7 +1889,7 @@ class Login_Register extends Widget_Base {
1776
  ],
1777
  ] );
1778
  $this->add_control( "{$form_type}_fhc_border_radius", [
1779
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
1780
  'type' => Controls_Manager::DIMENSIONS,
1781
  'size_units' => [
1782
  'px',
@@ -1790,34 +1903,31 @@ class Login_Register extends Widget_Base {
1790
  ],
1791
  ] );
1792
  $this->add_group_control( Group_Control_Background::get_type(), [
1793
- 'name' => "{$form_type}_form_header_bg",
1794
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
1795
- 'types' => [
1796
  'classic',
1797
  'gradient',
1798
  ],
1799
- 'selector' => $header_selector,
1800
- 'condition' => [
1801
  "{$form_type}_fhc_po_toggle" => 'yes',
1802
  ],
1803
  ] );
1804
  $this->end_popover();
1805
 
1806
 
1807
-
1808
-
1809
-
1810
  $this->add_control( "{$form_type}_form_img_po_toggle", [
1811
- 'label' => __( 'Form Illustration', EAEL_TEXTDOMAIN ),
1812
  'type' => Controls_Manager::POPOVER_TOGGLE,
1813
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
1814
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
1815
  'return_value' => 'yes',
1816
- 'separator' => 'before',
1817
  ] );
1818
  $this->start_popover();
1819
  $this->add_responsive_control( "{$form_type}_form_img_width", [
1820
- 'label' => esc_html__( 'Width', EAEL_TEXTDOMAIN ),
1821
  'type' => Controls_Manager::SLIDER,
1822
  'size_units' => [
1823
  'px',
@@ -1860,7 +1970,7 @@ class Login_Register extends Widget_Base {
1860
  ],
1861
  ] );
1862
  $this->add_responsive_control( "{$form_type}_form_img_height", [
1863
- 'label' => esc_html__( 'Height', EAEL_TEXTDOMAIN ),
1864
  'type' => Controls_Manager::SLIDER,
1865
  'size_units' => [
1866
  'px',
@@ -1898,7 +2008,7 @@ class Login_Register extends Widget_Base {
1898
  ],
1899
  ] );
1900
  $this->add_control( "{$form_type}_form_img_margin", [
1901
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
1902
  'type' => Controls_Manager::DIMENSIONS,
1903
  'size_units' => [
1904
  'px',
@@ -1913,7 +2023,7 @@ class Login_Register extends Widget_Base {
1913
  ],
1914
  ] );
1915
  $this->add_control( "{$form_type}_form_img_padding", [
1916
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
1917
  'type' => Controls_Manager::DIMENSIONS,
1918
  'size_units' => [
1919
  'px',
@@ -1935,7 +2045,7 @@ class Login_Register extends Widget_Base {
1935
  ],
1936
  ] );
1937
  $this->add_control( "{$form_type}_form_img_border_radius", [
1938
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
1939
  'type' => Controls_Manager::DIMENSIONS,
1940
  'size_units' => [
1941
  'px',
@@ -1950,7 +2060,7 @@ class Login_Register extends Widget_Base {
1950
  ] );
1951
  $this->end_popover();
1952
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1953
- 'label' => __( 'Illustration Shadow', EAEL_TEXTDOMAIN ),
1954
  'name' => "{$form_type}_form_img_shadow",
1955
  'selector' => $illustration_selector,
1956
  'exclude' => [
@@ -1958,23 +2068,23 @@ class Login_Register extends Widget_Base {
1958
  ],
1959
  ] );
1960
  $this->add_control( "{$form_type}_form_logo_po_toggle", [
1961
- 'label' => __( 'Form Logo', EAEL_TEXTDOMAIN ),
1962
  'type' => Controls_Manager::POPOVER_TOGGLE,
1963
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
1964
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
1965
  'return_value' => 'yes',
1966
  'separator' => 'before',
1967
  ] );
1968
  $this->start_popover();
1969
  $this->add_responsive_control( "{$form_type}_form_logo_width", [
1970
- 'label' => esc_html__( 'width', EAEL_TEXTDOMAIN ),
1971
- 'type' => Controls_Manager::SLIDER,
1972
- 'size_units' => [
1973
  'px',
1974
  'rem',
1975
  '%',
1976
  ],
1977
- 'range' => [
1978
  'px' => [
1979
  'min' => 0,
1980
  'max' => 1000,
@@ -1990,26 +2100,26 @@ class Login_Register extends Widget_Base {
1990
  'max' => 100,
1991
  ],
1992
  ],
1993
- 'default' => [
1994
  'unit' => 'px',
1995
  'size' => 100,
1996
  ],
1997
- 'selectors' => [
1998
  $logo_selector => 'width: {{SIZE}}{{UNIT}};',
1999
  ],
2000
- 'condition' => [
2001
  "{$form_type}_form_logo_po_toggle" => 'yes',
2002
  ],
2003
  ] );
2004
  $this->add_responsive_control( "{$form_type}_form_logo_height", [
2005
- 'label' => esc_html__( 'height', EAEL_TEXTDOMAIN ),
2006
- 'type' => Controls_Manager::SLIDER,
2007
- 'size_units' => [
2008
  'px',
2009
  'rem',
2010
  '%',
2011
  ],
2012
- 'range' => [
2013
  'px' => [
2014
  'min' => 0,
2015
  'max' => 1000,
@@ -2025,19 +2135,19 @@ class Login_Register extends Widget_Base {
2025
  'max' => 100,
2026
  ],
2027
  ],
2028
- 'default' => [
2029
  'unit' => 'px',
2030
  'size' => 100,
2031
  ],
2032
- 'selectors' => [
2033
  $logo_selector => 'height: {{SIZE}}{{UNIT}};',
2034
  ],
2035
- 'condition' => [
2036
  "{$form_type}_form_logo_po_toggle" => 'yes',
2037
  ],
2038
  ] );
2039
  $this->add_responsive_control( "{$form_type}_form_logo_margin", [
2040
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2041
  'type' => Controls_Manager::DIMENSIONS,
2042
  'size_units' => [
2043
  'px',
@@ -2052,7 +2162,7 @@ class Login_Register extends Widget_Base {
2052
  ],
2053
  ] );
2054
  $this->add_responsive_control( "{$form_type}_form_logo_padding", [
2055
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2056
  'type' => Controls_Manager::DIMENSIONS,
2057
  'size_units' => [
2058
  'px',
@@ -2075,7 +2185,7 @@ class Login_Register extends Widget_Base {
2075
  ],
2076
  ] );
2077
  $this->add_control( "{$form_type}_form_logo_border_radius", [
2078
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2079
  'type' => Controls_Manager::DIMENSIONS,
2080
  'size_units' => [
2081
  'px',
@@ -2090,7 +2200,7 @@ class Login_Register extends Widget_Base {
2090
  ] );
2091
  $this->end_popover();
2092
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
2093
- 'label' => __( 'Logo Shadow', EAEL_TEXTDOMAIN ),
2094
  'name' => "{$form_type}_form_logo_shadow",
2095
  'selector' => $logo_selector,
2096
  'exclude' => [
@@ -2099,19 +2209,18 @@ class Login_Register extends Widget_Base {
2099
  ] );
2100
 
2101
 
2102
-
2103
  /*-- Title Typography --*/
2104
  $this->add_control( "{$form_type}_form_title_po_toggle", [
2105
- 'label' => __( 'Title', EAEL_TEXTDOMAIN ),
2106
  'type' => Controls_Manager::POPOVER_TOGGLE,
2107
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2108
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2109
  'return_value' => 'yes',
2110
  'separator' => 'before',
2111
  ] );
2112
  $this->start_popover();
2113
  $this->add_responsive_control( "{$form_type}_form_title_margin", [
2114
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2115
  'type' => Controls_Manager::DIMENSIONS,
2116
  'size_units' => [
2117
  'px',
@@ -2126,7 +2235,7 @@ class Login_Register extends Widget_Base {
2126
  ],
2127
  ] );
2128
  $this->add_responsive_control( "{$form_type}_form_title_padding", [
2129
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2130
  'type' => Controls_Manager::DIMENSIONS,
2131
  'size_units' => [
2132
  'px',
@@ -2141,7 +2250,7 @@ class Login_Register extends Widget_Base {
2141
  ],
2142
  ] );
2143
  $this->add_control( "{$form_type}_form_title_color", [
2144
- 'label' => __( 'Color', EAEL_TEXTDOMAIN ),
2145
  'type' => Controls_Manager::COLOR,
2146
  'selectors' => [
2147
  $title_selector => 'color: {{VALUE}};',
@@ -2151,7 +2260,7 @@ class Login_Register extends Widget_Base {
2151
  ],
2152
  ] );
2153
  $this->add_control( "{$form_type}_form_title_bg_color", [
2154
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2155
  'type' => Controls_Manager::COLOR,
2156
  'selectors' => [
2157
  $title_selector => 'background: {{VALUE}};',
@@ -2170,7 +2279,7 @@ class Login_Register extends Widget_Base {
2170
  ],
2171
  ] );
2172
  $this->add_control( "{$form_type}_form_title_border_radius", [
2173
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2174
  'type' => Controls_Manager::DIMENSIONS,
2175
  'size_units' => [
2176
  'px',
@@ -2187,22 +2296,22 @@ class Login_Register extends Widget_Base {
2187
  $this->end_popover();
2188
  $this->add_group_control( Group_Control_Typography::get_type(), [
2189
  'name' => "{$form_type}_form_title_typo",
2190
- 'label' => __( 'Title Typography', EAEL_TEXTDOMAIN ),
2191
  'selector' => $title_selector,
2192
  ] );
2193
 
2194
  /*Subtitle----*/
2195
  $this->add_control( "{$form_type}_form_subtitle_po_toggle", [
2196
- 'label' => __( 'Subtitle', EAEL_TEXTDOMAIN ),
2197
  'type' => Controls_Manager::POPOVER_TOGGLE,
2198
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2199
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2200
  'return_value' => 'yes',
2201
  'separator' => 'before',
2202
  ] );
2203
  $this->start_popover();
2204
  $this->add_control( "{$form_type}_form_subtitle_margin", [
2205
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2206
  'type' => Controls_Manager::DIMENSIONS,
2207
  'size_units' => [
2208
  'px',
@@ -2217,7 +2326,7 @@ class Login_Register extends Widget_Base {
2217
  ],
2218
  ] );
2219
  $this->add_control( "{$form_type}_form_subtitle_padding", [
2220
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2221
  'type' => Controls_Manager::DIMENSIONS,
2222
  'size_units' => [
2223
  'px',
@@ -2232,7 +2341,7 @@ class Login_Register extends Widget_Base {
2232
  ],
2233
  ] );
2234
  $this->add_control( "{$form_type}_form_subtitle_color", [
2235
- 'label' => __( 'Color', EAEL_TEXTDOMAIN ),
2236
  'type' => Controls_Manager::COLOR,
2237
  'selectors' => [
2238
  $subtitle_selector => 'color: {{VALUE}};',
@@ -2242,7 +2351,7 @@ class Login_Register extends Widget_Base {
2242
  ],
2243
  ] );
2244
  $this->add_control( "{$form_type}_form_subtitle_bg_color", [
2245
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2246
  'type' => Controls_Manager::COLOR,
2247
  'selectors' => [
2248
  $subtitle_selector => 'background: {{VALUE}};',
@@ -2261,7 +2370,7 @@ class Login_Register extends Widget_Base {
2261
  ],
2262
  ] );
2263
  $this->add_control( "{$form_type}_form_subtitle_border_radius", [
2264
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2265
  'type' => Controls_Manager::DIMENSIONS,
2266
  'size_units' => [
2267
  'px',
@@ -2278,7 +2387,7 @@ class Login_Register extends Widget_Base {
2278
  $this->end_popover();
2279
  $this->add_group_control( Group_Control_Typography::get_type(), [
2280
  'name' => "{$form_type}_form_subtitle_typo",
2281
- 'label' => __( 'Subtitle Typography', EAEL_TEXTDOMAIN ),
2282
  'selector' => $subtitle_selector,
2283
  ] );
2284
 
@@ -2287,20 +2396,24 @@ class Login_Register extends Widget_Base {
2287
 
2288
  protected function init_style_input_fields_controls() {
2289
  $this->start_controls_section( 'section_style_form_fields', [
2290
- 'label' => __( 'Form Fields', EAEL_TEXTDOMAIN ),
2291
  'tab' => Controls_Manager::TAB_STYLE,
2292
  ] );
2293
  $this->add_control( 'eael_form_field_po_toggle', [
2294
- 'label' => __( 'Spacing', EAEL_TEXTDOMAIN ),
2295
  'type' => Controls_Manager::POPOVER_TOGGLE,
2296
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2297
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2298
  'return_value' => 'yes',
2299
  ] );
2300
 
2301
  $this->start_popover();
 
 
 
 
2302
  $this->add_responsive_control( "eael_form_field_margin", [
2303
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2304
  'type' => Controls_Manager::DIMENSIONS,
2305
  'size_units' => [
2306
  'px',
@@ -2314,9 +2427,8 @@ class Login_Register extends Widget_Base {
2314
  'eael_form_field_po_toggle' => 'yes',
2315
  ],
2316
  ] );
2317
-
2318
  $this->add_responsive_control( "eael_form_field_padding", [
2319
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2320
  'type' => Controls_Manager::DIMENSIONS,
2321
  'size_units' => [
2322
  'px',
@@ -2330,25 +2442,60 @@ class Login_Register extends Widget_Base {
2330
  'eael_form_field_po_toggle' => 'yes',
2331
  ],
2332
  ] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2333
  $this->end_popover();
2334
  $this->add_group_control( Group_Control_Typography::get_type(), [
2335
  'name' => "eael_fields_typography",
2336
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control",
2337
  ] );
2338
  $this->add_responsive_control( "ph_align", [
2339
- 'label' => __( 'Text Alignment', EAEL_TEXTDOMAIN ),
2340
  'type' => Controls_Manager::CHOOSE,
2341
  'options' => [
2342
- 'left' => [
2343
- 'title' => __( 'Left', EAEL_TEXTDOMAIN ),
2344
  'icon' => 'eicon-h-align-left',
2345
  ],
2346
  'center' => [
2347
- 'title' => __( 'Center', EAEL_TEXTDOMAIN ),
2348
  'icon' => 'eicon-h-align-center',
2349
  ],
2350
- 'right' => [
2351
- 'title' => __( 'Right', EAEL_TEXTDOMAIN ),
2352
  'icon' => 'eicon-h-align-right',
2353
  ],
2354
  ],
@@ -2359,31 +2506,31 @@ class Login_Register extends Widget_Base {
2359
  ] );
2360
  $this->add_control( 'eael_form_label_colors_heading', [
2361
  'type' => Controls_Manager::HEADING,
2362
- 'label' => __( 'Colors & Border', EAEL_TEXTDOMAIN ),
2363
  'separator' => 'before',
2364
  ] );
2365
  $this->start_controls_tabs( "tabs_form_fields_style" );
2366
 
2367
  /*-----Form Input Fields NORMAL state------ */
2368
  $this->start_controls_tab( "tab_form_field_style_normal", [
2369
- 'label' => __( 'Normal', EAEL_TEXTDOMAIN ),
2370
  ] );
2371
  $this->add_control( 'eael_field_color', [
2372
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
2373
  'type' => Controls_Manager::COLOR,
2374
  'selectors' => [
2375
  "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control" => 'color: {{VALUE}};',
2376
  ],
2377
  ] );
2378
  $this->add_control( 'eael_field_placeholder_color', [
2379
- 'label' => __( 'Placeholder Color', EAEL_TEXTDOMAIN ),
2380
  'type' => Controls_Manager::COLOR,
2381
  'selectors' => [
2382
  "{{WRAPPER}} .lr-form-wrapper input.eael-lr-form-control::placeholder" => 'color: {{VALUE}};',
2383
  ],
2384
  ] );
2385
  $this->add_control( 'eael_field_bg_color', [
2386
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2387
  'type' => Controls_Manager::COLOR,
2388
  'default' => '#ffffff',
2389
  'selectors' => [
@@ -2396,7 +2543,7 @@ class Login_Register extends Widget_Base {
2396
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control",
2397
  ] );
2398
  $this->add_control( "eael_field_border_radius", [
2399
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2400
  'type' => Controls_Manager::DIMENSIONS,
2401
  'size_units' => [
2402
  'px',
@@ -2410,18 +2557,18 @@ class Login_Register extends Widget_Base {
2410
  $this->end_controls_tab();
2411
 
2412
  $this->start_controls_tab( "tab_form_field_style_active", [
2413
- 'label' => __( 'Focus', EAEL_TEXTDOMAIN ),
2414
  ] );
2415
 
2416
  $this->add_control( 'eael_field_placeholder_color_active', [
2417
- 'label' => __( 'Placeholder Color', EAEL_TEXTDOMAIN ),
2418
  'type' => Controls_Manager::COLOR,
2419
  'selectors' => [
2420
  "{{WRAPPER}} .lr-form-wrapper input.eael-lr-form-control:focus::placeholder" => 'color: {{VALUE}};',
2421
  ],
2422
  ] );
2423
  $this->add_control( 'eael_field_bg_color_active', [
2424
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2425
  'type' => Controls_Manager::COLOR,
2426
  'default' => '#ffffff',
2427
  'selectors' => [
@@ -2433,7 +2580,7 @@ class Login_Register extends Widget_Base {
2433
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control:focus",
2434
  ] );
2435
  $this->add_control( "eael_field_border_radius_focus", [
2436
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2437
  'type' => Controls_Manager::DIMENSIONS,
2438
  'size_units' => [
2439
  'px',
@@ -2450,20 +2597,20 @@ class Login_Register extends Widget_Base {
2450
 
2451
  protected function init_style_input_labels_controls() {
2452
  $this->start_controls_section( 'section_style_form_labels', [
2453
- 'label' => __( 'Form Labels', EAEL_TEXTDOMAIN ),
2454
  'tab' => Controls_Manager::TAB_STYLE,
2455
  ] );
2456
  $this->add_control( 'eael_form_label_po_toggle', [
2457
- 'label' => __( 'Spacing', EAEL_TEXTDOMAIN ),
2458
  'type' => Controls_Manager::POPOVER_TOGGLE,
2459
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2460
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2461
  'return_value' => 'yes',
2462
  ] );
2463
 
2464
  $this->start_popover();
2465
  $this->add_responsive_control( "eael_form_label_margin", [
2466
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2467
  'type' => Controls_Manager::DIMENSIONS,
2468
  'size_units' => [
2469
  'px',
@@ -2478,7 +2625,7 @@ class Login_Register extends Widget_Base {
2478
  ],
2479
  ] );
2480
  $this->add_responsive_control( "eael_form_label_padding", [
2481
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2482
  'type' => Controls_Manager::DIMENSIONS,
2483
  'size_units' => [
2484
  'px',
@@ -2499,16 +2646,16 @@ class Login_Register extends Widget_Base {
2499
  ] );
2500
 
2501
  $this->add_control( 'eael_form_label_c_po_toggle', [
2502
- 'label' => __( 'Colors', EAEL_TEXTDOMAIN ),
2503
  'type' => Controls_Manager::POPOVER_TOGGLE,
2504
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2505
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2506
  'return_value' => 'yes',
2507
  ] );
2508
 
2509
  $this->start_popover();
2510
  $this->add_control( 'eael_label_color', [
2511
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
2512
  'type' => Controls_Manager::COLOR,
2513
  'selectors' => [
2514
  "{{WRAPPER}} .lr-form-wrapper .eael-field-label" => 'color: {{VALUE}};',
@@ -2518,7 +2665,7 @@ class Login_Register extends Widget_Base {
2518
  ],
2519
  ] );
2520
  $this->add_control( 'eael_label_bg_color', [
2521
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2522
  'type' => Controls_Manager::COLOR,
2523
  'default' => '#ffffff',
2524
  'selectors' => [
@@ -2531,10 +2678,10 @@ class Login_Register extends Widget_Base {
2531
  $this->end_popover();
2532
 
2533
  $this->add_control( 'eael_form_label_b_po_toggle', [
2534
- 'label' => __( 'Border', EAEL_TEXTDOMAIN ),
2535
  'type' => Controls_Manager::POPOVER_TOGGLE,
2536
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2537
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2538
  'return_value' => 'yes',
2539
  ] );
2540
 
@@ -2547,7 +2694,7 @@ class Login_Register extends Widget_Base {
2547
  ],
2548
  ] );
2549
  $this->add_control( "eael_label_border_radius", [
2550
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2551
  'type' => Controls_Manager::DIMENSIONS,
2552
  'size_units' => [
2553
  'px',
@@ -2563,7 +2710,7 @@ class Login_Register extends Widget_Base {
2563
  $this->end_popover();
2564
 
2565
  $this->add_control( 'rmark_po_toggle', [
2566
- 'label' => __( 'Required Mark Style', EAEL_TEXTDOMAIN ),
2567
  'type' => Controls_Manager::POPOVER_TOGGLE,
2568
  'condition' => [
2569
  'show_labels' => 'yes',
@@ -2573,7 +2720,7 @@ class Login_Register extends Widget_Base {
2573
 
2574
  $this->start_popover();
2575
  $this->add_control( 'rmark_sign', [
2576
- 'label' => __( 'Mark Sign', EAEL_TEXTDOMAIN ),
2577
  'type' => Controls_Manager::TEXT,
2578
  'default' => '*',
2579
  'placeholder' => 'Enter * or (required) etc.',
@@ -2585,7 +2732,7 @@ class Login_Register extends Widget_Base {
2585
  ],
2586
  ] );
2587
  $this->add_control( "rmark_size", [
2588
- 'label' => esc_html__( 'Size', EAEL_TEXTDOMAIN ),
2589
  'type' => Controls_Manager::SLIDER,
2590
  'size_units' => [
2591
  'px',
@@ -2607,7 +2754,7 @@ class Login_Register extends Widget_Base {
2607
  ],
2608
  ] );
2609
  $this->add_control( "rmakr_color", [
2610
- 'label' => __( 'Color', EAEL_TEXTDOMAIN ),
2611
  'type' => Controls_Manager::COLOR,
2612
  'selectors' => [
2613
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group label.mark-required:after" => 'color: {{VALUE}};',
@@ -2618,7 +2765,7 @@ class Login_Register extends Widget_Base {
2618
  ] );
2619
 
2620
  $this->add_responsive_control( "rmark_valign", [
2621
- 'label' => esc_html__( 'Vertical Alignment', EAEL_TEXTDOMAIN ),
2622
  'type' => Controls_Manager::SLIDER,
2623
  'range' => [
2624
  'px' => [
@@ -2639,7 +2786,7 @@ class Login_Register extends Widget_Base {
2639
  ],
2640
  ] );
2641
  $this->add_responsive_control( "rmark_halign", [
2642
- 'label' => esc_html__( 'Horizontal Alignment', EAEL_TEXTDOMAIN ),
2643
  'type' => Controls_Manager::SLIDER,
2644
  'range' => [
2645
  'px' => [
@@ -2662,7 +2809,7 @@ class Login_Register extends Widget_Base {
2662
 
2663
  $this->end_popover();
2664
  $this->add_control( 'lpv_po_toggle', [
2665
- 'label' => __( 'Password Visibility Style', EAEL_TEXTDOMAIN ),
2666
  'type' => Controls_Manager::POPOVER_TOGGLE,
2667
  'condition' => [
2668
  'password_toggle' => 'yes',
@@ -2671,7 +2818,7 @@ class Login_Register extends Widget_Base {
2671
  $this->start_popover();
2672
 
2673
  $this->add_responsive_control( "lpv_size", [
2674
- 'label' => esc_html__( 'Icon Size', EAEL_TEXTDOMAIN ),
2675
  'type' => Controls_Manager::SLIDER,
2676
  'size_units' => [
2677
  'px',
@@ -2693,7 +2840,7 @@ class Login_Register extends Widget_Base {
2693
  ],
2694
  ] );
2695
  $this->add_control( "lvp_open_color", [
2696
- 'label' => __( 'Open Eye Color', EAEL_TEXTDOMAIN ),
2697
  'type' => Controls_Manager::COLOR,
2698
  'selectors' => [
2699
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group .dashicons-visibility" => 'color: {{VALUE}};',
@@ -2703,7 +2850,7 @@ class Login_Register extends Widget_Base {
2703
  ],
2704
  ] );
2705
  $this->add_control( "lvp_close_color", [
2706
- 'label' => __( 'Close Eye Color', EAEL_TEXTDOMAIN ),
2707
  'type' => Controls_Manager::COLOR,
2708
  'selectors' => [
2709
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group .dashicons-hidden" => 'color: {{VALUE}};',
@@ -2714,7 +2861,7 @@ class Login_Register extends Widget_Base {
2714
  ] );
2715
 
2716
  $this->add_responsive_control( "lpv_valign", [
2717
- 'label' => esc_html__( 'Vertical Alignment', EAEL_TEXTDOMAIN ),
2718
  'type' => Controls_Manager::SLIDER,
2719
  'range' => [
2720
  'px' => [
@@ -2735,7 +2882,7 @@ class Login_Register extends Widget_Base {
2735
  ],
2736
  ] );
2737
  $this->add_responsive_control( "lpv_halign", [
2738
- 'label' => esc_html__( 'Horizontal Alignment', EAEL_TEXTDOMAIN ),
2739
  'type' => Controls_Manager::SLIDER,
2740
  'range' => [
2741
  'px' => [
@@ -2777,6 +2924,14 @@ class Login_Register extends Widget_Base {
2777
  $this->_init_link_style( 'register' );
2778
  }
2779
 
 
 
 
 
 
 
 
 
2780
  /**
2781
  * Print style controls for a specific type of button.
2782
  *
@@ -2784,20 +2939,20 @@ class Login_Register extends Widget_Base {
2784
  */
2785
  protected function _init_button_style( $button_type = 'login' ) {
2786
  $this->start_controls_section( "section_style_{$button_type}_btn", [
2787
- 'label' => sprintf( __( '%s Button', EAEL_TEXTDOMAIN ), ucfirst( $button_type ) ),
2788
  'tab' => Controls_Manager::TAB_STYLE,
2789
  'conditions' => $this->get_form_controls_display_condition( $button_type ),
2790
  ] );
2791
  $this->add_control( "{$button_type}_btn_pot", [
2792
- 'label' => __( 'Spacing', EAEL_TEXTDOMAIN ),
2793
  'type' => Controls_Manager::POPOVER_TOGGLE,
2794
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
2795
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
2796
  'return_value' => 'yes',
2797
  ] );
2798
  $this->start_popover();
2799
  $this->add_responsive_control( "{$button_type}_btn_margin", [
2800
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
2801
  'type' => Controls_Manager::DIMENSIONS,
2802
  'size_units' => [
2803
  'px',
@@ -2812,7 +2967,7 @@ class Login_Register extends Widget_Base {
2812
  ],
2813
  ] );
2814
  $this->add_responsive_control( "{$button_type}_btn_padding", [
2815
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
2816
  'type' => Controls_Manager::DIMENSIONS,
2817
  'size_units' => [
2818
  'px',
@@ -2832,11 +2987,11 @@ class Login_Register extends Widget_Base {
2832
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn",
2833
  ] );
2834
  $this->add_responsive_control( "{$button_type}_btn_d_type", [
2835
- 'label' => __( 'Display as', EAEL_TEXTDOMAIN ),
2836
  'type' => Controls_Manager::SELECT,
2837
  'options' => [
2838
- 'row' => __( 'Inline', EAEL_TEXTDOMAIN ),
2839
- 'column' => __( 'Block', EAEL_TEXTDOMAIN ),
2840
  ],
2841
  'default' => 'row',
2842
  'selectors' => [
@@ -2847,15 +3002,15 @@ class Login_Register extends Widget_Base {
2847
 
2848
 
2849
  $this->add_responsive_control( "{$button_type}_btn_jc", [
2850
- 'label' => __( 'Justify Content', EAEL_TEXTDOMAIN ),
2851
  'type' => Controls_Manager::SELECT,
2852
  'options' => [
2853
- 'flex-start' => __( 'Start', EAEL_TEXTDOMAIN ),
2854
- 'flex-end' => __( 'End', EAEL_TEXTDOMAIN ),
2855
- 'center' => __( 'Center', EAEL_TEXTDOMAIN ),
2856
- 'space-between' => __( 'Space Between', EAEL_TEXTDOMAIN ),
2857
- 'space-around' => __( 'Space Around', EAEL_TEXTDOMAIN ),
2858
- 'space-evenly' => __( 'Space Evenly', EAEL_TEXTDOMAIN ),
2859
  ],
2860
  'default' => 'space-between',
2861
  'condition' => [
@@ -2866,19 +3021,19 @@ class Login_Register extends Widget_Base {
2866
  ],
2867
  ] );
2868
  $this->add_responsive_control( "{$button_type}_btn_align", [
2869
- 'label' => __( 'Alignment', EAEL_TEXTDOMAIN ),
2870
  'type' => Controls_Manager::CHOOSE,
2871
  'options' => [
2872
  'mr-auto' => [
2873
- 'title' => __( 'Left', EAEL_TEXTDOMAIN ),
2874
  'icon' => 'eicon-h-align-left',
2875
  ],
2876
  'ml-auto mr-auto' => [
2877
- 'title' => __( 'Center', EAEL_TEXTDOMAIN ),
2878
  'icon' => 'eicon-h-align-center',
2879
  ],
2880
  'ml-auto' => [
2881
- 'title' => __( 'Right', EAEL_TEXTDOMAIN ),
2882
  'icon' => 'eicon-h-align-right',
2883
  ],
2884
  ],
@@ -2889,17 +3044,17 @@ class Login_Register extends Widget_Base {
2889
  ] );
2890
  $this->add_control( "tabs_{$button_type}_btn_colors_heading", [
2891
  'type' => Controls_Manager::HEADING,
2892
- 'label' => __( 'Colors & Border', EAEL_TEXTDOMAIN ),
2893
  'separator' => 'before',
2894
  ] );
2895
 
2896
  $this->start_controls_tabs( "tabs_{$button_type}_btn_style" );
2897
  /*-----Login Button NORMAL state------ */
2898
  $this->start_controls_tab( "tab_{$button_type}_btn_normal", [
2899
- 'label' => __( 'Normal', EAEL_TEXTDOMAIN ),
2900
  ] );
2901
  $this->add_control( "{$button_type}_btn_color", [
2902
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
2903
  'type' => Controls_Manager::COLOR,
2904
  'selectors' => [
2905
  "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn" => 'color: {{VALUE}};',
@@ -2907,7 +3062,7 @@ class Login_Register extends Widget_Base {
2907
  ] );
2908
  $this->add_group_control( Group_Control_Background::get_type(), [
2909
  'name' => "{$button_type}_btn_bg_color",
2910
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2911
  'types' => [
2912
  'classic',
2913
  'gradient',
@@ -2919,7 +3074,7 @@ class Login_Register extends Widget_Base {
2919
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn",
2920
  ] );
2921
  $this->add_control( "{$button_type}_btn_border_radius", [
2922
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2923
  'type' => Controls_Manager::DIMENSIONS,
2924
  'size_units' => [
2925
  'px',
@@ -2933,10 +3088,10 @@ class Login_Register extends Widget_Base {
2933
 
2934
  /*-----Login Button HOVER state------ */
2935
  $this->start_controls_tab( "tab_{$button_type}_button_hover", [
2936
- 'label' => __( 'Hover', EAEL_TEXTDOMAIN ),
2937
  ] );
2938
  $this->add_control( "{$button_type}_button_color_hover", [
2939
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
2940
  'type' => Controls_Manager::COLOR,
2941
  'selectors' => [
2942
  "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn:hover" => 'color: {{VALUE}};',
@@ -2944,7 +3099,7 @@ class Login_Register extends Widget_Base {
2944
  ] );
2945
  $this->add_group_control( Group_Control_Background::get_type(), [
2946
  'name' => "{$button_type}_btn_bg_color_hover",
2947
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
2948
  'types' => [
2949
  'classic',
2950
  'gradient',
@@ -2956,7 +3111,7 @@ class Login_Register extends Widget_Base {
2956
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn:hover",
2957
  ] );
2958
  $this->add_control( "{$button_type}_btn_border_radius_hover", [
2959
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
2960
  'type' => Controls_Manager::DIMENSIONS,
2961
  'size_units' => [
2962
  'px',
@@ -2971,7 +3126,7 @@ class Login_Register extends Widget_Base {
2971
  /*-----ends Button tabs--------*/
2972
 
2973
  $this->add_responsive_control( "{$button_type}_btn_width", [
2974
- 'label' => esc_html__( 'Button width', EAEL_TEXTDOMAIN ),
2975
  'type' => Controls_Manager::SLIDER,
2976
  'size_units' => [
2977
  'px',
@@ -2994,7 +3149,7 @@ class Login_Register extends Widget_Base {
2994
  'separator' => 'before',
2995
  ] );
2996
  $this->add_responsive_control( "{$button_type}_btn_height", [
2997
- 'label' => esc_html__( 'Button Height', EAEL_TEXTDOMAIN ),
2998
  'type' => Controls_Manager::SLIDER,
2999
  'size_units' => [
3000
  'px',
@@ -3018,15 +3173,65 @@ class Login_Register extends Widget_Base {
3018
  $this->end_controls_section();
3019
  }
3020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3021
  /**
3022
  * Print style controls for a specific type of link on register or login form.
3023
  *
3024
  * @param string $form_type the type of form where the link is being shown. accepts login or register.
3025
  */
3026
  protected function _init_link_style( $form_type = 'login' ) {
3027
- $form_name = 'login' === $form_type ? __( 'Register', EAEL_TEXTDOMAIN ) : __( 'Login', EAEL_TEXTDOMAIN );
3028
  $this->start_controls_section( "section_style_{$form_type}_link", [
3029
- 'label' => sprintf( __( '%s Link', EAEL_TEXTDOMAIN ), ucfirst( $form_name ) ),
3030
  'tab' => Controls_Manager::TAB_STYLE,
3031
  'condition' => [
3032
  "show_{$form_type}_link" => 'yes',
@@ -3034,19 +3239,19 @@ class Login_Register extends Widget_Base {
3034
  ] );
3035
  $this->add_control( "{$form_type}_link_style_notice", [
3036
  'type' => Controls_Manager::RAW_HTML,
3037
- 'raw' => sprintf( __( 'Here you can style the %s link displayed on the %s Form', EAEL_TEXTDOMAIN ), $form_name, ucfirst( $form_type ) ),
3038
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
3039
  ] );
3040
  $this->add_control( "{$form_type}_link_pot", [
3041
- 'label' => __( 'Spacing', EAEL_TEXTDOMAIN ),
3042
  'type' => Controls_Manager::POPOVER_TOGGLE,
3043
- 'label_off' => __( 'Default', EAEL_TEXTDOMAIN ),
3044
- 'label_on' => __( 'Custom', EAEL_TEXTDOMAIN ),
3045
  'return_value' => 'yes',
3046
  ] );
3047
  $this->start_popover();
3048
  $this->add_responsive_control( "{$form_type}_link_margin", [
3049
- 'label' => __( 'Margin', EAEL_TEXTDOMAIN ),
3050
  'type' => Controls_Manager::DIMENSIONS,
3051
  'size_units' => [
3052
  'px',
@@ -3061,7 +3266,7 @@ class Login_Register extends Widget_Base {
3061
  ],
3062
  ] );
3063
  $this->add_responsive_control( "{$form_type}_link_padding", [
3064
- 'label' => __( 'Padding', EAEL_TEXTDOMAIN ),
3065
  'type' => Controls_Manager::DIMENSIONS,
3066
  'size_units' => [
3067
  'px',
@@ -3082,11 +3287,11 @@ class Login_Register extends Widget_Base {
3082
  ] );
3083
 
3084
  $this->add_responsive_control( "{$form_type}_link_d_type", [
3085
- 'label' => __( 'Display as', EAEL_TEXTDOMAIN ),
3086
  'type' => Controls_Manager::SELECT,
3087
  'options' => [
3088
- 'row' => __( 'Inline', EAEL_TEXTDOMAIN ),
3089
- 'column' => __( 'Block', EAEL_TEXTDOMAIN ),
3090
  ],
3091
  'default' => 'row',
3092
  'selectors' => [
@@ -3096,15 +3301,15 @@ class Login_Register extends Widget_Base {
3096
 
3097
 
3098
  $this->add_responsive_control( "{$form_type}_link_jc", [
3099
- 'label' => __( 'Justify Content', EAEL_TEXTDOMAIN ),
3100
  'type' => Controls_Manager::SELECT,
3101
  'options' => [
3102
- 'flex-start' => __( 'Start', EAEL_TEXTDOMAIN ),
3103
- 'flex-end' => __( 'End', EAEL_TEXTDOMAIN ),
3104
- 'center' => __( 'Center', EAEL_TEXTDOMAIN ),
3105
- 'space-between' => __( 'Space Between', EAEL_TEXTDOMAIN ),
3106
- 'space-around' => __( 'Space Around', EAEL_TEXTDOMAIN ),
3107
- 'space-evenly' => __( 'Space Evenly', EAEL_TEXTDOMAIN ),
3108
  ],
3109
  'default' => 'center',
3110
  'condition' => [
@@ -3116,15 +3321,15 @@ class Login_Register extends Widget_Base {
3116
  ] );
3117
 
3118
  $this->add_responsive_control( "{$form_type}_link_ai", [
3119
- 'label' => __( 'Align Items', EAEL_TEXTDOMAIN ),
3120
  'type' => Controls_Manager::SELECT,
3121
  'options' => [
3122
- 'flex-start' => __( 'Start', EAEL_TEXTDOMAIN ),
3123
- 'flex-end' => __( 'End', EAEL_TEXTDOMAIN ),
3124
- 'center' => __( 'Center', EAEL_TEXTDOMAIN ),
3125
- 'stretch' => __( 'Stretch', EAEL_TEXTDOMAIN ),
3126
- 'baseline' => __( 'Baseline', EAEL_TEXTDOMAIN ),
3127
- 'space-evenly' => __( 'Space Evenly', EAEL_TEXTDOMAIN ),
3128
  ],
3129
  'default' => 'center',
3130
  'condition' => [
@@ -3136,19 +3341,19 @@ class Login_Register extends Widget_Base {
3136
  ] );
3137
 
3138
  $this->add_responsive_control( "{$form_type}_link_align", [
3139
- 'label' => __( 'Alignment', EAEL_TEXTDOMAIN ),
3140
  'type' => Controls_Manager::CHOOSE,
3141
  'options' => [
3142
  'mr-auto' => [
3143
- 'title' => __( 'Left', EAEL_TEXTDOMAIN ),
3144
  'icon' => 'eicon-h-align-left',
3145
  ],
3146
  'ml-auto mr-auto' => [
3147
- 'title' => __( 'Center', EAEL_TEXTDOMAIN ),
3148
  'icon' => 'eicon-h-align-center',
3149
  ],
3150
  'ml-auto' => [
3151
- 'title' => __( 'Right', EAEL_TEXTDOMAIN ),
3152
  'icon' => 'eicon-h-align-right',
3153
  ],
3154
  ],
@@ -3160,17 +3365,17 @@ class Login_Register extends Widget_Base {
3160
 
3161
  $this->add_control( "tabs_{$form_type}_link_colors_heading", [
3162
  'type' => Controls_Manager::HEADING,
3163
- 'label' => __( 'Colors & Border', EAEL_TEXTDOMAIN ),
3164
  'separator' => 'before',
3165
  ] );
3166
 
3167
  $this->start_controls_tabs( "tabs_{$form_type}_link_style" );
3168
  /*----- Link NORMAL state------ */
3169
  $this->start_controls_tab( "tab_{$form_type}_link_normal", [
3170
- 'label' => __( 'Normal', EAEL_TEXTDOMAIN ),
3171
  ] );
3172
  $this->add_control( "{$form_type}_link_color", [
3173
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
3174
  'type' => Controls_Manager::COLOR,
3175
  'selectors' => [
3176
  "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link" => 'color: {{VALUE}};',
@@ -3178,7 +3383,7 @@ class Login_Register extends Widget_Base {
3178
  ] );
3179
  $this->add_group_control( Group_Control_Background::get_type(), [
3180
  'name' => "{$form_type}_link_bg_color",
3181
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
3182
  'types' => [
3183
  'classic',
3184
  'gradient',
@@ -3190,7 +3395,7 @@ class Login_Register extends Widget_Base {
3190
  'selector' => "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link",
3191
  ] );
3192
  $this->add_control( "{$form_type}_link_border_radius", [
3193
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
3194
  'type' => Controls_Manager::DIMENSIONS,
3195
  'size_units' => [
3196
  'px',
@@ -3204,10 +3409,10 @@ class Login_Register extends Widget_Base {
3204
 
3205
  /*-----Link HOVER state------ */
3206
  $this->start_controls_tab( "tab_{$form_type}_link_hover", [
3207
- 'label' => __( 'Hover', EAEL_TEXTDOMAIN ),
3208
  ] );
3209
  $this->add_control( "{$form_type}_link_color_hover", [
3210
- 'label' => __( 'Text Color', EAEL_TEXTDOMAIN ),
3211
  'type' => Controls_Manager::COLOR,
3212
  'selectors' => [
3213
  "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link:hover" => 'color: {{VALUE}};',
@@ -3215,7 +3420,7 @@ class Login_Register extends Widget_Base {
3215
  ] );
3216
  $this->add_group_control( Group_Control_Background::get_type(), [
3217
  'name' => "{$form_type}_link_bg_color_hover",
3218
- 'label' => __( 'Background Color', EAEL_TEXTDOMAIN ),
3219
  'types' => [
3220
  'classic',
3221
  'gradient',
@@ -3227,7 +3432,7 @@ class Login_Register extends Widget_Base {
3227
  'selector' => "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link:hover",
3228
  ] );
3229
  $this->add_control( "{$form_type}_link_border_radius_hover", [
3230
- 'label' => __( 'Border Radius', EAEL_TEXTDOMAIN ),
3231
  'type' => Controls_Manager::DIMENSIONS,
3232
  'size_units' => [
3233
  'px',
@@ -3241,7 +3446,7 @@ class Login_Register extends Widget_Base {
3241
  $this->end_controls_tabs();
3242
  /*-----ends Link tabs--------*/
3243
  $this->add_responsive_control( "{$form_type}_link_wrap_width", [
3244
- 'label' => esc_html__( 'Link Container width', EAEL_TEXTDOMAIN ),
3245
  'type' => Controls_Manager::SLIDER,
3246
  'size_units' => [
3247
  'px',
@@ -3264,7 +3469,7 @@ class Login_Register extends Widget_Base {
3264
  'separator' => 'before',
3265
  ] );
3266
  $this->add_responsive_control( "{$form_type}_link_width", [
3267
- 'label' => esc_html__( 'Link width', EAEL_TEXTDOMAIN ),
3268
  'type' => Controls_Manager::SLIDER,
3269
  'size_units' => [
3270
  'px',
@@ -3287,7 +3492,7 @@ class Login_Register extends Widget_Base {
3287
  ] );
3288
 
3289
  $this->add_responsive_control( "{$form_type}_link_height", [
3290
- 'label' => esc_html__( 'Link Height', EAEL_TEXTDOMAIN ),
3291
  'type' => Controls_Manager::SLIDER,
3292
  'size_units' => [
3293
  'px',
@@ -3366,7 +3571,7 @@ class Login_Register extends Widget_Base {
3366
  $this->form_logo = Group_Control_Image_Size::get_attachment_image_src( $form_logo_id, 'lr_form_logo', $this->ds );
3367
  $this->form_logo_pos = ! empty( $this->ds['lr_form_logo_position'] ) ? $this->ds['lr_form_logo_position'] : 'inline';
3368
  ?>
3369
- <div class="eael-login-registration-wrapper" data-is-ajax="<?php echo esc_attr( $this->get_settings_for_display( 'enable_ajax' ) ); ?>" data-widget-id="<?php echo esc_attr( $this->get_id() ); ?>" data-recaptcha-sitekey="<?php echo esc_attr(get_option('eael_recaptcha_sitekey')); ?>">
3370
  <?php
3371
  $this->print_login_form();
3372
  $this->print_register_form();
@@ -3374,7 +3579,6 @@ class Login_Register extends Widget_Base {
3374
  </div>
3375
 
3376
  <?php
3377
- $this->print_recaptcha_script();
3378
  }
3379
 
3380
  protected function print_login_form() {
@@ -3384,7 +3588,7 @@ class Login_Register extends Widget_Base {
3384
  //Reg link related
3385
  $reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
3386
  $show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
3387
- $reg_link_text = ! empty( $this->get_settings( 'registration_link_text' ) ) ? $this->get_settings( 'registration_link_text' ) : __( 'Register', EAEL_TEXTDOMAIN );
3388
  $parts = explode( "\n", $reg_link_text );
3389
  $reg_link_text = array_pop( $parts );
3390
  $reg_message = array_shift( $parts );
@@ -3411,8 +3615,8 @@ class Login_Register extends Widget_Base {
3411
  $display_label = ( 'none' !== $label_type );
3412
 
3413
  //Default label n placeholder
3414
- $u_label = $u_ph = __( 'Username or Email Address', EAEL_TEXTDOMAIN );
3415
- $p_label = $p_ph = __( 'Password', EAEL_TEXTDOMAIN );
3416
  // custom label n placeholder
3417
  if ( $is_custom_label ) {
3418
  $u_label = isset( $this->ds['login_user_label'] ) ? $this->ds['login_user_label'] : '';
@@ -3429,7 +3633,7 @@ class Login_Register extends Widget_Base {
3429
 
3430
  //Loss password
3431
  $show_lp = ( ! empty( $this->ds['show_lost_password'] ) && 'yes' === $this->ds['show_lost_password'] );
3432
- $lp_text = ! empty( $this->ds['lost_password_text'] ) ? $this->ds['lost_password_text'] : __( 'Forgot password?', EAEL_TEXTDOMAIN );
3433
  $lp_link = sprintf( '<a href="%s">%s</a>', esc_attr( wp_lostpassword_url() ), $lp_text );
3434
  if ( ! empty( $this->ds['lost_password_link_type'] ) && 'custom' === $this->ds['lost_password_link_type'] ) {
3435
  $lp_url = ! empty( $this->ds['lost_password_url']['url'] ) ? $this->ds['lost_password_url']['url'] : wp_lostpassword_url();
@@ -3442,14 +3646,17 @@ class Login_Register extends Widget_Base {
3442
  $btn_align = isset( $this->ds['login_btn_align'] ) ? $this->ds['login_btn_align'] : '';
3443
  // btn alignment
3444
  $link_align = isset( $this->ds['login_link_align'] ) ? $this->ds['login_link_align'] : '';
 
 
 
3445
  ?>
3446
- <section id="eael-login-form-wrapper" class="<?php echo esc_attr( $default_hide_class ); ?>">
3447
  <div class="eael-login-form-wrapper eael-lr-form-wrapper style-2">
3448
  <?php
3449
  if ( $show_logout_link && is_user_logged_in() && ! $this->in_editor ) {
3450
  /* translators: %s user display name */
3451
- $logged_in_msg = sprintf( __( 'You are already logged in as %s. ', EAEL_TEXTDOMAIN ), wp_get_current_user()->display_name );
3452
- printf( '%1$s (<a href="%2$s">%3$s</a>)', $logged_in_msg, esc_url( wp_logout_url() ), __( 'Logout', EAEL_TEXTDOMAIN ) );
3453
  } else {
3454
  if ( 'left' === $this->form_illustration_pos ) {
3455
  $this->print_form_illustration();
@@ -3489,7 +3696,7 @@ class Login_Register extends Widget_Base {
3489
  <?php if ( $show_rememberme ) { ?>
3490
  <p class="forget-menot">
3491
  <input name="eael-rememberme" type="checkbox" id="rememberme" value="forever">
3492
- <label for="rememberme" class="eael-checkbox-label check-rememberme"><?php esc_html_e( 'Remember Me', EAEL_TEXTDOMAIN ); ?></label>
3493
  </p>
3494
  <?php }
3495
  if ( $show_lp ) {
@@ -3498,12 +3705,12 @@ class Login_Register extends Widget_Base {
3498
 
3499
  </div>
3500
 
3501
- <?php
3502
  do_action( 'eael/login-register/before-recaptcha', $this );
3503
- $this->print_recaptcha_node( 'login' );
3504
  do_action( 'eael/login-register/after-recaptcha', $this );
3505
  do_action( 'eael/login-register/before-login-footer', $this );
3506
- ?>
3507
 
3508
 
3509
  <div class="eael-lr-footer">
@@ -3515,8 +3722,8 @@ class Login_Register extends Widget_Base {
3515
  <?php } ?>
3516
 
3517
  </div>
3518
- <?php do_action( 'eael/login-register/after-login-footer', $this );
3519
- ?>
3520
  <div class="eael-form-validation-container">
3521
  <?php $this->print_login_validation_errors(); ?>
3522
  </div>
@@ -3557,13 +3764,13 @@ class Login_Register extends Widget_Base {
3557
  $last_name_exists = 0;
3558
  $website_exists = 0;
3559
  $f_labels = [
3560
- 'email' => __( 'Email', EAEL_TEXTDOMAIN ),
3561
- 'password' => __( 'Password', EAEL_TEXTDOMAIN ),
3562
- 'confirm_password' => __( 'Confirm Password', EAEL_TEXTDOMAIN ),
3563
- 'user_name' => __( 'Username', EAEL_TEXTDOMAIN ),
3564
- 'first_name' => __( 'First Name', EAEL_TEXTDOMAIN ),
3565
- 'last_name' => __( 'Last Name', EAEL_TEXTDOMAIN ),
3566
- 'website' => __( 'Website', EAEL_TEXTDOMAIN ),
3567
  ];
3568
  $repeated_f_labels = [];
3569
 
@@ -3571,7 +3778,7 @@ class Login_Register extends Widget_Base {
3571
  //Login link related
3572
  $lgn_link_action = ! empty( $this->ds['login_link_action'] ) ? $this->ds['login_link_action'] : 'form';
3573
  $show_lgn_link = 'yes' === $this->get_settings( 'show_login_link' );
3574
- $lgn_link_text = ! empty( $this->get_settings( 'login_link_text' ) ) ? $this->get_settings( 'login_link_text' ) : __( 'Login', EAEL_TEXTDOMAIN );
3575
  $btn_text = ! empty( $this->ds['reg_button_text'] ) ? $this->ds['reg_button_text'] : '';
3576
 
3577
  $parts = explode( "\n", $lgn_link_text );
@@ -3595,9 +3802,12 @@ class Login_Register extends Widget_Base {
3595
  // btn alignment
3596
  $btn_align = isset( $this->ds['register_btn_align'] ) ? $this->ds['register_btn_align'] : '';
3597
  $link_align = isset( $this->ds['register_link_align'] ) ? $this->ds['register_link_align'] : '';
 
 
 
3598
  ob_start();
3599
  ?>
3600
- <section id="eael-register-form-wrapper" class="<?php echo esc_attr( $default_hide_class ); ?>">
3601
  <div class="eael-register-form-wrapper eael-lr-form-wrapper style-2">
3602
  <?php if ( 'left' === $this->form_illustration_pos ) {
3603
  $this->print_form_illustration();
@@ -3778,7 +3988,7 @@ class Login_Register extends Widget_Base {
3778
  <div class="lr-form-header header-<?php echo esc_attr( $this->form_logo_pos ); ?>">
3779
  <?php if ( ! empty( $this->form_logo ) ) { ?>
3780
  <div class="form-logo">
3781
- <img src="<?php echo esc_attr( esc_url( $this->form_logo ) ); ?>" alt="<?php esc_attr_e( 'Form Logo Image', EAEL_TEXTDOMAIN ); ?>">
3782
  </div>
3783
  <?php } ?>
3784
 
@@ -3870,30 +4080,6 @@ class Login_Register extends Widget_Base {
3870
  }
3871
  }
3872
 
3873
- protected function print_recaptcha_script() {
3874
- return;
3875
- if ( ! empty( $this->recaptcha_sitekey ) ) { ?>
3876
- <script type="text/javascript">
3877
- function onloadLRcb() {
3878
- var loginRecaptchaNode = document.getElementById('login-recaptcha-node-<?php echo $this->get_id(); ?>');
3879
- var registerRecaptchaNode = document.getElementById('register-recaptcha-node-<?php echo $this->get_id(); ?>');
3880
-
3881
- if (loginRecaptchaNode) {
3882
- grecaptcha.render(loginRecaptchaNode, {
3883
- 'sitekey': '<?php echo esc_js( $this->recaptcha_sitekey ); ?>',
3884
- });
3885
- }
3886
- if (registerRecaptchaNode) {
3887
- grecaptcha.render(registerRecaptchaNode, {
3888
- 'sitekey': '<?php echo esc_js( $this->recaptcha_sitekey ); ?>',
3889
- });
3890
- }
3891
- }
3892
- </script>
3893
- <?php
3894
- }
3895
- }
3896
-
3897
  protected function print_recaptcha_node( $form_type = 'login' ) {
3898
  if ( 'yes' === $this->get_settings_for_display( "enable_{$form_type}_recaptcha" ) ) {
3899
  $id = "{$form_type}-recaptcha-node-" . $this->get_id();
@@ -3908,7 +4094,7 @@ class Login_Register extends Widget_Base {
3908
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
3909
  <?php
3910
  /* translators: %s: Error fields */
3911
- printf( __( 'Error! you seem to have added %s field in the form more than once.', EAEL_TEXTDOMAIN ), $error_fields );
3912
  ?>
3913
  </p>
3914
  <?php
@@ -3924,7 +4110,7 @@ class Login_Register extends Widget_Base {
3924
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
3925
  <?php
3926
  /* translators: %s: Error String */
3927
- printf( __( 'Error! It is required to use %s field.', EAEL_TEXTDOMAIN ), '<strong>Email</strong>' );
3928
  ?>
3929
  </p>
3930
  <?php
@@ -3948,7 +4134,7 @@ class Login_Register extends Widget_Base {
3948
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
3949
  <?php
3950
  /* translators: %s: Error String */
3951
- printf( __( 'Error! It is required to use %s field with %s Field.', EAEL_TEXTDOMAIN ), '<strong>Password</strong>', '<strong>Password Confirmation</strong>' );
3952
  ?>
3953
  </p>
3954
  <?php
@@ -3975,8 +4161,8 @@ class Login_Register extends Widget_Base {
3975
  ?>
3976
  <div class="eael-form-msg invalid">
3977
  <?php
3978
- if ( ! empty( $this->ds['register_error_msg'] ) ) {
3979
- printf( '<p>%s</p>', esc_html( $this->ds['register_error_msg'] ) );
3980
  }
3981
  ?>
3982
  <ol>
@@ -3994,7 +4180,7 @@ class Login_Register extends Widget_Base {
3994
  protected function print_registration_success_message( $success ) {
3995
 
3996
  if ( $success ) {
3997
- $message = '<p class="eael-form-msg valid">' . esc_html( $this->get_settings_for_display( 'register_success_msg' ) ) . '</p>';
3998
  echo apply_filters( 'eael/login-register/registration-success-msg', $message, $success );
3999
 
4000
  delete_transient( 'eael_register_success_' . $this->get_id() );
@@ -4012,7 +4198,7 @@ class Login_Register extends Widget_Base {
4012
  *
4013
  * @return string
4014
  */
4015
- protected function apply_dim( $css_property ) {
4016
  return "{$css_property}: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};";
4017
  }
4018
 
84
  */
85
  protected $form_logo_pos;
86
  /**
87
+ * Google reCAPTCHA Site key
88
  * @var string|false
89
  */
90
  protected $recaptcha_sitekey;
103
  }
104
 
105
  public function get_script_depends() {
106
+ $scripts = parent::get_script_depends();
107
+ $scripts[] = 'eael-recaptcha';
108
+
109
+ return apply_filters('eael/login-register/scripts', $scripts);
110
  }
111
 
112
 
121
  * @inheritDoc
122
  */
123
  public function get_title() {
124
+ return esc_html__( 'Login | Register Form', 'essential-addons-for-elementor-lite' );
125
  }
126
 
127
  /**
175
  */
176
  protected function get_form_field_types() {
177
  return apply_filters( 'eael/registration-form-fields', [
178
+ 'user_name' => __( 'Username', 'essential-addons-for-elementor-lite' ),
179
+ 'email' => __( 'Email', 'essential-addons-for-elementor-lite' ),
180
+ 'password' => __( 'Password', 'essential-addons-for-elementor-lite' ),
181
+ 'confirm_pass' => __( 'Confirm Password', 'essential-addons-for-elementor-lite' ),
182
+ 'first_name' => __( 'First Name', 'essential-addons-for-elementor-lite' ),
183
+ 'last_name' => __( 'Last Name', 'essential-addons-for-elementor-lite' ),
184
+ 'website' => __( 'Website', 'essential-addons-for-elementor-lite' ),
185
  ] );
186
  }
187
 
196
  // Login Form Related---
197
  $this->init_content_login_fields_controls();
198
  $this->init_content_login_options_controls();
199
+ do_action( 'eael/login-register/after-login-controls-section', $this );
200
  // Registration For Related---
201
  $this->init_content_register_fields_controls();
202
  $this->init_content_register_options_controls();
204
  $this->init_content_register_admin_email_controls();
205
  //Terms & Conditions
206
  $this->init_content_terms_controls();
207
+ // Error Messages
208
+ $this->init_content_validation_messages_controls();
209
  do_action( 'eael/login-register/after-content-controls', $this );
210
 
211
  /*----Style Tab----*/
219
  $this->init_style_register_button_controls();
220
  $this->init_style_login_link_controls();
221
  $this->init_style_register_link_controls();
222
+ $this->init_style_login_recaptcha_controls();
223
+ $this->init_style_register_recaptcha_controls();
224
  do_action( 'eael/login-register/after-style-controls', $this );
225
 
226
  }
230
  */
231
  protected function init_content_general_controls() {
232
  $this->start_controls_section( 'section_content_general', [
233
+ 'label' => __( 'General', 'essential-addons-for-elementor-lite' ),
234
  ] );
235
  $this->add_control( 'default_form_type_notice', [
236
  'type' => Controls_Manager::RAW_HTML,
237
+ 'raw' => __( 'Choose the type of form you want to show by default. Note: you can show both forms in a single page even if you select only login or registration from below.', 'essential-addons-for-elementor-lite' ),
238
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
239
  ] );
240
  $this->add_control( 'default_form_type', [
241
+ 'label' => __( 'Default Form Type', 'essential-addons-for-elementor-lite' ),
242
  'type' => Controls_Manager::SELECT,
243
  'options' => [
244
+ 'login' => __( 'Login', 'essential-addons-for-elementor-lite' ),
245
+ 'register' => __( 'Registration', 'essential-addons-for-elementor-lite' ),
246
  ],
247
  'default' => 'login',
248
  ] );
250
  $this->add_control( 'registration_off_notice', [
251
  'type' => Controls_Manager::RAW_HTML,
252
  /* translators: %1$s is settings page link open tag, %2$s is link closing tag */
253
+ 'raw' => sprintf( __( 'Registration is disabled on your site. Please enable it to use registration form. You can enable it from Dashboard » Settings » General » %1$sMembership%2$s.', 'essential-addons-for-elementor-lite' ), '<a href="' . esc_attr( esc_url( admin_url( 'options-general.php' ) ) ) . '" target="_blank">', '</a>' ),
254
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-warning',
255
  'condition' => [
256
  'default_form_type' => 'register',
258
  ] );
259
  }
260
  $this->add_control( 'hide_for_logged_in_user', [
261
+ 'label' => __( 'Hide all Forms from Logged-in Users', 'essential-addons-for-elementor-lite' ),
262
  'type' => Controls_Manager::SWITCHER,
263
  'default' => 'yes',
264
  ] );
265
  $this->add_control( 'gen_lgn_content_po_toggle', [
266
+ 'label' => __( 'Login Form General', 'essential-addons-for-elementor-lite' ),
267
  'type' => Controls_Manager::POPOVER_TOGGLE,
268
+ 'label_off' => __( 'Controls', 'essential-addons-for-elementor-lite' ),
269
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
270
  'return_value' => 'yes',
271
  'default' => 'yes',
272
  ] );
273
  $this->start_popover();
274
  $this->add_control( 'show_log_out_message', [
275
+ 'label' => __( 'Show Logout Link', 'essential-addons-for-elementor-lite' ),
276
  'type' => Controls_Manager::SWITCHER,
277
  'default' => 'yes',
278
  ] );
279
  $this->add_control( 'show_lost_password', [
280
+ 'label' => __( 'Show Lost your password?', 'essential-addons-for-elementor-lite' ),
281
  'type' => Controls_Manager::SWITCHER,
282
  'default' => 'yes',
283
  ] );
284
 
285
  $this->add_control( 'lost_password_text', [
286
+ 'label' => __( 'Lost Password Text', 'essential-addons-for-elementor-lite' ),
287
  'label_block' => true,
288
  'type' => Controls_Manager::TEXT,
289
  'dynamic' => [
290
  'active' => true,
291
  ],
292
+ 'default' => __( 'Forgot password?', 'essential-addons-for-elementor-lite' ),
293
  'condition' => [
294
  'show_lost_password' => 'yes',
295
  ],
296
  ] );
297
  $this->add_control( 'lost_password_link_type', [
298
+ 'label' => __( 'Lost Password Link to', 'essential-addons-for-elementor-lite' ),
299
  'label_block' => true,
300
  'type' => Controls_Manager::SELECT,
301
  'options' => [
302
+ 'default' => __( 'Default WordPress Page', 'essential-addons-for-elementor-lite' ),
303
+ 'custom' => __( 'Custom URL', 'essential-addons-for-elementor-lite' ),
304
  ],
305
  'default' => 'default',
306
  'condition' => [
308
  ],
309
  ] );
310
  $this->add_control( 'lost_password_url', [
311
+ 'label' => __( 'Custom Lost Password URL', 'essential-addons-for-elementor-lite' ),
312
  'label_block' => true,
313
  'type' => Controls_Manager::URL,
314
  'show_external' => false,
326
  'type' => Controls_Manager::DIVIDER,
327
  ] );
328
  $this->add_control( 'show_register_link', [
329
+ 'label' => __( 'Show Register Link', 'essential-addons-for-elementor-lite' ),
330
  'type' => Controls_Manager::SWITCHER,
331
  'default' => 'yes',
332
  'separator' => 'before',
333
 
334
  ] );
335
  $this->add_control( 'registration_link_text', [
336
+ 'label' => __( 'Register Link Text', 'essential-addons-for-elementor-lite' ),
337
  'label_block' => true,
338
+ 'description' => __( 'You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only.', 'essential-addons-for-elementor-lite' ),
339
  'type' => Controls_Manager::TEXTAREA,
340
  'rows' => 2,
341
  'dynamic' => [
342
  'active' => true,
343
  ],
344
+ 'default' => __( " \nRegister Now", 'essential-addons-for-elementor-lite' ),
345
  'condition' => [
346
  'show_register_link' => 'yes',
347
  ],
348
  ] );
349
  $this->add_control( 'registration_link_action', [
350
+ 'label' => __( 'Registration Link Action', 'essential-addons-for-elementor-lite' ),
351
  'label_block' => true,
352
  'type' => Controls_Manager::SELECT,
353
  'options' => [
354
+ 'default' => __( 'WordPress Registration Page', 'essential-addons-for-elementor-lite' ),
355
+ 'custom' => __( 'Custom URL', 'essential-addons-for-elementor-lite' ),
356
+ 'form' => __( 'Show Register Form', 'essential-addons-for-elementor-lite' ),
357
  ],
358
  'default' => 'form',
359
  'condition' => [
361
  ],
362
  ] );
363
  $this->add_control( 'custom_register_url', [
364
+ 'label' => __( 'Custom Register URL', 'essential-addons-for-elementor-lite' ),
365
  'label_block' => true,
366
  'type' => Controls_Manager::URL,
367
  'show_external' => false,
375
  ] );
376
  } else {
377
  $this->add_control( 'show_register_link', [
378
+ 'label' => __( 'Show Register Link', 'essential-addons-for-elementor-lite' ),
379
  'type' => Controls_Manager::HIDDEN,
380
  'default' => 'no',
381
  'separator' => 'before',
382
  ] );
383
  }
384
  $this->add_control( 'enable_login_recaptcha', [
385
+ 'label' => __( 'Enable Google reCAPTCHA', 'essential-addons-for-elementor-lite' ),
386
+ 'description' => __( 'reCAPTCHA will prevent spam login from bots.', 'essential-addons-for-elementor-lite' ),
387
  'type' => Controls_Manager::SWITCHER,
388
+ 'label_on' => __( 'Yes', 'essential-addons-for-elementor-lite' ),
389
+ 'label_off' => __( 'No', 'essential-addons-for-elementor-lite' ),
390
  'return_value' => 'yes',
391
  ] );
392
  if ( empty( $this->recaptcha_sitekey ) ) {
393
  $this->add_control( 'eael_login_recaptcha_keys_missing', [
394
  'type' => Controls_Manager::RAW_HTML,
395
+ 'raw' => sprintf( __( 'reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings', 'essential-addons-for-elementor-lite' ), '<strong>', '</strong>' ),
396
  'content_classes' => 'eael-warning',
397
  'condition' => [
398
  'enable_login_recaptcha' => 'yes',
405
  /*--show registration related control only if registration is enable on the site--*/
406
  if ( $this->user_can_register ) {
407
  $this->add_control( 'gen_reg_content_po_toggle', [
408
+ 'label' => __( 'Register Form General', 'essential-addons-for-elementor-lite' ),
409
  'type' => Controls_Manager::POPOVER_TOGGLE,
410
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
411
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
412
  'return_value' => 'yes',
413
  'default' => 'yes',
414
  ] );
415
  $this->start_popover();
416
  $this->add_control( 'show_login_link', [
417
+ 'label' => __( 'Show Login Link', 'essential-addons-for-elementor-lite' ),
418
  'type' => Controls_Manager::SWITCHER,
419
  'default' => 'yes',
420
  ] );
421
  $this->add_control( 'login_link_text', [
422
+ 'label' => __( 'Login Link Text', 'essential-addons-for-elementor-lite' ),
423
  'label_block' => true,
424
+ 'description' => __( 'You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only.', 'essential-addons-for-elementor-lite' ),
425
  'type' => Controls_Manager::TEXTAREA,
426
  'rows' => 2,
427
  'dynamic' => [
428
  'active' => true,
429
  ],
430
+ 'default' => __( " \nSign In", 'essential-addons-for-elementor-lite' ),
431
  'condition' => [
432
  'show_login_link' => 'yes',
433
  ],
434
  ] );
435
  $this->add_control( 'login_link_action', [
436
+ 'label' => __( 'Login Link Action', 'essential-addons-for-elementor-lite' ),
437
  'label_block' => true,
438
  'type' => Controls_Manager::SELECT,
439
  'options' => [
440
+ 'default' => __( 'Default WordPress Page', 'essential-addons-for-elementor-lite' ),
441
+ 'custom' => __( 'Custom URL', 'essential-addons-for-elementor-lite' ),
442
+ 'form' => __( 'Show Login Form', 'essential-addons-for-elementor-lite' ),
443
  ],
444
  'default' => 'form',
445
  'condition' => [
447
  ],
448
  ] );
449
  $this->add_control( 'custom_login_url', [
450
+ 'label' => __( 'Custom Login URL', 'essential-addons-for-elementor-lite' ),
451
  'label_block' => true,
452
  'show_external' => false,
453
  'type' => Controls_Manager::URL,
460
  ],
461
  ] );
462
  $this->add_control( 'enable_register_recaptcha', [
463
+ 'label' => __( 'Enable Google reCAPTCHA', 'essential-addons-for-elementor-lite' ),
464
+ 'description' => __( 'reCAPTCHA will prevent spam registration from bots.', 'essential-addons-for-elementor-lite' ),
465
  'type' => Controls_Manager::SWITCHER,
466
+ 'label_on' => __( 'Yes', 'essential-addons-for-elementor-lite' ),
467
+ 'label_off' => __( 'No', 'essential-addons-for-elementor-lite' ),
468
  'return_value' => 'yes',
469
  ] );
470
  if ( empty( $this->recaptcha_sitekey ) ) {
471
  $this->add_control( 'eael_recaptcha_keys_missing', [
472
  'type' => Controls_Manager::RAW_HTML,
473
+ 'raw' => sprintf( __( 'reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings', 'essential-addons-for-elementor-lite' ), '<strong>', '</strong>' ),
474
  'content_classes' => 'eael-warning',
475
  'condition' => [
476
  'enable_register_recaptcha' => 'yes',
481
 
482
  } else {
483
  $this->add_control( 'show_login_link', [
484
+ 'label' => __( 'Show Login Link', 'essential-addons-for-elementor-lite' ),
485
  'type' => Controls_Manager::HIDDEN,
486
  'default' => 'no',
487
  ] );
496
  */
497
  protected function init_content_login_fields_controls() {
498
  $this->start_controls_section( 'section_content_login_fields', [
499
+ 'label' => __( 'Login Form Fields', 'essential-addons-for-elementor-lite' ),
500
  'conditions' => $this->get_form_controls_display_condition( 'login' ),
501
  ] );
502
 
503
  $this->add_control( 'login_label_types', [
504
+ 'label' => __( 'Labels & Placeholders', 'essential-addons-for-elementor-lite' ),
505
  'type' => Controls_Manager::SELECT,
506
  'options' => [
507
+ 'default' => __( 'Default', 'essential-addons-for-elementor-lite' ),
508
+ 'custom' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
509
+ 'none' => __( 'Hide', 'essential-addons-for-elementor-lite' ),
510
  ],
511
  'default' => 'default',
512
  ] );
513
 
514
  $this->add_control( 'login_labels_heading', [
515
+ 'label' => __( 'Labels', 'essential-addons-for-elementor-lite' ),
516
  'type' => Controls_Manager::HEADING,
517
  'separator' => 'before',
518
  'condition' => [ 'login_label_types' => 'custom', ],
520
 
521
 
522
  $this->add_control( 'login_user_label', [
523
+ 'label' => __( 'Username Label', 'essential-addons-for-elementor-lite' ),
524
+ 'placeholder' => __( 'Username or Email Address', 'essential-addons-for-elementor-lite' ),
525
+ 'default' => __( 'Username or Email Address', 'essential-addons-for-elementor-lite' ),
526
  'type' => Controls_Manager::TEXT,
527
  'dynamic' => [ 'active' => true, ],
528
  'label_block' => true,
530
  ] );
531
 
532
  $this->add_control( 'login_password_label', [
533
+ 'label' => __( 'Password Label', 'essential-addons-for-elementor-lite' ),
534
+ 'placeholder' => __( 'Password', 'essential-addons-for-elementor-lite' ),
535
+ 'default' => __( 'Password', 'essential-addons-for-elementor-lite' ),
536
  'type' => Controls_Manager::TEXT,
537
  'dynamic' => [ 'active' => true, ],
538
  'label_block' => true,
540
  ] );
541
 
542
  $this->add_control( 'login_placeholders_heading', [
543
+ 'label' => esc_html__( 'Placeholders', 'essential-addons-for-elementor-lite' ),
544
  'type' => Controls_Manager::HEADING,
545
  'condition' => [ 'login_label_types' => 'custom', ],
546
  'separator' => 'before',
547
  ] );
548
 
549
  $this->add_control( 'login_user_placeholder', [
550
+ 'label' => __( 'Username Placeholder', 'essential-addons-for-elementor-lite' ),
551
+ 'placeholder' => __( 'Username or Email Address', 'essential-addons-for-elementor-lite' ),
552
+ 'default' => __( 'Username or Email Address', 'essential-addons-for-elementor-lite' ),
553
  'type' => Controls_Manager::TEXT,
554
  'dynamic' => [ 'active' => true, ],
555
  'label_block' => true,
557
  ] );
558
 
559
  $this->add_control( 'login_password_placeholder', [
560
+ 'label' => __( 'Password Placeholder', 'essential-addons-for-elementor-lite' ),
561
+ 'placeholder' => __( 'Password', 'essential-addons-for-elementor-lite' ),
562
+ 'default' => __( 'Password', 'essential-addons-for-elementor-lite' ),
563
  'type' => Controls_Manager::TEXT,
564
  'dynamic' => [ 'active' => true, ],
565
  'label_block' => true,
567
  ] );
568
 
569
  $this->add_responsive_control( 'login_field_width', [
570
+ 'label' => esc_html__( 'Input Fields width', 'essential-addons-for-elementor-lite' ),
571
  'type' => Controls_Manager::SLIDER,
572
  'size_units' => [
573
  'px',
595
  ] );
596
 
597
  $this->add_control( 'login_show_remember_me', [
598
+ 'label' => __( 'Remember Me Checkbox', 'essential-addons-for-elementor-lite' ),
599
  'type' => Controls_Manager::SWITCHER,
600
  'default' => 'yes',
601
+ 'label_off' => __( 'Hide', 'essential-addons-for-elementor-lite' ),
602
+ 'label_on' => __( 'Show', 'essential-addons-for-elementor-lite' ),
603
  ] );
604
 
605
  $this->add_control( 'password_toggle', [
606
+ 'label' => __( 'Password Visibility Icon', 'essential-addons-for-elementor-lite' ),
607
  'type' => Controls_Manager::SWITCHER,
608
+ 'label_off' => __( 'Hide', 'essential-addons-for-elementor-lite' ),
609
+ 'label_on' => __( 'Show', 'essential-addons-for-elementor-lite' ),
610
  'default' => 'yes',
611
  ] );
612
 
613
  /*--Login Fields Button--*/
614
  $this->add_control( 'login_button_heading', [
615
+ 'label' => esc_html__( 'Login Button', 'essential-addons-for-elementor-lite' ),
616
  'type' => Controls_Manager::HEADING,
617
  'separator' => 'before',
618
  ] );
619
 
620
  $this->add_control( 'login_button_text', [
621
+ 'label' => __( 'Button Text', 'essential-addons-for-elementor-lite' ),
622
  'type' => Controls_Manager::TEXT,
623
  'dynamic' => [ 'active' => true, ],
624
+ 'default' => __( 'Log In', 'essential-addons-for-elementor-lite' ),
625
+ 'placeholder' => __( 'Log In', 'essential-addons-for-elementor-lite' ),
626
  ] );
627
 
628
  $this->end_controls_section();
630
 
631
  protected function init_form_header_controls() {
632
  $this->start_controls_section( 'section_content_lr_form_header', [
633
+ 'label' => __( 'Form Header Content', 'essential-addons-for-elementor-lite' ),
634
  ] );
635
 
636
  $this->add_control( 'lr_form_image', [
637
+ 'label' => __( 'Form Header Image', 'essential-addons-for-elementor-lite' ),
638
  'type' => Controls_Manager::MEDIA,
639
  'dynamic' => [
640
  'active' => true,
652
  ] );
653
 
654
  $this->add_control( "lr_form_image_position", [
655
+ 'label' => __( 'Header Image Position', 'essential-addons-for-elementor-lite' ),
656
  'type' => Controls_Manager::CHOOSE,
657
  'options' => [
658
  'left' => [
659
+ 'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
660
  'icon' => 'eicon-arrow-left',
661
  ],
662
  'right' => [
663
+ 'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
664
  'icon' => 'eicon-arrow-right',
665
  ],
666
  ],
669
  ] );
670
 
671
  $this->add_control( 'lr_form_logo', [
672
+ 'label' => __( 'Form Header Logo', 'essential-addons-for-elementor-lite' ),
673
  'type' => Controls_Manager::MEDIA,
674
  'dynamic' => [
675
  'active' => true,
685
  'separator' => 'none',
686
  ] );
687
  $this->add_control( "lr_form_logo_position", [
688
+ 'label' => __( 'Form Logo Position', 'essential-addons-for-elementor-lite' ),
689
  'type' => Controls_Manager::CHOOSE,
690
  'options' => [
691
  'inline' => [
692
+ 'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
693
  'icon' => 'eicon-arrow-left',
694
  ],
695
  'block' => [
696
+ 'title' => __( 'Top', 'essential-addons-for-elementor-lite' ),
697
  'icon' => 'eicon-arrow-up',
698
  ],
699
  ],
702
  ] );
703
 
704
  $this->add_control( 'login_form_title', [
705
+ 'label' => __( 'Login Form Title', 'essential-addons-for-elementor-lite' ),
706
  'type' => Controls_Manager::TEXT,
707
  'dynamic' => [ 'active' => true, ],
708
+ 'placeholder' => __( 'Welcome Back!', 'essential-addons-for-elementor-lite' ),
709
  'separator' => 'before',
710
  ] );
711
  $this->add_control( 'login_form_subtitle', [
712
+ 'label' => __( 'Login Form Sub Title', 'essential-addons-for-elementor-lite' ),
713
  'type' => Controls_Manager::TEXTAREA,
714
  'dynamic' => [ 'active' => true, ],
715
+ 'placeholder' => __( 'Please login to your account', 'essential-addons-for-elementor-lite' ),
716
  ] );
717
 
718
  $this->add_control( 'register_form_title', [
719
+ 'label' => __( 'Register Form Title', 'essential-addons-for-elementor-lite' ),
720
  'type' => Controls_Manager::TEXT,
721
  'dynamic' => [ 'active' => true, ],
722
+ 'placeholder' => __( 'Create a New Account', 'essential-addons-for-elementor-lite' ),
723
  'separator' => 'before',
724
  ] );
725
  $this->add_control( 'register_form_subtitle', [
726
+ 'label' => __( 'Register Form Sub Title', 'essential-addons-for-elementor-lite' ),
727
  'type' => Controls_Manager::TEXTAREA,
728
  'dynamic' => [ 'active' => true, ],
729
+ 'placeholder' => __( 'Create an account to enjoy awesome features.', 'essential-addons-for-elementor-lite' ),
730
  ] );
731
 
732
  $this->end_controls_section();
735
  protected function init_content_login_options_controls() {
736
 
737
  $this->start_controls_section( 'section_content_login_options', [
738
+ 'label' => __( 'Login Form Options', 'essential-addons-for-elementor-lite' ),
739
  'conditions' => $this->get_form_controls_display_condition( 'login' ),
740
  ] );
741
 
742
  $this->add_control( 'redirect_after_login', [
743
+ 'label' => __( 'Redirect After Login', 'essential-addons-for-elementor-lite' ),
744
  'type' => Controls_Manager::SWITCHER,
745
  ] );
746
 
749
  'show_label' => false,
750
  'show_external' => false,
751
  'placeholder' => admin_url(),
752
+ 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', 'essential-addons-for-elementor-lite' ),
753
  'condition' => [
754
  'redirect_after_login' => 'yes',
755
  ],
762
  ] );
763
  // @todo; in future
764
  //$this->add_control( 'redirect_after_logout', [
765
+ // 'label' => __( 'Redirect After Logout', 'essential-addons-for-elementor-lite' ),
766
  // 'type' => Controls_Manager::SWITCHER,
767
  //] );
768
  //
770
  // 'type' => Controls_Manager::URL,
771
  // 'show_label' => false,
772
  // 'show_external' => false,
773
+ // 'placeholder' => __( 'https://your-link.com', 'essential-addons-for-elementor-lite' ),
774
+ // 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', 'essential-addons-for-elementor-lite' ),
775
  // 'condition' => [
776
  // 'redirect_after_logout' => 'yes',
777
  // ],
783
 
784
  protected function init_content_terms_controls() {
785
  $this->start_controls_section( 'section_content_terms_conditions', [
786
+ 'label' => __( 'Terms & Conditions', 'essential-addons-for-elementor-lite' ),
787
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
788
  ] );
789
 
790
  $this->add_control( 'show_terms_conditions', [
791
+ 'label' => __( 'Enforce Terms & Conditions', 'essential-addons-for-elementor-lite' ),
792
  'type' => Controls_Manager::SWITCHER,
793
+ 'label_on' => __( 'Yes', 'essential-addons-for-elementor-lite' ),
794
+ 'label_off' => __( 'No', 'essential-addons-for-elementor-lite' ),
795
  'default' => 'no',
796
  'return_value' => 'yes',
797
  ] );
798
 
799
  $this->add_control( 'acceptance_label', [
800
+ 'label' => __( 'Acceptance Label', 'essential-addons-for-elementor-lite' ),
801
+ 'description' => __( 'Eg. I accept the terms & conditions. Note: First line is checkbox label & Last line will be used as link text.', 'essential-addons-for-elementor-lite' ),
802
  'type' => Controls_Manager::TEXTAREA,
803
  'rows' => 2,
804
  'label_block' => true,
805
+ 'placeholder' => __( 'I Accept the Terms and Conditions.', 'essential-addons-for-elementor-lite' ),
806
  /* translators: \n means new line. So, Don't translate this*/
807
+ 'default' => __( "I Accept\n the Terms and Conditions.", 'essential-addons-for-elementor-lite' ),
808
  'condition' => [
809
  'show_terms_conditions' => 'yes',
810
  ],
811
  ] );
812
 
813
  $this->add_control( 'acceptance_text_source', [
814
+ 'label' => __( 'Content Source', 'essential-addons-for-elementor-lite' ),
815
  'type' => Controls_Manager::SELECT,
816
  'options' => [
817
+ 'editor' => __( 'Editor', 'essential-addons-for-elementor-lite' ),
818
+ 'custom' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
819
  ],
820
  'default' => 'custom',
821
  'condition' => [
824
  ] );
825
 
826
  $this->add_control( 'acceptance_text', [
827
+ 'label' => __( 'Terms and Conditions', 'essential-addons-for-elementor-lite' ),
828
  'type' => Controls_Manager::WYSIWYG,
829
  'rows' => 3,
830
+ 'default' => __( 'Please go through the following terms and conditions carefully.', 'essential-addons-for-elementor-lite' ),
831
  'condition' => [
832
  'show_terms_conditions' => 'yes',
833
  'acceptance_text_source' => 'editor',
836
 
837
 
838
  $this->add_control( 'acceptance_text_url', [
839
+ 'label' => __( 'Terms & Conditions URL', 'essential-addons-for-elementor-lite' ),
840
+ 'description' => __( 'Enter the link where your terms & condition or privacy policy is found.', 'essential-addons-for-elementor-lite' ),
841
  'type' => Controls_Manager::URL,
842
  'dynamic' => [
843
  'active' => true,
856
  $this->end_controls_section();
857
  }
858
 
859
+ protected function init_content_validation_messages_controls() {
860
+ $this->start_controls_section( 'section_content_errors', [
861
+ 'label' => __( 'Validation Messages', 'essential-addons-for-elementor-lite' ),
862
+ ] );
863
+
864
+ $this->add_control( 'err_message_heading', [
865
+ 'label' => esc_html__( 'Error Messages', 'essential-addons-for-elementor-lite' ),
866
+ 'type' => Controls_Manager::HEADING,
867
+ ] );
868
+
869
+ $this->add_control( 'err_email', [
870
+ 'label' => __( 'Invalid Email', 'essential-addons-for-elementor-lite' ),
871
+ 'type' => Controls_Manager::TEXT,
872
+ 'label_block' => true,
873
+ 'placeholder' => __( 'Eg. Your email is invalid.', 'essential-addons-for-elementor-lite' ),
874
+ 'default' => __( "You have used an invalid email", 'essential-addons-for-elementor-lite' ),
875
+ ] );
876
+ $this->add_control( 'err_email_missing', [
877
+ 'label' => __( 'Email is missing', 'essential-addons-for-elementor-lite' ),
878
+ 'type' => Controls_Manager::TEXT,
879
+ 'label_block' => true,
880
+ 'placeholder' => __( 'Eg. Email is missing or Invalid', 'essential-addons-for-elementor-lite' ),
881
+ 'default' => __( 'Email is missing or Invalid', 'essential-addons-for-elementor-lite' ),
882
+ ] );
883
+ $this->add_control( 'err_email_used', [
884
+ 'label' => __( 'Already Used Email', 'essential-addons-for-elementor-lite' ),
885
+ 'type' => Controls_Manager::TEXT,
886
+ 'label_block' => true,
887
+ 'placeholder' => __( 'Eg. Your email is already in use..', 'essential-addons-for-elementor-lite' ),
888
+ 'default' => __( 'The provided email is already registered with other account. Please login or reset password or use another email.', 'essential-addons-for-elementor-lite' ),
889
+ ] );
890
+ $this->add_control( 'err_username', [
891
+ 'label' => __( 'Invalid Username', 'essential-addons-for-elementor-lite' ),
892
+ 'type' => Controls_Manager::TEXT,
893
+ 'label_block' => true,
894
+ 'placeholder' => __( 'Eg. Your username is invalid.', 'essential-addons-for-elementor-lite' ),
895
+ 'default' => __( "You have used an invalid username", 'essential-addons-for-elementor-lite' ),
896
+ ] );
897
+ $this->add_control( 'err_username_used', [
898
+ 'label' => __( 'Username already in use', 'essential-addons-for-elementor-lite' ),
899
+ 'type' => Controls_Manager::TEXT,
900
+ 'label_block' => true,
901
+ 'placeholder' => __( 'Eg. Your username is already registered.', 'essential-addons-for-elementor-lite' ),
902
+ 'default' => __( 'Invalid username provided or the username already registered.', 'essential-addons-for-elementor-lite' ),
903
+ ] );
904
+ $this->add_control( 'err_pass', [
905
+ 'label' => __( 'Invalid Password', 'essential-addons-for-elementor-lite' ),
906
+ 'type' => Controls_Manager::TEXT,
907
+ 'label_block' => true,
908
+ 'placeholder' => __( 'Eg. Your password is invalid', 'essential-addons-for-elementor-lite' ),
909
+ 'default' => __( "Your password is invalid.", 'essential-addons-for-elementor-lite' ),
910
+ ] );
911
+
912
+ $this->add_control( 'err_conf_pass', [
913
+ 'label' => __( 'Invalid Password Confirmed', 'essential-addons-for-elementor-lite' ),
914
+ 'type' => Controls_Manager::TEXT,
915
+ 'label_block' => true,
916
+ 'placeholder' => __( 'Eg. Password did not matched', 'essential-addons-for-elementor-lite' ),
917
+ 'default' => __( "Your confirmed password did not match", 'essential-addons-for-elementor-lite' ),
918
+ ] );
919
+
920
+ $this->add_control( 'err_loggedin', [
921
+ 'label' => __( 'Already Logged In', 'essential-addons-for-elementor-lite' ),
922
+ 'type' => Controls_Manager::TEXT,
923
+ 'label_block' => true,
924
+ 'placeholder' => __( 'Eg. You are already logged in', 'essential-addons-for-elementor-lite' ),
925
+ 'default' => __( "You are already logged in", 'essential-addons-for-elementor-lite' ),
926
+ ] );
927
+
928
+ $this->add_control( 'err_recaptcha', [
929
+ 'label' => __( 'reCAPTCHA Failed', 'essential-addons-for-elementor-lite' ),
930
+ 'type' => Controls_Manager::TEXT,
931
+ 'label_block' => true,
932
+ 'placeholder' => __( 'Eg. Recaptcha Validation Failed', 'essential-addons-for-elementor-lite' ),
933
+ 'default' => __( "You did not pass recaptcha challenge.", 'essential-addons-for-elementor-lite' ),
934
+ ] );
935
+
936
+ $this->add_control( 'err_tc', [
937
+ 'label' => __( 'Terms & Condition Error', 'essential-addons-for-elementor-lite' ),
938
+ 'type' => Controls_Manager::TEXT,
939
+ 'label_block' => true,
940
+ 'placeholder' => __( 'Eg. You must accept the Terms & Conditions', 'essential-addons-for-elementor-lite' ),
941
+ 'default' => __( 'You did not accept the Terms and Conditions. Please accept it and try again.', 'essential-addons-for-elementor-lite' ),
942
+ ] );
943
+
944
+ $this->add_control( 'err_unknown', [
945
+ 'label' => __( 'Other Errors', 'essential-addons-for-elementor-lite' ),
946
+ 'type' => Controls_Manager::TEXT,
947
+ 'label_block' => true,
948
+ 'placeholder' => __( 'Eg. Something went wrong', 'essential-addons-for-elementor-lite' ),
949
+ 'default' => __( "Something went wrong!", 'essential-addons-for-elementor-lite' ),
950
+ ] );
951
+
952
+ $this->add_control( 'success_message_heading', [
953
+ 'label' => esc_html__( 'Success Messages', 'essential-addons-for-elementor-lite' ),
954
+ 'type' => Controls_Manager::HEADING,
955
+ 'separator' => 'before',
956
+ ] );
957
+
958
+ $this->add_control( 'success_login', [
959
+ 'label' => __( 'Successful Login', 'essential-addons-for-elementor-lite' ),
960
+ 'type' => Controls_Manager::TEXT,
961
+ 'label_block' => true,
962
+ 'placeholder' => __( 'Eg. You have logged in successfully', 'essential-addons-for-elementor-lite' ),
963
+ 'default' => __( "You have logged in successfully", 'essential-addons-for-elementor-lite' ),
964
+ ] );
965
+ $this->add_control( 'success_register', [
966
+ 'label' => __( 'Successful Registration', 'essential-addons-for-elementor-lite' ),
967
+ 'type' => Controls_Manager::TEXTAREA,
968
+ 'default' => __( 'Registration completed successfully, Check your inbox for password if you did not provided while registering.', 'essential-addons-for-elementor-lite' ),
969
+ 'placeholder' => __( 'eg. Registration completed successfully', 'essential-addons-for-elementor-lite' ),
970
+ ] );
971
+
972
+ $this->end_controls_section();
973
+ }
974
+
975
+
976
  protected function init_content_register_fields_controls() {
977
 
978
  $this->start_controls_section( 'section_content_register_fields', [
979
+ 'label' => __( 'Register Form Fields', 'essential-addons-for-elementor-lite' ),
980
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
981
  ] );
982
  $this->add_control( 'register_form_field_note', [
983
  'type' => Controls_Manager::RAW_HTML,
984
+ 'raw' => __( 'Select the type of fields you want to show in the registration form', 'essential-addons-for-elementor-lite' ),
985
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
986
  ] );
987
  $repeater = new Repeater();
988
 
989
  $repeater->add_control( 'field_type', [
990
+ 'label' => __( 'Type', 'essential-addons-for-elementor-lite' ),
991
  'type' => Controls_Manager::SELECT,
992
  'options' => $this->get_form_field_types(),
993
  'default' => 'first_name',
994
  ] );
995
 
996
  $repeater->add_control( 'field_label', [
997
+ 'label' => __( 'Label', 'essential-addons-for-elementor-lite' ),
998
  'type' => Controls_Manager::TEXT,
999
  'default' => '',
1000
  'dynamic' => [
1003
  ] );
1004
 
1005
  $repeater->add_control( 'placeholder', [
1006
+ 'label' => __( 'Placeholder', 'essential-addons-for-elementor-lite' ),
1007
  'type' => Controls_Manager::TEXT,
1008
  'default' => '',
1009
  'dynamic' => [
1012
  ] );
1013
 
1014
  $repeater->add_control( 'required', [
1015
+ 'label' => __( 'Required', 'essential-addons-for-elementor-lite' ),
1016
  'type' => Controls_Manager::SWITCHER,
1017
  'condition' => [
1018
  'field_type!' => [
1025
 
1026
  $repeater->add_control( 'required_note', [
1027
  'type' => Controls_Manager::RAW_HTML,
1028
+ 'raw' => __( 'Note: This field is required by default.', 'essential-addons-for-elementor-lite' ),
1029
  'condition' => [
1030
  'field_type' => [
1031
  'email',
1037
  ] );
1038
 
1039
  $repeater->add_responsive_control( 'width', [
1040
+ 'label' => __( 'Field Width', 'essential-addons-for-elementor-lite' ),
1041
  'type' => Controls_Manager::SELECT,
1042
  'options' => [
1043
+ '' => __( 'Default', 'essential-addons-for-elementor-lite' ),
1044
  '100' => '100%',
1045
  '80' => '80%',
1046
  '75' => '75%',
1056
  ] );
1057
 
1058
  $this->add_control( 'register_fields', [
1059
+ 'label' => __( 'Fields', 'essential-addons-for-elementor-lite' ),
1060
  'type' => Controls_Manager::REPEATER,
1061
+ 'fields' => $repeater->get_controls(),
1062
  'default' => [
1063
  [
1064
  'field_type' => 'user_name',
1065
+ 'field_label' => __( 'Username', 'essential-addons-for-elementor-lite' ),
1066
+ 'placeholder' => __( 'Username', 'essential-addons-for-elementor-lite' ),
1067
  'width' => '100',
1068
  ],
1069
  [
1070
  'field_type' => 'email',
1071
+ 'field_label' => __( 'Email', 'essential-addons-for-elementor-lite' ),
1072
+ 'placeholder' => __( 'Email', 'essential-addons-for-elementor-lite' ),
1073
  'required' => 'yes',
1074
  'width' => '100',
1075
  ],
1076
  [
1077
  'field_type' => 'password',
1078
+ 'field_label' => __( 'Password', 'essential-addons-for-elementor-lite' ),
1079
+ 'placeholder' => __( 'Password', 'essential-addons-for-elementor-lite' ),
1080
  'required' => 'yes',
1081
  'width' => '100',
1082
  ],
1085
  ] );
1086
 
1087
  $this->add_control( 'show_labels', [
1088
+ 'label' => __( 'Show Label', 'essential-addons-for-elementor-lite' ),
1089
  'type' => Controls_Manager::SWITCHER,
1090
  'default' => 'yes',
1091
  ] );
1092
 
1093
  $this->add_control( 'mark_required', [
1094
+ 'label' => __( 'Show Required Mark', 'essential-addons-for-elementor-lite' ),
1095
  'type' => Controls_Manager::SWITCHER,
1096
  'condition' => [
1097
  'show_labels' => 'yes',
1101
 
1102
  /*--Register Fields Button--*/
1103
  $this->add_control( 'reg_button_heading', [
1104
+ 'label' => esc_html__( 'Register Button', 'essential-addons-for-elementor-lite' ),
1105
  'type' => Controls_Manager::HEADING,
1106
  'separator' => 'before',
1107
  ] );
1108
 
1109
  $this->add_control( 'reg_button_text', [
1110
+ 'label' => __( 'Button Text', 'essential-addons-for-elementor-lite' ),
1111
  'type' => Controls_Manager::TEXT,
1112
  'dynamic' => [ 'active' => true, ],
1113
+ 'default' => __( 'Register', 'essential-addons-for-elementor-lite' ),
1114
  ] );
1115
 
1116
 
1120
  protected function init_content_register_options_controls() {
1121
 
1122
  $this->start_controls_section( 'section_content_register_actions', [
1123
+ 'label' => __( 'Register Form Options', 'essential-addons-for-elementor-lite' ),
1124
  'conditions' => $this->get_form_controls_display_condition( 'register' ),
1125
  ] );
1126
 
1127
  $this->add_control( 'register_action', [
1128
+ 'label' => __( 'Register Actions', 'essential-addons-for-elementor-lite' ),
1129
+ 'description' => __( 'You can select what should happen after a user registers successfully', 'essential-addons-for-elementor-lite' ),
1130
  'type' => Controls_Manager::SELECT2,
1131
  'multiple' => true,
1132
  'label_block' => true,
1133
  'default' => 'send_email',
1134
  'options' => [
1135
+ 'redirect' => __( 'Redirect', 'essential-addons-for-elementor-lite' ),
1136
+ 'auto_login' => __( 'Auto Login', 'essential-addons-for-elementor-lite' ),
1137
+ 'send_email' => __( 'Notify User By Email', 'essential-addons-for-elementor-lite' ),
1138
  ],
1139
  ] );
1140
 
1141
  $this->add_control( 'register_redirect_url', [
1142
  'type' => Controls_Manager::URL,
1143
+ 'label' => __( 'Custom Redirect URL', 'essential-addons-for-elementor-lite' ),
1144
  'show_external' => false,
1145
+ 'placeholder' => __( 'eg. https://your-link.com/wp-admin/', 'essential-addons-for-elementor-lite' ),
1146
+ 'description' => __( 'Please note that only your current domain is allowed here to keep your site secure.', 'essential-addons-for-elementor-lite' ),
1147
  'default' => [
1148
  'url' => get_admin_url(),
1149
  'is_external' => false,
1155
  ] );
1156
 
1157
  $this->add_control( 'register_user_role', [
1158
+ 'label' => __( 'New User Role', 'essential-addons-for-elementor-lite' ),
1159
  'type' => Controls_Manager::SELECT,
1160
  'default' => '',
1161
  'options' => $this->get_user_roles(),
1163
  ] );
1164
 
1165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1166
  $this->end_controls_section();
1167
  }
1168
 
1169
  protected function init_content_register_user_email_controls() {
1170
  /* translators: %s: Site Name */
1171
+ $default_subject = sprintf( __( 'Thank you for registering on "%s"!', 'essential-addons-for-elementor-lite' ), get_option( 'blogname' ) );
1172
  $default_message = $default_subject . "\r\n\r\n";
1173
+ $default_message .= __( 'Username: [username]', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1174
+ $default_message .= __( 'Password: [password]', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1175
+ $default_message .= __( 'To reset your password, visit the following address:', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1176
  $default_message .= "[password_reset_link]\r\n\r\n";
1177
+ $default_message .= __( 'Please click the following address to login to your account:', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1178
  $default_message .= wp_login_url() . "\r\n";
1179
 
1180
  $this->start_controls_section( 'section_content_reg_email', [
1181
+ 'label' => __( 'Register User Email Options', 'essential-addons-for-elementor-lite' ),
1182
  'conditions' => [
1183
  'relation' => 'or',
1184
  'terms' => [
1212
  ] );
1213
 
1214
  $this->add_control( 'reg_email_template_type', [
1215
+ 'label' => __( 'Email Template Type', 'essential-addons-for-elementor-lite' ),
1216
+ 'description' => __( 'Default template uses WordPress Default email template. So, please select the Custom Option to send the user proper information if you used any username field.', 'essential-addons-for-elementor-lite' ),
1217
  'type' => Controls_Manager::SELECT,
1218
  'default' => 'default',
1219
  'render_type' => 'none',
1220
  'options' => [
1221
+ 'default' => __( 'WordPres Default', 'essential-addons-for-elementor-lite' ),
1222
+ 'custom' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1223
  ],
1224
  ] );
1225
 
1226
  $this->add_control( 'reg_email_subject', [
1227
+ 'label' => __( 'Email Subject', 'essential-addons-for-elementor-lite' ),
1228
  'type' => Controls_Manager::TEXT,
1229
  'placeholder' => $default_subject,
1230
  'default' => $default_subject,
1236
  ] );
1237
 
1238
  $this->add_control( 'reg_email_message', [
1239
+ 'label' => __( 'Email Message', 'essential-addons-for-elementor-lite' ),
1240
  'type' => Controls_Manager::WYSIWYG,
1241
+ 'placeholder' => __( 'Enter Your Custom Email Message..', 'essential-addons-for-elementor-lite' ),
1242
  'default' => $default_message,
1243
  'label_block' => true,
1244
  'render_type' => 'none',
1249
 
1250
  $this->add_control( 'reg_email_content_note', [
1251
  'type' => Controls_Manager::RAW_HTML,
1252
+ 'raw' => __( '<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [password], [username], [email], [firstname],[lastname], [website], [loginurl], [password_reset_link] and [sitetitle] ', 'essential-addons-for-elementor-lite' ),
1253
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1254
  'condition' => [
1255
  'reg_email_template_type' => 'custom',
1258
  ] );
1259
 
1260
  $this->add_control( 'reg_email_content_type', [
1261
+ 'label' => __( 'Email Content Type', 'essential-addons-for-elementor-lite' ),
1262
  'type' => Controls_Manager::SELECT,
1263
  'default' => 'html',
1264
  'render_type' => 'none',
1265
  'options' => [
1266
+ 'html' => __( 'HTML', 'essential-addons-for-elementor-lite' ),
1267
+ 'plain' => __( 'Plain', 'essential-addons-for-elementor-lite' ),
1268
  ],
1269
  'condition' => [
1270
  'reg_email_template_type' => 'custom',
1276
 
1277
  protected function init_content_register_admin_email_controls() {
1278
  /* translators: %s: Site Name */
1279
+ $default_subject = sprintf( __( '["%s"] New User Registration', 'essential-addons-for-elementor-lite' ), get_option( 'blogname' ) );
1280
  /* translators: %s: Site Name */
1281
+ $default_message = sprintf( __( "New user registration on your site %s", 'essential-addons-for-elementor-lite' ), get_option( 'blogname' ) ) . "\r\n\r\n";
1282
+ $default_message .= __( 'Username: [username]', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1283
+ $default_message .= __( 'Email: [email]', 'essential-addons-for-elementor-lite' ) . "\r\n\r\n";
1284
 
1285
 
1286
  $this->start_controls_section( 'section_content_reg_admin_email', [
1287
+ 'label' => __( 'Register Admin Email Options', 'essential-addons-for-elementor-lite' ),
1288
  'conditions' => [
1289
  'relation' => 'or',
1290
  'terms' => [
1318
  ] );
1319
 
1320
  $this->add_control( 'reg_admin_email_template_type', [
1321
+ 'label' => __( 'Email Template Type', 'essential-addons-for-elementor-lite' ),
1322
+ 'description' => __( 'Default template uses WordPress Default Admin email template. You can customize it by choosing the custom option.', 'essential-addons-for-elementor-lite' ),
1323
  'type' => Controls_Manager::SELECT,
1324
  'default' => 'default',
1325
  'render_type' => 'none',
1326
  'options' => [
1327
+ 'default' => __( 'WordPres Default', 'essential-addons-for-elementor-lite' ),
1328
+ 'custom' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1329
  ],
1330
  ] );
1331
 
1332
  $this->add_control( 'reg_admin_email_subject', [
1333
+ 'label' => __( 'Email Subject', 'essential-addons-for-elementor-lite' ),
1334
  'type' => Controls_Manager::TEXT,
1335
  'placeholder' => $default_subject,
1336
  'default' => $default_subject,
1342
  ] );
1343
 
1344
  $this->add_control( 'reg_admin_email_message', [
1345
+ 'label' => __( 'Email Message', 'essential-addons-for-elementor-lite' ),
1346
  'type' => Controls_Manager::WYSIWYG,
1347
+ 'placeholder' => __( 'Enter Your Custom Email Message..', 'essential-addons-for-elementor-lite' ),
1348
  'default' => $default_message,
1349
  'label_block' => true,
1350
  'render_type' => 'none',
1355
 
1356
  $this->add_control( 'reg_admin_email_content_note', [
1357
  'type' => Controls_Manager::RAW_HTML,
1358
+ 'raw' => __( '<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [username], [email], [firstname],[lastname], [website], [loginurl] and [sitetitle] ', 'essential-addons-for-elementor-lite' ),
1359
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1360
  'condition' => [
1361
  'reg_admin_email_template_type' => 'custom',
1364
  ] );
1365
 
1366
  $this->add_control( 'reg_admin_email_content_type', [
1367
+ 'label' => __( 'Email Content Type', 'essential-addons-for-elementor-lite' ),
1368
  'type' => Controls_Manager::SELECT,
1369
  'default' => 'html',
1370
  'render_type' => 'none',
1371
  'options' => [
1372
+ 'html' => __( 'HTML', 'essential-addons-for-elementor-lite' ),
1373
+ 'plain' => __( 'Plain', 'essential-addons-for-elementor-lite' ),
1374
  ],
1375
  'condition' => [
1376
  'reg_admin_email_template_type' => 'custom',
1386
  */
1387
  protected function init_style_general_controls() {
1388
  $this->start_controls_section( 'section_style_general', [
1389
+ 'label' => __( 'General', 'essential-addons-for-elementor-lite' ),
1390
  'tab' => Controls_Manager::TAB_STYLE,
1391
  ] );
1392
  //---Form Container or Box
1393
  $this->add_control( 'form_form_wrap_po_toggle', [
1394
+ 'label' => __( 'Container Box', 'essential-addons-for-elementor-lite' ),
1395
  'type' => Controls_Manager::POPOVER_TOGGLE,
1396
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
1397
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1398
  'return_value' => 'yes',
1399
  ] );
1400
  $this->start_popover();
1401
  $this->add_responsive_control( "eael_form_wrap_width", [
1402
+ 'label' => esc_html__( 'Width', 'essential-addons-for-elementor-lite' ),
1403
  'type' => Controls_Manager::SLIDER,
1404
  'size_units' => [
1405
  'px',
1443
  ] );
1444
 
1445
  $this->add_responsive_control( "eael_form_wrap_margin", [
1446
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
1447
  'type' => Controls_Manager::DIMENSIONS,
1448
  'size_units' => [
1449
  'px',
1458
  ],
1459
  ] );
1460
  $this->add_responsive_control( "eael_form_wrap_padding", [
1461
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
1462
  'type' => Controls_Manager::DIMENSIONS,
1463
  'size_units' => [
1464
  'px',
1480
  ],
1481
  ] );
1482
  $this->add_control( "eael_form_wrap_border_radius", [
1483
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
1484
  'type' => Controls_Manager::DIMENSIONS,
1485
  'size_units' => [
1486
  'px',
1495
  ] );
1496
  $this->add_group_control( Group_Control_Background::get_type(), [
1497
  'name' => "eael_form_wrap_bg_color",
1498
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
1499
  'types' => [
1500
  'classic',
1501
  'gradient',
1502
  ],
1503
  'selector' => "{{WRAPPER}} .eael-lr-form-wrapper",
1504
+ 'condition' => [
1505
+ 'form_form_wrap_po_toggle' => 'yes',
1506
+ ],
1507
  ] );
1508
  $this->end_popover();
1509
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1510
+ 'label' => __( 'Container Box Shadow', 'essential-addons-for-elementor-lite' ),
1511
  'name' => 'eael_form_wrap_shadow',
1512
  'selector' => "{{WRAPPER}} .eael-lr-form-wrapper",
1513
  'exclude' => [
1517
 
1518
  //----Form Wrapper-----
1519
  $this->add_control( 'form_form_po_toggle', [
1520
+ 'label' => __( 'Form', 'essential-addons-for-elementor-lite' ),
1521
  'type' => Controls_Manager::POPOVER_TOGGLE,
1522
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
1523
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1524
  'return_value' => 'yes',
1525
  'separator' => 'before',
1526
  ] );
1527
  $this->start_popover();
1528
  $this->add_control( 'eael_form_wrapper_heading', [
1529
  'type' => Controls_Manager::HEADING,
1530
+ 'label' => __( '---Form Wrapper---', 'essential-addons-for-elementor-lite' ),
1531
  'separator' => 'before',
1532
  ] );
1533
 
1534
  $this->add_responsive_control( "eael_form_width", [
1535
+ 'label' => esc_html__( 'Wrapper width', 'essential-addons-for-elementor-lite' ),
1536
  'type' => Controls_Manager::SLIDER,
1537
  'size_units' => [
1538
  'px',
1576
  ] );
1577
 
1578
  $this->add_responsive_control( "eael_form_margin", [
1579
+ 'label' => __( 'Wrapper Margin', 'essential-addons-for-elementor-lite' ),
1580
  'type' => Controls_Manager::DIMENSIONS,
1581
  'size_units' => [
1582
  'px',
1591
  ],
1592
  ] );
1593
  $this->add_responsive_control( "eael_form_padding", [
1594
+ 'label' => __( 'Wrapper Padding', 'essential-addons-for-elementor-lite' ),
1595
  'type' => Controls_Manager::DIMENSIONS,
1596
  'size_units' => [
1597
  'px',
1613
  ],
1614
  ] );
1615
  $this->add_control( "eael_form_border_radius", [
1616
+ 'label' => __( 'Wrapper Border Radius', 'essential-addons-for-elementor-lite' ),
1617
  'type' => Controls_Manager::DIMENSIONS,
1618
  'size_units' => [
1619
  'px',
1628
  ] );
1629
  $this->add_group_control( Group_Control_Background::get_type(), [
1630
  'name' => "eael_form_bg_color",
1631
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
1632
  'types' => [
1633
  'classic',
1634
  'gradient',
1638
 
1639
  $this->add_control( 'eael_form_input_container', [
1640
  'type' => Controls_Manager::HEADING,
1641
+ 'label' => __( '---Form Style---', 'essential-addons-for-elementor-lite' ),
1642
  'separator' => 'before',
1643
  ] );
1644
  $this->add_responsive_control( "eael_form_ic_width", [
1645
+ 'label' => esc_html__( 'Form width', 'essential-addons-for-elementor-lite' ),
1646
+ 'type' => Controls_Manager::SLIDER,
1647
+ 'size_units' => [
1648
  'px',
1649
  'rem',
1650
  '%',
1651
  ],
1652
+ 'range' => [
1653
  'px' => [
1654
  'min' => 0,
1655
  'max' => 1000,
1665
  'max' => 100,
1666
  ],
1667
  ],
1668
+ 'default' => [
1669
  'unit' => '%',
1670
  'size' => 100,
1671
  ],
1672
+ 'selectors' => [
1673
  "{{WRAPPER}} .lr-form-wrapper form" => 'width: {{SIZE}}{{UNIT}};',
1674
  ],
1675
+ 'condition' => [
1676
  'form_form_po_toggle' => 'yes',
1677
  ],
1678
  ] );
1679
 
1680
  $this->add_responsive_control( "eael_form_ic_margin", [
1681
+ 'label' => __( 'Form Margin', 'essential-addons-for-elementor-lite' ),
1682
  'type' => Controls_Manager::DIMENSIONS,
1683
  'size_units' => [
1684
  'px',
1693
  ],
1694
  ] );
1695
  $this->add_responsive_control( "eael_form_ic_padding", [
1696
+ 'label' => __( 'Form Padding', 'essential-addons-for-elementor-lite' ),
1697
  'type' => Controls_Manager::DIMENSIONS,
1698
  'size_units' => [
1699
  'px',
1715
  ],
1716
  ] );
1717
  $this->add_control( "eael_form_ic_border_radius", [
1718
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
1719
  'type' => Controls_Manager::DIMENSIONS,
1720
  'size_units' => [
1721
  'px',
1730
  ] );
1731
  $this->add_group_control( Group_Control_Background::get_type(), [
1732
  'name' => "eael_form_ic_bg_color",
1733
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
1734
  'types' => [
1735
  'classic',
1736
  'gradient',
1740
  $this->end_popover();
1741
 
1742
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1743
+ 'label' => __( 'Form Wrapper Shadow', 'essential-addons-for-elementor-lite' ),
1744
  'name' => 'eael_form_shadow',
1745
  'selector' => "{{WRAPPER}} .lr-form-wrapper",
1746
  'exclude' => [
1749
  ] );
1750
 
1751
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
1752
+ 'label' => __( 'Form Shadow', 'essential-addons-for-elementor-lite' ),
1753
  'name' => 'eael_form_ic_shadow',
1754
  'selector' => "{{WRAPPER}} .lr-form-wrapper form",
1755
  'exclude' => [
1762
 
1763
  protected function init_style_header_content_controls( $form_type = 'login' ) {
1764
  $this->start_controls_section( "section_style_{$form_type}_header_content", [
1765
+ 'label' => sprintf( __( '%s Form Header', 'essential-addons-for-elementor-lite' ), ucfirst( $form_type ) ),
1766
+ // Login Form Header | Register Form Header
1767
  'tab' => Controls_Manager::TAB_STYLE,
1768
  'conditions' => $this->get_form_controls_display_condition( $form_type ),
1769
  ] );
1774
  $title_selector = "{{WRAPPER}} .eael-{$form_type}-form-wrapper .lr-form-header .form-dsc h4";
1775
  $subtitle_selector = "{{WRAPPER}} .eael-{$form_type}-form-wrapper .lr-form-header .form-dsc p";
1776
  $this->add_control( "{$form_type}_fhc_po_toggle", [
1777
+ 'label' => __( 'Header Content', 'essential-addons-for-elementor-lite' ),
1778
  'type' => Controls_Manager::POPOVER_TOGGLE,
1779
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
1780
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1781
  'return_value' => 'yes',
1782
  ] );
1783
 
1784
  $this->start_popover();
1785
 
1786
  $this->add_responsive_control( "{$form_type}_fhc_width", [
1787
+ 'label' => esc_html__( 'Header width', 'essential-addons-for-elementor-lite' ),
1788
+ 'type' => Controls_Manager::SLIDER,
1789
+ 'size_units' => [
1790
  'px',
1791
  'rem',
1792
  '%',
1793
  ],
1794
+ 'range' => [
1795
  'px' => [
1796
  'min' => 0,
1797
  'max' => 1000,
1807
  'max' => 100,
1808
  ],
1809
  ],
1810
+ 'default' => [
1811
  'unit' => '%',
1812
  'size' => 100,
1813
  ],
1814
+ 'selectors' => [
1815
  $header_selector => 'width: {{SIZE}}{{UNIT}};',
1816
  ],
1817
+ 'condition' => [
1818
  "{$form_type}_fhc_po_toggle" => 'yes',
1819
  ],
1820
  ] );
1821
  $this->add_responsive_control( "{$form_type}_fhc_height", [
1822
+ 'label' => esc_html__( 'Header height', 'essential-addons-for-elementor-lite' ),
1823
+ 'type' => Controls_Manager::SLIDER,
1824
+ 'size_units' => [
1825
  'px',
1826
  'rem',
1827
  '%',
1828
  ],
1829
+ 'range' => [
1830
  'px' => [
1831
  'min' => 0,
1832
  'max' => 1000,
1842
  'max' => 100,
1843
  ],
1844
  ],
1845
+ 'selectors' => [
1846
  $header_selector => 'height: {{SIZE}}{{UNIT}};',
1847
  ],
1848
+ 'condition' => [
1849
  "{$form_type}_fhc_po_toggle" => 'yes',
1850
  ],
1851
  ] );
1852
  $this->add_responsive_control( "{$form_type}_fhc_margin", [
1853
+ 'label' => __( 'Header Margin', 'essential-addons-for-elementor-lite' ),
1854
  'type' => Controls_Manager::DIMENSIONS,
1855
  'size_units' => [
1856
  'px',
1860
  'selectors' => [
1861
  $header_selector => $this->apply_dim( 'margin' ),
1862
  ],
1863
+ 'condition' => [
1864
  "{$form_type}_fhc_po_toggle" => 'yes',
1865
  ],
1866
  ] );
1867
  $this->add_responsive_control( "{$form_type}_fhc_padding", [
1868
+ 'label' => __( 'Header Padding', 'essential-addons-for-elementor-lite' ),
1869
  'type' => Controls_Manager::DIMENSIONS,
1870
  'size_units' => [
1871
  'px',
1875
  'selectors' => [
1876
  $header_selector => $this->apply_dim( 'padding' ),
1877
  ],
1878
+ 'condition' => [
1879
  "{$form_type}_fhc_po_toggle" => 'yes',
1880
  ],
1881
  ] );
1889
  ],
1890
  ] );
1891
  $this->add_control( "{$form_type}_fhc_border_radius", [
1892
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
1893
  'type' => Controls_Manager::DIMENSIONS,
1894
  'size_units' => [
1895
  'px',
1903
  ],
1904
  ] );
1905
  $this->add_group_control( Group_Control_Background::get_type(), [
1906
+ 'name' => "{$form_type}_form_header_bg",
1907
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
1908
+ 'types' => [
1909
  'classic',
1910
  'gradient',
1911
  ],
1912
+ 'selector' => $header_selector,
1913
+ 'condition' => [
1914
  "{$form_type}_fhc_po_toggle" => 'yes',
1915
  ],
1916
  ] );
1917
  $this->end_popover();
1918
 
1919
 
 
 
 
1920
  $this->add_control( "{$form_type}_form_img_po_toggle", [
1921
+ 'label' => __( 'Form Illustration', 'essential-addons-for-elementor-lite' ),
1922
  'type' => Controls_Manager::POPOVER_TOGGLE,
1923
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
1924
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
1925
  'return_value' => 'yes',
1926
+ 'separator' => 'before',
1927
  ] );
1928
  $this->start_popover();
1929
  $this->add_responsive_control( "{$form_type}_form_img_width", [
1930
+ 'label' => esc_html__( 'Width', 'essential-addons-for-elementor-lite' ),
1931
  'type' => Controls_Manager::SLIDER,
1932
  'size_units' => [
1933
  'px',
1970
  ],
1971
  ] );
1972
  $this->add_responsive_control( "{$form_type}_form_img_height", [
1973
+ 'label' => esc_html__( 'Height', 'essential-addons-for-elementor-lite' ),
1974
  'type' => Controls_Manager::SLIDER,
1975
  'size_units' => [
1976
  'px',
2008
  ],
2009
  ] );
2010
  $this->add_control( "{$form_type}_form_img_margin", [
2011
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2012
  'type' => Controls_Manager::DIMENSIONS,
2013
  'size_units' => [
2014
  'px',
2023
  ],
2024
  ] );
2025
  $this->add_control( "{$form_type}_form_img_padding", [
2026
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2027
  'type' => Controls_Manager::DIMENSIONS,
2028
  'size_units' => [
2029
  'px',
2045
  ],
2046
  ] );
2047
  $this->add_control( "{$form_type}_form_img_border_radius", [
2048
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2049
  'type' => Controls_Manager::DIMENSIONS,
2050
  'size_units' => [
2051
  'px',
2060
  ] );
2061
  $this->end_popover();
2062
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
2063
+ 'label' => __( 'Illustration Shadow', 'essential-addons-for-elementor-lite' ),
2064
  'name' => "{$form_type}_form_img_shadow",
2065
  'selector' => $illustration_selector,
2066
  'exclude' => [
2068
  ],
2069
  ] );
2070
  $this->add_control( "{$form_type}_form_logo_po_toggle", [
2071
+ 'label' => __( 'Form Logo', 'essential-addons-for-elementor-lite' ),
2072
  'type' => Controls_Manager::POPOVER_TOGGLE,
2073
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2074
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2075
  'return_value' => 'yes',
2076
  'separator' => 'before',
2077
  ] );
2078
  $this->start_popover();
2079
  $this->add_responsive_control( "{$form_type}_form_logo_width", [
2080
+ 'label' => esc_html__( 'width', 'essential-addons-for-elementor-lite' ),
2081
+ 'type' => Controls_Manager::SLIDER,
2082
+ 'size_units' => [
2083
  'px',
2084
  'rem',
2085
  '%',
2086
  ],
2087
+ 'range' => [
2088
  'px' => [
2089
  'min' => 0,
2090
  'max' => 1000,
2100
  'max' => 100,
2101
  ],
2102
  ],
2103
+ 'default' => [
2104
  'unit' => 'px',
2105
  'size' => 100,
2106
  ],
2107
+ 'selectors' => [
2108
  $logo_selector => 'width: {{SIZE}}{{UNIT}};',
2109
  ],
2110
+ 'condition' => [
2111
  "{$form_type}_form_logo_po_toggle" => 'yes',
2112
  ],
2113
  ] );
2114
  $this->add_responsive_control( "{$form_type}_form_logo_height", [
2115
+ 'label' => esc_html__( 'height', 'essential-addons-for-elementor-lite' ),
2116
+ 'type' => Controls_Manager::SLIDER,
2117
+ 'size_units' => [
2118
  'px',
2119
  'rem',
2120
  '%',
2121
  ],
2122
+ 'range' => [
2123
  'px' => [
2124
  'min' => 0,
2125
  'max' => 1000,
2135
  'max' => 100,
2136
  ],
2137
  ],
2138
+ 'default' => [
2139
  'unit' => 'px',
2140
  'size' => 100,
2141
  ],
2142
+ 'selectors' => [
2143
  $logo_selector => 'height: {{SIZE}}{{UNIT}};',
2144
  ],
2145
+ 'condition' => [
2146
  "{$form_type}_form_logo_po_toggle" => 'yes',
2147
  ],
2148
  ] );
2149
  $this->add_responsive_control( "{$form_type}_form_logo_margin", [
2150
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2151
  'type' => Controls_Manager::DIMENSIONS,
2152
  'size_units' => [
2153
  'px',
2162
  ],
2163
  ] );
2164
  $this->add_responsive_control( "{$form_type}_form_logo_padding", [
2165
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2166
  'type' => Controls_Manager::DIMENSIONS,
2167
  'size_units' => [
2168
  'px',
2185
  ],
2186
  ] );
2187
  $this->add_control( "{$form_type}_form_logo_border_radius", [
2188
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2189
  'type' => Controls_Manager::DIMENSIONS,
2190
  'size_units' => [
2191
  'px',
2200
  ] );
2201
  $this->end_popover();
2202
  $this->add_group_control( Group_Control_Box_Shadow::get_type(), [
2203
+ 'label' => __( 'Logo Shadow', 'essential-addons-for-elementor-lite' ),
2204
  'name' => "{$form_type}_form_logo_shadow",
2205
  'selector' => $logo_selector,
2206
  'exclude' => [
2209
  ] );
2210
 
2211
 
 
2212
  /*-- Title Typography --*/
2213
  $this->add_control( "{$form_type}_form_title_po_toggle", [
2214
+ 'label' => __( 'Title', 'essential-addons-for-elementor-lite' ),
2215
  'type' => Controls_Manager::POPOVER_TOGGLE,
2216
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2217
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2218
  'return_value' => 'yes',
2219
  'separator' => 'before',
2220
  ] );
2221
  $this->start_popover();
2222
  $this->add_responsive_control( "{$form_type}_form_title_margin", [
2223
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2224
  'type' => Controls_Manager::DIMENSIONS,
2225
  'size_units' => [
2226
  'px',
2235
  ],
2236
  ] );
2237
  $this->add_responsive_control( "{$form_type}_form_title_padding", [
2238
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2239
  'type' => Controls_Manager::DIMENSIONS,
2240
  'size_units' => [
2241
  'px',
2250
  ],
2251
  ] );
2252
  $this->add_control( "{$form_type}_form_title_color", [
2253
+ 'label' => __( 'Color', 'essential-addons-for-elementor-lite' ),
2254
  'type' => Controls_Manager::COLOR,
2255
  'selectors' => [
2256
  $title_selector => 'color: {{VALUE}};',
2260
  ],
2261
  ] );
2262
  $this->add_control( "{$form_type}_form_title_bg_color", [
2263
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
2264
  'type' => Controls_Manager::COLOR,
2265
  'selectors' => [
2266
  $title_selector => 'background: {{VALUE}};',
2279
  ],
2280
  ] );
2281
  $this->add_control( "{$form_type}_form_title_border_radius", [
2282
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2283
  'type' => Controls_Manager::DIMENSIONS,
2284
  'size_units' => [
2285
  'px',
2296
  $this->end_popover();
2297
  $this->add_group_control( Group_Control_Typography::get_type(), [
2298
  'name' => "{$form_type}_form_title_typo",
2299
+ 'label' => __( 'Title Typography', 'essential-addons-for-elementor-lite' ),
2300
  'selector' => $title_selector,
2301
  ] );
2302
 
2303
  /*Subtitle----*/
2304
  $this->add_control( "{$form_type}_form_subtitle_po_toggle", [
2305
+ 'label' => __( 'Subtitle', 'essential-addons-for-elementor-lite' ),
2306
  'type' => Controls_Manager::POPOVER_TOGGLE,
2307
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2308
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2309
  'return_value' => 'yes',
2310
  'separator' => 'before',
2311
  ] );
2312
  $this->start_popover();
2313
  $this->add_control( "{$form_type}_form_subtitle_margin", [
2314
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2315
  'type' => Controls_Manager::DIMENSIONS,
2316
  'size_units' => [
2317
  'px',
2326
  ],
2327
  ] );
2328
  $this->add_control( "{$form_type}_form_subtitle_padding", [
2329
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2330
  'type' => Controls_Manager::DIMENSIONS,
2331
  'size_units' => [
2332
  'px',
2341
  ],
2342
  ] );
2343
  $this->add_control( "{$form_type}_form_subtitle_color", [
2344
+ 'label' => __( 'Color', 'essential-addons-for-elementor-lite' ),
2345
  'type' => Controls_Manager::COLOR,
2346
  'selectors' => [
2347
  $subtitle_selector => 'color: {{VALUE}};',
2351
  ],
2352
  ] );
2353
  $this->add_control( "{$form_type}_form_subtitle_bg_color", [
2354
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
2355
  'type' => Controls_Manager::COLOR,
2356
  'selectors' => [
2357
  $subtitle_selector => 'background: {{VALUE}};',
2370
  ],
2371
  ] );
2372
  $this->add_control( "{$form_type}_form_subtitle_border_radius", [
2373
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2374
  'type' => Controls_Manager::DIMENSIONS,
2375
  'size_units' => [
2376
  'px',
2387
  $this->end_popover();
2388
  $this->add_group_control( Group_Control_Typography::get_type(), [
2389
  'name' => "{$form_type}_form_subtitle_typo",
2390
+ 'label' => __( 'Subtitle Typography', 'essential-addons-for-elementor-lite' ),
2391
  'selector' => $subtitle_selector,
2392
  ] );
2393
 
2396
 
2397
  protected function init_style_input_fields_controls() {
2398
  $this->start_controls_section( 'section_style_form_fields', [
2399
+ 'label' => __( 'Form Fields', 'essential-addons-for-elementor-lite' ),
2400
  'tab' => Controls_Manager::TAB_STYLE,
2401
  ] );
2402
  $this->add_control( 'eael_form_field_po_toggle', [
2403
+ 'label' => __( 'Spacing', 'essential-addons-for-elementor-lite' ),
2404
  'type' => Controls_Manager::POPOVER_TOGGLE,
2405
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2406
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2407
  'return_value' => 'yes',
2408
  ] );
2409
 
2410
  $this->start_popover();
2411
+ $this->add_control( 'eael_form_input_fields_heading', [
2412
+ 'type' => Controls_Manager::HEADING,
2413
+ 'label' => __( 'Form Input Fields', 'essential-addons-for-elementor-lite' ),
2414
+ ] );
2415
  $this->add_responsive_control( "eael_form_field_margin", [
2416
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2417
  'type' => Controls_Manager::DIMENSIONS,
2418
  'size_units' => [
2419
  'px',
2427
  'eael_form_field_po_toggle' => 'yes',
2428
  ],
2429
  ] );
 
2430
  $this->add_responsive_control( "eael_form_field_padding", [
2431
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2432
  'type' => Controls_Manager::DIMENSIONS,
2433
  'size_units' => [
2434
  'px',
2442
  'eael_form_field_po_toggle' => 'yes',
2443
  ],
2444
  ] );
2445
+ $this->add_control( 'eael_form_rm_fields_heading', [
2446
+ 'type' => Controls_Manager::HEADING,
2447
+ 'label' => __( 'Remember Me Field', 'essential-addons-for-elementor-lite' ),
2448
+ 'separator' => 'before',
2449
+ ] );
2450
+ $this->add_responsive_control( "eael_form_rm_field_margin", [
2451
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2452
+ 'type' => Controls_Manager::DIMENSIONS,
2453
+ 'size_units' => [
2454
+ 'px',
2455
+ 'em',
2456
+ '%',
2457
+ ],
2458
+ 'selectors' => [
2459
+ "{{WRAPPER}} .lr-form-wrapper .eael-forever-forget" => $this->apply_dim( 'margin' ),
2460
+ ],
2461
+ 'condition' => [
2462
+ 'eael_form_field_po_toggle' => 'yes',
2463
+ ],
2464
+ ] );
2465
+ $this->add_responsive_control( "eael_form_rm_field_padding", [
2466
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2467
+ 'type' => Controls_Manager::DIMENSIONS,
2468
+ 'size_units' => [
2469
+ 'px',
2470
+ 'em',
2471
+ '%',
2472
+ ],
2473
+ 'selectors' => [
2474
+ "{{WRAPPER}} .lr-form-wrapper .eael-forever-forget" => $this->apply_dim( 'padding' ),
2475
+ ],
2476
+ 'condition' => [
2477
+ 'eael_form_field_po_toggle' => 'yes',
2478
+ ],
2479
+ ] );
2480
  $this->end_popover();
2481
  $this->add_group_control( Group_Control_Typography::get_type(), [
2482
  'name' => "eael_fields_typography",
2483
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control",
2484
  ] );
2485
  $this->add_responsive_control( "ph_align", [
2486
+ 'label' => __( 'Text Alignment', 'essential-addons-for-elementor-lite' ),
2487
  'type' => Controls_Manager::CHOOSE,
2488
  'options' => [
2489
+ 'left' => [
2490
+ 'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
2491
  'icon' => 'eicon-h-align-left',
2492
  ],
2493
  'center' => [
2494
+ 'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
2495
  'icon' => 'eicon-h-align-center',
2496
  ],
2497
+ 'right' => [
2498
+ 'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
2499
  'icon' => 'eicon-h-align-right',
2500
  ],
2501
  ],
2506
  ] );
2507
  $this->add_control( 'eael_form_label_colors_heading', [
2508
  'type' => Controls_Manager::HEADING,
2509
+ 'label' => __( 'Colors & Border', 'essential-addons-for-elementor-lite' ),
2510
  'separator' => 'before',
2511
  ] );
2512
  $this->start_controls_tabs( "tabs_form_fields_style" );
2513
 
2514
  /*-----Form Input Fields NORMAL state------ */
2515
  $this->start_controls_tab( "tab_form_field_style_normal", [
2516
+ 'label' => __( 'Normal', 'essential-addons-for-elementor-lite' ),
2517
  ] );
2518
  $this->add_control( 'eael_field_color', [
2519
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
2520
  'type' => Controls_Manager::COLOR,
2521
  'selectors' => [
2522
  "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control" => 'color: {{VALUE}};',
2523
  ],
2524
  ] );
2525
  $this->add_control( 'eael_field_placeholder_color', [
2526
+ 'label' => __( 'Placeholder Color', 'essential-addons-for-elementor-lite' ),
2527
  'type' => Controls_Manager::COLOR,
2528
  'selectors' => [
2529
  "{{WRAPPER}} .lr-form-wrapper input.eael-lr-form-control::placeholder" => 'color: {{VALUE}};',
2530
  ],
2531
  ] );
2532
  $this->add_control( 'eael_field_bg_color', [
2533
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
2534
  'type' => Controls_Manager::COLOR,
2535
  'default' => '#ffffff',
2536
  'selectors' => [
2543
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control",
2544
  ] );
2545
  $this->add_control( "eael_field_border_radius", [
2546
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2547
  'type' => Controls_Manager::DIMENSIONS,
2548
  'size_units' => [
2549
  'px',
2557
  $this->end_controls_tab();
2558
 
2559
  $this->start_controls_tab( "tab_form_field_style_active", [
2560
+ 'label' => __( 'Focus', 'essential-addons-for-elementor-lite' ),
2561
  ] );
2562
 
2563
  $this->add_control( 'eael_field_placeholder_color_active', [
2564
+ 'label' => __( 'Placeholder Color', 'essential-addons-for-elementor-lite' ),
2565
  'type' => Controls_Manager::COLOR,
2566
  'selectors' => [
2567
  "{{WRAPPER}} .lr-form-wrapper input.eael-lr-form-control:focus::placeholder" => 'color: {{VALUE}};',
2568
  ],
2569
  ] );
2570
  $this->add_control( 'eael_field_bg_color_active', [
2571
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
2572
  'type' => Controls_Manager::COLOR,
2573
  'default' => '#ffffff',
2574
  'selectors' => [
2580
  'selector' => "{{WRAPPER}} .lr-form-wrapper .eael-lr-form-control:focus",
2581
  ] );
2582
  $this->add_control( "eael_field_border_radius_focus", [
2583
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2584
  'type' => Controls_Manager::DIMENSIONS,
2585
  'size_units' => [
2586
  'px',
2597
 
2598
  protected function init_style_input_labels_controls() {
2599
  $this->start_controls_section( 'section_style_form_labels', [
2600
+ 'label' => __( 'Form Labels', 'essential-addons-for-elementor-lite' ),
2601
  'tab' => Controls_Manager::TAB_STYLE,
2602
  ] );
2603
  $this->add_control( 'eael_form_label_po_toggle', [
2604
+ 'label' => __( 'Spacing', 'essential-addons-for-elementor-lite' ),
2605
  'type' => Controls_Manager::POPOVER_TOGGLE,
2606
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2607
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2608
  'return_value' => 'yes',
2609
  ] );
2610
 
2611
  $this->start_popover();
2612
  $this->add_responsive_control( "eael_form_label_margin", [
2613
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2614
  'type' => Controls_Manager::DIMENSIONS,
2615
  'size_units' => [
2616
  'px',
2625
  ],
2626
  ] );
2627
  $this->add_responsive_control( "eael_form_label_padding", [
2628
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2629
  'type' => Controls_Manager::DIMENSIONS,
2630
  'size_units' => [
2631
  'px',
2646
  ] );
2647
 
2648
  $this->add_control( 'eael_form_label_c_po_toggle', [
2649
+ 'label' => __( 'Colors', 'essential-addons-for-elementor-lite' ),
2650
  'type' => Controls_Manager::POPOVER_TOGGLE,
2651
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2652
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2653
  'return_value' => 'yes',
2654
  ] );
2655
 
2656
  $this->start_popover();
2657
  $this->add_control( 'eael_label_color', [
2658
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
2659
  'type' => Controls_Manager::COLOR,
2660
  'selectors' => [
2661
  "{{WRAPPER}} .lr-form-wrapper .eael-field-label" => 'color: {{VALUE}};',
2665
  ],
2666
  ] );
2667
  $this->add_control( 'eael_label_bg_color', [
2668
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
2669
  'type' => Controls_Manager::COLOR,
2670
  'default' => '#ffffff',
2671
  'selectors' => [
2678
  $this->end_popover();
2679
 
2680
  $this->add_control( 'eael_form_label_b_po_toggle', [
2681
+ 'label' => __( 'Border', 'essential-addons-for-elementor-lite' ),
2682
  'type' => Controls_Manager::POPOVER_TOGGLE,
2683
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2684
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2685
  'return_value' => 'yes',
2686
  ] );
2687
 
2694
  ],
2695
  ] );
2696
  $this->add_control( "eael_label_border_radius", [
2697
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
2698
  'type' => Controls_Manager::DIMENSIONS,
2699
  'size_units' => [
2700
  'px',
2710
  $this->end_popover();
2711
 
2712
  $this->add_control( 'rmark_po_toggle', [
2713
+ 'label' => __( 'Required Mark Style', 'essential-addons-for-elementor-lite' ),
2714
  'type' => Controls_Manager::POPOVER_TOGGLE,
2715
  'condition' => [
2716
  'show_labels' => 'yes',
2720
 
2721
  $this->start_popover();
2722
  $this->add_control( 'rmark_sign', [
2723
+ 'label' => __( 'Mark Sign', 'essential-addons-for-elementor-lite' ),
2724
  'type' => Controls_Manager::TEXT,
2725
  'default' => '*',
2726
  'placeholder' => 'Enter * or (required) etc.',
2732
  ],
2733
  ] );
2734
  $this->add_control( "rmark_size", [
2735
+ 'label' => esc_html__( 'Size', 'essential-addons-for-elementor-lite' ),
2736
  'type' => Controls_Manager::SLIDER,
2737
  'size_units' => [
2738
  'px',
2754
  ],
2755
  ] );
2756
  $this->add_control( "rmakr_color", [
2757
+ 'label' => __( 'Color', 'essential-addons-for-elementor-lite' ),
2758
  'type' => Controls_Manager::COLOR,
2759
  'selectors' => [
2760
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group label.mark-required:after" => 'color: {{VALUE}};',
2765
  ] );
2766
 
2767
  $this->add_responsive_control( "rmark_valign", [
2768
+ 'label' => esc_html__( 'Vertical Alignment', 'essential-addons-for-elementor-lite' ),
2769
  'type' => Controls_Manager::SLIDER,
2770
  'range' => [
2771
  'px' => [
2786
  ],
2787
  ] );
2788
  $this->add_responsive_control( "rmark_halign", [
2789
+ 'label' => esc_html__( 'Horizontal Alignment', 'essential-addons-for-elementor-lite' ),
2790
  'type' => Controls_Manager::SLIDER,
2791
  'range' => [
2792
  'px' => [
2809
 
2810
  $this->end_popover();
2811
  $this->add_control( 'lpv_po_toggle', [
2812
+ 'label' => __( 'Password Visibility Style', 'essential-addons-for-elementor-lite' ),
2813
  'type' => Controls_Manager::POPOVER_TOGGLE,
2814
  'condition' => [
2815
  'password_toggle' => 'yes',
2818
  $this->start_popover();
2819
 
2820
  $this->add_responsive_control( "lpv_size", [
2821
+ 'label' => esc_html__( 'Icon Size', 'essential-addons-for-elementor-lite' ),
2822
  'type' => Controls_Manager::SLIDER,
2823
  'size_units' => [
2824
  'px',
2840
  ],
2841
  ] );
2842
  $this->add_control( "lvp_open_color", [
2843
+ 'label' => __( 'Open Eye Color', 'essential-addons-for-elementor-lite' ),
2844
  'type' => Controls_Manager::COLOR,
2845
  'selectors' => [
2846
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group .dashicons-visibility" => 'color: {{VALUE}};',
2850
  ],
2851
  ] );
2852
  $this->add_control( "lvp_close_color", [
2853
+ 'label' => __( 'Close Eye Color', 'essential-addons-for-elementor-lite' ),
2854
  'type' => Controls_Manager::COLOR,
2855
  'selectors' => [
2856
  "{{WRAPPER}} .eael-lr-form-wrapper .eael-lr-form-group .dashicons-hidden" => 'color: {{VALUE}};',
2861
  ] );
2862
 
2863
  $this->add_responsive_control( "lpv_valign", [
2864
+ 'label' => esc_html__( 'Vertical Alignment', 'essential-addons-for-elementor-lite' ),
2865
  'type' => Controls_Manager::SLIDER,
2866
  'range' => [
2867
  'px' => [
2882
  ],
2883
  ] );
2884
  $this->add_responsive_control( "lpv_halign", [
2885
+ 'label' => esc_html__( 'Horizontal Alignment', 'essential-addons-for-elementor-lite' ),
2886
  'type' => Controls_Manager::SLIDER,
2887
  'range' => [
2888
  'px' => [
2924
  $this->_init_link_style( 'register' );
2925
  }
2926
 
2927
+ protected function init_style_login_recaptcha_controls() {
2928
+ $this->_init_recaptcha_style( 'login' );
2929
+ }
2930
+
2931
+ protected function init_style_register_recaptcha_controls() {
2932
+ $this->_init_recaptcha_style( 'register' );
2933
+ }
2934
+
2935
  /**
2936
  * Print style controls for a specific type of button.
2937
  *
2939
  */
2940
  protected function _init_button_style( $button_type = 'login' ) {
2941
  $this->start_controls_section( "section_style_{$button_type}_btn", [
2942
+ 'label' => sprintf( __( '%s Button', 'essential-addons-for-elementor-lite' ), ucfirst( $button_type ) ),
2943
  'tab' => Controls_Manager::TAB_STYLE,
2944
  'conditions' => $this->get_form_controls_display_condition( $button_type ),
2945
  ] );
2946
  $this->add_control( "{$button_type}_btn_pot", [
2947
+ 'label' => __( 'Spacing', 'essential-addons-for-elementor-lite' ),
2948
  'type' => Controls_Manager::POPOVER_TOGGLE,
2949
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
2950
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
2951
  'return_value' => 'yes',
2952
  ] );
2953
  $this->start_popover();
2954
  $this->add_responsive_control( "{$button_type}_btn_margin", [
2955
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
2956
  'type' => Controls_Manager::DIMENSIONS,
2957
  'size_units' => [
2958
  'px',
2967
  ],
2968
  ] );
2969
  $this->add_responsive_control( "{$button_type}_btn_padding", [
2970
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
2971
  'type' => Controls_Manager::DIMENSIONS,
2972
  'size_units' => [
2973
  'px',
2987
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn",
2988
  ] );
2989
  $this->add_responsive_control( "{$button_type}_btn_d_type", [
2990
+ 'label' => __( 'Display as', 'essential-addons-for-elementor-lite' ),
2991
  'type' => Controls_Manager::SELECT,
2992
  'options' => [
2993
+ 'row' => __( 'Inline', 'essential-addons-for-elementor-lite' ),
2994
+ 'column' => __( 'Block', 'essential-addons-for-elementor-lite' ),
2995
  ],
2996
  'default' => 'row',
2997
  'selectors' => [
3002
 
3003
 
3004
  $this->add_responsive_control( "{$button_type}_btn_jc", [
3005
+ 'label' => __( 'Justify Content', 'essential-addons-for-elementor-lite' ),
3006
  'type' => Controls_Manager::SELECT,
3007
  'options' => [
3008
+ 'flex-start' => __( 'Start', 'essential-addons-for-elementor-lite' ),
3009
+ 'flex-end' => __( 'End', 'essential-addons-for-elementor-lite' ),
3010
+ 'center' => __( 'Center', 'essential-addons-for-elementor-lite' ),
3011
+ 'space-between' => __( 'Space Between', 'essential-addons-for-elementor-lite' ),
3012
+ 'space-around' => __( 'Space Around', 'essential-addons-for-elementor-lite' ),
3013
+ 'space-evenly' => __( 'Space Evenly', 'essential-addons-for-elementor-lite' ),
3014
  ],
3015
  'default' => 'space-between',
3016
  'condition' => [
3021
  ],
3022
  ] );
3023
  $this->add_responsive_control( "{$button_type}_btn_align", [
3024
+ 'label' => __( 'Alignment', 'essential-addons-for-elementor-lite' ),
3025
  'type' => Controls_Manager::CHOOSE,
3026
  'options' => [
3027
  'mr-auto' => [
3028
+ 'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
3029
  'icon' => 'eicon-h-align-left',
3030
  ],
3031
  'ml-auto mr-auto' => [
3032
+ 'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
3033
  'icon' => 'eicon-h-align-center',
3034
  ],
3035
  'ml-auto' => [
3036
+ 'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
3037
  'icon' => 'eicon-h-align-right',
3038
  ],
3039
  ],
3044
  ] );
3045
  $this->add_control( "tabs_{$button_type}_btn_colors_heading", [
3046
  'type' => Controls_Manager::HEADING,
3047
+ 'label' => __( 'Colors & Border', 'essential-addons-for-elementor-lite' ),
3048
  'separator' => 'before',
3049
  ] );
3050
 
3051
  $this->start_controls_tabs( "tabs_{$button_type}_btn_style" );
3052
  /*-----Login Button NORMAL state------ */
3053
  $this->start_controls_tab( "tab_{$button_type}_btn_normal", [
3054
+ 'label' => __( 'Normal', 'essential-addons-for-elementor-lite' ),
3055
  ] );
3056
  $this->add_control( "{$button_type}_btn_color", [
3057
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
3058
  'type' => Controls_Manager::COLOR,
3059
  'selectors' => [
3060
  "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn" => 'color: {{VALUE}};',
3062
  ] );
3063
  $this->add_group_control( Group_Control_Background::get_type(), [
3064
  'name' => "{$button_type}_btn_bg_color",
3065
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
3066
  'types' => [
3067
  'classic',
3068
  'gradient',
3074
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn",
3075
  ] );
3076
  $this->add_control( "{$button_type}_btn_border_radius", [
3077
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
3078
  'type' => Controls_Manager::DIMENSIONS,
3079
  'size_units' => [
3080
  'px',
3088
 
3089
  /*-----Login Button HOVER state------ */
3090
  $this->start_controls_tab( "tab_{$button_type}_button_hover", [
3091
+ 'label' => __( 'Hover', 'essential-addons-for-elementor-lite' ),
3092
  ] );
3093
  $this->add_control( "{$button_type}_button_color_hover", [
3094
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
3095
  'type' => Controls_Manager::COLOR,
3096
  'selectors' => [
3097
  "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn:hover" => 'color: {{VALUE}};',
3099
  ] );
3100
  $this->add_group_control( Group_Control_Background::get_type(), [
3101
  'name' => "{$button_type}_btn_bg_color_hover",
3102
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
3103
  'types' => [
3104
  'classic',
3105
  'gradient',
3111
  'selector' => "{{WRAPPER}} .eael-{$button_type}-form .eael-lr-btn:hover",
3112
  ] );
3113
  $this->add_control( "{$button_type}_btn_border_radius_hover", [
3114
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
3115
  'type' => Controls_Manager::DIMENSIONS,
3116
  'size_units' => [
3117
  'px',
3126
  /*-----ends Button tabs--------*/
3127
 
3128
  $this->add_responsive_control( "{$button_type}_btn_width", [
3129
+ 'label' => esc_html__( 'Button width', 'essential-addons-for-elementor-lite' ),
3130
  'type' => Controls_Manager::SLIDER,
3131
  'size_units' => [
3132
  'px',
3149
  'separator' => 'before',
3150
  ] );
3151
  $this->add_responsive_control( "{$button_type}_btn_height", [
3152
+ 'label' => esc_html__( 'Button Height', 'essential-addons-for-elementor-lite' ),
3153
  'type' => Controls_Manager::SLIDER,
3154
  'size_units' => [
3155
  'px',
3173
  $this->end_controls_section();
3174
  }
3175
 
3176
+ /**
3177
+ * Print style controls for a specific type of reCAPTCHA.
3178
+ *
3179
+ * @param string $form_type the type of the reCAPTCHA. accepts login or register.
3180
+ */
3181
+ protected function _init_recaptcha_style( $form_type = 'login' ) {
3182
+ $this->start_controls_section( "section_style_{$form_type}_rc", [
3183
+ 'label' => sprintf( __( '%s Form reCAPTCHA', 'essential-addons-for-elementor-lite' ), ucfirst( $form_type ) ),
3184
+ 'tab' => Controls_Manager::TAB_STYLE,
3185
+ 'condition' => [
3186
+ "enable_{$form_type}_recaptcha" => 'yes',
3187
+ ],
3188
+ ] );
3189
+ $this->add_responsive_control( "{$form_type}_rc_margin", [
3190
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
3191
+ 'type' => Controls_Manager::DIMENSIONS,
3192
+ 'size_units' => [
3193
+ 'px',
3194
+ 'em',
3195
+ '%',
3196
+ ],
3197
+ 'selectors' => [
3198
+ "{{WRAPPER}} .eael-{$form_type}-form .eael-recaptcha-wrapper" => $this->apply_dim( 'margin' ),
3199
+ ],
3200
+
3201
+ ] );
3202
+
3203
+ $this->add_control( "{$form_type}_rc_theme", [
3204
+ 'label' => __( 'Theme', 'essential-addons-for-elementor-lite' ),
3205
+ 'type' => Controls_Manager::SELECT,
3206
+ 'options' => [
3207
+ 'light' => __( 'Light', 'essential-addons-for-elementor-lite' ),
3208
+ 'dark' => __( 'Dark', 'essential-addons-for-elementor-lite' ),
3209
+ ],
3210
+ 'default' => 'light',
3211
+ ] );
3212
+
3213
+ $this->add_control( "{$form_type}_rc_size", [
3214
+ 'label' => __( 'Size', 'essential-addons-for-elementor-lite' ),
3215
+ 'type' => Controls_Manager::SELECT,
3216
+ 'options' => [
3217
+ 'normal' => __( 'Normal', 'essential-addons-for-elementor-lite' ),
3218
+ 'compact' => __( 'Compact', 'essential-addons-for-elementor-lite' ),
3219
+ ],
3220
+ 'default' => 'normal',
3221
+ ] );
3222
+
3223
+ $this->end_controls_section();
3224
+ }
3225
+
3226
  /**
3227
  * Print style controls for a specific type of link on register or login form.
3228
  *
3229
  * @param string $form_type the type of form where the link is being shown. accepts login or register.
3230
  */
3231
  protected function _init_link_style( $form_type = 'login' ) {
3232
+ $form_name = 'login' === $form_type ? __( 'Register', 'essential-addons-for-elementor-lite' ) : __( 'Login', 'essential-addons-for-elementor-lite' );
3233
  $this->start_controls_section( "section_style_{$form_type}_link", [
3234
+ 'label' => sprintf( __( '%s Link', 'essential-addons-for-elementor-lite' ), ucfirst( $form_name ) ),
3235
  'tab' => Controls_Manager::TAB_STYLE,
3236
  'condition' => [
3237
  "show_{$form_type}_link" => 'yes',
3239
  ] );
3240
  $this->add_control( "{$form_type}_link_style_notice", [
3241
  'type' => Controls_Manager::RAW_HTML,
3242
+ 'raw' => sprintf( __( 'Here you can style the %s link displayed on the %s Form', 'essential-addons-for-elementor-lite' ), $form_name, ucfirst( $form_type ) ),
3243
  'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
3244
  ] );
3245
  $this->add_control( "{$form_type}_link_pot", [
3246
+ 'label' => __( 'Spacing', 'essential-addons-for-elementor-lite' ),
3247
  'type' => Controls_Manager::POPOVER_TOGGLE,
3248
+ 'label_off' => __( 'Default', 'essential-addons-for-elementor-lite' ),
3249
+ 'label_on' => __( 'Custom', 'essential-addons-for-elementor-lite' ),
3250
  'return_value' => 'yes',
3251
  ] );
3252
  $this->start_popover();
3253
  $this->add_responsive_control( "{$form_type}_link_margin", [
3254
+ 'label' => __( 'Margin', 'essential-addons-for-elementor-lite' ),
3255
  'type' => Controls_Manager::DIMENSIONS,
3256
  'size_units' => [
3257
  'px',
3266
  ],
3267
  ] );
3268
  $this->add_responsive_control( "{$form_type}_link_padding", [
3269
+ 'label' => __( 'Padding', 'essential-addons-for-elementor-lite' ),
3270
  'type' => Controls_Manager::DIMENSIONS,
3271
  'size_units' => [
3272
  'px',
3287
  ] );
3288
 
3289
  $this->add_responsive_control( "{$form_type}_link_d_type", [
3290
+ 'label' => __( 'Display as', 'essential-addons-for-elementor-lite' ),
3291
  'type' => Controls_Manager::SELECT,
3292
  'options' => [
3293
+ 'row' => __( 'Inline', 'essential-addons-for-elementor-lite' ),
3294
+ 'column' => __( 'Block', 'essential-addons-for-elementor-lite' ),
3295
  ],
3296
  'default' => 'row',
3297
  'selectors' => [
3301
 
3302
 
3303
  $this->add_responsive_control( "{$form_type}_link_jc", [
3304
+ 'label' => __( 'Justify Content', 'essential-addons-for-elementor-lite' ),
3305
  'type' => Controls_Manager::SELECT,
3306
  'options' => [
3307
+ 'flex-start' => __( 'Start', 'essential-addons-for-elementor-lite' ),
3308
+ 'flex-end' => __( 'End', 'essential-addons-for-elementor-lite' ),
3309
+ 'center' => __( 'Center', 'essential-addons-for-elementor-lite' ),
3310
+ 'space-between' => __( 'Space Between', 'essential-addons-for-elementor-lite' ),
3311
+ 'space-around' => __( 'Space Around', 'essential-addons-for-elementor-lite' ),
3312
+ 'space-evenly' => __( 'Space Evenly', 'essential-addons-for-elementor-lite' ),
3313
  ],
3314
  'default' => 'center',
3315
  'condition' => [
3321
  ] );
3322
 
3323
  $this->add_responsive_control( "{$form_type}_link_ai", [
3324
+ 'label' => __( 'Align Items', 'essential-addons-for-elementor-lite' ),
3325
  'type' => Controls_Manager::SELECT,
3326
  'options' => [
3327
+ 'flex-start' => __( 'Start', 'essential-addons-for-elementor-lite' ),
3328
+ 'flex-end' => __( 'End', 'essential-addons-for-elementor-lite' ),
3329
+ 'center' => __( 'Center', 'essential-addons-for-elementor-lite' ),
3330
+ 'stretch' => __( 'Stretch', 'essential-addons-for-elementor-lite' ),
3331
+ 'baseline' => __( 'Baseline', 'essential-addons-for-elementor-lite' ),
3332
+ 'space-evenly' => __( 'Space Evenly', 'essential-addons-for-elementor-lite' ),
3333
  ],
3334
  'default' => 'center',
3335
  'condition' => [
3341
  ] );
3342
 
3343
  $this->add_responsive_control( "{$form_type}_link_align", [
3344
+ 'label' => __( 'Alignment', 'essential-addons-for-elementor-lite' ),
3345
  'type' => Controls_Manager::CHOOSE,
3346
  'options' => [
3347
  'mr-auto' => [
3348
+ 'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
3349
  'icon' => 'eicon-h-align-left',
3350
  ],
3351
  'ml-auto mr-auto' => [
3352
+ 'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
3353
  'icon' => 'eicon-h-align-center',
3354
  ],
3355
  'ml-auto' => [
3356
+ 'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
3357
  'icon' => 'eicon-h-align-right',
3358
  ],
3359
  ],
3365
 
3366
  $this->add_control( "tabs_{$form_type}_link_colors_heading", [
3367
  'type' => Controls_Manager::HEADING,
3368
+ 'label' => __( 'Colors & Border', 'essential-addons-for-elementor-lite' ),
3369
  'separator' => 'before',
3370
  ] );
3371
 
3372
  $this->start_controls_tabs( "tabs_{$form_type}_link_style" );
3373
  /*----- Link NORMAL state------ */
3374
  $this->start_controls_tab( "tab_{$form_type}_link_normal", [
3375
+ 'label' => __( 'Normal', 'essential-addons-for-elementor-lite' ),
3376
  ] );
3377
  $this->add_control( "{$form_type}_link_color", [
3378
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
3379
  'type' => Controls_Manager::COLOR,
3380
  'selectors' => [
3381
  "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link" => 'color: {{VALUE}};',
3383
  ] );
3384
  $this->add_group_control( Group_Control_Background::get_type(), [
3385
  'name' => "{$form_type}_link_bg_color",
3386
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
3387
  'types' => [
3388
  'classic',
3389
  'gradient',
3395
  'selector' => "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link",
3396
  ] );
3397
  $this->add_control( "{$form_type}_link_border_radius", [
3398
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
3399
  'type' => Controls_Manager::DIMENSIONS,
3400
  'size_units' => [
3401
  'px',
3409
 
3410
  /*-----Link HOVER state------ */
3411
  $this->start_controls_tab( "tab_{$form_type}_link_hover", [
3412
+ 'label' => __( 'Hover', 'essential-addons-for-elementor-lite' ),
3413
  ] );
3414
  $this->add_control( "{$form_type}_link_color_hover", [
3415
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite' ),
3416
  'type' => Controls_Manager::COLOR,
3417
  'selectors' => [
3418
  "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link:hover" => 'color: {{VALUE}};',
3420
  ] );
3421
  $this->add_group_control( Group_Control_Background::get_type(), [
3422
  'name' => "{$form_type}_link_bg_color_hover",
3423
+ 'label' => __( 'Background Color', 'essential-addons-for-elementor-lite' ),
3424
  'types' => [
3425
  'classic',
3426
  'gradient',
3432
  'selector' => "{{WRAPPER}} .eael-{$form_type}-form .eael-lr-link:hover",
3433
  ] );
3434
  $this->add_control( "{$form_type}_link_border_radius_hover", [
3435
+ 'label' => __( 'Border Radius', 'essential-addons-for-elementor-lite' ),
3436
  'type' => Controls_Manager::DIMENSIONS,
3437
  'size_units' => [
3438
  'px',
3446
  $this->end_controls_tabs();
3447
  /*-----ends Link tabs--------*/
3448
  $this->add_responsive_control( "{$form_type}_link_wrap_width", [
3449
+ 'label' => esc_html__( 'Link Container width', 'essential-addons-for-elementor-lite' ),
3450
  'type' => Controls_Manager::SLIDER,
3451
  'size_units' => [
3452
  'px',
3469
  'separator' => 'before',
3470
  ] );
3471
  $this->add_responsive_control( "{$form_type}_link_width", [
3472
+ 'label' => esc_html__( 'Link width', 'essential-addons-for-elementor-lite' ),
3473
  'type' => Controls_Manager::SLIDER,
3474
  'size_units' => [
3475
  'px',
3492
  ] );
3493
 
3494
  $this->add_responsive_control( "{$form_type}_link_height", [
3495
+ 'label' => esc_html__( 'Link Height', 'essential-addons-for-elementor-lite' ),
3496
  'type' => Controls_Manager::SLIDER,
3497
  'size_units' => [
3498
  'px',
3571
  $this->form_logo = Group_Control_Image_Size::get_attachment_image_src( $form_logo_id, 'lr_form_logo', $this->ds );
3572
  $this->form_logo_pos = ! empty( $this->ds['lr_form_logo_position'] ) ? $this->ds['lr_form_logo_position'] : 'inline';
3573
  ?>
3574
+ <div class="eael-login-registration-wrapper" data-is-ajax="<?php echo esc_attr( $this->get_settings_for_display( 'enable_ajax' ) ); ?>" data-widget-id="<?php echo esc_attr( $this->get_id() ); ?>" data-recaptcha-sitekey="<?php echo esc_attr( get_option( 'eael_recaptcha_sitekey' ) ); ?>">
3575
  <?php
3576
  $this->print_login_form();
3577
  $this->print_register_form();
3579
  </div>
3580
 
3581
  <?php
 
3582
  }
3583
 
3584
  protected function print_login_form() {
3588
  //Reg link related
3589
  $reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
3590
  $show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
3591
+ $reg_link_text = ! empty( $this->get_settings( 'registration_link_text' ) ) ? $this->get_settings( 'registration_link_text' ) : __( 'Register', 'essential-addons-for-elementor-lite' );
3592
  $parts = explode( "\n", $reg_link_text );
3593
  $reg_link_text = array_pop( $parts );
3594
  $reg_message = array_shift( $parts );
3615
  $display_label = ( 'none' !== $label_type );
3616
 
3617
  //Default label n placeholder
3618
+ $u_label = $u_ph = __( 'Username or Email Address', 'essential-addons-for-elementor-lite' );
3619
+ $p_label = $p_ph = __( 'Password', 'essential-addons-for-elementor-lite' );
3620
  // custom label n placeholder
3621
  if ( $is_custom_label ) {
3622
  $u_label = isset( $this->ds['login_user_label'] ) ? $this->ds['login_user_label'] : '';
3633
 
3634
  //Loss password
3635
  $show_lp = ( ! empty( $this->ds['show_lost_password'] ) && 'yes' === $this->ds['show_lost_password'] );
3636
+ $lp_text = ! empty( $this->ds['lost_password_text'] ) ? $this->ds['lost_password_text'] : __( 'Forgot password?', 'essential-addons-for-elementor-lite' );
3637
  $lp_link = sprintf( '<a href="%s">%s</a>', esc_attr( wp_lostpassword_url() ), $lp_text );
3638
  if ( ! empty( $this->ds['lost_password_link_type'] ) && 'custom' === $this->ds['lost_password_link_type'] ) {
3639
  $lp_url = ! empty( $this->ds['lost_password_url']['url'] ) ? $this->ds['lost_password_url']['url'] : wp_lostpassword_url();
3646
  $btn_align = isset( $this->ds['login_btn_align'] ) ? $this->ds['login_btn_align'] : '';
3647
  // btn alignment
3648
  $link_align = isset( $this->ds['login_link_align'] ) ? $this->ds['login_link_align'] : '';
3649
+ // reCAPTCHA style
3650
+ $rc_theme = isset( $this->ds['login_rc_theme'] ) ? $this->ds['login_rc_theme'] : 'light';
3651
+ $rc_size = isset( $this->ds['login_rc_size'] ) ? $this->ds['login_rc_size'] : 'normal';
3652
  ?>
3653
+ <section id="eael-login-form-wrapper" class="<?php echo esc_attr( $default_hide_class ); ?>" data-recaptcha-theme="<?php echo esc_attr( $rc_theme ); ?>" data-recaptcha-size="<?php echo esc_attr( $rc_size ); ?>">
3654
  <div class="eael-login-form-wrapper eael-lr-form-wrapper style-2">
3655
  <?php
3656
  if ( $show_logout_link && is_user_logged_in() && ! $this->in_editor ) {
3657
  /* translators: %s user display name */
3658
+ $logged_in_msg = sprintf( __( 'You are already logged in as %s. ', 'essential-addons-for-elementor-lite' ), wp_get_current_user()->display_name );
3659
+ printf( '%1$s (<a href="%2$s">%3$s</a>)', $logged_in_msg, esc_url( wp_logout_url() ), __( 'Logout', 'essential-addons-for-elementor-lite' ) );
3660
  } else {
3661
  if ( 'left' === $this->form_illustration_pos ) {
3662
  $this->print_form_illustration();
3696
  <?php if ( $show_rememberme ) { ?>
3697
  <p class="forget-menot">
3698
  <input name="eael-rememberme" type="checkbox" id="rememberme" value="forever">
3699
+ <label for="rememberme" class="eael-checkbox-label check-rememberme"><?php esc_html_e( 'Remember Me', 'essential-addons-for-elementor-lite' ); ?></label>
3700
  </p>
3701
  <?php }
3702
  if ( $show_lp ) {
3705
 
3706
  </div>
3707
 
3708
+ <?php
3709
  do_action( 'eael/login-register/before-recaptcha', $this );
3710
+ $this->print_recaptcha_node( 'login' );
3711
  do_action( 'eael/login-register/after-recaptcha', $this );
3712
  do_action( 'eael/login-register/before-login-footer', $this );
3713
+ ?>
3714
 
3715
 
3716
  <div class="eael-lr-footer">
3722
  <?php } ?>
3723
 
3724
  </div>
3725
+ <?php do_action( 'eael/login-register/after-login-footer', $this );
3726
+ ?>
3727
  <div class="eael-form-validation-container">
3728
  <?php $this->print_login_validation_errors(); ?>
3729
  </div>
3764
  $last_name_exists = 0;
3765
  $website_exists = 0;
3766
  $f_labels = [
3767
+ 'email' => __( 'Email', 'essential-addons-for-elementor-lite' ),
3768
+ 'password' => __( 'Password', 'essential-addons-for-elementor-lite' ),
3769
+ 'confirm_password' => __( 'Confirm Password', 'essential-addons-for-elementor-lite' ),
3770
+ 'user_name' => __( 'Username', 'essential-addons-for-elementor-lite' ),
3771
+ 'first_name' => __( 'First Name', 'essential-addons-for-elementor-lite' ),
3772
+ 'last_name' => __( 'Last Name', 'essential-addons-for-elementor-lite' ),
3773
+ 'website' => __( 'Website', 'essential-addons-for-elementor-lite' ),
3774
  ];
3775
  $repeated_f_labels = [];
3776
 
3778
  //Login link related
3779
  $lgn_link_action = ! empty( $this->ds['login_link_action'] ) ? $this->ds['login_link_action'] : 'form';
3780
  $show_lgn_link = 'yes' === $this->get_settings( 'show_login_link' );
3781
+ $lgn_link_text = ! empty( $this->get_settings( 'login_link_text' ) ) ? $this->get_settings( 'login_link_text' ) : __( 'Login', 'essential-addons-for-elementor-lite' );
3782
  $btn_text = ! empty( $this->ds['reg_button_text'] ) ? $this->ds['reg_button_text'] : '';
3783
 
3784
  $parts = explode( "\n", $lgn_link_text );
3802
  // btn alignment
3803
  $btn_align = isset( $this->ds['register_btn_align'] ) ? $this->ds['register_btn_align'] : '';
3804
  $link_align = isset( $this->ds['register_link_align'] ) ? $this->ds['register_link_align'] : '';
3805
+ // reCAPTCHA style
3806
+ $rc_theme = isset( $this->ds['register_rc_theme'] ) ? $this->ds['register_rc_theme'] : 'light';
3807
+ $rc_size = isset( $this->ds['register_rc_size'] ) ? $this->ds['register_rc_size'] : 'normal';
3808
  ob_start();
3809
  ?>
3810
+ <section id="eael-register-form-wrapper" class="<?php echo esc_attr( $default_hide_class ); ?>" data-recaptcha-theme="<?php echo esc_attr( $rc_theme ); ?>" data-recaptcha-size="<?php echo esc_attr( $rc_size ); ?>">
3811
  <div class="eael-register-form-wrapper eael-lr-form-wrapper style-2">
3812
  <?php if ( 'left' === $this->form_illustration_pos ) {
3813
  $this->print_form_illustration();
3988
  <div class="lr-form-header header-<?php echo esc_attr( $this->form_logo_pos ); ?>">
3989
  <?php if ( ! empty( $this->form_logo ) ) { ?>
3990
  <div class="form-logo">
3991
+ <img src="<?php echo esc_attr( esc_url( $this->form_logo ) ); ?>" alt="<?php esc_attr_e( 'Form Logo Image', 'essential-addons-for-elementor-lite' ); ?>">
3992
  </div>
3993
  <?php } ?>
3994
 
4080
  }
4081
  }
4082
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4083
  protected function print_recaptcha_node( $form_type = 'login' ) {
4084
  if ( 'yes' === $this->get_settings_for_display( "enable_{$form_type}_recaptcha" ) ) {
4085
  $id = "{$form_type}-recaptcha-node-" . $this->get_id();
4094
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
4095
  <?php
4096
  /* translators: %s: Error fields */
4097
+ printf( __( 'Error! you seem to have added %s field in the form more than once.', 'essential-addons-for-elementor-lite' ), $error_fields );
4098
  ?>
4099
  </p>
4100
  <?php
4110
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
4111
  <?php
4112
  /* translators: %s: Error String */
4113
+ printf( __( 'Error! It is required to use %s field.', 'essential-addons-for-elementor-lite' ), '<strong>Email</strong>' );
4114
  ?>
4115
  </p>
4116
  <?php
4134
  <p class='eael-register-form-error elementor-alert elementor-alert-warning'>
4135
  <?php
4136
  /* translators: %s: Error String */
4137
+ printf( __( 'Error! It is required to use %s field with %s Field.', 'essential-addons-for-elementor-lite' ), '<strong>Password</strong>', '<strong>Password Confirmation</strong>' );
4138
  ?>
4139
  </p>
4140
  <?php
4161
  ?>
4162
  <div class="eael-form-msg invalid">
4163
  <?php
4164
+ if ( ! empty( $this->ds['err_unknown'] ) ) {
4165
+ printf( '<p>%s</p>', esc_html( $this->ds['err_unknown'] ) );
4166
  }
4167
  ?>
4168
  <ol>
4180
  protected function print_registration_success_message( $success ) {
4181
 
4182
  if ( $success ) {
4183
+ $message = '<p class="eael-form-msg valid">' . esc_html( $this->get_settings_for_display( 'success_register' ) ) . '</p>';
4184
  echo apply_filters( 'eael/login-register/registration-success-msg', $message, $success );
4185
 
4186
  delete_transient( 'eael_register_success_' . $this->get_id() );
4198
  *
4199
  * @return string
4200
  */
4201
+ public function apply_dim( $css_property ) {
4202
  return "{$css_property}: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};";
4203
  }
4204
 
includes/Elements/Pricing_Table.php CHANGED
@@ -633,7 +633,7 @@ class Pricing_Table extends Widget_Base {
633
  'type' => Controls_Manager::CHOOSE,
634
  'options' => [
635
  '1' => [
636
- 'title' => __( '', 'essential-addons-for-elementor-lite' ),
637
  'icon' => 'fa fa-unlock-alt',
638
  ],
639
  ],
633
  'type' => Controls_Manager::CHOOSE,
634
  'options' => [
635
  '1' => [
636
+ 'title' => '',
637
  'icon' => 'fa fa-unlock-alt',
638
  ],
639
  ],
includes/Elements/Progress_Bar.php CHANGED
@@ -272,7 +272,7 @@ class Progress_Bar extends Widget_Base
272
  'type' => Controls_Manager::CHOOSE,
273
  'options' => [
274
  '1' => [
275
- 'title' => __('', 'essential-addons-for-elementor-lite'),
276
  'icon' => 'fa fa-unlock-alt',
277
  ],
278
  ],
272
  'type' => Controls_Manager::CHOOSE,
273
  'options' => [
274
  '1' => [
275
+ 'title' => '',
276
  'icon' => 'fa fa-unlock-alt',
277
  ],
278
  ],
includes/Elements/Team_Member.php CHANGED
@@ -31,7 +31,7 @@ class Team_Member extends Widget_Base {
31
  public function get_categories() {
32
  return [ 'essential-addons-elementor' ];
33
  }
34
-
35
  public function get_keywords()
36
  {
37
  return [
@@ -54,17 +54,17 @@ class Team_Member extends Widget_Base {
54
  {
55
  return 'https://essential-addons.com/elementor/docs/team-members/';
56
  }
57
-
58
  protected function _register_controls() {
59
 
60
-
61
  $this->start_controls_section(
62
  'eael_section_team_member_image',
63
  [
64
  'label' => esc_html__( 'Team Member Image', 'essential-addons-for-elementor-lite')
65
  ]
66
  );
67
-
68
 
69
  $this->add_control(
70
  'eael_team_member_image',
@@ -108,7 +108,7 @@ class Team_Member extends Widget_Base {
108
  'default' => esc_html__( 'John Doe', 'essential-addons-for-elementor-lite'),
109
  ]
110
  );
111
-
112
  $this->add_control(
113
  'eael_team_member_job_title',
114
  [
@@ -117,7 +117,7 @@ class Team_Member extends Widget_Base {
117
  'default' => esc_html__( 'Software Engineer', 'essential-addons-for-elementor-lite'),
118
  ]
119
  );
120
-
121
  $this->add_control(
122
  'eael_team_member_description',
123
  [
@@ -126,7 +126,7 @@ class Team_Member extends Widget_Base {
126
  'default' => esc_html__( 'Add team member description here. Remove the text if not necessary.', 'essential-addons-for-elementor-lite'),
127
  ]
128
  );
129
-
130
 
131
  $this->end_controls_section();
132
 
@@ -146,8 +146,8 @@ class Team_Member extends Widget_Base {
146
  'default' => 'yes',
147
  ]
148
  );
149
-
150
-
151
  $this->add_control(
152
  'eael_team_member_social_profile_links',
153
  [
@@ -218,7 +218,7 @@ class Team_Member extends Widget_Base {
218
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
219
  ]
220
  );
221
-
222
  $this->add_control(
223
  'eael_control_get_pro',
224
  [
@@ -226,7 +226,7 @@ class Team_Member extends Widget_Base {
226
  'type' => Controls_Manager::CHOOSE,
227
  'options' => [
228
  '1' => [
229
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
230
  'icon' => 'fa fa-unlock-alt',
231
  ],
232
  ],
@@ -234,10 +234,10 @@ class Team_Member extends Widget_Base {
234
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
235
  ]
236
  );
237
-
238
  $this->end_controls_section();
239
  }
240
-
241
  $this->start_controls_section(
242
  'eael_section_team_members_styles_general',
243
  [
@@ -406,17 +406,17 @@ class Team_Member extends Widget_Base {
406
  ],
407
  ]
408
  );
409
-
410
  $this->end_controls_section();
411
-
412
-
413
  $this->start_controls_section(
414
  'eael_section_team_members_image_styles',
415
  [
416
  'label' => esc_html__( 'Team Member Image Style', 'essential-addons-for-elementor-lite'),
417
  'tab' => Controls_Manager::TAB_STYLE
418
  ]
419
- );
420
 
421
  $this->add_responsive_control(
422
  'eael_team_members_image_width',
@@ -539,7 +539,7 @@ class Team_Member extends Widget_Base {
539
  ],
540
  ]
541
  );
542
-
543
  $this->add_group_control(
544
  Group_Control_Typography::get_type(),
545
  [
@@ -568,7 +568,7 @@ class Team_Member extends Widget_Base {
568
  ],
569
  ]
570
  );
571
-
572
  $this->add_group_control(
573
  Group_Control_Typography::get_type(),
574
  [
@@ -597,7 +597,7 @@ class Team_Member extends Widget_Base {
597
  ],
598
  ]
599
  );
600
-
601
  $this->add_group_control(
602
  Group_Control_Typography::get_type(),
603
  [
@@ -608,14 +608,14 @@ class Team_Member extends Widget_Base {
608
 
609
  $this->end_controls_section();
610
 
611
-
612
  $this->start_controls_section(
613
  'eael_section_team_members_social_profiles_styles',
614
  [
615
  'label' => esc_html__( 'Social Profiles Style', 'essential-addons-for-elementor-lite'),
616
  'tab' => Controls_Manager::TAB_STYLE
617
  ]
618
- );
619
 
620
 
621
  $this->add_control(
@@ -705,7 +705,7 @@ class Team_Member extends Widget_Base {
705
  ],
706
  ]
707
  );
708
-
709
  $this->add_control(
710
  'eael_team_members_social_icon_background',
711
  [
@@ -732,8 +732,8 @@ class Team_Member extends Widget_Base {
732
  ]
733
  ]
734
  );
735
-
736
-
737
  $this->add_group_control(
738
  Group_Control_Border::get_type(),
739
  [
@@ -741,7 +741,7 @@ class Team_Member extends Widget_Base {
741
  'selector' => '{{WRAPPER}} .eael-team-member-social-link > a',
742
  ]
743
  );
744
-
745
  $this->add_control(
746
  'eael_team_members_social_icon_border_radius',
747
  [
@@ -766,7 +766,7 @@ class Team_Member extends Widget_Base {
766
  ]
767
  );
768
 
769
-
770
  $this->end_controls_tab();
771
 
772
  $this->start_controls_tab( 'eael_team_members_social_icon_hover', [ 'label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite') ] );
@@ -821,9 +821,9 @@ class Team_Member extends Widget_Base {
821
  ],
822
  ]
823
  );
824
-
825
  $this->end_controls_tab();
826
-
827
  $this->end_controls_tabs();
828
 
829
 
@@ -834,10 +834,10 @@ class Team_Member extends Widget_Base {
834
 
835
 
836
  protected function render( ) {
837
-
838
  $settings = $this->get_settings();
839
  $team_member_image = $this->get_settings( 'eael_team_member_image' );
840
- $team_member_image_url = Group_Control_Image_Size::get_attachment_image_src( $team_member_image['id'], 'thumbnail', $settings );
841
  if( empty( $team_member_image_url ) ) : $team_member_image_url = $team_member_image['url']; else: $team_member_image_url = $team_member_image_url; endif;
842
  $team_member_classes = $this->get_settings('eael_team_members_preset') . " " . $this->get_settings('eael_team_members_image_rounded');
843
 
@@ -893,4 +893,4 @@ class Team_Member extends Widget_Base {
893
  </div>
894
  <?php
895
  }
896
- }
31
  public function get_categories() {
32
  return [ 'essential-addons-elementor' ];
33
  }
34
+
35
  public function get_keywords()
36
  {
37
  return [
54
  {
55
  return 'https://essential-addons.com/elementor/docs/team-members/';
56
  }
57
+
58
  protected function _register_controls() {
59
 
60
+
61
  $this->start_controls_section(
62
  'eael_section_team_member_image',
63
  [
64
  'label' => esc_html__( 'Team Member Image', 'essential-addons-for-elementor-lite')
65
  ]
66
  );
67
+
68
 
69
  $this->add_control(
70
  'eael_team_member_image',
108
  'default' => esc_html__( 'John Doe', 'essential-addons-for-elementor-lite'),
109
  ]
110
  );
111
+
112
  $this->add_control(
113
  'eael_team_member_job_title',
114
  [
117
  'default' => esc_html__( 'Software Engineer', 'essential-addons-for-elementor-lite'),
118
  ]
119
  );
120
+
121
  $this->add_control(
122
  'eael_team_member_description',
123
  [
126
  'default' => esc_html__( 'Add team member description here. Remove the text if not necessary.', 'essential-addons-for-elementor-lite'),
127
  ]
128
  );
129
+
130
 
131
  $this->end_controls_section();
132
 
146
  'default' => 'yes',
147
  ]
148
  );
149
+
150
+
151
  $this->add_control(
152
  'eael_team_member_social_profile_links',
153
  [
218
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
219
  ]
220
  );
221
+
222
  $this->add_control(
223
  'eael_control_get_pro',
224
  [
226
  'type' => Controls_Manager::CHOOSE,
227
  'options' => [
228
  '1' => [
229
+ 'title' => '',
230
  'icon' => 'fa fa-unlock-alt',
231
  ],
232
  ],
234
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
235
  ]
236
  );
237
+
238
  $this->end_controls_section();
239
  }
240
+
241
  $this->start_controls_section(
242
  'eael_section_team_members_styles_general',
243
  [
406
  ],
407
  ]
408
  );
409
+
410
  $this->end_controls_section();
411
+
412
+
413
  $this->start_controls_section(
414
  'eael_section_team_members_image_styles',
415
  [
416
  'label' => esc_html__( 'Team Member Image Style', 'essential-addons-for-elementor-lite'),
417
  'tab' => Controls_Manager::TAB_STYLE
418
  ]
419
+ );
420
 
421
  $this->add_responsive_control(
422
  'eael_team_members_image_width',
539
  ],
540
  ]
541
  );
542
+
543
  $this->add_group_control(
544
  Group_Control_Typography::get_type(),
545
  [
568
  ],
569
  ]
570
  );
571
+
572
  $this->add_group_control(
573
  Group_Control_Typography::get_type(),
574
  [
597
  ],
598
  ]
599
  );
600
+
601
  $this->add_group_control(
602
  Group_Control_Typography::get_type(),
603
  [
608
 
609
  $this->end_controls_section();
610
 
611
+
612
  $this->start_controls_section(
613
  'eael_section_team_members_social_profiles_styles',
614
  [
615
  'label' => esc_html__( 'Social Profiles Style', 'essential-addons-for-elementor-lite'),
616
  'tab' => Controls_Manager::TAB_STYLE
617
  ]
618
+ );
619
 
620
 
621
  $this->add_control(
705
  ],
706
  ]
707
  );
708
+
709
  $this->add_control(
710
  'eael_team_members_social_icon_background',
711
  [
732
  ]
733
  ]
734
  );
735
+
736
+
737
  $this->add_group_control(
738
  Group_Control_Border::get_type(),
739
  [
741
  'selector' => '{{WRAPPER}} .eael-team-member-social-link > a',
742
  ]
743
  );
744
+
745
  $this->add_control(
746
  'eael_team_members_social_icon_border_radius',
747
  [
766
  ]
767
  );
768
 
769
+
770
  $this->end_controls_tab();
771
 
772
  $this->start_controls_tab( 'eael_team_members_social_icon_hover', [ 'label' => esc_html__( 'Hover', 'essential-addons-for-elementor-lite') ] );
821
  ],
822
  ]
823
  );
824
+
825
  $this->end_controls_tab();
826
+
827
  $this->end_controls_tabs();
828
 
829
 
834
 
835
 
836
  protected function render( ) {
837
+
838
  $settings = $this->get_settings();
839
  $team_member_image = $this->get_settings( 'eael_team_member_image' );
840
+ $team_member_image_url = Group_Control_Image_Size::get_attachment_image_src( $team_member_image['id'], 'thumbnail', $settings );
841
  if( empty( $team_member_image_url ) ) : $team_member_image_url = $team_member_image['url']; else: $team_member_image_url = $team_member_image_url; endif;
842
  $team_member_classes = $this->get_settings('eael_team_members_preset') . " " . $this->get_settings('eael_team_members_image_rounded');
843
 
893
  </div>
894
  <?php
895
  }
896
+ }
includes/Elements/Testimonial.php CHANGED
@@ -30,7 +30,7 @@ class Testimonial extends Widget_Base {
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
-
34
  public function get_keywords()
35
  {
36
  return [
@@ -213,7 +213,7 @@ class Testimonial extends Widget_Base {
213
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
214
  ]
215
  );
216
-
217
  $this->add_control(
218
  'eael_control_get_pro',
219
  [
@@ -221,7 +221,7 @@ class Testimonial extends Widget_Base {
221
  'type' => Controls_Manager::CHOOSE,
222
  'options' => [
223
  '1' => [
224
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
225
  'icon' => 'fa fa-unlock-alt',
226
  ],
227
  ],
@@ -229,7 +229,7 @@ class Testimonial extends Widget_Base {
229
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
230
  ]
231
  );
232
-
233
  $this->end_controls_section();
234
  }
235
 
@@ -665,7 +665,7 @@ class Testimonial extends Widget_Base {
665
 
666
  $this->end_controls_section();
667
  }
668
-
669
  protected function render_testimonial_image() {
670
  $settings = $this->get_settings();
671
  $image = Group_Control_Image_Size::get_attachment_image_html( $settings );
@@ -740,7 +740,7 @@ class Testimonial extends Widget_Base {
740
  $this->add_render_attribute('eael_testimonial_user', 'class', 'eael-testimonial-user');
741
  if ( ! empty( $settings['eael_testimonial_user_display_block'] ) )
742
  $this->add_render_attribute('eael_testimonial_user', 'style', 'display: block; float: none;');
743
-
744
 
745
  ?>
746
 
@@ -845,4 +845,4 @@ class Testimonial extends Widget_Base {
845
  <?php }
846
 
847
  protected function content_template() {}
848
- }
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
+
34
  public function get_keywords()
35
  {
36
  return [
213
  'label' => __( 'Go Premium for More Features', 'essential-addons-for-elementor-lite')
214
  ]
215
  );
216
+
217
  $this->add_control(
218
  'eael_control_get_pro',
219
  [
221
  'type' => Controls_Manager::CHOOSE,
222
  'options' => [
223
  '1' => [
224
+ 'title' => '',
225
  'icon' => 'fa fa-unlock-alt',
226
  ],
227
  ],
229
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
230
  ]
231
  );
232
+
233
  $this->end_controls_section();
234
  }
235
 
665
 
666
  $this->end_controls_section();
667
  }
668
+
669
  protected function render_testimonial_image() {
670
  $settings = $this->get_settings();
671
  $image = Group_Control_Image_Size::get_attachment_image_html( $settings );
740
  $this->add_render_attribute('eael_testimonial_user', 'class', 'eael-testimonial-user');
741
  if ( ! empty( $settings['eael_testimonial_user_display_block'] ) )
742
  $this->add_render_attribute('eael_testimonial_user', 'style', 'display: block; float: none;');
743
+
744
 
745
  ?>
746
 
845
  <?php }
846
 
847
  protected function content_template() {}
848
+ }
includes/Elements/Tooltip.php CHANGED
@@ -30,7 +30,7 @@ class Tooltip extends Widget_Base {
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
-
34
  public function get_keywords()
35
  {
36
  return [
@@ -219,7 +219,7 @@ class Tooltip extends Widget_Base {
219
  ]
220
  ]
221
  );
222
-
223
  $this->add_control(
224
  'eael_tooltip_enable_link',
225
  [
@@ -510,7 +510,7 @@ class Tooltip extends Widget_Base {
510
  'type' => Controls_Manager::CHOOSE,
511
  'options' => [
512
  '1' => [
513
- 'title' => __( '', 'essential-addons-for-elementor-lite'),
514
  'icon' => 'fa fa-unlock-alt',
515
  ],
516
  ],
@@ -518,7 +518,7 @@ class Tooltip extends Widget_Base {
518
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
519
  ]
520
  );
521
-
522
  $this->end_controls_section();
523
  }
524
 
@@ -692,7 +692,7 @@ class Tooltip extends Widget_Base {
692
  $target = $settings['eael_tooltip_link']['is_external'] ? 'target="_blank"' : '';
693
  $nofollow = $settings['eael_tooltip_link']['nofollow'] ? 'rel="nofollow"' : '';
694
  $icon_migrated = isset($settings['__fa4_migrated']['eael_tooltip_icon_content_new']);
695
- $icon_is_new = empty($settings['eael_tooltip_icon_content']);
696
  ?>
697
  <div class="eael-tooltip">
698
  <?php if( $settings['eael_tooltip_type'] === 'text' ) : ?>
30
  public function get_categories() {
31
  return [ 'essential-addons-elementor' ];
32
  }
33
+
34
  public function get_keywords()
35
  {
36
  return [
219
  ]
220
  ]
221
  );
222
+
223
  $this->add_control(
224
  'eael_tooltip_enable_link',
225
  [
510
  'type' => Controls_Manager::CHOOSE,
511
  'options' => [
512
  '1' => [
513
+ 'title' => '',
514
  'icon' => 'fa fa-unlock-alt',
515
  ],
516
  ],
518
  'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.net/in/upgrade-essential-addons-elementor" target="_blank">Pro version</a> for more stunning elements and customization options.</span>'
519
  ]
520
  );
521
+
522
  $this->end_controls_section();
523
  }
524
 
692
  $target = $settings['eael_tooltip_link']['is_external'] ? 'target="_blank"' : '';
693
  $nofollow = $settings['eael_tooltip_link']['nofollow'] ? 'rel="nofollow"' : '';
694
  $icon_migrated = isset($settings['__fa4_migrated']['eael_tooltip_icon_content_new']);
695
+ $icon_is_new = empty($settings['eael_tooltip_icon_content']);
696
  ?>
697
  <div class="eael-tooltip">
698
  <?php if( $settings['eael_tooltip_type'] === 'text' ) : ?>
includes/Elements/Twitter_Feed.php CHANGED
@@ -35,7 +35,7 @@ class Twitter_Feed extends Widget_Base
35
  {
36
  return ['essential-addons-elementor'];
37
  }
38
-
39
  public function get_keywords() {
40
  return [
41
  'twitter',
@@ -307,7 +307,7 @@ class Twitter_Feed extends Widget_Base
307
  'type' => Controls_Manager::CHOOSE,
308
  'options' => [
309
  '1' => [
310
- 'title' => __('', 'essential-addons-for-elementor-lite'),
311
  'icon' => 'fa fa-unlock-alt',
312
  ],
313
  ],
@@ -514,7 +514,7 @@ class Twitter_Feed extends Widget_Base
514
  echo '<div class="eael-twitter-feed eael-twitter-feed-' . $this->get_id() . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type'] . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type_col_type'] . ' clearfix" data-gutter="' . $settings['eael_twitter_feed_column_spacing']['size'] . '">
515
  ' . $this->twitter_feed_render_items($this->get_id(), $settings) . '
516
  </div>';
517
-
518
  echo '<style>
519
  .eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
520
  width: calc(50% - ' . ceil($settings['eael_twitter_feed_column_spacing']['size'] / 2) . 'px);
35
  {
36
  return ['essential-addons-elementor'];
37
  }
38
+
39
  public function get_keywords() {
40
  return [
41
  'twitter',
307
  'type' => Controls_Manager::CHOOSE,
308
  'options' => [
309
  '1' => [
310
+ 'title' => '',
311
  'icon' => 'fa fa-unlock-alt',
312
  ],
313
  ],
514
  echo '<div class="eael-twitter-feed eael-twitter-feed-' . $this->get_id() . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type'] . ' eael-twitter-feed-' . $settings['eael_twitter_feed_type_col_type'] . ' clearfix" data-gutter="' . $settings['eael_twitter_feed_column_spacing']['size'] . '">
515
  ' . $this->twitter_feed_render_items($this->get_id(), $settings) . '
516
  </div>';
517
+
518
  echo '<style>
519
  .eael-twitter-feed-' . $this->get_id() . '.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
520
  width: calc(50% - ' . ceil($settings['eael_twitter_feed_column_spacing']['size'] / 2) . 'px);
includes/Elements/WeForms.php CHANGED
@@ -37,7 +37,7 @@ class WeForms extends Widget_Base
37
  {
38
  return ['essential-addons-elementor'];
39
  }
40
-
41
  public function get_keywords() {
42
  return [
43
  'contact form',
@@ -116,7 +116,7 @@ class WeForms extends Widget_Base
116
  'type' => Controls_Manager::CHOOSE,
117
  'options' => [
118
  '1' => [
119
- 'title' => __('', 'essential-addons-for-elementor-lite'),
120
  'icon' => 'fa fa-unlock-alt',
121
  ],
122
  ],
37
  {
38
  return ['essential-addons-elementor'];
39
  }
40
+
41
  public function get_keywords() {
42
  return [
43
  'contact form',
116
  'type' => Controls_Manager::CHOOSE,
117
  'options' => [
118
  '1' => [
119
+ 'title' => '',
120
  'icon' => 'fa fa-unlock-alt',
121
  ],
122
  ],
includes/Traits/Admin.php CHANGED
@@ -142,11 +142,36 @@ trait Admin
142
  wp_enqueue_style('sweetalert2-css', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/css/sweetalert2.min.css', false, EAEL_PLUGIN_VERSION);
143
  wp_enqueue_script('sweetalert2-js', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/js/sweetalert2.min.js', array('jquery', 'sweetalert2-core-js'), EAEL_PLUGIN_VERSION, true);
144
  wp_enqueue_script('sweetalert2-core-js', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/js/core.js', array('jquery'), EAEL_PLUGIN_VERSION, true);
 
145
  wp_enqueue_script('essential_addons_elementor-admin-js', EAEL_PLUGIN_URL . '/assets/admin/js/admin.js', array('jquery'), EAEL_PLUGIN_VERSION, true);
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  wp_localize_script('essential_addons_elementor-admin-js', 'localize', array(
148
  'ajaxurl' => admin_url('admin-ajax.php'),
149
  'nonce' => wp_create_nonce('essential-addons-elementor'),
 
150
  ));
151
  }
152
  }
@@ -205,20 +230,34 @@ include_once EAEL_PLUGIN_PATH . DIRECTORY_SEPARATOR . 'includes/templates/admin/
205
  */
206
  public function save_settings()
207
  {
208
- check_ajax_referer('essential-addons-elementor', 'security');
209
 
210
  if (!isset($_POST['fields'])) {
211
  return;
212
  }
213
 
214
  parse_str($_POST['fields'], $settings);
215
- // Recaptcha Related stuff
216
- $r_keys = !empty( $settings['eael_recaptcha_keys']) ? explode( ':', sanitize_text_field( $settings['eael_recaptcha_keys'])): [];
217
- $eael_recaptcha_site_key = !empty( $r_keys[0]) ? sanitize_text_field( $r_keys[0]): '';
218
- $eael_recaptcha_secret = !empty( $r_keys[1]) ? sanitize_text_field( $r_keys[1]): '';
219
- // Saving recaptcha keys
220
- update_option( 'eael_recaptcha_sitekey', $eael_recaptcha_site_key);
221
- update_option( 'eael_recaptcha_secret', $eael_recaptcha_secret);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
  // Saving Google Map Api Key
224
  update_option('eael_save_google_map_api', @$settings['google-map-api']);
142
  wp_enqueue_style('sweetalert2-css', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/css/sweetalert2.min.css', false, EAEL_PLUGIN_VERSION);
143
  wp_enqueue_script('sweetalert2-js', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/js/sweetalert2.min.js', array('jquery', 'sweetalert2-core-js'), EAEL_PLUGIN_VERSION, true);
144
  wp_enqueue_script('sweetalert2-core-js', EAEL_PLUGIN_URL . '/assets/admin/vendor/sweetalert2/js/core.js', array('jquery'), EAEL_PLUGIN_VERSION, true);
145
+
146
  wp_enqueue_script('essential_addons_elementor-admin-js', EAEL_PLUGIN_URL . '/assets/admin/js/admin.js', array('jquery'), EAEL_PLUGIN_VERSION, true);
147
 
148
+ //Internationalizing JS string translation
149
+ $i18n = [
150
+ 'login_register' => [
151
+ //m=modal, rm=response modal, r=reCAPTCHA, g= google, f=facebook, e=error
152
+ 'm_title' => __('Login | Register Form Settings', 'essential-addons-for-elementor-lite'),
153
+ 'm_footer' => __('To retrieve your API Keys, click here', 'essential-addons-for-elementor-lite'),
154
+ 'save' => __('Save', 'essential-addons-for-elementor-lite'),
155
+ 'cancel' => __('Cancel', 'essential-addons-for-elementor-lite'),
156
+ 'rm_title' => __('Login | Register Form Settings Saved', 'essential-addons-for-elementor-lite'),
157
+ 'rm_footer' => __('Reload the page to see updated data', 'essential-addons-for-elementor-lite'),
158
+ 'e_title' => __('Oops...', 'essential-addons-for-elementor-lite'),
159
+ 'e_text' => __('Something went wrong!', 'essential-addons-for-elementor-lite'),
160
+ 'r_title' => __('reCAPTCHA v2', 'essential-addons-for-elementor-lite'),
161
+ 'r_sitekey' => __('Site Key', 'essential-addons-for-elementor-lite'),
162
+ 'r_sitesecret' => __('Site Secret', 'essential-addons-for-elementor-lite'),
163
+ 'g_title' => __('Google Login', 'essential-addons-for-elementor-lite'),
164
+ 'g_cid' => __('Google Client ID', 'essential-addons-for-elementor-lite'),
165
+ 'f_title' => __('Facebook Login', 'essential-addons-for-elementor-lite'),
166
+ 'f_app_id' => __('Facebook APP ID', 'essential-addons-for-elementor-lite'),
167
+ 'f_app_secret' => __('Facebook APP Secret', 'essential-addons-for-elementor-lite'),
168
+ ]
169
+ ];
170
+
171
  wp_localize_script('essential_addons_elementor-admin-js', 'localize', array(
172
  'ajaxurl' => admin_url('admin-ajax.php'),
173
  'nonce' => wp_create_nonce('essential-addons-elementor'),
174
+ 'i18n' => $i18n,
175
  ));
176
  }
177
  }
230
  */
231
  public function save_settings()
232
  {
233
+ check_ajax_referer('essential-addons-elementor', 'security');
234
 
235
  if (!isset($_POST['fields'])) {
236
  return;
237
  }
238
 
239
  parse_str($_POST['fields'], $settings);
240
+ if ( !empty( $_POST['is_login_register']) ) {
241
+ // Saving Login | Register Related Data
242
+ if ( isset( $settings['recaptchaSiteKey']) ) {
243
+ update_option( 'eael_recaptcha_sitekey', sanitize_text_field( $settings['recaptchaSiteKey']));
244
+ }
245
+ if ( isset( $settings['recaptchaSiteSecret']) ) {
246
+ update_option( 'eael_recaptcha_secret', sanitize_text_field( $settings['recaptchaSiteSecret']));
247
+ }
248
+ //pro settings
249
+ if ( isset( $settings['gClientId']) ) {
250
+ update_option( 'eael_g_client_id', sanitize_text_field( $settings['gClientId']));
251
+ }
252
+ if ( isset( $settings['fbAppId'] ) ) {
253
+ update_option( 'eael_fb_app_id', sanitize_text_field( $settings['fbAppId']));
254
+ }
255
+ if ( isset( $settings['fbAppSecret'] ) ) {
256
+ update_option( 'eael_fb_app_secret', sanitize_text_field( $settings['fbAppSecret']));
257
+ }
258
+ wp_send_json_success( ['message'=> __('Login | Register Settings updated', 'essential-addons-for-elementor-lite')]);
259
+ }
260
+
261
 
262
  // Saving Google Map Api Key
263
  update_option('eael_save_google_map_api', @$settings['google-map-api']);
includes/Traits/Elements.php CHANGED
@@ -318,6 +318,10 @@ trait Elements
318
  $global_settings = get_option('eael_global_settings');
319
 
320
  foreach ($this->loaded_templates as $post_id) {
 
 
 
 
321
  if (Shared::is_prevent_load_extension($post_id)) {
322
  continue;
323
  }
318
  $global_settings = get_option('eael_global_settings');
319
 
320
  foreach ($this->loaded_templates as $post_id) {
321
+ if (get_post_status($post_id) === false) {
322
+ continue;
323
+ }
324
+
325
  if (Shared::is_prevent_load_extension($post_id)) {
326
  continue;
327
  }
includes/Traits/Enqueue.php CHANGED
@@ -168,7 +168,7 @@ trait Enqueue
168
 
169
  // parse widgets from post
170
  foreach ($posts as $post) {
171
- $widgets = $this->parse_widgets($post);
172
 
173
  // loaded widgets stack
174
  $this->loaded_widgets = array_filter(array_unique(array_merge($this->loaded_widgets, $widgets)));
@@ -247,7 +247,11 @@ trait Enqueue
247
 
248
  // parse widgets from post
249
  foreach ($this->loaded_templates as $post_id) {
250
- $widgets = $this->parse_widgets($post_id);
 
 
 
 
251
 
252
  // loaded widgets stack
253
  $this->loaded_widgets = array_filter(array_unique(array_merge($this->loaded_widgets, $widgets)));
168
 
169
  // parse widgets from post
170
  foreach ($posts as $post) {
171
+ $widgets = (array) $this->parse_widgets($post);
172
 
173
  // loaded widgets stack
174
  $this->loaded_widgets = array_filter(array_unique(array_merge($this->loaded_widgets, $widgets)));
247
 
248
  // parse widgets from post
249
  foreach ($this->loaded_templates as $post_id) {
250
+ if (get_post_status($post_id) === false) {
251
+ continue;
252
+ }
253
+
254
+ $widgets = (array) $this->parse_widgets($post_id);
255
 
256
  // loaded widgets stack
257
  $this->loaded_widgets = array_filter(array_unique(array_merge($this->loaded_widgets, $widgets)));
includes/Traits/Generator.php CHANGED
@@ -194,6 +194,10 @@ trait Generator
194
 
195
  if ($this->loaded_templates && $context == 'view' && $ext == 'js') {
196
  foreach ($this->loaded_templates as $post_id) {
 
 
 
 
197
  $document = Plugin::$instance->documents->get($post_id);
198
 
199
  if ($custom_js = $document->get_settings('eael_custom_js')) {
@@ -263,6 +267,10 @@ trait Generator
263
 
264
  if ($this->loaded_templates && $context == 'view' && $ext == 'js') {
265
  foreach ($this->loaded_templates as $post_id) {
 
 
 
 
266
  $document = Plugin::$instance->documents->get($post_id);
267
 
268
  if ($custom_js = $document->get_settings('eael_custom_js')) {
194
 
195
  if ($this->loaded_templates && $context == 'view' && $ext == 'js') {
196
  foreach ($this->loaded_templates as $post_id) {
197
+ if (get_post_status($post_id) === false) {
198
+ continue;
199
+ }
200
+
201
  $document = Plugin::$instance->documents->get($post_id);
202
 
203
  if ($custom_js = $document->get_settings('eael_custom_js')) {
267
 
268
  if ($this->loaded_templates && $context == 'view' && $ext == 'js') {
269
  foreach ($this->loaded_templates as $post_id) {
270
+ if (get_post_status($post_id) === false) {
271
+ continue;
272
+ }
273
+
274
  $document = Plugin::$instance->documents->get($post_id);
275
 
276
  if ($custom_js = $document->get_settings('eael_custom_js')) {
includes/Traits/Helper.php CHANGED
@@ -1368,7 +1368,7 @@ trait Helper
1368
  'type' => Controls_Manager::CHOOSE,
1369
  'options' => [
1370
  '1' => [
1371
- 'title' => __('', 'essential-addons-for-elementor-lite'),
1372
  'icon' => 'fa fa-unlock-alt',
1373
  ],
1374
  ],
1368
  'type' => Controls_Manager::CHOOSE,
1369
  'options' => [
1370
  '1' => [
1371
+ 'title' => '',
1372
  'icon' => 'fa fa-unlock-alt',
1373
  ],
1374
  ],
includes/Traits/Login_Registration.php CHANGED
@@ -46,26 +46,59 @@ trait Login_Registration {
46
  * It logs the user in when the login form is submitted normally without AJAX.
47
  */
48
  public function log_user_in() {
49
- $ajax = wp_doing_ajax();
 
50
  // before even thinking about login, check security and exit early if something is not right.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  if ( empty( $_POST['eael-login-nonce'] ) ) {
 
52
  if ( $ajax ) {
53
- wp_send_json_error( __( 'Insecure form submitted without security token', EAEL_TEXTDOMAIN ) );
54
  }
 
55
 
56
  return false;
57
  }
 
58
  if ( ! wp_verify_nonce( $_POST['eael-login-nonce'], 'eael-login-action' ) ) {
 
59
  if ( $ajax ) {
60
- wp_send_json_error( __( 'Security token did not match', EAEL_TEXTDOMAIN ) );
61
  }
 
62
 
63
  return false;
64
  }
 
 
65
  if ( is_user_logged_in() ) {
 
66
  if ( $ajax ) {
67
- wp_send_json_error( __( 'You are already logged in', EAEL_TEXTDOMAIN ) );
68
  }
 
69
 
70
  return false;
71
  }
@@ -74,7 +107,7 @@ trait Login_Registration {
74
 
75
  $widget_id = ! empty( $_POST['widget_id'] ) ? sanitize_text_field( $_POST['widget_id'] ) : '';
76
  if ( isset( $_POST['g-recaptcha-enabled'] ) && ! $this->lr_validate_recaptcha() ) {
77
- $err_msg = __( 'You did not pass recaptcha challenge.', EAEL_TEXTDOMAIN );
78
  if ( $ajax ) {
79
  wp_send_json_error( $err_msg );
80
  }
@@ -101,17 +134,13 @@ trait Login_Registration {
101
  if ( is_wp_error( $user_data ) ) {
102
  $err_msg = '';
103
  if ( isset( $user_data->errors['invalid_email'][0] ) ) {
104
- $err_msg = __( 'Invalid Email. Please check your email or try again with your username.', EAEL_TEXTDOMAIN );
105
- } elseif ( isset( $user_data->errors['invalid_username'][0] ) ) {
106
- $err_msg = __( 'Invalid Username. Please check your username or try again with your email.', EAEL_TEXTDOMAIN );
107
-
108
- } elseif ( isset( $user_data->errors['incorrect_password'][0] ) ) {
109
 
110
- $err_msg = __( 'Invalid Password. Please check your password and try again', EAEL_TEXTDOMAIN );
 
111
 
112
- } elseif ( isset( $user_data->errors['empty_password'][0] ) ) {
113
-
114
- $err_msg = __( 'Empty Password. Please check your password and try again', EAEL_TEXTDOMAIN );
115
  }
116
 
117
  if ( $ajax ) {
@@ -124,8 +153,9 @@ trait Login_Registration {
124
  do_action( 'wp_login', $user_data->user_login, $user_data );
125
  do_action( 'eael/login-register/after-login', $user_data->user_login, $user_data );
126
  if ( $ajax ) {
 
127
  $data = [
128
- 'message' => __( 'You are logged in successfully', EAEL_TEXTDOMAIN ),
129
  ];
130
  if ( ! empty( $_POST['redirect_to'] ) ) {
131
  $data['redirect_to'] = esc_url( $_POST['redirect_to'] );
@@ -149,22 +179,39 @@ trait Login_Registration {
149
  // validate & sanitize the request data
150
  if ( empty( $_POST['eael-register-nonce'] ) ) {
151
  if ( $ajax ) {
152
- wp_send_json_error( __( 'Insecure form submitted without security token', EAEL_TEXTDOMAIN ) );
153
  }
154
 
155
  return false;
156
  }
157
  if ( ! wp_verify_nonce( $_POST['eael-register-nonce'], 'eael-register-action' ) ) {
158
  if ( $ajax ) {
159
- wp_send_json_error( __( 'Security token did not match', EAEL_TEXTDOMAIN ) );
160
  }
161
 
162
  return false;
163
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  if ( is_user_logged_in() ) {
 
166
  if ( $ajax ) {
167
- wp_send_json_error( __( 'You are already logged in. Logged out to register a new account', EAEL_TEXTDOMAIN ) );
168
  }
169
 
170
  return false;
@@ -180,7 +227,7 @@ trait Login_Registration {
180
 
181
  // vail early if reg is closed.
182
  if ( ! $registration_allowed ) {
183
- $errors['registration'] = __( 'Registration is closed on this site', EAEL_TEXTDOMAIN );
184
  if ( $ajax ) {
185
  wp_send_json_error( $errors['registration'] );
186
  }
@@ -190,40 +237,33 @@ trait Login_Registration {
190
  exit();
191
  }
192
  // prepare vars and flag errors
193
- if ( ! empty( $_POST['page_id'] ) ) {
194
- $page_id = intval( $_POST['page_id'], 10 );
195
- } else {
196
- $errors['page_id'] = __( 'Page ID is missing', EAEL_TEXTDOMAIN );
197
- }
198
- $widget_id = '';
199
- if ( ! empty( $_POST['widget_id'] ) ) {
200
- $widget_id = sanitize_text_field( $_POST['widget_id'] );
201
- } else {
202
- $errors['widget_id'] = __( 'Widget ID is missing', EAEL_TEXTDOMAIN );
203
- }
204
 
205
  if ( isset( $_POST['eael_tnc_active'] ) && empty( $_POST['eael_accept_tnc'] ) ) {
206
- $errors['terms_conditions'] = __( 'You did not accept the Terms and Conditions. Please accept it and try again.', EAEL_TEXTDOMAIN );
207
  }
208
  if ( isset( $_POST['g-recaptcha-enabled'] ) && ! $this->lr_validate_recaptcha() ) {
209
- $errors['recaptcha'] = __( 'You did not pass recaptcha challenge.', EAEL_TEXTDOMAIN );
210
  }
211
 
212
  if ( ! empty( $_POST['email'] ) && is_email( $_POST['email'] ) ) {
213
  $email = sanitize_email( $_POST['email'] );
214
  if ( email_exists( $email ) ) {
215
- $errors['email'] = __( 'The provided email is already registered with other account. Please login or reset password or use another email.', EAEL_TEXTDOMAIN );
216
  }
217
  } else {
218
- $errors['email'] = __( 'Email is missing or Invalid', EAEL_TEXTDOMAIN );
219
  //@todo; maybe it is good to abort here?? as email is most important. or continue to collect all other errors.
220
  }
221
 
222
  // if user provided user name, validate & sanitize it
223
  if ( isset( $_POST['user_name'] ) ) {
224
  $username = $_POST['user_name'];
225
- if ( ! validate_username( $username ) || mb_strlen( $username ) > 60 || username_exists( $username ) ) {
226
- $errors['user_name'] = __( 'Invalid username provided or the username already registered.', EAEL_TEXTDOMAIN );
 
 
 
227
  }
228
  //@TODO; Maybe it is good to add a check for filtering out blacklisted usernames later here.
229
  } else {
@@ -244,7 +284,7 @@ trait Login_Registration {
244
  if ( isset( $_POST['confirm_pass'] ) ) {
245
  $confirm_pass = wp_unslash( sanitize_text_field( $_POST['confirm_pass'] ) );
246
  if ( $confirm_pass !== $password ) {
247
- $errors['confirm_pass'] = __( 'The confirm password did not match.', EAEL_TEXTDOMAIN );
248
  }
249
  }
250
 
@@ -288,14 +328,9 @@ trait Login_Registration {
288
  if ( ! empty( $_POST['website'] ) ) {
289
  $user_data['user_url'] = self::$email_options['website'] = esc_url_raw( $_POST['website'] );
290
  }
291
- $document = Plugin::$instance->documents->get( $page_id );
292
  $register_actions = [];
293
  $custom_redirect_url = '';
294
- if ( $document ) {
295
- $elements = Plugin::instance()->documents->get( $page_id )->get_elements_data();
296
- $widget_data = $this->find_element_recursive( $elements, $widget_id );
297
- $widget = Plugin::instance()->elements_manager->create_element_instance( $widget_data );
298
- $settings = $widget->get_settings_for_display();
299
  $register_actions = ! empty( $settings['register_action'] ) ? (array) $settings['register_action'] : [];
300
  $custom_redirect_url = ! empty( $settings['register_redirect_url']['url'] ) ? $settings['register_redirect_url']['url'] : '/';
301
  if ( ! empty( $settings['register_user_role'] ) ) {
@@ -341,7 +376,7 @@ trait Login_Registration {
341
 
342
  if ( is_wp_error( $user_id ) ) {
343
  // error happened during user creation
344
- $errors['user_create'] = __( 'Sorry, something went wrong. User could not be registered.', EAEL_TEXTDOMAIN );
345
  if ( $ajax ) {
346
  wp_send_json_error( $errors['user_create'] );
347
  }
@@ -383,7 +418,9 @@ trait Login_Registration {
383
 
384
 
385
  // Handle after registration action
386
-
 
 
387
  // should user be auto logged in?
388
  if ( in_array( 'auto_login', $register_actions ) && ! is_user_logged_in() ) {
389
  wp_signon( [
@@ -394,10 +431,6 @@ trait Login_Registration {
394
 
395
 
396
  if ( $ajax ) {
397
- $data = [
398
- 'message' => __( 'Your registration completed successfully.', EAEL_TEXTDOMAIN ),
399
- ];
400
-
401
  if ( in_array( 'redirect', $register_actions ) ) {
402
  $data['redirect_to'] = $custom_redirect_url;
403
  }
@@ -413,10 +446,6 @@ trait Login_Registration {
413
 
414
  // custom redirect?
415
  if ( $ajax ) {
416
- $data = [
417
- 'message' => __( 'Your registration completed successfully.', EAEL_TEXTDOMAIN ),
418
- ];
419
-
420
  if ( in_array( 'redirect', $register_actions ) ) {
421
  $data['redirect_to'] = $custom_redirect_url;
422
  }
@@ -496,7 +525,7 @@ trait Login_Registration {
496
  }
497
 
498
  public function get_user_roles() {
499
- $user_roles[''] = __( 'Default', EAEL_TEXTDOMAIN );
500
  if ( function_exists( 'get_editable_roles' ) ) {
501
  $wp_roles = get_editable_roles();
502
  $roles = $wp_roles ? $wp_roles : [];
@@ -649,11 +678,24 @@ trait Login_Registration {
649
  return false;
650
  }
651
 
652
- public function lr_enqueue_scripts( ) {
653
  $version = defined( 'WP_DEBUG' ) ? time() : EAEL_PLUGIN_VERSION; // stop cache on debug mode
654
  if ( $site_key = get_option( 'eael_recaptcha_sitekey' ) ) {
655
- wp_register_script( 'eael-recaptcha', "https://www.google.com/recaptcha/api.js?render=explicit", false,
656
- $version, false );
 
 
 
 
 
 
 
 
 
 
 
 
657
  }
 
658
  }
659
  }
46
  * It logs the user in when the login form is submitted normally without AJAX.
47
  */
48
  public function log_user_in() {
49
+ $ajax = wp_doing_ajax();
50
+
51
  // before even thinking about login, check security and exit early if something is not right.
52
+ $page_id = 0;
53
+ if ( ! empty( $_POST['page_id'] ) ) {
54
+ $page_id = intval( $_POST['page_id'], 10 );
55
+ } else {
56
+ $err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
57
+ }
58
+
59
+ $widget_id = 0;
60
+ if ( ! empty( $_POST['widget_id'] ) ) {
61
+ $widget_id = sanitize_text_field( $_POST['widget_id'] );
62
+ } else {
63
+ $err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
64
+ }
65
+ if (!empty( $err_msg )){
66
+ if ( $ajax ) {
67
+ wp_send_json_error( $err_msg );
68
+ }
69
+ $this->set_transient( 'eael_login_error_' . $widget_id, $err_msg );
70
+
71
+ return false;
72
+ }
73
+
74
+
75
  if ( empty( $_POST['eael-login-nonce'] ) ) {
76
+ $err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
77
  if ( $ajax ) {
78
+ wp_send_json_error( $err_msg );
79
  }
80
+ $this->set_transient( 'eael_login_error_' . $widget_id, $err_msg );
81
 
82
  return false;
83
  }
84
+
85
  if ( ! wp_verify_nonce( $_POST['eael-login-nonce'], 'eael-login-action' ) ) {
86
+ $err_msg = __( 'Security token did not match', 'essential-addons-for-elementor-lite' );
87
  if ( $ajax ) {
88
+ wp_send_json_error( $err_msg );
89
  }
90
+ $this->set_transient( 'eael_login_error_' . $widget_id, $err_msg );
91
 
92
  return false;
93
  }
94
+ $settings = $this->lr_get_widget_settings( $page_id, $widget_id);
95
+
96
  if ( is_user_logged_in() ) {
97
+ $err_msg = isset( $settings['err_loggedin'] ) ? $settings['err_loggedin'] : __( 'You are already logged in', 'essential-addons-for-elementor-lite' );
98
  if ( $ajax ) {
99
+ wp_send_json_error( $err_msg );
100
  }
101
+ $this->set_transient( 'eael_login_error_' . $widget_id, $err_msg );
102
 
103
  return false;
104
  }
107
 
108
  $widget_id = ! empty( $_POST['widget_id'] ) ? sanitize_text_field( $_POST['widget_id'] ) : '';
109
  if ( isset( $_POST['g-recaptcha-enabled'] ) && ! $this->lr_validate_recaptcha() ) {
110
+ $err_msg = isset( $settings['err_recaptcha'] ) ? $settings['err_recaptcha'] : __( 'You did not pass recaptcha challenge.', 'essential-addons-for-elementor-lite' );
111
  if ( $ajax ) {
112
  wp_send_json_error( $err_msg );
113
  }
134
  if ( is_wp_error( $user_data ) ) {
135
  $err_msg = '';
136
  if ( isset( $user_data->errors['invalid_email'][0] ) ) {
137
+ $err_msg = isset( $settings['err_email'] ) ? $settings['err_email'] : __( 'Invalid Email. Please check your email or try again with your username.', 'essential-addons-for-elementor-lite' );
138
+ } elseif ( isset( $user_data->errors['invalid_username'][0] ) || isset( $user_data->errors['incorrect_password'][0] ) || isset( $user_data->errors['empty_password'][0] ) ) {
139
+ $err_msg = isset( $settings['err_username'] ) ? $settings['err_username'] : __( 'Invalid Username. Please check your username or try again with your email.', 'essential-addons-for-elementor-lite' );
 
 
140
 
141
+ } elseif ( isset( $user_data->errors['incorrect_password'][0] ) || isset( $user_data->errors['empty_password'][0] ) ) {
142
+ $err_msg = isset( $settings['err_pass'] ) ? $settings['err_pass'] : __( 'Invalid Password', 'essential-addons-for-elementor-lite' );
143
 
 
 
 
144
  }
145
 
146
  if ( $ajax ) {
153
  do_action( 'wp_login', $user_data->user_login, $user_data );
154
  do_action( 'eael/login-register/after-login', $user_data->user_login, $user_data );
155
  if ( $ajax ) {
156
+
157
  $data = [
158
+ 'message' => isset( $settings['success_login'] ) ? $settings['success_login'] : __( 'You are logged in successfully', 'essential-addons-for-elementor-lite' ),
159
  ];
160
  if ( ! empty( $_POST['redirect_to'] ) ) {
161
  $data['redirect_to'] = esc_url( $_POST['redirect_to'] );
179
  // validate & sanitize the request data
180
  if ( empty( $_POST['eael-register-nonce'] ) ) {
181
  if ( $ajax ) {
182
+ wp_send_json_error( __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' ) );
183
  }
184
 
185
  return false;
186
  }
187
  if ( ! wp_verify_nonce( $_POST['eael-register-nonce'], 'eael-register-action' ) ) {
188
  if ( $ajax ) {
189
+ wp_send_json_error( __( 'Security token did not match', 'essential-addons-for-elementor-lite' ) );
190
  }
191
 
192
  return false;
193
  }
194
+ $page_id = $widget_id = 0;
195
+ if ( ! empty( $_POST['page_id'] ) ) {
196
+ $page_id = intval( $_POST['page_id'], 10 );
197
+ } else {
198
+ $errors['page_id'] = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
199
+ }
200
+ if ( ! empty( $_POST['widget_id'] ) ) {
201
+ $widget_id = sanitize_text_field( $_POST['widget_id'] );
202
+ } else {
203
+ $errors['widget_id'] = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
204
+ }
205
+
206
+
207
+
208
+ $settings = $this->lr_get_widget_settings( $page_id, $widget_id);
209
+
210
 
211
  if ( is_user_logged_in() ) {
212
+ $err_msg = isset( $settings['err_loggedin'] ) ? $settings['err_loggedin'] : __( 'You are already logged in.', 'essential-addons-for-elementor-lite' );
213
  if ( $ajax ) {
214
+ wp_send_json_error( $err_msg );
215
  }
216
 
217
  return false;
227
 
228
  // vail early if reg is closed.
229
  if ( ! $registration_allowed ) {
230
+ $errors['registration'] = __( 'Registration is closed on this site', 'essential-addons-for-elementor-lite' );
231
  if ( $ajax ) {
232
  wp_send_json_error( $errors['registration'] );
233
  }
237
  exit();
238
  }
239
  // prepare vars and flag errors
240
+
 
 
 
 
 
 
 
 
 
 
241
 
242
  if ( isset( $_POST['eael_tnc_active'] ) && empty( $_POST['eael_accept_tnc'] ) ) {
243
+ $errors['terms_conditions'] = isset( $settings['err_tc'] ) ? $settings['err_tc'] : __( 'You did not accept the Terms and Conditions. Please accept it and try again.', 'essential-addons-for-elementor-lite' );
244
  }
245
  if ( isset( $_POST['g-recaptcha-enabled'] ) && ! $this->lr_validate_recaptcha() ) {
246
+ $errors['recaptcha'] = isset( $settings['err_recaptcha'] ) ? $settings['err_recaptcha'] : __( 'You did not pass recaptcha challenge.', 'essential-addons-for-elementor-lite' );
247
  }
248
 
249
  if ( ! empty( $_POST['email'] ) && is_email( $_POST['email'] ) ) {
250
  $email = sanitize_email( $_POST['email'] );
251
  if ( email_exists( $email ) ) {
252
+ $errors['email'] = isset( $settings['err_email_used'] ) ? $settings['err_email_used'] : __( 'The provided email is already registered with other account. Please login or reset password or use another email.', 'essential-addons-for-elementor-lite' );
253
  }
254
  } else {
255
+ $errors['email'] = isset( $settings['err_email_missing'] ) ? $settings['err_email_missing'] : __( 'Email is missing or Invalid', 'essential-addons-for-elementor-lite' );
256
  //@todo; maybe it is good to abort here?? as email is most important. or continue to collect all other errors.
257
  }
258
 
259
  // if user provided user name, validate & sanitize it
260
  if ( isset( $_POST['user_name'] ) ) {
261
  $username = $_POST['user_name'];
262
+ if ( ! validate_username( $username ) || mb_strlen( $username ) > 60 ) {
263
+ $errors['user_name'] = isset( $settings['err_username'] ) ? $settings['err_username'] : __( 'Invalid username provided.', 'essential-addons-for-elementor-lite' );
264
+ }elseif(username_exists( $username )){
265
+ $errors['user_name'] = isset( $settings['err_username_used'] ) ? $settings['err_username_used'] : __( 'The username already registered.', 'essential-addons-for-elementor-lite' );
266
+
267
  }
268
  //@TODO; Maybe it is good to add a check for filtering out blacklisted usernames later here.
269
  } else {
284
  if ( isset( $_POST['confirm_pass'] ) ) {
285
  $confirm_pass = wp_unslash( sanitize_text_field( $_POST['confirm_pass'] ) );
286
  if ( $confirm_pass !== $password ) {
287
+ $errors['confirm_pass'] = isset( $settings['err_conf_pass'] ) ? $settings['err_conf_pass'] : __( 'The confirmed password did not match.', 'essential-addons-for-elementor-lite' );
288
  }
289
  }
290
 
328
  if ( ! empty( $_POST['website'] ) ) {
329
  $user_data['user_url'] = self::$email_options['website'] = esc_url_raw( $_POST['website'] );
330
  }
 
331
  $register_actions = [];
332
  $custom_redirect_url = '';
333
+ if ( !empty( $settings) ) {
 
 
 
 
334
  $register_actions = ! empty( $settings['register_action'] ) ? (array) $settings['register_action'] : [];
335
  $custom_redirect_url = ! empty( $settings['register_redirect_url']['url'] ) ? $settings['register_redirect_url']['url'] : '/';
336
  if ( ! empty( $settings['register_user_role'] ) ) {
376
 
377
  if ( is_wp_error( $user_id ) ) {
378
  // error happened during user creation
379
+ $errors['user_create'] = isset( $settings['err_unknown'] ) ? $settings['err_unknown'] : __( 'Sorry, something went wrong. User could not be registered.', 'essential-addons-for-elementor-lite' );
380
  if ( $ajax ) {
381
  wp_send_json_error( $errors['user_create'] );
382
  }
418
 
419
 
420
  // Handle after registration action
421
+ $data = [
422
+ 'message' => isset( $settings['success_register'] ) ? $settings['success_register'] : __( 'Your registration completed successfully.', 'essential-addons-for-elementor-lite' ),
423
+ ];
424
  // should user be auto logged in?
425
  if ( in_array( 'auto_login', $register_actions ) && ! is_user_logged_in() ) {
426
  wp_signon( [
431
 
432
 
433
  if ( $ajax ) {
 
 
 
 
434
  if ( in_array( 'redirect', $register_actions ) ) {
435
  $data['redirect_to'] = $custom_redirect_url;
436
  }
446
 
447
  // custom redirect?
448
  if ( $ajax ) {
 
 
 
 
449
  if ( in_array( 'redirect', $register_actions ) ) {
450
  $data['redirect_to'] = $custom_redirect_url;
451
  }
525
  }
526
 
527
  public function get_user_roles() {
528
+ $user_roles[''] = __( 'Default', 'essential-addons-for-elementor-lite' );
529
  if ( function_exists( 'get_editable_roles' ) ) {
530
  $wp_roles = get_editable_roles();
531
  $roles = $wp_roles ? $wp_roles : [];
678
  return false;
679
  }
680
 
681
+ public function lr_enqueue_scripts() {
682
  $version = defined( 'WP_DEBUG' ) ? time() : EAEL_PLUGIN_VERSION; // stop cache on debug mode
683
  if ( $site_key = get_option( 'eael_recaptcha_sitekey' ) ) {
684
+ wp_register_script( 'eael-recaptcha', "https://www.google.com/recaptcha/api.js?render=explicit", false, $version, false );
685
+ }
686
+ }
687
+
688
+ public function lr_get_widget_settings( $page_id, $widget_id ) {
689
+ $document = Plugin::$instance->documents->get( $page_id );
690
+ $settings = [];
691
+ if ( $document ) {
692
+ $elements = Plugin::instance()->documents->get( $page_id )->get_elements_data();
693
+ $widget_data = $this->find_element_recursive( $elements, $widget_id );
694
+ $widget = Plugin::instance()->elements_manager->create_element_instance( $widget_data );
695
+ if ( $widget ) {
696
+ $settings = $widget->get_settings_for_display();
697
+ }
698
  }
699
+ return $settings;
700
  }
701
  }
includes/templates/admin/elements.php CHANGED
@@ -382,7 +382,7 @@ $elements = [
382
  [
383
  'key' => 'fluentform',
384
  'title' => __( 'FluentForm', 'essential-addons-for-elementor-lite'),
385
- 'demo_link' => 'https://essential-addons.com/elementor/fluentform/',
386
  'doc_link' => 'https://essential-addons.com/elementor/docs/fluent-form/',
387
  ],
388
  [
@@ -551,14 +551,16 @@ $elements = apply_filters( 'add_eael_elementor_addons', $elements );
551
  '.sprintf("<a id='eael-typeform-get-access' data-link='%s' href='#'>Get Access</a>", esc_url($url)).'
552
  </span>';
553
  } elseif ($item['key'] === 'login-register') {
554
- $r_key = get_option('eael_recaptcha_sitekey');
555
- $secret = get_option('eael_recaptcha_secret');
556
- $r_old_val = !empty( $r_key) && !empty( $secret)? "{$r_key}:{$secret}" : '';
557
- echo '<span style="font-size: 12px; font-style:italic;"><a href="#" class="eael-admin-settings-popup" data-title="Google reCAPTCHA API Keys" data-placeholder="Insert like Site Key:Secret Key" data-doc="#google-recaptcha-doc" data-target="#eael_recaptcha_keys">'.__('Settings', 'essential-addons-for-elementor-lite').'</a></span>
558
- <a style="display: none" id="google-recaptcha-doc" target="_blank" href="https://www.google.com/recaptcha/admin/create">'.__('To retrieve your API Keys, click here', 'essential-addons-for-elementor-lite').'</a>
559
- <input type="hidden" name="eael_recaptcha_keys" id="eael_recaptcha_keys" class="eael_recaptcha_keys" value="' . esc_attr( $r_old_val) . '">';
560
- }
561
- ?>
 
 
562
  </p>
563
  <?php if (!empty( $item['demo_link'])) { ?>
564
  <a class="eael-element-info-link" href="<?php echo esc_attr( esc_url( $item['demo_link'] ) );?>" target="_blank">
382
  [
383
  'key' => 'fluentform',
384
  'title' => __( 'FluentForm', 'essential-addons-for-elementor-lite'),
385
+ 'demo_link' => 'https://essential-addons.com/elementor/fluent-forms/',
386
  'doc_link' => 'https://essential-addons.com/elementor/docs/fluent-form/',
387
  ],
388
  [
551
  '.sprintf("<a id='eael-typeform-get-access' data-link='%s' href='#'>Get Access</a>", esc_url($url)).'
552
  </span>';
553
  } elseif ($item['key'] === 'login-register') {
554
+ $eael_recaptcha_sitekey = get_option('eael_recaptcha_sitekey');
555
+ $eael_recaptcha_secret = get_option('eael_recaptcha_secret');
556
+ $eael_g_client_id = get_option('eael_g_client_id');
557
+ $eael_fb_app_id = get_option('eael_fb_app_id');
558
+ $eael_fb_app_secret = get_option('eael_fb_app_secret');
559
+ echo '<span style="font-size: 12px; font-style:italic;"><a href="#" class="eael-admin-settings-popup-extended" id="eael-admin-settings-popup-extended" data-settings-id="lr_settings_data">'.__('Settings', 'essential-addons-for-elementor-lite').'</a></span>';
560
+ ?>
561
+ <span class="eael-lr-settings-data" id="lr_settings_data" style="display: none" data-pro-enabled="<?php echo $this->pro_enabled ?>" data-r-sitekey="<?php echo esc_attr($eael_recaptcha_sitekey);?>" data-r-secret="<?php echo esc_attr($eael_recaptcha_secret);?>" data-g-client-id="<?php echo esc_attr($eael_g_client_id);?>" data-fb-app-id="<?php echo esc_attr($eael_fb_app_id);?>" data-fb-app-secret="<?php echo esc_attr($eael_fb_app_secret);?>" >
562
+ </span>
563
+ <?php } ?>
564
  </p>
565
  <?php if (!empty( $item['demo_link'])) { ?>
566
  <a class="eael-element-info-link" href="<?php echo esc_attr( esc_url( $item['demo_link'] ) );?>" target="_blank">
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -1,5919 +1,7304 @@
1
- #, fuzzy
 
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Essential Addons for Elementor\n"
5
- "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2019-12-22 08:59+0000\n"
7
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
- "Language-Team: \n"
10
- "Language: \n"
11
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Loco https://localise.biz/\n"
16
- "X-Loco-Version: 2.3.1; wp-5.3.2"
 
 
 
 
17
 
18
- #: includes/Elements/Fancy_Text.php:114
19
- msgid " of the sentence."
20
  msgstr ""
21
 
22
- #: includes/Elements/Pricing_Table.php:194
23
- msgid "$"
24
  msgstr ""
25
 
26
- #: includes/Traits/Helper.php:1707
27
- #, php-format
28
- msgid "%s ago"
29
  msgstr ""
30
 
31
- #: includes/Extensions/Reading_Progress.php:55
32
- msgid "&action=elementor\">Clicking Here</a></strong>"
33
  msgstr ""
34
 
35
- #: includes/Traits/Helper.php:548
36
- msgid "..."
37
  msgstr ""
38
 
39
- #: includes/Elements/Pricing_Table.php:230
40
- msgid "/"
41
  msgstr ""
42
 
43
- #: includes/Elements/Testimonial.php:155
44
- #: includes/Elements/Facebook_Feed.php:145
45
- #: includes/Elements/Product_Grid.php:73
46
- msgid "1"
47
  msgstr ""
48
 
49
- #: includes/Elements/Testimonial.php:156
50
- #: includes/Elements/Facebook_Feed.php:146
51
- #: includes/Elements/Product_Grid.php:74
52
- msgid "2"
53
  msgstr ""
54
 
55
- #: includes/Elements/Testimonial.php:157
56
- #: includes/Elements/Facebook_Feed.php:147
57
- #: includes/Elements/Product_Grid.php:75
58
- msgid "3"
59
  msgstr ""
60
 
61
- #: includes/Elements/Tooltip.php:273
62
- msgid "300"
63
  msgstr ""
64
 
65
- #: includes/Elements/Testimonial.php:158
66
- #: includes/Elements/Facebook_Feed.php:148
67
- #: includes/Elements/Product_Grid.php:76
68
- msgid "4"
69
  msgstr ""
70
 
71
- #: includes/Elements/Testimonial.php:159
72
- #: includes/Elements/Facebook_Feed.php:149
73
- #: includes/Elements/Product_Grid.php:77
74
- msgid "5"
75
  msgstr ""
76
 
77
- #: includes/Elements/Facebook_Feed.php:150
78
- #: includes/Elements/Product_Grid.php:78
79
- msgid "6"
80
  msgstr ""
81
 
82
- #: includes/Elements/Pricing_Table.php:182
83
- msgid "89"
84
  msgstr ""
85
 
86
- #: includes/Elements/Pricing_Table.php:162
87
- msgid "99"
88
  msgstr ""
89
 
90
- #: includes/Elements/Facebook_Feed.php:65
91
- msgid ""
92
- "<a href=\"https://essential-addons.com/elementor/docs/facebook-feed/\" "
93
- "class=\"eael-btn\" target=\"_blank\">Get Access Token</a>"
94
  msgstr ""
95
 
96
- #: includes/Elements/Facebook_Feed.php:54
97
- msgid ""
98
- "<a href=\"https://findmyfbid.com/\" class=\"eael-btn\" target=\"_blank\">"
99
- "Find Your Page ID</a>"
100
  msgstr ""
101
 
102
- #: includes/templates/admin/general.php:92
103
- #, php-format
104
- msgid ""
105
- "<a href=\"https://wpdeveloper.net/in/upgrade-essential-addons-elementor\" "
106
- "target=\"_blank\">%s</a>"
107
  msgstr ""
108
 
109
- #: includes/Template/Content/Post_Grid.php:86
110
- #: includes/Template/Content/Product_Grid.php:53
111
- #: includes/Template/Content/Post_Timeline.php:42
112
- msgid "<p class=\"no-posts-found\">No posts found!</p>"
113
  msgstr ""
114
 
115
- #: includes/Elements/Betterdocs_Search_Form.php:73
116
- #: includes/Elements/Betterdocs_Category_Grid.php:73
117
- #: includes/Elements/Betterdocs_Category_Box.php:73
118
- msgid ""
119
- "<strong>BetterDocs</strong> is not installed/activated on your site. Please "
120
- "install and activate <a href=\"plugin-install.php?"
121
- "s=BetterDocs&tab=search&type=term\" target=\"_blank\">BetterDocs</a> first."
122
  msgstr ""
123
 
124
- #: includes/Elements/Caldera_Forms.php:58
125
- msgid ""
126
- "<strong>Caldera Forms</strong> is not installed/activated on your site. "
127
- "Please install and activate <strong>Caldera Forms</strong> first."
128
  msgstr ""
129
 
130
- #: includes/Elements/Contact_Form_7.php:95
131
- msgid ""
132
- "<strong>Contact Form 7</strong> is not installed/activated on your site. "
133
- "Please install and activate <strong>Contact Form 7</strong> first."
134
  msgstr ""
135
 
136
- #: includes/Traits/Core.php:90
137
- msgid ""
138
- "<strong>Essential Addons for Elementor</strong> requires <strong>"
139
- "Elementor</strong> plugin to be active. Please activate Elementor to "
140
- "continue."
141
  msgstr ""
142
 
143
- #: includes/Traits/Core.php:94
144
- msgid ""
145
- "<strong>Essential Addons for Elementor</strong> requires <strong>"
146
- "Elementor</strong> plugin to be installed and activated. Please install "
147
- "Elementor to continue."
148
  msgstr ""
149
 
150
- #: includes/Elements/FluentForm.php:58
151
- msgid ""
152
- "<strong>Fluent Form</strong> is not installed/activated on your site. Please "
153
- "install and activate <a href=\"plugin-install.php?"
154
- "s=fluentform&tab=search&type=term\" target=\"_blank\">Fluent Form</a> first."
155
  msgstr ""
156
 
157
- #: includes/Elements/GravityForms.php:92
158
- msgid ""
159
- "<strong>Gravity Forms</strong> is not installed/activated on your site. "
160
- "Please install and activate <strong>Gravity Forms</strong> first."
161
  msgstr ""
162
 
163
- #: includes/Elements/NinjaForms.php:52
164
- msgid ""
165
- "<strong>Ninja Forms</strong> is not installed/activated on your site. Please "
166
- "install and activate <strong>Ninja Forms</strong> first."
167
  msgstr ""
168
 
169
- #: includes/Elements/WeForms.php:56
170
- msgid ""
171
- "<strong>WeForms</strong> is not installed/activated on your site. Please "
172
- "install and activate <strong>WeForms</strong> first."
173
  msgstr ""
174
 
175
- #: includes/Elements/WpForms.php:49
176
- msgid ""
177
- "<strong>WPForms</strong> is not installed/activated on your site. Please "
178
- "install and activate <strong>WPForms</strong> first."
179
  msgstr ""
180
 
181
- #: includes/Elements/Tooltip.php:113
182
- msgid "[shortcode-here]"
183
  msgstr ""
184
 
185
- #: includes/Elements/Pricing_Table.php:116
186
- msgid "A tagline here."
187
  msgstr ""
188
 
189
- #: includes/Elements/Facebook_Feed.php:61
190
- msgid "Access Token"
191
  msgstr ""
192
 
193
- #: includes/Elements/Adv_Accordion.php:60
194
- msgid "Accordion"
195
  msgstr ""
196
 
197
- #: includes/Elements/Image_Accordion.php:97
198
- msgid "Accordion content goes here!"
199
  msgstr ""
200
 
201
- #: includes/Elements/Image_Accordion.php:89
202
- msgid "Accordion item title"
203
  msgstr ""
204
 
205
- #: includes/Elements/Image_Accordion.php:52
206
- msgid "Accordion Style"
207
  msgstr ""
208
 
209
- #: includes/Elements/Adv_Accordion.php:116
210
- msgid "Accordion Tab Title 1"
211
  msgstr ""
212
 
213
- #: includes/Elements/Adv_Accordion.php:117
214
- msgid "Accordion Tab Title 2"
215
  msgstr ""
216
 
217
- #: includes/Elements/Adv_Accordion.php:118
218
- msgid "Accordion Tab Title 3"
219
  msgstr ""
220
 
221
- #: includes/Elements/Adv_Accordion.php:55
222
- msgid "Accordion Type"
223
  msgstr ""
224
 
225
- #: includes/Elements/Twitter_Feed.php:52
226
- msgid "Account Name"
227
  msgstr ""
228
 
229
- #: includes/Elements/Twitter_Feed.php:45
230
- msgid "Account Settings"
231
  msgstr ""
232
 
233
- #: includes/Traits/Core.php:91
234
- msgid "Activate Elementor"
235
  msgstr ""
236
 
237
- #: includes/Elements/Adv_Tabs.php:545 includes/Elements/Adv_Accordion.php:511
238
- msgid "Active"
239
  msgstr ""
240
 
241
- #: includes/Elements/Adv_Accordion.php:123
242
- msgid "Active as Default"
243
  msgstr ""
244
 
245
- #: includes/Elements/Cta_Box.php:158
246
- msgid ""
247
- "Add a strong one liner supporting the heading above and giving users a "
248
- "reason to click on the button below."
249
  msgstr ""
250
 
251
- #: includes/Elements/Team_Member.php:103
252
- msgid "Add team member description here. Remove the text if not necessary."
253
  msgstr ""
254
 
255
- #: includes/Elements/Testimonial.php:117
256
- msgid "Add testimonial description here. Edit and place your own text."
257
  msgstr ""
258
 
259
- #: includes/Elements/Product_Grid.php:333
260
- msgid "Add to Cart Button Styles"
261
  msgstr ""
262
 
263
- #: includes/Elements/FluentForm.php:1374
264
- msgid "Address Line Style"
265
  msgstr ""
266
 
267
- #: includes/Classes/WPML/Widgets/Accordion.php:53
268
- msgid "Advance Accordion: Content"
269
  msgstr ""
270
 
271
- #: includes/Classes/WPML/Widgets/Accordion.php:50
272
- msgid "Advance Accordion: Title"
273
  msgstr ""
274
 
275
- #: includes/Elements/Advanced_Data_Table.php:74
276
- msgid "Advance Features"
277
  msgstr ""
278
 
279
- #: includes/Classes/WPML/Widgets/Advance_Tab.php:53
280
- msgid "Advance Tab: Content"
281
  msgstr ""
282
 
283
- #: includes/Classes/WPML/Widgets/Advance_Tab.php:50
284
- msgid "Advance Tab: Title"
285
  msgstr ""
286
 
287
- #: includes/templates/admin/elements.php:51
288
- msgid "Advanced Accordion"
289
  msgstr ""
290
 
291
- #: includes/templates/admin/elements.php:152
292
- msgid "Advanced Google Map"
293
  msgstr ""
294
 
295
- #: includes/templates/admin/elements.php:76
296
- msgid "Advanced Menu"
297
  msgstr ""
298
 
299
- #: includes/templates/admin/elements.php:57
300
- msgid "Advanced Tabs"
301
  msgstr ""
302
 
303
- #: includes/templates/admin/extensions.php:23
304
- msgid "Advanced Tooltip"
305
  msgstr ""
306
 
307
- #: includes/Elements/Info_Box.php:407 includes/Elements/Pricing_Table.php:431
308
- #: includes/Elements/Flip_Box.php:429 includes/Elements/Creative_Button.php:110
309
- msgid "After"
310
  msgstr ""
311
 
312
- #: includes/Elements/Contact_Form_7.php:1310
313
- msgid "Alert"
314
  msgstr ""
315
 
316
- #: includes/Elements/Content_Ticker.php:542
317
- msgid "Align Left Arrow"
318
  msgstr ""
319
 
320
- #: includes/Elements/Content_Ticker.php:561
321
- msgid "Align Right Arrow"
322
  msgstr ""
323
 
324
- #: includes/Elements/NinjaForms.php:387 includes/Elements/NinjaForms.php:569
325
- #: includes/Elements/NinjaForms.php:1149 includes/Elements/FluentForm.php:200
326
- #: includes/Elements/FluentForm.php:541 includes/Elements/FluentForm.php:1172
327
- #: includes/Elements/FluentForm.php:1417 includes/Elements/Data_Table.php:415
328
- #: includes/Elements/Tooltip.php:150 includes/Elements/GravityForms.php:451
329
- #: includes/Elements/GravityForms.php:596
330
- #: includes/Elements/GravityForms.php:1338
331
- #: includes/Elements/Dual_Color_Header.php:128
332
- #: includes/Elements/Progress_Bar.php:257
333
- #: includes/Elements/Progress_Bar.php:468
334
- #: includes/Elements/Advanced_Data_Table.php:940
335
- #: includes/Elements/Fancy_Text.php:164 includes/Elements/WpForms.php:350
336
- #: includes/Elements/WpForms.php:524 includes/Elements/WpForms.php:1089
337
- #: includes/Elements/Caldera_Forms.php:206
338
- #: includes/Elements/Caldera_Forms.php:534
339
- #: includes/Elements/Caldera_Forms.php:1109
340
- #: includes/Elements/Contact_Form_7.php:412
341
- #: includes/Elements/Contact_Form_7.php:1063
342
- msgid "Alignment"
343
  msgstr ""
344
 
345
- #: includes/Extensions/Reading_Progress.php:89
346
- msgid "All Pages"
347
  msgstr ""
348
 
349
- #: includes/Extensions/Reading_Progress.php:88
350
- msgid "All Posts"
351
  msgstr ""
352
 
353
- #: includes/Extensions/Reading_Progress.php:90
354
- msgid "All Posts & Pages"
355
  msgstr ""
356
 
357
- #: includes/Elements/Post_Grid.php:344 includes/Elements/Info_Box.php:565
358
- #: includes/Elements/Info_Box.php:796 includes/Elements/Info_Box.php:1028
359
- msgid "Animation"
360
  msgstr ""
361
 
362
- #: includes/Elements/Progress_Bar.php:161
363
- #: includes/Elements/Pricing_Table.php:363
364
- msgid "Animation Duration"
365
  msgstr ""
366
 
367
- #: includes/Elements/Content_Ticker.php:112
368
- msgid "Animation Settings"
369
  msgstr ""
370
 
371
- #: includes/Extensions/Reading_Progress.php:182
372
- msgid "Animation Speed"
373
  msgstr ""
374
 
375
- #: includes/Elements/Fancy_Text.php:190
376
- msgid "Animation Type"
377
  msgstr ""
378
 
379
- #: includes/Elements/Creative_Button.php:205
380
- msgid "Antiman (Pro)"
381
  msgstr ""
382
 
383
- #: includes/Elements/Pricing_Table.php:1212
384
- msgid "Arrow Background"
385
  msgstr ""
386
 
387
- #: includes/Elements/Tooltip.php:654
388
- msgid "Arrow Color"
389
  msgstr ""
390
 
391
- #: includes/Elements/Tooltip.php:628 includes/Elements/Pricing_Table.php:1295
392
- msgid "Arrow Size"
393
  msgstr ""
394
 
395
- #: includes/Elements/Content_Ticker.php:278
396
- #: includes/Elements/Content_Ticker.php:483
397
- msgid "Arrows"
398
  msgstr ""
399
 
400
- #: includes/Elements/Content_Ticker.php:521
401
- msgid "Arrows Size"
402
  msgstr ""
403
 
404
- #: includes/Elements/Betterdocs_Category_Grid.php:269
405
- msgid "Article"
406
  msgstr ""
407
 
408
- #: includes/Traits/Helper.php:105
409
- msgid "Author"
410
  msgstr ""
411
 
412
- #: includes/Elements/Sticky_Video.php:252
413
- #: includes/Elements/Content_Ticker.php:195
414
- msgid "Autoplay"
415
  msgstr ""
416
 
417
- #: includes/Elements/Content_Ticker.php:208
418
- msgid "Autoplay Speed"
419
  msgstr ""
420
 
421
- #: includes/Elements/Twitter_Feed.php:206
422
- msgid "Avatar Style"
423
  msgstr ""
424
 
425
- #: includes/Elements/Creative_Button.php:201
426
- msgid "Aylen (Pro)"
427
  msgstr ""
428
 
429
- #: includes/Elements/Flip_Box.php:158 includes/Elements/Flip_Box.php:291
430
- #: includes/Elements/Flip_Box.php:754 includes/Elements/Flip_Box.php:952
431
- msgid "Back"
432
  msgstr ""
433
 
434
- #: includes/Elements/Flip_Box.php:496
435
- msgid "Back Background Color"
436
  msgstr ""
437
 
438
- #: includes/Elements/Flip_Box.php:308
439
- msgid "Back Text"
440
  msgstr ""
441
 
442
- #: includes/Elements/Flip_Box.php:298 includes/Elements/Flip_Box.php:301
443
- msgid "Back Title"
444
  msgstr ""
445
 
446
- #: includes/Traits/Helper.php:702 includes/Traits/Helper.php:756
447
- #: includes/Elements/Progress_Bar.php:285
448
- #: includes/Elements/Advanced_Data_Table.php:321
449
- #: includes/Elements/Advanced_Data_Table.php:329
450
- #: includes/Elements/Advanced_Data_Table.php:492
451
- #: includes/Elements/Advanced_Data_Table.php:500
452
- #: includes/Elements/Advanced_Data_Table.php:604
453
- #: includes/Elements/Advanced_Data_Table.php:637
454
- #: includes/Elements/Advanced_Data_Table.php:670
455
- #: includes/Elements/Advanced_Data_Table.php:703
456
- #: includes/Elements/Advanced_Data_Table.php:736
457
- #: includes/Elements/Advanced_Data_Table.php:769
458
- #: includes/Elements/Advanced_Data_Table.php:1007
459
- #: includes/Elements/Advanced_Data_Table.php:1015
460
- #: includes/Elements/Advanced_Data_Table.php:1169
461
- #: includes/Elements/Advanced_Data_Table.php:1177
462
- #: includes/Elements/Advanced_Data_Table.php:1254
463
- #: includes/Elements/Advanced_Data_Table.php:1262
464
- #: includes/Elements/Facebook_Feed.php:343
465
- #: includes/Elements/Facebook_Feed.php:369
466
- #: includes/Elements/Facebook_Feed.php:452 includes/Elements/Fancy_Text.php:351
467
- #: includes/Elements/Flip_Box.php:1087 includes/Elements/Flip_Box.php:1145
468
- msgid "Background"
469
  msgstr ""
470
 
471
- #: includes/Elements/Data_Table.php:703 includes/Elements/Data_Table.php:785
472
- msgid "Background ( Odd Row )"
473
  msgstr ""
474
 
475
- #: includes/Traits/Helper.php:886 includes/Traits/Helper.php:948
476
- #: includes/Extensions/Reading_Progress.php:150
477
- #: includes/Elements/Adv_Tabs.php:417 includes/Elements/Adv_Tabs.php:632
478
- #: includes/Elements/NinjaForms.php:604 includes/Elements/NinjaForms.php:814
479
- #: includes/Elements/NinjaForms.php:1227 includes/Elements/NinjaForms.php:1314
480
- #: includes/Elements/FluentForm.php:576 includes/Elements/FluentForm.php:784
481
- #: includes/Elements/FluentForm.php:1218 includes/Elements/FluentForm.php:1304
482
- #: includes/Elements/FluentForm.php:1489 includes/Elements/FluentForm.php:1595
483
- #: includes/Elements/FluentForm.php:1649 includes/Elements/Post_Grid.php:375
484
- #: includes/Elements/Data_Table.php:505 includes/Elements/Data_Table.php:545
485
- #: includes/Elements/Data_Table.php:981 includes/Elements/Cta_Box.php:92
486
- #: includes/Elements/Cta_Box.php:298 includes/Elements/Cta_Box.php:518
487
- #: includes/Elements/Cta_Box.php:572 includes/Elements/Countdown.php:559
488
- #: includes/Elements/Countdown.php:615 includes/Elements/Countdown.php:671
489
- #: includes/Elements/Countdown.php:727 includes/Elements/Tooltip.php:376
490
- #: includes/Elements/Tooltip.php:419 includes/Elements/Tooltip.php:592
491
- #: includes/Elements/Image_Accordion.php:146
492
- #: includes/Elements/GravityForms.php:631
493
- #: includes/Elements/GravityForms.php:858
494
- #: includes/Elements/GravityForms.php:1417
495
- #: includes/Elements/GravityForms.php:1504
496
- #: includes/Elements/Dual_Color_Header.php:195
497
- #: includes/Elements/Adv_Accordion.php:373
498
- #: includes/Elements/Adv_Accordion.php:445
499
- #: includes/Elements/Adv_Accordion.php:517
500
- #: includes/Elements/Adv_Accordion.php:597
501
- #: includes/Elements/Progress_Bar.php:518 includes/Elements/WeForms.php:641
502
- #: includes/Elements/WeForms.php:691 includes/Elements/Info_Box.php:494
503
- #: includes/Elements/Info_Box.php:737 includes/Elements/Info_Box.php:817
504
- #: includes/Elements/Info_Box.php:986 includes/Elements/Info_Box.php:1049
505
- #: includes/Elements/Info_Box.php:1223 includes/Elements/Info_Box.php:1269
506
- #: includes/Elements/Content_Ticker.php:349
507
- #: includes/Elements/Content_Ticker.php:414
508
- #: includes/Elements/Content_Ticker.php:589
509
- #: includes/Elements/Content_Ticker.php:645
510
- #: includes/Elements/Team_Member.php:664 includes/Elements/WpForms.php:559
511
- #: includes/Elements/WpForms.php:1164 includes/Elements/WpForms.php:1271
512
- #: includes/Elements/Pricing_Table.php:588
513
- #: includes/Elements/Pricing_Table.php:748
514
- #: includes/Elements/Pricing_Table.php:1155
515
- #: includes/Elements/Pricing_Table.php:1200
516
- #: includes/Elements/Pricing_Table.php:1366
517
- #: includes/Elements/Pricing_Table.php:1612
518
- #: includes/Elements/Pricing_Table.php:1666
519
- #: includes/Elements/Caldera_Forms.php:569
520
- #: includes/Elements/Caldera_Forms.php:777
521
- #: includes/Elements/Caldera_Forms.php:1181
522
- #: includes/Elements/Caldera_Forms.php:1287
523
- #: includes/Elements/Caldera_Forms.php:1341
524
- #: includes/Elements/Contact_Form_7.php:523
525
- #: includes/Elements/Contact_Form_7.php:698
526
- #: includes/Elements/Contact_Form_7.php:1138
527
- #: includes/Elements/Contact_Form_7.php:1244
528
- #: includes/Elements/Contact_Form_7.php:1369
529
- #: includes/Elements/Contact_Form_7.php:1430
530
- #: includes/Elements/Twitter_Feed.php:301
531
- #: includes/Elements/Creative_Button.php:246
532
- #: includes/Elements/Creative_Button.php:322
533
- msgid "Background Color"
534
  msgstr ""
535
 
536
- #: includes/Elements/Data_Table.php:736 includes/Elements/Data_Table.php:816
537
- msgid "Background Color (Even Row)"
538
  msgstr ""
539
 
540
- #: includes/Elements/Cta_Box.php:94
541
- msgid "Background Fixed Image"
542
  msgstr ""
543
 
544
- #: includes/Elements/Pricing_Table.php:1384
545
- msgid "Background Hover Color"
546
  msgstr ""
547
 
548
- #: includes/Elements/Cta_Box.php:93 includes/Elements/Cta_Box.php:197
549
- #: includes/Elements/Image_Accordion.php:77
550
- msgid "Background Image"
551
  msgstr ""
552
 
553
- #: includes/Elements/Info_Box.php:752 includes/Elements/Info_Box.php:833
554
- #: includes/Elements/Info_Box.php:969 includes/Elements/Info_Box.php:1065
555
- msgid "Background Shape"
556
  msgstr ""
557
 
558
- #: includes/Elements/Sticky_Video.php:605
559
- msgid "Bar"
560
  msgstr ""
561
 
562
- #: includes/Elements/Sticky_Video.php:636
563
- msgid "Bar Margin"
564
  msgstr ""
565
 
566
- #: includes/Elements/Sticky_Video.php:613
567
- msgid "Bar Padding"
568
  msgstr ""
569
 
570
- #: includes/Elements/Cta_Box.php:56
571
- msgid "Basic"
572
  msgstr ""
573
 
574
- #: includes/Elements/Info_Box.php:406 includes/Elements/Pricing_Table.php:430
575
- #: includes/Elements/Flip_Box.php:430 includes/Elements/Creative_Button.php:109
576
- msgid "Before"
577
  msgstr ""
578
 
579
- #: includes/Elements/Product_Grid.php:59
580
- msgid "Best Selling Products"
581
  msgstr ""
582
 
583
- #: includes/Elements/Betterdocs_Category_Box.php:29
584
- #: includes/templates/admin/elements.php:452
585
- msgid "BetterDocs Category Box"
586
  msgstr ""
587
 
588
- #: includes/Elements/Betterdocs_Category_Grid.php:29
589
- #: includes/templates/admin/elements.php:446
590
- msgid "BetterDocs Category Grid"
591
  msgstr ""
592
 
593
- #: includes/Elements/Betterdocs_Search_Form.php:29
594
- #: includes/templates/admin/elements.php:458
595
- msgid "BetterDocs Search Form"
596
  msgstr ""
597
 
598
- #: includes/Elements/Countdown.php:65
599
- msgid "Block"
600
  msgstr ""
601
 
602
- #: includes/Elements/Advanced_Data_Table.php:413
603
- msgid "Body"
604
  msgstr ""
605
 
606
- #: includes/Traits/Helper.php:715 includes/Traits/Helper.php:769
607
- #: includes/Traits/Helper.php:899 includes/Elements/Adv_Tabs.php:274
608
- #: includes/Elements/Adv_Tabs.php:462 includes/Elements/Adv_Tabs.php:528
609
- #: includes/Elements/Adv_Tabs.php:597 includes/Elements/Adv_Tabs.php:692
610
- #: includes/Elements/NinjaForms.php:629 includes/Elements/NinjaForms.php:827
611
- #: includes/Elements/NinjaForms.php:1252 includes/Elements/FluentForm.php:601
612
- #: includes/Elements/FluentForm.php:797 includes/Elements/FluentForm.php:1514
613
- #: includes/Elements/FluentForm.php:1672 includes/Elements/Post_Grid.php:90
614
- #: includes/Elements/Data_Table.php:518 includes/Elements/Data_Table.php:557
615
- #: includes/Elements/Data_Table.php:749 includes/Elements/Data_Table.php:1008
616
- #: includes/Elements/Betterdocs_Search_Form.php:328
617
- #: includes/Elements/Betterdocs_Search_Form.php:386
618
- #: includes/Elements/Betterdocs_Search_Form.php:496
619
- #: includes/Elements/Cta_Box.php:335 includes/Elements/Cta_Box.php:531
620
- #: includes/Elements/Countdown.php:442 includes/Elements/Tooltip.php:408
621
- #: includes/Elements/Tooltip.php:451
622
- #: includes/Elements/Betterdocs_Category_Grid.php:424
623
- #: includes/Elements/Betterdocs_Category_Grid.php:484
624
- #: includes/Elements/Image_Accordion.php:183
625
- #: includes/Elements/Testimonial.php:357 includes/Elements/GravityForms.php:806
626
- #: includes/Elements/GravityForms.php:871
627
- #: includes/Elements/GravityForms.php:1442
628
- #: includes/Elements/Dual_Color_Header.php:232
629
- #: includes/Elements/Adv_Accordion.php:255
630
- #: includes/Elements/Adv_Accordion.php:418
631
- #: includes/Elements/Adv_Accordion.php:490
632
- #: includes/Elements/Adv_Accordion.php:562
633
- #: includes/Elements/Adv_Accordion.php:659
634
- #: includes/Elements/Advanced_Data_Table.php:205
635
- #: includes/Elements/Advanced_Data_Table.php:214
636
- #: includes/Elements/Advanced_Data_Table.php:348
637
- #: includes/Elements/Advanced_Data_Table.php:519
638
- #: includes/Elements/Advanced_Data_Table.php:1034
639
- #: includes/Elements/Advanced_Data_Table.php:1043
640
- #: includes/Elements/Advanced_Data_Table.php:1196
641
- #: includes/Elements/Advanced_Data_Table.php:1205
642
- #: includes/Elements/Advanced_Data_Table.php:1281
643
- #: includes/Elements/Advanced_Data_Table.php:1290
644
- #: includes/Elements/Facebook_Feed.php:307 includes/Elements/Info_Box.php:519
645
- #: includes/Elements/Info_Box.php:574 includes/Elements/Info_Box.php:770
646
- #: includes/Elements/Info_Box.php:851 includes/Elements/Info_Box.php:1002
647
- #: includes/Elements/Info_Box.php:1083 includes/Elements/Content_Ticker.php:614
648
- #: includes/Elements/Team_Member.php:369 includes/Elements/Team_Member.php:457
649
- #: includes/Elements/WpForms.php:584 includes/Elements/WpForms.php:770
650
- #: includes/Elements/WpForms.php:1189 includes/Elements/Pricing_Table.php:1485
651
- #: includes/Elements/Pricing_Table.php:1625
652
- #: includes/Elements/Caldera_Forms.php:594
653
- #: includes/Elements/Caldera_Forms.php:790
654
- #: includes/Elements/Caldera_Forms.php:1206
655
- #: includes/Elements/Caldera_Forms.php:1364
656
- #: includes/Elements/Betterdocs_Category_Box.php:166
657
- #: includes/Elements/Betterdocs_Category_Box.php:316
658
- #: includes/Elements/Contact_Form_7.php:646
659
- #: includes/Elements/Contact_Form_7.php:711
660
- #: includes/Elements/Contact_Form_7.php:1163
661
- #: includes/Elements/Contact_Form_7.php:1400
662
- #: includes/Elements/Contact_Form_7.php:1475
663
- #: includes/Elements/Twitter_Feed.php:327 includes/Elements/Flip_Box.php:704
664
- #: includes/Elements/Flip_Box.php:817
665
- msgid "Border"
666
  msgstr ""
667
 
668
- #: includes/Elements/Post_Timeline.php:117
669
- msgid "Border & Arrow Color"
670
  msgstr ""
671
 
672
- #: includes/Traits/Helper.php:960 includes/Elements/NinjaForms.php:1037
673
- #: includes/Elements/NinjaForms.php:1338 includes/Elements/FluentForm.php:951
674
- #: includes/Elements/FluentForm.php:1619 includes/Elements/Cta_Box.php:585
675
- #: includes/Elements/Countdown.php:595 includes/Elements/Countdown.php:651
676
- #: includes/Elements/Countdown.php:707 includes/Elements/Countdown.php:763
677
- #: includes/Elements/GravityForms.php:1029
678
- #: includes/Elements/GravityForms.php:1226
679
- #: includes/Elements/GravityForms.php:1528 includes/Elements/WeForms.php:424
680
- #: includes/Elements/WeForms.php:702 includes/Elements/Sticky_Video.php:528
681
- #: includes/Elements/Content_Ticker.php:669
682
- #: includes/Elements/Product_Grid.php:424 includes/Elements/WpForms.php:977
683
- #: includes/Elements/WpForms.php:1295 includes/Elements/Pricing_Table.php:1678
684
- #: includes/Elements/Caldera_Forms.php:997
685
- #: includes/Elements/Caldera_Forms.php:1311
686
- #: includes/Elements/Contact_Form_7.php:952
687
- #: includes/Elements/Contact_Form_7.php:1268
688
- #: includes/Elements/Creative_Button.php:353
689
- msgid "Border Color"
690
  msgstr ""
691
 
692
- #: includes/Elements/GravityForms.php:1004
693
- msgid "Border Height"
694
  msgstr ""
695
 
696
- #: includes/Traits/Helper.php:723 includes/Traits/Helper.php:777
697
- #: includes/Traits/Helper.php:907 includes/Elements/Adv_Tabs.php:281
698
- #: includes/Elements/Adv_Tabs.php:469 includes/Elements/Adv_Tabs.php:535
699
- #: includes/Elements/Adv_Tabs.php:604 includes/Elements/NinjaForms.php:337
700
- #: includes/Elements/NinjaForms.php:640 includes/Elements/NinjaForms.php:1063
701
- #: includes/Elements/NinjaForms.php:1089 includes/Elements/NinjaForms.php:1262
702
- #: includes/Elements/FluentForm.php:464 includes/Elements/FluentForm.php:612
703
- #: includes/Elements/FluentForm.php:977 includes/Elements/FluentForm.php:1003
704
- #: includes/Elements/FluentForm.php:1524 includes/Elements/Post_Grid.php:98
705
- #: includes/Elements/Betterdocs_Search_Form.php:179
706
- #: includes/Elements/Cta_Box.php:343 includes/Elements/Cta_Box.php:539
707
- #: includes/Elements/Countdown.php:450 includes/Elements/Feature_List.php:527
708
- #: includes/Elements/Tooltip.php:468 includes/Elements/Image_Accordion.php:191
709
- #: includes/Elements/Testimonial.php:376 includes/Elements/GravityForms.php:407
710
- #: includes/Elements/GravityForms.php:817
711
- #: includes/Elements/GravityForms.php:1252
712
- #: includes/Elements/GravityForms.php:1278
713
- #: includes/Elements/GravityForms.php:1452
714
- #: includes/Elements/Dual_Color_Header.php:240
715
- #: includes/Elements/Adv_Accordion.php:262
716
- #: includes/Elements/Adv_Accordion.php:425
717
- #: includes/Elements/Adv_Accordion.php:497
718
- #: includes/Elements/Adv_Accordion.php:569 includes/Elements/WeForms.php:231
719
- #: includes/Elements/WeForms.php:354 includes/Elements/WeForms.php:660
720
- #: includes/Elements/Sticky_Video.php:540
721
- #: includes/Elements/Facebook_Feed.php:332 includes/Elements/Info_Box.php:1189
722
- #: includes/Elements/Content_Ticker.php:467
723
- #: includes/Elements/Content_Ticker.php:624
724
- #: includes/Elements/Team_Member.php:377 includes/Elements/Team_Member.php:476
725
- #: includes/Elements/Team_Member.php:684 includes/Elements/Product_Grid.php:184
726
- #: includes/Elements/Fancy_Text.php:412 includes/Elements/WpForms.php:304
727
- #: includes/Elements/WpForms.php:595 includes/Elements/WpForms.php:1003
728
- #: includes/Elements/WpForms.php:1029 includes/Elements/WpForms.php:1199
729
- #: includes/Elements/Pricing_Table.php:633
730
- #: includes/Elements/Pricing_Table.php:1264
731
- #: includes/Elements/Pricing_Table.php:1508
732
- #: includes/Elements/Pricing_Table.php:1633
733
- #: includes/Elements/Caldera_Forms.php:457
734
- #: includes/Elements/Caldera_Forms.php:605
735
- #: includes/Elements/Caldera_Forms.php:1023
736
- #: includes/Elements/Caldera_Forms.php:1049
737
- #: includes/Elements/Caldera_Forms.php:1216
738
- #: includes/Elements/Betterdocs_Category_Box.php:174
739
- #: includes/Elements/Betterdocs_Category_Box.php:324
740
- #: includes/Elements/Contact_Form_7.php:369
741
- #: includes/Elements/Contact_Form_7.php:657
742
- #: includes/Elements/Contact_Form_7.php:978
743
- #: includes/Elements/Contact_Form_7.php:1004
744
- #: includes/Elements/Contact_Form_7.php:1172
745
- #: includes/Elements/Twitter_Feed.php:335 includes/Elements/Flip_Box.php:530
746
- #: includes/Elements/Flip_Box.php:603 includes/Elements/Flip_Box.php:727
747
- #: includes/Elements/Flip_Box.php:840 includes/Elements/Flip_Box.php:1099
748
- #: includes/Elements/Creative_Button.php:285
749
- msgid "Border Radius"
750
  msgstr ""
751
 
752
- #: includes/Elements/Betterdocs_Category_Grid.php:165
753
- msgid "Border Size"
754
  msgstr ""
755
 
756
- #: includes/Elements/Flip_Box.php:522
757
- msgid "Border Style"
758
  msgstr ""
759
 
760
- #: includes/Elements/GravityForms.php:984
761
- #: includes/Elements/Sticky_Video.php:497
762
- #: includes/Elements/Pricing_Table.php:625
763
- #: includes/Elements/Pricing_Table.php:1256
764
- msgid "Border Type"
765
  msgstr ""
766
 
767
- #: includes/Elements/NinjaForms.php:1015 includes/Elements/FluentForm.php:929
768
- #: includes/Elements/Feature_List.php:503
769
- #: includes/Elements/GravityForms.php:1204
770
- #: includes/Elements/Sticky_Video.php:516 includes/Elements/WpForms.php:955
771
- #: includes/Elements/Caldera_Forms.php:975
772
- #: includes/Elements/Contact_Form_7.php:930
773
- msgid "Border Width"
774
  msgstr ""
775
 
776
- #: includes/Elements/Pricing_Table.php:390
777
- msgid "Borderless"
778
  msgstr ""
779
 
780
- #: includes/Extensions/Reading_Progress.php:110
781
- #: includes/Elements/Tooltip.php:263 includes/Elements/Info_Box.php:111
782
- #: includes/Elements/Pricing_Table.php:323
783
- msgid "Bottom"
784
  msgstr ""
785
 
786
- #: includes/Elements/Sticky_Video.php:74
787
- msgid "Bottom Left"
788
  msgstr ""
789
 
790
- #: includes/Elements/Sticky_Video.php:75
791
- msgid "Bottom Right"
792
  msgstr ""
793
 
794
- #: includes/Elements/Fancy_Text.php:201
795
- msgid "Bounce"
796
  msgstr ""
797
 
798
- #: includes/Elements/Flip_Box.php:366
799
- msgid "Box"
800
  msgstr ""
801
 
802
- #: includes/Elements/Progress_Bar.php:68
803
- msgid "Box (Pro)"
804
  msgstr ""
805
 
806
- #: includes/Elements/Countdown.php:373
807
- msgid "Box Background Color"
808
  msgstr ""
809
 
810
- #: includes/Elements/Progress_Bar.php:592
811
- msgid "Box Shadow"
812
  msgstr ""
813
 
814
- #: includes/Traits/Helper.php:441
815
- msgid "Bullet"
816
  msgstr ""
817
 
818
- #: includes/Elements/Betterdocs_Category_Grid.php:385
819
- #: includes/Elements/Info_Box.php:304 includes/Elements/Pricing_Table.php:410
820
- #: includes/Elements/Pricing_Table.php:1534 includes/Elements/Flip_Box.php:368
821
- msgid "Button"
822
  msgstr ""
823
 
824
- #: includes/Traits/Helper.php:984 includes/Elements/WeForms.php:564
825
- #: includes/Elements/Pricing_Table.php:687
826
- #: includes/Elements/Creative_Button.php:373
827
- msgid "Button Alignment"
828
  msgstr ""
829
 
830
- #: includes/Elements/Product_Grid.php:359
831
- #: includes/Elements/Product_Grid.php:410
832
- msgid "Button Background Color"
833
  msgstr ""
834
 
835
- #: includes/Elements/Product_Grid.php:345
836
- #: includes/Elements/Product_Grid.php:396
837
- msgid "Button Color"
838
  msgstr ""
839
 
840
- #: includes/Elements/Creative_Button.php:47
841
- msgid "Button Content"
842
  msgstr ""
843
 
844
- #: includes/Elements/Creative_Button.php:180
845
- msgid "Button Effects &amp; Styles"
846
  msgstr ""
847
 
848
- #: includes/Elements/Pricing_Table.php:417 includes/Elements/Flip_Box.php:413
849
- msgid "Button Icon"
850
  msgstr ""
851
 
852
- #: includes/Elements/Cta_Box.php:179 includes/Elements/Tooltip.php:218
853
- #: includes/Elements/Pricing_Table.php:472
854
- msgid "Button Link"
855
  msgstr ""
856
 
857
- #: includes/Elements/Info_Box.php:1177
858
- #: includes/Elements/Creative_Button.php:461
859
- msgid "Button Padding"
860
  msgstr ""
861
 
862
- #: includes/Elements/Creative_Button.php:67
863
- msgid "Button Secondary Text"
864
  msgstr ""
865
 
866
- #: includes/Elements/Cta_Box.php:447 includes/Elements/Flip_Box.php:1032
867
- msgid "Button Style"
868
  msgstr ""
869
 
870
- #: includes/Elements/Info_Box.php:1110
871
- msgid "Button Styles"
872
  msgstr ""
873
 
874
- #: includes/Traits/Helper.php:604 includes/Elements/Cta_Box.php:169
875
- #: includes/Elements/Cta_Box.php:172 includes/Elements/Info_Box.php:356
876
- #: includes/Elements/Pricing_Table.php:462 includes/Elements/Flip_Box.php:398
877
- #: includes/Elements/Creative_Button.php:55
878
- msgid "Button Text"
879
  msgstr ""
880
 
881
- #: includes/Elements/WeForms.php:542
882
- msgid "Button Width"
883
  msgstr ""
884
 
885
- #: includes/Elements/Caldera_Forms.php:79
886
- #: includes/templates/admin/elements.php:373
887
- msgid "Caldera Form"
888
  msgstr ""
889
 
890
- #: includes/Classes/WPML/Eael_WPML.php:351
891
- msgid "Caldera Form: Description"
892
  msgstr ""
893
 
894
- #: includes/Classes/WPML/Eael_WPML.php:346
895
- msgid "Caldera Form: Title"
896
  msgstr ""
897
 
898
- #: includes/Elements/Caldera_Forms.php:72
899
- msgid "Caldera Forms"
900
  msgstr ""
901
 
902
- #: includes/templates/admin/elements.php:325
903
- msgid "Call To Action"
904
  msgstr ""
905
 
906
- #: includes/Elements/Cta_Box.php:249
907
- msgid "Call to Action Style"
908
  msgstr ""
909
 
910
- #: includes/Classes/WPML/Eael_WPML.php:55
911
- msgid "Call to Action: Button Text"
912
  msgstr ""
913
 
914
- #: includes/Classes/WPML/Eael_WPML.php:50
915
- msgid "Call to Action: Content"
916
  msgstr ""
917
 
918
- #: includes/Classes/WPML/Eael_WPML.php:45
919
- msgid "Call to Action: Title"
920
  msgstr ""
921
 
922
- #: includes/Elements/Facebook_Feed.php:131
923
- #: includes/Elements/Betterdocs_Category_Box.php:142
924
- msgid "Card"
925
  msgstr ""
926
 
927
- #: includes/Elements/Twitter_Feed.php:187
928
- msgid "Card Settings"
929
  msgstr ""
930
 
931
- #: includes/Elements/Twitter_Feed.php:293
932
- msgid "Card Style"
933
  msgstr ""
934
 
935
- #: includes/Elements/Adv_Tabs.php:714
936
- msgid "Caret"
937
  msgstr ""
938
 
939
- #: includes/Elements/Adv_Tabs.php:752 includes/Elements/Adv_Accordion.php:713
940
- msgid "Caret Color"
941
  msgstr ""
942
 
943
- #: includes/Elements/Adv_Accordion.php:727
944
- msgid "Caret Color (Active)"
945
  msgstr ""
946
 
947
- #: includes/Elements/Adv_Tabs.php:730
948
- msgid "Caret Size"
949
  msgstr ""
950
 
951
- #: includes/Elements/Betterdocs_Category_Grid.php:137
952
- msgid "Category"
953
  msgstr ""
954
 
955
- #: includes/Elements/Betterdocs_Category_Box.php:194
956
- #: includes/Elements/Betterdocs_Category_Box.php:344
957
- msgid "Category Icon"
958
  msgstr ""
959
 
960
- #: includes/Elements/Betterdocs_Category_Box.php:220
961
- #: includes/Elements/Betterdocs_Category_Box.php:392
962
- msgid "Category Title"
963
  msgstr ""
964
 
965
- #: includes/Elements/Advanced_Data_Table.php:357
966
- #: includes/Elements/Advanced_Data_Table.php:528
967
- msgid "Cell Border"
968
  msgstr ""
969
 
970
- #: includes/Elements/Data_Table.php:265 includes/Elements/Data_Table.php:276
971
- msgid "Cell Text"
972
  msgstr ""
973
 
974
- #: includes/Traits/Helper.php:344 includes/Traits/Helper.php:992
975
- #: includes/Elements/NinjaForms.php:252 includes/Elements/NinjaForms.php:395
976
- #: includes/Elements/NinjaForms.php:577 includes/Elements/NinjaForms.php:1157
977
- #: includes/Elements/FluentForm.php:208 includes/Elements/FluentForm.php:403
978
- #: includes/Elements/FluentForm.php:549 includes/Elements/FluentForm.php:1180
979
- #: includes/Elements/FluentForm.php:1425 includes/Elements/Post_Grid.php:170
980
- #: includes/Elements/Post_Grid.php:226 includes/Elements/Post_Grid.php:302
981
- #: includes/Elements/Data_Table.php:425 includes/Elements/Data_Table.php:648
982
- #: includes/Elements/Data_Table.php:897 includes/Elements/Cta_Box.php:75
983
- #: includes/Elements/Countdown.php:799 includes/Elements/Tooltip.php:159
984
- #: includes/Elements/Tooltip.php:353 includes/Elements/Testimonial.php:240
985
- #: includes/Elements/GravityForms.php:322
986
- #: includes/Elements/GravityForms.php:459
987
- #: includes/Elements/GravityForms.php:604
988
- #: includes/Elements/GravityForms.php:1346
989
- #: includes/Elements/Dual_Color_Header.php:137
990
- #: includes/Elements/Progress_Bar.php:265
991
- #: includes/Elements/Progress_Bar.php:476 includes/Elements/WeForms.php:147
992
- #: includes/Elements/WeForms.php:577
993
- #: includes/Elements/Advanced_Data_Table.php:275
994
- #: includes/Elements/Advanced_Data_Table.php:446
995
- #: includes/Elements/Advanced_Data_Table.php:949
996
- #: includes/Elements/Info_Box.php:262 includes/Elements/Team_Member.php:340
997
- #: includes/Elements/Fancy_Text.php:172 includes/Elements/WpForms.php:241
998
- #: includes/Elements/WpForms.php:358 includes/Elements/WpForms.php:532
999
- #: includes/Elements/WpForms.php:1097 includes/Elements/Pricing_Table.php:671
1000
- #: includes/Elements/Pricing_Table.php:696
1001
- #: includes/Elements/Caldera_Forms.php:214
1002
- #: includes/Elements/Caldera_Forms.php:396
1003
- #: includes/Elements/Caldera_Forms.php:542
1004
- #: includes/Elements/Caldera_Forms.php:1117
1005
- #: includes/Elements/Contact_Form_7.php:308
1006
- #: includes/Elements/Contact_Form_7.php:420
1007
- #: includes/Elements/Contact_Form_7.php:1072
1008
- #: includes/Elements/Post_Timeline.php:199
1009
- #: includes/Elements/Post_Timeline.php:255 includes/Elements/Flip_Box.php:331
1010
- #: includes/Elements/Creative_Button.php:382
1011
- msgid "Center"
1012
  msgstr ""
1013
 
1014
- #: includes/Elements/Team_Member.php:229
1015
- msgid "Centered Style"
1016
  msgstr ""
1017
 
1018
- #: includes/Elements/NinjaForms.php:1052 includes/Elements/FluentForm.php:966
1019
- #: includes/Elements/GravityForms.php:1241 includes/Elements/WpForms.php:992
1020
- #: includes/Elements/Caldera_Forms.php:1012
1021
- #: includes/Elements/Contact_Form_7.php:967
1022
- msgid "Checkbox"
1023
  msgstr ""
1024
 
1025
- #: includes/Elements/FluentForm.php:1201
1026
- msgid "Checkbox Grid Style"
1027
  msgstr ""
1028
 
1029
- #: includes/Elements/NinjaForms.php:1106 includes/Elements/FluentForm.php:1020
1030
- #: includes/Elements/GravityForms.php:1295 includes/Elements/WpForms.php:1046
1031
- #: includes/Elements/Caldera_Forms.php:1066
1032
- #: includes/Elements/Contact_Form_7.php:1021
1033
- msgid "Checked"
1034
  msgstr ""
1035
 
1036
- #: includes/Elements/Sticky_Video.php:198
1037
- msgid "Choose File"
1038
  msgstr ""
1039
 
1040
- #: includes/Elements/Sticky_Video.php:360
1041
- msgid "Choose Icon"
1042
  msgstr ""
1043
 
1044
- #: includes/Elements/Sticky_Video.php:321
1045
- msgid "Choose Image"
1046
  msgstr ""
1047
 
1048
- #: includes/Elements/Content_Ticker.php:507
1049
- msgid "Choose Next Arrow"
1050
  msgstr ""
1051
 
1052
- #: includes/Elements/Pricing_Table.php:465
1053
- msgid "Choose Plan"
1054
  msgstr ""
1055
 
1056
- #: includes/Elements/Content_Ticker.php:494
1057
- msgid "Choose Prev Arrow"
1058
  msgstr ""
1059
 
1060
- #: includes/Elements/Adv_Tabs.php:184 includes/Elements/Data_Table.php:256
1061
- #: includes/Elements/Cta_Box.php:144 includes/Elements/Countdown.php:324
1062
- #: includes/Elements/Adv_Accordion.php:167 includes/Elements/Info_Box.php:216
1063
- msgid "Choose Template"
1064
  msgstr ""
1065
 
1066
- #: includes/Elements/Countdown.php:274
1067
- msgid "Choose whether if you want to set a message or a redirect link"
1068
  msgstr ""
1069
 
1070
- #: includes/Elements/Feature_List.php:193 includes/Elements/Progress_Bar.php:64
1071
- #: includes/Elements/Info_Box.php:533 includes/Elements/Info_Box.php:588
1072
- #: includes/Elements/Info_Box.php:758 includes/Elements/Info_Box.php:839
1073
- #: includes/Elements/Info_Box.php:975 includes/Elements/Info_Box.php:1071
1074
- #: includes/Elements/Flip_Box.php:586
1075
- msgid "Circle"
1076
  msgstr ""
1077
 
1078
- #: includes/Elements/Progress_Bar.php:65
1079
- msgid "Circle Fill (Pro)"
1080
  msgstr ""
1081
 
1082
- #: includes/Elements/Team_Member.php:230
1083
- msgid "Circle Style"
1084
  msgstr ""
1085
 
1086
- #: includes/Elements/Feature_List.php:301 includes/Elements/Testimonial.php:214
1087
- msgid "Classic"
1088
  msgstr ""
1089
 
1090
- #: includes/Elements/Pricing_Table.php:338
1091
- msgid "Click"
1092
  msgstr ""
1093
 
1094
- #: includes/Elements/Sticky_Video.php:450
1095
- msgid "Close Button Color"
1096
  msgstr ""
1097
 
1098
- #: includes/Elements/Betterdocs_Search_Form.php:228
1099
- msgid "Close Icon"
1100
  msgstr ""
1101
 
1102
- #: includes/Elements/Testimonial.php:107
1103
- msgid "Codetic"
1104
  msgstr ""
1105
 
1106
- #: includes/Elements/Data_Table.php:209
1107
- msgid "Col Span"
1108
  msgstr ""
1109
 
1110
- #: includes/Elements/NinjaForms.php:1000 includes/Elements/NinjaForms.php:1116
1111
- #: includes/Elements/NinjaForms.php:1422 includes/Elements/FluentForm.php:378
1112
- #: includes/Elements/FluentForm.php:914 includes/Elements/FluentForm.php:1030
1113
- #: includes/Elements/FluentForm.php:1071 includes/Elements/FluentForm.php:1126
1114
- #: includes/Elements/FluentForm.php:1230 includes/Elements/FluentForm.php:1292
1115
- #: includes/Elements/FluentForm.php:1716 includes/Elements/Data_Table.php:490
1116
- #: includes/Elements/Data_Table.php:530 includes/Elements/Data_Table.php:966
1117
- #: includes/Elements/Betterdocs_Search_Form.php:200
1118
- #: includes/Elements/Betterdocs_Search_Form.php:237
1119
- #: includes/Elements/Betterdocs_Search_Form.php:248
1120
- #: includes/Elements/Cta_Box.php:391 includes/Elements/Cta_Box.php:420
1121
- #: includes/Elements/Cta_Box.php:649 includes/Elements/Feature_List.php:428
1122
- #: includes/Elements/Feature_List.php:650
1123
- #: includes/Elements/Feature_List.php:684
1124
- #: includes/Elements/Betterdocs_Category_Grid.php:203
1125
- #: includes/Elements/Betterdocs_Category_Grid.php:292
1126
- #: includes/Elements/Betterdocs_Category_Grid.php:349
1127
- #: includes/Elements/Betterdocs_Category_Grid.php:400
1128
- #: includes/Elements/Betterdocs_Category_Grid.php:460
1129
- #: includes/Elements/Image_Accordion.php:267
1130
- #: includes/Elements/Image_Accordion.php:296
1131
- #: includes/Elements/GravityForms.php:1189
1132
- #: includes/Elements/GravityForms.php:1305
1133
- #: includes/Elements/Dual_Color_Header.php:380
1134
- #: includes/Elements/Progress_Bar.php:347
1135
- #: includes/Elements/Progress_Bar.php:407
1136
- #: includes/Elements/Advanced_Data_Table.php:301
1137
- #: includes/Elements/Advanced_Data_Table.php:472
1138
- #: includes/Elements/Advanced_Data_Table.php:588
1139
- #: includes/Elements/Advanced_Data_Table.php:621
1140
- #: includes/Elements/Advanced_Data_Table.php:654
1141
- #: includes/Elements/Advanced_Data_Table.php:687
1142
- #: includes/Elements/Advanced_Data_Table.php:720
1143
- #: includes/Elements/Advanced_Data_Table.php:753
1144
- #: includes/Elements/Advanced_Data_Table.php:988
1145
- #: includes/Elements/Advanced_Data_Table.php:1150
1146
- #: includes/Elements/Advanced_Data_Table.php:1235
1147
- #: includes/Elements/Facebook_Feed.php:515
1148
- #: includes/Elements/Facebook_Feed.php:553
1149
- #: includes/Elements/Facebook_Feed.php:591
1150
- #: includes/Elements/Facebook_Feed.php:644
1151
- #: includes/Elements/Facebook_Feed.php:682
1152
- #: includes/Elements/Facebook_Feed.php:720
1153
- #: includes/Elements/Facebook_Feed.php:752 includes/Elements/Info_Box.php:1332
1154
- #: includes/Elements/Info_Box.php:1408 includes/Elements/Content_Ticker.php:425
1155
- #: includes/Elements/Content_Ticker.php:601
1156
- #: includes/Elements/Content_Ticker.php:657 includes/Elements/WpForms.php:940
1157
- #: includes/Elements/WpForms.php:1056 includes/Elements/Pricing_Table.php:735
1158
- #: includes/Elements/Pricing_Table.php:799
1159
- #: includes/Elements/Pricing_Table.php:851
1160
- #: includes/Elements/Pricing_Table.php:880
1161
- #: includes/Elements/Pricing_Table.php:909
1162
- #: includes/Elements/Pricing_Table.php:950
1163
- #: includes/Elements/Pricing_Table.php:986
1164
- #: includes/Elements/Pricing_Table.php:1131
1165
- #: includes/Elements/Pricing_Table.php:1230
1166
- #: includes/Elements/Caldera_Forms.php:960
1167
- #: includes/Elements/Caldera_Forms.php:1076
1168
- #: includes/Elements/Caldera_Forms.php:1408
1169
- #: includes/Elements/Betterdocs_Category_Box.php:265
1170
- #: includes/Elements/Betterdocs_Category_Box.php:459
1171
- #: includes/Elements/Contact_Form_7.php:915
1172
- #: includes/Elements/Contact_Form_7.php:1031
1173
- #: includes/Elements/Twitter_Feed.php:382
1174
- #: includes/Elements/Twitter_Feed.php:411
1175
- #: includes/Elements/Twitter_Feed.php:441 includes/Elements/Flip_Box.php:661
1176
- #: includes/Elements/Flip_Box.php:774 includes/Elements/Flip_Box.php:901
1177
- #: includes/Elements/Flip_Box.php:932 includes/Elements/Flip_Box.php:970
1178
- #: includes/Elements/Flip_Box.php:1002 includes/Elements/Flip_Box.php:1075
1179
- #: includes/Elements/Flip_Box.php:1133
1180
- msgid "Color"
1181
  msgstr ""
1182
 
1183
- #: includes/Elements/Post_Grid.php:119 includes/Elements/WeForms.php:443
1184
- msgid "Color & Typography"
1185
  msgstr ""
1186
 
1187
- #: includes/Elements/Countdown.php:472
1188
- #: includes/Elements/Image_Accordion.php:250
1189
- #: includes/Elements/Testimonial.php:393
1190
- #: includes/Elements/Dual_Color_Header.php:323
1191
- #: includes/Elements/Facebook_Feed.php:484 includes/Elements/Info_Box.php:1310
1192
- #: includes/Elements/Team_Member.php:493 includes/Elements/Product_Grid.php:197
1193
- #: includes/Elements/Twitter_Feed.php:366 includes/Elements/Flip_Box.php:877
1194
- msgid "Color &amp; Typography"
1195
  msgstr ""
1196
 
1197
- #: includes/Elements/Cta_Box.php:375
1198
- msgid "Color &amp; Typography "
1199
  msgstr ""
1200
 
1201
- #: includes/Elements/Data_Table.php:724 includes/Elements/Data_Table.php:804
1202
- msgid "Color ( Even Row )"
1203
  msgstr ""
1204
 
1205
- #: includes/Elements/Data_Table.php:691 includes/Elements/Data_Table.php:774
1206
- msgid "Color ( Odd Row )"
1207
  msgstr ""
1208
 
1209
- #: includes/Elements/Cta_Box.php:87
1210
- msgid "Color Style"
1211
  msgstr ""
1212
 
1213
- #: includes/Elements/Data_Table.php:204
1214
- #: includes/Elements/Betterdocs_Category_Grid.php:91
1215
- #: includes/Elements/Betterdocs_Category_Grid.php:98
1216
- #: includes/Elements/Betterdocs_Category_Box.php:91
1217
- #: includes/Elements/Betterdocs_Category_Box.php:98
1218
- msgid "Column"
1219
  msgstr ""
1220
 
1221
- #: includes/Elements/Twitter_Feed.php:119
1222
- msgid "Column Grid"
1223
  msgstr ""
1224
 
1225
- #: includes/Elements/Data_Table.php:77
1226
- msgid "Column Name"
1227
  msgstr ""
1228
 
1229
- #: includes/Elements/Betterdocs_Category_Grid.php:124
1230
- #: includes/Elements/Betterdocs_Category_Box.php:124
1231
- msgid "Column Padding"
1232
  msgstr ""
1233
 
1234
- #: includes/Elements/Betterdocs_Category_Grid.php:106
1235
- #: includes/Elements/Betterdocs_Category_Box.php:106
1236
- msgid "Column Space"
1237
  msgstr ""
1238
 
1239
- #: includes/Elements/Twitter_Feed.php:146
1240
- msgid "Column spacing"
1241
  msgstr ""
1242
 
1243
- #: includes/Elements/Data_Table.php:84
1244
- msgid "Column Span"
1245
  msgstr ""
1246
 
1247
- #: includes/Elements/Facebook_Feed.php:141
1248
- #: includes/Elements/Product_Grid.php:69
1249
- msgid "Columns"
1250
  msgstr ""
1251
 
1252
- #: includes/Elements/Testimonial.php:438
1253
- msgid "Company Color"
1254
  msgstr ""
1255
 
1256
- #: includes/Elements/Testimonial.php:105 includes/Elements/Testimonial.php:429
1257
- msgid "Company Name"
1258
  msgstr ""
1259
 
1260
- #: includes/Elements/Feature_List.php:337
1261
- msgid "Connector Color"
1262
  msgstr ""
1263
 
1264
- #: includes/Elements/Feature_List.php:315
1265
- msgid "Connector Styles"
1266
  msgstr ""
1267
 
1268
- #: includes/Elements/Feature_List.php:296
1269
- msgid "Connector Type"
1270
  msgstr ""
1271
 
1272
- #: includes/Elements/Feature_List.php:357
1273
- msgid "Connector Width"
1274
  msgstr ""
1275
 
1276
- #: includes/Elements/Twitter_Feed.php:75
1277
- msgid "Consumer Key"
1278
  msgstr ""
1279
 
1280
- #: includes/Elements/Twitter_Feed.php:86
1281
- msgid "Consumer Secret"
1282
  msgstr ""
1283
 
1284
- #: includes/Elements/Contact_Form_7.php:109
1285
- msgid "Contact Form"
1286
  msgstr ""
1287
 
1288
- #: includes/templates/admin/elements.php:349
1289
- msgid "Contact Form 7"
1290
  msgstr ""
1291
 
1292
- #: includes/Classes/WPML/Eael_WPML.php:367
1293
- msgid "Contact Form-7: Description"
1294
  msgstr ""
1295
 
1296
- #: includes/Classes/WPML/Eael_WPML.php:362
1297
- msgid "Contact Form-7: Title"
1298
  msgstr ""
1299
 
1300
- #: includes/Elements/Cta_Box.php:268
1301
- #, php-format
1302
- msgid "Container Max Width (% or px)"
1303
  msgstr ""
1304
 
1305
- #: includes/Elements/Adv_Tabs.php:99 includes/Elements/Adv_Tabs.php:177
1306
- #: includes/Elements/Adv_Tabs.php:625 includes/Elements/Data_Table.php:179
1307
- #: includes/Elements/Data_Table.php:268 includes/Elements/Data_Table.php:279
1308
- #: includes/Elements/Cta_Box.php:134 includes/Elements/Cta_Box.php:155
1309
- #: includes/Elements/Feature_List.php:109
1310
- #: includes/Elements/Feature_List.php:582 includes/Elements/Tooltip.php:74
1311
- #: includes/Elements/Tooltip.php:245 includes/Elements/Image_Accordion.php:94
1312
- #: includes/Elements/Image_Accordion.php:287
1313
- #: includes/Elements/Adv_Accordion.php:160 includes/Elements/Info_Box.php:206
1314
- msgid "Content"
1315
  msgstr ""
1316
 
1317
- #: includes/Elements/Data_Table.php:888 includes/Elements/Tooltip.php:344
1318
- #: includes/Elements/Info_Box.php:253 includes/Elements/Pricing_Table.php:662
1319
- #: includes/Elements/Flip_Box.php:322
1320
- msgid "Content Alignment"
1321
  msgstr ""
1322
 
1323
- #: includes/Traits/Helper.php:209
1324
- msgid "Content Area"
1325
  msgstr ""
1326
 
1327
- #: includes/Elements/Team_Member.php:315 includes/Elements/Product_Grid.php:144
1328
- msgid "Content Background Color"
1329
  msgstr ""
1330
 
1331
- #: includes/Elements/Testimonial.php:219
1332
- msgid "Content Bottom | Icon Title Inline"
1333
  msgstr ""
1334
 
1335
- #: includes/Elements/Team_Member.php:264
1336
- msgid "Content Card"
1337
  msgstr ""
1338
 
1339
- #: includes/Elements/Info_Box.php:1446
1340
- msgid "Content Color"
1341
  msgstr ""
1342
 
1343
- #: includes/templates/admin/elements.php:5
1344
- msgid "Content Elements"
1345
  msgstr ""
1346
 
1347
- #: includes/Elements/Post_Grid.php:257 includes/Elements/Info_Box.php:281
1348
- msgid "Content Height"
1349
  msgstr ""
1350
 
1351
- #: includes/Elements/Twitter_Feed.php:106
1352
- msgid "Content Layout"
1353
  msgstr ""
1354
 
1355
- #: includes/Elements/Twitter_Feed.php:136
1356
- msgid "Content Length"
1357
  msgstr ""
1358
 
1359
- #: includes/Elements/Tooltip.php:299
1360
- msgid "Content Max Width"
1361
  msgstr ""
1362
 
1363
- #: includes/Elements/Info_Box.php:1384
1364
- msgid "Content Only Background"
1365
  msgstr ""
1366
 
1367
- #: includes/Elements/Info_Box.php:1372
1368
- msgid "Content Only Margin"
1369
  msgstr ""
1370
 
1371
- #: includes/Elements/Info_Box.php:1396
1372
- msgid "Content Only Padding"
1373
  msgstr ""
1374
 
1375
- #: includes/Elements/Team_Member.php:356 includes/Elements/Flip_Box.php:508
1376
- msgid "Content Padding"
1377
  msgstr ""
1378
 
1379
- #: includes/templates/admin/extensions.php:30
1380
- msgid "Content Protection"
1381
  msgstr ""
1382
 
1383
- #: includes/Elements/Cta_Box.php:44 includes/Elements/Countdown.php:99
1384
- #: includes/Elements/Feature_List.php:44 includes/Elements/Tooltip.php:41
1385
- #: includes/Elements/Dual_Color_Header.php:42
1386
- #: includes/Elements/Adv_Accordion.php:107
1387
- #: includes/Elements/Facebook_Feed.php:158
1388
- msgid "Content Settings"
1389
  msgstr ""
1390
 
1391
- #: includes/Elements/Data_Table.php:671 includes/Elements/Cta_Box.php:51
1392
- #: includes/Elements/Cta_Box.php:411 includes/Elements/Countdown.php:865
1393
- #: includes/Elements/Tooltip.php:292 includes/Elements/Dual_Color_Header.php:49
1394
- #: includes/Elements/Adv_Accordion.php:589
1395
- #: includes/Elements/Facebook_Feed.php:399 includes/Elements/Info_Box.php:1363
1396
- #: includes/Elements/Twitter_Feed.php:402 includes/Elements/Flip_Box.php:924
1397
- #: includes/Elements/Flip_Box.php:993
1398
- msgid "Content Style"
1399
  msgstr ""
1400
 
1401
- #: includes/Elements/Tooltip.php:87
1402
- msgid "Content Tag"
1403
  msgstr ""
1404
 
1405
- #: includes/templates/admin/elements.php:140
1406
- msgid "Content Ticker"
1407
  msgstr ""
1408
 
1409
- #: includes/templates/admin/elements.php:187
1410
- msgid "Content Timeline"
1411
  msgstr ""
1412
 
1413
- #: includes/Elements/Testimonial.php:218
1414
- msgid "Content Top | Icon Title Inline"
1415
  msgstr ""
1416
 
1417
- #: includes/Elements/Adv_Tabs.php:174 includes/Elements/Data_Table.php:233
1418
- #: includes/Elements/Cta_Box.php:69 includes/Elements/Cta_Box.php:131
1419
- #: includes/Elements/Tooltip.php:47 includes/Elements/Adv_Accordion.php:157
1420
- #: includes/Elements/Info_Box.php:203
1421
- msgid "Content Type"
1422
  msgstr ""
1423
 
1424
- #: includes/Elements/Testimonial.php:217
1425
- msgid "Content | Icon/Image"
1426
  msgstr ""
1427
 
1428
- #: includes/Elements/Testimonial.php:215
1429
- msgid "Content | Icon/Image | Bio"
1430
  msgstr ""
1431
 
1432
- #: includes/templates/admin/general.php:35
1433
- msgid "Contribute to Essential Addons"
1434
  msgstr ""
1435
 
1436
- #: includes/Elements/Betterdocs_Search_Form.php:406
1437
- #: includes/Elements/Betterdocs_Search_Form.php:504
1438
- #: includes/Elements/Betterdocs_Category_Grid.php:194
1439
- #: includes/Elements/Betterdocs_Category_Box.php:248
1440
- #: includes/Elements/Betterdocs_Category_Box.php:442
1441
- msgid "Count"
1442
  msgstr ""
1443
 
1444
- #: includes/templates/admin/elements.php:206
1445
- msgid "Count Down"
1446
  msgstr ""
1447
 
1448
- #: includes/Elements/Countdown.php:480
1449
- msgid "Countdown Digits"
1450
  msgstr ""
1451
 
1452
- #: includes/Elements/Countdown.php:51
1453
- msgid "Countdown Due Date"
1454
  msgstr ""
1455
 
1456
- #: includes/Elements/Countdown.php:290
1457
- msgid "Countdown is finished!"
1458
  msgstr ""
1459
 
1460
- #: includes/Elements/Countdown.php:509
1461
- msgid "Countdown Labels"
1462
  msgstr ""
1463
 
1464
- #: includes/Elements/Countdown.php:215
1465
- msgid "Countdown Separator"
1466
  msgstr ""
1467
 
1468
- #: includes/Elements/Countdown.php:106
1469
- msgid "Countdown Style"
1470
  msgstr ""
1471
 
1472
- #: includes/Elements/Countdown.php:365
1473
- msgid "Countdown Styles"
1474
  msgstr ""
1475
 
1476
- #: includes/Elements/Progress_Bar.php:644
1477
- #: includes/templates/admin/elements.php:243
1478
- msgid "Counter"
1479
  msgstr ""
1480
 
1481
- #: includes/Elements/Progress_Bar.php:653
1482
- msgid "Counter Color"
1483
  msgstr ""
1484
 
1485
- #: includes/Elements/Progress_Bar.php:130
1486
- msgid "Counter Value"
1487
  msgstr ""
1488
 
1489
- #: includes/Traits/Helper.php:1283 includes/Traits/Helper.php:1309
1490
- #: includes/Traits/Helper.php:1336 includes/Traits/Helper.php:1363
1491
- #: includes/Traits/Helper.php:1388 includes/Traits/Helper.php:1418
1492
- #: includes/Traits/Helper.php:1444
1493
- msgid "Create a Form First"
1494
  msgstr ""
1495
 
1496
- #: includes/templates/admin/elements.php:9
1497
- msgid "Creative Button"
1498
  msgstr ""
1499
 
1500
- #: includes/Classes/WPML/Eael_WPML.php:34
1501
- msgid "Creative Button: Secondary Text"
1502
  msgstr ""
1503
 
1504
- #: includes/Classes/WPML/Eael_WPML.php:29
1505
- msgid "Creative Button: Text"
1506
  msgstr ""
1507
 
1508
- #: includes/templates/admin/elements.php:202
1509
- msgid "Creative Elements"
1510
  msgstr ""
1511
 
1512
- #: includes/Elements/Data_Table.php:155 includes/Elements/Data_Table.php:303
1513
- msgid "CSS Class"
1514
  msgstr ""
1515
 
1516
- #: includes/Elements/Data_Table.php:161 includes/Elements/Data_Table.php:312
1517
- msgid "CSS ID"
1518
  msgstr ""
1519
 
1520
- #: includes/Elements/Pricing_Table.php:900
1521
- msgid "Currency"
1522
  msgstr ""
1523
 
1524
- #: includes/Elements/Pricing_Table.php:201
1525
- msgid "Currency Placement"
1526
  msgstr ""
1527
 
1528
- #: includes/Elements/NinjaForms.php:1183 includes/Elements/FluentForm.php:1449
1529
- #: includes/Elements/GravityForms.php:1373
1530
- #: includes/Elements/Content_Ticker.php:56 includes/Elements/WpForms.php:1124
1531
- #: includes/Elements/Caldera_Forms.php:1141
1532
- #: includes/Elements/Contact_Form_7.php:1098
1533
- msgid "Custom"
1534
  msgstr ""
1535
 
1536
- #: includes/Elements/Content_Ticker.php:78
1537
- msgid "Custom Content available in pro version only!"
1538
  msgstr ""
1539
 
1540
- #: includes/Elements/Countdown.php:132
1541
- msgid "Custom Label for Days"
1542
  msgstr ""
1543
 
1544
- #: includes/Elements/Countdown.php:156
1545
- msgid "Custom Label for Hours"
1546
  msgstr ""
1547
 
1548
- #: includes/Elements/Countdown.php:179
1549
- msgid "Custom Label for Minutes"
1550
  msgstr ""
1551
 
1552
- #: includes/Elements/Countdown.php:202
1553
- msgid "Custom Label for Seconds"
1554
  msgstr ""
1555
 
1556
- #: includes/Elements/NinjaForms.php:951 includes/Elements/FluentForm.php:865
1557
- #: includes/Elements/GravityForms.php:1140 includes/Elements/WpForms.php:891
1558
- #: includes/Elements/Caldera_Forms.php:911
1559
- #: includes/Elements/Contact_Form_7.php:866
1560
- msgid "Custom Styles"
1561
  msgstr ""
1562
 
1563
- #: includes/Elements/NinjaForms.php:84 includes/Elements/FluentForm.php:92
1564
- #: includes/Elements/GravityForms.php:124 includes/Elements/WpForms.php:77
1565
- #: includes/Elements/Caldera_Forms.php:90
1566
- msgid "Custom Title & Description"
1567
  msgstr ""
1568
 
1569
- #: includes/Elements/Feature_List.php:321
1570
- #: includes/Elements/GravityForms.php:992
1571
- #: includes/Elements/Sticky_Video.php:505
1572
- msgid "Dashed"
1573
  msgstr ""
1574
 
1575
- #: includes/Elements/Advanced_Data_Table.php:44
1576
- msgid "Data Source"
1577
  msgstr ""
1578
 
1579
- #: includes/templates/admin/elements.php:134
1580
- msgid "Data Table"
1581
  msgstr ""
1582
 
1583
- #: includes/Elements/Facebook_Feed.php:530
1584
- msgid "Date"
1585
  msgstr ""
1586
 
1587
- #: includes/Elements/Post_Timeline.php:132
1588
- msgid "Date Background Color"
1589
  msgstr ""
1590
 
1591
- #: includes/Traits/Helper.php:354
1592
- msgid "Date Position"
1593
  msgstr ""
1594
 
1595
- #: includes/Elements/Post_Timeline.php:146
1596
- msgid "Date Text Color"
1597
  msgstr ""
1598
 
1599
- #: includes/Elements/Countdown.php:134 includes/Elements/Countdown.php:551
1600
- msgid "Days"
1601
  msgstr ""
1602
 
1603
- #: includes/Traits/Helper.php:321 includes/Elements/NinjaForms.php:244
1604
- #: includes/Elements/FluentForm.php:395 includes/Elements/Cta_Box.php:460
1605
- #: includes/Elements/Testimonial.php:213 includes/Elements/Testimonial.php:232
1606
- #: includes/Elements/GravityForms.php:314
1607
- #: includes/Elements/Dual_Color_Header.php:54 includes/Elements/WeForms.php:139
1608
- #: includes/Elements/WeForms.php:569 includes/Elements/Team_Member.php:332
1609
- #: includes/Elements/Product_Grid.php:113 includes/Elements/WpForms.php:233
1610
- #: includes/Elements/Pricing_Table.php:52
1611
- #: includes/Elements/Pricing_Table.php:385
1612
- #: includes/Elements/Caldera_Forms.php:388
1613
- #: includes/Elements/Contact_Form_7.php:300 includes/Elements/Flip_Box.php:588
1614
- #: includes/Elements/Creative_Button.php:192
1615
- msgid "Default"
1616
  msgstr ""
1617
 
1618
- #: includes/Elements/Fancy_Text.php:223
1619
- msgid "Delay on Change"
1620
  msgstr ""
1621
 
1622
- #: includes/templates/admin/extensions.php:79
1623
- #: includes/templates/admin/elements.php:508
1624
- msgid "Demo"
1625
  msgstr ""
1626
 
1627
- #: includes/Elements/NinjaForms.php:124 includes/Elements/NinjaForms.php:462
1628
- #: includes/Elements/FluentForm.php:116 includes/Elements/FluentForm.php:291
1629
- #: includes/Elements/FluentForm.php:1117 includes/Elements/Feature_List.php:675
1630
- #: includes/Elements/GravityForms.php:150
1631
- #: includes/Elements/GravityForms.php:178
1632
- #: includes/Elements/GravityForms.php:508 includes/Elements/Team_Member.php:101
1633
- #: includes/Elements/WpForms.php:103 includes/Elements/WpForms.php:131
1634
- #: includes/Elements/WpForms.php:425 includes/Elements/Caldera_Forms.php:114
1635
- #: includes/Elements/Caldera_Forms.php:296
1636
- #: includes/Elements/Contact_Form_7.php:162
1637
- #: includes/Elements/Contact_Form_7.php:469
1638
- msgid "Description"
1639
  msgstr ""
1640
 
1641
- #: includes/Elements/Team_Member.php:567
1642
- msgid "Description Color"
1643
  msgstr ""
1644
 
1645
- #: includes/Elements/Testimonial.php:124
1646
- msgid "Description Height"
1647
  msgstr ""
1648
 
1649
- #: includes/Elements/Countdown.php:571 includes/Elements/Countdown.php:627
1650
- #: includes/Elements/Countdown.php:683 includes/Elements/Countdown.php:739
1651
- msgid "Digit Color"
1652
  msgstr ""
1653
 
1654
- #: includes/Elements/Countdown.php:488
1655
- msgid "Digits Color"
1656
  msgstr ""
1657
 
1658
- #: includes/Elements/Content_Ticker.php:290
1659
- msgid "Direction"
1660
  msgstr ""
1661
 
1662
- #: includes/Elements/Pricing_Table.php:998
1663
- msgid "Disable item color"
1664
  msgstr ""
1665
 
1666
- #: includes/Elements/Progress_Bar.php:440
1667
- msgid "Disabled"
1668
  msgstr ""
1669
 
1670
- #: includes/Elements/Testimonial.php:49
1671
- msgid "Display Avatar?"
1672
  msgstr ""
1673
 
1674
- #: includes/Elements/Facebook_Feed.php:212
1675
- msgid "Display Comments"
1676
  msgstr ""
1677
 
1678
- #: includes/Elements/Progress_Bar.php:151
1679
- msgid "Display Count"
1680
  msgstr ""
1681
 
1682
- #: includes/Elements/Facebook_Feed.php:222
1683
- msgid "Display Date"
1684
  msgstr ""
1685
 
1686
- #: includes/Elements/Countdown.php:122
1687
- msgid "Display Days"
1688
  msgstr ""
1689
 
1690
- #: includes/Elements/Countdown.php:146
1691
- msgid "Display Hours"
1692
  msgstr ""
1693
 
1694
- #: includes/Elements/Facebook_Feed.php:202
1695
- msgid "Display Like"
1696
  msgstr ""
1697
 
1698
- #: includes/Elements/Facebook_Feed.php:166
1699
- msgid "Display Message"
1700
  msgstr ""
1701
 
1702
- #: includes/Elements/Countdown.php:169
1703
- msgid "Display Minutes"
1704
  msgstr ""
1705
 
1706
- #: includes/Extensions/Reading_Progress.php:84
1707
- msgid "Display On"
1708
  msgstr ""
1709
 
1710
- #: includes/templates/admin/tools.php:22
1711
- msgid ""
1712
- "Display quick assets generating tools in admin bar from where you can "
1713
- "regenerate global assets or page assets."
1714
  msgstr ""
1715
 
1716
- #: includes/Elements/Testimonial.php:141
1717
- msgid "Display Rating?"
1718
  msgstr ""
1719
 
1720
- #: includes/Elements/Countdown.php:192
1721
- msgid "Display Seconds"
1722
  msgstr ""
1723
 
1724
- #: includes/Elements/Countdown.php:223
1725
- msgid "Display Separator"
1726
  msgstr ""
1727
 
1728
- #: includes/Elements/Team_Member.php:121
1729
- msgid "Display Social Profiles?"
1730
  msgstr ""
1731
 
1732
- #: includes/Elements/Fancy_Text.php:245
1733
- msgid "Display Type Cursor"
1734
  msgstr ""
1735
 
1736
- #: includes/Elements/Testimonial.php:259
1737
- msgid "Display User & Company Block?"
1738
  msgstr ""
1739
 
1740
- #: includes/Elements/Tooltip.php:98
1741
- msgid "DIV"
1742
  msgstr ""
1743
 
1744
- #: includes/Elements/Progress_Bar.php:119
1745
- msgid "div"
1746
  msgstr ""
1747
 
1748
- #: includes/templates/admin/elements.php:306
1749
- msgid "Divider"
1750
  msgstr ""
1751
 
1752
- #: includes/templates/admin/general.php:23
1753
- #: includes/templates/admin/general.php:27
1754
- #: includes/templates/admin/extensions.php:83
1755
- #: includes/templates/admin/elements.php:512
1756
- msgid "Documentation"
1757
  msgstr ""
1758
 
1759
- #: includes/templates/admin/elements.php:442
1760
- msgid "Documentation Elements"
1761
  msgstr ""
1762
 
1763
- #: includes/Elements/Feature_List.php:322
1764
- #: includes/Elements/GravityForms.php:991
1765
- #: includes/Elements/Sticky_Video.php:504
1766
- msgid "Dotted"
1767
  msgstr ""
1768
 
1769
- #: includes/Elements/GravityForms.php:990
1770
- #: includes/Elements/Sticky_Video.php:503
1771
- msgid "Double"
1772
  msgstr ""
1773
 
1774
- #: includes/Elements/Dual_Color_Header.php:351
1775
- msgid "Dual Color"
1776
  msgstr ""
1777
 
1778
- #: includes/templates/admin/elements.php:39
1779
- msgid "Dual Color Heading"
1780
  msgstr ""
1781
 
1782
- #: includes/Classes/WPML/Eael_WPML.php:82
1783
- msgid "Dual Color Heading: Sub Text"
1784
  msgstr ""
1785
 
1786
- #: includes/Classes/WPML/Eael_WPML.php:72
1787
- msgid "Dual Color Heading: Title ( First Part )"
1788
  msgstr ""
1789
 
1790
- #: includes/Classes/WPML/Eael_WPML.php:77
1791
- msgid "Dual Color Heading: Title ( Last Part )"
1792
  msgstr ""
1793
 
1794
- #: includes/Elements/Dual_Color_Header.php:99
1795
- msgid "Dual Heading"
1796
  msgstr ""
1797
 
1798
- #: includes/Elements/Dual_Color_Header.php:187
1799
- msgid "Dual Heading Style"
1800
  msgstr ""
1801
 
1802
- #: includes/templates/admin/extensions.php:43
1803
- msgid "Duplicator"
1804
  msgstr ""
1805
 
1806
- #: includes/Elements/Content_Ticker.php:177
1807
- msgid "Duration of transition between slides (in ms)"
1808
  msgstr ""
1809
 
1810
- #: includes/Elements/Content_Ticker.php:55
1811
- msgid "Dynamic"
1812
  msgstr ""
1813
 
1814
- #: includes/templates/admin/elements.php:118
1815
- msgid "Dynamic Content Elements"
1816
  msgstr ""
1817
 
1818
- #: includes/Traits/Helper.php:54 includes/Traits/Helper.php:64
1819
- msgid "Dynamic Content Settings"
1820
  msgstr ""
1821
 
1822
- #: includes/templates/admin/elements.php:194
1823
- msgid "Dynamic Gallery"
1824
  msgstr ""
1825
 
1826
- #: includes/Elements/Adv_Accordion.php:28
1827
- msgid "EA Advanced Accordion"
1828
  msgstr ""
1829
 
1830
- #: includes/Elements/Advanced_Data_Table.php:25
1831
- msgid "EA Advanced Data Table"
1832
  msgstr ""
1833
 
1834
- #: includes/Elements/Adv_Tabs.php:29
1835
- msgid "EA Advanced Tabs"
1836
  msgstr ""
1837
 
1838
- #: includes/Elements/Caldera_Forms.php:28
1839
- msgid "EA Caldera Forms"
1840
  msgstr ""
1841
 
1842
- #: includes/Elements/Cta_Box.php:25
1843
- msgid "EA Call to Action"
1844
  msgstr ""
1845
 
1846
- #: includes/Elements/Contact_Form_7.php:41
1847
- msgid "EA Contact Form 7"
1848
  msgstr ""
1849
 
1850
- #: includes/Elements/Content_Ticker.php:26
1851
- msgid "EA Content Ticker"
1852
  msgstr ""
1853
 
1854
- #: includes/Elements/Countdown.php:26
1855
- msgid "EA Countdown"
1856
  msgstr ""
1857
 
1858
- #: includes/Elements/Creative_Button.php:26
1859
- msgid "EA Creative Button"
1860
  msgstr ""
1861
 
1862
- #: includes/Elements/Data_Table.php:25
1863
- msgid "EA Data Table"
1864
  msgstr ""
1865
 
1866
- #: includes/Elements/Dual_Color_Header.php:23
1867
- msgid "EA Dual Color Heading"
1868
  msgstr ""
1869
 
1870
- #: includes/Extensions/Post_Duplicator.php:33
1871
- #: includes/Extensions/Post_Duplicator.php:51
1872
- msgid "EA Duplicator"
1873
  msgstr ""
1874
 
1875
- #: includes/Elements/Facebook_Feed.php:25
1876
- msgid "EA Facebook Feed"
1877
  msgstr ""
1878
 
1879
- #: includes/Elements/Fancy_Text.php:25
1880
- msgid "EA Fancy Text"
1881
  msgstr ""
1882
 
1883
- #: includes/Elements/Feature_List.php:26
1884
- msgid "EA Feature List"
1885
  msgstr ""
1886
 
1887
- #: includes/Elements/Flip_Box.php:25
1888
- msgid "EA Flip Box"
1889
  msgstr ""
1890
 
1891
- #: includes/Elements/FluentForm.php:28
1892
- msgid "EA Fluent Form"
1893
  msgstr ""
1894
 
1895
- #: includes/Elements/GravityForms.php:41
1896
- msgid "EA Gravity Forms"
1897
  msgstr ""
1898
 
1899
- #: includes/Elements/Image_Accordion.php:24
1900
- msgid "EA Image Accordion"
1901
  msgstr ""
1902
 
1903
- #: includes/Elements/Info_Box.php:26
1904
- msgid "EA Info Box"
1905
  msgstr ""
1906
 
1907
- #: includes/Elements/NinjaForms.php:24
1908
- msgid "EA Ninja Forms"
1909
  msgstr ""
1910
 
1911
- #: includes/Elements/Post_Grid.php:28
1912
- msgid "EA Post Grid"
1913
  msgstr ""
1914
 
1915
- #: includes/Elements/Post_Timeline.php:26
1916
- msgid "EA Post Timeline"
1917
  msgstr ""
1918
 
1919
- #: includes/Elements/Pricing_Table.php:25
1920
- msgid "EA Pricing Table"
1921
  msgstr ""
1922
 
1923
- #: includes/Elements/Product_Grid.php:26
1924
- msgid "EA Product Grid"
1925
  msgstr ""
1926
 
1927
- #: includes/Elements/Progress_Bar.php:27
1928
- msgid "EA Progress Bar"
1929
  msgstr ""
1930
 
1931
- #: includes/Extensions/Reading_Progress.php:24
1932
- msgid "EA Reading Progress Bar"
1933
  msgstr ""
1934
 
1935
- #: includes/Elements/Sticky_Video.php:24
1936
- msgid "EA Sticky Video"
1937
  msgstr ""
1938
 
1939
- #: includes/Elements/Team_Member.php:23
1940
- msgid "EA Team Member"
1941
  msgstr ""
1942
 
1943
- #: includes/Elements/Testimonial.php:24
1944
- msgid "EA Testimonial"
1945
  msgstr ""
1946
 
1947
- #: includes/Elements/Tooltip.php:23
1948
- msgid "EA Tooltip"
1949
  msgstr ""
1950
 
1951
- #: includes/Elements/Twitter_Feed.php:26
1952
- msgid "EA Twitter Feed"
1953
  msgstr ""
1954
 
1955
- #: includes/Elements/WeForms.php:28
1956
- msgid "EA weForm"
1957
  msgstr ""
1958
 
1959
- #: includes/Elements/WpForms.php:24
1960
- msgid "EA WPForms"
1961
  msgstr ""
1962
 
1963
- #: includes/Elements/Data_Table.php:241
1964
- msgid "Editor"
1965
  msgstr ""
1966
 
1967
- #: includes/Elements/Cta_Box.php:455 includes/Elements/Content_Ticker.php:119
1968
- msgid "Effect"
1969
  msgstr ""
1970
 
1971
- #: includes/Traits/Admin.php:81
1972
- msgid "Elements"
1973
  msgstr ""
1974
 
1975
- #: includes/Elements/Data_Table.php:91
1976
- msgid "Enable Header Icon"
1977
  msgstr ""
1978
 
1979
- #: includes/Elements/Adv_Tabs.php:69
1980
- msgid "Enable Icon"
1981
  msgstr ""
1982
 
1983
- #: includes/Elements/Tooltip.php:206
1984
- msgid "Enable Link"
1985
  msgstr ""
1986
 
1987
- #: includes/Extensions/Reading_Progress.php:32
1988
- msgid "Enable Reading Progress Bar"
1989
  msgstr ""
1990
 
1991
- #: includes/Extensions/Reading_Progress.php:67
1992
- msgid "Enable Reading Progress Bar Globally"
1993
  msgstr ""
1994
 
1995
- #: includes/Elements/Data_Table.php:929
1996
- msgid "Enable Responsive Table"
1997
  msgstr ""
1998
 
1999
- #: includes/Elements/Adv_Accordion.php:130
2000
- msgid "Enable Tab Icon"
2001
  msgstr ""
2002
 
2003
- #: includes/Elements/Adv_Accordion.php:68
2004
- msgid "Enable Toggle Icon"
2005
  msgstr ""
2006
 
2007
- #: includes/Elements/Pricing_Table.php:291
2008
- msgid "Enable Tooltip?"
2009
  msgstr ""
2010
 
2011
- #: includes/Extensions/Reading_Progress.php:44
2012
- msgid "Enabled Globally?"
2013
  msgstr ""
2014
 
2015
- #: includes/Extensions/Reading_Progress.php:68
2016
- msgid "Enabling this option will effect on entire site."
2017
  msgstr ""
2018
 
2019
- #: includes/Elements/Sticky_Video.php:227
2020
- msgid "End Time"
2021
  msgstr ""
2022
 
2023
- #: includes/Elements/Creative_Button.php:71
2024
- msgid "Enter button secondary text"
2025
  msgstr ""
2026
 
2027
- #: includes/Elements/Creative_Button.php:72
2028
- msgid "Enter button secondary text here"
2029
  msgstr ""
2030
 
2031
- #: includes/Elements/Info_Box.php:361 includes/Elements/Creative_Button.php:59
2032
- msgid "Enter button text"
2033
  msgstr ""
2034
 
2035
- #: includes/Elements/Info_Box.php:362 includes/Elements/Creative_Button.php:60
2036
- msgid "Enter button text here"
2037
  msgstr ""
2038
 
2039
- #: includes/Elements/Info_Box.php:380
2040
- msgid "Enter heading for the button"
2041
  msgstr ""
2042
 
2043
- #: includes/Elements/Info_Box.php:375
2044
- msgid "Enter link URL for the button"
2045
  msgstr ""
2046
 
2047
- #: includes/Elements/Sticky_Video.php:185
2048
- msgid "Enter your URL"
2049
  msgstr ""
2050
 
2051
- #: includes/Elements/Sticky_Video.php:141
2052
- msgid "Enter your URL (Dailymotion)"
2053
  msgstr ""
2054
 
2055
- #: includes/Elements/Sticky_Video.php:127
2056
- msgid "Enter your URL (Vimeo)"
2057
  msgstr ""
2058
 
2059
- #: includes/Elements/Sticky_Video.php:113
2060
- msgid "Enter your URL (YouTube)"
2061
  msgstr ""
2062
 
2063
- #: includes/Traits/Helper.php:636
2064
- msgid "Entry Footer"
2065
  msgstr ""
2066
 
2067
- #: includes/Traits/Helper.php:635
2068
- msgid "Entry Header"
2069
  msgstr ""
2070
 
2071
- #: includes/Elements/GravityForms.php:1631
2072
- msgid "Error Border Color"
2073
  msgstr ""
2074
 
2075
- #: includes/Elements/NinjaForms.php:1515
2076
- #: includes/Elements/GravityForms.php:1616
2077
- msgid "Error Description Color"
2078
  msgstr ""
2079
 
2080
- #: includes/Elements/GravityForms.php:1647
2081
- msgid "Error Field Background Color"
2082
  msgstr ""
2083
 
2084
- #: includes/Elements/NinjaForms.php:1530
2085
- #: includes/Elements/GravityForms.php:1677 includes/Elements/WpForms.php:1343
2086
- msgid "Error Field Input Border Color"
2087
  msgstr ""
2088
 
2089
- #: includes/Elements/GravityForms.php:1692 includes/Elements/WpForms.php:1358
2090
- msgid "Error Field Input Border Width"
2091
  msgstr ""
2092
 
2093
- #: includes/Elements/GravityForms.php:1662
2094
- msgid "Error Field Label Color"
2095
  msgstr ""
2096
 
2097
- #: includes/Elements/Caldera_Forms.php:1423
2098
- msgid "Error Fields"
2099
  msgstr ""
2100
 
2101
- #: includes/Elements/NinjaForms.php:174 includes/Elements/NinjaForms.php:1477
2102
- #: includes/Elements/FluentForm.php:165 includes/Elements/FluentForm.php:1705
2103
- #: includes/Elements/GravityForms.php:239
2104
- #: includes/Elements/GravityForms.php:1578 includes/Elements/WpForms.php:178
2105
- #: includes/Elements/Caldera_Forms.php:164
2106
- #: includes/Elements/Caldera_Forms.php:1397
2107
- #: includes/Elements/Contact_Form_7.php:199
2108
- #: includes/Elements/Contact_Form_7.php:1297
2109
- msgid "Error Messages"
2110
  msgstr ""
2111
 
2112
- #: includes/Elements/NinjaForms.php:167 includes/Elements/NinjaForms.php:1469
2113
- #: includes/Elements/FluentForm.php:158 includes/Elements/FluentForm.php:1697
2114
- #: includes/Elements/GravityForms.php:232
2115
- #: includes/Elements/GravityForms.php:1570 includes/Elements/WpForms.php:171
2116
- #: includes/Elements/WpForms.php:1317 includes/Elements/Caldera_Forms.php:157
2117
- #: includes/Elements/Caldera_Forms.php:1389
2118
- #: includes/Elements/Contact_Form_7.php:192
2119
- #: includes/Elements/Contact_Form_7.php:1289
2120
- msgid "Errors"
2121
  msgstr ""
2122
 
2123
- #: includes/Traits/Admin.php:22 includes/Traits/Elements.php:23
2124
- msgid "Essential Addons"
2125
  msgstr ""
2126
 
2127
- #. Name of the plugin
2128
- msgid "Essential Addons for Elementor"
2129
  msgstr ""
2130
 
2131
- #: includes/Traits/Admin.php:72
2132
- msgid "Essential Addons Settings"
2133
  msgstr ""
2134
 
2135
- #: includes/templates/admin/tools.php:13
2136
- msgid ""
2137
- "Essential Addons styles & scripts are saved in Uploads folder. This option "
2138
- "will clear all those generated files."
2139
  msgstr ""
2140
 
2141
- #: includes/templates/admin/general.php:52
2142
- msgid "Essential Addons website."
2143
  msgstr ""
2144
 
2145
- #: includes/Elements/Data_Table.php:715 includes/Elements/Data_Table.php:796
2146
- msgid "Even Cell"
2147
  msgstr ""
2148
 
2149
- #: includes/Elements/Advanced_Data_Table.php:575
2150
- msgid "Even Column"
2151
  msgstr ""
2152
 
2153
- #: includes/Elements/Advanced_Data_Table.php:577
2154
- msgid "Even Row"
2155
  msgstr ""
2156
 
2157
- #: includes/Elements/Dual_Color_Header.php:110
2158
- msgid "Example"
2159
  msgstr ""
2160
 
2161
- #: includes/Elements/Post_Grid.php:218 includes/Elements/Post_Timeline.php:247
2162
- msgid "Excerpt Alignment"
2163
  msgstr ""
2164
 
2165
- #: includes/Elements/Post_Grid.php:206 includes/Elements/Post_Timeline.php:235
2166
- msgid "Excerpt Color"
2167
  msgstr ""
2168
 
2169
- #: includes/Elements/Post_Grid.php:197 includes/Elements/Post_Timeline.php:226
2170
- msgid "Excerpt Style"
2171
  msgstr ""
2172
 
2173
- #: includes/Elements/Post_Grid.php:248
2174
- msgid "Excerpt Typography"
2175
  msgstr ""
2176
 
2177
- #: includes/Elements/Post_Timeline.php:277
2178
- msgid "excerpt Typography"
2179
  msgstr ""
2180
 
2181
- #: includes/Traits/Helper.php:533
2182
- msgid "Excerpt Words"
2183
  msgstr ""
2184
 
2185
- #: includes/Traits/Helper.php:141
2186
- msgid "Exclude"
2187
  msgstr ""
2188
 
2189
- #: includes/Traits/Helper.php:545
2190
- msgid "Expanison Indicator"
2191
  msgstr ""
2192
 
2193
- #: includes/Elements/Countdown.php:264
2194
- msgid "Expire Action"
2195
  msgstr ""
2196
 
2197
- #: includes/Elements/Countdown.php:779
2198
- msgid "Expire Message"
2199
  msgstr ""
2200
 
2201
- #: includes/Elements/Countdown.php:271
2202
- msgid "Expire Type"
2203
  msgstr ""
2204
 
2205
- #: includes/Elements/Data_Table.php:330 includes/Elements/Data_Table.php:339
2206
- #: includes/Elements/Advanced_Data_Table.php:149
2207
- #: includes/Elements/Advanced_Data_Table.php:159
2208
- msgid "Export"
2209
  msgstr ""
2210
 
2211
- #: includes/Elements/Data_Table.php:337
2212
- #: includes/Elements/Advanced_Data_Table.php:157
2213
- msgid "Export table as CSV file"
2214
  msgstr ""
2215
 
2216
- #: includes/Elements/Advanced_Data_Table.php:139
2217
- msgid "Export/Import"
2218
  msgstr ""
2219
 
2220
- #: includes/Traits/Admin.php:82
2221
- msgid "Extensions"
2222
  msgstr ""
2223
 
2224
- #: includes/Elements/Sticky_Video.php:152
2225
- msgid "External URL"
2226
  msgstr ""
2227
 
2228
- #: includes/Elements/Facebook_Feed.php:43
2229
- msgid "Facebook Account Settings"
2230
  msgstr ""
2231
 
2232
- #: includes/templates/admin/general.php:52
2233
- msgid "Facebook Community."
2234
  msgstr ""
2235
 
2236
- #: includes/templates/admin/elements.php:423
2237
- msgid "Facebook Feed"
2238
  msgstr ""
2239
 
2240
- #: includes/Elements/Content_Ticker.php:125
2241
- #: includes/Elements/Fancy_Text.php:195 includes/Elements/Pricing_Table.php:350
2242
- msgid "Fade"
2243
  msgstr ""
2244
 
2245
- #: includes/Elements/Fancy_Text.php:197
2246
- msgid "Fade Down"
2247
  msgstr ""
2248
 
2249
- #: includes/Elements/Fancy_Text.php:198
2250
- msgid "Fade Left"
2251
  msgstr ""
2252
 
2253
- #: includes/Elements/Fancy_Text.php:199
2254
- msgid "Fade Right"
2255
  msgstr ""
2256
 
2257
- #: includes/Elements/Fancy_Text.php:196
2258
- msgid "Fade Up"
2259
  msgstr ""
2260
 
2261
- #: includes/Elements/Post_Grid.php:349
2262
- msgid "FadeIn"
2263
  msgstr ""
2264
 
2265
- #: includes/Elements/Pricing_Table.php:354
2266
- msgid "Fall"
2267
  msgstr ""
2268
 
2269
- #: includes/Elements/Fancy_Text.php:79
2270
- msgid "Fancy String"
2271
  msgstr ""
2272
 
2273
- #: includes/Elements/Fancy_Text.php:58
2274
- #: includes/templates/admin/elements.php:212
2275
- msgid "Fancy Text"
2276
  msgstr ""
2277
 
2278
- #: includes/Elements/Fancy_Text.php:331
2279
- msgid "Fancy Text Color"
2280
  msgstr ""
2281
 
2282
- #: includes/Elements/Fancy_Text.php:125
2283
- msgid "Fancy Text Settings"
2284
  msgstr ""
2285
 
2286
- #: includes/Elements/Fancy_Text.php:89
2287
- msgid "Fancy Text Strings"
2288
  msgstr ""
2289
 
2290
- #: includes/Elements/Fancy_Text.php:323
2291
- msgid "Fancy Text Styles"
2292
  msgstr ""
2293
 
2294
- #: includes/Classes/WPML/Eael_WPML.php:94
2295
- msgid "Fancy Text: Prefix Text"
2296
  msgstr ""
2297
 
2298
- #: includes/Classes/WPML/Widgets/Fancy_Text.php:47
2299
- msgid "Fancy Text: String"
2300
  msgstr ""
2301
 
2302
- #: includes/Classes/WPML/Eael_WPML.php:99
2303
- msgid "Fancy Text: Suffix Text"
2304
  msgstr ""
2305
 
2306
- #: includes/Elements/Pricing_Table.php:242
2307
- msgid "Feature"
2308
  msgstr ""
2309
 
2310
- #: includes/Elements/Feature_List.php:130
2311
- msgid "Feature Item"
2312
  msgstr ""
2313
 
2314
- #: includes/Elements/Feature_List.php:139
2315
- msgid "Feature Item 1"
2316
  msgstr ""
2317
 
2318
- #: includes/Elements/Feature_List.php:147
2319
- msgid "Feature Item 2"
2320
  msgstr ""
2321
 
2322
- #: includes/Elements/Feature_List.php:155
2323
- msgid "Feature Item 3"
2324
  msgstr ""
2325
 
2326
- #: includes/Elements/Pricing_Table.php:978
2327
- #: includes/templates/admin/elements.php:63
2328
- msgid "Feature List"
2329
  msgstr ""
2330
 
2331
- #: includes/Classes/WPML/Eael_WPML.php:335
2332
- #: includes/Classes/WPML/Widgets/Feature_List.php:53
2333
- msgid "Feature List: Content"
2334
  msgstr ""
2335
 
2336
- #: includes/Classes/WPML/Eael_WPML.php:330
2337
- #: includes/Classes/WPML/Widgets/Feature_List.php:50
2338
- msgid "Feature List: Title"
2339
  msgstr ""
2340
 
2341
- #: includes/Elements/Pricing_Table.php:531
2342
- msgid "Featured"
2343
  msgstr ""
2344
 
2345
- #: includes/Elements/Product_Grid.php:58
2346
- msgid "Featured Products"
2347
  msgstr ""
2348
 
2349
- #: includes/Elements/Pricing_Table.php:528
2350
- msgid "Featured Tag Text"
2351
  msgstr ""
2352
 
2353
- #: includes/Elements/Pricing_Table.php:498
2354
- msgid "Featured?"
2355
  msgstr ""
2356
 
2357
- #: includes/Elements/Facebook_Feed.php:286
2358
- msgid "Feed Item Styles"
2359
  msgstr ""
2360
 
2361
- #: includes/Elements/Facebook_Feed.php:74
2362
- msgid "Feed Settings"
2363
  msgstr ""
2364
 
2365
- #: includes/Elements/Betterdocs_Search_Form.php:137
2366
- msgid "Field Background Color"
2367
  msgstr ""
2368
 
2369
- #: includes/Elements/Betterdocs_Search_Form.php:148
2370
- msgid "Field Color"
2371
  msgstr ""
2372
 
2373
- #: includes/Elements/NinjaForms.php:856 includes/Elements/GravityForms.php:900
2374
- #: includes/Elements/WpForms.php:799 includes/Elements/Caldera_Forms.php:819
2375
- msgid "Field Description"
2376
  msgstr ""
2377
 
2378
- #: includes/Elements/WeForms.php:462
2379
- msgid "Field Font Color"
2380
  msgstr ""
2381
 
2382
- #: includes/Elements/Betterdocs_Search_Form.php:167
2383
- msgid "Field Padding"
2384
  msgstr ""
2385
 
2386
- #: includes/Elements/Contact_Form_7.php:1359
2387
- msgid "Fields"
2388
  msgstr ""
2389
 
2390
- #: includes/Elements/WeForms.php:336
2391
- msgid "Fields Padding"
2392
  msgstr ""
2393
 
2394
- #: includes/Elements/Progress_Bar.php:365
2395
- msgid "Fill"
2396
  msgstr ""
2397
 
2398
- #: includes/Extensions/Reading_Progress.php:166
2399
- #: includes/Elements/Progress_Bar.php:580
2400
- msgid "Fill Color"
2401
  msgstr ""
2402
 
2403
- #: includes/Elements/Flip_Box.php:476
2404
- msgid "Filp Box Style"
2405
  msgstr ""
2406
 
2407
- #: includes/Elements/Product_Grid.php:53
2408
- msgid "Filter By"
2409
  msgstr ""
2410
 
2411
- #: includes/templates/admin/elements.php:218
2412
- msgid "Filterable Gallery"
2413
  msgstr ""
2414
 
2415
- #: includes/Elements/Advanced_Data_Table.php:573
2416
- msgid "First Column"
2417
  msgstr ""
2418
 
2419
- #: includes/Elements/Fancy_Text.php:96
2420
- msgid "First string"
2421
  msgstr ""
2422
 
2423
- #: includes/Traits/Helper.php:306
2424
- msgid "Five Columns"
2425
  msgstr ""
2426
 
2427
- #: includes/Elements/Cta_Box.php:57
2428
- msgid "Flex Grid"
2429
  msgstr ""
2430
 
2431
- #: includes/Elements/Cta_Box.php:58
2432
- msgid "Flex Grid with Icon"
2433
  msgstr ""
2434
 
2435
- #: includes/Elements/Flip_Box.php:59
2436
- msgid "Flip Bottom"
2437
  msgstr ""
2438
 
2439
- #: includes/templates/admin/elements.php:27
2440
- msgid "Flip Box"
2441
  msgstr ""
2442
 
2443
- #: includes/templates/admin/elements.php:271
2444
- msgid "Flip Carousel"
2445
  msgstr ""
2446
 
2447
- #: includes/Elements/Flip_Box.php:56
2448
- msgid "Flip Left"
2449
  msgstr ""
2450
 
2451
- #: includes/Elements/Flip_Box.php:57
2452
- msgid "Flip Right"
2453
  msgstr ""
2454
 
2455
- #: includes/Elements/Flip_Box.php:58
2456
- msgid "Flip Top"
2457
  msgstr ""
2458
 
2459
- #: includes/Elements/Flip_Box.php:252
2460
- msgid "Flipbox Content"
2461
  msgstr ""
2462
 
2463
- #: includes/Elements/Flip_Box.php:92 includes/Elements/Flip_Box.php:179
2464
- msgid "Flipbox Image"
2465
  msgstr ""
2466
 
2467
- #: includes/Elements/Flip_Box.php:44
2468
- msgid "Flipbox Settings"
2469
  msgstr ""
2470
 
2471
- #: includes/Elements/Flip_Box.php:51
2472
- msgid "Flipbox Type"
2473
  msgstr ""
2474
 
2475
- #: includes/Elements/FluentForm.php:72 includes/Elements/FluentForm.php:81
2476
- msgid "Fluent Form"
2477
  msgstr ""
2478
 
2479
- #: includes/templates/admin/elements.php:385
2480
- msgid "FluentForm"
2481
  msgstr ""
2482
 
2483
- #: includes/Elements/NinjaForms.php:807 includes/Elements/FluentForm.php:777
2484
- #: includes/Elements/GravityForms.php:851 includes/Elements/WpForms.php:762
2485
- #: includes/Elements/Caldera_Forms.php:770
2486
- #: includes/Elements/Contact_Form_7.php:691
2487
- msgid "Focus"
2488
  msgstr ""
2489
 
2490
- #: includes/Elements/WeForms.php:402
2491
- msgid "Focus State Style"
2492
  msgstr ""
2493
 
2494
- #: includes/Elements/Cta_Box.php:629
2495
- #: includes/Elements/Betterdocs_Category_Grid.php:226
2496
- #: includes/Elements/Pricing_Table.php:1099
2497
- msgid "Font Size"
2498
  msgstr ""
2499
 
2500
- #: includes/Elements/Facebook_Feed.php:441
2501
- msgid "Footer Style"
2502
  msgstr ""
2503
 
2504
- #: includes/Elements/NinjaForms.php:239 includes/Elements/FluentForm.php:390
2505
- #: includes/Elements/GravityForms.php:309 includes/Elements/WeForms.php:134
2506
- #: includes/Elements/WpForms.php:228 includes/Elements/Caldera_Forms.php:383
2507
- #: includes/Elements/Contact_Form_7.php:295
2508
- msgid "Form Alignment"
2509
  msgstr ""
2510
 
2511
- #: includes/Elements/NinjaForms.php:228 includes/Elements/FluentForm.php:367
2512
- #: includes/Elements/GravityForms.php:298 includes/Elements/WeForms.php:123
2513
- #: includes/Elements/WpForms.php:217 includes/Elements/Caldera_Forms.php:372
2514
- msgid "Form Background Color"
2515
  msgstr ""
2516
 
2517
- #: includes/Elements/NinjaForms.php:220 includes/Elements/FluentForm.php:359
2518
- #: includes/Elements/GravityForms.php:290 includes/Elements/WpForms.php:209
2519
- #: includes/Elements/Caldera_Forms.php:364
2520
- #: includes/Elements/Contact_Form_7.php:277
2521
- msgid "Form Container"
2522
  msgstr ""
2523
 
2524
- #: includes/Elements/WeForms.php:115
2525
- msgid "Form Container Styles"
2526
  msgstr ""
2527
 
2528
- #: includes/Elements/Contact_Form_7.php:151
2529
- msgid "Form Description"
2530
  msgstr ""
2531
 
2532
- #: includes/Elements/WeForms.php:262
2533
- msgid "Form Fields Styles"
2534
  msgstr ""
2535
 
2536
- #: includes/Elements/NinjaForms.php:312 includes/Elements/FluentForm.php:440
2537
- #: includes/Elements/GravityForms.php:382 includes/Elements/WeForms.php:207
2538
- #: includes/Elements/WpForms.php:279 includes/Elements/Caldera_Forms.php:433
2539
- #: includes/Elements/Contact_Form_7.php:345
2540
- msgid "Form Margin"
2541
  msgstr ""
2542
 
2543
- #: includes/Elements/NinjaForms.php:289 includes/Elements/FluentForm.php:418
2544
- #: includes/Elements/GravityForms.php:359 includes/Elements/WeForms.php:185
2545
- #: includes/Elements/WpForms.php:256 includes/Elements/Caldera_Forms.php:411
2546
- #: includes/Elements/Contact_Form_7.php:323
2547
- msgid "Form Max Width"
2548
  msgstr ""
2549
 
2550
- #: includes/Elements/NinjaForms.php:324 includes/Elements/FluentForm.php:452
2551
- #: includes/Elements/GravityForms.php:394 includes/Elements/WeForms.php:219
2552
- #: includes/Elements/WpForms.php:291 includes/Elements/Caldera_Forms.php:445
2553
- #: includes/Elements/Contact_Form_7.php:357
2554
- msgid "Form Padding"
2555
  msgstr ""
2556
 
2557
- #: includes/templates/admin/elements.php:345
2558
- msgid "Form Styler Elements"
2559
  msgstr ""
2560
 
2561
- #: includes/Elements/Contact_Form_7.php:127
2562
- msgid "Form Title"
2563
  msgstr ""
2564
 
2565
- #: includes/Elements/NinjaForms.php:267 includes/Elements/GravityForms.php:337
2566
- #: includes/Elements/WeForms.php:163
2567
- msgid "Form Width"
2568
  msgstr ""
2569
 
2570
- #: includes/Traits/Helper.php:305
2571
- msgid "Four Columns"
2572
  msgstr ""
2573
 
2574
- #: includes/Elements/Feature_List.php:208
2575
- msgid "Framed"
2576
  msgstr ""
2577
 
2578
- #: includes/Elements/Flip_Box.php:71 includes/Elements/Flip_Box.php:261
2579
- #: includes/Elements/Flip_Box.php:641 includes/Elements/Flip_Box.php:884
2580
- msgid "Front"
2581
  msgstr ""
2582
 
2583
- #: includes/Elements/Flip_Box.php:484
2584
- msgid "Front Background Color"
2585
  msgstr ""
2586
 
2587
- #: includes/Elements/Flip_Box.php:278
2588
- msgid "Front Text"
2589
  msgstr ""
2590
 
2591
- #: includes/Elements/Flip_Box.php:268 includes/Elements/Flip_Box.php:271
2592
- msgid "Front Title"
2593
  msgstr ""
2594
 
2595
- #: includes/Elements/NinjaForms.php:1182 includes/Elements/FluentForm.php:1448
2596
- #: includes/Elements/GravityForms.php:1372 includes/Elements/WpForms.php:1123
2597
- #: includes/Elements/Caldera_Forms.php:1140
2598
- #: includes/Elements/Contact_Form_7.php:1097
2599
- msgid "Full Width"
2600
  msgstr ""
2601
 
2602
- #: includes/Traits/Admin.php:80 includes/Elements/Adv_Tabs.php:243
2603
- #: includes/Elements/Progress_Bar.php:246
2604
- #: includes/Elements/Progress_Bar.php:457
2605
- msgid "General"
2606
  msgstr ""
2607
 
2608
- #: includes/Elements/Adv_Tabs.php:50 includes/Elements/Adv_Accordion.php:49
2609
- #: includes/Elements/Facebook_Feed.php:113
2610
- msgid "General Settings"
2611
  msgstr ""
2612
 
2613
- #: includes/Elements/Data_Table.php:381 includes/Elements/Adv_Accordion.php:225
2614
- msgid "General Style"
2615
  msgstr ""
2616
 
2617
- #: includes/templates/admin/general.php:53
2618
- msgid "Get Community Support"
2619
  msgstr ""
2620
 
2621
- #: includes/templates/admin/go-pro.php:15
2622
- msgid "Get Premium Version"
2623
  msgstr ""
2624
 
2625
- #: includes/Elements/Flip_Box.php:403
2626
- msgid "Get Started"
2627
  msgstr ""
2628
 
2629
- #: includes/templates/admin/general.php:26
2630
- msgid ""
2631
- "Get started by spending some time with the documentation to get familiar "
2632
- "with Essential Addons. Build awesome websites for you or your clients with "
2633
- "ease."
2634
  msgstr ""
2635
 
2636
- #: includes/templates/admin/general.php:38
2637
- msgid "Github."
2638
  msgstr ""
2639
 
2640
- #: includes/Traits/Admin.php:85
2641
- msgid "Go Premium"
2642
  msgstr ""
2643
 
2644
- #: includes/Traits/Helper.php:1019 includes/Elements/Adv_Tabs.php:212
2645
- #: includes/Elements/Data_Table.php:350 includes/Elements/Cta_Box.php:218
2646
- #: includes/Elements/Countdown.php:339 includes/Elements/Tooltip.php:482
2647
- #: includes/Elements/Testimonial.php:174
2648
- #: includes/Elements/Dual_Color_Header.php:156
2649
- #: includes/Elements/Adv_Accordion.php:194
2650
- #: includes/Elements/Progress_Bar.php:211 includes/Elements/WeForms.php:88
2651
- #: includes/Elements/Info_Box.php:443 includes/Elements/Content_Ticker.php:310
2652
- #: includes/Elements/Team_Member.php:195 includes/Elements/Fancy_Text.php:263
2653
- #: includes/Elements/Pricing_Table.php:549
2654
- #: includes/Elements/Contact_Form_7.php:242
2655
- #: includes/Elements/Twitter_Feed.php:262 includes/Elements/Flip_Box.php:445
2656
- #: includes/Elements/Creative_Button.php:153
2657
- msgid "Go Premium for More Features"
2658
  msgstr ""
2659
 
2660
- #: includes/Elements/Content_Ticker.php:255
2661
- msgid "Grab Cursor"
2662
  msgstr ""
2663
 
2664
- #: includes/templates/admin/elements.php:367
2665
- msgid "Gravity Form"
2666
  msgstr ""
2667
 
2668
- #: includes/Classes/WPML/Eael_WPML.php:383
2669
- msgid "Gravity Form: Description"
2670
  msgstr ""
2671
 
2672
- #: includes/Classes/WPML/Eael_WPML.php:378
2673
- msgid "Gravity Form: Title"
2674
  msgstr ""
2675
 
2676
- #: includes/Elements/GravityForms.php:106
2677
- msgid "Gravity Forms"
2678
  msgstr ""
2679
 
2680
- #: includes/Elements/FluentForm.php:1209
2681
- msgid "Grid Table Head"
2682
  msgstr ""
2683
 
2684
- #: includes/Elements/FluentForm.php:1283
2685
- msgid "Grid Table Item"
2686
  msgstr ""
2687
 
2688
- #: includes/Elements/Pricing_Table.php:351
2689
- msgid "Grow"
2690
  msgstr ""
2691
 
2692
- #: includes/Elements/Tooltip.php:92 includes/Elements/Progress_Bar.php:113
2693
- msgid "H1"
2694
  msgstr ""
2695
 
2696
- #: includes/Elements/Tooltip.php:93 includes/Elements/Progress_Bar.php:114
2697
- msgid "H2"
2698
  msgstr ""
2699
 
2700
- #: includes/Elements/Tooltip.php:94 includes/Elements/Progress_Bar.php:115
2701
- msgid "H3"
2702
  msgstr ""
2703
 
2704
- #: includes/Elements/Tooltip.php:95 includes/Elements/Progress_Bar.php:116
2705
- msgid "H4"
2706
  msgstr ""
2707
 
2708
- #: includes/Elements/Tooltip.php:96 includes/Elements/Progress_Bar.php:117
2709
- msgid "H5"
2710
  msgstr ""
2711
 
2712
- #: includes/Elements/Tooltip.php:97 includes/Elements/Progress_Bar.php:118
2713
- msgid "H6"
2714
  msgstr ""
2715
 
2716
- #: includes/Elements/Progress_Bar.php:66
2717
- msgid "Half Circle"
2718
  msgstr ""
2719
 
2720
- #: includes/Elements/Progress_Bar.php:67
2721
- msgid "Half Circle Fill (Pro)"
2722
  msgstr ""
2723
 
2724
- #: includes/Elements/Twitter_Feed.php:64
2725
- msgid "Hashtag Name"
2726
  msgstr ""
2727
 
2728
- #: includes/Elements/Advanced_Data_Table.php:242
2729
- msgid "Head"
2730
  msgstr ""
2731
 
2732
- #: includes/Elements/Data_Table.php:44 includes/Elements/Pricing_Table.php:719
2733
- msgid "Header"
2734
  msgstr ""
2735
 
2736
- #: includes/Elements/Data_Table.php:456
2737
- msgid "Header Border Radius"
2738
  msgstr ""
2739
 
2740
- #: includes/Elements/Data_Table.php:100
2741
- msgid "Header Icon Type"
2742
  msgstr ""
2743
 
2744
- #: includes/Elements/Data_Table.php:447 includes/Elements/Facebook_Feed.php:358
2745
- msgid "Header Style"
2746
  msgstr ""
2747
 
2748
- #: includes/Extensions/Reading_Progress.php:122
2749
- #: includes/Elements/FluentForm.php:1252 includes/Elements/FluentForm.php:1337
2750
- #: includes/Elements/Image_Accordion.php:133
2751
- #: includes/Elements/Progress_Bar.php:324
2752
- #: includes/Elements/Progress_Bar.php:376
2753
- #: includes/Elements/Sticky_Video.php:408
2754
- #: includes/Elements/Advanced_Data_Table.php:861
2755
- #: includes/Elements/Team_Member.php:274
2756
- msgid "Height"
2757
  msgstr ""
2758
 
2759
- #: includes/Traits/Helper.php:375 includes/Traits/Helper.php:404
2760
- #: includes/Traits/Helper.php:512 includes/Traits/Helper.php:524
2761
- #: includes/Traits/Helper.php:561 includes/Traits/Helper.php:595
2762
- #: includes/Traits/Helper.php:622 includes/Elements/NinjaForms.php:99
2763
- #: includes/Elements/NinjaForms.php:140 includes/Elements/NinjaForms.php:153
2764
- #: includes/Elements/NinjaForms.php:179 includes/Elements/NinjaForms.php:199
2765
- #: includes/Elements/FluentForm.php:132 includes/Elements/FluentForm.php:144
2766
- #: includes/Elements/FluentForm.php:170 includes/Elements/GravityForms.php:139
2767
- #: includes/Elements/GravityForms.php:154
2768
- #: includes/Elements/GravityForms.php:194
2769
- #: includes/Elements/GravityForms.php:206
2770
- #: includes/Elements/GravityForms.php:244
2771
- #: includes/Elements/GravityForms.php:264
2772
- #: includes/Elements/Dual_Color_Header.php:69
2773
- #: includes/Elements/Sticky_Video.php:312 includes/Elements/Info_Box.php:246
2774
- #: includes/Elements/Content_Ticker.php:260 includes/Elements/WpForms.php:92
2775
- #: includes/Elements/WpForms.php:107 includes/Elements/WpForms.php:147
2776
- #: includes/Elements/WpForms.php:160 includes/Elements/WpForms.php:183
2777
- #: includes/Elements/Pricing_Table.php:1355
2778
- #: includes/Elements/Caldera_Forms.php:130
2779
- #: includes/Elements/Caldera_Forms.php:143
2780
- #: includes/Elements/Caldera_Forms.php:169
2781
- #: includes/Elements/Contact_Form_7.php:178
2782
- #: includes/Elements/Contact_Form_7.php:204
2783
- #: includes/Elements/Contact_Form_7.php:224
2784
- #: includes/Elements/Creative_Button.php:221
2785
- msgid "Hide"
2786
  msgstr ""
2787
 
2788
- #: includes/Elements/Advanced_Data_Table.php:569
2789
- msgid "Highlight"
2790
  msgstr ""
2791
 
2792
- #: includes/Elements/Advanced_Data_Table.php:561
2793
- msgid "Highlight Row/Colum"
2794
  msgstr ""
2795
 
2796
- #: includes/Elements/Adv_Tabs.php:61
2797
- msgid "Horizontal"
2798
  msgstr ""
2799
 
2800
- #: includes/Elements/Countdown.php:158 includes/Elements/Countdown.php:607
2801
- msgid "Hours"
2802
  msgstr ""
2803
 
2804
- #: includes/Traits/Helper.php:737 includes/Traits/Helper.php:931
2805
- #: includes/Elements/Adv_Tabs.php:479 includes/Elements/NinjaForms.php:1307
2806
- #: includes/Elements/FluentForm.php:1588 includes/Elements/Data_Table.php:525
2807
- #: includes/Elements/Data_Table.php:769 includes/Elements/Data_Table.php:867
2808
- #: includes/Elements/Betterdocs_Search_Form.php:436
2809
- #: includes/Elements/Cta_Box.php:555 includes/Elements/Tooltip.php:415
2810
- #: includes/Elements/Betterdocs_Category_Grid.php:454
2811
- #: includes/Elements/GravityForms.php:1497
2812
- #: includes/Elements/Adv_Accordion.php:439 includes/Elements/WeForms.php:675
2813
- #: includes/Elements/Advanced_Data_Table.php:1230
2814
- #: includes/Elements/Info_Box.php:548 includes/Elements/Info_Box.php:789
2815
- #: includes/Elements/Info_Box.php:1021 includes/Elements/Info_Box.php:1251
2816
- #: includes/Elements/Info_Box.php:1428 includes/Elements/Content_Ticker.php:638
2817
- #: includes/Elements/Team_Member.php:708 includes/Elements/Product_Grid.php:391
2818
- #: includes/Elements/WpForms.php:1264 includes/Elements/Pricing_Table.php:337
2819
- #: includes/Elements/Pricing_Table.php:1649
2820
- #: includes/Elements/Caldera_Forms.php:1280
2821
- #: includes/Elements/Betterdocs_Category_Box.php:278
2822
- #: includes/Elements/Contact_Form_7.php:1237
2823
- #: includes/Elements/Flip_Box.php:1127
2824
- #: includes/Elements/Creative_Button.php:304
2825
- msgid "Hover"
2826
  msgstr ""
2827
 
2828
- #: includes/Elements/Team_Member.php:725
2829
- msgid "Hover Background Color"
2830
  msgstr ""
2831
 
2832
- #: includes/Elements/Team_Member.php:737
2833
- msgid "Hover Border Color"
2834
  msgstr ""
2835
 
2836
- #: includes/Elements/Post_Grid.php:336
2837
- msgid "Hover Card Style"
2838
  msgstr ""
2839
 
2840
- #: includes/Elements/Pricing_Table.php:1493
2841
- #: includes/Elements/Twitter_Feed.php:453
2842
- msgid "Hover Color"
2843
  msgstr ""
2844
 
2845
- #: includes/Elements/Tooltip.php:255
2846
- msgid "Hover Direction"
2847
  msgstr ""
2848
 
2849
- #: includes/Elements/Tooltip.php:77
2850
- msgid "Hover Me!"
2851
  msgstr ""
2852
 
2853
- #: includes/Elements/Image_Accordion.php:230
2854
- msgid "Hover Overlay Color"
2855
  msgstr ""
2856
 
2857
- #: includes/Elements/Tooltip.php:270
2858
- msgid "Hover Speed"
2859
  msgstr ""
2860
 
2861
- #. URI of the plugin
2862
- msgid "https://essential-addons.com/elementor/"
2863
  msgstr ""
2864
 
2865
- #. Author URI of the plugin
2866
- msgid "https://wpdeveloper.net/"
2867
  msgstr ""
2868
 
2869
- #: includes/Elements/Feature_List.php:122
2870
- msgid "https://your-link.com"
2871
  msgstr ""
2872
 
2873
- #: includes/Traits/Admin.php:168
2874
- msgid "I already did"
2875
  msgstr ""
2876
 
2877
- #: includes/Traits/Admin.php:184
2878
- msgid "I need help"
2879
  msgstr ""
2880
 
2881
- #: includes/Elements/Pricing_Table.php:300
2882
- msgid "I'm a awesome tooltip!!"
2883
  msgstr ""
2884
 
2885
- #: includes/Traits/Helper.php:437 includes/Traits/Helper.php:490
2886
- #: includes/Elements/Adv_Tabs.php:131 includes/Elements/Adv_Tabs.php:143
2887
- #: includes/Elements/Data_Table.php:108 includes/Elements/Data_Table.php:123
2888
- #: includes/Elements/Cta_Box.php:105 includes/Elements/Feature_List.php:57
2889
- #: includes/Elements/Feature_List.php:73 includes/Elements/Feature_List.php:389
2890
- #: includes/Elements/Tooltip.php:52 includes/Elements/Tooltip.php:122
2891
- #: includes/Elements/Betterdocs_Category_Grid.php:340
2892
- #: includes/Elements/Dual_Color_Header.php:80
2893
- #: includes/Elements/Adv_Accordion.php:137 includes/Elements/Info_Box.php:80
2894
- #: includes/Elements/Info_Box.php:150 includes/Elements/Info_Box.php:390
2895
- #: includes/Elements/Team_Member.php:164
2896
- #: includes/Elements/Pricing_Table.php:129 includes/Elements/Flip_Box.php:83
2897
- #: includes/Elements/Flip_Box.php:106 includes/Elements/Flip_Box.php:170
2898
- #: includes/Elements/Flip_Box.php:193 includes/Elements/Creative_Button.php:93
2899
- msgid "Icon"
2900
  msgstr ""
2901
 
2902
- #: includes/Elements/Dual_Color_Header.php:56
2903
- msgid "Icon &amp; sub-text on top"
2904
  msgstr ""
2905
 
2906
- #: includes/Elements/Pricing_Table.php:1440
2907
- msgid "Icon Area Height"
2908
  msgstr ""
2909
 
2910
- #: includes/Elements/Pricing_Table.php:1421
2911
- msgid "Icon Area Width"
2912
  msgstr ""
2913
 
2914
- #: includes/Elements/Info_Box.php:679 includes/Elements/Info_Box.php:911
2915
- msgid "Icon Background Size"
2916
  msgstr ""
2917
 
2918
- #: includes/Elements/Adv_Tabs.php:447 includes/Elements/Adv_Tabs.php:513
2919
- #: includes/Elements/Adv_Tabs.php:581 includes/Elements/Post_Grid.php:388
2920
- #: includes/Elements/Dual_Color_Header.php:304
2921
- #: includes/Elements/Adv_Accordion.php:403
2922
- #: includes/Elements/Adv_Accordion.php:475
2923
- #: includes/Elements/Adv_Accordion.php:547 includes/Elements/Info_Box.php:724
2924
- #: includes/Elements/Info_Box.php:804 includes/Elements/Info_Box.php:956
2925
- #: includes/Elements/Info_Box.php:1036 includes/Elements/Team_Member.php:651
2926
- #: includes/Elements/Pricing_Table.php:285
2927
- #: includes/Elements/Pricing_Table.php:1459
2928
- msgid "Icon Color"
2929
  msgstr ""
2930
 
2931
- #: includes/Elements/Post_Grid.php:400
2932
- msgid "Icon font size"
2933
  msgstr ""
2934
 
2935
- #: includes/Elements/Adv_Tabs.php:368 includes/Elements/Adv_Accordion.php:324
2936
- msgid "Icon Gap"
2937
  msgstr ""
2938
 
2939
- #: includes/Elements/Team_Member.php:713
2940
- #: includes/Elements/Pricing_Table.php:1471
2941
- msgid "Icon Hover Color"
2942
  msgstr ""
2943
 
2944
- #: includes/Traits/Helper.php:455
2945
- msgid "Icon Image"
2946
  msgstr ""
2947
 
2948
- #: includes/Traits/Helper.php:468
2949
- msgid "Icon Image Size"
2950
  msgstr ""
2951
 
2952
- #: includes/Elements/Dual_Color_Header.php:55
2953
- msgid "Icon on top"
2954
  msgstr ""
2955
 
2956
- #: includes/Elements/Adv_Tabs.php:78 includes/Elements/Data_Table.php:599
2957
- #: includes/Elements/Feature_List.php:217 includes/Elements/Info_Box.php:95
2958
- #: includes/Elements/Info_Box.php:402 includes/Elements/Pricing_Table.php:426
2959
- #: includes/Elements/Flip_Box.php:425 includes/Elements/Creative_Button.php:105
2960
- msgid "Icon Position"
2961
  msgstr ""
2962
 
2963
- #: includes/Elements/Pricing_Table.php:1340
2964
- msgid "Icon Settings"
2965
  msgstr ""
2966
 
2967
- #: includes/Elements/Feature_List.php:188
2968
- msgid "Icon Shape"
2969
  msgstr ""
2970
 
2971
- #: includes/Elements/Adv_Tabs.php:345 includes/Elements/Data_Table.php:577
2972
- #: includes/Elements/Feature_List.php:461 includes/Elements/Tooltip.php:179
2973
- #: includes/Elements/Dual_Color_Header.php:282
2974
- #: includes/Elements/Adv_Accordion.php:301
2975
- #: includes/Elements/Adv_Accordion.php:687 includes/Elements/Info_Box.php:889
2976
- #: includes/Elements/Info_Box.php:1129 includes/Elements/Team_Member.php:599
2977
- #: includes/Elements/Pricing_Table.php:1010
2978
- #: includes/Elements/Pricing_Table.php:1401
2979
- #: includes/Elements/Pricing_Table.php:1566 includes/Elements/Flip_Box.php:676
2980
- #: includes/Elements/Flip_Box.php:789 includes/Elements/Creative_Button.php:433
2981
- msgid "Icon Size"
2982
  msgstr ""
2983
 
2984
- #: includes/Elements/Data_Table.php:621
2985
- msgid "Icon Space"
2986
  msgstr ""
2987
 
2988
- #: includes/Elements/Info_Box.php:419 includes/Elements/Pricing_Table.php:442
2989
- #: includes/Elements/Creative_Button.php:123
2990
- msgid "Icon Spacing"
2991
  msgstr ""
2992
 
2993
- #: includes/Elements/Cta_Box.php:618
2994
- #: includes/Elements/Dual_Color_Header.php:271
2995
- #: includes/Elements/Info_Box.php:878 includes/Elements/Flip_Box.php:631
2996
- #: includes/Elements/Flip_Box.php:650 includes/Elements/Flip_Box.php:763
2997
- msgid "Icon Style"
2998
  msgstr ""
2999
 
3000
- #: includes/Elements/Adv_Tabs.php:122 includes/Elements/Feature_List.php:53
3001
- #: includes/Elements/Flip_Box.php:78 includes/Elements/Flip_Box.php:165
3002
- msgid "Icon Type"
3003
  msgstr ""
3004
 
3005
- #: includes/Elements/Testimonial.php:216
3006
- msgid "Icon/Image | Content"
3007
  msgstr ""
3008
 
3009
- #: includes/Elements/Data_Table.php:930
3010
- msgid "If enabled, table header will be automatically responsive for mobile."
3011
  msgstr ""
3012
 
3013
- #: includes/Traits/Helper.php:433 includes/Elements/Adv_Tabs.php:135
3014
- #: includes/Elements/Adv_Tabs.php:156 includes/Elements/Data_Table.php:112
3015
- #: includes/Elements/Data_Table.php:134 includes/Elements/Feature_List.php:61
3016
- #: includes/Elements/Feature_List.php:85 includes/Elements/Tooltip.php:60
3017
- #: includes/Elements/Tooltip.php:137 includes/Elements/Info_Box.php:84
3018
- #: includes/Elements/Flip_Box.php:82 includes/Elements/Flip_Box.php:169
3019
- msgid "Image"
3020
  msgstr ""
3021
 
3022
- #: includes/templates/admin/elements.php:224
3023
- msgid "Image Accordion"
3024
  msgstr ""
3025
 
3026
- #: includes/Elements/Image_Accordion.php:45
3027
- msgid "Image Accordion Settings"
3028
  msgstr ""
3029
 
3030
- #: includes/Elements/Image_Accordion.php:125
3031
- msgid "Image Accordion Style"
3032
  msgstr ""
3033
 
3034
- #: includes/Classes/WPML/Widgets/Image_Accordion.php:53
3035
- msgid "Image Accordion: Content"
3036
  msgstr ""
3037
 
3038
- #: includes/Classes/WPML/Widgets/Image_Accordion.php:50
3039
- msgid "Image Accordion: Title"
3040
  msgstr ""
3041
 
3042
- #: includes/templates/admin/elements.php:264
3043
- msgid "Image Comparison"
3044
  msgstr ""
3045
 
3046
- #: includes/templates/admin/elements.php:299
3047
- msgid "Image Hotspots"
3048
  msgstr ""
3049
 
3050
- #: includes/Elements/Testimonial.php:309
3051
- msgid "Image Max Width"
3052
  msgstr ""
3053
 
3054
- #: includes/Elements/Info_Box.php:67
3055
- msgid "Image or Icon"
3056
  msgstr ""
3057
 
3058
- #: includes/Elements/Sticky_Video.php:300
3059
- #: includes/Elements/Sticky_Video.php:308
3060
- msgid "Image Overlay"
3061
  msgstr ""
3062
 
3063
- #: includes/Elements/Info_Box.php:605 includes/Elements/Flip_Box.php:122
3064
- #: includes/Elements/Flip_Box.php:209
3065
- msgid "Image Resizer"
3066
  msgstr ""
3067
 
3068
- #: includes/templates/admin/elements.php:313
3069
- msgid "Image Scroller"
3070
  msgstr ""
3071
 
3072
- #: includes/Elements/Info_Box.php:527 includes/Elements/Info_Box.php:582
3073
- msgid "Image Shape"
3074
  msgstr ""
3075
 
3076
- #: includes/Elements/Data_Table.php:145
3077
- msgid "Image Size(px)"
3078
  msgstr ""
3079
 
3080
- #: includes/Elements/Info_Box.php:474 includes/Elements/Flip_Box.php:570
3081
- msgid "Image Style"
3082
  msgstr ""
3083
 
3084
- #: includes/Elements/Flip_Box.php:581
3085
- msgid "Image Type"
3086
  msgstr ""
3087
 
3088
- #: includes/Elements/Testimonial.php:283 includes/Elements/Team_Member.php:399
3089
- msgid "Image Width"
3090
  msgstr ""
3091
 
3092
- #: includes/Elements/Info_Box.php:58
3093
- msgid "Image/Icon On Left"
3094
  msgstr ""
3095
 
3096
- #: includes/Elements/Info_Box.php:59
3097
- msgid "Image/Icon On Right"
3098
  msgstr ""
3099
 
3100
- #: includes/Elements/Info_Box.php:57
3101
- msgid "Image/Icon On Top"
3102
  msgstr ""
3103
 
3104
- #: includes/Elements/Advanced_Data_Table.php:167
3105
- #: includes/Elements/Advanced_Data_Table.php:183
3106
- #: includes/Elements/Advanced_Data_Table.php:186
3107
- msgid "Import"
3108
  msgstr ""
3109
 
3110
- #: includes/templates/admin/general.php:52
3111
- msgid "In case of emergency, initiate a live chat at"
3112
  msgstr ""
3113
 
3114
- #: includes/Elements/Countdown.php:543
3115
- msgid "Individual Box Styling"
3116
  msgstr ""
3117
 
3118
- #: includes/Elements/Content_Ticker.php:243
3119
- msgid "Infinite Loop"
3120
  msgstr ""
3121
 
3122
- #: includes/templates/admin/elements.php:33
3123
- msgid "Info Box"
3124
  msgstr ""
3125
 
3126
- #: includes/Elements/Info_Box.php:1481
3127
- msgid "Info Box Advanced"
3128
  msgstr ""
3129
 
3130
- #: includes/Elements/Info_Box.php:324
3131
- msgid "Infobox Clickable"
3132
  msgstr ""
3133
 
3134
- #: includes/Elements/Info_Box.php:185 includes/Elements/Info_Box.php:227
3135
- #: includes/Classes/WPML/Eael_WPML.php:173
3136
- msgid "Infobox Content"
3137
  msgstr ""
3138
 
3139
- #: includes/Elements/Info_Box.php:45 includes/Elements/Info_Box.php:132
3140
- msgid "Infobox Image"
3141
  msgstr ""
3142
 
3143
- #: includes/Elements/Info_Box.php:339
3144
- msgid "Infobox Link"
3145
  msgstr ""
3146
 
3147
- #: includes/Elements/Info_Box.php:191
3148
- msgid "Infobox Title"
3149
  msgstr ""
3150
 
3151
- #: includes/Elements/Info_Box.php:52
3152
- msgid "Infobox Type"
3153
  msgstr ""
3154
 
3155
- #: includes/Classes/WPML/Eael_WPML.php:168
3156
- msgid "Infobox: Title"
3157
  msgstr ""
3158
 
3159
- #: includes/Elements/Adv_Tabs.php:84 includes/Elements/Countdown.php:66
3160
- msgid "Inline"
3161
  msgstr ""
3162
 
3163
- #: includes/Elements/NinjaForms.php:561 includes/Elements/FluentForm.php:533
3164
- #: includes/Elements/GravityForms.php:588 includes/Elements/WpForms.php:516
3165
- #: includes/Elements/Caldera_Forms.php:526
3166
- #: includes/Elements/Contact_Form_7.php:506
3167
- msgid "Input & Textarea"
3168
  msgstr ""
3169
 
3170
- #: includes/Elements/Caldera_Forms.php:1445
3171
- msgid "Input Border"
3172
  msgstr ""
3173
 
3174
- #: includes/Elements/WeForms.php:270
3175
- msgid "Input Field Background"
3176
  msgstr ""
3177
 
3178
- #: includes/Elements/WeForms.php:510
3179
- msgid "Input Fields Typography"
3180
  msgstr ""
3181
 
3182
- #: includes/Elements/NinjaForms.php:697 includes/Elements/FluentForm.php:668
3183
- #: includes/Elements/GravityForms.php:748 includes/Elements/WpForms.php:651
3184
- #: includes/Elements/Caldera_Forms.php:661
3185
- msgid "Input Height"
3186
  msgstr ""
3187
 
3188
- #: includes/Elements/NinjaForms.php:677 includes/Elements/FluentForm.php:649
3189
- #: includes/Elements/GravityForms.php:729 includes/Elements/WeForms.php:287
3190
- #: includes/Elements/WpForms.php:632 includes/Elements/Caldera_Forms.php:642
3191
- #: includes/Elements/Contact_Form_7.php:607
3192
- msgid "Input Width"
3193
  msgstr ""
3194
 
3195
- #: includes/Elements/Dual_Color_Header.php:121
3196
- msgid "Insert a meaningful line to evaluate the headline."
3197
  msgstr ""
3198
 
3199
- #: includes/Traits/Helper.php:358
3200
- msgid "Inside"
3201
  msgstr ""
3202
 
3203
- #: includes/templates/admin/elements.php:416
3204
- msgid "Instagram Feed"
3205
  msgstr ""
3206
 
3207
- #: includes/Traits/Core.php:95
3208
- msgid "Install Elementor"
3209
  msgstr ""
3210
 
3211
- #: includes/Traits/Admin.php:223
3212
- msgid "Install Free"
3213
  msgstr ""
3214
 
3215
- #: includes/templates/admin/elements.php:285
3216
- msgid "Interactive Cards"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3217
  msgstr ""
3218
 
3219
- #: includes/templates/admin/elements.php:236
3220
- msgid "Interactive Promo"
3221
  msgstr ""
3222
 
3223
- #: includes/Elements/Sticky_Video.php:556
3224
- msgid "Interface"
3225
  msgstr ""
3226
 
3227
- #: includes/Elements/Sticky_Video.php:564
3228
- msgid "Interface Color"
3229
  msgstr ""
3230
 
3231
- #: includes/Elements/Betterdocs_Search_Form.php:358
3232
- #: includes/Elements/Betterdocs_Search_Form.php:464
3233
- msgid "Item"
3234
  msgstr ""
3235
 
3236
- #: includes/Elements/Pricing_Table.php:278
3237
- msgid "Item Active?"
3238
  msgstr ""
3239
 
3240
- #: includes/Elements/Betterdocs_Search_Form.php:374
3241
- #: includes/Elements/Betterdocs_Search_Form.php:423
3242
- #: includes/Elements/Betterdocs_Search_Form.php:484
3243
- #: includes/Elements/Betterdocs_Search_Form.php:513
3244
- msgid "Item Color"
3245
  msgstr ""
3246
 
3247
- #: includes/Elements/Content_Ticker.php:156
3248
- msgid "Items Gap"
3249
  msgstr ""
3250
 
3251
- #: includes/Elements/Team_Member.php:92
3252
- msgid "Job Position"
3253
  msgstr ""
3254
 
3255
- #: includes/Elements/Team_Member.php:538
3256
- msgid "Job Position Color"
3257
  msgstr ""
3258
 
3259
- #: includes/Elements/Testimonial.php:97 includes/Elements/Team_Member.php:85
3260
- msgid "John Doe"
3261
  msgstr ""
3262
 
3263
- #: includes/Elements/Post_Grid.php:234 includes/Elements/Post_Grid.php:310
3264
- #: includes/Elements/Tooltip.php:167 includes/Elements/Tooltip.php:361
3265
- #: includes/Elements/Post_Timeline.php:263
3266
- msgid "Justified"
3267
  msgstr ""
3268
 
3269
- #: includes/Elements/FluentForm.php:1063
3270
- #: includes/Elements/Facebook_Feed.php:272
3271
- msgid "Label"
3272
  msgstr ""
3273
 
3274
- #: includes/Elements/FluentForm.php:1382 includes/Elements/Countdown.php:517
3275
- #: includes/Elements/Countdown.php:583 includes/Elements/Countdown.php:639
3276
- #: includes/Elements/Countdown.php:695 includes/Elements/Countdown.php:751
3277
- #: includes/Elements/WeForms.php:451 includes/Elements/Caldera_Forms.php:1432
3278
- msgid "Label Color"
3279
  msgstr ""
3280
 
3281
- #: includes/Elements/Countdown.php:61
3282
- msgid "Label Position"
3283
  msgstr ""
3284
 
3285
- #: includes/Traits/Helper.php:384 includes/Traits/Helper.php:573
3286
- msgid "Label Text"
3287
  msgstr ""
3288
 
3289
- #: includes/Elements/WeForms.php:493
3290
- msgid "Label Typography"
3291
  msgstr ""
3292
 
3293
- #: includes/Elements/NinjaForms.php:136 includes/Elements/NinjaForms.php:518
3294
- #: includes/Elements/FluentForm.php:128 includes/Elements/FluentForm.php:499
3295
- #: includes/Elements/GravityForms.php:190
3296
- #: includes/Elements/GravityForms.php:545 includes/Elements/WpForms.php:143
3297
- #: includes/Elements/WpForms.php:481 includes/Elements/Caldera_Forms.php:126
3298
- #: includes/Elements/Caldera_Forms.php:492
3299
- #: includes/Elements/Contact_Form_7.php:174
3300
- #: includes/Elements/Contact_Form_7.php:740
3301
- msgid "Labels"
3302
  msgstr ""
3303
 
3304
- #: includes/Elements/Advanced_Data_Table.php:574
3305
- msgid "Last Column"
3306
  msgstr ""
3307
 
3308
- #: includes/Traits/Helper.php:339 includes/Elements/Adv_Tabs.php:56
3309
- #: includes/Elements/Progress_Bar.php:53 includes/Elements/Progress_Bar.php:79
3310
- #: includes/Elements/Facebook_Feed.php:128
3311
- msgid "Layout"
3312
  msgstr ""
3313
 
3314
- #: includes/Elements/Testimonial.php:227
3315
- msgid "Layout Alignment"
3316
  msgstr ""
3317
 
3318
- #: includes/Traits/Helper.php:290 includes/Elements/Facebook_Feed.php:120
3319
- #: includes/Elements/Twitter_Feed.php:99
3320
- msgid "Layout Settings"
3321
  msgstr ""
3322
 
3323
- #: includes/templates/admin/elements.php:434
3324
- msgid "LearnDash Course List"
3325
  msgstr ""
3326
 
3327
- #: includes/templates/admin/elements.php:430
3328
- msgid "LearnDash Elements"
3329
  msgstr ""
3330
 
3331
- #: includes/templates/admin/general.php:74
3332
- msgid "Leave a Review"
3333
  msgstr ""
3334
 
3335
- #: includes/Elements/Post_Timeline.php:66
3336
- msgid "Leave blank or Clear to use default gradient overlay"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3337
  msgstr ""
3338
 
3339
- #: includes/Elements/Countdown.php:135 includes/Elements/Countdown.php:159
3340
- #: includes/Elements/Countdown.php:182 includes/Elements/Countdown.php:205
3341
- msgid "Leave blank to hide"
3342
  msgstr ""
3343
 
3344
- #: includes/Traits/Helper.php:345 includes/Traits/Helper.php:988
3345
- #: includes/Elements/NinjaForms.php:248 includes/Elements/NinjaForms.php:391
3346
- #: includes/Elements/NinjaForms.php:573 includes/Elements/NinjaForms.php:1153
3347
- #: includes/Elements/FluentForm.php:204 includes/Elements/FluentForm.php:399
3348
- #: includes/Elements/FluentForm.php:545 includes/Elements/FluentForm.php:1176
3349
- #: includes/Elements/FluentForm.php:1421 includes/Elements/Post_Grid.php:166
3350
- #: includes/Elements/Post_Grid.php:222 includes/Elements/Post_Grid.php:298
3351
- #: includes/Elements/Data_Table.php:421 includes/Elements/Data_Table.php:644
3352
- #: includes/Elements/Data_Table.php:893 includes/Elements/Cta_Box.php:74
3353
- #: includes/Elements/Countdown.php:795 includes/Elements/Feature_List.php:221
3354
- #: includes/Elements/Tooltip.php:155 includes/Elements/Tooltip.php:260
3355
- #: includes/Elements/Tooltip.php:349 includes/Elements/Testimonial.php:236
3356
- #: includes/Elements/GravityForms.php:318
3357
- #: includes/Elements/GravityForms.php:455
3358
- #: includes/Elements/GravityForms.php:600
3359
- #: includes/Elements/GravityForms.php:1342
3360
- #: includes/Elements/Dual_Color_Header.php:133
3361
- #: includes/Elements/Progress_Bar.php:261
3362
- #: includes/Elements/Progress_Bar.php:472 includes/Elements/WeForms.php:143
3363
- #: includes/Elements/WeForms.php:573
3364
- #: includes/Elements/Advanced_Data_Table.php:271
3365
- #: includes/Elements/Advanced_Data_Table.php:442
3366
- #: includes/Elements/Advanced_Data_Table.php:945
3367
- #: includes/Elements/Info_Box.php:258 includes/Elements/Content_Ticker.php:294
3368
- #: includes/Elements/Team_Member.php:336 includes/Elements/Fancy_Text.php:168
3369
- #: includes/Elements/WpForms.php:237 includes/Elements/WpForms.php:354
3370
- #: includes/Elements/WpForms.php:528 includes/Elements/WpForms.php:1093
3371
- #: includes/Elements/Pricing_Table.php:206
3372
- #: includes/Elements/Pricing_Table.php:311
3373
- #: includes/Elements/Pricing_Table.php:667
3374
- #: includes/Elements/Pricing_Table.php:692
3375
- #: includes/Elements/Caldera_Forms.php:210
3376
- #: includes/Elements/Caldera_Forms.php:392
3377
- #: includes/Elements/Caldera_Forms.php:538
3378
- #: includes/Elements/Caldera_Forms.php:1113
3379
- #: includes/Elements/Contact_Form_7.php:304
3380
- #: includes/Elements/Contact_Form_7.php:416
3381
- #: includes/Elements/Contact_Form_7.php:1068
3382
- #: includes/Elements/Post_Timeline.php:195
3383
- #: includes/Elements/Post_Timeline.php:251 includes/Elements/Flip_Box.php:327
3384
- #: includes/Elements/Creative_Button.php:378
3385
- msgid "Left"
3386
  msgstr ""
3387
 
3388
- #: includes/Elements/Countdown.php:74
3389
- msgid "Left spacing for Labels"
3390
  msgstr ""
3391
 
3392
- #: includes/Elements/Progress_Bar.php:438
3393
- msgid "Left To Right"
3394
  msgstr ""
3395
 
3396
- #: includes/Elements/Cta_Box.php:462
3397
- msgid "Left to Right"
3398
  msgstr ""
3399
 
3400
- #: includes/Elements/Pricing_Table.php:387
3401
- msgid "Light"
3402
  msgstr ""
3403
 
3404
- #: includes/templates/admin/elements.php:250
3405
- msgid "Lightbox & Modal"
3406
  msgstr ""
3407
 
3408
- #: includes/Elements/Facebook_Feed.php:735
3409
- msgid "Likes & Comments"
3410
  msgstr ""
3411
 
3412
- #: includes/Elements/Progress_Bar.php:62
3413
- msgid "Line"
3414
  msgstr ""
3415
 
3416
- #: includes/Elements/Pricing_Table.php:764
3417
- #: includes/Elements/Pricing_Table.php:1054
3418
- msgid "Line Color"
3419
  msgstr ""
3420
 
3421
- #: includes/Elements/Pricing_Table.php:1073
3422
- msgid "Line Height"
3423
  msgstr ""
3424
 
3425
- #: includes/Elements/Progress_Bar.php:63
3426
- msgid "Line Rainbow (Pro)"
3427
  msgstr ""
3428
 
3429
- #: includes/Elements/Data_Table.php:287 includes/Elements/Feature_List.php:119
3430
- #: includes/Elements/Sticky_Video.php:111
3431
- #: includes/Elements/Sticky_Video.php:125
3432
- #: includes/Elements/Sticky_Video.php:139
3433
- #: includes/Elements/Sticky_Video.php:183 includes/Elements/Team_Member.php:174
3434
- #: includes/Elements/Flip_Box.php:354 includes/Elements/Flip_Box.php:376
3435
- msgid "Link"
3436
  msgstr ""
3437
 
3438
- #: includes/Elements/Data_Table.php:840 includes/Elements/Facebook_Feed.php:606
3439
- msgid "Link Color"
3440
  msgstr ""
3441
 
3442
- #: includes/Elements/Twitter_Feed.php:432
3443
- msgid "Link Style"
3444
  msgstr ""
3445
 
3446
- #: includes/Elements/Flip_Box.php:361
3447
- msgid "Link Type"
3448
  msgstr ""
3449
 
3450
- #: includes/Elements/Info_Box.php:372 includes/Elements/Creative_Button.php:79
3451
- msgid "Link URL"
3452
  msgstr ""
3453
 
3454
- #: includes/Elements/Feature_List.php:266
3455
- #: includes/Elements/Betterdocs_Category_Grid.php:276
3456
- #: includes/Elements/Twitter_Feed.php:110
3457
- msgid "List"
3458
  msgstr ""
3459
 
3460
- #: includes/Elements/Betterdocs_Category_Grid.php:327
3461
- msgid "List Area Padding"
3462
  msgstr ""
3463
 
3464
- #: includes/Elements/Pricing_Table.php:89
3465
- #: includes/Elements/Pricing_Table.php:268
3466
- msgid "List Icon"
3467
  msgstr ""
3468
 
3469
- #: includes/Elements/Pricing_Table.php:261
3470
- msgid "List Item"
3471
  msgstr ""
3472
 
3473
- #: includes/Elements/Betterdocs_Category_Grid.php:315
3474
- msgid "List Margin"
3475
  msgstr ""
3476
 
3477
- #: includes/Traits/Helper.php:387 includes/Elements/Facebook_Feed.php:274
3478
- msgid "Load More"
3479
  msgstr ""
3480
 
3481
- #: includes/Traits/Helper.php:827
3482
- msgid "Load More Button Style"
3483
  msgstr ""
3484
 
3485
- #: includes/templates/admin/elements.php:278
3486
- msgid "Logo Carousel"
3487
  msgstr ""
3488
 
3489
- #: includes/Elements/Sticky_Video.php:274
3490
- msgid "Loop"
3491
  msgstr ""
3492
 
3493
- #: includes/Elements/Fancy_Text.php:232
3494
- msgid "Loop the Typing"
3495
  msgstr ""
3496
 
3497
- #: includes/Elements/Feature_List.php:140
3498
- #: includes/Elements/Feature_List.php:148
3499
- #: includes/Elements/Feature_List.php:156
3500
- msgid ""
3501
- "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod "
3502
- "tempor incididunt ut abore et dolore magna"
3503
  msgstr ""
3504
 
3505
- #: includes/Elements/Adv_Tabs.php:195 includes/Elements/Feature_List.php:111
3506
- #: includes/Elements/Adv_Accordion.php:178
3507
- msgid ""
3508
- "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui "
3509
- "velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum "
3510
- "accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
3511
  msgstr ""
3512
 
3513
- #: includes/Elements/Countdown.php:302
3514
- msgid ""
3515
- "Lorem Ipsum is simply dummy text of the printing and typesetting industry. "
3516
- "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s"
3517
  msgstr ""
3518
 
3519
- #: includes/templates/admin/elements.php:391
3520
- msgid "Mailchimp"
3521
  msgstr ""
3522
 
3523
- #: includes/Elements/Dual_Color_Header.php:339
3524
- msgid "Main Color"
3525
  msgstr ""
3526
 
3527
- #: includes/Traits/Helper.php:47
3528
- msgid "Manual Selection"
3529
  msgstr ""
3530
 
3531
- #: includes/Traits/Helper.php:805 includes/Traits/Helper.php:850
3532
- #: includes/Elements/Adv_Tabs.php:262 includes/Elements/Adv_Tabs.php:402
3533
- #: includes/Elements/Adv_Tabs.php:680 includes/Elements/NinjaForms.php:443
3534
- #: includes/Elements/NinjaForms.php:493 includes/Elements/FluentForm.php:269
3535
- #: includes/Elements/FluentForm.php:331 includes/Elements/FluentForm.php:1105
3536
- #: includes/Elements/FluentForm.php:1160 includes/Elements/FluentForm.php:1752
3537
- #: includes/Elements/Cta_Box.php:322 includes/Elements/Cta_Box.php:482
3538
- #: includes/Elements/Countdown.php:853 includes/Elements/Tooltip.php:332
3539
- #: includes/Elements/Tooltip.php:581 includes/Elements/Image_Accordion.php:170
3540
- #: includes/Elements/Testimonial.php:331
3541
- #: includes/Elements/GravityForms.php:1044
3542
- #: includes/Elements/Dual_Color_Header.php:219
3543
- #: includes/Elements/Adv_Accordion.php:243
3544
- #: includes/Elements/Adv_Accordion.php:358
3545
- #: includes/Elements/Adv_Accordion.php:647 includes/Elements/WeForms.php:602
3546
- #: includes/Elements/Advanced_Data_Table.php:1109
3547
- #: includes/Elements/Info_Box.php:640 includes/Elements/Info_Box.php:703
3548
- #: includes/Elements/Info_Box.php:935 includes/Elements/Info_Box.php:1352
3549
- #: includes/Elements/Content_Ticker.php:456
3550
- #: includes/Elements/Team_Member.php:431 includes/Elements/Fancy_Text.php:389
3551
- #: includes/Elements/WpForms.php:406 includes/Elements/WpForms.php:456
3552
- #: includes/Elements/Pricing_Table.php:612
3553
- #: includes/Elements/Pricing_Table.php:929
3554
- #: includes/Elements/Pricing_Table.php:1554
3555
- #: includes/Elements/Caldera_Forms.php:274
3556
- #: includes/Elements/Caldera_Forms.php:336
3557
- #: includes/Elements/Contact_Form_7.php:1489
3558
- #: includes/Elements/Flip_Box.php:1051
3559
- msgid "Margin"
3560
  msgstr ""
3561
 
3562
- #: includes/Elements/Advanced_Data_Table.php:910
3563
- msgid "Margin Bottom"
3564
  msgstr ""
3565
 
3566
- #: includes/Elements/NinjaForms.php:1286 includes/Elements/FluentForm.php:1548
3567
- #: includes/Elements/GravityForms.php:1476 includes/Elements/WpForms.php:1223
3568
- #: includes/Elements/Caldera_Forms.php:1240
3569
- #: includes/Elements/Contact_Form_7.php:1196
3570
- msgid "Margin Top"
3571
  msgstr ""
3572
 
3573
- #: includes/templates/admin/elements.php:321
3574
- msgid "Marketing Elements"
3575
  msgstr ""
3576
 
3577
- #: includes/Elements/Twitter_Feed.php:111
3578
- msgid "Masonry"
3579
  msgstr ""
3580
 
3581
- #: includes/Elements/Facebook_Feed.php:179
3582
- msgid "Max Message Length"
3583
  msgstr ""
3584
 
3585
- #: includes/Elements/Facebook_Feed.php:94
3586
- msgid "Max Visible Items"
3587
  msgstr ""
3588
 
3589
- #: includes/Traits/Helper.php:259
3590
- #: includes/Elements/Betterdocs_Search_Form.php:296
3591
- msgid "Max Width"
3592
  msgstr ""
3593
 
3594
- #: includes/Traits/Admin.php:176
3595
- msgid "Maybe Later"
3596
  msgstr ""
3597
 
3598
- #: includes/Elements/Team_Member.php:558
3599
- msgid "Member Description"
3600
  msgstr ""
3601
 
3602
- #: includes/Elements/Team_Member.php:529
3603
- msgid "Member Job Position"
3604
  msgstr ""
3605
 
3606
- #: includes/Elements/Team_Member.php:501
3607
- msgid "Member Name"
3608
  msgstr ""
3609
 
3610
- #: includes/Elements/Team_Member.php:509
3611
- msgid "Member Name Color"
3612
  msgstr ""
3613
 
3614
- #: includes/Elements/Countdown.php:277 includes/Elements/Facebook_Feed.php:568
3615
- msgid "Message"
3616
  msgstr ""
3617
 
3618
- #: includes/Elements/Post_Grid.php:294
3619
- msgid "Meta Alignment"
3620
  msgstr ""
3621
 
3622
- #: includes/Elements/Post_Grid.php:282
3623
- msgid "Meta Color"
3624
  msgstr ""
3625
 
3626
- #: includes/Traits/Helper.php:631
3627
- msgid "Meta Position"
3628
  msgstr ""
3629
 
3630
- #: includes/Elements/Post_Grid.php:273
3631
- msgid "Meta Style"
3632
  msgstr ""
3633
 
3634
- #: includes/Elements/Post_Grid.php:325
3635
- msgid "Meta Typography"
3636
  msgstr ""
3637
 
3638
- #: includes/Elements/Info_Box.php:107
3639
- msgid "Middle"
3640
  msgstr ""
3641
 
3642
- #: includes/Elements/Countdown.php:181 includes/Elements/Countdown.php:663
3643
- msgid "Minutes"
3644
  msgstr ""
3645
 
3646
- #: includes/Elements/Feature_List.php:302
3647
- msgid "Modern"
3648
  msgstr ""
3649
 
3650
- #: includes/Elements/Creative_Button.php:199
3651
- msgid "Moema (Pro)"
3652
  msgstr ""
3653
 
3654
- #: includes/Elements/Pricing_Table.php:220
3655
- msgid "month"
3656
  msgstr ""
3657
 
3658
- #: includes/Elements/Sticky_Video.php:263
3659
- msgid "Mute"
3660
  msgstr ""
3661
 
3662
- #: includes/Elements/Team_Member.php:83
3663
- msgid "Name"
3664
  msgstr ""
3665
 
3666
- #: includes/Elements/Content_Ticker.php:269
3667
- msgid "Navigation"
3668
  msgstr ""
3669
 
3670
- #: includes/templates/admin/general.php:47
3671
- msgid "Need Help?"
3672
  msgstr ""
3673
 
3674
- #: includes/Traits/Admin.php:189
3675
- msgid "Never show again"
3676
  msgstr ""
3677
 
3678
- #: includes/Elements/Facebook_Feed.php:84
3679
- msgid "Newest"
3680
  msgstr ""
3681
 
3682
- #: includes/templates/admin/elements.php:361
3683
- msgid "Ninja Form"
3684
  msgstr ""
3685
 
3686
- #: includes/Elements/NinjaForms.php:66
3687
- msgid "Ninja Forms"
3688
  msgstr ""
3689
 
3690
- #: includes/Classes/WPML/Eael_WPML.php:415
3691
- msgid "NinjaForm: Description"
3692
  msgstr ""
3693
 
3694
- #: includes/Classes/WPML/Eael_WPML.php:410
3695
- msgid "NinjaForm: Title"
3696
  msgstr ""
3697
 
3698
- #: includes/Extensions/Reading_Progress.php:36
3699
- #: includes/Extensions/Reading_Progress.php:72
3700
- #: includes/Elements/NinjaForms.php:87 includes/Elements/NinjaForms.php:954
3701
- #: includes/Elements/FluentForm.php:95 includes/Elements/FluentForm.php:868
3702
- #: includes/Elements/Data_Table.php:933 includes/Elements/Feature_List.php:250
3703
- #: includes/Elements/GravityForms.php:127
3704
- #: includes/Elements/GravityForms.php:218
3705
- #: includes/Elements/GravityForms.php:1143
3706
- #: includes/Elements/Facebook_Feed.php:261 includes/Elements/Info_Box.php:314
3707
- #: includes/Elements/Info_Box.php:328 includes/Elements/Content_Ticker.php:199
3708
- #: includes/Elements/Content_Ticker.php:232
3709
- #: includes/Elements/Content_Ticker.php:247
3710
- #: includes/Elements/Content_Ticker.php:282 includes/Elements/WpForms.php:80
3711
- #: includes/Elements/WpForms.php:894 includes/Elements/Pricing_Table.php:172
3712
- #: includes/Elements/Caldera_Forms.php:93
3713
- #: includes/Elements/Caldera_Forms.php:914
3714
- #: includes/Elements/Contact_Form_7.php:817
3715
- #: includes/Elements/Contact_Form_7.php:869
3716
- msgid "No"
3717
  msgstr ""
3718
 
3719
- #: includes/Elements/Data_Table.php:94 includes/Elements/Cta_Box.php:260
3720
- #: includes/Elements/Twitter_Feed.php:176
3721
- #: includes/Elements/Twitter_Feed.php:197
3722
- #: includes/Elements/Twitter_Feed.php:226
3723
- #: includes/Elements/Twitter_Feed.php:238
3724
- #: includes/Elements/Twitter_Feed.php:250
3725
- msgid "no"
3726
  msgstr ""
3727
 
3728
- #: includes/Template/Content/Content_Ticker.php:25
3729
- msgid "No content found!"
3730
  msgstr ""
3731
 
3732
- #: includes/Elements/Pricing_Table.php:386
3733
- msgid "Noir"
3734
  msgstr ""
3735
 
3736
- #: includes/Elements/Adv_Tabs.php:127 includes/Elements/Post_Grid.php:348
3737
- #: includes/Elements/Data_Table.php:104 includes/Elements/Countdown.php:276
3738
- #: includes/Elements/GravityForms.php:988
3739
- #: includes/Elements/Sticky_Video.php:501
3740
- #: includes/Elements/Advanced_Data_Table.php:572
3741
- #: includes/Elements/Info_Box.php:72 includes/Elements/Info_Box.php:757
3742
- #: includes/Elements/Info_Box.php:838 includes/Elements/Info_Box.php:974
3743
- #: includes/Elements/Info_Box.php:1070 includes/Elements/Flip_Box.php:81
3744
- #: includes/Elements/Flip_Box.php:168 includes/Elements/Flip_Box.php:365
3745
- msgid "None"
3746
  msgstr ""
3747
 
3748
- #: includes/Traits/Helper.php:682 includes/Traits/Helper.php:869
3749
- #: includes/Elements/Adv_Tabs.php:413 includes/Elements/NinjaForms.php:597
3750
- #: includes/Elements/NinjaForms.php:990 includes/Elements/NinjaForms.php:1220
3751
- #: includes/Elements/FluentForm.php:569 includes/Elements/FluentForm.php:904
3752
- #: includes/Elements/FluentForm.php:1482 includes/Elements/Data_Table.php:485
3753
- #: includes/Elements/Data_Table.php:678 includes/Elements/Data_Table.php:850
3754
- #: includes/Elements/Betterdocs_Search_Form.php:352
3755
- #: includes/Elements/Cta_Box.php:501 includes/Elements/Tooltip.php:372
3756
- #: includes/Elements/Betterdocs_Category_Grid.php:394
3757
- #: includes/Elements/GravityForms.php:624
3758
- #: includes/Elements/GravityForms.php:1179
3759
- #: includes/Elements/GravityForms.php:1410
3760
- #: includes/Elements/Adv_Accordion.php:369 includes/Elements/WeForms.php:625
3761
- #: includes/Elements/Advanced_Data_Table.php:1145
3762
- #: includes/Elements/Info_Box.php:487 includes/Elements/Info_Box.php:717
3763
- #: includes/Elements/Info_Box.php:949 includes/Elements/Info_Box.php:1205
3764
- #: includes/Elements/Info_Box.php:1318 includes/Elements/Content_Ticker.php:582
3765
- #: includes/Elements/Team_Member.php:646 includes/Elements/Product_Grid.php:340
3766
- #: includes/Elements/WpForms.php:552 includes/Elements/WpForms.php:930
3767
- #: includes/Elements/WpForms.php:1157 includes/Elements/Pricing_Table.php:1595
3768
- #: includes/Elements/Caldera_Forms.php:562
3769
- #: includes/Elements/Caldera_Forms.php:950
3770
- #: includes/Elements/Caldera_Forms.php:1174
3771
- #: includes/Elements/Betterdocs_Category_Box.php:151
3772
- #: includes/Elements/Contact_Form_7.php:516
3773
- #: includes/Elements/Contact_Form_7.php:905
3774
- #: includes/Elements/Contact_Form_7.php:1131
3775
- #: includes/Elements/Flip_Box.php:1045
3776
- #: includes/Elements/Creative_Button.php:228
3777
- msgid "Normal"
3778
  msgstr ""
3779
 
3780
- #: includes/Elements/Advanced_Data_Table.php:125
3781
- msgid "Note: Pagination will be applied on Live Preview only."
3782
  msgstr ""
3783
 
3784
- #: includes/Elements/Creative_Button.php:204
3785
- msgid "Nuka (Pro)"
3786
  msgstr ""
3787
 
3788
- #: includes/Elements/Info_Box.php:76 includes/Elements/Info_Box.php:169
3789
- msgid "Number"
3790
  msgstr ""
3791
 
3792
- #: includes/Elements/Info_Box.php:660
3793
- msgid "Number Icon Style"
3794
  msgstr ""
3795
 
3796
- #: includes/Traits/Helper.php:298
3797
- msgid "Number of Columns"
3798
  msgstr ""
3799
 
3800
- #: includes/Elements/Data_Table.php:683
3801
- msgid "ODD Cell"
3802
  msgstr ""
3803
 
3804
- #: includes/Elements/Advanced_Data_Table.php:576
3805
- msgid "Odd Column"
3806
  msgstr ""
3807
 
3808
- #: includes/Elements/FluentForm.php:1316
3809
- msgid "Odd Item Background Color"
3810
  msgstr ""
3811
 
3812
- #: includes/Elements/Advanced_Data_Table.php:578
3813
- msgid "Odd Row"
3814
  msgstr ""
3815
 
3816
- #: includes/Elements/Sticky_Video.php:57
3817
- #: includes/Elements/Contact_Form_7.php:130
3818
- #: includes/Elements/Contact_Form_7.php:154
3819
- msgid "Off"
3820
  msgstr ""
3821
 
3822
- #: includes/templates/admin/elements.php:69
3823
- msgid "Offcanvas"
3824
  msgstr ""
3825
 
3826
- #: includes/Traits/Helper.php:165
3827
- msgid "Offset"
3828
  msgstr ""
3829
 
3830
- #: includes/Traits/Admin.php:163
3831
- msgid "Ok, you deserve it!"
3832
  msgstr ""
3833
 
3834
- #: includes/Elements/Facebook_Feed.php:85
3835
- msgid "Oldest"
3836
  msgstr ""
3837
 
3838
- #: includes/Elements/Sticky_Video.php:56
3839
- #: includes/Elements/Contact_Form_7.php:129
3840
- #: includes/Elements/Contact_Form_7.php:153
3841
- msgid "On"
3842
  msgstr ""
3843
 
3844
- #: includes/Elements/Image_Accordion.php:58
3845
- msgid "On Click"
3846
  msgstr ""
3847
 
3848
- #: includes/Elements/Countdown.php:300
3849
- msgid "On Expiry Content"
3850
  msgstr ""
3851
 
3852
- #: includes/Elements/Countdown.php:288
3853
- msgid "On Expiry Title"
3854
  msgstr ""
3855
 
3856
- #: includes/Elements/Image_Accordion.php:57
3857
- msgid "On Hover"
3858
  msgstr ""
3859
 
3860
- #: includes/Elements/Pricing_Table.php:168
3861
- msgid "On Sale?"
3862
  msgstr ""
3863
 
3864
- #: includes/templates/admin/elements.php:292
3865
- msgid "One Page Navigation"
3866
  msgstr ""
3867
 
3868
- #: includes/Elements/Progress_Bar.php:89
3869
- msgid "Only Available in Pro Version!"
3870
  msgstr ""
3871
 
3872
- #: includes/Elements/Team_Member.php:253 includes/Elements/Fancy_Text.php:153
3873
- #: includes/Elements/Pricing_Table.php:75
3874
- msgid "Only available in pro version!"
3875
  msgstr ""
3876
 
3877
- #: includes/Elements/Facebook_Feed.php:235
3878
- msgid "Open link in new window"
3879
  msgstr ""
3880
 
3881
- #: includes/templates/admin/general.php:52
3882
- msgid "or"
3883
  msgstr ""
3884
 
3885
- #: includes/Traits/Helper.php:185
3886
- msgid "Order"
3887
  msgstr ""
3888
 
3889
- #: includes/Traits/Helper.php:174
3890
- msgid "Order By"
3891
  msgstr ""
3892
 
3893
- #: includes/Elements/Pricing_Table.php:842
3894
- msgid "Original Price"
3895
  msgstr ""
3896
 
3897
- #: includes/Traits/Helper.php:359
3898
- msgid "Outside"
3899
  msgstr ""
3900
 
3901
- #: includes/Traits/Helper.php:322 includes/Elements/Facebook_Feed.php:132
3902
- msgid "Overlay"
3903
  msgstr ""
3904
 
3905
- #: includes/Elements/Image_Accordion.php:218
3906
- #: includes/Elements/Facebook_Feed.php:766
3907
- #: includes/Elements/Team_Member.php:300 includes/Elements/Post_Timeline.php:64
3908
- msgid "Overlay Color"
3909
  msgstr ""
3910
 
3911
- #: includes/Elements/Team_Member.php:228 includes/Elements/Product_Grid.php:116
3912
- msgid "Overlay Style"
3913
  msgstr ""
3914
 
3915
- #: includes/Elements/Tooltip.php:100
3916
- msgid "P"
3917
  msgstr ""
3918
 
3919
- #: includes/Elements/Progress_Bar.php:121
3920
- msgid "p"
3921
  msgstr ""
3922
 
3923
- #: includes/Traits/Helper.php:225 includes/Traits/Helper.php:793
3924
- #: includes/Traits/Helper.php:838 includes/Elements/Adv_Tabs.php:251
3925
- #: includes/Elements/Adv_Tabs.php:391 includes/Elements/Adv_Tabs.php:669
3926
- #: includes/Elements/NinjaForms.php:754 includes/Elements/NinjaForms.php:1274
3927
- #: includes/Elements/FluentForm.php:725 includes/Elements/FluentForm.php:1093
3928
- #: includes/Elements/FluentForm.php:1148 includes/Elements/FluentForm.php:1271
3929
- #: includes/Elements/FluentForm.php:1356 includes/Elements/FluentForm.php:1536
3930
- #: includes/Elements/FluentForm.php:1740 includes/Elements/Data_Table.php:473
3931
- #: includes/Elements/Data_Table.php:758
3932
- #: includes/Elements/Betterdocs_Search_Form.php:105
3933
- #: includes/Elements/Betterdocs_Search_Form.php:394
3934
- #: includes/Elements/Cta_Box.php:310 includes/Elements/Cta_Box.php:470
3935
- #: includes/Elements/Countdown.php:429 includes/Elements/Countdown.php:901
3936
- #: includes/Elements/Feature_List.php:483 includes/Elements/Tooltip.php:321
3937
- #: includes/Elements/Tooltip.php:570
3938
- #: includes/Elements/Betterdocs_Category_Grid.php:440
3939
- #: includes/Elements/Image_Accordion.php:158
3940
- #: includes/Elements/Testimonial.php:343 includes/Elements/GravityForms.php:693
3941
- #: includes/Elements/GravityForms.php:1464
3942
- #: includes/Elements/Dual_Color_Header.php:207
3943
- #: includes/Elements/Adv_Accordion.php:232
3944
- #: includes/Elements/Adv_Accordion.php:347
3945
- #: includes/Elements/Adv_Accordion.php:636 includes/Elements/WeForms.php:614
3946
- #: includes/Elements/Advanced_Data_Table.php:390
3947
- #: includes/Elements/Advanced_Data_Table.php:792
3948
- #: includes/Elements/Advanced_Data_Table.php:891
3949
- #: includes/Elements/Advanced_Data_Table.php:1082
3950
- #: includes/Elements/Facebook_Feed.php:384
3951
- #: includes/Elements/Facebook_Feed.php:410
3952
- #: includes/Elements/Facebook_Feed.php:467 includes/Elements/Info_Box.php:506
3953
- #: includes/Elements/Info_Box.php:1498 includes/Elements/Content_Ticker.php:393
3954
- #: includes/Elements/Content_Ticker.php:444
3955
- #: includes/Elements/Content_Ticker.php:685
3956
- #: includes/Elements/Team_Member.php:443 includes/Elements/Fancy_Text.php:377
3957
- #: includes/Elements/WpForms.php:708 includes/Elements/WpForms.php:1211
3958
- #: includes/Elements/Pricing_Table.php:600
3959
- #: includes/Elements/Pricing_Table.php:1242
3960
- #: includes/Elements/Pricing_Table.php:1542
3961
- #: includes/Elements/Caldera_Forms.php:718
3962
- #: includes/Elements/Caldera_Forms.php:1228
3963
- #: includes/Elements/Contact_Form_7.php:571
3964
- #: includes/Elements/Contact_Form_7.php:1184
3965
- #: includes/Elements/Twitter_Feed.php:313 includes/Elements/Flip_Box.php:715
3966
- #: includes/Elements/Flip_Box.php:828 includes/Elements/Flip_Box.php:1063
3967
- msgid "Padding"
3968
  msgstr ""
3969
 
3970
- #: includes/Elements/Facebook_Feed.php:50
3971
- msgid "Page ID"
3972
  msgstr ""
3973
 
3974
- #: includes/Elements/Facebook_Feed.php:492
3975
- msgid "Page Name"
3976
  msgstr ""
3977
 
3978
- #: includes/Elements/Advanced_Data_Table.php:101
3979
- #: includes/Elements/Advanced_Data_Table.php:1071
3980
- #: includes/Elements/Facebook_Feed.php:245
3981
- msgid "Pagination"
3982
  msgstr ""
3983
 
3984
- #: includes/templates/admin/extensions.php:9
3985
- msgid "Parallax"
3986
  msgstr ""
3987
 
3988
- #: includes/templates/admin/extensions.php:16
3989
- msgid "Particles"
3990
  msgstr ""
3991
 
3992
- #: includes/Elements/Content_Ticker.php:228
3993
- msgid "Pause On Hover"
3994
  msgstr ""
3995
 
3996
- #: includes/Elements/Pricing_Table.php:227
3997
- msgid "Period Separator"
3998
  msgstr ""
3999
 
4000
- #: includes/Elements/Creative_Button.php:198
4001
- msgid "Pipaluk (Pro)"
4002
  msgstr ""
4003
 
4004
- #: includes/Elements/Team_Member.php:181
4005
- msgid "Place URL here"
4006
  msgstr ""
4007
 
4008
- #: includes/Elements/Fancy_Text.php:67
4009
- msgid "Place your prefix text"
4010
  msgstr ""
4011
 
4012
- #: includes/Elements/Fancy_Text.php:112
4013
- msgid "Place your suffix text"
4014
  msgstr ""
4015
 
4016
- #: includes/Elements/NinjaForms.php:149 includes/Elements/NinjaForms.php:909
4017
- #: includes/Elements/FluentForm.php:140 includes/Elements/FluentForm.php:826
4018
- #: includes/Elements/GravityForms.php:202
4019
- #: includes/Elements/GravityForms.php:1101 includes/Elements/WpForms.php:156
4020
- #: includes/Elements/WpForms.php:852 includes/Elements/Caldera_Forms.php:139
4021
- #: includes/Elements/Caldera_Forms.php:872
4022
- #: includes/Elements/Contact_Form_7.php:805
4023
- msgid "Placeholder"
4024
  msgstr ""
4025
 
4026
- #: includes/Elements/WeForms.php:479
4027
- msgid "Placeholder Font Color"
4028
  msgstr ""
4029
 
4030
- #: includes/Elements/Sticky_Video.php:580
4031
- msgid "Play Button Size"
4032
  msgstr ""
4033
 
4034
- #: includes/Elements/Sticky_Video.php:346
4035
- msgid "Play Icon"
4036
  msgstr ""
4037
 
4038
- #: includes/Elements/Sticky_Video.php:466
4039
- msgid "Player"
4040
  msgstr ""
4041
 
4042
- #: includes/Elements/WeForms.php:74
4043
- msgid "Please save and refresh the page after selecting the form"
4044
  msgstr ""
4045
 
4046
- #: includes/Extensions/Reading_Progress.php:104
4047
- #: includes/Elements/Sticky_Video.php:69
4048
- msgid "Position"
4049
  msgstr ""
4050
 
4051
- #: includes/Elements/Post_Grid.php:64
4052
- msgid "Post Background Color"
4053
  msgstr ""
4054
 
4055
- #: includes/templates/admin/elements.php:159
4056
- msgid "Post Block"
4057
  msgstr ""
4058
 
4059
- #: includes/Traits/Helper.php:317
4060
- msgid "Post Block Style Preset"
4061
  msgstr ""
4062
 
4063
- #: includes/templates/admin/elements.php:166
4064
- msgid "Post Carousel"
4065
  msgstr ""
4066
 
4067
- #: includes/templates/admin/elements.php:122
4068
- msgid "Post Grid"
4069
  msgstr ""
4070
 
4071
- #: includes/Elements/Post_Grid.php:56
4072
- msgid "Post Grid Style"
4073
  msgstr ""
4074
 
4075
- #: includes/Classes/WPML/Eael_WPML.php:184
4076
- msgid "Post Grid: Load More Button"
4077
  msgstr ""
4078
 
4079
- #: includes/Classes/WPML/Eael_WPML.php:189
4080
- msgid "Post Grid: Read More Button"
4081
  msgstr ""
4082
 
4083
- #: includes/Elements/Post_Grid.php:359
4084
- msgid "Post Hover Icon"
4085
  msgstr ""
4086
 
4087
- #: includes/Elements/Twitter_Feed.php:163
4088
- msgid "Post Limit"
4089
  msgstr ""
4090
 
4091
- #: includes/templates/admin/elements.php:128
4092
- msgid "Post Timeline"
4093
  msgstr ""
4094
 
4095
- #: includes/Classes/WPML/Eael_WPML.php:200
4096
- msgid "Post Timeline: Load More Button"
4097
  msgstr ""
4098
 
4099
- #: includes/Elements/Progress_Bar.php:197
4100
- msgid "Postfix"
4101
  msgstr ""
4102
 
4103
- #: includes/Elements/Progress_Bar.php:195
4104
- msgid "Postfix Label"
4105
  msgstr ""
4106
 
4107
- #: includes/Traits/Helper.php:156
4108
- msgid "Posts Per Page"
4109
  msgstr ""
4110
 
4111
- #: includes/Elements/Progress_Bar.php:184
4112
- msgid "Prefix"
4113
  msgstr ""
4114
 
4115
- #: includes/Elements/Progress_Bar.php:182
4116
- msgid "Prefix Label"
4117
  msgstr ""
4118
 
4119
- #: includes/Elements/Fancy_Text.php:66
4120
- msgid "Prefix Text"
4121
  msgstr ""
4122
 
4123
- #: includes/Elements/Fancy_Text.php:298
4124
- msgid "Prefix Text Color"
4125
  msgstr ""
4126
 
4127
- #: includes/Elements/Fancy_Text.php:290
4128
- msgid "Prefix Text Styles"
4129
  msgstr ""
4130
 
4131
- #: includes/Elements/Progress_Bar.php:667
4132
- msgid "Prefix/Postfix"
4133
  msgstr ""
4134
 
4135
- #: includes/Elements/Progress_Bar.php:679
4136
- msgid "Prefix/Postfix Color"
4137
  msgstr ""
4138
 
4139
- #: includes/templates/admin/extensions.php:5
4140
- msgid "Premium Extensions"
4141
  msgstr ""
4142
 
4143
- #: includes/Elements/Facebook_Feed.php:697
4144
- msgid "Preview Description"
4145
  msgstr ""
4146
 
4147
- #: includes/Elements/Facebook_Feed.php:621
4148
- msgid "Preview Host"
4149
  msgstr ""
4150
 
4151
- #: includes/Elements/Facebook_Feed.php:425
4152
- msgid "Preview Padding"
4153
  msgstr ""
4154
 
4155
- #: includes/Elements/Facebook_Feed.php:659
4156
- msgid "Preview Title"
4157
  msgstr ""
4158
 
4159
- #: includes/Elements/GravityForms.php:1063
4160
- #: includes/Elements/Pricing_Table.php:152
4161
- #: includes/Elements/Pricing_Table.php:159
4162
- msgid "Price"
4163
  msgstr ""
4164
 
4165
- #: includes/Elements/GravityForms.php:1083
4166
- msgid "Price Color"
4167
  msgstr ""
4168
 
4169
- #: includes/Elements/Pricing_Table.php:191
4170
- msgid "Price Currency"
4171
  msgstr ""
4172
 
4173
- #: includes/Elements/GravityForms.php:1071
4174
- msgid "Price Label Color"
4175
  msgstr ""
4176
 
4177
- #: includes/templates/admin/elements.php:337
4178
- msgid "Price menu"
4179
  msgstr ""
4180
 
4181
- #: includes/Elements/Pricing_Table.php:217
4182
- msgid "Price Period (per)"
4183
  msgstr ""
4184
 
4185
- #: includes/Elements/Pricing_Table.php:834
4186
- msgid "Pricing"
4187
  msgstr ""
4188
 
4189
- #: includes/Elements/Pricing_Table.php:941
4190
- msgid "Pricing Period"
4191
  msgstr ""
4192
 
4193
- #: includes/Elements/Pricing_Table.php:64
4194
- msgid "Pricing Style"
4195
  msgstr ""
4196
 
4197
- #: includes/Elements/Pricing_Table.php:53
4198
- msgid "Pricing Style 2"
4199
  msgstr ""
4200
 
4201
- #: includes/Elements/Pricing_Table.php:54
4202
- msgid "Pricing Style 3 (Pro)"
4203
  msgstr ""
4204
 
4205
- #: includes/Elements/Pricing_Table.php:55
4206
- msgid "Pricing Style 4 (Pro)"
4207
  msgstr ""
4208
 
4209
- #: includes/templates/admin/elements.php:331
4210
- msgid "Pricing Table"
4211
  msgstr ""
4212
 
4213
- #: includes/Elements/Pricing_Table.php:264
4214
- msgid "Pricing table list item"
4215
  msgstr ""
4216
 
4217
- #: includes/Elements/Pricing_Table.php:580
4218
- msgid "Pricing Table Style"
4219
  msgstr ""
4220
 
4221
- #: includes/Classes/WPML/Eael_WPML.php:237
4222
- #: includes/Classes/WPML/Eael_WPML.php:242
4223
- msgid "Pricing Table: Button Text"
4224
  msgstr ""
4225
 
4226
- #: includes/Classes/WPML/Eael_WPML.php:227
4227
- msgid "Pricing Table: Currency Placement"
4228
  msgstr ""
4229
 
4230
- #: includes/Classes/WPML/Widgets/Pricing_Table.php:50
4231
- msgid "Pricing Table: Feature"
4232
  msgstr ""
4233
 
4234
- #: includes/Classes/WPML/Widgets/Pricing_Table.php:53
4235
- msgid "Pricing Table: Feature Tooltip"
4236
  msgstr ""
4237
 
4238
- #: includes/Classes/WPML/Eael_WPML.php:247
4239
- msgid "Pricing Table: Featured Tag Text"
4240
  msgstr ""
4241
 
4242
- #: includes/Classes/WPML/Eael_WPML.php:222
4243
- msgid "Pricing Table: Price"
4244
  msgstr ""
4245
 
4246
- #: includes/Classes/WPML/Eael_WPML.php:232
4247
- msgid "Pricing Table: Price Period (per)"
4248
  msgstr ""
4249
 
4250
- #: includes/Classes/WPML/Eael_WPML.php:217
4251
- msgid "Pricing Table: Sub Title"
4252
  msgstr ""
4253
 
4254
- #: includes/Classes/WPML/Eael_WPML.php:212
4255
- msgid "Pricing Table: Title"
4256
  msgstr ""
4257
 
4258
- #: includes/templates/admin/extensions.php:71
4259
- #: includes/templates/admin/elements.php:495
4260
- msgid "Pro"
4261
  msgstr ""
4262
 
4263
- #: includes/Elements/Product_Grid.php:98
4264
- msgid "Product Categories"
4265
  msgstr ""
4266
 
4267
- #: includes/templates/admin/elements.php:146
4268
- msgid "Product Grid"
4269
  msgstr ""
4270
 
4271
- #: includes/Elements/Product_Grid.php:233
4272
- msgid "Product Price"
4273
  msgstr ""
4274
 
4275
- #: includes/Elements/Product_Grid.php:241
4276
- msgid "Product Price Color"
4277
  msgstr ""
4278
 
4279
- #: includes/Elements/Product_Grid.php:46
4280
- msgid "Product Settings"
4281
  msgstr ""
4282
 
4283
- #: includes/Elements/Product_Grid.php:205
4284
- msgid "Product Title"
4285
  msgstr ""
4286
 
4287
- #: includes/Elements/Product_Grid.php:213
4288
- msgid "Product Title Color"
4289
  msgstr ""
4290
 
4291
- #: includes/Elements/Product_Grid.php:86
4292
- msgid "Products Count"
4293
  msgstr ""
4294
 
4295
- #: includes/Elements/Product_Grid.php:136
4296
- msgid "Products Styles"
4297
  msgstr ""
4298
 
4299
- #: includes/Elements/Progress_Bar.php:102
4300
- #: includes/templates/admin/elements.php:230
4301
- msgid "Progress Bar"
4302
  msgstr ""
4303
 
4304
- #: includes/Classes/WPML/Eael_WPML.php:258
4305
- msgid "Progressbar: Title"
4306
  msgstr ""
4307
 
4308
- #: includes/templates/admin/elements.php:257
4309
- msgid "Protected Content"
4310
  msgstr ""
4311
 
4312
- #: includes/Elements/Pricing_Table.php:388
4313
- msgid "Punk"
4314
  msgstr ""
4315
 
4316
- #: includes/Traits/Helper.php:74
4317
- msgid "Query"
4318
  msgstr ""
4319
 
4320
- #: includes/Elements/Creative_Button.php:206
4321
- msgid "Quidel (Pro)"
4322
  msgstr ""
4323
 
4324
- #: includes/Elements/Testimonial.php:497
4325
- msgid "Quotation Mark Color"
4326
  msgstr ""
4327
 
4328
- #: includes/Elements/Testimonial.php:539
4329
- msgid "Quotation Postion From Right"
4330
  msgstr ""
4331
 
4332
- #: includes/Elements/Testimonial.php:517
4333
- msgid "Quotation Postion From Top"
4334
  msgstr ""
4335
 
4336
- #: includes/Elements/Testimonial.php:489
4337
- msgid "Quotation Style"
4338
  msgstr ""
4339
 
4340
- #: includes/Elements/NinjaForms.php:943 includes/Elements/FluentForm.php:857
4341
- #: includes/Elements/GravityForms.php:1132 includes/Elements/WpForms.php:883
4342
- #: includes/Elements/Caldera_Forms.php:903
4343
- #: includes/Elements/Contact_Form_7.php:858
4344
- msgid "Radio & Checkbox"
4345
  msgstr ""
4346
 
4347
- #: includes/Elements/NinjaForms.php:1078 includes/Elements/FluentForm.php:992
4348
- #: includes/Elements/GravityForms.php:1267 includes/Elements/WpForms.php:1018
4349
- #: includes/Elements/Caldera_Forms.php:1038
4350
- #: includes/Elements/Contact_Form_7.php:993
4351
- msgid "Radio Buttons"
4352
  msgstr ""
4353
 
4354
- #: includes/Elements/Info_Box.php:534 includes/Elements/Info_Box.php:589
4355
- #: includes/Elements/Info_Box.php:759 includes/Elements/Info_Box.php:840
4356
- #: includes/Elements/Info_Box.php:976 includes/Elements/Info_Box.php:1072
4357
- #: includes/Elements/Flip_Box.php:587
4358
- msgid "Radius"
4359
  msgstr ""
4360
 
4361
- #: includes/Elements/Product_Grid.php:269
4362
- msgid "Rating Color"
4363
  msgstr ""
4364
 
4365
- #: includes/Elements/Testimonial.php:151
4366
- msgid "Rating Number"
4367
  msgstr ""
4368
 
4369
- #: includes/Elements/Creative_Button.php:197
4370
- msgid "Rayen"
4371
  msgstr ""
4372
 
4373
- #: includes/Traits/Helper.php:576 includes/Traits/Helper.php:606
4374
- msgid "Read More"
4375
  msgstr ""
4376
 
4377
- #: includes/Traits/Helper.php:661
4378
- msgid "Read More Button Style"
4379
  msgstr ""
4380
 
4381
- #: includes/templates/admin/extensions.php:37
4382
- msgid "Reading Progress Bar"
4383
  msgstr ""
4384
 
4385
- #: includes/Elements/Product_Grid.php:57
4386
- msgid "Recent Products"
4387
  msgstr ""
4388
 
4389
- #: includes/Elements/Countdown.php:312
4390
- msgid "Redirect To (URL)"
4391
  msgstr ""
4392
 
4393
- #: includes/Elements/Countdown.php:278
4394
- msgid "Redirection Link"
4395
  msgstr ""
4396
 
4397
- #: includes/Elements/Pricing_Table.php:1245
4398
- msgid "Refresh your browser after saving the padding value for see changes."
4399
  msgstr ""
4400
 
4401
- #: includes/templates/admin/tools.php:10 includes/templates/admin/tools.php:14
4402
- msgid "Regenerate Assets"
4403
  msgstr ""
4404
 
4405
- #: includes/Elements/Twitter_Feed.php:67
4406
- msgid "Remove # sign from your hashtag name."
4407
  msgstr ""
4408
 
4409
- #: includes/templates/admin/general.php:39
4410
- msgid "Report a bug"
4411
  msgstr ""
4412
 
4413
- #: includes/Elements/NinjaForms.php:1414
4414
- msgid "Required Fields Notice"
4415
  msgstr ""
4416
 
4417
- #: includes/Elements/Data_Table.php:920
4418
- msgid "Responsive Options"
4419
  msgstr ""
4420
 
4421
- #: includes/Elements/Product_Grid.php:115
4422
- msgid "Reveal Style"
4423
  msgstr ""
4424
 
4425
- #: includes/Elements/Feature_List.php:195
4426
- msgid "Rhombus"
4427
  msgstr ""
4428
 
4429
- #: includes/Elements/Pricing_Table.php:491
4430
- #: includes/Elements/Pricing_Table.php:1046
4431
- msgid "Ribbon"
4432
  msgstr ""
4433
 
4434
- #: includes/Elements/Pricing_Table.php:508
4435
- msgid "Ribbon Style"
4436
  msgstr ""
4437
 
4438
- #: includes/Traits/Helper.php:343 includes/Traits/Helper.php:996
4439
- #: includes/Elements/NinjaForms.php:256 includes/Elements/NinjaForms.php:399
4440
- #: includes/Elements/NinjaForms.php:581 includes/Elements/NinjaForms.php:1161
4441
- #: includes/Elements/FluentForm.php:212 includes/Elements/FluentForm.php:407
4442
- #: includes/Elements/FluentForm.php:553 includes/Elements/FluentForm.php:1184
4443
- #: includes/Elements/FluentForm.php:1429 includes/Elements/Post_Grid.php:174
4444
- #: includes/Elements/Post_Grid.php:230 includes/Elements/Post_Grid.php:306
4445
- #: includes/Elements/Data_Table.php:429 includes/Elements/Data_Table.php:652
4446
- #: includes/Elements/Data_Table.php:901 includes/Elements/Cta_Box.php:76
4447
- #: includes/Elements/Countdown.php:803 includes/Elements/Feature_List.php:229
4448
- #: includes/Elements/Tooltip.php:163 includes/Elements/Tooltip.php:261
4449
- #: includes/Elements/Tooltip.php:357 includes/Elements/Testimonial.php:244
4450
- #: includes/Elements/GravityForms.php:326
4451
- #: includes/Elements/GravityForms.php:463
4452
- #: includes/Elements/GravityForms.php:608
4453
- #: includes/Elements/GravityForms.php:1350
4454
- #: includes/Elements/Dual_Color_Header.php:141
4455
- #: includes/Elements/Progress_Bar.php:269
4456
- #: includes/Elements/Progress_Bar.php:480 includes/Elements/WeForms.php:151
4457
- #: includes/Elements/WeForms.php:581
4458
- #: includes/Elements/Advanced_Data_Table.php:279
4459
- #: includes/Elements/Advanced_Data_Table.php:450
4460
- #: includes/Elements/Advanced_Data_Table.php:953
4461
- #: includes/Elements/Info_Box.php:266 includes/Elements/Content_Ticker.php:295
4462
- #: includes/Elements/Team_Member.php:344 includes/Elements/Fancy_Text.php:176
4463
- #: includes/Elements/WpForms.php:245 includes/Elements/WpForms.php:362
4464
- #: includes/Elements/WpForms.php:536 includes/Elements/WpForms.php:1101
4465
- #: includes/Elements/Pricing_Table.php:207
4466
- #: includes/Elements/Pricing_Table.php:319
4467
- #: includes/Elements/Pricing_Table.php:675
4468
- #: includes/Elements/Pricing_Table.php:700
4469
- #: includes/Elements/Caldera_Forms.php:218
4470
- #: includes/Elements/Caldera_Forms.php:400
4471
- #: includes/Elements/Caldera_Forms.php:546
4472
- #: includes/Elements/Caldera_Forms.php:1121
4473
- #: includes/Elements/Contact_Form_7.php:312
4474
- #: includes/Elements/Contact_Form_7.php:424
4475
- #: includes/Elements/Contact_Form_7.php:1076
4476
- #: includes/Elements/Post_Timeline.php:203
4477
- #: includes/Elements/Post_Timeline.php:259 includes/Elements/Flip_Box.php:335
4478
- #: includes/Elements/Creative_Button.php:386
4479
- msgid "Right"
4480
  msgstr ""
4481
 
4482
- #: includes/Elements/Progress_Bar.php:439
4483
- msgid "Right To Left"
4484
  msgstr ""
4485
 
4486
- #: includes/Elements/Testimonial.php:365 includes/Elements/Team_Member.php:465
4487
- msgid "Rounded Avatar?"
4488
  msgstr ""
4489
 
4490
- #: includes/Elements/Data_Table.php:203
4491
- msgid "Row"
4492
  msgstr ""
4493
 
4494
- #: includes/Elements/Data_Table.php:221
4495
- msgid "Row Span"
4496
  msgstr ""
4497
 
4498
- #: includes/Elements/Data_Table.php:198
4499
- msgid "Row Type"
4500
  msgstr ""
4501
 
4502
- #: includes/Elements/Advanced_Data_Table.php:111
4503
- msgid "Rows Per Page"
4504
  msgstr ""
4505
 
4506
- #: includes/Elements/Product_Grid.php:290
4507
- msgid "Sale Badge"
4508
  msgstr ""
4509
 
4510
- #: includes/Elements/Product_Grid.php:310
4511
- msgid "Sale Badge Background"
4512
  msgstr ""
4513
 
4514
- #: includes/Elements/Product_Grid.php:298
4515
- msgid "Sale Badge Color"
4516
  msgstr ""
4517
 
4518
- #: includes/Elements/Pricing_Table.php:179
4519
- #: includes/Elements/Pricing_Table.php:871
4520
- msgid "Sale Price"
4521
  msgstr ""
4522
 
4523
- #: includes/Elements/Product_Grid.php:60
4524
- msgid "Sale Products"
4525
  msgstr ""
4526
 
4527
- #: includes/Template/Content/Product_Grid.php:29
4528
- #: includes/Template/Content/Product_Grid.php:45
4529
- msgid "Sale!"
4530
  msgstr ""
4531
 
4532
- #: includes/Elements/Creative_Button.php:202
4533
- msgid "Saqui (Pro)"
4534
  msgstr ""
4535
 
4536
- #: includes/Traits/Admin.php:75 includes/templates/admin/extensions.php:94
4537
- #: includes/templates/admin/elements.php:523
4538
- msgid "Save settings"
4539
  msgstr ""
4540
 
4541
- #: includes/Elements/Adv_Tabs.php:178 includes/Elements/Cta_Box.php:135
4542
- #: includes/Elements/Countdown.php:279 includes/Elements/Adv_Accordion.php:161
4543
- #: includes/Elements/Info_Box.php:207
4544
- msgid "Saved Templates"
4545
  msgstr ""
4546
 
4547
- #: includes/Elements/Sticky_Video.php:428
4548
- msgid "Scroll Height To Display Sticky (%)"
4549
  msgstr ""
4550
 
4551
- #: includes/Elements/Advanced_Data_Table.php:91
4552
- #: includes/Elements/Advanced_Data_Table.php:815
4553
- msgid "Search"
4554
  msgstr ""
4555
 
4556
- #: includes/Traits/Helper.php:92
4557
- msgid "Search & Select"
4558
  msgstr ""
4559
 
4560
- #: includes/Elements/Betterdocs_Search_Form.php:89
4561
- msgid "Search Box"
4562
  msgstr ""
4563
 
4564
- #: includes/Elements/Betterdocs_Search_Form.php:130
4565
- msgid "Search Field"
4566
  msgstr ""
4567
 
4568
- #: includes/Elements/Betterdocs_Search_Form.php:191
4569
- msgid "Search Icon"
4570
  msgstr ""
4571
 
4572
- #: includes/Elements/Betterdocs_Search_Form.php:267
4573
- msgid "Search Result Box"
4574
  msgstr ""
4575
 
4576
- #: includes/Elements/Betterdocs_Search_Form.php:343
4577
- msgid "Search Result List"
4578
  msgstr ""
4579
 
4580
- #: includes/Elements/Advanced_Data_Table.php:1362
4581
- msgid "Search..."
4582
  msgstr ""
4583
 
4584
- #: includes/Elements/Fancy_Text.php:99
4585
- msgid "Second tring"
4586
  msgstr ""
4587
 
4588
- #: includes/Elements/Feature_List.php:412
4589
- msgid "Secondary Color"
4590
  msgstr ""
4591
 
4592
- #: includes/Elements/Countdown.php:204 includes/Elements/Countdown.php:719
4593
- msgid "Seconds"
4594
  msgstr ""
4595
 
4596
- #: includes/Elements/FluentForm.php:1055
4597
- msgid "Section Break Style"
4598
  msgstr ""
4599
 
4600
- #: includes/Elements/GravityForms.php:953
4601
- msgid "Section Field"
4602
  msgstr ""
4603
 
4604
- #: includes/Traits/Helper.php:1277
4605
- msgid "Select a Contact Form"
4606
  msgstr ""
4607
 
4608
- #: includes/Traits/Helper.php:1439
4609
- msgid "Select a Fluent Form"
4610
  msgstr ""
4611
 
4612
- #: includes/Traits/Helper.php:1412
4613
- msgid "Select a WPForm"
4614
  msgstr ""
4615
 
4616
- #: includes/Traits/Helper.php:1382
4617
- msgid "Select Caldera Form"
4618
  msgstr ""
4619
 
4620
- #: includes/Elements/NinjaForms.php:73 includes/Elements/GravityForms.php:113
4621
- #: includes/Elements/WeForms.php:66 includes/Elements/WpForms.php:66
4622
- #: includes/Elements/Contact_Form_7.php:116
4623
- msgid "Select Form"
4624
  msgstr ""
4625
 
4626
- #: includes/Traits/Helper.php:1303
4627
- msgid "Select Gravity Form"
4628
  msgstr ""
4629
 
4630
- #: includes/Traits/Helper.php:1356
4631
- msgid "Select Ninja Form"
4632
  msgstr ""
4633
 
4634
- #: includes/Elements/Testimonial.php:209
4635
- msgid "Select Style"
4636
  msgstr ""
4637
 
4638
- #: includes/Traits/Helper.php:1331 includes/Elements/WeForms.php:73
4639
- msgid "Select weForm"
4640
  msgstr ""
4641
 
4642
- #: includes/Elements/Sticky_Video.php:103
4643
- msgid "Self Hosted"
4644
  msgstr ""
4645
 
4646
- #: includes/Elements/Countdown.php:233
4647
- msgid "Separator Color"
4648
  msgstr ""
4649
 
4650
- #: includes/Elements/Team_Member.php:327
4651
- msgid "Set Alignment"
4652
  msgstr ""
4653
 
4654
- #: includes/Elements/Adv_Tabs.php:115
4655
- msgid "Set as Default"
4656
  msgstr ""
4657
 
4658
- #: includes/Elements/Creative_Button.php:188
4659
- msgid "Set Button Effect"
4660
  msgstr ""
4661
 
4662
- #: includes/Elements/Cta_Box.php:257
4663
- msgid "Set max width for the container?"
4664
  msgstr ""
4665
 
4666
- #: includes/Elements/Countdown.php:54
4667
- msgid "Set the due date and time"
4668
  msgstr ""
4669
 
4670
- #: includes/Elements/Content_Ticker.php:120
4671
- msgid "Sets transition effect"
4672
  msgstr ""
4673
 
4674
- #: includes/Elements/Pricing_Table.php:44
4675
- #: includes/templates/admin/extensions.php:73
4676
- #: includes/templates/admin/elements.php:498
4677
- #: includes/templates/admin/elements.php:501
4678
- msgid "Settings"
4679
  msgstr ""
4680
 
4681
- #: includes/Elements/Pricing_Table.php:389
4682
- msgid "Shadow"
4683
  msgstr ""
4684
 
4685
- #: includes/Elements/Feature_List.php:203
4686
- msgid "Shape View"
4687
  msgstr ""
4688
 
4689
- #: includes/Elements/Creative_Button.php:207
4690
- msgid "Shikoba (Pro)"
4691
  msgstr ""
4692
 
4693
- #: includes/Elements/Tooltip.php:64 includes/Elements/Tooltip.php:110
4694
- msgid "Shortcode"
4695
  msgstr ""
4696
 
4697
- #: includes/Traits/Helper.php:374 includes/Traits/Helper.php:403
4698
- #: includes/Traits/Helper.php:511 includes/Traits/Helper.php:523
4699
- #: includes/Traits/Helper.php:560 includes/Traits/Helper.php:594
4700
- #: includes/Traits/Helper.php:621 includes/Elements/NinjaForms.php:98
4701
- #: includes/Elements/NinjaForms.php:139 includes/Elements/NinjaForms.php:152
4702
- #: includes/Elements/NinjaForms.php:178 includes/Elements/NinjaForms.php:198
4703
- #: includes/Elements/FluentForm.php:131 includes/Elements/FluentForm.php:143
4704
- #: includes/Elements/FluentForm.php:169 includes/Elements/Feature_List.php:249
4705
- #: includes/Elements/GravityForms.php:138
4706
- #: includes/Elements/GravityForms.php:153
4707
- #: includes/Elements/GravityForms.php:193
4708
- #: includes/Elements/GravityForms.php:205
4709
- #: includes/Elements/GravityForms.php:243
4710
- #: includes/Elements/GravityForms.php:263
4711
- #: includes/Elements/Dual_Color_Header.php:68
4712
- #: includes/Elements/Sticky_Video.php:311 includes/Elements/Info_Box.php:245
4713
- #: includes/Elements/Content_Ticker.php:259 includes/Elements/WpForms.php:91
4714
- #: includes/Elements/WpForms.php:106 includes/Elements/WpForms.php:146
4715
- #: includes/Elements/WpForms.php:159 includes/Elements/WpForms.php:182
4716
- #: includes/Elements/Pricing_Table.php:1354
4717
- #: includes/Elements/Caldera_Forms.php:129
4718
- #: includes/Elements/Caldera_Forms.php:142
4719
- #: includes/Elements/Caldera_Forms.php:168
4720
- #: includes/Elements/Contact_Form_7.php:177
4721
- #: includes/Elements/Contact_Form_7.php:203
4722
- #: includes/Elements/Contact_Form_7.php:223
4723
- #: includes/Elements/Creative_Button.php:220
4724
- msgid "Show"
4725
  msgstr ""
4726
 
4727
- #: includes/Elements/Twitter_Feed.php:194
4728
- msgid "Show Avatar"
4729
  msgstr ""
4730
 
4731
- #: includes/Elements/Pricing_Table.php:1351
4732
- msgid "Show Background"
4733
  msgstr ""
4734
 
4735
- #: includes/Elements/Sticky_Video.php:285
4736
- msgid "Show Bar"
4737
  msgstr ""
4738
 
4739
- #: includes/Elements/Adv_Tabs.php:721
4740
- msgid "Show Caret on Active Tab"
4741
  msgstr ""
4742
 
4743
- #: includes/Traits/Helper.php:429
4744
- msgid "Show Circle Image / Icon"
4745
  msgstr ""
4746
 
4747
- #: includes/Elements/Feature_List.php:246
4748
- msgid "Show Connector"
4749
  msgstr ""
4750
 
4751
- #: includes/Elements/Info_Box.php:242
4752
- msgid "Show Content"
4753
  msgstr ""
4754
 
4755
- #: includes/Elements/Twitter_Feed.php:223
4756
- msgid "Show Date"
4757
  msgstr ""
4758
 
4759
- #: includes/Traits/Helper.php:521
4760
- msgid "Show excerpt"
4761
  msgstr ""
4762
 
4763
- #: includes/Elements/Dual_Color_Header.php:65
4764
- #: includes/Elements/Twitter_Feed.php:247
4765
- msgid "Show Icon"
4766
  msgstr ""
4767
 
4768
- #: includes/Traits/Helper.php:401
4769
- msgid "Show Image"
4770
  msgstr ""
4771
 
4772
- #: includes/Elements/Info_Box.php:311
4773
- msgid "Show Infobox Button"
4774
  msgstr ""
4775
 
4776
- #: includes/Traits/Helper.php:372 includes/Elements/Facebook_Feed.php:253
4777
- msgid "Show Load More"
4778
  msgstr ""
4779
 
4780
- #: includes/Elements/Twitter_Feed.php:173
4781
- msgid "Show Media Elements"
4782
  msgstr ""
4783
 
4784
- #: includes/Traits/Helper.php:619
4785
- msgid "Show Meta"
4786
  msgstr ""
4787
 
4788
- #: includes/Elements/Contact_Form_7.php:813
4789
- msgid "Show Placeholder"
4790
  msgstr ""
4791
 
4792
- #: includes/Elements/Product_Grid.php:124
4793
- msgid "Show Product Rating?"
4794
  msgstr ""
4795
 
4796
- #: includes/templates/admin/tools.php:17
4797
- msgid "Show Quick Tools in Admin Bar?"
4798
  msgstr ""
4799
 
4800
- #: includes/Traits/Helper.php:558 includes/Elements/Twitter_Feed.php:235
4801
- msgid "Show Read More"
4802
  msgstr ""
4803
 
4804
- #: includes/Traits/Helper.php:592
4805
- msgid "Show Read More Button"
4806
  msgstr ""
4807
 
4808
- #: includes/Elements/Progress_Bar.php:421
4809
- msgid "Show Stripe"
4810
  msgstr ""
4811
 
4812
- #: includes/Traits/Helper.php:509
4813
- msgid "Show Title"
4814
  msgstr ""
4815
 
4816
- #: includes/templates/admin/general.php:69
4817
- msgid "Show your Love"
4818
  msgstr ""
4819
 
4820
- #: includes/Elements/Content_Ticker.php:256
4821
- msgid "Shows grab cursor when you hover over the slider"
4822
  msgstr ""
4823
 
4824
- #: includes/Elements/Team_Member.php:227 includes/Elements/Product_Grid.php:114
4825
- msgid "Simple Style"
4826
  msgstr ""
4827
 
4828
- #: includes/Traits/Helper.php:302
4829
- msgid "Single Column"
4830
  msgstr ""
4831
 
4832
- #: includes/Traits/Helper.php:307
4833
- msgid "Six Columns"
4834
  msgstr ""
4835
 
4836
- #: includes/Elements/NinjaForms.php:962 includes/Elements/FluentForm.php:876
4837
- #: includes/Elements/Betterdocs_Search_Form.php:211
4838
- #: includes/Elements/Feature_List.php:441
4839
- #: includes/Elements/Betterdocs_Category_Grid.php:244
4840
- #: includes/Elements/Betterdocs_Category_Grid.php:360
4841
- #: includes/Elements/GravityForms.php:1151
4842
- #: includes/Elements/Progress_Bar.php:491 includes/Elements/WpForms.php:902
4843
- #: includes/Elements/Caldera_Forms.php:922
4844
- #: includes/Elements/Betterdocs_Category_Box.php:203
4845
- #: includes/Elements/Betterdocs_Category_Box.php:353
4846
- #: includes/Elements/Contact_Form_7.php:877
4847
- msgid "Size"
4848
  msgstr ""
4849
 
4850
- #: includes/Elements/Content_Ticker.php:124
4851
- #: includes/Elements/Pricing_Table.php:353
4852
- msgid "Slide"
4853
  msgstr ""
4854
 
4855
- #: includes/Elements/Content_Ticker.php:176
4856
- msgid "Slider Speed"
4857
  msgstr ""
4858
 
4859
- #: includes/Elements/Post_Grid.php:351
4860
- msgid "SlideUp"
4861
  msgstr ""
4862
 
4863
- #: includes/templates/admin/elements.php:173
4864
- msgid "Smart Post List"
4865
  msgstr ""
4866
 
4867
- #: includes/templates/admin/elements.php:399
4868
- msgid "Social Feed Elemens"
4869
  msgstr ""
4870
 
4871
- #: includes/Elements/Team_Member.php:634
4872
- msgid "Social Icon Spacing"
4873
  msgstr ""
4874
 
4875
- #: includes/Elements/Team_Member.php:231
4876
- msgid "Social on Bottom"
4877
  msgstr ""
4878
 
4879
- #: includes/Elements/Team_Member.php:114
4880
- msgid "Social Profiles"
4881
  msgstr ""
4882
 
4883
- #: includes/Elements/Team_Member.php:622
4884
- msgid "Social Profiles Spacing"
4885
  msgstr ""
4886
 
4887
- #: includes/Elements/Team_Member.php:590
4888
- msgid "Social Profiles Style"
4889
  msgstr ""
4890
 
4891
- #: includes/Elements/Team_Member.php:94
4892
- msgid "Software Engineer"
4893
  msgstr ""
4894
 
4895
- #: includes/Elements/Feature_List.php:320
4896
- #: includes/Elements/GravityForms.php:989
4897
- #: includes/Elements/Sticky_Video.php:502
4898
- msgid "Solid"
4899
  msgstr ""
4900
 
4901
- #: includes/Elements/Advanced_Data_Table.php:81
4902
- msgid "Sort"
4903
  msgstr ""
4904
 
4905
- #: includes/Elements/Facebook_Feed.php:81
4906
- msgid "Sort By"
4907
  msgstr ""
4908
 
4909
- #: includes/Elements/Data_Table.php:54
4910
- msgid "Sorting feature is available in pro version!"
4911
  msgstr ""
4912
 
4913
- #: includes/Traits/Helper.php:82 includes/Elements/Sticky_Video.php:97
4914
- #: includes/Elements/Advanced_Data_Table.php:51
4915
- msgid "Source"
4916
  msgstr ""
4917
 
4918
- #: includes/Elements/Countdown.php:409
4919
- msgid "Space Below Container"
4920
  msgstr ""
4921
 
4922
- #: includes/Elements/Feature_List.php:274
4923
- msgid "Space Between"
4924
  msgstr ""
4925
 
4926
- #: includes/Elements/Countdown.php:385
4927
- msgid "Space Between Boxes"
4928
  msgstr ""
4929
 
4930
- #: includes/Elements/Facebook_Feed.php:294
4931
- msgid "Space Between Items"
4932
  msgstr ""
4933
 
4934
- #: includes/Elements/NinjaForms.php:767 includes/Elements/NinjaForms.php:884
4935
- #: includes/Elements/NinjaForms.php:1434 includes/Elements/FluentForm.php:737
4936
- #: includes/Elements/Feature_List.php:543
4937
- #: includes/Elements/Feature_List.php:630
4938
- #: includes/Elements/GravityForms.php:655
4939
- #: includes/Elements/GravityForms.php:928 includes/Elements/WpForms.php:721
4940
- #: includes/Elements/WpForms.php:827 includes/Elements/Caldera_Forms.php:730
4941
- #: includes/Elements/Caldera_Forms.php:847
4942
- #: includes/Elements/Contact_Form_7.php:548
4943
- #: includes/Elements/Contact_Form_7.php:765
4944
- #: includes/Elements/Contact_Form_7.php:1335
4945
- msgid "Spacing"
4946
  msgstr ""
4947
 
4948
- #: includes/Elements/Post_Grid.php:77
4949
- msgid "Spacing Between Items"
4950
  msgstr ""
4951
 
4952
- #: includes/Elements/GravityForms.php:674
4953
- msgid "Spacing Right"
4954
  msgstr ""
4955
 
4956
- #: includes/Elements/Tooltip.php:99
4957
- msgid "SPAN"
4958
  msgstr ""
4959
 
4960
- #: includes/Elements/Progress_Bar.php:120
4961
- msgid "span"
4962
  msgstr ""
4963
 
4964
- #: includes/Elements/Feature_List.php:194 includes/Elements/Info_Box.php:532
4965
- #: includes/Elements/Info_Box.php:587 includes/Elements/Info_Box.php:760
4966
- #: includes/Elements/Info_Box.php:841 includes/Elements/Info_Box.php:977
4967
- #: includes/Elements/Info_Box.php:1073
4968
- msgid "Square"
4969
  msgstr ""
4970
 
4971
- #: includes/Elements/Adv_Tabs.php:83 includes/Elements/Feature_List.php:209
4972
- msgid "Stacked"
4973
  msgstr ""
4974
 
4975
- #: includes/Elements/Product_Grid.php:261
4976
- msgid "Star Rating"
4977
  msgstr ""
4978
 
4979
- #: includes/Elements/Sticky_Video.php:211
4980
- msgid "Start Time"
4981
  msgstr ""
4982
 
4983
- #: includes/Elements/Pricing_Table.php:102
4984
- msgid "Startup"
4985
  msgstr ""
4986
 
4987
- #: includes/Elements/Advanced_Data_Table.php:54
4988
- msgid "Static Data"
4989
  msgstr ""
4990
 
4991
- #: includes/templates/admin/elements.php:97
4992
- msgid "Static Product"
4993
  msgstr ""
4994
 
4995
- #: includes/Elements/Sticky_Video.php:53
4996
- msgid "Sticky"
4997
  msgstr ""
4998
 
4999
- #: includes/Elements/Sticky_Video.php:45
5000
- msgid "Sticky Options"
5001
  msgstr ""
5002
 
5003
- #: includes/templates/admin/elements.php:111
5004
- msgid "Sticky Video"
5005
  msgstr ""
5006
 
5007
- #: includes/Elements/Sticky_Video.php:378
5008
- msgid "Sticky Video Interface"
5009
  msgstr ""
5010
 
5011
- #: includes/Elements/Progress_Bar.php:435
5012
- msgid "Stripe Animation"
5013
  msgstr ""
5014
 
5015
- #: includes/Elements/Progress_Bar.php:556
5016
- msgid "Stroke Color"
5017
  msgstr ""
5018
 
5019
- #: includes/Elements/Progress_Bar.php:531
5020
- msgid "Stroke Width"
5021
  msgstr ""
5022
 
5023
- #: includes/templates/admin/general.php:52
5024
- msgid "Stuck with something? Get help from the community on"
5025
  msgstr ""
5026
 
5027
- #: includes/Elements/Countdown.php:111 includes/Elements/Fancy_Text.php:133
5028
- #: includes/Elements/Pricing_Table.php:512
5029
- msgid "Style 1"
5030
  msgstr ""
5031
 
5032
- #: includes/Elements/Countdown.php:112 includes/Elements/Pricing_Table.php:513
5033
- msgid "Style 2"
5034
  msgstr ""
5035
 
5036
- #: includes/Elements/Fancy_Text.php:134
5037
- msgid "Style 2 (Pro)"
5038
  msgstr ""
5039
 
5040
- #: includes/Elements/Countdown.php:113 includes/Elements/Pricing_Table.php:514
5041
- msgid "Style 3"
5042
  msgstr ""
5043
 
5044
- #: includes/Elements/Team_Member.php:237 includes/Elements/Product_Grid.php:109
5045
- msgid "Style Preset"
5046
  msgstr ""
5047
 
5048
- #: includes/Elements/Fancy_Text.php:143
5049
- msgid "Style Type"
5050
  msgstr ""
5051
 
5052
- #: includes/Elements/Dual_Color_Header.php:118
5053
- msgid "Sub Text"
5054
  msgstr ""
5055
 
5056
- #: includes/Elements/Pricing_Table.php:113
5057
- msgid "Sub Title"
5058
  msgstr ""
5059
 
5060
- #: includes/Elements/Dual_Color_Header.php:57
5061
- msgid "Sub-text on top"
5062
  msgstr ""
5063
 
5064
- #: includes/Elements/Dual_Color_Header.php:371
5065
- msgid "Sub-title Style "
5066
  msgstr ""
5067
 
5068
- #: includes/Elements/NinjaForms.php:1141 includes/Elements/FluentForm.php:1409
5069
- #: includes/Elements/GravityForms.php:1330 includes/Elements/WpForms.php:1081
5070
- #: includes/Elements/Caldera_Forms.php:1101
5071
- #: includes/Elements/Contact_Form_7.php:1055
5072
- msgid "Submit Button"
5073
  msgstr ""
5074
 
5075
- #: includes/Elements/WeForms.php:534
5076
- msgid "Submit Button Styles"
5077
  msgstr ""
5078
 
5079
- #: includes/Elements/Pricing_Table.php:787
5080
- msgid "Subtitle Style"
5081
  msgstr ""
5082
 
5083
- #: includes/Elements/NinjaForms.php:1380 includes/Elements/FluentForm.php:1641
5084
- #: includes/Elements/Caldera_Forms.php:1333
5085
- msgid "Success Message"
5086
  msgstr ""
5087
 
5088
- #: includes/Elements/Fancy_Text.php:111
5089
- msgid "Suffix Text"
5090
  msgstr ""
5091
 
5092
- #: includes/Elements/Fancy_Text.php:442
5093
- msgid "Suffix Text Color"
5094
  msgstr ""
5095
 
5096
- #: includes/Elements/Fancy_Text.php:434
5097
- msgid "Suffix Text Styles"
5098
  msgstr ""
5099
 
5100
- #: includes/Elements/Fancy_Text.php:202 includes/Elements/Pricing_Table.php:352
5101
- msgid "Swing"
5102
  msgstr ""
5103
 
5104
- #: includes/Elements/Adv_Tabs.php:483 includes/Elements/Adv_Tabs.php:549
5105
- msgid "Tab Background Color"
5106
  msgstr ""
5107
 
5108
- #: includes/Elements/Adv_Tabs.php:193 includes/Elements/Adv_Accordion.php:176
5109
- msgid "Tab Content"
5110
  msgstr ""
5111
 
5112
- #: includes/Elements/Adv_Accordion.php:287
5113
- msgid "Tab Style"
5114
  msgstr ""
5115
 
5116
- #: includes/Elements/Adv_Tabs.php:167 includes/Elements/Adv_Tabs.php:169
5117
- #: includes/Elements/Adv_Tabs.php:305 includes/Elements/Adv_Accordion.php:150
5118
- #: includes/Elements/Adv_Accordion.php:152
5119
- msgid "Tab Title"
5120
  msgstr ""
5121
 
5122
- #: includes/Elements/Adv_Tabs.php:108
5123
- msgid "Tab Title 1"
5124
  msgstr ""
5125
 
5126
- #: includes/Elements/Adv_Tabs.php:109
5127
- msgid "Tab Title 2"
5128
  msgstr ""
5129
 
5130
- #: includes/Elements/Adv_Tabs.php:110
5131
- msgid "Tab Title 3"
5132
  msgstr ""
5133
 
5134
- #: includes/Elements/Advanced_Data_Table.php:197
5135
- msgid "Table"
5136
  msgstr ""
5137
 
5138
- #: includes/Elements/Content_Ticker.php:407
5139
- msgid "Tag Style"
5140
  msgstr ""
5141
 
5142
- #: includes/Elements/Content_Ticker.php:89
5143
- msgid "Tag Text"
5144
  msgstr ""
5145
 
5146
- #: includes/Elements/Creative_Button.php:196
5147
- msgid "Tamaya"
5148
  msgstr ""
5149
 
5150
- #: includes/templates/admin/elements.php:15
5151
- msgid "Team Member"
5152
  msgstr ""
5153
 
5154
- #: includes/Elements/Team_Member.php:49
5155
- msgid "Team Member Avatar"
5156
  msgstr ""
5157
 
5158
- #: includes/templates/admin/elements.php:104
5159
- msgid "Team Member Carousel"
5160
  msgstr ""
5161
 
5162
- #: includes/Elements/Team_Member.php:75
5163
- msgid "Team Member Content"
5164
  msgstr ""
5165
 
5166
- #: includes/Elements/Team_Member.php:41
5167
- msgid "Team Member Image"
5168
  msgstr ""
5169
 
5170
- #: includes/Elements/Team_Member.php:391
5171
- msgid "Team Member Image Style"
5172
  msgstr ""
5173
 
5174
- #: includes/Elements/Team_Member.php:221
5175
- msgid "Team Member Styles"
5176
  msgstr ""
5177
 
5178
- #: includes/Classes/WPML/Eael_WPML.php:279
5179
- msgid "Team Member: Description"
5180
  msgstr ""
5181
 
5182
- #: includes/Classes/WPML/Eael_WPML.php:274
5183
- msgid "Team Member: Job Position"
5184
  msgstr ""
5185
 
5186
- #: includes/Classes/WPML/Eael_WPML.php:269
5187
- msgid "Team Member: Name"
5188
  msgstr ""
5189
 
5190
- #: includes/Elements/Data_Table.php:245
5191
- msgid "Templates"
5192
  msgstr ""
5193
 
5194
- #: includes/templates/admin/elements.php:21
5195
- msgid "Testimonial"
5196
  msgstr ""
5197
 
5198
- #: includes/Elements/Testimonial.php:58
5199
- msgid "Testimonial Avatar"
5200
  msgstr ""
5201
 
5202
- #: includes/Elements/Testimonial.php:88
5203
- msgid "Testimonial Content"
5204
  msgstr ""
5205
 
5206
- #: includes/Elements/Testimonial.php:115
5207
- msgid "Testimonial Description"
5208
  msgstr ""
5209
 
5210
- #: includes/Elements/Testimonial.php:42
5211
- msgid "Testimonial Image"
5212
  msgstr ""
5213
 
5214
- #: includes/Elements/Testimonial.php:272
5215
- msgid "Testimonial Image Style"
5216
  msgstr ""
5217
 
5218
- #: includes/templates/admin/elements.php:90
5219
- msgid "Testimonial Slider"
5220
  msgstr ""
5221
 
5222
- #: includes/Elements/Testimonial.php:201
5223
- msgid "Testimonial Styles"
5224
  msgstr ""
5225
 
5226
- #: includes/Elements/Testimonial.php:458
5227
- msgid "Testimonial Text"
5228
  msgstr ""
5229
 
5230
- #: includes/Elements/Testimonial.php:467
5231
- msgid "Testimonial Text Color"
5232
  msgstr ""
5233
 
5234
- #: includes/Classes/WPML/Eael_WPML.php:295
5235
- msgid "Testimonial: Company Name"
5236
  msgstr ""
5237
 
5238
- #: includes/Classes/WPML/Eael_WPML.php:300
5239
- msgid "Testimonial: Testimonial Description"
5240
  msgstr ""
5241
 
5242
- #: includes/Classes/WPML/Eael_WPML.php:290
5243
- msgid "Testimonial: User Name"
5244
  msgstr ""
5245
 
5246
- #: includes/Elements/Tooltip.php:56
5247
- msgid "Text"
5248
  msgstr ""
5249
 
5250
- #: includes/Elements/Countdown.php:790
5251
- #: includes/Elements/Advanced_Data_Table.php:267
5252
- #: includes/Elements/Advanced_Data_Table.php:438
5253
- msgid "Text Alignment"
5254
  msgstr ""
5255
 
5256
- #: includes/Traits/Helper.php:689 includes/Traits/Helper.php:744
5257
- #: includes/Traits/Helper.php:874 includes/Traits/Helper.php:936
5258
- #: includes/Elements/Adv_Tabs.php:436 includes/Elements/Adv_Tabs.php:502
5259
- #: includes/Elements/Adv_Tabs.php:569 includes/Elements/Adv_Tabs.php:651
5260
- #: includes/Elements/NinjaForms.php:422 includes/Elements/NinjaForms.php:471
5261
- #: includes/Elements/NinjaForms.php:529 includes/Elements/NinjaForms.php:616
5262
- #: includes/Elements/NinjaForms.php:864 includes/Elements/NinjaForms.php:920
5263
- #: includes/Elements/NinjaForms.php:1239 includes/Elements/NinjaForms.php:1326
5264
- #: includes/Elements/NinjaForms.php:1388 includes/Elements/NinjaForms.php:1488
5265
- #: includes/Elements/FluentForm.php:242 includes/Elements/FluentForm.php:303
5266
- #: includes/Elements/FluentForm.php:507 includes/Elements/FluentForm.php:588
5267
- #: includes/Elements/FluentForm.php:837 includes/Elements/FluentForm.php:1501
5268
- #: includes/Elements/FluentForm.php:1607 includes/Elements/FluentForm.php:1660
5269
- #: includes/Elements/Data_Table.php:855 includes/Elements/Data_Table.php:872
5270
- #: includes/Elements/Cta_Box.php:506 includes/Elements/Cta_Box.php:560
5271
- #: includes/Elements/Countdown.php:874 includes/Elements/Tooltip.php:387
5272
- #: includes/Elements/Tooltip.php:430 includes/Elements/Tooltip.php:603
5273
- #: includes/Elements/GravityForms.php:486
5274
- #: includes/Elements/GravityForms.php:517
5275
- #: includes/Elements/GravityForms.php:556
5276
- #: includes/Elements/GravityForms.php:643
5277
- #: includes/Elements/GravityForms.php:908
5278
- #: includes/Elements/GravityForms.php:961
5279
- #: includes/Elements/GravityForms.php:1112
5280
- #: includes/Elements/GravityForms.php:1429
5281
- #: includes/Elements/GravityForms.php:1516
5282
- #: includes/Elements/GravityForms.php:1589
5283
- #: includes/Elements/GravityForms.php:1724
5284
- #: includes/Elements/Adv_Accordion.php:392
5285
- #: includes/Elements/Adv_Accordion.php:464
5286
- #: includes/Elements/Adv_Accordion.php:536
5287
- #: includes/Elements/Adv_Accordion.php:618 includes/Elements/WeForms.php:630
5288
- #: includes/Elements/WeForms.php:680 includes/Elements/Info_Box.php:1211
5289
- #: includes/Elements/Info_Box.php:1257 includes/Elements/Content_Ticker.php:361
5290
- #: includes/Elements/WpForms.php:385 includes/Elements/WpForms.php:434
5291
- #: includes/Elements/WpForms.php:489 includes/Elements/WpForms.php:571
5292
- #: includes/Elements/WpForms.php:807 includes/Elements/WpForms.php:863
5293
- #: includes/Elements/WpForms.php:1176 includes/Elements/WpForms.php:1283
5294
- #: includes/Elements/WpForms.php:1328 includes/Elements/Pricing_Table.php:1600
5295
- #: includes/Elements/Pricing_Table.php:1654
5296
- #: includes/Elements/Caldera_Forms.php:247
5297
- #: includes/Elements/Caldera_Forms.php:308
5298
- #: includes/Elements/Caldera_Forms.php:500
5299
- #: includes/Elements/Caldera_Forms.php:581
5300
- #: includes/Elements/Caldera_Forms.php:827
5301
- #: includes/Elements/Caldera_Forms.php:883
5302
- #: includes/Elements/Caldera_Forms.php:1193
5303
- #: includes/Elements/Caldera_Forms.php:1299
5304
- #: includes/Elements/Caldera_Forms.php:1352
5305
- #: includes/Elements/Contact_Form_7.php:447
5306
- #: includes/Elements/Contact_Form_7.php:478
5307
- #: includes/Elements/Contact_Form_7.php:535
5308
- #: includes/Elements/Contact_Form_7.php:751
5309
- #: includes/Elements/Contact_Form_7.php:825
5310
- #: includes/Elements/Contact_Form_7.php:1150
5311
- #: includes/Elements/Contact_Form_7.php:1256
5312
- #: includes/Elements/Contact_Form_7.php:1320
5313
- #: includes/Elements/Contact_Form_7.php:1384
5314
- #: includes/Elements/Contact_Form_7.php:1445
5315
- #: includes/Elements/Creative_Button.php:233
5316
- #: includes/Elements/Creative_Button.php:309
5317
- msgid "Text Color"
5318
  msgstr ""
5319
 
5320
- #: includes/Elements/Content_Ticker.php:372
5321
- msgid "Text Hover Color"
5322
  msgstr ""
5323
 
5324
- #: includes/Elements/NinjaForms.php:652 includes/Elements/FluentForm.php:624
5325
- #: includes/Elements/GravityForms.php:705 includes/Elements/WpForms.php:607
5326
- #: includes/Elements/Caldera_Forms.php:617
5327
- #: includes/Elements/Contact_Form_7.php:583
5328
- msgid "Text Indent"
5329
  msgstr ""
5330
 
5331
- #: includes/Elements/Data_Table.php:237
5332
- msgid "Textarea"
5333
  msgstr ""
5334
 
5335
- #: includes/Elements/NinjaForms.php:735 includes/Elements/FluentForm.php:706
5336
- #: includes/Elements/GravityForms.php:786 includes/Elements/WpForms.php:689
5337
- #: includes/Elements/Caldera_Forms.php:699
5338
- msgid "Textarea Height"
5339
  msgstr ""
5340
 
5341
- #: includes/Elements/NinjaForms.php:716 includes/Elements/FluentForm.php:687
5342
- #: includes/Elements/GravityForms.php:767 includes/Elements/WeForms.php:314
5343
- #: includes/Elements/WpForms.php:670 includes/Elements/Caldera_Forms.php:680
5344
- #: includes/Elements/Contact_Form_7.php:626
5345
- msgid "Textarea Width"
5346
  msgstr ""
5347
 
5348
- #: includes/Elements/GravityForms.php:1716
5349
- msgid "Thank You Message"
5350
  msgstr ""
5351
 
5352
- #: includes/templates/admin/go-pro.php:13
5353
- msgid ""
5354
- "The premium version helps us to continue development of the product "
5355
- "incorporating even more features and enhancements."
5356
  msgstr ""
5357
 
5358
- #: includes/Elements/Cta_Box.php:124
5359
- msgid "The Ultimate Addons For Elementor"
5360
  msgstr ""
5361
 
5362
- #. Description of the plugin
5363
- msgid ""
5364
- "The ultimate elements library for Elementor page builder plugin for "
5365
- "WordPress."
5366
  msgstr ""
5367
 
5368
- #: includes/Elements/Fancy_Text.php:102
5369
- msgid "Third tring"
5370
  msgstr ""
5371
 
5372
- #: includes/Elements/Info_Box.php:197
5373
- msgid "This is an icon box"
5374
  msgstr ""
5375
 
5376
- #: includes/Elements/Flip_Box.php:311
5377
- msgid "This is back side content."
5378
  msgstr ""
5379
 
5380
- #: includes/Elements/Flip_Box.php:281
5381
- msgid "This is front side content."
5382
  msgstr ""
5383
 
5384
- #: includes/Elements/Fancy_Text.php:69
5385
- msgid "This is the "
5386
  msgstr ""
5387
 
5388
- #: includes/Traits/Helper.php:304
5389
- msgid "Three Columns"
5390
  msgstr ""
5391
 
5392
- #: includes/Elements/Content_Ticker.php:341
5393
- msgid "Ticker Content"
5394
  msgstr ""
5395
 
5396
- #: includes/Elements/Content_Ticker.php:47
5397
- msgid "Ticker Settings"
5398
  msgstr ""
5399
 
5400
- #: includes/Elements/Content_Ticker.php:67
5401
- msgid "Ticker Type"
5402
  msgstr ""
5403
 
5404
- #: includes/Elements/Post_Timeline.php:91
5405
- msgid "Timeline Bullet Border Color"
5406
  msgstr ""
5407
 
5408
- #: includes/Elements/Post_Timeline.php:78
5409
- msgid "Timeline Bullet Color"
5410
  msgstr ""
5411
 
5412
- #: includes/Elements/Post_Timeline.php:56
5413
- msgid "Timeline Style"
5414
  msgstr ""
5415
 
5416
- #: includes/Elements/Post_Timeline.php:104
5417
- msgid "Timeline Vertical Line Color"
5418
  msgstr ""
5419
 
5420
- #: includes/Elements/Countdown.php:44
5421
- msgid "Timer Settings"
5422
  msgstr ""
5423
 
5424
- #: includes/Elements/NinjaForms.php:95 includes/Elements/NinjaForms.php:111
5425
- #: includes/Elements/NinjaForms.php:413 includes/Elements/FluentForm.php:103
5426
- #: includes/Elements/FluentForm.php:230 includes/Elements/Cta_Box.php:121
5427
- #: includes/Elements/Feature_List.php:99 includes/Elements/Feature_List.php:101
5428
- #: includes/Elements/Feature_List.php:622
5429
- #: includes/Elements/Image_Accordion.php:86
5430
- #: includes/Elements/Image_Accordion.php:258
5431
- #: includes/Elements/GravityForms.php:135
5432
- #: includes/Elements/GravityForms.php:165
5433
- #: includes/Elements/GravityForms.php:477
5434
- #: includes/Elements/Progress_Bar.php:100
5435
- #: includes/Elements/Progress_Bar.php:621 includes/Elements/WpForms.php:88
5436
- #: includes/Elements/WpForms.php:118 includes/Elements/WpForms.php:376
5437
- #: includes/Elements/Pricing_Table.php:99
5438
- #: includes/Elements/Caldera_Forms.php:101
5439
- #: includes/Elements/Caldera_Forms.php:235
5440
- #: includes/Elements/Contact_Form_7.php:138
5441
- #: includes/Elements/Contact_Form_7.php:438 includes/Elements/Flip_Box.php:367
5442
- msgid "Title"
5443
  msgstr ""
5444
 
5445
- #: includes/Elements/NinjaForms.php:379 includes/Elements/FluentForm.php:189
5446
- #: includes/Elements/GravityForms.php:443 includes/Elements/WpForms.php:342
5447
- #: includes/Elements/Caldera_Forms.php:195
5448
- #: includes/Elements/Contact_Form_7.php:404
5449
- msgid "Title & Description"
5450
  msgstr ""
5451
 
5452
- #: includes/Elements/Dual_Color_Header.php:96
5453
- msgid "Title ( First Part )"
5454
  msgstr ""
5455
 
5456
- #: includes/Elements/Dual_Color_Header.php:107
5457
- msgid "Title ( Last Part )"
5458
  msgstr ""
5459
 
5460
- #: includes/Elements/Post_Grid.php:162 includes/Elements/Data_Table.php:639
5461
- #: includes/Elements/Post_Timeline.php:191
5462
- msgid "Title Alignment"
5463
  msgstr ""
5464
 
5465
- #: includes/Elements/Betterdocs_Category_Grid.php:183
5466
- msgid "Title Border Color"
5467
  msgstr ""
5468
 
5469
- #: includes/Elements/Post_Grid.php:136 includes/Elements/Countdown.php:826
5470
- #: includes/Elements/Betterdocs_Category_Grid.php:154
5471
- #: includes/Elements/Progress_Bar.php:630 includes/Elements/Info_Box.php:1434
5472
- #: includes/Elements/Betterdocs_Category_Box.php:237
5473
- #: includes/Elements/Betterdocs_Category_Box.php:409
5474
- #: includes/Elements/Post_Timeline.php:178
5475
- msgid "Title Color"
5476
  msgstr ""
5477
 
5478
- #: includes/Elements/Post_Grid.php:149
5479
- msgid "Title Hover Color"
5480
  msgstr ""
5481
 
5482
- #: includes/Elements/Feature_List.php:167
5483
- #: includes/Elements/Progress_Bar.php:110
5484
- msgid "Title HTML Tag"
5485
  msgstr ""
5486
 
5487
- #: includes/Elements/Image_Accordion.php:101
5488
- msgid "Title Link"
5489
  msgstr ""
5490
 
5491
- #: includes/Elements/Adv_Tabs.php:319
5492
- msgid "Title Min Width"
5493
  msgstr ""
5494
 
5495
- #: includes/Elements/Post_Grid.php:127 includes/Elements/Cta_Box.php:383
5496
- #: includes/Elements/Countdown.php:817
5497
- #: includes/Elements/Dual_Color_Header.php:331
5498
- #: includes/Elements/Info_Box.php:1324 includes/Elements/Pricing_Table.php:727
5499
- #: includes/Elements/Post_Timeline.php:169
5500
- #: includes/Elements/Twitter_Feed.php:374 includes/Elements/Flip_Box.php:893
5501
- #: includes/Elements/Flip_Box.php:961
5502
- msgid "Title Style"
5503
  msgstr ""
5504
 
5505
- #: includes/Elements/Adv_Accordion.php:61
5506
- #: includes/templates/admin/elements.php:83
5507
- msgid "Toggle"
5508
  msgstr ""
5509
 
5510
- #: includes/Elements/Adv_Accordion.php:679
5511
- msgid "Toggle Caret Style"
5512
  msgstr ""
5513
 
5514
- #: includes/Elements/Adv_Accordion.php:78
5515
- msgid "Toggle Icon"
5516
  msgstr ""
5517
 
5518
- #: includes/Elements/Adv_Accordion.php:93
5519
- msgid "Toggle Speed (ms)"
5520
  msgstr ""
5521
 
5522
- #: includes/Traits/Admin.php:83
5523
- msgid "Tools"
5524
  msgstr ""
5525
 
5526
- #: includes/Elements/Pricing_Table.php:1192
5527
- #: includes/templates/admin/elements.php:45
5528
- msgid "Tooltip"
5529
  msgstr ""
5530
 
5531
- #: includes/Elements/Pricing_Table.php:347
5532
- msgid "Tooltip Animation"
5533
  msgstr ""
5534
 
5535
- #: includes/Elements/Pricing_Table.php:372
5536
- #: includes/Elements/Pricing_Table.php:1286
5537
- msgid "Tooltip Arrow"
5538
  msgstr ""
5539
 
5540
- #: includes/Elements/Pricing_Table.php:298
5541
- msgid "Tooltip Content"
5542
  msgstr ""
5543
 
5544
- #: includes/Elements/Tooltip.php:248
5545
- msgid "Tooltip content"
5546
  msgstr ""
5547
 
5548
- #: includes/Elements/Tooltip.php:545
5549
- msgid "Tooltip Max Width"
5550
  msgstr ""
5551
 
5552
- #: includes/Elements/Tooltip.php:239
5553
- msgid "Tooltip Settings"
5554
  msgstr ""
5555
 
5556
- #: includes/Elements/Pricing_Table.php:307
5557
- msgid "Tooltip Side"
5558
  msgstr ""
5559
 
5560
- #: includes/Elements/Tooltip.php:513
5561
- msgid "Tooltip Style"
5562
  msgstr ""
5563
 
5564
- #: includes/Elements/Pricing_Table.php:382
5565
- msgid "Tooltip Theme"
5566
  msgstr ""
5567
 
5568
- #: includes/Elements/Pricing_Table.php:334
5569
- msgid "Tooltip Trigger"
5570
  msgstr ""
5571
 
5572
- #: includes/Elements/Tooltip.php:520
5573
- msgid "Tooltip Width"
5574
  msgstr ""
5575
 
5576
- #: includes/Classes/WPML/Eael_WPML.php:312
5577
- #: includes/Classes/WPML/Eael_WPML.php:317
5578
- msgid "Tooltip: Content"
5579
  msgstr ""
5580
 
5581
- #: includes/Extensions/Reading_Progress.php:109
5582
- #: includes/Elements/Feature_List.php:225 includes/Elements/Tooltip.php:262
5583
- #: includes/Elements/Info_Box.php:103 includes/Elements/Pricing_Table.php:315
5584
- msgid "Top"
5585
  msgstr ""
5586
 
5587
- #: includes/Elements/Sticky_Video.php:72
5588
- msgid "Top Left"
5589
  msgstr ""
5590
 
5591
- #: includes/Elements/Product_Grid.php:61
5592
- msgid "Top Rated Products"
5593
  msgstr ""
5594
 
5595
- #: includes/Elements/Sticky_Video.php:73
5596
- msgid "Top Right"
5597
  msgstr ""
5598
 
5599
- #: includes/Elements/Cta_Box.php:461
5600
- msgid "Top to Bottom"
5601
  msgstr ""
5602
 
5603
- #: includes/Elements/Betterdocs_Search_Form.php:442
5604
- #: includes/Elements/Info_Box.php:1458
5605
- #: includes/Elements/Betterdocs_Category_Box.php:284
5606
- #: includes/Elements/Betterdocs_Category_Box.php:370
5607
- #: includes/Elements/Betterdocs_Category_Box.php:420
5608
- #: includes/Elements/Betterdocs_Category_Box.php:470
5609
- msgid "Transition"
5610
  msgstr ""
5611
 
5612
- #: includes/Elements/Info_Box.php:1459
5613
- msgid "Transition will applied to ms (ex: 300ms)."
5614
  msgstr ""
5615
 
5616
- #: includes/Elements/Content_Ticker.php:92
5617
- msgid "Trending Today"
5618
  msgstr ""
5619
 
5620
- #: includes/templates/admin/elements.php:403
5621
- msgid "Twitter Feed"
5622
  msgstr ""
5623
 
5624
- #: includes/templates/admin/elements.php:409
5625
- msgid "Twitter Feed Carousel"
5626
  msgstr ""
5627
 
5628
- #: includes/Traits/Helper.php:303
5629
- msgid "Two Columns"
5630
  msgstr ""
5631
 
5632
- #: includes/Elements/Fancy_Text.php:194
5633
- msgid "Typing"
5634
  msgstr ""
5635
 
5636
- #: includes/Elements/Fancy_Text.php:363
5637
- msgid "Typing Cursor Color"
5638
  msgstr ""
5639
 
5640
- #: includes/Elements/Fancy_Text.php:211
5641
- msgid "Typing Speed"
5642
  msgstr ""
5643
 
5644
- #: includes/Elements/NinjaForms.php:435 includes/Elements/NinjaForms.php:484
5645
- #: includes/Elements/NinjaForms.php:544 includes/Elements/NinjaForms.php:787
5646
- #: includes/Elements/NinjaForms.php:876 includes/Elements/NinjaForms.php:1355
5647
- #: includes/Elements/NinjaForms.php:1400 includes/Elements/NinjaForms.php:1454
5648
- #: includes/Elements/FluentForm.php:258 includes/Elements/FluentForm.php:319
5649
- #: includes/Elements/FluentForm.php:519 includes/Elements/FluentForm.php:757
5650
- #: includes/Elements/FluentForm.php:1084 includes/Elements/FluentForm.php:1139
5651
- #: includes/Elements/FluentForm.php:1243 includes/Elements/FluentForm.php:1329
5652
- #: includes/Elements/FluentForm.php:1395 includes/Elements/FluentForm.php:1568
5653
- #: includes/Elements/FluentForm.php:1683 includes/Elements/FluentForm.php:1732
5654
- #: includes/Elements/Post_Grid.php:188 includes/Elements/GravityForms.php:499
5655
- #: includes/Elements/GravityForms.php:530
5656
- #: includes/Elements/GravityForms.php:571
5657
- #: includes/Elements/GravityForms.php:830
5658
- #: includes/Elements/GravityForms.php:920
5659
- #: includes/Elements/GravityForms.php:974
5660
- #: includes/Elements/GravityForms.php:1545
5661
- #: includes/Elements/Progress_Bar.php:612
5662
- #: includes/Elements/Advanced_Data_Table.php:251
5663
- #: includes/Elements/Advanced_Data_Table.php:422
5664
- #: includes/Elements/Advanced_Data_Table.php:972
5665
- #: includes/Elements/Advanced_Data_Table.php:1137
5666
- #: includes/Elements/WpForms.php:398 includes/Elements/WpForms.php:447
5667
- #: includes/Elements/WpForms.php:501 includes/Elements/WpForms.php:741
5668
- #: includes/Elements/WpForms.php:819 includes/Elements/WpForms.php:1243
5669
- #: includes/Elements/Caldera_Forms.php:263
5670
- #: includes/Elements/Caldera_Forms.php:324
5671
- #: includes/Elements/Caldera_Forms.php:512
5672
- #: includes/Elements/Caldera_Forms.php:750
5673
- #: includes/Elements/Caldera_Forms.php:839
5674
- #: includes/Elements/Caldera_Forms.php:1260
5675
- #: includes/Elements/Caldera_Forms.php:1375
5676
- #: includes/Elements/Contact_Form_7.php:460
5677
- #: includes/Elements/Contact_Form_7.php:491
5678
- #: includes/Elements/Contact_Form_7.php:670
5679
- #: includes/Elements/Contact_Form_7.php:788
5680
- #: includes/Elements/Contact_Form_7.php:840
5681
- #: includes/Elements/Contact_Form_7.php:1216
5682
- #: includes/Elements/Contact_Form_7.php:1461
5683
- #: includes/Elements/Post_Timeline.php:161
5684
- #: includes/Elements/Post_Timeline.php:217
5685
- msgid "Typography"
5686
  msgstr ""
5687
 
5688
- #: includes/Elements/Creative_Button.php:194
5689
- msgid "Ujarak"
5690
  msgstr ""
5691
 
5692
- #: includes/Traits/Helper.php:1026 includes/Elements/Adv_Tabs.php:219
5693
- #: includes/Elements/Data_Table.php:357 includes/Elements/Cta_Box.php:225
5694
- #: includes/Elements/Countdown.php:346 includes/Elements/Tooltip.php:489
5695
- #: includes/Elements/Testimonial.php:181
5696
- #: includes/Elements/Dual_Color_Header.php:163
5697
- #: includes/Elements/Adv_Accordion.php:201
5698
- #: includes/Elements/Progress_Bar.php:218 includes/Elements/WeForms.php:95
5699
- #: includes/Elements/Info_Box.php:450 includes/Elements/Content_Ticker.php:317
5700
- #: includes/Elements/Team_Member.php:202 includes/Elements/Fancy_Text.php:270
5701
- #: includes/Elements/Pricing_Table.php:556
5702
- #: includes/Elements/Contact_Form_7.php:249
5703
- #: includes/Elements/Twitter_Feed.php:269 includes/Elements/Flip_Box.php:452
5704
- #: includes/Elements/Creative_Button.php:160
5705
- msgid "Unlock more possibilities"
5706
  msgstr ""
5707
 
5708
- #: includes/Elements/Twitter_Feed.php:56
5709
- msgid "Use @ sign with your account name."
5710
  msgstr ""
5711
 
5712
- #: includes/Elements/GravityForms.php:214
5713
- msgid "Use Ajax"
5714
  msgstr ""
5715
 
5716
- #: includes/Elements/GravityForms.php:216
5717
- msgid "Use ajax to submit the form"
5718
  msgstr ""
5719
 
5720
- #: includes/Elements/Creative_Button.php:218
5721
- msgid "Use Gradient Background"
5722
  msgstr ""
5723
 
5724
- #: includes/Elements/Countdown.php:76
5725
- msgid "Use when you select inline labels"
5726
  msgstr ""
5727
 
5728
- #: includes/Elements/Testimonial.php:95 includes/Elements/Testimonial.php:401
5729
- msgid "User Name"
5730
  msgstr ""
5731
 
5732
- #: includes/Elements/Testimonial.php:409
5733
- msgid "User Name Color"
5734
  msgstr ""
5735
 
5736
- #: includes/Elements/NinjaForms.php:194 includes/Elements/NinjaForms.php:1503
5737
- #: includes/Elements/GravityForms.php:259
5738
- #: includes/Elements/GravityForms.php:1604
5739
- #: includes/Elements/Contact_Form_7.php:219
5740
- #: includes/Elements/Contact_Form_7.php:1418
5741
- msgid "Validation Errors"
5742
  msgstr ""
5743
 
5744
- #: includes/Elements/Adv_Tabs.php:62
5745
- msgid "Vertical"
5746
  msgstr ""
5747
 
5748
- #: includes/Elements/Sticky_Video.php:89
5749
- msgid "Video"
5750
  msgstr ""
5751
 
5752
- #: includes/Elements/Sticky_Video.php:243
5753
- msgid "Video Options"
5754
  msgstr ""
5755
 
5756
- #: includes/Elements/Sticky_Video.php:102
5757
- msgid "Vimeo"
5758
  msgstr ""
5759
 
5760
- #: includes/Elements/Content_Ticker.php:133
5761
- msgid "Visible Items"
5762
  msgstr ""
5763
 
5764
- #: includes/Elements/Creative_Button.php:203
5765
- msgid "Wapasha (Pro)"
5766
  msgstr ""
5767
 
5768
- #: includes/Elements/NinjaForms.php:44 includes/Elements/FluentForm.php:50
5769
- #: includes/Elements/Betterdocs_Search_Form.php:65
5770
- #: includes/Elements/Betterdocs_Category_Grid.php:65
5771
- #: includes/Elements/GravityForms.php:84 includes/Elements/WeForms.php:48
5772
- #: includes/Elements/WpForms.php:41 includes/Elements/Caldera_Forms.php:50
5773
- #: includes/Elements/Betterdocs_Category_Box.php:65
5774
- #: includes/Elements/Contact_Form_7.php:87
5775
- msgid "Warning!"
5776
  msgstr ""
5777
 
5778
- #: includes/Elements/Creative_Button.php:200
5779
- msgid "Wave (Pro)"
5780
  msgstr ""
5781
 
5782
- #: includes/Elements/Creative_Button.php:195
5783
- msgid "Wayra"
5784
  msgstr ""
5785
 
5786
- #: includes/Traits/Admin.php:201
5787
- msgid ""
5788
- "We hope you're enjoying Essential Addons for Elementor! Could you please do "
5789
- "us a BIG favor and give it a 5-star rating on WordPress to help us spread "
5790
- "the word and boost our motivation?"
5791
  msgstr ""
5792
 
5793
- #: includes/templates/admin/general.php:72
5794
- msgid ""
5795
- "We love to have you in Essential Addons family. We are making it more "
5796
- "awesome everyday. Take your 2 minutes to review the plugin and spread the "
5797
- "love to encourage us to keep it going."
5798
  msgstr ""
5799
 
5800
- #: includes/templates/admin/elements.php:355
5801
- msgid "weForms"
5802
  msgstr ""
5803
 
5804
- #: includes/templates/admin/go-pro.php:10
5805
- msgid "Why upgrade to Premium Version?"
5806
  msgstr ""
5807
 
5808
- #: includes/Traits/Helper.php:237 includes/Elements/NinjaForms.php:1178
5809
- #: includes/Elements/NinjaForms.php:1192 includes/Elements/FluentForm.php:1444
5810
- #: includes/Elements/FluentForm.php:1458 includes/Elements/Data_Table.php:389
5811
- #: includes/Elements/Data_Table.php:941
5812
- #: includes/Elements/Betterdocs_Search_Form.php:274
5813
- #: includes/Elements/GravityForms.php:1368
5814
- #: includes/Elements/GravityForms.php:1382
5815
- #: includes/Elements/Progress_Bar.php:296
5816
- #: includes/Elements/Sticky_Video.php:390
5817
- #: includes/Elements/Sticky_Video.php:474
5818
- #: includes/Elements/Advanced_Data_Table.php:826
5819
- #: includes/Elements/WpForms.php:1119 includes/Elements/WpForms.php:1133
5820
- #: includes/Elements/Caldera_Forms.php:1136
5821
- #: includes/Elements/Caldera_Forms.php:1150
5822
- #: includes/Elements/Contact_Form_7.php:1093
5823
- #: includes/Elements/Contact_Form_7.php:1107
5824
- #: includes/Elements/Creative_Button.php:400
5825
- msgid "Width"
5826
  msgstr ""
5827
 
5828
- #: includes/Elements/Creative_Button.php:193
5829
- msgid "Winona"
5830
  msgstr ""
5831
 
5832
- #: includes/templates/admin/elements.php:180
5833
- msgid "Woo Product Collections"
5834
  msgstr ""
5835
 
5836
- #. Author of the plugin
5837
- msgid "WPDeveloper"
5838
  msgstr ""
5839
 
5840
- #: includes/templates/admin/general.php:52
5841
- msgid "WPDeveloper Forum"
5842
  msgstr ""
5843
 
5844
- #: includes/Elements/WpForms.php:59 includes/templates/admin/elements.php:379
5845
- msgid "WPForms"
5846
  msgstr ""
5847
 
5848
- #: includes/Classes/WPML/Eael_WPML.php:399
5849
- msgid "WPForms: Description"
5850
  msgstr ""
5851
 
5852
- #: includes/Classes/WPML/Eael_WPML.php:394
5853
- msgid "WPForms: Title"
5854
  msgstr ""
5855
 
5856
- #: includes/Elements/Info_Box.php:233
5857
- msgid ""
5858
- "Write a short description, that will describe the title or something "
5859
- "informational and useful."
5860
- msgstr ""
5861
-
5862
- #: includes/Extensions/Reading_Progress.php:35
5863
- #: includes/Extensions/Reading_Progress.php:71
5864
- #: includes/Elements/NinjaForms.php:86 includes/Elements/NinjaForms.php:953
5865
- #: includes/Elements/FluentForm.php:94 includes/Elements/FluentForm.php:867
5866
- #: includes/Elements/Data_Table.php:932 includes/Elements/GravityForms.php:126
5867
- #: includes/Elements/GravityForms.php:217
5868
- #: includes/Elements/GravityForms.php:1142
5869
- #: includes/Elements/Facebook_Feed.php:257 includes/Elements/Info_Box.php:313
5870
- #: includes/Elements/Info_Box.php:327 includes/Elements/Content_Ticker.php:198
5871
- #: includes/Elements/Content_Ticker.php:231
5872
- #: includes/Elements/Content_Ticker.php:246
5873
- #: includes/Elements/Content_Ticker.php:281 includes/Elements/WpForms.php:79
5874
- #: includes/Elements/WpForms.php:893 includes/Elements/Pricing_Table.php:171
5875
- #: includes/Elements/Caldera_Forms.php:92
5876
- #: includes/Elements/Caldera_Forms.php:913
5877
- #: includes/Elements/Contact_Form_7.php:816
5878
- #: includes/Elements/Contact_Form_7.php:868
5879
- msgid "Yes"
5880
  msgstr ""
5881
 
5882
- #: includes/Elements/Data_Table.php:93 includes/Elements/Cta_Box.php:259
5883
- #: includes/Elements/Twitter_Feed.php:175
5884
- #: includes/Elements/Twitter_Feed.php:196
5885
- #: includes/Elements/Twitter_Feed.php:225
5886
- #: includes/Elements/Twitter_Feed.php:237
5887
- #: includes/Elements/Twitter_Feed.php:249
5888
- msgid "yes"
5889
  msgstr ""
5890
 
5891
- #: includes/templates/admin/general.php:38
5892
- msgid ""
5893
- "You can contribute to make Essential Addons better reporting bugs, creating "
5894
- "issues, pull requests at"
5895
  msgstr ""
5896
 
5897
- #: includes/templates/admin/go-pro.php:14
5898
- msgid "You will also get world class support from our dedicated team, 24/7."
5899
  msgstr ""
5900
 
5901
- #: includes/Elements/Sticky_Video.php:101
5902
- msgid "YouTube"
5903
  msgstr ""
5904
 
5905
- #: includes/Elements/Fancy_Text.php:200
5906
- msgid "Zoom"
5907
  msgstr ""
5908
 
5909
- #: includes/Elements/Flip_Box.php:60
5910
- msgid "Zoom In"
5911
  msgstr ""
5912
 
5913
- #: includes/Elements/Flip_Box.php:61
5914
- msgid "Zoom Out"
5915
  msgstr ""
5916
 
5917
- #: includes/Elements/Post_Grid.php:350
5918
- msgid "ZoomIn"
5919
  msgstr ""
1
+ # Copyright (C) 2020 Essential Addons For Elementor Lite
2
+ # This file is distributed under the same license as the Essential Addons For Elementor Lite package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Essential Addons For Elementor Lite\n"
 
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Poedit-Basepath: ..\n"
10
+ "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"
11
+ "X-Poedit-SearchPath-0: .\n"
12
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:275
17
+ msgid "We can't detect any plugin information. This is most probably because you have not included the code in the plugin main file."
18
  msgstr ""
19
 
20
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:671
21
+ msgid "Want to help make <strong>Essential Addons for Elementor</strong> even more awesome? You can get a <strong>10% discount coupon</strong> for Pro upgrade if you allow. <a class=\"insights-data-we-collect\" href=\"#\">What we collect.</a>"
22
  msgstr ""
23
 
24
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:668
25
+ msgid "Thank you for installing our plugin. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and plugin settings, which we will use to help us make improvements to the plugin. Tracking is completely optional."
 
26
  msgstr ""
27
 
28
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:682
29
+ msgid "Sure, I'd like to help"
30
  msgstr ""
31
 
32
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:683
33
+ msgid "No Thanks"
34
  msgstr ""
35
 
36
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:723
37
+ msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this plugin, including details of new features and special offers?"
38
  msgstr ""
39
 
40
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:730
41
+ msgid "Yes Please"
 
 
42
  msgstr ""
43
 
44
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:731
45
+ msgid "No Thank You"
 
 
46
  msgstr ""
47
 
48
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:765
49
+ msgid "Sorry to see you go"
 
 
50
  msgstr ""
51
 
52
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:766
53
+ msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?"
54
  msgstr ""
55
 
56
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:769
57
+ msgid "I no longer need the plugin"
 
 
58
  msgstr ""
59
 
60
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:771
61
+ msgid "I found a better plugin"
 
 
62
  msgstr ""
63
 
64
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:772
65
+ msgid "Please share which plugin"
 
66
  msgstr ""
67
 
68
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:774
69
+ msgid "I couldn't get the plugin to work"
70
  msgstr ""
71
 
72
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:775
73
+ msgid "It's a temporary deactivation"
74
  msgstr ""
75
 
76
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:778
77
+ msgid "Other"
 
 
78
  msgstr ""
79
 
80
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:779
81
+ msgid "Please share the reason"
 
 
82
  msgstr ""
83
 
84
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:840
85
+ msgid "Submitting form"
 
 
 
86
  msgstr ""
87
 
88
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:965
89
+ msgid "Submit and Deactivate"
 
 
90
  msgstr ""
91
 
92
+ #: ../includes/Classes/Plugin_Usage_Tracker.php:965
93
+ msgid "Just Deactivate"
 
 
 
 
 
94
  msgstr ""
95
 
96
+ #: ../includes/Classes/WPDeveloper_Core_Installer.php:60
97
+ msgid "You don't have permission to install the plugins"
 
 
98
  msgstr ""
99
 
100
+ #: ../includes/Classes/WPDeveloper_Core_Installer.php:67
101
+ msgid "You don't have set any slug and file name to install the plugins"
 
 
102
  msgstr ""
103
 
104
+ #: ../includes/Classes/WPDeveloper_Dashboard_Widget.php:45
105
+ msgid "WPDeveloper Feed"
 
 
 
106
  msgstr ""
107
 
108
+ #: ../includes/Classes/WPDeveloper_Dashboard_Widget.php:77
109
+ msgid "Posted on %s"
 
 
 
110
  msgstr ""
111
 
112
+ #: ../includes/Classes/WPDeveloper_Dashboard_Widget.php:67
113
+ msgid "No recent news."
 
 
 
114
  msgstr ""
115
 
116
+ #: ../includes/Classes/WPDeveloper_Dashboard_Widget.php:83
117
+ msgid "Keep Your Eyes on"
 
 
118
  msgstr ""
119
 
120
+ #: ../includes/Classes/WPDeveloper_Notice.php:447
121
+ msgid "Install Now!"
 
 
122
  msgstr ""
123
 
124
+ #: ../includes/Elements/Advanced_Data_Table.php:25, ../includes/templates/admin/elements.php:146
125
+ msgid "Advanced Data Table"
 
 
126
  msgstr ""
127
 
128
+ #: ../includes/Elements/Advanced_Data_Table.php:72
129
+ msgid "Data Source"
 
 
130
  msgstr ""
131
 
132
+ #: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:83, ../includes/Elements/Sticky_Video.php:141, ../includes/Traits/Helper.php:81
133
+ msgid "Source"
134
  msgstr ""
135
 
136
+ #: ../includes/Elements/Advanced_Data_Table.php:83
137
+ msgid "Static Data"
138
  msgstr ""
139
 
140
+ #: ../includes/Elements/Advanced_Data_Table.php:91
141
+ msgid "Database(PRO)"
142
  msgstr ""
143
 
144
+ #: ../includes/Elements/Advanced_Data_Table.php:92
145
+ msgid "Remote Database(PRO)"
146
  msgstr ""
147
 
148
+ #: ../includes/Elements/Advanced_Data_Table.php:93
149
+ msgid "Google Sheets(PRO)"
150
  msgstr ""
151
 
152
+ #: ../includes/Elements/Advanced_Data_Table.php:94
153
+ msgid "TablePress(PRO)"
154
  msgstr ""
155
 
156
+ #: ../includes/Elements/Advanced_Data_Table.php:86
157
+ msgid "Database"
158
  msgstr ""
159
 
160
+ #: ../includes/Elements/Advanced_Data_Table.php:87
161
+ msgid "Remote Database"
162
  msgstr ""
163
 
164
+ #: ../includes/Elements/Advanced_Data_Table.php:88
165
+ msgid "Google Sheets"
166
  msgstr ""
167
 
168
+ #: ../includes/Elements/Advanced_Data_Table.php:89
169
+ msgid "TablePress"
170
  msgstr ""
171
 
172
+ #: ../includes/Elements/Advanced_Data_Table.php:97
173
+ msgid "Ninja Tables"
174
  msgstr ""
175
 
176
+ #: ../includes/Elements/Advanced_Data_Table.php:121
177
+ msgid "Advanced Features"
178
  msgstr ""
179
 
180
+ #: ../includes/Elements/Advanced_Data_Table.php:128
181
+ msgid "Sort"
182
  msgstr ""
183
 
184
+ #: ../includes/Elements/Advanced_Data_Table.php:138, ../includes/Elements/Advanced_Data_Table.php:150, ../includes/Elements/Advanced_Data_Table.php:828
185
+ msgid "Search"
186
  msgstr ""
187
 
188
+ #: ../includes/Elements/Advanced_Data_Table.php:148, ../includes/Elements/Caldera_Forms.php:157, ../includes/Elements/Caldera_Forms.php:890, ../includes/Elements/Contact_Form_7.php:827, ../includes/Elements/Filterable_Gallery.php:2265, ../includes/Elements/FluentForm.php:169, ../includes/Elements/FluentForm.php:855, ../includes/Elements/Formstack.php:238, ../includes/Elements/Formstack.php:1084, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:1157, ../includes/Elements/Login_Register.php:1006, ../includes/Elements/NinjaForms.php:171, ../includes/Elements/NinjaForms.php:931, ../includes/Elements/WpForms.php:178, ../includes/Elements/WpForms.php:874
189
+ msgid "Placeholder"
190
  msgstr ""
191
 
192
+ #: ../includes/Elements/Advanced_Data_Table.php:160, ../includes/Elements/Advanced_Data_Table.php:1023, ../includes/Elements/Facebook_Feed.php:279, ../includes/Elements/FluentForm.php:1673, ../includes/Elements/Formstack.php:1587
193
+ msgid "Pagination"
194
  msgstr ""
195
 
196
+ #: ../includes/Elements/Advanced_Data_Table.php:170
197
+ msgid "Pagination Type"
 
 
198
  msgstr ""
199
 
200
+ #: ../includes/Elements/Advanced_Data_Table.php:173, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Betterdocs_Category_Grid.php:1184, ../includes/Elements/Event_Calendar.php:647, ../includes/Elements/Flip_Box.php:418, ../includes/Elements/FluentForm.php:1907, ../includes/Elements/Formstack.php:1767, ../includes/Elements/Info_Box.php:323, ../includes/Elements/Pricing_Table.php:434, ../includes/Elements/Pricing_Table.php:1710, ../includes/Elements/Woo_Checkout.php:1014, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:2085
201
+ msgid "Button"
202
  msgstr ""
203
 
204
+ #: ../includes/Elements/Advanced_Data_Table.php:174
205
+ msgid "Select"
206
  msgstr ""
207
 
208
+ #: ../includes/Elements/Advanced_Data_Table.php:186
209
+ msgid "Rows Per Page"
210
  msgstr ""
211
 
212
+ #: ../includes/Elements/Advanced_Data_Table.php:200
213
+ msgid "Note: Pagination will be applied on Live Preview only."
214
  msgstr ""
215
 
216
+ #: ../includes/Elements/Advanced_Data_Table.php:214
217
+ msgid "Export/Import"
218
  msgstr ""
219
 
220
+ #: ../includes/Elements/Advanced_Data_Table.php:221, ../includes/Elements/Data_Table.php:419
221
+ msgid "Export table as CSV file"
222
  msgstr ""
223
 
224
+ #: ../includes/Elements/Advanced_Data_Table.php:223, ../includes/Elements/Data_Table.php:412, ../includes/Elements/Data_Table.php:421
225
+ msgid "Export"
226
  msgstr ""
227
 
228
+ #: ../includes/Elements/Advanced_Data_Table.php:231, ../includes/Elements/Advanced_Data_Table.php:253, ../includes/Elements/Advanced_Data_Table.php:256
229
+ msgid "Import"
230
  msgstr ""
231
 
232
+ #: ../includes/Elements/Advanced_Data_Table.php:270
233
+ msgid "Table"
234
  msgstr ""
235
 
236
+ #: ../includes/Elements/Advanced_Data_Table.php:278, ../includes/Elements/Advanced_Data_Table.php:839, ../includes/Elements/Advanced_Data_Table.php:1034, ../includes/Elements/Betterdocs_Search_Form.php:290, ../includes/Elements/Caldera_Forms.php:1154, ../includes/Elements/Caldera_Forms.php:1168, ../includes/Elements/Contact_Form_7.php:1115, ../includes/Elements/Contact_Form_7.php:1129, ../includes/Elements/Creative_Button.php:417, ../includes/Elements/Data_Table.php:471, ../includes/Elements/Data_Table.php:1024, ../includes/Elements/Filterable_Gallery.php:2130, ../includes/Elements/Filterable_Gallery.php:2288, ../includes/Elements/FluentForm.php:1473, ../includes/Elements/FluentForm.php:1487, ../includes/Elements/Formstack.php:1389, ../includes/Elements/Formstack.php:1403, ../includes/Elements/GravityForms.php:1623, ../includes/Elements/GravityForms.php:1739, ../includes/Elements/GravityForms.php:1753, ../includes/Elements/GravityForms.php:1986, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1930, ../includes/Elements/NinjaForms.php:1318, ../includes/Elements/NinjaForms.php:1332, ../includes/Elements/Progress_Bar.php:349, ../includes/Elements/Sticky_Video.php:434, ../includes/Elements/Sticky_Video.php:518, ../includes/Elements/WpForms.php:1141, ../includes/Elements/WpForms.php:1155, ../includes/Extensions/Table_of_Content.php:381
237
+ msgid "Width"
238
  msgstr ""
239
 
240
+ #: ../includes/Elements/Advanced_Data_Table.php:315, ../includes/Elements/Advanced_Data_Table.php:983, ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1381, ../includes/Elements/Adv_Accordion.php:291, ../includes/Elements/Adv_Accordion.php:497, ../includes/Elements/Adv_Accordion.php:569, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:738, ../includes/Elements/Adv_Accordion.php:862, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:296, ../includes/Elements/Adv_Tabs.php:486, ../includes/Elements/Adv_Tabs.php:552, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:716, ../includes/Elements/Betterdocs_Category_Box.php:310, ../includes/Elements/Betterdocs_Category_Box.php:378, ../includes/Elements/Betterdocs_Category_Box.php:499, ../includes/Elements/Betterdocs_Category_Box.php:575, ../includes/Elements/Betterdocs_Category_Box.php:863, ../includes/Elements/Betterdocs_Category_Box.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:337, ../includes/Elements/Betterdocs_Category_Grid.php:385, ../includes/Elements/Betterdocs_Category_Grid.php:470, ../includes/Elements/Betterdocs_Category_Grid.php:511, ../includes/Elements/Betterdocs_Category_Grid.php:636, ../includes/Elements/Betterdocs_Category_Grid.php:689, ../includes/Elements/Betterdocs_Category_Grid.php:840, ../includes/Elements/Betterdocs_Category_Grid.php:1080, ../includes/Elements/Betterdocs_Category_Grid.php:1280, ../includes/Elements/Betterdocs_Category_Grid.php:1356, ../includes/Elements/Betterdocs_Search_Form.php:344, ../includes/Elements/Betterdocs_Search_Form.php:402, ../includes/Elements/Betterdocs_Search_Form.php:512, ../includes/Elements/Caldera_Forms.php:612, ../includes/Elements/Caldera_Forms.php:808, ../includes/Elements/Caldera_Forms.php:1224, ../includes/Elements/Caldera_Forms.php:1382, ../includes/Elements/Contact_Form_7.php:667, ../includes/Elements/Contact_Form_7.php:732, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1422, ../includes/Elements/Contact_Form_7.php:1497, ../includes/Elements/Contact_Form_7.php:1574, ../includes/Elements/Content_Ticker.php:636, ../includes/Elements/Countdown.php:603, ../includes/Elements/Cta_Box.php:449, ../includes/Elements/Cta_Box.php:726, ../includes/Elements/Cta_Box.php:913, ../includes/Elements/Data_Table.php:600, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:831, ../includes/Elements/Data_Table.php:1091, ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Event_Calendar.php:698, ../includes/Elements/Event_Calendar.php:765, ../includes/Elements/Event_Calendar.php:819, ../includes/Elements/Event_Calendar.php:1492, ../includes/Elements/Event_Calendar.php:1563, ../includes/Elements/Facebook_Feed.php:341, ../includes/Elements/Filterable_Gallery.php:855, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1114, ../includes/Elements/Filterable_Gallery.php:1261, ../includes/Elements/Filterable_Gallery.php:1318, ../includes/Elements/Filterable_Gallery.php:1537, ../includes/Elements/Filterable_Gallery.php:1810, ../includes/Elements/Filterable_Gallery.php:1871, ../includes/Elements/Filterable_Gallery.php:2382, ../includes/Elements/Filterable_Gallery.php:2499, ../includes/Elements/Flip_Box.php:756, ../includes/Elements/Flip_Box.php:869, ../includes/Elements/FluentForm.php:630, ../includes/Elements/FluentForm.php:826, ../includes/Elements/FluentForm.php:1543, ../includes/Elements/FluentForm.php:1820, ../includes/Elements/FluentForm.php:1947, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:859, ../includes/Elements/Formstack.php:1055, ../includes/Elements/Formstack.php:1459, ../includes/Elements/Formstack.php:1680, ../includes/Elements/Formstack.php:1809, ../includes/Elements/GravityForms.php:827, ../includes/Elements/GravityForms.php:891, ../includes/Elements/GravityForms.php:1647, ../includes/Elements/GravityForms.php:1816, ../includes/Elements/GravityForms.php:2043, ../includes/Elements/Image_Accordion.php:284, ../includes/Elements/Image_Accordion.php:392, ../includes/Elements/Info_Box.php:538, ../includes/Elements/Info_Box.php:593, ../includes/Elements/Info_Box.php:789, ../includes/Elements/Info_Box.php:870, ../includes/Elements/Info_Box.php:1021, ../includes/Elements/Info_Box.php:1102, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:651, ../includes/Elements/NinjaForms.php:849, ../includes/Elements/NinjaForms.php:1392, ../includes/Elements/Post_Grid.php:271, ../includes/Elements/Pricing_Table.php:1661, ../includes/Elements/Pricing_Table.php:1827, ../includes/Elements/Team_Member.php:394, ../includes/Elements/Team_Member.php:482, ../includes/Elements/Testimonial.php:396, ../includes/Elements/Tooltip.php:428, ../includes/Elements/Tooltip.php:471, ../includes/Elements/Twitter_Feed.php:364, ../includes/Elements/Woo_Checkout.php:1234, ../includes/Elements/Woo_Checkout.php:1480, ../includes/Elements/WpForms.php:606, ../includes/Elements/WpForms.php:792, ../includes/Elements/WpForms.php:1211, ../includes/Extensions/Table_of_Content.php:495, ../includes/Traits/Helper.php:1056, ../includes/Traits/Helper.php:1110, ../includes/Traits/Helper.php:1240
241
+ msgid "Border"
242
  msgstr ""
243
 
244
+ #: ../includes/Elements/Advanced_Data_Table.php:341, ../includes/Elements/Advanced_Data_Table.php:1009, ../includes/Elements/Advanced_Data_Table.php:1207, ../includes/Elements/Advanced_Data_Table.php:1279, ../includes/Elements/Advanced_Data_Table.php:1403, ../includes/Elements/Adv_Accordion.php:298, ../includes/Elements/Adv_Accordion.php:504, ../includes/Elements/Adv_Accordion.php:576, ../includes/Elements/Adv_Accordion.php:648, ../includes/Elements/Adv_Tabs.php:304, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:559, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:723, ../includes/Elements/Betterdocs_Category_Box.php:318, ../includes/Elements/Betterdocs_Category_Box.php:386, ../includes/Elements/Betterdocs_Category_Box.php:507, ../includes/Elements/Betterdocs_Category_Box.php:584, ../includes/Elements/Betterdocs_Category_Box.php:874, ../includes/Elements/Betterdocs_Category_Box.php:979, ../includes/Elements/Betterdocs_Category_Grid.php:345, ../includes/Elements/Betterdocs_Category_Grid.php:393, ../includes/Elements/Betterdocs_Category_Grid.php:478, ../includes/Elements/Betterdocs_Category_Grid.php:519, ../includes/Elements/Betterdocs_Category_Grid.php:644, ../includes/Elements/Betterdocs_Category_Grid.php:697, ../includes/Elements/Betterdocs_Category_Grid.php:851, ../includes/Elements/Betterdocs_Category_Grid.php:1288, ../includes/Elements/Betterdocs_Category_Grid.php:1364, ../includes/Elements/Betterdocs_Search_Form.php:195, ../includes/Elements/Caldera_Forms.php:475, ../includes/Elements/Caldera_Forms.php:623, ../includes/Elements/Caldera_Forms.php:1041, ../includes/Elements/Caldera_Forms.php:1067, ../includes/Elements/Caldera_Forms.php:1234, ../includes/Elements/Contact_Form_7.php:390, ../includes/Elements/Contact_Form_7.php:678, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1026, ../includes/Elements/Contact_Form_7.php:1194, ../includes/Elements/Content_Ticker.php:489, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Countdown.php:611, ../includes/Elements/Creative_Button.php:298, ../includes/Elements/Cta_Box.php:457, ../includes/Elements/Cta_Box.php:734, ../includes/Elements/Cta_Box.php:921, ../includes/Elements/Dual_Color_Header.php:280, ../includes/Elements/Event_Calendar.php:706, ../includes/Elements/Event_Calendar.php:773, ../includes/Elements/Event_Calendar.php:827, ../includes/Elements/Event_Calendar.php:1063, ../includes/Elements/Event_Calendar.php:1232, ../includes/Elements/Event_Calendar.php:1500, ../includes/Elements/Event_Calendar.php:1571, ../includes/Elements/Facebook_Feed.php:366, ../includes/Elements/Fancy_Text.php:415, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:863, ../includes/Elements/Filterable_Gallery.php:976, ../includes/Elements/Filterable_Gallery.php:1042, ../includes/Elements/Filterable_Gallery.php:1122, ../includes/Elements/Filterable_Gallery.php:1326, ../includes/Elements/Filterable_Gallery.php:1818, ../includes/Elements/Filterable_Gallery.php:1879, ../includes/Elements/Filterable_Gallery.php:2044, ../includes/Elements/Filterable_Gallery.php:2173, ../includes/Elements/Filterable_Gallery.php:2308, ../includes/Elements/Filterable_Gallery.php:2404, ../includes/Elements/Filterable_Gallery.php:2513, ../includes/Elements/Flip_Box.php:594, ../includes/Elements/Flip_Box.php:655, ../includes/Elements/Flip_Box.php:779, ../includes/Elements/Flip_Box.php:892, ../includes/Elements/Flip_Box.php:1151, ../includes/Elements/FluentForm.php:493, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:1006, ../includes/Elements/FluentForm.php:1032, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1831, ../includes/Elements/FluentForm.php:1955, ../includes/Elements/FluentForm.php:2009, ../includes/Elements/Formstack.php:393, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1196, ../includes/Elements/Formstack.php:1222, ../includes/Elements/Formstack.php:1469, ../includes/Elements/Formstack.php:1691, ../includes/Elements/Formstack.php:1817, ../includes/Elements/Formstack.php:1873, ../includes/Elements/GravityForms.php:428, ../includes/Elements/GravityForms.php:838, ../includes/Elements/GravityForms.php:1308, ../includes/Elements/GravityForms.php:1504, ../includes/Elements/GravityForms.php:1657, ../includes/Elements/GravityForms.php:1826, ../includes/Elements/GravityForms.php:2053, ../includes/Elements/Image_Accordion.php:292, ../includes/Elements/Image_Accordion.php:380, ../includes/Elements/Info_Box.php:1208, ../includes/Elements/Login_Register.php:1483, ../includes/Elements/Login_Register.php:1718, ../includes/Elements/Login_Register.php:1892, ../includes/Elements/Login_Register.php:2048, ../includes/Elements/Login_Register.php:2188, ../includes/Elements/Login_Register.php:2282, ../includes/Elements/Login_Register.php:2373, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3077, ../includes/Elements/Login_Register.php:3114, ../includes/Elements/Login_Register.php:3398, ../includes/Elements/Login_Register.php:3435, ../includes/Elements/NinjaForms.php:359, ../includes/Elements/NinjaForms.php:662, ../includes/Elements/NinjaForms.php:1086, ../includes/Elements/NinjaForms.php:1113, ../includes/Elements/NinjaForms.php:1402, ../includes/Elements/Post_Grid.php:279, ../includes/Elements/Pricing_Table.php:709, ../includes/Elements/Pricing_Table.php:1435, ../includes/Elements/Pricing_Table.php:1684, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Sticky_Video.php:584, ../includes/Elements/Team_Member.php:402, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Team_Member.php:748, ../includes/Elements/Testimonial.php:415, ../includes/Elements/Tooltip.php:488, ../includes/Elements/Twitter_Feed.php:372, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:251, ../includes/Elements/WeForms.php:374, ../includes/Elements/WeForms.php:680, ../includes/Elements/Woo_Checkout.php:378, ../includes/Elements/Woo_Checkout.php:523, ../includes/Elements/Woo_Checkout.php:719, ../includes/Elements/Woo_Checkout.php:967, ../includes/Elements/Woo_Checkout.php:1120, ../includes/Elements/Woo_Checkout.php:1243, ../includes/Elements/Woo_Checkout.php:1418, ../includes/Elements/Woo_Checkout.php:1626, ../includes/Elements/Woo_Checkout.php:1828, ../includes/Elements/Woo_Checkout.php:1922, ../includes/Elements/Woo_Checkout.php:2202, ../includes/Elements/WpForms.php:326, ../includes/Elements/WpForms.php:617, ../includes/Elements/WpForms.php:1025, ../includes/Elements/WpForms.php:1051, ../includes/Elements/WpForms.php:1221, ../includes/Extensions/Table_of_Content.php:518, ../includes/Extensions/Table_of_Content.php:733, ../includes/Traits/Helper.php:1064, ../includes/Traits/Helper.php:1118, ../includes/Traits/Helper.php:1248
245
+ msgid "Border Radius"
246
  msgstr ""
247
 
248
+ #: ../includes/Elements/Advanced_Data_Table.php:354, ../includes/Elements/Advanced_Data_Table.php:1417, ../includes/Elements/Betterdocs_Category_Grid.php:327, ../includes/Elements/Betterdocs_Category_Grid.php:375, ../includes/Elements/Event_Calendar.php:585, ../includes/Elements/Event_Calendar.php:1524, ../includes/Elements/Event_Calendar.php:1598, ../includes/Elements/Progress_Bar.php:645, ../includes/Extensions/Table_of_Content.php:507, ../includes/Extensions/Table_of_Content.php:752
249
+ msgid "Box Shadow"
250
  msgstr ""
251
 
252
+ #: ../includes/Elements/Advanced_Data_Table.php:364
253
+ msgid "Head"
254
  msgstr ""
255
 
256
+ #: ../includes/Elements/Advanced_Data_Table.php:373, ../includes/Elements/Advanced_Data_Table.php:492, ../includes/Elements/Advanced_Data_Table.php:950, ../includes/Elements/Advanced_Data_Table.php:1100, ../includes/Elements/Advanced_Data_Table.php:1308, ../includes/Elements/Caldera_Forms.php:281, ../includes/Elements/Caldera_Forms.php:342, ../includes/Elements/Caldera_Forms.php:530, ../includes/Elements/Caldera_Forms.php:768, ../includes/Elements/Caldera_Forms.php:857, ../includes/Elements/Caldera_Forms.php:1278, ../includes/Elements/Caldera_Forms.php:1393, ../includes/Elements/Contact_Form_7.php:481, ../includes/Elements/Contact_Form_7.php:512, ../includes/Elements/Contact_Form_7.php:691, ../includes/Elements/Contact_Form_7.php:810, ../includes/Elements/Contact_Form_7.php:862, ../includes/Elements/Contact_Form_7.php:1238, ../includes/Elements/Contact_Form_7.php:1483, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:657, ../includes/Elements/Event_Calendar.php:871, ../includes/Elements/Event_Calendar.php:946, ../includes/Elements/Event_Calendar.php:980, ../includes/Elements/Event_Calendar.php:1224, ../includes/Elements/Event_Calendar.php:1287, ../includes/Elements/Event_Calendar.php:1316, ../includes/Elements/Event_Calendar.php:1384, ../includes/Elements/Event_Calendar.php:1542, ../includes/Elements/Filterable_Gallery.php:1946, ../includes/Elements/Filterable_Gallery.php:1991, ../includes/Elements/Filterable_Gallery.php:2025, ../includes/Elements/Filterable_Gallery.php:2080, ../includes/Elements/Filterable_Gallery.php:2372, ../includes/Elements/Filterable_Gallery.php:2530, ../includes/Elements/FluentForm.php:287, ../includes/Elements/FluentForm.php:348, ../includes/Elements/FluentForm.php:548, ../includes/Elements/FluentForm.php:786, ../includes/Elements/FluentForm.php:1113, ../includes/Elements/FluentForm.php:1168, ../includes/Elements/FluentForm.php:1272, ../includes/Elements/FluentForm.php:1358, ../includes/Elements/FluentForm.php:1424, ../includes/Elements/FluentForm.php:1597, ../includes/Elements/FluentForm.php:1730, ../includes/Elements/FluentForm.php:1927, ../includes/Elements/FluentForm.php:2076, ../includes/Elements/FluentForm.php:2125, ../includes/Elements/Formstack.php:488, ../includes/Elements/Formstack.php:537, ../includes/Elements/Formstack.php:591, ../includes/Elements/Formstack.php:665, ../includes/Elements/Formstack.php:720, ../includes/Elements/Formstack.php:803, ../includes/Elements/Formstack.php:1015, ../includes/Elements/Formstack.php:1513, ../includes/Elements/Formstack.php:1646, ../includes/Elements/Formstack.php:1787, ../includes/Elements/Formstack.php:1947, ../includes/Elements/GravityForms.php:520, ../includes/Elements/GravityForms.php:551, ../includes/Elements/GravityForms.php:592, ../includes/Elements/GravityForms.php:851, ../includes/Elements/GravityForms.php:940, ../includes/Elements/GravityForms.php:994, ../includes/Elements/GravityForms.php:1130, ../includes/Elements/GravityForms.php:1590, ../includes/Elements/GravityForms.php:1925, ../includes/Elements/GravityForms.php:2146, ../includes/Elements/GravityForms.php:2339, ../includes/Elements/NinjaForms.php:457, ../includes/Elements/NinjaForms.php:506, ../includes/Elements/NinjaForms.php:566, ../includes/Elements/NinjaForms.php:809, ../includes/Elements/NinjaForms.php:898, ../includes/Elements/NinjaForms.php:1495, ../includes/Elements/NinjaForms.php:1540, ../includes/Elements/NinjaForms.php:1594, ../includes/Elements/Post_Grid.php:360, ../includes/Elements/Post_Grid.php:459, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:823, ../includes/Elements/Post_Timeline.php:199, ../includes/Elements/Post_Timeline.php:255, ../includes/Elements/Progress_Bar.php:665, ../includes/Elements/Woo_Checkout.php:1023, ../includes/Elements/Woo_Checkout.php:1321, ../includes/Elements/WpForms.php:420, ../includes/Elements/WpForms.php:469, ../includes/Elements/WpForms.php:523, ../includes/Elements/WpForms.php:763, ../includes/Elements/WpForms.php:841, ../includes/Elements/WpForms.php:1265
257
+ msgid "Typography"
 
258
  msgstr ""
259
 
260
+ #: ../includes/Elements/Advanced_Data_Table.php:381, ../includes/Elements/Advanced_Data_Table.php:500, ../includes/Elements/Betterdocs_Category_Grid.php:1380, ../includes/Elements/Countdown.php:1009, ../includes/Elements/Login_Register.php:2486
261
+ msgid "Text Alignment"
262
  msgstr ""
263
 
264
+ #: ../includes/Elements/Advanced_Data_Table.php:385, ../includes/Elements/Advanced_Data_Table.php:504, ../includes/Elements/Advanced_Data_Table.php:930, ../includes/Elements/Advanced_Data_Table.php:1077, ../includes/Elements/Adv_Accordion.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1384, ../includes/Elements/Betterdocs_Category_Grid.php:1409, ../includes/Elements/Caldera_Forms.php:228, ../includes/Elements/Caldera_Forms.php:410, ../includes/Elements/Caldera_Forms.php:556, ../includes/Elements/Caldera_Forms.php:1131, ../includes/Elements/Contact_Form_7.php:325, ../includes/Elements/Contact_Form_7.php:437, ../includes/Elements/Contact_Form_7.php:1090, ../includes/Elements/Content_Ticker.php:316, ../includes/Elements/Countdown.php:116, ../includes/Elements/Countdown.php:1014, ../includes/Elements/Creative_Button.php:395, ../includes/Elements/Cta_Box.php:99, ../includes/Elements/Data_Table.php:503, ../includes/Elements/Data_Table.php:726, ../includes/Elements/Data_Table.php:975, ../includes/Elements/Dual_Color_Header.php:173, ../includes/Elements/Event_Calendar.php:895, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Fancy_Text.php:171, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Filterable_Gallery.php:1283, ../includes/Elements/Filterable_Gallery.php:1666, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:428, ../includes/Elements/FluentForm.php:574, ../includes/Elements/FluentForm.php:1205, ../includes/Elements/FluentForm.php:1450, ../includes/Elements/Formstack.php:328, ../includes/Elements/Formstack.php:443, ../includes/Elements/Formstack.php:757, ../includes/Elements/Formstack.php:1366, ../includes/Elements/GravityForms.php:339, ../includes/Elements/GravityForms.php:476, ../includes/Elements/GravityForms.php:621, ../includes/Elements/GravityForms.php:1713, ../includes/Elements/GravityForms.php:1963, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Info_Box.php:277, ../includes/Elements/Login_Register.php:659, ../includes/Elements/Login_Register.php:692, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3028, ../includes/Elements/Login_Register.php:3348, ../includes/Elements/NinjaForms.php:270, ../includes/Elements/NinjaForms.php:413, ../includes/Elements/NinjaForms.php:595, ../includes/Elements/NinjaForms.php:1293, ../includes/Elements/Post_Grid.php:436, ../includes/Elements/Post_Grid.php:589, ../includes/Elements/Post_Grid.php:657, ../includes/Elements/Post_Grid.php:752, ../includes/Elements/Post_Grid.php:835, ../includes/Elements/Post_Timeline.php:233, ../includes/Elements/Post_Timeline.php:289, ../includes/Elements/Pricing_Table.php:230, ../includes/Elements/Pricing_Table.php:335, ../includes/Elements/Pricing_Table.php:603, ../includes/Elements/Pricing_Table.php:743, ../includes/Elements/Pricing_Table.php:768, ../includes/Elements/Progress_Bar.php:314, ../includes/Elements/Progress_Bar.php:525, ../includes/Elements/Team_Member.php:361, ../includes/Elements/Testimonial.php:275, ../includes/Elements/Tooltip.php:175, ../includes/Elements/Tooltip.php:280, ../includes/Elements/Tooltip.php:369, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:163, ../includes/Elements/WeForms.php:593, ../includes/Elements/WpForms.php:259, ../includes/Elements/WpForms.php:376, ../includes/Elements/WpForms.php:550, ../includes/Elements/WpForms.php:1115, ../includes/Extensions/Table_of_Content.php:412, ../includes/Traits/Helper.php:446, ../includes/Traits/Helper.php:1329, ../includes/Traits/Helper.php:2807, ../includes/Traits/Helper.php:2808
265
+ msgid "Left"
266
  msgstr ""
267
 
268
+ #: ../includes/Elements/Advanced_Data_Table.php:389, ../includes/Elements/Advanced_Data_Table.php:508, ../includes/Elements/Advanced_Data_Table.php:934, ../includes/Elements/Advanced_Data_Table.php:1081, ../includes/Elements/Betterdocs_Category_Grid.php:1388, ../includes/Elements/Betterdocs_Category_Grid.php:1413, ../includes/Elements/Caldera_Forms.php:232, ../includes/Elements/Caldera_Forms.php:414, ../includes/Elements/Caldera_Forms.php:560, ../includes/Elements/Caldera_Forms.php:1135, ../includes/Elements/Contact_Form_7.php:329, ../includes/Elements/Contact_Form_7.php:441, ../includes/Elements/Contact_Form_7.php:1094, ../includes/Elements/Countdown.php:120, ../includes/Elements/Countdown.php:1018, ../includes/Elements/Creative_Button.php:399, ../includes/Elements/Cta_Box.php:100, ../includes/Elements/Data_Table.php:507, ../includes/Elements/Data_Table.php:730, ../includes/Elements/Data_Table.php:979, ../includes/Elements/Dual_Color_Header.php:177, ../includes/Elements/Event_Calendar.php:899, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Fancy_Text.php:175, ../includes/Elements/Filterable_Gallery.php:755, ../includes/Elements/Filterable_Gallery.php:1287, ../includes/Elements/Filterable_Gallery.php:1670, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/FluentForm.php:237, ../includes/Elements/FluentForm.php:432, ../includes/Elements/FluentForm.php:578, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1454, ../includes/Elements/Formstack.php:332, ../includes/Elements/Formstack.php:447, ../includes/Elements/Formstack.php:761, ../includes/Elements/Formstack.php:1370, ../includes/Elements/GravityForms.php:343, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Image_Accordion.php:100, ../includes/Elements/Image_Accordion.php:123, ../includes/Elements/Info_Box.php:281, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3032, ../includes/Elements/Login_Register.php:3309, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3352, ../includes/Elements/NinjaForms.php:274, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1297, ../includes/Elements/Post_Grid.php:440, ../includes/Elements/Post_Grid.php:593, ../includes/Elements/Post_Grid.php:661, ../includes/Elements/Post_Grid.php:756, ../includes/Elements/Post_Grid.php:839, ../includes/Elements/Post_Timeline.php:237, ../includes/Elements/Post_Timeline.php:293, ../includes/Elements/Pricing_Table.php:747, ../includes/Elements/Pricing_Table.php:772, ../includes/Elements/Progress_Bar.php:318, ../includes/Elements/Progress_Bar.php:529, ../includes/Elements/Team_Member.php:365, ../includes/Elements/Testimonial.php:279, ../includes/Elements/Tooltip.php:179, ../includes/Elements/Tooltip.php:373, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:167, ../includes/Elements/WeForms.php:597, ../includes/Elements/WpForms.php:263, ../includes/Elements/WpForms.php:380, ../includes/Elements/WpForms.php:554, ../includes/Elements/WpForms.php:1119, ../includes/Traits/Helper.php:445, ../includes/Traits/Helper.php:1333
269
+ msgid "Center"
270
  msgstr ""
271
 
272
+ #: ../includes/Elements/Advanced_Data_Table.php:393, ../includes/Elements/Advanced_Data_Table.php:512, ../includes/Elements/Advanced_Data_Table.php:938, ../includes/Elements/Advanced_Data_Table.php:1085, ../includes/Elements/Adv_Accordion.php:101, ../includes/Elements/Betterdocs_Category_Grid.php:1392, ../includes/Elements/Betterdocs_Category_Grid.php:1417, ../includes/Elements/Caldera_Forms.php:236, ../includes/Elements/Caldera_Forms.php:418, ../includes/Elements/Caldera_Forms.php:564, ../includes/Elements/Caldera_Forms.php:1139, ../includes/Elements/Contact_Form_7.php:333, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1098, ../includes/Elements/Content_Ticker.php:317, ../includes/Elements/Countdown.php:124, ../includes/Elements/Countdown.php:1022, ../includes/Elements/Creative_Button.php:403, ../includes/Elements/Cta_Box.php:101, ../includes/Elements/Data_Table.php:511, ../includes/Elements/Data_Table.php:734, ../includes/Elements/Data_Table.php:983, ../includes/Elements/Dual_Color_Header.php:181, ../includes/Elements/Event_Calendar.php:903, ../includes/Elements/Event_Calendar.php:1035, ../includes/Elements/Fancy_Text.php:179, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:759, ../includes/Elements/Filterable_Gallery.php:1291, ../includes/Elements/Filterable_Gallery.php:1674, ../includes/Elements/Flip_Box.php:385, ../includes/Elements/FluentForm.php:241, ../includes/Elements/FluentForm.php:436, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1458, ../includes/Elements/Formstack.php:336, ../includes/Elements/Formstack.php:451, ../includes/Elements/Formstack.php:765, ../includes/Elements/Formstack.php:1374, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:104, ../includes/Elements/Info_Box.php:285, ../includes/Elements/Login_Register.php:663, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3036, ../includes/Elements/Login_Register.php:3356, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1301, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:597, ../includes/Elements/Post_Grid.php:665, ../includes/Elements/Post_Grid.php:760, ../includes/Elements/Post_Grid.php:843, ../includes/Elements/Post_Timeline.php:241, ../includes/Elements/Post_Timeline.php:297, ../includes/Elements/Pricing_Table.php:231, ../includes/Elements/Pricing_Table.php:343, ../includes/Elements/Pricing_Table.php:607, ../includes/Elements/Pricing_Table.php:751, ../includes/Elements/Pricing_Table.php:776, ../includes/Elements/Progress_Bar.php:322, ../includes/Elements/Progress_Bar.php:533, ../includes/Elements/Team_Member.php:369, ../includes/Elements/Testimonial.php:283, ../includes/Elements/Tooltip.php:183, ../includes/Elements/Tooltip.php:281, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:171, ../includes/Elements/WeForms.php:601, ../includes/Elements/WpForms.php:267, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:558, ../includes/Elements/WpForms.php:1123, ../includes/Extensions/Table_of_Content.php:413, ../includes/Traits/Helper.php:444, ../includes/Traits/Helper.php:1337, ../includes/Traits/Helper.php:2807, ../includes/Traits/Helper.php:2808
273
+ msgid "Right"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgstr ""
275
 
276
+ #: ../includes/Elements/Advanced_Data_Table.php:408, ../includes/Elements/Advanced_Data_Table.php:527, ../includes/Elements/Advanced_Data_Table.php:621, ../includes/Elements/Advanced_Data_Table.php:652, ../includes/Elements/Advanced_Data_Table.php:683, ../includes/Elements/Advanced_Data_Table.php:714, ../includes/Elements/Advanced_Data_Table.php:745, ../includes/Elements/Advanced_Data_Table.php:776, ../includes/Elements/Advanced_Data_Table.php:958, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1224, ../includes/Elements/Adv_Accordion.php:471, ../includes/Elements/Adv_Accordion.php:543, ../includes/Elements/Adv_Accordion.php:615, ../includes/Elements/Adv_Accordion.php:697, ../includes/Elements/Adv_Tabs.php:460, ../includes/Elements/Adv_Tabs.php:526, ../includes/Elements/Adv_Tabs.php:593, ../includes/Elements/Adv_Tabs.php:675, ../includes/Elements/Caldera_Forms.php:265, ../includes/Elements/Caldera_Forms.php:326, ../includes/Elements/Caldera_Forms.php:518, ../includes/Elements/Caldera_Forms.php:599, ../includes/Elements/Caldera_Forms.php:845, ../includes/Elements/Caldera_Forms.php:901, ../includes/Elements/Caldera_Forms.php:1211, ../includes/Elements/Caldera_Forms.php:1317, ../includes/Elements/Caldera_Forms.php:1370, ../includes/Elements/Contact_Form_7.php:468, ../includes/Elements/Contact_Form_7.php:499, ../includes/Elements/Contact_Form_7.php:556, ../includes/Elements/Contact_Form_7.php:772, ../includes/Elements/Contact_Form_7.php:847, ../includes/Elements/Contact_Form_7.php:1172, ../includes/Elements/Contact_Form_7.php:1278, ../includes/Elements/Contact_Form_7.php:1342, ../includes/Elements/Contact_Form_7.php:1406, ../includes/Elements/Contact_Form_7.php:1467, ../includes/Elements/Contact_Form_7.php:1549, ../includes/Elements/Content_Ticker.php:383, ../includes/Elements/Countdown.php:1093, ../includes/Elements/Creative_Button.php:240, ../includes/Elements/Creative_Button.php:320, ../includes/Elements/Cta_Box.php:684, ../includes/Elements/Cta_Box.php:755, ../includes/Elements/Cta_Box.php:890, ../includes/Elements/Cta_Box.php:942, ../includes/Elements/Data_Table.php:937, ../includes/Elements/Data_Table.php:954, ../includes/Elements/Event_Calendar.php:1142, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Filterable_Gallery.php:943, ../includes/Elements/Filterable_Gallery.php:1009, ../includes/Elements/Filterable_Gallery.php:2482, ../includes/Elements/Filterable_Gallery.php:2675, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:536, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:866, ../includes/Elements/FluentForm.php:1530, ../includes/Elements/FluentForm.php:1636, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/Formstack.php:475, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:579, ../includes/Elements/Formstack.php:791, ../includes/Elements/Formstack.php:846, ../includes/Elements/Formstack.php:1095, ../includes/Elements/Formstack.php:1446, ../includes/Elements/Formstack.php:1552, ../includes/Elements/Formstack.php:1775, ../includes/Elements/Formstack.php:2014, ../includes/Elements/GravityForms.php:507, ../includes/Elements/GravityForms.php:538, ../includes/Elements/GravityForms.php:577, ../includes/Elements/GravityForms.php:664, ../includes/Elements/GravityForms.php:928, ../includes/Elements/GravityForms.php:981, ../includes/Elements/GravityForms.php:1168, ../includes/Elements/GravityForms.php:1802, ../includes/Elements/GravityForms.php:1894, ../includes/Elements/GravityForms.php:2030, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2191, ../includes/Elements/GravityForms.php:2326, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3057, ../includes/Elements/Login_Register.php:3094, ../includes/Elements/Login_Register.php:3378, ../includes/Elements/Login_Register.php:3415, ../includes/Elements/NinjaForms.php:444, ../includes/Elements/NinjaForms.php:493, ../includes/Elements/NinjaForms.php:551, ../includes/Elements/NinjaForms.php:638, ../includes/Elements/NinjaForms.php:886, ../includes/Elements/NinjaForms.php:942, ../includes/Elements/NinjaForms.php:1379, ../includes/Elements/NinjaForms.php:1466, ../includes/Elements/NinjaForms.php:1528, ../includes/Elements/NinjaForms.php:1628, ../includes/Elements/Pricing_Table.php:1787, ../includes/Elements/Pricing_Table.php:1856, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/WeForms.php:650, ../includes/Elements/WeForms.php:700, ../includes/Elements/WpForms.php:407, ../includes/Elements/WpForms.php:456, ../includes/Elements/WpForms.php:511, ../includes/Elements/WpForms.php:593, ../includes/Elements/WpForms.php:829, ../includes/Elements/WpForms.php:885, ../includes/Elements/WpForms.php:1198, ../includes/Elements/WpForms.php:1305, ../includes/Elements/WpForms.php:1350, ../includes/Extensions/Table_of_Content.php:576, ../includes/Extensions/Table_of_Content.php:891, ../includes/Extensions/Table_of_Content.php:914, ../includes/Extensions/Table_of_Content.php:940, ../includes/Traits/Helper.php:1030, ../includes/Traits/Helper.php:1085, ../includes/Traits/Helper.php:1215, ../includes/Traits/Helper.php:1277
277
+ msgid "Text Color"
278
  msgstr ""
279
 
280
+ #: ../includes/Elements/Advanced_Data_Table.php:422, ../includes/Elements/Advanced_Data_Table.php:563, ../includes/Elements/Advanced_Data_Table.php:636, ../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:970, ../includes/Elements/Advanced_Data_Table.php:1167, ../includes/Elements/Advanced_Data_Table.php:1238, ../includes/Elements/Advanced_Data_Table.php:1333, ../includes/Elements/Advanced_Data_Table.php:1363, ../includes/Elements/Adv_Accordion.php:452, ../includes/Elements/Adv_Accordion.php:524, ../includes/Elements/Adv_Accordion.php:596, ../includes/Elements/Adv_Accordion.php:676, ../includes/Elements/Adv_Accordion.php:848, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Accordion.php:941, ../includes/Elements/Adv_Tabs.php:441, ../includes/Elements/Adv_Tabs.php:656, ../includes/Elements/Caldera_Forms.php:587, ../includes/Elements/Caldera_Forms.php:795, ../includes/Elements/Caldera_Forms.php:1199, ../includes/Elements/Caldera_Forms.php:1305, ../includes/Elements/Caldera_Forms.php:1359, ../includes/Elements/Contact_Form_7.php:544, ../includes/Elements/Contact_Form_7.php:719, ../includes/Elements/Contact_Form_7.php:1160, ../includes/Elements/Contact_Form_7.php:1266, ../includes/Elements/Contact_Form_7.php:1391, ../includes/Elements/Contact_Form_7.php:1452, ../includes/Elements/Content_Ticker.php:371, ../includes/Elements/Content_Ticker.php:436, ../includes/Elements/Content_Ticker.php:611, ../includes/Elements/Content_Ticker.php:667, ../includes/Elements/Countdown.php:717, ../includes/Elements/Countdown.php:729, ../includes/Elements/Countdown.php:789, ../includes/Elements/Countdown.php:801, ../includes/Elements/Countdown.php:861, ../includes/Elements/Countdown.php:873, ../includes/Elements/Countdown.php:933, ../includes/Elements/Countdown.php:945, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Cta_Box.php:412, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:767, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:1064, ../includes/Elements/Dual_Color_Header.php:235, ../includes/Elements/Event_Calendar.php:1154, ../includes/Elements/Filterable_Gallery.php:818, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Filterable_Gallery.php:1167, ../includes/Elements/Filterable_Gallery.php:1357, ../includes/Elements/Filterable_Gallery.php:1387, ../includes/Elements/Filterable_Gallery.php:1492, ../includes/Elements/Filterable_Gallery.php:1508, ../includes/Elements/Filterable_Gallery.php:1710, ../includes/Elements/Filterable_Gallery.php:1846, ../includes/Elements/Filterable_Gallery.php:2466, ../includes/Elements/Filterable_Gallery.php:2659, ../includes/Elements/FluentForm.php:605, ../includes/Elements/FluentForm.php:813, ../includes/Elements/FluentForm.php:1247, ../includes/Elements/FluentForm.php:1333, ../includes/Elements/FluentForm.php:1518, ../includes/Elements/FluentForm.php:1624, ../includes/Elements/FluentForm.php:2042, ../includes/Elements/Formstack.php:834, ../includes/Elements/Formstack.php:1042, ../includes/Elements/Formstack.php:1434, ../includes/Elements/Formstack.php:1540, ../includes/Elements/GravityForms.php:652, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:1611, ../includes/Elements/GravityForms.php:1789, ../includes/Elements/GravityForms.php:1881, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/GravityForms.php:2105, ../includes/Elements/Image_Accordion.php:247, ../includes/Elements/Info_Box.php:513, ../includes/Elements/Info_Box.php:756, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1005, ../includes/Elements/Info_Box.php:1068, ../includes/Elements/Info_Box.php:1242, ../includes/Elements/Info_Box.php:1288, ../includes/Elements/Login_Register.php:1498, ../includes/Elements/Login_Register.php:1631, ../includes/Elements/Login_Register.php:1733, ../includes/Elements/Login_Register.php:1907, ../includes/Elements/Login_Register.php:2263, ../includes/Elements/Login_Register.php:2354, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3065, ../includes/Elements/Login_Register.php:3102, ../includes/Elements/Login_Register.php:3386, ../includes/Elements/Login_Register.php:3423, ../includes/Elements/NinjaForms.php:626, ../includes/Elements/NinjaForms.php:836, ../includes/Elements/NinjaForms.php:1367, ../includes/Elements/NinjaForms.php:1454, ../includes/Elements/Post_Grid.php:910, ../includes/Elements/Pricing_Table.php:664, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:1312, ../includes/Elements/Pricing_Table.php:1371, ../includes/Elements/Pricing_Table.php:1537, ../includes/Elements/Pricing_Table.php:1799, ../includes/Elements/Pricing_Table.php:1868, ../includes/Elements/Progress_Bar.php:571, ../includes/Elements/Team_Member.php:712, ../includes/Elements/Tooltip.php:396, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:612, ../includes/Elements/Twitter_Feed.php:338, ../includes/Elements/WeForms.php:661, ../includes/Elements/WeForms.php:711, ../includes/Elements/Woo_Checkout.php:348, ../includes/Elements/Woo_Checkout.php:460, ../includes/Elements/Woo_Checkout.php:581, ../includes/Elements/Woo_Checkout.php:1039, ../includes/Elements/Woo_Checkout.php:1079, ../includes/Elements/Woo_Checkout.php:1337, ../includes/Elements/Woo_Checkout.php:1377, ../includes/Elements/Woo_Checkout.php:1881, ../includes/Elements/Woo_Checkout.php:2011, ../includes/Elements/Woo_Checkout.php:2121, ../includes/Elements/Woo_Checkout.php:2161, ../includes/Elements/WpForms.php:581, ../includes/Elements/WpForms.php:1186, ../includes/Elements/WpForms.php:1293, ../includes/Extensions/Reading_Progress.php:157, ../includes/Extensions/Table_of_Content.php:563, ../includes/Extensions/Table_of_Content.php:709, ../includes/Extensions/Table_of_Content.php:773, ../includes/Traits/Helper.php:1227, ../includes/Traits/Helper.php:1289
281
+ msgid "Background Color"
282
  msgstr ""
283
 
284
+ #: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:576
285
+ msgid "Cell Border"
286
  msgstr ""
287
 
288
+ #: ../includes/Elements/Advanced_Data_Table.php:461, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:890, ../includes/Elements/Advanced_Data_Table.php:1108, ../includes/Elements/Advanced_Data_Table.php:1425, ../includes/Elements/Adv_Accordion.php:268, ../includes/Elements/Adv_Accordion.php:426, ../includes/Elements/Adv_Accordion.php:715, ../includes/Elements/Adv_Tabs.php:273, ../includes/Elements/Adv_Tabs.php:415, ../includes/Elements/Adv_Tabs.php:693, ../includes/Elements/Betterdocs_Category_Box.php:522, ../includes/Elements/Betterdocs_Category_Grid.php:554, ../includes/Elements/Betterdocs_Category_Grid.php:717, ../includes/Elements/Betterdocs_Category_Grid.php:1300, ../includes/Elements/Betterdocs_Search_Form.php:121, ../includes/Elements/Betterdocs_Search_Form.php:410, ../includes/Elements/Caldera_Forms.php:736, ../includes/Elements/Caldera_Forms.php:1246, ../includes/Elements/Contact_Form_7.php:592, ../includes/Elements/Contact_Form_7.php:1206, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:415, ../includes/Elements/Content_Ticker.php:466, ../includes/Elements/Content_Ticker.php:707, ../includes/Elements/Countdown.php:590, ../includes/Elements/Countdown.php:1120, ../includes/Elements/Cta_Box.php:424, ../includes/Elements/Cta_Box.php:637, ../includes/Elements/Cta_Box.php:854, ../includes/Elements/Data_Table.php:555, ../includes/Elements/Data_Table.php:840, ../includes/Elements/Dual_Color_Header.php:247, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Fancy_Text.php:380, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:830, ../includes/Elements/Filterable_Gallery.php:907, ../includes/Elements/Filterable_Gallery.php:1089, ../includes/Elements/Filterable_Gallery.php:1179, ../includes/Elements/Filterable_Gallery.php:1523, ../includes/Elements/Filterable_Gallery.php:1734, ../includes/Elements/Filterable_Gallery.php:2583, ../includes/Elements/Flip_Box.php:767, ../includes/Elements/Flip_Box.php:880, ../includes/Elements/Flip_Box.php:1115, ../includes/Elements/FluentForm.php:754, ../includes/Elements/FluentForm.php:1122, ../includes/Elements/FluentForm.php:1177, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1385, ../includes/Elements/FluentForm.php:1565, ../includes/Elements/FluentForm.php:1967, ../includes/Elements/FluentForm.php:2133, ../includes/Elements/Formstack.php:674, ../includes/Elements/Formstack.php:729, ../includes/Elements/Formstack.php:983, ../includes/Elements/Formstack.php:1316, ../includes/Elements/Formstack.php:1481, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1958, ../includes/Elements/GravityForms.php:714, ../includes/Elements/GravityForms.php:1335, ../includes/Elements/GravityForms.php:1531, ../includes/Elements/GravityForms.php:1669, ../includes/Elements/GravityForms.php:1839, ../includes/Elements/GravityForms.php:2065, ../includes/Elements/Image_Accordion.php:259, ../includes/Elements/Image_Accordion.php:369, ../includes/Elements/Info_Box.php:525, ../includes/Elements/Login_Register.php:1461, ../includes/Elements/Login_Register.php:2026, ../includes/Elements/Login_Register.php:2165, ../includes/Elements/Login_Register.php:2238, ../includes/Elements/Login_Register.php:2329, ../includes/Elements/Login_Register.php:2431, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:2970, ../includes/Elements/Login_Register.php:3269, ../includes/Elements/NinjaForms.php:776, ../includes/Elements/NinjaForms.php:1414, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:1413, ../includes/Elements/Pricing_Table.php:1718, ../includes/Elements/Team_Member.php:468, ../includes/Elements/Testimonial.php:382, ../includes/Elements/Tooltip.php:341, ../includes/Elements/Tooltip.php:590, ../includes/Elements/Twitter_Feed.php:350, ../includes/Elements/WeForms.php:634, ../includes/Elements/Woo_Checkout.php:359, ../includes/Elements/Woo_Checkout.php:947, ../includes/Elements/Woo_Checkout.php:1140, ../includes/Elements/Woo_Checkout.php:1270, ../includes/Elements/Woo_Checkout.php:1438, ../includes/Elements/Woo_Checkout.php:1653, ../includes/Elements/Woo_Checkout.php:1903, ../includes/Elements/Woo_Checkout.php:2234, ../includes/Elements/WpForms.php:730, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:598, ../includes/Extensions/Table_of_Content.php:786, ../includes/Traits/Helper.php:1134, ../includes/Traits/Helper.php:1179
289
+ msgid "Padding"
 
290
  msgstr ""
291
 
292
+ #: ../includes/Elements/Advanced_Data_Table.php:483, ../includes/Elements/Event_Calendar.php:1167
293
+ msgid "Body"
 
294
  msgstr ""
295
 
296
+ #: ../includes/Elements/Advanced_Data_Table.php:539, ../includes/Elements/Data_Table.php:922, ../includes/Elements/Facebook_Feed.php:640, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Checkout.php:648, ../includes/Elements/Woo_Checkout.php:675, ../includes/Elements/Woo_Checkout.php:692, ../includes/Elements/Woo_Checkout.php:2062
297
+ msgid "Link Color"
298
  msgstr ""
299
 
300
+ #: ../includes/Elements/Advanced_Data_Table.php:551
301
+ msgid "Link Hover Color"
302
  msgstr ""
303
 
304
+ #: ../includes/Elements/Advanced_Data_Table.php:602
305
+ msgid "Highlight"
306
  msgstr ""
307
 
308
+ #: ../includes/Elements/Advanced_Data_Table.php:605, ../includes/Elements/Adv_Tabs.php:149, ../includes/Elements/Countdown.php:388, ../includes/Elements/Data_Table.php:124, ../includes/Elements/Filterable_Gallery.php:183, ../includes/Elements/Filterable_Gallery.php:223, ../includes/Elements/Flip_Box.php:102, ../includes/Elements/Flip_Box.php:189, ../includes/Elements/Flip_Box.php:415, ../includes/Elements/GravityForms.php:1008, ../includes/Elements/Info_Box.php:91, ../includes/Elements/Info_Box.php:776, ../includes/Elements/Info_Box.php:857, ../includes/Elements/Info_Box.php:993, ../includes/Elements/Info_Box.php:1089, ../includes/Elements/Post_Grid.php:883, ../includes/Elements/Sticky_Video.php:545, ../includes/Extensions/Table_of_Content.php:811, ../includes/Extensions/Table_of_Content.php:1032
309
+ msgid "None"
310
  msgstr ""
311
 
312
+ #: ../includes/Elements/Advanced_Data_Table.php:606
313
+ msgid "First Column"
314
  msgstr ""
315
 
316
+ #: ../includes/Elements/Advanced_Data_Table.php:607
317
+ msgid "Last Column"
318
  msgstr ""
319
 
320
+ #: ../includes/Elements/Advanced_Data_Table.php:608
321
+ msgid "Even Column"
322
  msgstr ""
323
 
324
+ #: ../includes/Elements/Advanced_Data_Table.php:609
325
+ msgid "Odd Column"
 
326
  msgstr ""
327
 
328
+ #: ../includes/Elements/Advanced_Data_Table.php:610
329
+ msgid "Even Row"
330
  msgstr ""
331
 
332
+ #: ../includes/Elements/Advanced_Data_Table.php:611
333
+ msgid "Odd Row"
334
  msgstr ""
335
 
336
+ #: ../includes/Elements/Advanced_Data_Table.php:867, ../includes/Elements/Flip_Box.php:269, ../includes/Elements/FluentForm.php:1281, ../includes/Elements/FluentForm.php:1366, ../includes/Elements/FluentForm.php:1779, ../includes/Elements/Formstack.php:1655, ../includes/Elements/Image_Accordion.php:234, ../includes/Elements/Login_Register.php:1973, ../includes/Elements/Progress_Bar.php:377, ../includes/Elements/Progress_Bar.php:429, ../includes/Elements/Sticky_Video.php:452, ../includes/Elements/Team_Member.php:299, ../includes/Extensions/Reading_Progress.php:129
337
+ msgid "Height"
338
  msgstr ""
339
 
340
+ #: ../includes/Elements/Advanced_Data_Table.php:902
341
+ msgid "Margin Bottom"
 
342
  msgstr ""
343
 
344
+ #: ../includes/Elements/Advanced_Data_Table.php:925, ../includes/Elements/Advanced_Data_Table.php:1073, ../includes/Elements/Caldera_Forms.php:224, ../includes/Elements/Caldera_Forms.php:552, ../includes/Elements/Caldera_Forms.php:1127, ../includes/Elements/Contact_Form_7.php:433, ../includes/Elements/Contact_Form_7.php:1085, ../includes/Elements/Countdown.php:112, ../includes/Elements/Cta_Box.php:94, ../includes/Elements/Data_Table.php:497, ../includes/Elements/Dual_Color_Header.php:168, ../includes/Elements/Event_Calendar.php:891, ../includes/Elements/Event_Calendar.php:1023, ../includes/Elements/Fancy_Text.php:167, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/FluentForm.php:229, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:1201, ../includes/Elements/FluentForm.php:1446, ../includes/Elements/Formstack.php:439, ../includes/Elements/Formstack.php:753, ../includes/Elements/Formstack.php:1362, ../includes/Elements/GravityForms.php:472, ../includes/Elements/GravityForms.php:617, ../includes/Elements/GravityForms.php:1709, ../includes/Elements/GravityForms.php:1959, ../includes/Elements/Login_Register.php:3024, ../includes/Elements/Login_Register.php:3344, ../includes/Elements/NinjaForms.php:409, ../includes/Elements/NinjaForms.php:591, ../includes/Elements/NinjaForms.php:1289, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:748, ../includes/Elements/Post_Grid.php:831, ../includes/Elements/Progress_Bar.php:310, ../includes/Elements/Progress_Bar.php:521, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:372, ../includes/Elements/WpForms.php:546, ../includes/Elements/WpForms.php:1111
345
+ msgid "Alignment"
346
  msgstr ""
347
 
348
+ #: ../includes/Elements/Advanced_Data_Table.php:1129, ../includes/Elements/Adv_Accordion.php:279, ../includes/Elements/Adv_Accordion.php:437, ../includes/Elements/Adv_Accordion.php:726, ../includes/Elements/Adv_Tabs.php:284, ../includes/Elements/Adv_Tabs.php:426, ../includes/Elements/Adv_Tabs.php:704, ../includes/Elements/Betterdocs_Category_Grid.php:566, ../includes/Elements/Betterdocs_Category_Grid.php:731, ../includes/Elements/Caldera_Forms.php:292, ../includes/Elements/Caldera_Forms.php:354, ../includes/Elements/Contact_Form_7.php:1511, ../includes/Elements/Contact_Form_7.php:1608, ../includes/Elements/Content_Ticker.php:478, ../includes/Elements/Countdown.php:1072, ../includes/Elements/Cta_Box.php:436, ../includes/Elements/Cta_Box.php:649, ../includes/Elements/Cta_Box.php:866, ../includes/Elements/Dual_Color_Header.php:259, ../includes/Elements/Fancy_Text.php:392, ../includes/Elements/Filterable_Gallery.php:842, ../includes/Elements/Filterable_Gallery.php:919, ../includes/Elements/Filterable_Gallery.php:1101, ../includes/Elements/Filterable_Gallery.php:1746, ../includes/Elements/Filterable_Gallery.php:2185, ../includes/Elements/Filterable_Gallery.php:2624, ../includes/Elements/Flip_Box.php:1103, ../includes/Elements/FluentForm.php:298, ../includes/Elements/FluentForm.php:360, ../includes/Elements/FluentForm.php:1134, ../includes/Elements/FluentForm.php:1189, ../includes/Elements/FluentForm.php:2145, ../includes/Elements/Formstack.php:496, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:686, ../includes/Elements/Formstack.php:741, ../includes/Elements/Formstack.php:1973, ../includes/Elements/GravityForms.php:1064, ../includes/Elements/GravityForms.php:1323, ../includes/Elements/GravityForms.php:1519, ../includes/Elements/GravityForms.php:1683, ../includes/Elements/Image_Accordion.php:271, ../includes/Elements/Image_Accordion.php:358, ../includes/Elements/Info_Box.php:659, ../includes/Elements/Info_Box.php:722, ../includes/Elements/Info_Box.php:954, ../includes/Elements/Info_Box.php:1371, ../includes/Elements/Login_Register.php:1446, ../includes/Elements/Login_Register.php:2011, ../includes/Elements/Login_Register.php:2150, ../includes/Elements/Login_Register.php:2223, ../includes/Elements/Login_Register.php:2314, ../includes/Elements/Login_Register.php:2416, ../includes/Elements/Login_Register.php:2451, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3190, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:515, ../includes/Elements/Post_Grid.php:369, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:498, ../includes/Elements/Post_Grid.php:620, ../includes/Elements/Post_Grid.php:708, ../includes/Elements/Post_Grid.php:784, ../includes/Elements/Pricing_Table.php:688, ../includes/Elements/Pricing_Table.php:1014, ../includes/Elements/Pricing_Table.php:1084, ../includes/Elements/Pricing_Table.php:1730, ../includes/Elements/Team_Member.php:456, ../includes/Elements/Testimonial.php:370, ../includes/Elements/Testimonial.php:468, ../includes/Elements/Testimonial.php:509, ../includes/Elements/Testimonial.php:550, ../includes/Elements/Testimonial.php:583, ../includes/Elements/Tooltip.php:352, ../includes/Elements/Tooltip.php:601, ../includes/Elements/WeForms.php:622, ../includes/Elements/WpForms.php:428, ../includes/Elements/WpForms.php:478, ../includes/Traits/Helper.php:1146, ../includes/Traits/Helper.php:1191
349
+ msgid "Margin"
350
  msgstr ""
351
 
352
+ #: ../includes/Elements/Advanced_Data_Table.php:1149, ../includes/Elements/Advanced_Data_Table.php:1315, ../includes/Elements/Adv_Accordion.php:448, ../includes/Elements/Adv_Accordion.php:828, ../includes/Elements/Adv_Tabs.php:437, ../includes/Elements/Betterdocs_Category_Box.php:294, ../includes/Elements/Betterdocs_Category_Box.php:462, ../includes/Elements/Betterdocs_Category_Box.php:684, ../includes/Elements/Betterdocs_Category_Box.php:824, ../includes/Elements/Betterdocs_Category_Grid.php:311, ../includes/Elements/Betterdocs_Category_Grid.php:451, ../includes/Elements/Betterdocs_Category_Grid.php:606, ../includes/Elements/Betterdocs_Category_Grid.php:1242, ../includes/Elements/Betterdocs_Search_Form.php:368, ../includes/Elements/Caldera_Forms.php:580, ../includes/Elements/Caldera_Forms.php:968, ../includes/Elements/Caldera_Forms.php:1192, ../includes/Elements/Contact_Form_7.php:537, ../includes/Elements/Contact_Form_7.php:927, ../includes/Elements/Contact_Form_7.php:1153, ../includes/Elements/Content_Ticker.php:604, ../includes/Elements/Creative_Button.php:235, ../includes/Elements/Cta_Box.php:679, ../includes/Elements/Cta_Box.php:885, ../includes/Elements/Data_Table.php:567, ../includes/Elements/Data_Table.php:760, ../includes/Elements/Data_Table.php:932, ../includes/Elements/Event_Calendar.php:668, ../includes/Elements/Filterable_Gallery.php:938, ../includes/Elements/Filterable_Gallery.php:1703, ../includes/Elements/Filterable_Gallery.php:2455, ../includes/Elements/Flip_Box.php:1097, ../includes/Elements/FluentForm.php:598, ../includes/Elements/FluentForm.php:933, ../includes/Elements/FluentForm.php:1511, ../includes/Elements/FluentForm.php:1683, ../includes/Elements/FluentForm.php:1900, ../includes/Elements/Formstack.php:827, ../includes/Elements/Formstack.php:1159, ../includes/Elements/Formstack.php:1427, ../includes/Elements/Formstack.php:1597, ../includes/Elements/Formstack.php:1760, ../includes/Elements/GravityForms.php:645, ../includes/Elements/GravityForms.php:1235, ../includes/Elements/GravityForms.php:1431, ../includes/Elements/GravityForms.php:1782, ../includes/Elements/GravityForms.php:2011, ../includes/Elements/Info_Box.php:506, ../includes/Elements/Info_Box.php:736, ../includes/Elements/Info_Box.php:968, ../includes/Elements/Info_Box.php:1224, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3054, ../includes/Elements/Login_Register.php:3217, ../includes/Elements/Login_Register.php:3375, ../includes/Elements/NinjaForms.php:619, ../includes/Elements/NinjaForms.php:1012, ../includes/Elements/NinjaForms.php:1360, ../includes/Elements/Pricing_Table.php:1782, ../includes/Elements/Product_Grid.php:469, ../includes/Elements/Team_Member.php:695, ../includes/Elements/Tooltip.php:392, ../includes/Elements/WeForms.php:645, ../includes/Elements/Woo_Checkout.php:627, ../includes/Elements/Woo_Checkout.php:670, ../includes/Elements/Woo_Checkout.php:813, ../includes/Elements/Woo_Checkout.php:1032, ../includes/Elements/Woo_Checkout.php:1330, ../includes/Elements/Woo_Checkout.php:1790, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:2114, ../includes/Elements/WpForms.php:574, ../includes/Elements/WpForms.php:952, ../includes/Elements/WpForms.php:1179, ../includes/Extensions/Table_of_Content.php:884, ../includes/Traits/Helper.php:1023, ../includes/Traits/Helper.php:1210
353
+ msgid "Normal"
354
  msgstr ""
355
 
356
+ #: ../includes/Elements/Advanced_Data_Table.php:1219, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Adv_Accordion.php:518, ../includes/Elements/Adv_Accordion.php:874, ../includes/Elements/Adv_Tabs.php:503, ../includes/Elements/Betterdocs_Category_Box.php:340, ../includes/Elements/Betterdocs_Category_Box.php:558, ../includes/Elements/Betterdocs_Category_Box.php:725, ../includes/Elements/Betterdocs_Category_Box.php:937, ../includes/Elements/Betterdocs_Category_Grid.php:359, ../includes/Elements/Betterdocs_Category_Grid.php:492, ../includes/Elements/Betterdocs_Category_Grid.php:659, ../includes/Elements/Betterdocs_Category_Grid.php:1326, ../includes/Elements/Betterdocs_Search_Form.php:452, ../includes/Elements/Caldera_Forms.php:1298, ../includes/Elements/Contact_Form_7.php:1259, ../includes/Elements/Content_Ticker.php:660, ../includes/Elements/Creative_Button.php:315, ../includes/Elements/Cta_Box.php:750, ../includes/Elements/Cta_Box.php:937, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:949, ../includes/Elements/Event_Calendar.php:735, ../includes/Elements/Filterable_Gallery.php:1839, ../includes/Elements/Filterable_Gallery.php:2648, ../includes/Elements/Flip_Box.php:1179, ../includes/Elements/FluentForm.php:1617, ../includes/Elements/FluentForm.php:1981, ../includes/Elements/Formstack.php:1533, ../includes/Elements/Formstack.php:1843, ../includes/Elements/GravityForms.php:1874, ../includes/Elements/GravityForms.php:2098, ../includes/Elements/Info_Box.php:567, ../includes/Elements/Info_Box.php:808, ../includes/Elements/Info_Box.php:1040, ../includes/Elements/Info_Box.php:1270, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3091, ../includes/Elements/Login_Register.php:3412, ../includes/Elements/NinjaForms.php:1447, ../includes/Elements/Pricing_Table.php:361, ../includes/Elements/Pricing_Table.php:1851, ../includes/Elements/Product_Grid.php:520, ../includes/Elements/Team_Member.php:772, ../includes/Elements/Tooltip.php:435, ../includes/Elements/WeForms.php:695, ../includes/Elements/Woo_Checkout.php:643, ../includes/Elements/Woo_Checkout.php:687, ../includes/Elements/Woo_Checkout.php:829, ../includes/Elements/Woo_Checkout.php:1072, ../includes/Elements/Woo_Checkout.php:1370, ../includes/Elements/Woo_Checkout.php:1806, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/WpForms.php:1286, ../includes/Extensions/Table_of_Content.php:907, ../includes/Traits/Helper.php:1078, ../includes/Traits/Helper.php:1272
357
+ msgid "Hover"
 
358
  msgstr ""
359
 
360
+ #: ../includes/Elements/Advanced_Data_Table.php:1320, ../includes/Elements/Advanced_Data_Table.php:1350, ../includes/Elements/Betterdocs_Category_Box.php:690, ../includes/Elements/Betterdocs_Category_Box.php:731, ../includes/Elements/Betterdocs_Category_Box.php:838, ../includes/Elements/Betterdocs_Category_Box.php:943, ../includes/Elements/Betterdocs_Category_Grid.php:612, ../includes/Elements/Betterdocs_Category_Grid.php:665, ../includes/Elements/Betterdocs_Category_Grid.php:763, ../includes/Elements/Betterdocs_Category_Grid.php:900, ../includes/Elements/Betterdocs_Category_Grid.php:980, ../includes/Elements/Betterdocs_Category_Grid.php:1056, ../includes/Elements/Betterdocs_Category_Grid.php:1133, ../includes/Elements/Betterdocs_Category_Grid.php:1256, ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Betterdocs_Search_Form.php:216, ../includes/Elements/Betterdocs_Search_Form.php:253, ../includes/Elements/Caldera_Forms.php:978, ../includes/Elements/Caldera_Forms.php:1094, ../includes/Elements/Caldera_Forms.php:1426, ../includes/Elements/Contact_Form_7.php:937, ../includes/Elements/Contact_Form_7.php:1053, ../includes/Elements/Content_Ticker.php:447, ../includes/Elements/Content_Ticker.php:623, ../includes/Elements/Content_Ticker.php:679, ../includes/Elements/Cta_Box.php:504, ../includes/Elements/Cta_Box.php:545, ../includes/Elements/Cta_Box.php:587, ../includes/Elements/Cta_Box.php:1028, ../includes/Elements/Data_Table.php:572, ../includes/Elements/Data_Table.php:612, ../includes/Elements/Data_Table.php:1049, ../includes/Elements/Dual_Color_Header.php:420, ../includes/Elements/Event_Calendar.php:635, ../includes/Elements/Event_Calendar.php:675, ../includes/Elements/Event_Calendar.php:742, ../includes/Elements/Event_Calendar.php:796, ../includes/Elements/Event_Calendar.php:879, ../includes/Elements/Event_Calendar.php:954, ../includes/Elements/Event_Calendar.php:988, ../includes/Elements/Event_Calendar.php:1097, ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Facebook_Feed.php:549, ../includes/Elements/Facebook_Feed.php:587, ../includes/Elements/Facebook_Feed.php:625, ../includes/Elements/Facebook_Feed.php:678, ../includes/Elements/Facebook_Feed.php:716, ../includes/Elements/Facebook_Feed.php:754, ../includes/Elements/Facebook_Feed.php:786, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1200, ../includes/Elements/Filterable_Gallery.php:1240, ../includes/Elements/Filterable_Gallery.php:1562, ../includes/Elements/Filterable_Gallery.php:1577, ../includes/Elements/Filterable_Gallery.php:1622, ../includes/Elements/Filterable_Gallery.php:1637, ../includes/Elements/Filterable_Gallery.php:1722, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:1934, ../includes/Elements/Filterable_Gallery.php:1968, ../includes/Elements/Filterable_Gallery.php:2013, ../includes/Elements/Filterable_Gallery.php:2150, ../includes/Elements/Filterable_Gallery.php:2337, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:953, ../includes/Elements/Flip_Box.php:984, ../includes/Elements/Flip_Box.php:1022, ../includes/Elements/Flip_Box.php:1054, ../includes/Elements/Flip_Box.php:1127, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/FluentForm.php:407, ../includes/Elements/FluentForm.php:943, ../includes/Elements/FluentForm.php:1059, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1155, ../includes/Elements/FluentForm.php:1259, ../includes/Elements/FluentForm.php:1321, ../includes/Elements/FluentForm.php:1915, ../includes/Elements/FluentForm.php:1988, ../includes/Elements/FluentForm.php:2109, ../includes/Elements/Formstack.php:652, ../includes/Elements/Formstack.php:707, ../includes/Elements/Formstack.php:1169, ../includes/Elements/Formstack.php:1249, ../includes/Elements/Formstack.php:1303, ../includes/Elements/Formstack.php:1850, ../includes/Elements/Formstack.php:1931, ../includes/Elements/GravityForms.php:1139, ../includes/Elements/GravityForms.php:1245, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1441, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1599, ../includes/Elements/Image_Accordion.php:424, ../includes/Elements/Image_Accordion.php:453, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2253, ../includes/Elements/Login_Register.php:2344, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1022, ../includes/Elements/NinjaForms.php:1140, ../includes/Elements/NinjaForms.php:1562, ../includes/Elements/Post_Grid.php:348, ../includes/Elements/Post_Grid.php:420, ../includes/Elements/Post_Grid.php:810, ../includes/Elements/Pricing_Table.php:811, ../includes/Elements/Pricing_Table.php:875, ../includes/Elements/Pricing_Table.php:966, ../includes/Elements/Pricing_Table.php:995, ../includes/Elements/Pricing_Table.php:1036, ../includes/Elements/Pricing_Table.php:1065, ../includes/Elements/Pricing_Table.php:1105, ../includes/Elements/Pricing_Table.php:1140, ../includes/Elements/Pricing_Table.php:1286, ../includes/Elements/Pricing_Table.php:1401, ../includes/Elements/Progress_Bar.php:400, ../includes/Elements/Progress_Bar.php:460, ../includes/Elements/Twitter_Feed.php:419, ../includes/Elements/Twitter_Feed.php:448, ../includes/Elements/Twitter_Feed.php:478, ../includes/Elements/Woo_Checkout.php:303, ../includes/Elements/Woo_Checkout.php:474, ../includes/Elements/Woo_Checkout.php:488, ../includes/Elements/Woo_Checkout.php:595, ../includes/Elements/Woo_Checkout.php:609, ../includes/Elements/Woo_Checkout.php:782, ../includes/Elements/Woo_Checkout.php:818, ../includes/Elements/Woo_Checkout.php:834, ../includes/Elements/Woo_Checkout.php:902, ../includes/Elements/Woo_Checkout.php:1001, ../includes/Elements/Woo_Checkout.php:1051, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1188, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1389, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1551, ../includes/Elements/Woo_Checkout.php:1595, ../includes/Elements/Woo_Checkout.php:1701, ../includes/Elements/Woo_Checkout.php:1740, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1967, ../includes/Elements/Woo_Checkout.php:1988, ../includes/Elements/Woo_Checkout.php:2023, ../includes/Elements/Woo_Checkout.php:2044, ../includes/Elements/Woo_Checkout.php:2133, ../includes/Elements/Woo_Checkout.php:2173, ../includes/Elements/WpForms.php:962, ../includes/Elements/WpForms.php:1078, ../includes/Extensions/Table_of_Content.php:1043
361
+ msgid "Color"
362
  msgstr ""
363
 
364
+ #: ../includes/Elements/Advanced_Data_Table.php:1532
365
+ msgid "No content found"
366
  msgstr ""
367
 
368
+ #: ../includes/Elements/Adv_Accordion.php:28, ../includes/templates/admin/elements.php:51
369
+ msgid "Advanced Accordion"
370
  msgstr ""
371
 
372
+ #: ../includes/Elements/Adv_Accordion.php:71, ../includes/Elements/Adv_Tabs.php:72, ../includes/Elements/Facebook_Feed.php:147, ../includes/Elements/Woo_Checkout.php:108
373
+ msgid "General Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  msgstr ""
375
 
376
+ #: ../includes/Elements/Adv_Accordion.php:77
377
+ msgid "Accordion Type"
378
  msgstr ""
379
 
380
+ #: ../includes/Elements/Adv_Accordion.php:82
381
+ msgid "Accordion"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  msgstr ""
383
 
384
+ #: ../includes/Elements/Adv_Accordion.php:83, ../includes/Traits/Elements.php:274, ../includes/templates/admin/elements.php:83
385
+ msgid "Toggle"
386
  msgstr ""
387
 
388
+ #: ../includes/Elements/Adv_Accordion.php:90
389
+ msgid "Enable Toggle Icon"
390
  msgstr ""
391
 
392
+ #: ../includes/Elements/Adv_Accordion.php:99
393
+ msgid "Toggle Icon Postion"
394
  msgstr ""
395
 
396
+ #: ../includes/Elements/Adv_Accordion.php:114
397
+ msgid "Toggle Icon"
 
398
  msgstr ""
399
 
400
+ #: ../includes/Elements/Adv_Accordion.php:129
401
+ msgid "Toggle Speed (ms)"
 
402
  msgstr ""
403
 
404
+ #: ../includes/Elements/Adv_Accordion.php:143, ../includes/Elements/Countdown.php:140, ../includes/Elements/Cta_Box.php:69, ../includes/Elements/Dual_Color_Header.php:62, ../includes/Elements/Facebook_Feed.php:192, ../includes/Elements/Feature_List.php:62, ../includes/Elements/Tooltip.php:61
405
+ msgid "Content Settings"
406
  msgstr ""
407
 
408
+ #: ../includes/Elements/Adv_Accordion.php:152
409
+ msgid "Accordion Tab Title 1"
410
  msgstr ""
411
 
412
+ #: ../includes/Elements/Adv_Accordion.php:153
413
+ msgid "Accordion Tab Title 2"
414
  msgstr ""
415
 
416
+ #: ../includes/Elements/Adv_Accordion.php:154
417
+ msgid "Accordion Tab Title 3"
418
  msgstr ""
419
 
420
+ #: ../includes/Elements/Adv_Accordion.php:159
421
+ msgid "Active as Default"
 
422
  msgstr ""
423
 
424
+ #: ../includes/Elements/Adv_Accordion.php:166
425
+ msgid "Enable Tab Icon"
426
  msgstr ""
427
 
428
+ #: ../includes/Elements/Adv_Accordion.php:173, ../includes/Elements/Adv_Tabs.php:153, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Betterdocs_Category_Box.php:417, ../includes/Elements/Betterdocs_Category_Box.php:451, ../includes/Elements/Betterdocs_Category_Grid.php:437, ../includes/Elements/Betterdocs_Category_Grid.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:968, ../includes/Elements/Betterdocs_Category_Grid.php:1100, ../includes/Elements/Betterdocs_Category_Grid.php:1207, ../includes/Elements/Creative_Button.php:106, ../includes/Elements/Cta_Box.php:148, ../includes/Elements/Data_Table.php:128, ../includes/Elements/Data_Table.php:147, ../includes/Elements/Dual_Color_Header.php:100, ../includes/Elements/Feature_List.php:75, ../includes/Elements/Feature_List.php:91, ../includes/Elements/Feature_List.php:501, ../includes/Elements/Flip_Box.php:104, ../includes/Elements/Flip_Box.php:127, ../includes/Elements/Flip_Box.php:191, ../includes/Elements/Flip_Box.php:214, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:169, ../includes/Elements/Info_Box.php:409, ../includes/Elements/Pricing_Table.php:153, ../includes/Elements/Team_Member.php:187, ../includes/Elements/Tooltip.php:72, ../includes/Elements/Tooltip.php:142, ../includes/Extensions/Table_of_Content.php:619, ../includes/Traits/Helper.php:538, ../includes/Traits/Helper.php:591
429
+ msgid "Icon"
 
430
  msgstr ""
431
 
432
+ #: ../includes/Elements/Adv_Accordion.php:186, ../includes/Elements/Adv_Accordion.php:188, ../includes/Elements/Adv_Tabs.php:189, ../includes/Elements/Adv_Tabs.php:191, ../includes/Elements/Adv_Tabs.php:329
433
+ msgid "Tab Title"
 
434
  msgstr ""
435
 
436
+ #: ../includes/Elements/Adv_Accordion.php:193, ../includes/Elements/Adv_Tabs.php:196, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Data_Table.php:268, ../includes/Elements/Info_Box.php:222, ../includes/Elements/Tooltip.php:67
437
+ msgid "Content Type"
 
438
  msgstr ""
439
 
440
+ #: ../includes/Elements/Adv_Accordion.php:196, ../includes/Elements/Adv_Tabs.php:121, ../includes/Elements/Adv_Tabs.php:199, ../includes/Elements/Adv_Tabs.php:649, ../includes/Elements/Cta_Box.php:207, ../includes/Elements/Cta_Box.php:228, ../includes/Elements/Data_Table.php:230, ../includes/Elements/Data_Table.php:324, ../includes/Elements/Data_Table.php:338, ../includes/Elements/Event_Calendar.php:247, ../includes/Elements/Event_Calendar.php:1374, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Image_Accordion.php:195, ../includes/Elements/Image_Accordion.php:444, ../includes/Elements/Info_Box.php:225, ../includes/Elements/Tooltip.php:94, ../includes/Elements/Tooltip.php:265
441
+ msgid "Content"
442
  msgstr ""
443
 
444
+ #: ../includes/Elements/Adv_Accordion.php:197, ../includes/Elements/Adv_Tabs.php:200, ../includes/Elements/Countdown.php:391, ../includes/Elements/Cta_Box.php:208, ../includes/Elements/Info_Box.php:226
445
+ msgid "Saved Templates"
446
  msgstr ""
447
 
448
+ #: ../includes/Elements/Adv_Accordion.php:203, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Countdown.php:436, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Data_Table.php:309, ../includes/Elements/Info_Box.php:235
449
+ msgid "Choose Template"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
450
  msgstr ""
451
 
452
+ #: ../includes/Elements/Adv_Accordion.php:212, ../includes/Elements/Adv_Tabs.php:215
453
+ msgid "Tab Content"
454
  msgstr ""
455
 
456
+ #: ../includes/Elements/Adv_Accordion.php:214, ../includes/Elements/Adv_Tabs.php:217, ../includes/Elements/Feature_List.php:192
457
+ msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  msgstr ""
459
 
460
+ #: ../includes/Elements/Adv_Accordion.php:230, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Contact_Form_7.php:263, ../includes/Elements/Content_Ticker.php:332, ../includes/Elements/Countdown.php:451, ../includes/Elements/Creative_Button.php:163, ../includes/Elements/Cta_Box.php:332, ../includes/Elements/Data_Table.php:432, ../includes/Elements/Dual_Color_Header.php:196, ../includes/Elements/Fancy_Text.php:266, ../includes/Elements/Filterable_Gallery.php:779, ../includes/Elements/Flip_Box.php:495, ../includes/Elements/Info_Box.php:462, ../includes/Elements/Pricing_Table.php:625, ../includes/Elements/Progress_Bar.php:264, ../includes/Elements/Team_Member.php:218, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:502, ../includes/Elements/Twitter_Feed.php:299, ../includes/Elements/WeForms.php:108, ../includes/Traits/Helper.php:1360
461
+ msgid "Go Premium for More Features"
462
  msgstr ""
463
 
464
+ #: ../includes/Elements/Adv_Accordion.php:237, ../includes/Elements/Adv_Tabs.php:241, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:339, ../includes/Elements/Countdown.php:458, ../includes/Elements/Creative_Button.php:170, ../includes/Elements/Cta_Box.php:339, ../includes/Elements/Data_Table.php:439, ../includes/Elements/Dual_Color_Header.php:203, ../includes/Elements/Fancy_Text.php:273, ../includes/Elements/Filterable_Gallery.php:786, ../includes/Elements/Flip_Box.php:502, ../includes/Elements/Info_Box.php:469, ../includes/Elements/Pricing_Table.php:632, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:225, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:509, ../includes/Elements/Twitter_Feed.php:306, ../includes/Elements/WeForms.php:115, ../includes/Traits/Helper.php:1367
465
+ msgid "Unlock more possibilities"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
466
  msgstr ""
467
 
468
+ #: ../includes/Elements/Adv_Accordion.php:261, ../includes/Elements/Data_Table.php:463, ../includes/Elements/Filterable_Gallery.php:810
469
+ msgid "General Style"
470
  msgstr ""
471
 
472
+ #: ../includes/Elements/Adv_Accordion.php:323
473
+ msgid "Tab Style"
474
  msgstr ""
475
 
476
+ #: ../includes/Elements/Adv_Accordion.php:337, ../includes/Elements/Adv_Accordion.php:766, ../includes/Elements/Adv_Tabs.php:369, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Event_Calendar.php:1345, ../includes/Elements/Event_Calendar.php:1412, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1758, ../includes/Elements/Filterable_Gallery.php:2110, ../includes/Elements/Filterable_Gallery.php:2543, ../includes/Elements/Flip_Box.php:728, ../includes/Elements/Flip_Box.php:841, ../includes/Elements/Info_Box.php:908, ../includes/Elements/Info_Box.php:1148, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1164, ../includes/Elements/Pricing_Table.php:1571, ../includes/Elements/Pricing_Table.php:1742, ../includes/Elements/Team_Member.php:624, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:655
477
+ msgid "Icon Size"
 
 
 
478
  msgstr ""
479
 
480
+ #: ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Accordion.php:387, ../includes/Elements/Adv_Tabs.php:392
481
+ msgid "Icon Gap"
 
 
 
 
 
482
  msgstr ""
483
 
484
+ #: ../includes/Elements/Adv_Accordion.php:414
485
+ msgid "Distance"
486
  msgstr ""
487
 
488
+ #: ../includes/Elements/Adv_Accordion.php:482, ../includes/Elements/Adv_Accordion.php:554, ../includes/Elements/Adv_Accordion.php:626, ../includes/Elements/Adv_Tabs.php:471, ../includes/Elements/Adv_Tabs.php:537, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Dual_Color_Header.php:344, ../includes/Elements/Event_Calendar.php:1363, ../includes/Elements/Feature_List.php:119, ../includes/Elements/Info_Box.php:743, ../includes/Elements/Info_Box.php:823, ../includes/Elements/Info_Box.php:975, ../includes/Elements/Info_Box.php:1055, ../includes/Elements/Post_Grid.php:934, ../includes/Elements/Pricing_Table.php:309, ../includes/Elements/Pricing_Table.php:1635, ../includes/Elements/Team_Member.php:700, ../includes/Elements/Woo_Checkout.php:913, ../includes/Elements/Woo_Checkout.php:1199
489
+ msgid "Icon Color"
 
 
490
  msgstr ""
491
 
492
+ #: ../includes/Elements/Adv_Accordion.php:590, ../includes/Elements/Adv_Accordion.php:920, ../includes/Elements/Adv_Tabs.php:569, ../includes/Elements/Event_Calendar.php:789, ../includes/Elements/Filterable_Gallery.php:1004, ../includes/Extensions/Table_of_Content.php:933
493
+ msgid "Active"
494
  msgstr ""
495
 
496
+ #: ../includes/Elements/Adv_Accordion.php:668, ../includes/Elements/Countdown.php:1084, ../includes/Elements/Cta_Box.php:76, ../includes/Elements/Cta_Box.php:578, ../includes/Elements/Data_Table.php:753, ../includes/Elements/Dual_Color_Header.php:69, ../includes/Elements/Facebook_Feed.php:433, ../includes/Elements/Flip_Box.php:976, ../includes/Elements/Flip_Box.php:1045, ../includes/Elements/Info_Box.php:1382, ../includes/Elements/Tooltip.php:312, ../includes/Elements/Twitter_Feed.php:439
497
+ msgid "Content Style"
498
  msgstr ""
499
 
500
+ #: ../includes/Elements/Adv_Accordion.php:758
501
+ msgid "Toggle Caret Style"
502
  msgstr ""
503
 
504
+ #: ../includes/Elements/Adv_Accordion.php:792
505
+ msgid "Icon Padding"
506
  msgstr ""
507
 
508
+ #: ../includes/Elements/Adv_Accordion.php:807
509
+ msgid "Icon Radius"
510
  msgstr ""
511
 
512
+ #: ../includes/Elements/Adv_Accordion.php:834, ../includes/Elements/Adv_Accordion.php:880, ../includes/Elements/Adv_Accordion.php:926, ../includes/Elements/Adv_Tabs.php:787
513
+ msgid "Caret Color"
514
  msgstr ""
515
 
516
+ #: ../includes/Elements/Adv_Tabs.php:29, ../includes/templates/admin/elements.php:57
517
+ msgid "Advanced Tabs"
518
  msgstr ""
519
 
520
+ #: ../includes/Elements/Adv_Tabs.php:78, ../includes/Elements/Countdown.php:146, ../includes/Elements/Facebook_Feed.php:162, ../includes/Elements/Filterable_Gallery.php:165, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:114, ../includes/Traits/Helper.php:402, ../includes/Traits/Helper.php:440
521
+ msgid "Layout"
522
  msgstr ""
523
 
524
+ #: ../includes/Elements/Adv_Tabs.php:83, ../includes/Elements/Image_Accordion.php:82
525
+ msgid "Horizontal"
 
 
526
  msgstr ""
527
 
528
+ #: ../includes/Elements/Adv_Tabs.php:84, ../includes/Elements/Image_Accordion.php:83
529
+ msgid "Vertical"
 
 
530
  msgstr ""
531
 
532
+ #: ../includes/Elements/Adv_Tabs.php:91
533
+ msgid "Enable Icon"
 
534
  msgstr ""
535
 
536
+ #: ../includes/Elements/Adv_Tabs.php:100, ../includes/Elements/Betterdocs_Category_Grid.php:1222, ../includes/Elements/Creative_Button.php:118, ../includes/Elements/Data_Table.php:681, ../includes/Elements/Feature_List.php:298, ../includes/Elements/Filterable_Gallery.php:731, ../includes/Elements/Flip_Box.php:475, ../includes/Elements/Info_Box.php:114, ../includes/Elements/Info_Box.php:421, ../includes/Elements/Pricing_Table.php:468
537
+ msgid "Icon Position"
 
538
  msgstr ""
539
 
540
+ #: ../includes/Elements/Adv_Tabs.php:105, ../includes/Elements/Feature_List.php:290
541
+ msgid "Stacked"
542
  msgstr ""
543
 
544
+ #: ../includes/Elements/Adv_Tabs.php:106, ../includes/Elements/Countdown.php:83, ../includes/Elements/Login_Register.php:2993, ../includes/Elements/Login_Register.php:3293
545
+ msgid "Inline"
546
  msgstr ""
547
 
548
+ #: ../includes/Elements/Adv_Tabs.php:130
549
+ msgid "Tab Title 1"
550
  msgstr ""
551
 
552
+ #: ../includes/Elements/Adv_Tabs.php:131
553
+ msgid "Tab Title 2"
 
554
  msgstr ""
555
 
556
+ #: ../includes/Elements/Adv_Tabs.php:132
557
+ msgid "Tab Title 3"
 
558
  msgstr ""
559
 
560
+ #: ../includes/Elements/Adv_Tabs.php:137
561
+ msgid "Set as Default"
562
  msgstr ""
563
 
564
+ #: ../includes/Elements/Adv_Tabs.php:144, ../includes/Elements/Feature_List.php:71, ../includes/Elements/Flip_Box.php:99, ../includes/Elements/Flip_Box.php:186
565
+ msgid "Icon Type"
566
  msgstr ""
567
 
568
+ #: ../includes/Elements/Adv_Tabs.php:157, ../includes/Elements/Adv_Tabs.php:178, ../includes/Elements/Data_Table.php:132, ../includes/Elements/Data_Table.php:164, ../includes/Elements/Feature_List.php:79, ../includes/Elements/Feature_List.php:166, ../includes/Elements/Filterable_Gallery.php:551, ../includes/Elements/Flip_Box.php:103, ../includes/Elements/Flip_Box.php:190, ../includes/Elements/Info_Box.php:103, ../includes/Elements/Post_Grid.php:88, ../includes/Elements/Tooltip.php:80, ../includes/Elements/Tooltip.php:157, ../includes/Traits/Helper.php:534
569
+ msgid "Image"
570
  msgstr ""
571
 
572
+ #: ../includes/Elements/Adv_Tabs.php:265, ../includes/Elements/Event_Calendar.php:132, ../includes/Elements/Login_Register.php:233, ../includes/Elements/Login_Register.php:1389, ../includes/Elements/Progress_Bar.php:299, ../includes/Elements/Progress_Bar.php:510, ../includes/Traits/Admin.php:202
573
+ msgid "General"
 
 
 
574
  msgstr ""
575
 
576
+ #: ../includes/Elements/Adv_Tabs.php:343
577
+ msgid "Title Min Width"
578
  msgstr ""
579
 
580
+ #: ../includes/Elements/Adv_Tabs.php:507, ../includes/Elements/Adv_Tabs.php:573
581
+ msgid "Tab Background Color"
 
582
  msgstr ""
583
 
584
+ #: ../includes/Elements/Adv_Tabs.php:749
585
+ msgid "Caret"
586
  msgstr ""
587
 
588
+ #: ../includes/Elements/Adv_Tabs.php:756
589
+ msgid "Show Caret on Active Tab"
590
  msgstr ""
591
 
592
+ #: ../includes/Elements/Adv_Tabs.php:765
593
+ msgid "Caret Size"
594
  msgstr ""
595
 
596
+ #: ../includes/Elements/Adv_Tabs.php:819, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:931, ../includes/Elements/Contact_Form_7.php:838, ../includes/Elements/Contact_Form_7.php:890, ../includes/Elements/Content_Ticker.php:220, ../includes/Elements/Content_Ticker.php:253, ../includes/Elements/Content_Ticker.php:268, ../includes/Elements/Content_Ticker.php:303, ../includes/Elements/Data_Table.php:1015, ../includes/Elements/Facebook_Feed.php:291, ../includes/Elements/Filterable_Gallery.php:282, ../includes/Elements/Filterable_Gallery.php:425, ../includes/Elements/Filterable_Gallery.php:472, ../includes/Elements/Filterable_Gallery.php:496, ../includes/Elements/Filterable_Gallery.php:520, ../includes/Elements/Filterable_Gallery.php:579, ../includes/Elements/Filterable_Gallery.php:594, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1122, ../includes/Elements/GravityForms.php:147, ../includes/Elements/GravityForms.php:238, ../includes/Elements/GravityForms.php:1198, ../includes/Elements/GravityForms.php:1394, ../includes/Elements/Image_Accordion.php:172, ../includes/Elements/Info_Box.php:332, ../includes/Elements/Info_Box.php:346, ../includes/Elements/Login_Register.php:388, ../includes/Elements/Login_Register.php:466, ../includes/Elements/Login_Register.php:793, ../includes/Elements/NinjaForms.php:108, ../includes/Elements/NinjaForms.php:975, ../includes/Elements/Post_Grid.php:101, ../includes/Elements/Post_Grid.php:115, ../includes/Elements/Post_Grid.php:141, ../includes/Elements/Post_Grid.php:155, ../includes/Elements/Post_Grid.php:181, ../includes/Elements/Post_Grid.php:195, ../includes/Elements/Pricing_Table.php:195, ../includes/Elements/Pricing_Table.php:1773, ../includes/Elements/Team_Member.php:686, ../includes/Elements/WpForms.php:101, ../includes/Elements/WpForms.php:915, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:208, ../includes/Extensions/Table_of_Content.php:223, ../includes/Extensions/Table_of_Content.php:238, ../includes/Extensions/Table_of_Content.php:253, ../includes/Extensions/Table_of_Content.php:268, ../includes/Traits/Helper.php:353
597
+ msgid "Yes"
598
  msgstr ""
599
 
600
+ #: ../includes/Elements/Adv_Tabs.php:820, ../includes/Elements/Caldera_Forms.php:111, ../includes/Elements/Caldera_Forms.php:932, ../includes/Elements/Contact_Form_7.php:839, ../includes/Elements/Contact_Form_7.php:891, ../includes/Elements/Content_Ticker.php:221, ../includes/Elements/Content_Ticker.php:254, ../includes/Elements/Content_Ticker.php:269, ../includes/Elements/Content_Ticker.php:304, ../includes/Elements/Cta_Box.php:671, ../includes/Elements/Data_Table.php:1016, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:283, ../includes/Elements/Filterable_Gallery.php:426, ../includes/Elements/Filterable_Gallery.php:473, ../includes/Elements/Filterable_Gallery.php:497, ../includes/Elements/Filterable_Gallery.php:521, ../includes/Elements/Filterable_Gallery.php:580, ../includes/Elements/Filterable_Gallery.php:595, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:897, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1123, ../includes/Elements/GravityForms.php:148, ../includes/Elements/GravityForms.php:239, ../includes/Elements/GravityForms.php:1199, ../includes/Elements/GravityForms.php:1395, ../includes/Elements/Image_Accordion.php:173, ../includes/Elements/Info_Box.php:333, ../includes/Elements/Info_Box.php:347, ../includes/Elements/Login_Register.php:389, ../includes/Elements/Login_Register.php:467, ../includes/Elements/Login_Register.php:794, ../includes/Elements/NinjaForms.php:109, ../includes/Elements/NinjaForms.php:976, ../includes/Elements/Post_Grid.php:102, ../includes/Elements/Post_Grid.php:116, ../includes/Elements/Post_Grid.php:142, ../includes/Elements/Post_Grid.php:156, ../includes/Elements/Post_Grid.php:182, ../includes/Elements/Post_Grid.php:196, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Team_Member.php:687, ../includes/Elements/WpForms.php:102, ../includes/Elements/WpForms.php:916, ../includes/Extensions/Reading_Progress.php:43, ../includes/Extensions/Reading_Progress.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:209, ../includes/Extensions/Table_of_Content.php:224, ../includes/Extensions/Table_of_Content.php:239, ../includes/Extensions/Table_of_Content.php:254, ../includes/Extensions/Table_of_Content.php:269, ../includes/Traits/Helper.php:354
601
+ msgid "No"
602
  msgstr ""
603
 
604
+ #: ../includes/Elements/Betterdocs_Category_Box.php:31, ../includes/templates/admin/elements.php:469
605
+ msgid "BetterDocs Category Box"
606
  msgstr ""
607
 
608
+ #: ../includes/Elements/Betterdocs_Category_Box.php:115, ../includes/Elements/Betterdocs_Category_Grid.php:119
609
+ msgid "Layout Options"
610
  msgstr ""
611
 
612
+ #: ../includes/Elements/Betterdocs_Category_Box.php:122, ../includes/Elements/Betterdocs_Category_Grid.php:126
613
+ msgid "Select Layout"
614
  msgstr ""
615
 
616
+ #: ../includes/Elements/Betterdocs_Category_Box.php:133
617
+ msgid "Box Column"
 
618
  msgstr ""
619
 
620
+ #: ../includes/Elements/Betterdocs_Category_Box.php:153, ../includes/Elements/Betterdocs_Category_Grid.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:1195, ../includes/Elements/Dual_Color_Header.php:85, ../includes/Elements/Twitter_Feed.php:284
621
+ msgid "Show Icon"
622
  msgstr ""
623
 
624
+ #: ../includes/Elements/Betterdocs_Category_Box.php:155, ../includes/Elements/Betterdocs_Category_Box.php:167, ../includes/Elements/Betterdocs_Category_Box.php:202, ../includes/Elements/Betterdocs_Category_Grid.php:176, ../includes/Elements/Betterdocs_Category_Grid.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:204, ../includes/Elements/Betterdocs_Category_Grid.php:243, ../includes/Elements/Betterdocs_Category_Grid.php:259, ../includes/Elements/Betterdocs_Category_Grid.php:271, ../includes/Elements/Betterdocs_Category_Grid.php:1197, ../includes/Elements/Caldera_Forms.php:147, ../includes/Elements/Caldera_Forms.php:160, ../includes/Elements/Caldera_Forms.php:186, ../includes/Elements/Contact_Form_7.php:198, ../includes/Elements/Contact_Form_7.php:224, ../includes/Elements/Contact_Form_7.php:244, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Countdown.php:487, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:131, ../includes/Elements/Cta_Box.php:269, ../includes/Elements/Dual_Color_Header.php:88, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:270, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:172, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:1700, ../includes/Elements/FluentForm.php:1768, ../includes/Elements/Formstack.php:229, ../includes/Elements/Formstack.php:241, ../includes/Elements/Formstack.php:267, ../includes/Elements/Formstack.php:280, ../includes/Elements/Formstack.php:1616, ../includes/Elements/GravityForms.php:159, ../includes/Elements/GravityForms.php:174, ../includes/Elements/GravityForms.php:214, ../includes/Elements/GravityForms.php:226, ../includes/Elements/GravityForms.php:264, ../includes/Elements/GravityForms.php:284, ../includes/Elements/Info_Box.php:264, ../includes/Elements/Login_Register.php:602, ../includes/Elements/Login_Register.php:609, ../includes/Elements/NinjaForms.php:120, ../includes/Elements/NinjaForms.php:161, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:200, ../includes/Elements/NinjaForms.php:220, ../includes/Elements/Post_Timeline.php:87, ../includes/Elements/Pricing_Table.php:443, ../includes/Elements/Pricing_Table.php:1525, ../includes/Elements/Product_Grid.php:200, ../includes/Elements/Sticky_Video.php:355, ../includes/Elements/WpForms.php:113, ../includes/Elements/WpForms.php:128, ../includes/Elements/WpForms.php:168, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:204, ../includes/Traits/Helper.php:475, ../includes/Traits/Helper.php:504, ../includes/Traits/Helper.php:612, ../includes/Traits/Helper.php:660, ../includes/Traits/Helper.php:726, ../includes/Traits/Helper.php:760, ../includes/Traits/Helper.php:790, ../includes/Traits/Helper.php:841, ../includes/Traits/Helper.php:869, ../includes/Traits/Helper.php:885, ../includes/Traits/Helper.php:900
625
+ msgid "Show"
626
  msgstr ""
627
 
628
+ #: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Box.php:203, ../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:1198, ../includes/Elements/Caldera_Forms.php:148, ../includes/Elements/Caldera_Forms.php:161, ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Contact_Form_7.php:199, ../includes/Elements/Contact_Form_7.php:225, ../includes/Elements/Contact_Form_7.php:245, ../includes/Elements/Content_Ticker.php:282, ../includes/Elements/Countdown.php:488, ../includes/Elements/Creative_Button.php:228, ../includes/Elements/Cta_Box.php:132, ../includes/Elements/Cta_Box.php:270, ../includes/Elements/Dual_Color_Header.php:89, ../includes/Elements/Filterable_Gallery.php:271, ../includes/Elements/FluentForm.php:161, ../includes/Elements/FluentForm.php:173, ../includes/Elements/FluentForm.php:199, ../includes/Elements/FluentForm.php:1701, ../includes/Elements/FluentForm.php:1769, ../includes/Elements/Formstack.php:230, ../includes/Elements/Formstack.php:242, ../includes/Elements/Formstack.php:268, ../includes/Elements/Formstack.php:281, ../includes/Elements/Formstack.php:1617, ../includes/Elements/GravityForms.php:160, ../includes/Elements/GravityForms.php:175, ../includes/Elements/GravityForms.php:215, ../includes/Elements/GravityForms.php:227, ../includes/Elements/GravityForms.php:265, ../includes/Elements/GravityForms.php:285, ../includes/Elements/Info_Box.php:265, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:601, ../includes/Elements/Login_Register.php:608, ../includes/Elements/NinjaForms.php:121, ../includes/Elements/NinjaForms.php:162, ../includes/Elements/NinjaForms.php:175, ../includes/Elements/NinjaForms.php:201, ../includes/Elements/NinjaForms.php:221, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Pricing_Table.php:444, ../includes/Elements/Pricing_Table.php:1526, ../includes/Elements/Product_Grid.php:201, ../includes/Elements/Sticky_Video.php:356, ../includes/Elements/WpForms.php:114, ../includes/Elements/WpForms.php:129, ../includes/Elements/WpForms.php:169, ../includes/Elements/WpForms.php:182, ../includes/Elements/WpForms.php:205, ../includes/Traits/Helper.php:476, ../includes/Traits/Helper.php:505, ../includes/Traits/Helper.php:613, ../includes/Traits/Helper.php:661, ../includes/Traits/Helper.php:727, ../includes/Traits/Helper.php:761, ../includes/Traits/Helper.php:791, ../includes/Traits/Helper.php:842, ../includes/Traits/Helper.php:870, ../includes/Traits/Helper.php:886, ../includes/Traits/Helper.php:901
629
+ msgid "Hide"
630
  msgstr ""
631
 
632
+ #: ../includes/Elements/Betterdocs_Category_Box.php:165, ../includes/Elements/Betterdocs_Category_Grid.php:202, ../includes/Traits/Helper.php:610
633
+ msgid "Show Title"
634
  msgstr ""
635
 
636
+ #: ../includes/Elements/Betterdocs_Category_Box.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:217, ../includes/Elements/Cta_Box.php:184, ../includes/Elements/Image_Accordion.php:139, ../includes/Traits/Helper.php:622
637
+ msgid "Select Tag"
638
  msgstr ""
639
 
640
+ #: ../includes/Elements/Betterdocs_Category_Box.php:181, ../includes/Elements/Betterdocs_Category_Grid.php:221, ../includes/Elements/Cta_Box.php:188, ../includes/Elements/Dual_Color_Header.php:120, ../includes/Elements/Filterable_Gallery.php:361, ../includes/Elements/Image_Accordion.php:143, ../includes/Elements/Progress_Bar.php:133, ../includes/Elements/Tooltip.php:112, ../includes/Extensions/Table_of_Content.php:146, ../includes/Traits/Helper.php:626
641
+ msgid "H1"
642
  msgstr ""
643
 
644
+ #: ../includes/Elements/Betterdocs_Category_Box.php:182, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:189, ../includes/Elements/Dual_Color_Header.php:121, ../includes/Elements/Filterable_Gallery.php:362, ../includes/Elements/Image_Accordion.php:144, ../includes/Elements/Progress_Bar.php:134, ../includes/Elements/Tooltip.php:113, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Helper.php:627
645
+ msgid "H2"
646
  msgstr ""
647
 
648
+ #: ../includes/Elements/Betterdocs_Category_Box.php:183, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:190, ../includes/Elements/Dual_Color_Header.php:122, ../includes/Elements/Filterable_Gallery.php:363, ../includes/Elements/Image_Accordion.php:145, ../includes/Elements/Progress_Bar.php:135, ../includes/Elements/Tooltip.php:114, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Helper.php:628
649
+ msgid "H3"
 
650
  msgstr ""
651
 
652
+ #: ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:191, ../includes/Elements/Dual_Color_Header.php:123, ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Image_Accordion.php:146, ../includes/Elements/Progress_Bar.php:136, ../includes/Elements/Tooltip.php:115, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Helper.php:629
653
+ msgid "H4"
 
654
  msgstr ""
655
 
656
+ #: ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:192, ../includes/Elements/Dual_Color_Header.php:124, ../includes/Elements/Filterable_Gallery.php:365, ../includes/Elements/Image_Accordion.php:147, ../includes/Elements/Progress_Bar.php:137, ../includes/Elements/Tooltip.php:116, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Helper.php:630
657
+ msgid "H5"
 
658
  msgstr ""
659
 
660
+ #: ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:193, ../includes/Elements/Dual_Color_Header.php:125, ../includes/Elements/Filterable_Gallery.php:366, ../includes/Elements/Image_Accordion.php:148, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:117, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Helper.php:631
661
+ msgid "H6"
662
  msgstr ""
663
 
664
+ #: ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:194, ../includes/Elements/Dual_Color_Header.php:126, ../includes/Elements/Filterable_Gallery.php:367, ../includes/Elements/Image_Accordion.php:149, ../includes/Traits/Helper.php:632
665
+ msgid "Span"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  msgstr ""
667
 
668
+ #: ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:195, ../includes/Elements/Dual_Color_Header.php:127, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Image_Accordion.php:150, ../includes/Elements/Tooltip.php:120, ../includes/Traits/Helper.php:633
669
+ msgid "P"
670
  msgstr ""
671
 
672
+ #: ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:196, ../includes/Elements/Dual_Color_Header.php:128, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Image_Accordion.php:151, ../includes/Traits/Helper.php:634
673
+ msgid "Div"
 
 
 
674
  msgstr ""
675
 
676
+ #: ../includes/Elements/Betterdocs_Category_Box.php:200, ../includes/Elements/Betterdocs_Category_Grid.php:241
677
+ msgid "Show Count"
678
  msgstr ""
679
 
680
+ #: ../includes/Elements/Betterdocs_Category_Box.php:212, ../includes/Elements/Progress_Bar.php:237
681
+ msgid "Prefix"
 
 
 
682
  msgstr ""
683
 
684
+ #: ../includes/Elements/Betterdocs_Category_Box.php:224
685
+ msgid "Suffix"
686
  msgstr ""
687
 
688
+ #: ../includes/Elements/Betterdocs_Category_Box.php:226
689
+ msgid "articles"
690
  msgstr ""
691
 
692
+ #: ../includes/Elements/Betterdocs_Category_Box.php:245, ../includes/Elements/Data_Table.php:245, ../includes/Traits/Helper.php:381
693
+ msgid "Column"
694
  msgstr ""
695
 
696
+ #: ../includes/Elements/Betterdocs_Category_Box.php:253
697
+ msgid "Box Spacing"
698
  msgstr ""
699
 
700
+ #: ../includes/Elements/Betterdocs_Category_Box.php:265
701
+ msgid "Box Padding"
702
  msgstr ""
703
 
704
+ #: ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Flip_Box.php:416
705
+ msgid "Box"
706
  msgstr ""
707
 
708
+ #: ../includes/Elements/Betterdocs_Category_Box.php:346, ../includes/Elements/Betterdocs_Category_Box.php:599, ../includes/Elements/Betterdocs_Category_Box.php:743, ../includes/Elements/Betterdocs_Category_Box.php:1005, ../includes/Elements/Betterdocs_Search_Form.php:458, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Info_Box.php:1477
709
+ msgid "Transition"
 
 
710
  msgstr ""
711
 
712
+ #: ../includes/Elements/Betterdocs_Category_Box.php:425, ../includes/Elements/Betterdocs_Category_Box.php:645, ../includes/Elements/Betterdocs_Category_Box.php:785
713
+ msgid "Area"
714
  msgstr ""
715
 
716
+ #: ../includes/Elements/Betterdocs_Category_Box.php:433, ../includes/Elements/Betterdocs_Category_Box.php:468, ../includes/Elements/Betterdocs_Category_Box.php:793, ../includes/Elements/Betterdocs_Category_Box.php:900, ../includes/Elements/Betterdocs_Category_Grid.php:535, ../includes/Elements/Betterdocs_Category_Grid.php:818, ../includes/Elements/Betterdocs_Category_Grid.php:991, ../includes/Elements/Betterdocs_Category_Grid.php:1144, ../includes/Elements/Betterdocs_Search_Form.php:227, ../includes/Elements/Caldera_Forms.php:940, ../includes/Elements/Contact_Form_7.php:899, ../includes/Elements/Feature_List.php:553, ../includes/Elements/Filterable_Gallery.php:699, ../includes/Elements/FluentForm.php:905, ../includes/Elements/Formstack.php:1131, ../includes/Elements/Formstack.php:1284, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:3214, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Progress_Bar.php:544, ../includes/Elements/WpForms.php:924
717
+ msgid "Size"
 
 
 
 
718
  msgstr ""
719
 
720
+ #: ../includes/Elements/Betterdocs_Category_Box.php:537, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:920, ../includes/Elements/Betterdocs_Category_Grid.php:1010, ../includes/Elements/Betterdocs_Category_Grid.php:1088, ../includes/Elements/Caldera_Forms.php:748, ../includes/Elements/Caldera_Forms.php:865, ../includes/Elements/Contact_Form_7.php:569, ../includes/Elements/Contact_Form_7.php:787, ../includes/Elements/Contact_Form_7.php:1357, ../includes/Elements/Feature_List.php:654, ../includes/Elements/Filterable_Gallery.php:2391, ../includes/Elements/FluentForm.php:766, ../includes/Elements/FluentForm.php:1742, ../includes/Elements/Formstack.php:599, ../includes/Elements/Formstack.php:995, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:948, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2604, ../includes/Elements/Login_Register.php:2947, ../includes/Elements/Login_Register.php:3246, ../includes/Elements/NinjaForms.php:789, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1574, ../includes/Elements/Post_Grid.php:856, ../includes/Elements/Woo_Checkout.php:1712, ../includes/Elements/WpForms.php:743, ../includes/Elements/WpForms.php:849
721
+ msgid "Spacing"
722
  msgstr ""
723
 
724
+ #: ../includes/Elements/Betterdocs_Category_Box.php:637, ../includes/Elements/Betterdocs_Category_Box.php:673, ../includes/Elements/Betterdocs_Category_Grid.php:585, ../includes/Elements/Betterdocs_Category_Grid.php:1040, ../includes/Elements/Caldera_Forms.php:119, ../includes/Elements/Caldera_Forms.php:253, ../includes/Elements/Contact_Form_7.php:159, ../includes/Elements/Contact_Form_7.php:459, ../includes/Elements/Cta_Box.php:173, ../includes/Elements/Event_Calendar.php:139, ../includes/Elements/Event_Calendar.php:618, ../includes/Elements/Event_Calendar.php:1278, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:417, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:259, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:466, ../includes/Elements/GravityForms.php:156, ../includes/Elements/GravityForms.php:186, ../includes/Elements/GravityForms.php:498, ../includes/Elements/Image_Accordion.php:187, ../includes/Elements/Image_Accordion.php:415, ../includes/Elements/Login_Register.php:2214, ../includes/Elements/NinjaForms.php:117, ../includes/Elements/NinjaForms.php:133, ../includes/Elements/NinjaForms.php:435, ../includes/Elements/Post_Grid.php:127, ../includes/Elements/Pricing_Table.php:123, ../includes/Elements/Progress_Bar.php:120, ../includes/Elements/Progress_Bar.php:674, ../includes/Elements/WpForms.php:110, ../includes/Elements/WpForms.php:140, ../includes/Elements/WpForms.php:398, ../includes/Extensions/Table_of_Content.php:110
725
+ msgid "Title"
726
  msgstr ""
727
 
728
+ #: ../includes/Elements/Betterdocs_Category_Box.php:653
729
+ msgid "Area Size"
730
  msgstr ""
731
 
732
+ #: ../includes/Elements/Betterdocs_Category_Box.php:777, ../includes/Elements/Betterdocs_Category_Box.php:813, ../includes/Elements/Betterdocs_Category_Grid.php:752, ../includes/Elements/Betterdocs_Search_Form.php:422, ../includes/Elements/Betterdocs_Search_Form.php:520
733
+ msgid "Count"
734
  msgstr ""
735
 
736
+ #: ../includes/Elements/Betterdocs_Category_Box.php:84, ../includes/Elements/Betterdocs_Category_Grid.php:89, ../includes/Elements/Betterdocs_Search_Form.php:81, ../includes/Elements/Caldera_Forms.php:68, ../includes/Elements/Contact_Form_7.php:108, ../includes/Elements/EmbedPress.php:54, ../includes/Elements/FluentForm.php:79, ../includes/Elements/Formstack.php:75, ../includes/Elements/Formstack.php:96, ../includes/Elements/Formstack.php:117, ../includes/Elements/GravityForms.php:105, ../includes/Elements/NinjaForms.php:66, ../includes/Elements/TypeForm.php:99, ../includes/Elements/WeForms.php:68, ../includes/Elements/Woocommerce_Review.php:52, ../includes/Elements/Woo_Checkout.php:83, ../includes/Elements/WpForms.php:63
737
+ msgid "Warning!"
738
  msgstr ""
739
 
740
+ #: ../includes/Elements/Betterdocs_Category_Box.php:92, ../includes/Elements/Betterdocs_Category_Grid.php:97, ../includes/Elements/Betterdocs_Search_Form.php:89
741
+ msgid "<strong>BetterDocs</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=BetterDocs&tab=search&type=term\" target=\"_blank\">BetterDocs</a> first."
742
  msgstr ""
743
 
744
+ #: ../includes/Elements/Betterdocs_Category_Box.php:1110, ../includes/Elements/Betterdocs_Category_Grid.php:1505
745
+ msgid "File Not Found"
746
  msgstr ""
747
 
748
+ #: ../includes/Elements/Betterdocs_Category_Box.php:1103, ../includes/Elements/Betterdocs_Category_Grid.php:1499, ../includes/Template/Content/Post_Grid.php:215, ../includes/Template/Content/Post_Timeline.php:46, ../includes/Template/Content/Product_Grid.php:53
749
+ msgid "<p class=\"no-posts-found\">No posts found!</p>"
750
  msgstr ""
751
 
752
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:29, ../includes/templates/admin/elements.php:463
753
+ msgid "BetterDocs Category Grid"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754
  msgstr ""
755
 
756
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:137
757
+ msgid "Layout Mode"
758
  msgstr ""
759
 
760
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:140, ../includes/Elements/Betterdocs_Category_Grid.php:300, ../includes/Elements/Filterable_Gallery.php:141, ../includes/Traits/Helper.php:406
761
+ msgid "Grid"
 
 
 
 
 
 
762
  msgstr ""
763
 
764
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:141
765
+ msgid "Fit to Screen"
766
  msgstr ""
767
 
768
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:142, ../includes/Elements/Filterable_Gallery.php:142, ../includes/Elements/Twitter_Feed.php:146, ../includes/Traits/Helper.php:407
769
+ msgid "Masonry"
770
  msgstr ""
771
 
772
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:152
773
+ msgid "Grid Column"
774
  msgstr ""
775
 
776
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:174
777
+ msgid "Show Header"
778
  msgstr ""
779
 
780
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:257
781
+ msgid "Show List"
 
 
 
 
782
  msgstr ""
783
 
784
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:269
785
+ msgid "Show Button"
786
  msgstr ""
787
 
788
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:281, ../includes/Elements/Creative_Button.php:68, ../includes/Elements/Cta_Box.php:245, ../includes/Elements/Filterable_Gallery.php:675, ../includes/Elements/Flip_Box.php:448, ../includes/Elements/Info_Box.php:375, ../includes/Elements/Login_Register.php:621, ../includes/Elements/Login_Register.php:1110, ../includes/Elements/Pricing_Table.php:506, ../includes/Traits/Helper.php:773
789
+ msgid "Button Text"
790
  msgstr ""
791
 
792
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:283
793
+ msgid "Explore More"
 
794
  msgstr ""
795
 
796
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:409
797
+ msgid "Grid Padding"
 
798
  msgstr ""
799
 
800
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:422
801
+ msgid "Grid Spacing"
802
  msgstr ""
803
 
804
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:786
805
+ msgid "Ticker Background"
806
  msgstr ""
807
 
808
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Cta_Box.php:1008, ../includes/Elements/Pricing_Table.php:1253
809
+ msgid "Font Size"
 
810
  msgstr ""
811
 
812
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:873, ../includes/Elements/Betterdocs_Category_Grid.php:884, ../includes/Elements/Event_Calendar.php:452, ../includes/Elements/Feature_List.php:376, ../includes/Elements/Twitter_Feed.php:145, ../includes/Extensions/Table_of_Content.php:798
813
+ msgid "List"
814
  msgstr ""
815
 
816
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:911, ../includes/Elements/Filterable_Gallery.php:1212, ../includes/Elements/Filterable_Gallery.php:1592, ../includes/Elements/Filterable_Gallery.php:2348, ../includes/Elements/Pricing_Table.php:1669, ../includes/Elements/Twitter_Feed.php:490
817
+ msgid "Hover Color"
818
  msgstr ""
819
 
820
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:922
821
+ msgid "List Item Spacing"
822
  msgstr ""
823
 
824
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:946
825
+ msgid "List Area Padding"
826
  msgstr ""
827
 
828
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1029
829
+ msgid "Nested List"
830
  msgstr ""
831
 
832
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1109
833
+ msgid "Collapse Icon"
834
  msgstr ""
835
 
836
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1121
837
+ msgid "Open Icon"
838
  msgstr ""
839
 
840
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1163, ../includes/Elements/Betterdocs_Category_Grid.php:1312
841
+ msgid "Area Spacing"
842
  msgstr ""
843
 
844
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1226, ../includes/Elements/Creative_Button.php:122, ../includes/Elements/Filterable_Gallery.php:736, ../includes/Elements/Flip_Box.php:480, ../includes/Elements/Info_Box.php:425, ../includes/Elements/Pricing_Table.php:472
845
+ msgid "Before"
846
  msgstr ""
847
 
848
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1227, ../includes/Elements/Creative_Button.php:123, ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Flip_Box.php:479, ../includes/Elements/Info_Box.php:426, ../includes/Elements/Pricing_Table.php:473
849
+ msgid "After"
850
  msgstr ""
851
 
852
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1405, ../includes/Elements/Creative_Button.php:390, ../includes/Elements/Pricing_Table.php:763, ../includes/Elements/WeForms.php:584, ../includes/Traits/Helper.php:1325
853
+ msgid "Button Alignment"
854
  msgstr ""
855
 
856
+ #: ../includes/Elements/Betterdocs_Search_Form.php:29, ../includes/templates/admin/elements.php:475
857
+ msgid "BetterDocs Search Form"
858
  msgstr ""
859
 
860
+ #: ../includes/Elements/Betterdocs_Search_Form.php:105
861
+ msgid "Search Box"
 
862
  msgstr ""
863
 
864
+ #: ../includes/Elements/Betterdocs_Search_Form.php:146
865
+ msgid "Search Field"
 
 
 
 
 
 
 
 
866
  msgstr ""
867
 
868
+ #: ../includes/Elements/Betterdocs_Search_Form.php:153
869
+ msgid "Field Background Color"
 
 
870
  msgstr ""
871
 
872
+ #: ../includes/Elements/Betterdocs_Search_Form.php:164
873
+ msgid "Field Color"
874
  msgstr ""
875
 
876
+ #: ../includes/Elements/Betterdocs_Search_Form.php:183
877
+ msgid "Field Padding"
878
  msgstr ""
879
 
880
+ #: ../includes/Elements/Betterdocs_Search_Form.php:207
881
+ msgid "Search Icon"
882
  msgstr ""
883
 
884
+ #: ../includes/Elements/Betterdocs_Search_Form.php:244
885
+ msgid "Close Icon"
886
  msgstr ""
887
 
888
+ #: ../includes/Elements/Betterdocs_Search_Form.php:264, ../includes/Elements/Caldera_Forms.php:1015, ../includes/Elements/Caldera_Forms.php:1329, ../includes/Elements/Contact_Form_7.php:974, ../includes/Elements/Contact_Form_7.php:1290, ../includes/Elements/Content_Ticker.php:691, ../includes/Elements/Countdown.php:768, ../includes/Elements/Countdown.php:840, ../includes/Elements/Countdown.php:912, ../includes/Elements/Countdown.php:984, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:795, ../includes/Elements/Cta_Box.php:964, ../includes/Elements/Event_Calendar.php:566, ../includes/Elements/Filterable_Gallery.php:2691, ../includes/Elements/FluentForm.php:980, ../includes/Elements/FluentForm.php:1648, ../includes/Elements/Formstack.php:1564, ../includes/Elements/GravityForms.php:1049, ../includes/Elements/GravityForms.php:1282, ../includes/Elements/GravityForms.php:1478, ../includes/Elements/GravityForms.php:1907, ../includes/Elements/GravityForms.php:2129, ../includes/Elements/NinjaForms.php:1059, ../includes/Elements/NinjaForms.php:1478, ../includes/Elements/Pricing_Table.php:1895, ../includes/Elements/Product_Grid.php:553, ../includes/Elements/Sticky_Video.php:572, ../includes/Elements/WeForms.php:444, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:502, ../includes/Elements/Woo_Checkout.php:708, ../includes/Elements/Woo_Checkout.php:1103, ../includes/Elements/Woo_Checkout.php:1299, ../includes/Elements/Woo_Checkout.php:1401, ../includes/Elements/Woo_Checkout.php:1518, ../includes/Elements/Woo_Checkout.php:1562, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Checkout.php:1795, ../includes/Elements/Woo_Checkout.php:1811, ../includes/Elements/Woo_Checkout.php:2073, ../includes/Elements/Woo_Checkout.php:2185, ../includes/Elements/WpForms.php:999, ../includes/Elements/WpForms.php:1317, ../includes/Traits/Helper.php:1301
889
+ msgid "Border Color"
890
  msgstr ""
891
 
892
+ #: ../includes/Elements/Betterdocs_Search_Form.php:283
893
+ msgid "Search Result Box"
894
  msgstr ""
895
 
896
+ #: ../includes/Elements/Betterdocs_Search_Form.php:312
897
+ msgid "Max Width"
898
  msgstr ""
899
 
900
+ #: ../includes/Elements/Betterdocs_Search_Form.php:359
901
+ msgid "Search Result List"
902
  msgstr ""
903
 
904
+ #: ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:480
905
+ msgid "Item"
906
  msgstr ""
907
 
908
+ #: ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Betterdocs_Search_Form.php:439, ../includes/Elements/Betterdocs_Search_Form.php:500, ../includes/Elements/Betterdocs_Search_Form.php:529
909
+ msgid "Item Color"
910
  msgstr ""
911
 
912
+ #: ../includes/Elements/Caldera_Forms.php:28, ../includes/Elements/Caldera_Forms.php:90
913
+ msgid "Caldera Forms"
914
  msgstr ""
915
 
916
+ #: ../includes/Elements/Caldera_Forms.php:97, ../includes/templates/admin/elements.php:372
917
+ msgid "Caldera Form"
918
  msgstr ""
919
 
920
+ #: ../includes/Elements/Caldera_Forms.php:108, ../includes/Elements/FluentForm.php:121, ../includes/Elements/Formstack.php:190, ../includes/Elements/GravityForms.php:145, ../includes/Elements/NinjaForms.php:106, ../includes/Elements/WpForms.php:99
921
+ msgid "Custom Title & Description"
922
  msgstr ""
923
 
924
+ #: ../includes/Elements/Caldera_Forms.php:132, ../includes/Elements/Caldera_Forms.php:314, ../includes/Elements/Contact_Form_7.php:183, ../includes/Elements/Contact_Form_7.php:490, ../includes/Elements/Event_Calendar.php:254, ../includes/Elements/Feature_List.php:786, ../includes/Elements/FluentForm.php:145, ../includes/Elements/FluentForm.php:320, ../includes/Elements/FluentForm.php:1146, ../includes/Elements/Formstack.php:214, ../includes/Elements/Formstack.php:515, ../includes/Elements/Formstack.php:698, ../includes/Elements/GravityForms.php:171, ../includes/Elements/GravityForms.php:199, ../includes/Elements/GravityForms.php:529, ../includes/Elements/NinjaForms.php:146, ../includes/Elements/NinjaForms.php:484, ../includes/Elements/Team_Member.php:124, ../includes/Elements/WpForms.php:125, ../includes/Elements/WpForms.php:153, ../includes/Elements/WpForms.php:447, ../includes/Traits/Helper.php:285
925
+ msgid "Description"
926
  msgstr ""
927
 
928
+ #: ../includes/Elements/Caldera_Forms.php:144, ../includes/Elements/Caldera_Forms.php:510, ../includes/Elements/Contact_Form_7.php:195, ../includes/Elements/Contact_Form_7.php:761, ../includes/Elements/FluentForm.php:157, ../includes/Elements/FluentForm.php:528, ../includes/Elements/Formstack.php:226, ../includes/Elements/Formstack.php:783, ../includes/Elements/GravityForms.php:211, ../includes/Elements/GravityForms.php:566, ../includes/Elements/Login_Register.php:515, ../includes/Elements/NinjaForms.php:158, ../includes/Elements/NinjaForms.php:540, ../includes/Elements/WpForms.php:165, ../includes/Elements/WpForms.php:503
929
+ msgid "Labels"
930
  msgstr ""
931
 
932
+ #: ../includes/Elements/Caldera_Forms.php:175, ../includes/Elements/Caldera_Forms.php:1407, ../includes/Elements/Contact_Form_7.php:213, ../includes/Elements/Contact_Form_7.php:1311, ../includes/Elements/FluentForm.php:187, ../includes/Elements/FluentForm.php:2090, ../includes/Elements/Formstack.php:256, ../includes/Elements/Formstack.php:1897, ../includes/Elements/GravityForms.php:253, ../includes/Elements/GravityForms.php:2172, ../includes/Elements/NinjaForms.php:189, ../includes/Elements/NinjaForms.php:1609, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:1339
933
+ msgid "Errors"
 
 
 
 
934
  msgstr ""
935
 
936
+ #: ../includes/Elements/Caldera_Forms.php:182, ../includes/Elements/Caldera_Forms.php:1415, ../includes/Elements/Contact_Form_7.php:220, ../includes/Elements/Contact_Form_7.php:1319, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:2098, ../includes/Elements/Formstack.php:263, ../includes/Elements/Formstack.php:1905, ../includes/Elements/GravityForms.php:260, ../includes/Elements/GravityForms.php:2180, ../includes/Elements/Login_Register.php:865, ../includes/Elements/NinjaForms.php:196, ../includes/Elements/NinjaForms.php:1617, ../includes/Elements/WpForms.php:200
937
+ msgid "Error Messages"
 
 
 
 
 
 
938
  msgstr ""
939
 
940
+ #: ../includes/Elements/Caldera_Forms.php:76
941
+ msgid "<strong>Caldera Forms</strong> is not installed/activated on your site. Please install and activate <strong>Caldera Forms</strong> first."
942
  msgstr ""
943
 
944
+ #: ../includes/Elements/Caldera_Forms.php:213, ../includes/Elements/Contact_Form_7.php:425, ../includes/Elements/FluentForm.php:218, ../includes/Elements/Formstack.php:428, ../includes/Elements/GravityForms.php:464, ../includes/Elements/NinjaForms.php:401, ../includes/Elements/WpForms.php:364
945
+ msgid "Title & Description"
946
  msgstr ""
947
 
948
+ #: ../includes/Elements/Caldera_Forms.php:382, ../includes/Elements/Contact_Form_7.php:298, ../includes/Elements/FluentForm.php:388, ../includes/Elements/Formstack.php:299, ../includes/Elements/GravityForms.php:311, ../includes/Elements/NinjaForms.php:242, ../includes/Elements/TypeForm.php:171, ../includes/Elements/WpForms.php:231
949
+ msgid "Form Container"
950
  msgstr ""
951
 
952
+ #: ../includes/Elements/Caldera_Forms.php:390, ../includes/Elements/FluentForm.php:396, ../includes/Elements/Formstack.php:307, ../includes/Elements/GravityForms.php:319, ../includes/Elements/NinjaForms.php:250, ../includes/Elements/TypeForm.php:179, ../includes/Elements/WeForms.php:143, ../includes/Elements/WpForms.php:239
953
+ msgid "Form Background Color"
954
  msgstr ""
955
 
956
+ #: ../includes/Elements/Caldera_Forms.php:401, ../includes/Elements/Contact_Form_7.php:316, ../includes/Elements/FluentForm.php:419, ../includes/Elements/Formstack.php:319, ../includes/Elements/GravityForms.php:330, ../includes/Elements/NinjaForms.php:261, ../includes/Elements/TypeForm.php:191, ../includes/Elements/WeForms.php:154, ../includes/Elements/WpForms.php:250
957
+ msgid "Form Alignment"
 
 
 
958
  msgstr ""
959
 
960
+ #: ../includes/Elements/Caldera_Forms.php:406, ../includes/Elements/Contact_Form_7.php:321, ../includes/Elements/Creative_Button.php:202, ../includes/Elements/Cta_Box.php:627, ../includes/Elements/Cta_Box.php:844, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Flip_Box.php:640, ../includes/Elements/FluentForm.php:424, ../includes/Elements/Formstack.php:324, ../includes/Elements/GravityForms.php:335, ../includes/Elements/Login_Register.php:410, ../includes/Elements/Login_Register.php:507, ../includes/Elements/Login_Register.php:1043, ../includes/Elements/Login_Register.php:1396, ../includes/Elements/Login_Register.php:1522, ../includes/Elements/Login_Register.php:1779, ../includes/Elements/Login_Register.php:1923, ../includes/Elements/Login_Register.php:2073, ../includes/Elements/Login_Register.php:2216, ../includes/Elements/Login_Register.php:2307, ../includes/Elements/Login_Register.php:2405, ../includes/Elements/Login_Register.php:2606, ../includes/Elements/Login_Register.php:2651, ../includes/Elements/Login_Register.php:2683, ../includes/Elements/Login_Register.php:2949, ../includes/Elements/Login_Register.php:3248, ../includes/Elements/NinjaForms.php:266, ../includes/Elements/Post_Grid.php:222, ../includes/Elements/Pricing_Table.php:73, ../includes/Elements/Pricing_Table.php:409, ../includes/Elements/Product_Grid.php:163, ../includes/Elements/Team_Member.php:357, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:271, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:159, ../includes/Elements/WeForms.php:589, ../includes/Elements/Woo_Checkout.php:119, ../includes/Elements/WpForms.php:255, ../includes/Traits/Helper.php:422, ../includes/Traits/Helper.php:2798, ../includes/Traits/Login_Registration.php:528, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:3, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:3
961
+ msgid "Default"
962
  msgstr ""
963
 
964
+ #: ../includes/Elements/Caldera_Forms.php:429, ../includes/Elements/Contact_Form_7.php:344, ../includes/Elements/FluentForm.php:447, ../includes/Elements/GravityForms.php:380, ../includes/Elements/NinjaForms.php:311, ../includes/Elements/TypeForm.php:219, ../includes/Elements/WeForms.php:205, ../includes/Elements/WpForms.php:278
965
+ msgid "Form Max Width"
966
  msgstr ""
967
 
968
+ #: ../includes/Elements/Caldera_Forms.php:451, ../includes/Elements/Contact_Form_7.php:366, ../includes/Elements/FluentForm.php:469, ../includes/Elements/Formstack.php:369, ../includes/Elements/GravityForms.php:403, ../includes/Elements/Login_Register.php:1681, ../includes/Elements/NinjaForms.php:334, ../includes/Elements/TypeForm.php:286, ../includes/Elements/WeForms.php:227, ../includes/Elements/WpForms.php:301
969
+ msgid "Form Margin"
970
  msgstr ""
971
 
972
+ #: ../includes/Elements/Caldera_Forms.php:463, ../includes/Elements/Contact_Form_7.php:378, ../includes/Elements/FluentForm.php:481, ../includes/Elements/Formstack.php:381, ../includes/Elements/GravityForms.php:415, ../includes/Elements/Login_Register.php:1696, ../includes/Elements/NinjaForms.php:346, ../includes/Elements/TypeForm.php:298, ../includes/Elements/WeForms.php:239, ../includes/Elements/WpForms.php:313
973
+ msgid "Form Padding"
 
 
 
 
974
  msgstr ""
975
 
976
+ #: ../includes/Elements/Caldera_Forms.php:544, ../includes/Elements/Contact_Form_7.php:527, ../includes/Elements/FluentForm.php:562, ../includes/Elements/Formstack.php:817, ../includes/Elements/GravityForms.php:609, ../includes/Elements/NinjaForms.php:583, ../includes/Elements/WpForms.php:538
977
+ msgid "Input & Textarea"
978
  msgstr ""
979
 
980
+ #: ../includes/Elements/Caldera_Forms.php:635, ../includes/Elements/Contact_Form_7.php:604, ../includes/Elements/FluentForm.php:653, ../includes/Elements/Formstack.php:882, ../includes/Elements/GravityForms.php:726, ../includes/Elements/NinjaForms.php:674, ../includes/Elements/WpForms.php:629
981
+ msgid "Text Indent"
982
  msgstr ""
983
 
984
+ #: ../includes/Elements/Caldera_Forms.php:660, ../includes/Elements/Contact_Form_7.php:628, ../includes/Elements/FluentForm.php:678, ../includes/Elements/Formstack.php:907, ../includes/Elements/GravityForms.php:750, ../includes/Elements/NinjaForms.php:699, ../includes/Elements/WeForms.php:307, ../includes/Elements/WpForms.php:654
985
+ msgid "Input Width"
986
  msgstr ""
987
 
988
+ #: ../includes/Elements/Caldera_Forms.php:679, ../includes/Elements/FluentForm.php:697, ../includes/Elements/Formstack.php:926, ../includes/Elements/GravityForms.php:769, ../includes/Elements/NinjaForms.php:719, ../includes/Elements/Woo_Checkout.php:1760, ../includes/Elements/WpForms.php:673
989
+ msgid "Input Height"
990
  msgstr ""
991
 
992
+ #: ../includes/Elements/Caldera_Forms.php:698, ../includes/Elements/Contact_Form_7.php:647, ../includes/Elements/FluentForm.php:716, ../includes/Elements/Formstack.php:945, ../includes/Elements/GravityForms.php:788, ../includes/Elements/NinjaForms.php:738, ../includes/Elements/WeForms.php:334, ../includes/Elements/WpForms.php:692
993
+ msgid "Textarea Width"
994
  msgstr ""
995
 
996
+ #: ../includes/Elements/Caldera_Forms.php:717, ../includes/Elements/FluentForm.php:735, ../includes/Elements/Formstack.php:964, ../includes/Elements/GravityForms.php:807, ../includes/Elements/NinjaForms.php:757, ../includes/Elements/WpForms.php:711
997
+ msgid "Textarea Height"
998
  msgstr ""
999
 
1000
+ #: ../includes/Elements/Caldera_Forms.php:788, ../includes/Elements/Contact_Form_7.php:712, ../includes/Elements/FluentForm.php:806, ../includes/Elements/Formstack.php:1035, ../includes/Elements/GravityForms.php:871, ../includes/Elements/Login_Register.php:2560, ../includes/Elements/NinjaForms.php:829, ../includes/Elements/WpForms.php:784
1001
+ msgid "Focus"
1002
  msgstr ""
1003
 
1004
+ #: ../includes/Elements/Caldera_Forms.php:837, ../includes/Elements/Formstack.php:571, ../includes/Elements/GravityForms.php:920, ../includes/Elements/NinjaForms.php:878, ../includes/Elements/WpForms.php:821
1005
+ msgid "Field Description"
1006
  msgstr ""
1007
 
1008
+ #: ../includes/Elements/Caldera_Forms.php:921, ../includes/Elements/Contact_Form_7.php:880, ../includes/Elements/FluentForm.php:886, ../includes/Elements/Formstack.php:1112, ../includes/Elements/NinjaForms.php:965, ../includes/Elements/WpForms.php:905
1009
+ msgid "Radio & Checkbox"
 
1010
  msgstr ""
1011
 
1012
+ #: ../includes/Elements/Caldera_Forms.php:929, ../includes/Elements/Contact_Form_7.php:888, ../includes/Elements/FluentForm.php:894, ../includes/Elements/Formstack.php:1120, ../includes/Elements/GravityForms.php:1196, ../includes/Elements/GravityForms.php:1392, ../includes/Elements/NinjaForms.php:973, ../includes/Elements/WpForms.php:913
1013
+ msgid "Custom Styles"
1014
  msgstr ""
1015
 
1016
+ #: ../includes/Elements/Caldera_Forms.php:993, ../includes/Elements/Contact_Form_7.php:952, ../includes/Elements/Feature_List.php:614, ../includes/Elements/FluentForm.php:958, ../includes/Elements/GravityForms.php:1260, ../includes/Elements/GravityForms.php:1456, ../includes/Elements/NinjaForms.php:1037, ../includes/Elements/Sticky_Video.php:560, ../includes/Elements/WpForms.php:977
1017
+ msgid "Border Width"
1018
  msgstr ""
1019
 
1020
+ #: ../includes/Elements/Caldera_Forms.php:1030, ../includes/Elements/Contact_Form_7.php:989, ../includes/Elements/FluentForm.php:995, ../includes/Elements/Formstack.php:1185, ../includes/Elements/GravityForms.php:1188, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/NinjaForms.php:1074, ../includes/Elements/WpForms.php:1014
1021
+ msgid "Checkbox"
 
 
 
1022
  msgstr ""
1023
 
1024
+ #: ../includes/Elements/Caldera_Forms.php:1056, ../includes/Elements/Contact_Form_7.php:1015, ../includes/Elements/FluentForm.php:1021, ../includes/Elements/Formstack.php:1211, ../includes/Elements/GravityForms.php:1493, ../includes/Elements/NinjaForms.php:1101, ../includes/Elements/WpForms.php:1040
1025
+ msgid "Radio Buttons"
1026
  msgstr ""
1027
 
1028
+ #: ../includes/Elements/Caldera_Forms.php:1084, ../includes/Elements/Contact_Form_7.php:1043, ../includes/Elements/FluentForm.php:1049, ../includes/Elements/Formstack.php:1239, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/NinjaForms.php:1130, ../includes/Elements/WpForms.php:1068
1029
+ msgid "Checked"
1030
  msgstr ""
1031
 
1032
+ #: ../includes/Elements/Caldera_Forms.php:1119, ../includes/Elements/Contact_Form_7.php:1077, ../includes/Elements/FluentForm.php:1438, ../includes/Elements/Formstack.php:1354, ../includes/Elements/GravityForms.php:1701, ../includes/Elements/NinjaForms.php:1281, ../includes/Elements/WpForms.php:1103
1033
+ msgid "Submit Button"
1034
  msgstr ""
1035
 
1036
+ #: ../includes/Elements/Caldera_Forms.php:1158, ../includes/Elements/Contact_Form_7.php:1119, ../includes/Elements/FluentForm.php:1477, ../includes/Elements/Formstack.php:1393, ../includes/Elements/GravityForms.php:1743, ../includes/Elements/NinjaForms.php:1322, ../includes/Elements/WpForms.php:1145
1037
+ msgid "Full Width"
1038
  msgstr ""
1039
 
1040
+ #: ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Contact_Form_7.php:1120, ../includes/Elements/Content_Ticker.php:78, ../includes/Elements/FluentForm.php:1478, ../includes/Elements/Formstack.php:1394, ../includes/Elements/GravityForms.php:1744, ../includes/Elements/Login_Register.php:269, ../includes/Elements/Login_Register.php:411, ../includes/Elements/Login_Register.php:508, ../includes/Elements/Login_Register.php:818, ../includes/Elements/Login_Register.php:1222, ../includes/Elements/Login_Register.php:1328, ../includes/Elements/Login_Register.php:1397, ../includes/Elements/Login_Register.php:1523, ../includes/Elements/Login_Register.php:1780, ../includes/Elements/Login_Register.php:1924, ../includes/Elements/Login_Register.php:2074, ../includes/Elements/Login_Register.php:2217, ../includes/Elements/Login_Register.php:2308, ../includes/Elements/Login_Register.php:2406, ../includes/Elements/Login_Register.php:2607, ../includes/Elements/Login_Register.php:2652, ../includes/Elements/Login_Register.php:2684, ../includes/Elements/Login_Register.php:2950, ../includes/Elements/Login_Register.php:3249, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/WpForms.php:1146
1041
+ msgid "Custom"
1042
  msgstr ""
1043
 
1044
+ #: ../includes/Elements/Caldera_Forms.php:1258, ../includes/Elements/Contact_Form_7.php:1218, ../includes/Elements/FluentForm.php:1577, ../includes/Elements/Formstack.php:1328, ../includes/Elements/Formstack.php:1493, ../includes/Elements/GravityForms.php:1852, ../includes/Elements/GravityForms.php:2077, ../includes/Elements/NinjaForms.php:1426, ../includes/Elements/WpForms.php:1245
1045
+ msgid "Margin Top"
1046
  msgstr ""
1047
 
1048
+ #: ../includes/Elements/Caldera_Forms.php:1351, ../includes/Elements/FluentForm.php:2034, ../includes/Elements/NinjaForms.php:1520
1049
+ msgid "Success Message"
1050
  msgstr ""
1051
 
1052
+ #: ../includes/Elements/Caldera_Forms.php:1441
1053
+ msgid "Error Fields"
1054
  msgstr ""
1055
 
1056
+ #: ../includes/Elements/Caldera_Forms.php:1450, ../includes/Elements/Countdown.php:677, ../includes/Elements/Countdown.php:756, ../includes/Elements/Countdown.php:828, ../includes/Elements/Countdown.php:900, ../includes/Elements/Countdown.php:972, ../includes/Elements/FluentForm.php:1411, ../includes/Elements/FluentForm.php:1711, ../includes/Elements/WeForms.php:471
1057
+ msgid "Label Color"
 
 
 
 
1058
  msgstr ""
1059
 
1060
+ #: ../includes/Elements/Caldera_Forms.php:1463
1061
+ msgid "Input Border"
1062
  msgstr ""
1063
 
1064
+ #: ../includes/Elements/Contact_Form_7.php:41, ../includes/templates/admin/elements.php:348
1065
+ msgid "Contact Form 7"
1066
  msgstr ""
1067
 
1068
+ #: ../includes/Elements/Contact_Form_7.php:130
1069
+ msgid "Contact Form"
1070
  msgstr ""
1071
 
1072
+ #: ../includes/Elements/Contact_Form_7.php:137, ../includes/Elements/GravityForms.php:134, ../includes/Elements/NinjaForms.php:95, ../includes/Elements/TypeForm.php:86, ../includes/Elements/WeForms.php:86, ../includes/Elements/WpForms.php:88
1073
+ msgid "Select Form"
1074
  msgstr ""
1075
 
1076
+ #: ../includes/Elements/Contact_Form_7.php:148
1077
+ msgid "Form Title"
1078
  msgstr ""
1079
 
1080
+ #: ../includes/Elements/Contact_Form_7.php:150, ../includes/Elements/Contact_Form_7.php:174, ../includes/Elements/Sticky_Video.php:100
1081
+ msgid "On"
 
 
 
1082
  msgstr ""
1083
 
1084
+ #: ../includes/Elements/Contact_Form_7.php:151, ../includes/Elements/Contact_Form_7.php:175, ../includes/Elements/Sticky_Video.php:101
1085
+ msgid "Off"
 
 
1086
  msgstr ""
1087
 
1088
+ #: ../includes/Elements/Contact_Form_7.php:172
1089
+ msgid "Form Description"
 
 
1090
  msgstr ""
1091
 
1092
+ #: ../includes/Elements/Contact_Form_7.php:240, ../includes/Elements/Contact_Form_7.php:1440, ../includes/Elements/Formstack.php:276, ../includes/Elements/GravityForms.php:280, ../includes/Elements/GravityForms.php:2206, ../includes/Elements/NinjaForms.php:216, ../includes/Elements/NinjaForms.php:1643
1093
+ msgid "Validation Errors"
1094
  msgstr ""
1095
 
1096
+ #: ../includes/Elements/Contact_Form_7.php:116
1097
+ msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1098
  msgstr ""
1099
 
1100
+ #: ../includes/Elements/Contact_Form_7.php:307, ../includes/Elements/Contact_Form_7.php:1563, ../includes/Elements/Cta_Box.php:713, ../includes/Elements/Cta_Box.php:783, ../includes/Elements/Cta_Box.php:903, ../includes/Elements/Cta_Box.php:955, ../includes/Elements/Event_Calendar.php:554, ../includes/Elements/Event_Calendar.php:686, ../includes/Elements/Event_Calendar.php:753, ../includes/Elements/Event_Calendar.php:807, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1109, ../includes/Elements/Event_Calendar.php:1476, ../includes/Elements/Event_Calendar.php:1585, ../includes/Elements/Facebook_Feed.php:377, ../includes/Elements/Facebook_Feed.php:403, ../includes/Elements/Facebook_Feed.php:486, ../includes/Elements/Fancy_Text.php:354, ../includes/Elements/Filterable_Gallery.php:2035, ../includes/Elements/Filterable_Gallery.php:2254, ../includes/Elements/Flip_Box.php:1139, ../includes/Elements/Flip_Box.php:1197, ../includes/Elements/FluentForm.php:1847, ../includes/Elements/FluentForm.php:1872, ../includes/Elements/FluentForm.php:1937, ../includes/Elements/FluentForm.php:2000, ../includes/Elements/Formstack.php:632, ../includes/Elements/Formstack.php:1707, ../includes/Elements/Formstack.php:1732, ../includes/Elements/Formstack.php:1796, ../includes/Elements/Formstack.php:1861, ../includes/Elements/Formstack.php:1916, ../includes/Elements/Formstack.php:1999, ../includes/Elements/Post_Grid.php:340, ../includes/Elements/Pricing_Table.php:1814, ../includes/Elements/Pricing_Table.php:1883, ../includes/Elements/Progress_Bar.php:338, ../includes/Elements/Team_Member.php:727, ../includes/Elements/Team_Member.php:804, ../includes/Elements/Woo_Checkout.php:1496, ../includes/Elements/Woo_Checkout.php:1540, ../includes/Elements/Woo_Checkout.php:1584, ../includes/Traits/Helper.php:1043, ../includes/Traits/Helper.php:1097
1101
+ msgid "Background"
1102
  msgstr ""
1103
 
1104
+ #: ../includes/Elements/Contact_Form_7.php:835
1105
+ msgid "Show Placeholder"
1106
  msgstr ""
1107
 
1108
+ #: ../includes/Elements/Contact_Form_7.php:1332
1109
+ msgid "Alert"
1110
  msgstr ""
1111
 
1112
+ #: ../includes/Elements/Contact_Form_7.php:1381, ../includes/Elements/Login_Register.php:1059, ../includes/Elements/Woo_Checkout.php:1752
1113
+ msgid "Fields"
1114
  msgstr ""
1115
 
1116
+ #: ../includes/Elements/Contact_Form_7.php:1531
1117
+ msgid "After Submit Feedback"
1118
  msgstr ""
1119
 
1120
+ #: ../includes/Elements/Contact_Form_7.php:1585, ../includes/Elements/Flip_Box.php:639, ../includes/Elements/Info_Box.php:553, ../includes/Elements/Info_Box.php:608, ../includes/Elements/Info_Box.php:778, ../includes/Elements/Info_Box.php:859, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1091, ../includes/Elements/Post_Grid.php:312
1121
+ msgid "Radius"
 
 
 
 
 
 
 
 
 
 
 
1122
  msgstr ""
1123
 
1124
+ #: ../includes/Elements/Content_Ticker.php:26, ../includes/templates/admin/elements.php:152
1125
+ msgid "Content Ticker"
1126
  msgstr ""
1127
 
1128
+ #: ../includes/Elements/Content_Ticker.php:69
1129
+ msgid "Ticker Settings"
 
1130
  msgstr ""
1131
 
1132
+ #: ../includes/Elements/Content_Ticker.php:77, ../includes/Elements/Progress_Bar.php:155
1133
+ msgid "Dynamic"
 
 
 
 
 
 
 
 
 
 
1134
  msgstr ""
1135
 
1136
+ #: ../includes/Elements/Content_Ticker.php:89
1137
+ msgid "Ticker Type"
1138
  msgstr ""
1139
 
1140
+ #: ../includes/Elements/Content_Ticker.php:100
1141
+ msgid "Custom Content available in pro version only!"
1142
  msgstr ""
1143
 
1144
+ #: ../includes/Elements/Content_Ticker.php:111
1145
+ msgid "Tag Text"
 
1146
  msgstr ""
1147
 
1148
+ #: ../includes/Elements/Content_Ticker.php:114
1149
+ msgid "Trending Today"
1150
  msgstr ""
1151
 
1152
+ #: ../includes/Elements/Content_Ticker.php:134
1153
+ msgid "Animation Settings"
1154
  msgstr ""
1155
 
1156
+ #: ../includes/Elements/Content_Ticker.php:141, ../includes/Elements/Cta_Box.php:622, ../includes/Elements/Cta_Box.php:839
1157
+ msgid "Effect"
1158
  msgstr ""
1159
 
1160
+ #: ../includes/Elements/Content_Ticker.php:142
1161
+ msgid "Sets transition effect"
1162
  msgstr ""
1163
 
1164
+ #: ../includes/Elements/Content_Ticker.php:146, ../includes/Elements/Pricing_Table.php:377
1165
+ msgid "Slide"
1166
  msgstr ""
1167
 
1168
+ #: ../includes/Elements/Content_Ticker.php:147, ../includes/Elements/Fancy_Text.php:198, ../includes/Elements/Pricing_Table.php:374
1169
+ msgid "Fade"
1170
  msgstr ""
1171
 
1172
+ #: ../includes/Elements/Content_Ticker.php:155
1173
+ msgid "Visible Items"
1174
  msgstr ""
1175
 
1176
+ #: ../includes/Elements/Content_Ticker.php:178
1177
+ msgid "Items Gap"
1178
  msgstr ""
1179
 
1180
+ #: ../includes/Elements/Content_Ticker.php:198
1181
+ msgid "Slider Speed"
1182
  msgstr ""
1183
 
1184
+ #: ../includes/Elements/Content_Ticker.php:199
1185
+ msgid "Duration of transition between slides (in ms)"
1186
  msgstr ""
1187
 
1188
+ #: ../includes/Elements/Content_Ticker.php:217, ../includes/Elements/Sticky_Video.php:296
1189
+ msgid "Autoplay"
1190
  msgstr ""
1191
 
1192
+ #: ../includes/Elements/Content_Ticker.php:230
1193
+ msgid "Autoplay Speed"
1194
  msgstr ""
1195
 
1196
+ #: ../includes/Elements/Content_Ticker.php:250
1197
+ msgid "Pause On Hover"
1198
  msgstr ""
1199
 
1200
+ #: ../includes/Elements/Content_Ticker.php:265
1201
+ msgid "Infinite Loop"
1202
  msgstr ""
1203
 
1204
+ #: ../includes/Elements/Content_Ticker.php:277
1205
+ msgid "Grab Cursor"
 
 
1206
  msgstr ""
1207
 
1208
+ #: ../includes/Elements/Content_Ticker.php:278
1209
+ msgid "Shows grab cursor when you hover over the slider"
1210
  msgstr ""
1211
 
1212
+ #: ../includes/Elements/Content_Ticker.php:291
1213
+ msgid "Navigation"
1214
  msgstr ""
1215
 
1216
+ #: ../includes/Elements/Content_Ticker.php:300, ../includes/Elements/Content_Ticker.php:505
1217
+ msgid "Arrows"
1218
  msgstr ""
1219
 
1220
+ #: ../includes/Elements/Content_Ticker.php:312, ../includes/Elements/Image_Accordion.php:77
1221
+ msgid "Direction"
1222
  msgstr ""
1223
 
1224
+ #: ../includes/Elements/Content_Ticker.php:363
1225
+ msgid "Ticker Content"
1226
  msgstr ""
1227
 
1228
+ #: ../includes/Elements/Content_Ticker.php:394
1229
+ msgid "Text Hover Color"
1230
  msgstr ""
1231
 
1232
+ #: ../includes/Elements/Content_Ticker.php:429
1233
+ msgid "Tag Style"
1234
  msgstr ""
1235
 
1236
+ #: ../includes/Elements/Content_Ticker.php:516
1237
+ msgid "Choose Prev Arrow"
1238
  msgstr ""
1239
 
1240
+ #: ../includes/Elements/Content_Ticker.php:529
1241
+ msgid "Choose Next Arrow"
1242
  msgstr ""
1243
 
1244
+ #: ../includes/Elements/Content_Ticker.php:543
1245
+ msgid "Arrows Size"
 
 
 
1246
  msgstr ""
1247
 
1248
+ #: ../includes/Elements/Content_Ticker.php:564
1249
+ msgid "Align Left Arrow"
1250
  msgstr ""
1251
 
1252
+ #: ../includes/Elements/Content_Ticker.php:583
1253
+ msgid "Align Right Arrow"
 
 
1254
  msgstr ""
1255
 
1256
+ #: ../includes/Elements/Countdown.php:25
1257
+ msgid "Countdown"
 
1258
  msgstr ""
1259
 
1260
+ #: ../includes/Elements/Countdown.php:61
1261
+ msgid "Timer Settings"
1262
  msgstr ""
1263
 
1264
+ #: ../includes/Elements/Countdown.php:68
1265
+ msgid "Countdown Due Date"
1266
  msgstr ""
1267
 
1268
+ #: ../includes/Elements/Countdown.php:71
1269
+ msgid "Set the due date and time"
1270
  msgstr ""
1271
 
1272
+ #: ../includes/Elements/Countdown.php:78
1273
+ msgid "Label Position"
1274
  msgstr ""
1275
 
1276
+ #: ../includes/Elements/Countdown.php:82, ../includes/Elements/Login_Register.php:2994, ../includes/Elements/Login_Register.php:3294
1277
+ msgid "Block"
1278
  msgstr ""
1279
 
1280
+ #: ../includes/Elements/Countdown.php:91
1281
+ msgid "Left spacing for Labels"
1282
  msgstr ""
1283
 
1284
+ #: ../includes/Elements/Countdown.php:93
1285
+ msgid "Use when you select inline labels"
1286
  msgstr ""
1287
 
1288
+ #: ../includes/Elements/Countdown.php:150, ../includes/Elements/Event_Calendar.php:1126
1289
+ msgid "List view"
1290
  msgstr ""
1291
 
1292
+ #: ../includes/Elements/Countdown.php:154
1293
+ msgid "Grid View"
1294
  msgstr ""
1295
 
1296
+ #: ../includes/Elements/Countdown.php:168
1297
+ msgid "Display Days"
1298
  msgstr ""
1299
 
1300
+ #: ../includes/Elements/Countdown.php:178
1301
+ msgid "Custom Label for Days"
1302
  msgstr ""
1303
 
1304
+ #: ../includes/Elements/Countdown.php:180, ../includes/Elements/Countdown.php:708
1305
+ msgid "Days"
1306
  msgstr ""
1307
 
1308
+ #: ../includes/Elements/Countdown.php:181, ../includes/Elements/Countdown.php:204, ../includes/Elements/Countdown.php:227, ../includes/Elements/Countdown.php:250
1309
+ msgid "Leave blank to hide"
1310
  msgstr ""
1311
 
1312
+ #: ../includes/Elements/Countdown.php:191
1313
+ msgid "Display Hours"
1314
  msgstr ""
1315
 
1316
+ #: ../includes/Elements/Countdown.php:201
1317
+ msgid "Custom Label for Hours"
1318
  msgstr ""
1319
 
1320
+ #: ../includes/Elements/Countdown.php:203, ../includes/Elements/Countdown.php:780
1321
+ msgid "Hours"
1322
  msgstr ""
1323
 
1324
+ #: ../includes/Elements/Countdown.php:214
1325
+ msgid "Display Minutes"
1326
  msgstr ""
1327
 
1328
+ #: ../includes/Elements/Countdown.php:224
1329
+ msgid "Custom Label for Minutes"
1330
  msgstr ""
1331
 
1332
+ #: ../includes/Elements/Countdown.php:226, ../includes/Elements/Countdown.php:852
1333
+ msgid "Minutes"
1334
  msgstr ""
1335
 
1336
+ #: ../includes/Elements/Countdown.php:237
1337
+ msgid "Display Seconds"
1338
  msgstr ""
1339
 
1340
+ #: ../includes/Elements/Countdown.php:247
1341
+ msgid "Custom Label for Seconds"
1342
  msgstr ""
1343
 
1344
+ #: ../includes/Elements/Countdown.php:249, ../includes/Elements/Countdown.php:924
1345
+ msgid "Seconds"
1346
  msgstr ""
1347
 
1348
+ #: ../includes/Elements/Countdown.php:260
1349
+ msgid "Countdown Separator"
1350
  msgstr ""
1351
 
1352
+ #: ../includes/Elements/Countdown.php:268
1353
+ msgid "Display Separator"
1354
  msgstr ""
1355
 
1356
+ #: ../includes/Elements/Countdown.php:278
1357
+ msgid "Separator Style"
 
1358
  msgstr ""
1359
 
1360
+ #: ../includes/Elements/Countdown.php:282, ../includes/Elements/Feature_List.php:430, ../includes/Elements/GravityForms.php:1009, ../includes/Elements/Sticky_Video.php:546, ../includes/Extensions/Table_of_Content.php:1029
1361
+ msgid "Solid"
1362
  msgstr ""
1363
 
1364
+ #: ../includes/Elements/Countdown.php:283, ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1011, ../includes/Elements/Sticky_Video.php:548, ../includes/Extensions/Table_of_Content.php:1031
1365
+ msgid "Dotted"
1366
  msgstr ""
1367
 
1368
+ #: ../includes/Elements/Countdown.php:294
1369
+ msgid "Position Top"
1370
  msgstr ""
1371
 
1372
+ #: ../includes/Elements/Countdown.php:320
1373
+ msgid "Position Left"
1374
  msgstr ""
1375
 
1376
+ #: ../includes/Elements/Countdown.php:347, ../includes/Elements/Filterable_Gallery.php:2233
1377
+ msgid "Separator Color"
1378
  msgstr ""
1379
 
1380
+ #: ../includes/Elements/Countdown.php:376
1381
+ msgid "Expire Action"
1382
  msgstr ""
1383
 
1384
+ #: ../includes/Elements/Countdown.php:383
1385
+ msgid "Expire Type"
1386
  msgstr ""
1387
 
1388
+ #: ../includes/Elements/Countdown.php:386
1389
+ msgid "Choose whether if you want to set a message or a redirect link"
1390
  msgstr ""
1391
 
1392
+ #: ../includes/Elements/Countdown.php:389, ../includes/Elements/Facebook_Feed.php:602, ../includes/Elements/Woo_Checkout.php:1577
1393
+ msgid "Message"
1394
  msgstr ""
1395
 
1396
+ #: ../includes/Elements/Countdown.php:390
1397
+ msgid "Redirection Link"
1398
  msgstr ""
1399
 
1400
+ #: ../includes/Elements/Countdown.php:400
1401
+ msgid "On Expiry Title"
1402
  msgstr ""
1403
 
1404
+ #: ../includes/Elements/Countdown.php:402
1405
+ msgid "Countdown is finished!"
1406
  msgstr ""
1407
 
1408
+ #: ../includes/Elements/Countdown.php:412
1409
+ msgid "On Expiry Content"
1410
  msgstr ""
1411
 
1412
+ #: ../includes/Elements/Countdown.php:414
1413
+ msgid "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s"
1414
  msgstr ""
1415
 
1416
+ #: ../includes/Elements/Countdown.php:424
1417
+ msgid "Redirect To (URL)"
1418
  msgstr ""
1419
 
1420
+ #: ../includes/Elements/Countdown.php:477
1421
+ msgid "Countdown Styles"
1422
  msgstr ""
1423
 
1424
+ #: ../includes/Elements/Countdown.php:485
1425
+ msgid "Use Gradient Background?"
1426
  msgstr ""
1427
 
1428
+ #: ../includes/Elements/Countdown.php:497, ../includes/Elements/Countdown.php:509
1429
+ msgid "Box Background Color"
1430
  msgstr ""
1431
 
1432
+ #: ../includes/Elements/Countdown.php:523, ../includes/Elements/Countdown.php:546
1433
+ msgid "Space Between Boxes"
1434
  msgstr ""
1435
 
1436
+ #: ../includes/Elements/Countdown.php:570
1437
+ msgid "Space Below Container"
1438
  msgstr ""
1439
 
1440
+ #: ../includes/Elements/Countdown.php:632, ../includes/Elements/Dual_Color_Header.php:363, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Flip_Box.php:929, ../includes/Elements/Image_Accordion.php:407, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:286, ../includes/Elements/Team_Member.php:518, ../includes/Elements/Twitter_Feed.php:403
1441
+ msgid "Color &amp; Typography"
1442
  msgstr ""
1443
 
1444
+ #: ../includes/Elements/Countdown.php:640
1445
+ msgid "Countdown Digits"
1446
  msgstr ""
1447
 
1448
+ #: ../includes/Elements/Countdown.php:648
1449
+ msgid "Digits Color"
1450
  msgstr ""
1451
 
1452
+ #: ../includes/Elements/Countdown.php:669
1453
+ msgid "Countdown Labels"
1454
  msgstr ""
1455
 
1456
+ #: ../includes/Elements/Countdown.php:700
1457
+ msgid "Individual Box Styling"
1458
  msgstr ""
1459
 
1460
+ #: ../includes/Elements/Countdown.php:744, ../includes/Elements/Countdown.php:816, ../includes/Elements/Countdown.php:888, ../includes/Elements/Countdown.php:960
1461
+ msgid "Digit Color"
1462
  msgstr ""
1463
 
1464
+ #: ../includes/Elements/Countdown.php:998
1465
+ msgid "Expire Message"
1466
  msgstr ""
1467
 
1468
+ #: ../includes/Elements/Countdown.php:1036, ../includes/Elements/Cta_Box.php:496, ../includes/Elements/Dual_Color_Header.php:371, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1013, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Post_Grid.php:550, ../includes/Elements/Post_Timeline.php:207, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Twitter_Feed.php:411
1469
+ msgid "Title Style"
1470
  msgstr ""
1471
 
1472
+ #: ../includes/Elements/Countdown.php:1045, ../includes/Elements/Event_Calendar.php:1295, ../includes/Elements/FluentForm.php:1801, ../includes/Elements/Formstack.php:1627, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:559, ../includes/Elements/Post_Timeline.php:216, ../includes/Elements/Progress_Bar.php:683, ../includes/Elements/Woo_Checkout.php:1892
1473
+ msgid "Title Color"
1474
  msgstr ""
1475
 
1476
+ #: ../includes/Elements/Creative_Button.php:24, ../includes/templates/admin/elements.php:9
1477
+ msgid "Creative Button"
1478
  msgstr ""
1479
 
1480
+ #: ../includes/Elements/Creative_Button.php:61
1481
+ msgid "Button Content"
1482
  msgstr ""
1483
 
1484
+ #: ../includes/Elements/Creative_Button.php:72, ../includes/Elements/Info_Box.php:380
1485
+ msgid "Enter button text"
1486
  msgstr ""
1487
 
1488
+ #: ../includes/Elements/Creative_Button.php:73, ../includes/Elements/Info_Box.php:381
1489
+ msgid "Enter button text here"
1490
  msgstr ""
1491
 
1492
+ #: ../includes/Elements/Creative_Button.php:80
1493
+ msgid "Button Secondary Text"
1494
  msgstr ""
1495
 
1496
+ #: ../includes/Elements/Creative_Button.php:84
1497
+ msgid "Enter button secondary text"
1498
  msgstr ""
1499
 
1500
+ #: ../includes/Elements/Creative_Button.php:85
1501
+ msgid "Enter button secondary text here"
1502
  msgstr ""
1503
 
1504
+ #: ../includes/Elements/Creative_Button.php:92, ../includes/Elements/Info_Box.php:391
1505
+ msgid "Link URL"
1506
  msgstr ""
1507
 
1508
+ #: ../includes/Elements/Creative_Button.php:135, ../includes/Elements/Filterable_Gallery.php:2565, ../includes/Elements/Info_Box.php:438, ../includes/Elements/Pricing_Table.php:485
1509
+ msgid "Icon Spacing"
1510
  msgstr ""
1511
 
1512
+ #: ../includes/Elements/Creative_Button.php:190
1513
+ msgid "Button Effects &amp; Styles"
1514
  msgstr ""
1515
 
1516
+ #: ../includes/Elements/Creative_Button.php:198
1517
+ msgid "Set Button Effect"
1518
  msgstr ""
1519
 
1520
+ #: ../includes/Elements/Creative_Button.php:203
1521
+ msgid "Winona"
1522
  msgstr ""
1523
 
1524
+ #: ../includes/Elements/Creative_Button.php:204
1525
+ msgid "Ujarak"
1526
  msgstr ""
1527
 
1528
+ #: ../includes/Elements/Creative_Button.php:205
1529
+ msgid "Wayra"
1530
  msgstr ""
1531
 
1532
+ #: ../includes/Elements/Creative_Button.php:206
1533
+ msgid "Tamaya"
1534
  msgstr ""
1535
 
1536
+ #: ../includes/Elements/Creative_Button.php:207
1537
+ msgid "Rayen"
1538
  msgstr ""
1539
 
1540
+ #: ../includes/Elements/Creative_Button.php:208
1541
+ msgid "Pipaluk (Pro)"
1542
  msgstr ""
1543
 
1544
+ #: ../includes/Elements/Creative_Button.php:209
1545
+ msgid "Moema (Pro)"
1546
  msgstr ""
1547
 
1548
+ #: ../includes/Elements/Creative_Button.php:210
1549
+ msgid "Wave (Pro)"
1550
  msgstr ""
1551
 
1552
+ #: ../includes/Elements/Creative_Button.php:211
1553
+ msgid "Aylen (Pro)"
1554
  msgstr ""
1555
 
1556
+ #: ../includes/Elements/Creative_Button.php:212
1557
+ msgid "Saqui (Pro)"
1558
  msgstr ""
1559
 
1560
+ #: ../includes/Elements/Creative_Button.php:213
1561
+ msgid "Wapasha (Pro)"
 
1562
  msgstr ""
1563
 
1564
+ #: ../includes/Elements/Creative_Button.php:214
1565
+ msgid "Nuka (Pro)"
1566
  msgstr ""
1567
 
1568
+ #: ../includes/Elements/Creative_Button.php:215
1569
+ msgid "Antiman (Pro)"
 
1570
  msgstr ""
1571
 
1572
+ #: ../includes/Elements/Creative_Button.php:216
1573
+ msgid "Quidel (Pro)"
1574
  msgstr ""
1575
 
1576
+ #: ../includes/Elements/Creative_Button.php:217
1577
+ msgid "Shikoba (Pro)"
1578
  msgstr ""
1579
 
1580
+ #: ../includes/Elements/Creative_Button.php:225, ../includes/Elements/Cta_Box.php:668, ../includes/Elements/Team_Member.php:684
1581
+ msgid "Use Gradient Background"
1582
  msgstr ""
1583
 
1584
+ #: ../includes/Elements/Creative_Button.php:477, ../includes/Elements/Info_Box.php:1196
1585
+ msgid "Button Padding"
 
 
 
 
 
 
 
1586
  msgstr ""
1587
 
1588
+ #: ../includes/Elements/Cta_Box.php:28
1589
+ msgid "Call to Action"
 
 
 
 
 
 
 
1590
  msgstr ""
1591
 
1592
+ #: ../includes/Elements/Cta_Box.php:81
1593
+ msgid "Basic"
1594
  msgstr ""
1595
 
1596
+ #: ../includes/Elements/Cta_Box.php:82
1597
+ msgid "Flex Grid"
1598
  msgstr ""
1599
 
1600
+ #: ../includes/Elements/Cta_Box.php:83
1601
+ msgid "Flex Grid with Icon"
1602
  msgstr ""
1603
 
1604
+ #: ../includes/Elements/Cta_Box.php:114
1605
+ msgid "Color Style"
 
 
1606
  msgstr ""
1607
 
1608
+ #: ../includes/Elements/Cta_Box.php:120, ../includes/Elements/Cta_Box.php:311, ../includes/Elements/Image_Accordion.php:178
1609
+ msgid "Background Image"
1610
  msgstr ""
1611
 
1612
+ #: ../includes/Elements/Cta_Box.php:121
1613
+ msgid "Background Fixed Image"
1614
  msgstr ""
1615
 
1616
+ #: ../includes/Elements/Cta_Box.php:129
1617
+ msgid "Background Overlay"
1618
  msgstr ""
1619
 
1620
+ #: ../includes/Elements/Cta_Box.php:164, ../includes/Elements/Pricing_Table.php:137
1621
+ msgid "Sub Title"
1622
  msgstr ""
1623
 
1624
+ #: ../includes/Elements/Cta_Box.php:176
1625
+ msgid "The Ultimate Addons For Elementor"
1626
  msgstr ""
1627
 
1628
+ #: ../includes/Elements/Cta_Box.php:231
1629
+ msgid "Add a strong one liner supporting the heading above and giving users a reason to click on the button below."
1630
  msgstr ""
1631
 
1632
+ #: ../includes/Elements/Cta_Box.php:242
1633
+ msgid "Primary Button Text"
1634
  msgstr ""
1635
 
1636
+ #: ../includes/Elements/Cta_Box.php:252
1637
+ msgid "Primary Button Link"
1638
  msgstr ""
1639
 
1640
+ #: ../includes/Elements/Cta_Box.php:267
1641
+ msgid "Show Secondary Button"
1642
  msgstr ""
1643
 
1644
+ #: ../includes/Elements/Cta_Box.php:277
1645
+ msgid "Secondary Button Text"
1646
  msgstr ""
1647
 
1648
+ #: ../includes/Elements/Cta_Box.php:280
1649
+ msgid "Button Text Two"
1650
  msgstr ""
1651
 
1652
+ #: ../includes/Elements/Cta_Box.php:290
1653
+ msgid "Secondary Button Link"
1654
  msgstr ""
1655
 
1656
+ #: ../includes/Elements/Cta_Box.php:363
1657
+ msgid "Call to Action Style"
1658
  msgstr ""
1659
 
1660
+ #: ../includes/Elements/Cta_Box.php:371
1661
+ msgid "Set max width for the container?"
1662
  msgstr ""
1663
 
1664
+ #: ../includes/Elements/Cta_Box.php:373, ../includes/Elements/Cta_Box.php:670, ../includes/Elements/Data_Table.php:110, ../includes/Elements/Twitter_Feed.php:212, ../includes/Elements/Twitter_Feed.php:233, ../includes/Elements/Twitter_Feed.php:262, ../includes/Elements/Twitter_Feed.php:274, ../includes/Elements/Twitter_Feed.php:286
1665
+ msgid "yes"
1666
  msgstr ""
1667
 
1668
+ #: ../includes/Elements/Cta_Box.php:374, ../includes/Elements/Data_Table.php:111, ../includes/Elements/Twitter_Feed.php:213, ../includes/Elements/Twitter_Feed.php:234, ../includes/Elements/Twitter_Feed.php:263, ../includes/Elements/Twitter_Feed.php:275, ../includes/Elements/Twitter_Feed.php:287
1669
+ msgid "no"
1670
  msgstr ""
1671
 
1672
+ #: ../includes/Elements/Cta_Box.php:382
1673
+ msgid "Container Max Width (% or px)"
 
 
1674
  msgstr ""
1675
 
1676
+ #: ../includes/Elements/Cta_Box.php:488
1677
+ msgid "Color &amp; Typography "
 
1678
  msgstr ""
1679
 
1680
+ #: ../includes/Elements/Cta_Box.php:524, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Event_Calendar.php:718, ../includes/Elements/Event_Calendar.php:839
1681
+ msgid "Space"
1682
  msgstr ""
1683
 
1684
+ #: ../includes/Elements/Cta_Box.php:536
1685
+ msgid "Sub Title Style"
1686
  msgstr ""
1687
 
1688
+ #: ../includes/Elements/Cta_Box.php:614
1689
+ msgid "Primary Button Style"
1690
  msgstr ""
1691
 
1692
+ #: ../includes/Elements/Cta_Box.php:628, ../includes/Elements/Cta_Box.php:845, ../includes/Extensions/Table_of_Content.php:637
1693
+ msgid "Top to Bottom"
1694
  msgstr ""
1695
 
1696
+ #: ../includes/Elements/Cta_Box.php:629, ../includes/Elements/Cta_Box.php:846
1697
+ msgid "Left to Right"
1698
  msgstr ""
1699
 
1700
+ #: ../includes/Elements/Cta_Box.php:828
1701
+ msgid "Secondary Button Style"
1702
  msgstr ""
1703
 
1704
+ #: ../includes/Elements/Cta_Box.php:997, ../includes/Elements/Dual_Color_Header.php:311, ../includes/Elements/Feature_List.php:104, ../includes/Elements/Flip_Box.php:683, ../includes/Elements/Flip_Box.php:702, ../includes/Elements/Flip_Box.php:815, ../includes/Elements/Info_Box.php:897
1705
+ msgid "Icon Style"
 
1706
  msgstr ""
1707
 
1708
+ #: ../includes/Elements/Data_Table.php:26, ../includes/templates/admin/elements.php:140
1709
+ msgid "Data Table"
1710
  msgstr ""
1711
 
1712
+ #: ../includes/Elements/Data_Table.php:64, ../includes/Elements/Event_Calendar.php:1134, ../includes/Elements/Pricing_Table.php:795
1713
+ msgid "Header"
1714
  msgstr ""
1715
 
1716
+ #: ../includes/Elements/Data_Table.php:74
1717
+ msgid "Sorting feature is available in pro version!"
1718
  msgstr ""
1719
 
1720
+ #: ../includes/Elements/Data_Table.php:88
1721
+ msgid "Column Name"
1722
  msgstr ""
1723
 
1724
+ #: ../includes/Elements/Data_Table.php:98
1725
+ msgid "Column Span"
1726
  msgstr ""
1727
 
1728
+ #: ../includes/Elements/Data_Table.php:108
1729
+ msgid "Enable Header Icon"
1730
  msgstr ""
1731
 
1732
+ #: ../includes/Elements/Data_Table.php:120
1733
+ msgid "Header Icon Type"
1734
  msgstr ""
1735
 
1736
+ #: ../includes/Elements/Data_Table.php:178
1737
+ msgid "Image Size(px)"
 
1738
  msgstr ""
1739
 
1740
+ #: ../includes/Elements/Data_Table.php:191, ../includes/Elements/Data_Table.php:368
1741
+ msgid "CSS Class"
1742
  msgstr ""
1743
 
1744
+ #: ../includes/Elements/Data_Table.php:200, ../includes/Elements/Data_Table.php:380
1745
+ msgid "CSS ID"
1746
  msgstr ""
1747
 
1748
+ #: ../includes/Elements/Data_Table.php:239
1749
+ msgid "Row Type"
1750
  msgstr ""
1751
 
1752
+ #: ../includes/Elements/Data_Table.php:244
1753
+ msgid "Row"
1754
  msgstr ""
1755
 
1756
+ #: ../includes/Elements/Data_Table.php:253
1757
+ msgid "Col Span"
1758
  msgstr ""
1759
 
1760
+ #: ../includes/Elements/Data_Table.php:272
1761
+ msgid "Textarea"
1762
  msgstr ""
1763
 
1764
+ #: ../includes/Elements/Data_Table.php:276, ../includes/Elements/Login_Register.php:817
1765
+ msgid "Editor"
1766
  msgstr ""
1767
 
1768
+ #: ../includes/Elements/Data_Table.php:280
1769
+ msgid "Templates"
1770
  msgstr ""
1771
 
1772
+ #: ../includes/Elements/Data_Table.php:294
1773
+ msgid "Row Span"
1774
  msgstr ""
1775
 
1776
+ #: ../includes/Elements/Data_Table.php:321, ../includes/Elements/Data_Table.php:335
1777
+ msgid "Cell Text"
1778
  msgstr ""
1779
 
1780
+ #: ../includes/Elements/Data_Table.php:349, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Feature_List.php:200, ../includes/Elements/Filterable_Gallery.php:297, ../includes/Elements/Flip_Box.php:404, ../includes/Elements/Flip_Box.php:426, ../includes/Elements/Sticky_Video.php:155, ../includes/Elements/Sticky_Video.php:169, ../includes/Elements/Sticky_Video.php:183, ../includes/Elements/Sticky_Video.php:227, ../includes/Elements/Team_Member.php:197
1781
+ msgid "Link"
1782
  msgstr ""
1783
 
1784
+ #: ../includes/Elements/Data_Table.php:529, ../includes/Elements/Facebook_Feed.php:392
1785
+ msgid "Header Style"
1786
  msgstr ""
1787
 
1788
+ #: ../includes/Elements/Data_Table.php:538
1789
+ msgid "Header Border Radius"
 
1790
  msgstr ""
1791
 
1792
+ #: ../includes/Elements/Data_Table.php:703, ../includes/Elements/Filterable_Gallery.php:2089
1793
+ msgid "Icon Space"
 
1794
  msgstr ""
1795
 
1796
+ #: ../includes/Elements/Data_Table.php:721, ../includes/Elements/Post_Grid.php:585, ../includes/Elements/Post_Timeline.php:229
1797
+ msgid "Title Alignment"
 
1798
  msgstr ""
1799
 
1800
+ #: ../includes/Elements/Data_Table.php:765
1801
+ msgid "ODD Cell"
1802
  msgstr ""
1803
 
1804
+ #: ../includes/Elements/Data_Table.php:773, ../includes/Elements/Data_Table.php:856
1805
+ msgid "Color ( Odd Row )"
1806
  msgstr ""
1807
 
1808
+ #: ../includes/Elements/Data_Table.php:785, ../includes/Elements/Data_Table.php:867
1809
+ msgid "Background ( Odd Row )"
1810
  msgstr ""
1811
 
1812
+ #: ../includes/Elements/Data_Table.php:797, ../includes/Elements/Data_Table.php:878
1813
+ msgid "Even Cell"
1814
  msgstr ""
1815
 
1816
+ #: ../includes/Elements/Data_Table.php:806, ../includes/Elements/Data_Table.php:886
1817
+ msgid "Color ( Even Row )"
1818
  msgstr ""
1819
 
1820
+ #: ../includes/Elements/Data_Table.php:818, ../includes/Elements/Data_Table.php:898
1821
+ msgid "Background Color (Even Row)"
1822
  msgstr ""
1823
 
1824
+ #: ../includes/Elements/Data_Table.php:970, ../includes/Elements/Filterable_Gallery.php:1277, ../includes/Elements/Filterable_Gallery.php:1660, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Info_Box.php:272, ../includes/Elements/Pricing_Table.php:738, ../includes/Elements/Tooltip.php:364
1825
+ msgid "Content Alignment"
1826
  msgstr ""
1827
 
1828
+ #: ../includes/Elements/Data_Table.php:1003
1829
+ msgid "Responsive Options"
1830
  msgstr ""
1831
 
1832
+ #: ../includes/Elements/Data_Table.php:1012
1833
+ msgid "Enable Responsive Table"
 
1834
  msgstr ""
1835
 
1836
+ #: ../includes/Elements/Data_Table.php:1013
1837
+ msgid "If enabled, table header will be automatically responsive for mobile."
1838
  msgstr ""
1839
 
1840
+ #: ../includes/Elements/Dual_Color_Header.php:23, ../includes/templates/admin/elements.php:39
1841
+ msgid "Dual Color Heading"
1842
  msgstr ""
1843
 
1844
+ #: ../includes/Elements/Dual_Color_Header.php:75
1845
+ msgid "Icon on top"
1846
  msgstr ""
1847
 
1848
+ #: ../includes/Elements/Dual_Color_Header.php:76
1849
+ msgid "Icon &amp; sub-text on top"
1850
  msgstr ""
1851
 
1852
+ #: ../includes/Elements/Dual_Color_Header.php:77
1853
+ msgid "Sub-text on top"
1854
  msgstr ""
1855
 
1856
+ #: ../includes/Elements/Dual_Color_Header.php:116
1857
+ msgid "Title Tag"
 
1858
  msgstr ""
1859
 
1860
+ #: ../includes/Elements/Dual_Color_Header.php:136
1861
+ msgid "Title ( First Part )"
1862
  msgstr ""
1863
 
1864
+ #: ../includes/Elements/Dual_Color_Header.php:139
1865
+ msgid "Dual Heading"
1866
  msgstr ""
1867
 
1868
+ #: ../includes/Elements/Dual_Color_Header.php:147
1869
+ msgid "Title ( Last Part )"
1870
  msgstr ""
1871
 
1872
+ #: ../includes/Elements/Dual_Color_Header.php:150
1873
+ msgid "Example"
1874
  msgstr ""
1875
 
1876
+ #: ../includes/Elements/Dual_Color_Header.php:158
1877
+ msgid "Sub Text"
1878
  msgstr ""
1879
 
1880
+ #: ../includes/Elements/Dual_Color_Header.php:161
1881
+ msgid "Insert a meaningful line to evaluate the headline."
1882
  msgstr ""
1883
 
1884
+ #: ../includes/Elements/Dual_Color_Header.php:227
1885
+ msgid "Dual Heading Style"
1886
  msgstr ""
1887
 
1888
+ #: ../includes/Elements/Dual_Color_Header.php:379
1889
+ msgid "Main Color"
1890
  msgstr ""
1891
 
1892
+ #: ../includes/Elements/Dual_Color_Header.php:391
1893
+ msgid "Dual Color"
1894
  msgstr ""
1895
 
1896
+ #: ../includes/Elements/Dual_Color_Header.php:411
1897
+ msgid "Sub-title Style "
1898
  msgstr ""
1899
 
1900
+ #: ../includes/Elements/EmbedPress.php:19
1901
+ msgid "EmbedPress"
1902
  msgstr ""
1903
 
1904
+ #: ../includes/Elements/EmbedPress.php:62
1905
+ msgid "<strong>EmbedPress</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=embedpress&tab=search&type=term\" target=\"_blank\">EmbedPress</a> first."
1906
  msgstr ""
1907
 
1908
+ #: ../includes/Elements/Event_Calendar.php:33
1909
+ msgid "Event Calendar"
1910
  msgstr ""
1911
 
1912
+ #: ../includes/Elements/Event_Calendar.php:75, ../includes/Elements/Event_Calendar.php:1215
1913
+ msgid "Events"
1914
  msgstr ""
1915
 
1916
+ #: ../includes/Elements/Event_Calendar.php:86
1917
+ msgid "Manual"
1918
  msgstr ""
1919
 
1920
+ #: ../includes/Elements/Event_Calendar.php:87
1921
+ msgid "Google"
1922
  msgstr ""
1923
 
1924
+ #: ../includes/Elements/Event_Calendar.php:88
1925
+ msgid "The Events Calendar"
1926
  msgstr ""
1927
 
1928
+ #: ../includes/Elements/Event_Calendar.php:114, ../includes/Elements/Progress_Bar.php:109, ../includes/Elements/Woo_Checkout.php:128
1929
+ msgid "Only Available in Pro Version!"
1930
  msgstr ""
1931
 
1932
+ #: ../includes/Elements/Event_Calendar.php:150
1933
+ msgid "https://sample-domain.com"
1934
  msgstr ""
1935
 
1936
+ #: ../includes/Elements/Event_Calendar.php:158
1937
+ msgid "All Day"
1938
  msgstr ""
1939
 
1940
+ #: ../includes/Elements/Event_Calendar.php:168, ../includes/Elements/Event_Calendar.php:192, ../includes/Elements/Event_Calendar.php:317, ../includes/Elements/Event_Calendar.php:376
1941
+ msgid "Start Date"
 
 
 
1942
  msgstr ""
1943
 
1944
+ #: ../includes/Elements/Event_Calendar.php:180, ../includes/Elements/Event_Calendar.php:205, ../includes/Elements/Event_Calendar.php:326, ../includes/Elements/Event_Calendar.php:388
1945
+ msgid "End Date"
1946
  msgstr ""
1947
 
1948
+ #: ../includes/Elements/Event_Calendar.php:218, ../includes/Elements/Event_Calendar.php:505
1949
+ msgid "Event Background Color"
 
 
1950
  msgstr ""
1951
 
1952
+ #: ../includes/Elements/Event_Calendar.php:227, ../includes/Elements/Event_Calendar.php:517
1953
+ msgid "Event Text Color"
1954
  msgstr ""
1955
 
1956
+ #: ../includes/Elements/Event_Calendar.php:236, ../includes/Elements/Event_Calendar.php:528
1957
+ msgid "Popup Ribbon Color"
 
 
 
1958
  msgstr ""
1959
 
1960
+ #: ../includes/Elements/Event_Calendar.php:264
1961
+ msgid "Event"
 
 
1962
  msgstr ""
1963
 
1964
+ #: ../includes/Elements/Event_Calendar.php:284
1965
+ msgid "Google Calendar"
 
 
 
1966
  msgstr ""
1967
 
1968
+ #: ../includes/Elements/Event_Calendar.php:295
1969
+ msgid "APi Key"
1970
  msgstr ""
1971
 
1972
+ #: ../includes/Elements/Event_Calendar.php:298
1973
+ msgid "<a href=\"https://essential-addons.com/elementor/docs/google-api-key/\" class=\"eael-btn\" target=\"_blank\">%s</a>"
1974
  msgstr ""
1975
 
1976
+ #: ../includes/Elements/Event_Calendar.php:306
1977
+ msgid "Calendar ID"
1978
  msgstr ""
1979
 
1980
+ #: ../includes/Elements/Event_Calendar.php:309
1981
+ msgid "<a href=\"https://essential-addons.com/elementor/docs/google-calendar-id/\" class=\"eael-btn\" target=\"_blank\">%s</a>"
 
 
 
1982
  msgstr ""
1983
 
1984
+ #: ../includes/Elements/Event_Calendar.php:335, ../includes/Elements/Event_Calendar.php:412
1985
+ msgid "Max Result"
 
 
 
1986
  msgstr ""
1987
 
1988
+ #: ../includes/Elements/Event_Calendar.php:349
1989
+ msgid "The Event Calendar"
 
 
 
1990
  msgstr ""
1991
 
1992
+ #: ../includes/Elements/Event_Calendar.php:360
1993
+ msgid "Get Events"
1994
  msgstr ""
1995
 
1996
+ #: ../includes/Elements/Event_Calendar.php:365, ../includes/Elements/Filterable_Gallery.php:2742
1997
+ msgid "All"
1998
  msgstr ""
1999
 
2000
+ #: ../includes/Elements/Event_Calendar.php:366
2001
+ msgid "Date Range"
 
2002
  msgstr ""
2003
 
2004
+ #: ../includes/Elements/Event_Calendar.php:400
2005
+ msgid "Event Category"
2006
  msgstr ""
2007
 
2008
+ #: ../includes/Elements/Event_Calendar.php:428, ../includes/Elements/Event_Calendar.php:546
2009
+ msgid "Calendar"
2010
  msgstr ""
2011
 
2012
+ #: ../includes/Elements/Event_Calendar.php:436
2013
+ msgid "Language"
 
2014
  msgstr ""
2015
 
2016
+ #: ../includes/Elements/Event_Calendar.php:446
2017
+ msgid "Calendar Default View"
2018
  msgstr ""
2019
 
2020
+ #: ../includes/Elements/Event_Calendar.php:449, ../includes/Elements/Event_Calendar.php:862
2021
+ msgid "Day"
2022
  msgstr ""
2023
 
2024
+ #: ../includes/Elements/Event_Calendar.php:450
2025
+ msgid "Week"
2026
  msgstr ""
2027
 
2028
+ #: ../includes/Elements/Event_Calendar.php:451
2029
+ msgid "Month"
 
 
 
2030
  msgstr ""
2031
 
2032
+ #: ../includes/Elements/Event_Calendar.php:461
2033
+ msgid "First Day of Week"
 
 
2034
  msgstr ""
2035
 
2036
+ #: ../includes/Elements/Event_Calendar.php:464
2037
+ msgid "Sunday"
 
2038
  msgstr ""
2039
 
2040
+ #: ../includes/Elements/Event_Calendar.php:465
2041
+ msgid "Monday"
2042
  msgstr ""
2043
 
2044
+ #: ../includes/Elements/Event_Calendar.php:466
2045
+ msgid "Tuesday"
2046
  msgstr ""
2047
 
2048
+ #: ../includes/Elements/Event_Calendar.php:467
2049
+ msgid "Wednesday"
2050
  msgstr ""
2051
 
2052
+ #: ../includes/Elements/Event_Calendar.php:468
2053
+ msgid "Thursday"
2054
  msgstr ""
2055
 
2056
+ #: ../includes/Elements/Event_Calendar.php:469
2057
+ msgid "Friday"
 
 
 
2058
  msgstr ""
2059
 
2060
+ #: ../includes/Elements/Event_Calendar.php:470
2061
+ msgid "Saturday"
2062
  msgstr ""
2063
 
2064
+ #: ../includes/Elements/Event_Calendar.php:479
2065
+ msgid "Hide Event Details Link"
2066
  msgstr ""
2067
 
2068
+ #: ../includes/Elements/Event_Calendar.php:483
2069
+ msgid "Hide Event Details link in event popup"
 
 
 
 
 
 
 
 
 
 
 
 
2070
  msgstr ""
2071
 
2072
+ #: ../includes/Elements/Event_Calendar.php:491
2073
+ msgid "Featured Event Color"
2074
  msgstr ""
2075
 
2076
+ #: ../includes/Elements/Event_Calendar.php:593, ../includes/Elements/Event_Calendar.php:1051, ../includes/Elements/Event_Calendar.php:1244
2077
+ msgid "Inside Space"
2078
  msgstr ""
2079
 
2080
+ #: ../includes/Elements/Event_Calendar.php:605, ../includes/Elements/Event_Calendar.php:1075, ../includes/Elements/Event_Calendar.php:1256
2081
+ msgid "Outside Space"
2082
  msgstr ""
2083
 
2084
+ #: ../includes/Elements/Event_Calendar.php:937
2085
+ msgid "Time"
2086
  msgstr ""
2087
 
2088
+ #: ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1306, ../includes/Elements/Facebook_Feed.php:564
2089
+ msgid "Date"
2090
  msgstr ""
2091
 
2092
+ #: ../includes/Elements/Event_Calendar.php:1000
2093
+ msgid "Number Background"
2094
  msgstr ""
2095
 
2096
+ #: ../includes/Elements/Event_Calendar.php:1087
2097
+ msgid "Today Date"
2098
  msgstr ""
2099
 
2100
+ #: ../includes/Elements/Event_Calendar.php:1187
2101
+ msgid "Even row Color"
2102
  msgstr ""
2103
 
2104
+ #: ../includes/Elements/Event_Calendar.php:1199
2105
+ msgid "Odd row Color"
2106
  msgstr ""
2107
 
2108
+ #: ../includes/Elements/Event_Calendar.php:1270
2109
+ msgid "Event Popup"
2110
  msgstr ""
2111
 
2112
+ #: ../includes/Elements/Event_Calendar.php:1324, ../includes/Elements/Event_Calendar.php:1550
2113
+ msgid "Date Color"
2114
  msgstr ""
2115
 
2116
+ #: ../includes/Elements/Event_Calendar.php:1336
2117
+ msgid "Date Icon"
2118
  msgstr ""
2119
 
2120
+ #: ../includes/Elements/Event_Calendar.php:1392, ../includes/Elements/Info_Box.php:1465
2121
+ msgid "Content Color"
2122
  msgstr ""
2123
 
2124
+ #: ../includes/Elements/Event_Calendar.php:1403
2125
+ msgid " Close Button"
2126
  msgstr ""
2127
 
2128
+ #: ../includes/Elements/Event_Calendar.php:1438, ../includes/Extensions/Table_of_Content.php:673
2129
+ msgid "Button Size"
2130
  msgstr ""
2131
 
2132
+ #: ../includes/Elements/Event_Calendar.php:1532
2133
+ msgid "External Link"
2134
  msgstr ""
2135
 
2136
+ #: ../includes/Elements/Event_Calendar.php:1622
2137
+ msgid "Today"
2138
  msgstr ""
2139
 
2140
+ #: ../includes/Elements/Event_Calendar.php:1623
2141
+ msgid "Tomorrow"
2142
  msgstr ""
2143
 
2144
+ #: ../includes/Elements/Event_Calendar.php:1653
2145
+ msgid "Event Details"
2146
  msgstr ""
2147
 
2148
+ #: ../includes/Elements/Event_Calendar.php:1823
2149
+ msgid "No Title"
2150
  msgstr ""
2151
 
2152
+ #: ../includes/Elements/Facebook_Feed.php:25, ../includes/templates/admin/elements.php:440
2153
+ msgid "Facebook Feed"
2154
  msgstr ""
2155
 
2156
+ #: ../includes/Elements/Facebook_Feed.php:77
2157
+ msgid "Facebook Account Settings"
2158
  msgstr ""
2159
 
2160
+ #: ../includes/Elements/Facebook_Feed.php:84
2161
+ msgid "Page ID"
 
 
 
 
 
 
 
2162
  msgstr ""
2163
 
2164
+ #: ../includes/Elements/Facebook_Feed.php:88
2165
+ msgid "<a href=\"https://findmyfbid.com/\" class=\"eael-btn\" target=\"_blank\">Find Your Page ID</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2166
  msgstr ""
2167
 
2168
+ #: ../includes/Elements/Facebook_Feed.php:95
2169
+ msgid "Access Token"
2170
  msgstr ""
2171
 
2172
+ #: ../includes/Elements/Facebook_Feed.php:99
2173
+ msgid "<a href=\"https://essential-addons.com/elementor/docs/facebook-feed/\" class=\"eael-btn\" target=\"_blank\">Get Access Token</a>"
2174
  msgstr ""
2175
 
2176
+ #: ../includes/Elements/Facebook_Feed.php:108
2177
+ msgid "Feed Settings"
2178
  msgstr ""
2179
 
2180
+ #: ../includes/Elements/Facebook_Feed.php:115
2181
+ msgid "Sort By"
2182
  msgstr ""
2183
 
2184
+ #: ../includes/Elements/Facebook_Feed.php:118
2185
+ msgid "Newest"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2186
  msgstr ""
2187
 
2188
+ #: ../includes/Elements/Facebook_Feed.php:119
2189
+ msgid "Oldest"
2190
  msgstr ""
2191
 
2192
+ #: ../includes/Elements/Facebook_Feed.php:128
2193
+ msgid "Max Visible Items"
2194
  msgstr ""
2195
 
2196
+ #: ../includes/Elements/Facebook_Feed.php:154, ../includes/Elements/Twitter_Feed.php:134, ../includes/Traits/Helper.php:373
2197
+ msgid "Layout Settings"
2198
  msgstr ""
2199
 
2200
+ #: ../includes/Elements/Facebook_Feed.php:165, ../includes/Elements/Filterable_Gallery.php:170
2201
+ msgid "Card"
 
2202
  msgstr ""
2203
 
2204
+ #: ../includes/Elements/Facebook_Feed.php:166, ../includes/Elements/Filterable_Gallery.php:169, ../includes/Traits/Helper.php:423
2205
+ msgid "Overlay"
2206
  msgstr ""
2207
 
2208
+ #: ../includes/Elements/Facebook_Feed.php:175, ../includes/Elements/Filterable_Gallery.php:116, ../includes/Elements/Product_Grid.php:108
2209
+ msgid "Columns"
2210
  msgstr ""
2211
 
2212
+ #: ../includes/Elements/Facebook_Feed.php:179, ../includes/Elements/Product_Grid.php:112, ../includes/Elements/Testimonial.php:194, ../includes/Traits/Helper.php:387, ../includes/Traits/Helper.php:821
2213
+ msgid "1"
2214
  msgstr ""
2215
 
2216
+ #: ../includes/Elements/Facebook_Feed.php:180, ../includes/Elements/Product_Grid.php:113, ../includes/Elements/Testimonial.php:195, ../includes/Traits/Helper.php:388, ../includes/Traits/Helper.php:822
2217
+ msgid "2"
2218
  msgstr ""
2219
 
2220
+ #: ../includes/Elements/Facebook_Feed.php:181, ../includes/Elements/Product_Grid.php:114, ../includes/Elements/Testimonial.php:196, ../includes/Traits/Helper.php:389, ../includes/Traits/Helper.php:823
2221
+ msgid "3"
2222
  msgstr ""
2223
 
2224
+ #: ../includes/Elements/Facebook_Feed.php:182, ../includes/Elements/Product_Grid.php:115, ../includes/Elements/Testimonial.php:197, ../includes/Traits/Helper.php:390
2225
+ msgid "4"
2226
  msgstr ""
2227
 
2228
+ #: ../includes/Elements/Facebook_Feed.php:183, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Product_Grid.php:116, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Helper.php:391
2229
+ msgid "5"
2230
  msgstr ""
2231
 
2232
+ #: ../includes/Elements/Facebook_Feed.php:184, ../includes/Elements/Product_Grid.php:117, ../includes/Traits/Helper.php:392
2233
+ msgid "6"
2234
  msgstr ""
2235
 
2236
+ #: ../includes/Elements/Facebook_Feed.php:200
2237
+ msgid "Display Message"
2238
  msgstr ""
2239
 
2240
+ #: ../includes/Elements/Facebook_Feed.php:213
2241
+ msgid "Max Message Length"
2242
  msgstr ""
2243
 
2244
+ #: ../includes/Elements/Facebook_Feed.php:236
2245
+ msgid "Display Like"
 
 
 
 
 
 
 
 
 
 
 
 
 
2246
  msgstr ""
2247
 
2248
+ #: ../includes/Elements/Facebook_Feed.php:246
2249
+ msgid "Display Comments"
2250
  msgstr ""
2251
 
2252
+ #: ../includes/Elements/Facebook_Feed.php:256
2253
+ msgid "Display Date"
2254
  msgstr ""
2255
 
2256
+ #: ../includes/Elements/Facebook_Feed.php:269
2257
+ msgid "Open link in new window"
2258
  msgstr ""
2259
 
2260
+ #: ../includes/Elements/Facebook_Feed.php:287, ../includes/Elements/Product_Grid.php:198, ../includes/Traits/Helper.php:473
2261
+ msgid "Show Load More"
2262
  msgstr ""
2263
 
2264
+ #: ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/FluentForm.php:1092, ../includes/Elements/FluentForm.php:1690, ../includes/Elements/Formstack.php:644, ../includes/Elements/Login_Register.php:997, ../includes/Elements/Woo_Checkout.php:1687, ../includes/Elements/Woo_Checkout.php:1943
2265
+ msgid "Label"
 
 
 
 
 
 
 
 
 
2266
  msgstr ""
2267
 
2268
+ #: ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Filterable_Gallery.php:677, ../includes/Elements/Product_Grid.php:191, ../includes/Elements/Product_Grid.php:213, ../includes/Traits/Helper.php:488
2269
+ msgid "Load More"
2270
  msgstr ""
2271
 
2272
+ #: ../includes/Elements/Facebook_Feed.php:320
2273
+ msgid "Feed Item Styles"
2274
  msgstr ""
2275
 
2276
+ #: ../includes/Elements/Facebook_Feed.php:328
2277
+ msgid "Space Between Items"
 
2278
  msgstr ""
2279
 
2280
+ #: ../includes/Elements/Facebook_Feed.php:459
2281
+ msgid "Preview Padding"
2282
  msgstr ""
2283
 
2284
+ #: ../includes/Elements/Facebook_Feed.php:475
2285
+ msgid "Footer Style"
2286
  msgstr ""
2287
 
2288
+ #: ../includes/Elements/Facebook_Feed.php:526
2289
+ msgid "Page Name"
2290
  msgstr ""
2291
 
2292
+ #: ../includes/Elements/Facebook_Feed.php:655
2293
+ msgid "Preview Host"
 
 
 
2294
  msgstr ""
2295
 
2296
+ #: ../includes/Elements/Facebook_Feed.php:693
2297
+ msgid "Preview Title"
2298
  msgstr ""
2299
 
2300
+ #: ../includes/Elements/Facebook_Feed.php:731
2301
+ msgid "Preview Description"
2302
  msgstr ""
2303
 
2304
+ #: ../includes/Elements/Facebook_Feed.php:769
2305
+ msgid "Likes & Comments"
 
 
 
 
 
 
 
 
 
2306
  msgstr ""
2307
 
2308
+ #: ../includes/Elements/Facebook_Feed.php:800, ../includes/Elements/Image_Accordion.php:319, ../includes/Elements/Post_Timeline.php:100, ../includes/Elements/Team_Member.php:325
2309
+ msgid "Overlay Color"
2310
  msgstr ""
2311
 
2312
+ #: ../includes/Elements/Fancy_Text.php:24, ../includes/Elements/Fancy_Text.php:61, ../includes/templates/admin/elements.php:211
2313
+ msgid "Fancy Text"
 
2314
  msgstr ""
2315
 
2316
+ #: ../includes/Elements/Fancy_Text.php:69
2317
+ msgid "Prefix Text"
 
 
 
2318
  msgstr ""
2319
 
2320
+ #: ../includes/Elements/Fancy_Text.php:70
2321
+ msgid "Place your prefix text"
 
2322
  msgstr ""
2323
 
2324
+ #: ../includes/Elements/Fancy_Text.php:72
2325
+ msgid "This is the "
2326
  msgstr ""
2327
 
2328
+ #: ../includes/Elements/Fancy_Text.php:82
2329
+ msgid "Fancy String"
2330
  msgstr ""
2331
 
2332
+ #: ../includes/Elements/Fancy_Text.php:92
2333
+ msgid "Fancy Text Strings"
 
 
 
 
 
2334
  msgstr ""
2335
 
2336
+ #: ../includes/Elements/Fancy_Text.php:99
2337
+ msgid "First string"
2338
  msgstr ""
2339
 
2340
+ #: ../includes/Elements/Fancy_Text.php:102
2341
+ msgid "Second string"
2342
  msgstr ""
2343
 
2344
+ #: ../includes/Elements/Fancy_Text.php:105
2345
+ msgid "Third string"
2346
  msgstr ""
2347
 
2348
+ #: ../includes/Elements/Fancy_Text.php:114
2349
+ msgid "Suffix Text"
2350
  msgstr ""
2351
 
2352
+ #: ../includes/Elements/Fancy_Text.php:115
2353
+ msgid "Place your suffix text"
2354
  msgstr ""
2355
 
2356
+ #: ../includes/Elements/Fancy_Text.php:117
2357
+ msgid " of the sentence."
2358
  msgstr ""
2359
 
2360
+ #: ../includes/Elements/Fancy_Text.php:128
2361
+ msgid "Fancy Text Settings"
2362
  msgstr ""
2363
 
2364
+ #: ../includes/Elements/Fancy_Text.php:136, ../includes/Elements/Pricing_Table.php:562
2365
+ msgid "Style 1"
2366
  msgstr ""
2367
 
2368
+ #: ../includes/Elements/Fancy_Text.php:137
2369
+ msgid "Style 2 (Pro)"
2370
  msgstr ""
2371
 
2372
+ #: ../includes/Elements/Fancy_Text.php:146
2373
+ msgid "Style Type"
 
2374
  msgstr ""
2375
 
2376
+ #: ../includes/Elements/Fancy_Text.php:156, ../includes/Elements/Pricing_Table.php:97, ../includes/Elements/Team_Member.php:278
2377
+ msgid "Only available in pro version!"
 
2378
  msgstr ""
2379
 
2380
+ #: ../includes/Elements/Fancy_Text.php:193
2381
+ msgid "Animation Type"
2382
  msgstr ""
2383
 
2384
+ #: ../includes/Elements/Fancy_Text.php:197
2385
+ msgid "Typing"
2386
  msgstr ""
2387
 
2388
+ #: ../includes/Elements/Fancy_Text.php:199
2389
+ msgid "Fade Up"
2390
  msgstr ""
2391
 
2392
+ #: ../includes/Elements/Fancy_Text.php:200
2393
+ msgid "Fade Down"
2394
  msgstr ""
2395
 
2396
+ #: ../includes/Elements/Fancy_Text.php:201
2397
+ msgid "Fade Left"
2398
  msgstr ""
2399
 
2400
+ #: ../includes/Elements/Fancy_Text.php:202
2401
+ msgid "Fade Right"
2402
  msgstr ""
2403
 
2404
+ #: ../includes/Elements/Fancy_Text.php:203
2405
+ msgid "Zoom"
2406
  msgstr ""
2407
 
2408
+ #: ../includes/Elements/Fancy_Text.php:204
2409
+ msgid "Bounce"
2410
  msgstr ""
2411
 
2412
+ #: ../includes/Elements/Fancy_Text.php:205, ../includes/Elements/Pricing_Table.php:376
2413
+ msgid "Swing"
2414
  msgstr ""
2415
 
2416
+ #: ../includes/Elements/Fancy_Text.php:214
2417
+ msgid "Typing Speed"
 
 
2418
  msgstr ""
2419
 
2420
+ #: ../includes/Elements/Fancy_Text.php:226
2421
+ msgid "Delay on Change"
2422
  msgstr ""
2423
 
2424
+ #: ../includes/Elements/Fancy_Text.php:235
2425
+ msgid "Loop the Typing"
2426
  msgstr ""
2427
 
2428
+ #: ../includes/Elements/Fancy_Text.php:248
2429
+ msgid "Display Type Cursor"
2430
  msgstr ""
2431
 
2432
+ #: ../includes/Elements/Fancy_Text.php:293
2433
+ msgid "Prefix Text Styles"
2434
  msgstr ""
2435
 
2436
+ #: ../includes/Elements/Fancy_Text.php:301
2437
+ msgid "Prefix Text Color"
2438
  msgstr ""
2439
 
2440
+ #: ../includes/Elements/Fancy_Text.php:326
2441
+ msgid "Fancy Text Styles"
2442
  msgstr ""
2443
 
2444
+ #: ../includes/Elements/Fancy_Text.php:334
2445
+ msgid "Fancy Text Color"
 
2446
  msgstr ""
2447
 
2448
+ #: ../includes/Elements/Fancy_Text.php:366
2449
+ msgid "Typing Cursor Color"
2450
  msgstr ""
2451
 
2452
+ #: ../includes/Elements/Fancy_Text.php:437
2453
+ msgid "Suffix Text Styles"
2454
  msgstr ""
2455
 
2456
+ #: ../includes/Elements/Fancy_Text.php:445
2457
+ msgid "Suffix Text Color"
2458
  msgstr ""
2459
 
2460
+ #: ../includes/Elements/Feature_List.php:25, ../includes/Elements/Pricing_Table.php:1132, ../includes/templates/admin/elements.php:63
2461
+ msgid "Feature List"
2462
  msgstr ""
2463
 
2464
+ #: ../includes/Elements/Feature_List.php:106
2465
+ msgid "ON"
2466
  msgstr ""
2467
 
2468
+ #: ../includes/Elements/Feature_List.php:107
2469
+ msgid "OFF"
2470
  msgstr ""
2471
 
2472
+ #: ../includes/Elements/Feature_List.php:134
2473
+ msgid "Icon Background"
 
 
 
2474
  msgstr ""
2475
 
2476
+ #: ../includes/Elements/Feature_List.php:149
2477
+ msgid "Icon Box Background"
2478
  msgstr ""
2479
 
2480
+ #: ../includes/Elements/Feature_List.php:203
2481
+ msgid "https://your-link.com"
2482
  msgstr ""
2483
 
2484
+ #: ../includes/Elements/Feature_List.php:211
2485
+ msgid "Feature Item"
2486
  msgstr ""
2487
 
2488
+ #: ../includes/Elements/Feature_List.php:220
2489
+ msgid "Feature Item 1"
 
 
2490
  msgstr ""
2491
 
2492
+ #: ../includes/Elements/Feature_List.php:221, ../includes/Elements/Feature_List.php:229, ../includes/Elements/Feature_List.php:237
2493
+ msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna"
 
 
 
2494
  msgstr ""
2495
 
2496
+ #: ../includes/Elements/Feature_List.php:228
2497
+ msgid "Feature Item 2"
2498
  msgstr ""
2499
 
2500
+ #: ../includes/Elements/Feature_List.php:236
2501
+ msgid "Feature Item 3"
2502
  msgstr ""
2503
 
2504
+ #: ../includes/Elements/Feature_List.php:248, ../includes/Elements/Progress_Bar.php:130
2505
+ msgid "Title HTML Tag"
2506
  msgstr ""
2507
 
2508
+ #: ../includes/Elements/Feature_List.php:269
2509
+ msgid "Icon Shape"
2510
  msgstr ""
2511
 
2512
+ #: ../includes/Elements/Feature_List.php:274, ../includes/Elements/Flip_Box.php:638, ../includes/Elements/Info_Box.php:552, ../includes/Elements/Info_Box.php:607, ../includes/Elements/Info_Box.php:777, ../includes/Elements/Info_Box.php:858, ../includes/Elements/Info_Box.php:994, ../includes/Elements/Info_Box.php:1090, ../includes/Elements/Progress_Bar.php:84
2513
+ msgid "Circle"
2514
  msgstr ""
2515
 
2516
+ #: ../includes/Elements/Feature_List.php:275, ../includes/Elements/Info_Box.php:551, ../includes/Elements/Info_Box.php:606, ../includes/Elements/Info_Box.php:779, ../includes/Elements/Info_Box.php:860, ../includes/Elements/Info_Box.php:996, ../includes/Elements/Info_Box.php:1092
2517
+ msgid "Square"
2518
+ msgstr ""
2519
+
2520
+ #: ../includes/Elements/Feature_List.php:276
2521
+ msgid "Rhombus"
2522
+ msgstr ""
2523
+
2524
+ #: ../includes/Elements/Feature_List.php:284
2525
+ msgid "Shape View"
2526
+ msgstr ""
2527
+
2528
+ #: ../includes/Elements/Feature_List.php:289
2529
+ msgid "Framed"
2530
+ msgstr ""
2531
+
2532
+ #: ../includes/Elements/Feature_List.php:306, ../includes/Elements/Image_Accordion.php:119, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Login_Register.php:696, ../includes/Elements/Pricing_Table.php:339, ../includes/Elements/Tooltip.php:282, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Helper.php:2922
2533
+ msgid "Top"
2534
+ msgstr ""
2535
+
2536
+ #: ../includes/Elements/Feature_List.php:326
2537
+ msgid "Arrow Indicator Position"
2538
+ msgstr ""
2539
+
2540
+ #: ../includes/Elements/Feature_List.php:356
2541
+ msgid "Show Connector"
2542
+ msgstr ""
2543
+
2544
+ #: ../includes/Elements/Feature_List.php:384, ../includes/Elements/Login_Register.php:3011, ../includes/Elements/Login_Register.php:3310
2545
+ msgid "Space Between"
2546
+ msgstr ""
2547
+
2548
+ #: ../includes/Elements/Feature_List.php:406
2549
+ msgid "Connector Type"
2550
+ msgstr ""
2551
+
2552
+ #: ../includes/Elements/Feature_List.php:411, ../includes/Elements/Testimonial.php:253
2553
+ msgid "Classic"
2554
+ msgstr ""
2555
+
2556
+ #: ../includes/Elements/Feature_List.php:412
2557
+ msgid "Modern"
2558
+ msgstr ""
2559
+
2560
+ #: ../includes/Elements/Feature_List.php:425
2561
+ msgid "Connector Styles"
2562
+ msgstr ""
2563
+
2564
+ #: ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Sticky_Video.php:549, ../includes/Extensions/Table_of_Content.php:1030
2565
+ msgid "Dashed"
2566
+ msgstr ""
2567
+
2568
+ #: ../includes/Elements/Feature_List.php:447
2569
+ msgid "Connector Color"
2570
+ msgstr ""
2571
+
2572
+ #: ../includes/Elements/Feature_List.php:467
2573
+ msgid "Connector Width"
2574
+ msgstr ""
2575
+
2576
+ #: ../includes/Elements/Feature_List.php:524
2577
+ msgid "Secondary Color"
2578
+ msgstr ""
2579
+
2580
+ #: ../includes/Elements/Feature_List.php:741
2581
+ msgid "Title Bottom Space"
2582
+ msgstr ""
2583
+
2584
+ #: ../includes/Elements/Filterable_Gallery.php:28, ../includes/templates/admin/elements.php:217
2585
+ msgid "Filterable Gallery"
2586
+ msgstr ""
2587
+
2588
+ #: ../includes/Elements/Filterable_Gallery.php:89, ../includes/Elements/Pricing_Table.php:65, ../includes/Traits/Core.php:48, ../includes/templates/admin/elements.php:559, ../includes/templates/admin/elements.php:542, ../includes/templates/admin/elements.php:539, ../includes/templates/admin/extensions.php:85
2589
+ msgid "Settings"
2590
+ msgstr ""
2591
+
2592
+ #: ../includes/Elements/Filterable_Gallery.php:96
2593
+ msgid "Items to show"
2594
+ msgstr ""
2595
+
2596
+ #: ../includes/Elements/Filterable_Gallery.php:106
2597
+ msgid "Animation Duration (ms)"
2598
+ msgstr ""
2599
+
2600
+ #: ../includes/Elements/Filterable_Gallery.php:137
2601
+ msgid "Grid Style"
2602
+ msgstr ""
2603
+
2604
+ #: ../includes/Elements/Filterable_Gallery.php:150
2605
+ msgid "Image Height"
2606
+ msgstr ""
2607
+
2608
+ #: ../includes/Elements/Filterable_Gallery.php:171
2609
+ msgid "Search & Filter"
2610
+ msgstr ""
2611
+
2612
+ #: ../includes/Elements/Filterable_Gallery.php:179
2613
+ msgid "Hover Style"
2614
+ msgstr ""
2615
+
2616
+ #: ../includes/Elements/Filterable_Gallery.php:184
2617
+ msgid "Slide In Up"
2618
+ msgstr ""
2619
+
2620
+ #: ../includes/Elements/Filterable_Gallery.php:185
2621
+ msgid "Fade In"
2622
+ msgstr ""
2623
+
2624
+ #: ../includes/Elements/Filterable_Gallery.php:186
2625
+ msgid "Zoom In "
2626
+ msgstr ""
2627
+
2628
+ #: ../includes/Elements/Filterable_Gallery.php:197
2629
+ msgid "Hover Transition"
2630
+ msgstr ""
2631
+
2632
+ #: ../includes/Elements/Filterable_Gallery.php:219
2633
+ msgid "Link to"
2634
+ msgstr ""
2635
+
2636
+ #: ../includes/Elements/Filterable_Gallery.php:224
2637
+ msgid "Media"
2638
+ msgstr ""
2639
+
2640
+ #: ../includes/Elements/Filterable_Gallery.php:225
2641
+ msgid "Buttons"
2642
+ msgstr ""
2643
+
2644
+ #: ../includes/Elements/Filterable_Gallery.php:236
2645
+ msgid "Lightbox Icon"
2646
+ msgstr ""
2647
+
2648
+ #: ../includes/Elements/Filterable_Gallery.php:252
2649
+ msgid "Link Icon"
2650
+ msgstr ""
2651
+
2652
+ #: ../includes/Elements/Filterable_Gallery.php:268
2653
+ msgid "Show Popup Caption"
2654
+ msgstr ""
2655
+
2656
+ #: ../includes/Elements/Filterable_Gallery.php:280
2657
+ msgid "Full Image Clickable?"
2658
+ msgstr ""
2659
+
2660
+ #: ../includes/Elements/Filterable_Gallery.php:292
2661
+ msgid "Full Image Action"
2662
+ msgstr ""
2663
+
2664
+ #: ../includes/Elements/Filterable_Gallery.php:296
2665
+ msgid "Lightbox"
2666
+ msgstr ""
2667
+
2668
+ #: ../includes/Elements/Filterable_Gallery.php:313
2669
+ msgid "Filterable Controls"
2670
+ msgstr ""
2671
+
2672
+ #: ../includes/Elements/Filterable_Gallery.php:320
2673
+ msgid "Enable Filter"
2674
+ msgstr ""
2675
+
2676
+ #: ../includes/Elements/Filterable_Gallery.php:329
2677
+ msgid "Gallery All Label"
2678
+ msgstr ""
2679
+
2680
+ #: ../includes/Elements/Filterable_Gallery.php:341
2681
+ msgid "All label icon"
2682
+ msgstr ""
2683
+
2684
+ #: ../includes/Elements/Filterable_Gallery.php:357
2685
+ msgid "Select Title Tag"
2686
+ msgstr ""
2687
+
2688
+ #: ../includes/Elements/Filterable_Gallery.php:385, ../includes/Elements/Pricing_Table.php:285
2689
+ msgid "List Item"
2690
+ msgstr ""
2691
+
2692
+ #: ../includes/Elements/Filterable_Gallery.php:388
2693
+ msgid "Gallery Item"
2694
+ msgstr ""
2695
+
2696
+ #: ../includes/Elements/Filterable_Gallery.php:403
2697
+ msgid "Gallery Items"
2698
+ msgstr ""
2699
+
2700
+ #: ../includes/Elements/Filterable_Gallery.php:410
2701
+ msgid "Enable Photo Gallery"
2702
+ msgstr ""
2703
+
2704
+ #: ../includes/Elements/Filterable_Gallery.php:422
2705
+ msgid "Video Gallery?"
2706
+ msgstr ""
2707
+
2708
+ #: ../includes/Elements/Filterable_Gallery.php:434
2709
+ msgid "Video Link"
2710
+ msgstr ""
2711
+
2712
+ #: ../includes/Elements/Filterable_Gallery.php:447
2713
+ msgid "Control Name"
2714
+ msgstr ""
2715
+
2716
+ #: ../includes/Elements/Filterable_Gallery.php:451
2717
+ msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. <strong>Gallery Item, Gallery Item 2</strong>)"
2718
+ msgstr ""
2719
+
2720
+ #: ../includes/Elements/Filterable_Gallery.php:458
2721
+ msgid "Item Name"
2722
+ msgstr ""
2723
+
2724
+ #: ../includes/Elements/Filterable_Gallery.php:461
2725
+ msgid "Gallery item name"
2726
+ msgstr ""
2727
+
2728
+ #: ../includes/Elements/Filterable_Gallery.php:469
2729
+ msgid "Enable Price ?"
2730
+ msgstr ""
2731
+
2732
+ #: ../includes/Elements/Filterable_Gallery.php:481
2733
+ msgid "Item Price"
2734
+ msgstr ""
2735
+
2736
+ #: ../includes/Elements/Filterable_Gallery.php:483
2737
+ msgid "$20.00"
2738
+ msgstr ""
2739
+
2740
+ #: ../includes/Elements/Filterable_Gallery.php:493
2741
+ msgid "Enable Ratings ?"
2742
+ msgstr ""
2743
+
2744
+ #: ../includes/Elements/Filterable_Gallery.php:505
2745
+ msgid "Item Ratings"
2746
+ msgstr ""
2747
+
2748
+ #: ../includes/Elements/Filterable_Gallery.php:517
2749
+ msgid "Enable Category ?"
2750
+ msgstr ""
2751
+
2752
+ #: ../includes/Elements/Filterable_Gallery.php:529
2753
+ msgid "Item Category"
2754
+ msgstr ""
2755
+
2756
+ #: ../includes/Elements/Filterable_Gallery.php:531, ../includes/Traits/Admin.php:21, ../includes/Traits/Admin.php:22, ../includes/Traits/Elements.php:23
2757
+ msgid "Essential Addons"
2758
+ msgstr ""
2759
+
2760
+ #: ../includes/Elements/Filterable_Gallery.php:541
2761
+ msgid "Item Content"
2762
+ msgstr ""
2763
+
2764
+ #: ../includes/Elements/Filterable_Gallery.php:544
2765
+ msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident."
2766
+ msgstr ""
2767
+
2768
+ #: ../includes/Elements/Filterable_Gallery.php:562
2769
+ msgid "Video play icon"
2770
+ msgstr ""
2771
+
2772
+ #: ../includes/Elements/Filterable_Gallery.php:576
2773
+ msgid "Gallery Lightbox Button?"
2774
+ msgstr ""
2775
+
2776
+ #: ../includes/Elements/Filterable_Gallery.php:591
2777
+ msgid "Gallery Link Button?"
2778
+ msgstr ""
2779
+
2780
+ #: ../includes/Elements/Filterable_Gallery.php:646, ../includes/Elements/Filterable_Gallery.php:653, ../includes/Elements/Filterable_Gallery.php:2422
2781
+ msgid "Load More Button"
2782
+ msgstr ""
2783
+
2784
+ #: ../includes/Elements/Filterable_Gallery.php:663
2785
+ msgid "Images Per Page"
2786
+ msgstr ""
2787
+
2788
+ #: ../includes/Elements/Filterable_Gallery.php:687
2789
+ msgid "No More Items Text"
2790
+ msgstr ""
2791
+
2792
+ #: ../includes/Elements/Filterable_Gallery.php:689
2793
+ msgid "No more items!"
2794
+ msgstr ""
2795
+
2796
+ #: ../includes/Elements/Filterable_Gallery.php:703
2797
+ msgid "Extra Small"
2798
+ msgstr ""
2799
+
2800
+ #: ../includes/Elements/Filterable_Gallery.php:704
2801
+ msgid "Small"
2802
+ msgstr ""
2803
+
2804
+ #: ../includes/Elements/Filterable_Gallery.php:705
2805
+ msgid "Medium"
2806
+ msgstr ""
2807
+
2808
+ #: ../includes/Elements/Filterable_Gallery.php:706
2809
+ msgid "Large"
2810
+ msgstr ""
2811
+
2812
+ #: ../includes/Elements/Filterable_Gallery.php:707
2813
+ msgid "Extra Large"
2814
+ msgstr ""
2815
+
2816
+ #: ../includes/Elements/Filterable_Gallery.php:719, ../includes/Elements/Filterable_Gallery.php:2611, ../includes/Elements/Flip_Box.php:463, ../includes/Elements/Pricing_Table.php:456
2817
+ msgid "Button Icon"
2818
+ msgstr ""
2819
+
2820
+ #: ../includes/Elements/Filterable_Gallery.php:897
2821
+ msgid "Control Style"
2822
+ msgstr ""
2823
+
2824
+ #: ../includes/Elements/Filterable_Gallery.php:1081
2825
+ msgid "Item Style"
2826
+ msgstr ""
2827
+
2828
+ #: ../includes/Elements/Filterable_Gallery.php:1156, ../includes/Elements/Filterable_Gallery.php:1346
2829
+ msgid "Item Hover Style"
2830
+ msgstr ""
2831
+
2832
+ #: ../includes/Elements/Filterable_Gallery.php:1191, ../includes/Elements/Filterable_Gallery.php:1553, ../includes/Elements/Login_Register.php:2299
2833
+ msgid "Title Typography"
2834
+ msgstr ""
2835
+
2836
+ #: ../includes/Elements/Filterable_Gallery.php:1231, ../includes/Elements/Filterable_Gallery.php:1613
2837
+ msgid "Content Typography"
2838
+ msgstr ""
2839
+
2840
+ #: ../includes/Elements/Filterable_Gallery.php:1306, ../includes/Elements/Post_Grid.php:304
2841
+ msgid "Thumbnail Style"
2842
+ msgstr ""
2843
+
2844
+ #: ../includes/Elements/Filterable_Gallery.php:1376
2845
+ msgid "Video item hover"
2846
+ msgstr ""
2847
+
2848
+ #: ../includes/Elements/Filterable_Gallery.php:1399
2849
+ msgid "Background transition"
2850
+ msgstr ""
2851
+
2852
+ #: ../includes/Elements/Filterable_Gallery.php:1419
2853
+ msgid "Icon size"
2854
+ msgstr ""
2855
+
2856
+ #: ../includes/Elements/Filterable_Gallery.php:1442
2857
+ msgid "Hover icon scale"
2858
+ msgstr ""
2859
+
2860
+ #: ../includes/Elements/Filterable_Gallery.php:1454
2861
+ msgid "Icon transition"
2862
+ msgstr ""
2863
+
2864
+ #: ../includes/Elements/Filterable_Gallery.php:1481
2865
+ msgid "Item Card Style"
2866
+ msgstr ""
2867
+
2868
+ #: ../includes/Elements/Filterable_Gallery.php:1693
2869
+ msgid "Icons Style"
2870
+ msgstr ""
2871
+
2872
+ #: ../includes/Elements/Filterable_Gallery.php:1784
2873
+ msgid "Icon Font Size"
2874
+ msgstr ""
2875
+
2876
+ #: ../includes/Elements/Filterable_Gallery.php:1923
2877
+ msgid "Price Style"
2878
+ msgstr ""
2879
+
2880
+ #: ../includes/Elements/Filterable_Gallery.php:1957
2881
+ msgid "Ratings Style"
2882
+ msgstr ""
2883
+
2884
+ #: ../includes/Elements/Filterable_Gallery.php:1979
2885
+ msgid "Star Color"
2886
+ msgstr ""
2887
+
2888
+ #: ../includes/Elements/Filterable_Gallery.php:2002
2889
+ msgid "Category Style"
2890
+ msgstr ""
2891
+
2892
+ #: ../includes/Elements/Filterable_Gallery.php:2059
2893
+ msgid "Search Form Style"
2894
+ msgstr ""
2895
+
2896
+ #: ../includes/Elements/Filterable_Gallery.php:2070, ../includes/Elements/Login_Register.php:268
2897
+ msgid "Controls"
2898
+ msgstr ""
2899
+
2900
+ #: ../includes/Elements/Filterable_Gallery.php:2162
2901
+ msgid "Controls Background"
2902
+ msgstr ""
2903
+
2904
+ #: ../includes/Elements/Filterable_Gallery.php:2205, ../includes/Extensions/Table_of_Content.php:1016
2905
+ msgid "Separator"
2906
+ msgstr ""
2907
+
2908
+ #: ../includes/Elements/Filterable_Gallery.php:2214
2909
+ msgid "Separator Size"
2910
+ msgstr ""
2911
+
2912
+ #: ../includes/Elements/Filterable_Gallery.php:2245, ../includes/Elements/Login_Register.php:1520, ../includes/Elements/Woo_Checkout.php:1291
2913
+ msgid "Form"
2914
+ msgstr ""
2915
+
2916
+ #: ../includes/Elements/Filterable_Gallery.php:2267
2917
+ msgid "Search Gallery Item..."
2918
+ msgstr ""
2919
+
2920
+ #: ../includes/Elements/Filterable_Gallery.php:2274, ../includes/Elements/Login_Register.php:2526, ../includes/Elements/Login_Register.php:2564
2921
+ msgid "Placeholder Color"
2922
+ msgstr ""
2923
+
2924
+ #: ../includes/Elements/Filterable_Gallery.php:2328
2925
+ msgid "Dropdown"
2926
+ msgstr ""
2927
+
2928
+ #: ../includes/Elements/Filterable_Gallery.php:2434, ../includes/Elements/Woo_Checkout.php:432, ../includes/Elements/Woo_Checkout.php:741, ../includes/Elements/Woo_Checkout.php:850, ../includes/Elements/Woo_Checkout.php:2256
2929
+ msgid "Top Spacing"
2930
+ msgstr ""
2931
+
2932
+ #: ../includes/Elements/Flip_Box.php:26, ../includes/templates/admin/elements.php:27
2933
+ msgid "Flip Box"
2934
+ msgstr ""
2935
+
2936
+ #: ../includes/Elements/Flip_Box.php:65
2937
+ msgid "Flipbox Settings"
2938
+ msgstr ""
2939
+
2940
+ #: ../includes/Elements/Flip_Box.php:72
2941
+ msgid "Flipbox Type"
2942
+ msgstr ""
2943
+
2944
+ #: ../includes/Elements/Flip_Box.php:77
2945
+ msgid "Flip Left"
2946
+ msgstr ""
2947
+
2948
+ #: ../includes/Elements/Flip_Box.php:78
2949
+ msgid "Flip Right"
2950
+ msgstr ""
2951
+
2952
+ #: ../includes/Elements/Flip_Box.php:79
2953
+ msgid "Flip Top"
2954
+ msgstr ""
2955
+
2956
+ #: ../includes/Elements/Flip_Box.php:80
2957
+ msgid "Flip Bottom"
2958
+ msgstr ""
2959
+
2960
+ #: ../includes/Elements/Flip_Box.php:81
2961
+ msgid "Zoom In"
2962
+ msgstr ""
2963
+
2964
+ #: ../includes/Elements/Flip_Box.php:82
2965
+ msgid "Zoom Out"
2966
+ msgstr ""
2967
+
2968
+ #: ../includes/Elements/Flip_Box.php:92, ../includes/Elements/Flip_Box.php:311, ../includes/Elements/Flip_Box.php:693, ../includes/Elements/Flip_Box.php:936
2969
+ msgid "Front"
2970
+ msgstr ""
2971
+
2972
+ #: ../includes/Elements/Flip_Box.php:113, ../includes/Elements/Flip_Box.php:200
2973
+ msgid "Flipbox Image"
2974
+ msgstr ""
2975
+
2976
+ #: ../includes/Elements/Flip_Box.php:143, ../includes/Elements/Flip_Box.php:230, ../includes/Elements/Info_Box.php:624
2977
+ msgid "Image Resizer"
2978
+ msgstr ""
2979
+
2980
+ #: ../includes/Elements/Flip_Box.php:179, ../includes/Elements/Flip_Box.php:341, ../includes/Elements/Flip_Box.php:806, ../includes/Elements/Flip_Box.php:1004
2981
+ msgid "Back"
2982
+ msgstr ""
2983
+
2984
+ #: ../includes/Elements/Flip_Box.php:302
2985
+ msgid "Flipbox Content"
2986
+ msgstr ""
2987
+
2988
+ #: ../includes/Elements/Flip_Box.php:318, ../includes/Elements/Flip_Box.php:321
2989
+ msgid "Front Title"
2990
+ msgstr ""
2991
+
2992
+ #: ../includes/Elements/Flip_Box.php:328
2993
+ msgid "Front Text"
2994
+ msgstr ""
2995
+
2996
+ #: ../includes/Elements/Flip_Box.php:331
2997
+ msgid "This is front side content."
2998
+ msgstr ""
2999
+
3000
+ #: ../includes/Elements/Flip_Box.php:348, ../includes/Elements/Flip_Box.php:351
3001
+ msgid "Back Title"
3002
+ msgstr ""
3003
+
3004
+ #: ../includes/Elements/Flip_Box.php:358
3005
+ msgid "Back Text"
3006
+ msgstr ""
3007
+
3008
+ #: ../includes/Elements/Flip_Box.php:361
3009
+ msgid "This is back side content."
3010
+ msgstr ""
3011
+
3012
+ #: ../includes/Elements/Flip_Box.php:411
3013
+ msgid "Link Type"
3014
+ msgstr ""
3015
+
3016
+ #: ../includes/Elements/Flip_Box.php:453
3017
+ msgid "Get Started"
3018
+ msgstr ""
3019
+
3020
+ #: ../includes/Elements/Flip_Box.php:526
3021
+ msgid "Filp Box Style"
3022
+ msgstr ""
3023
+
3024
+ #: ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Flip_Box.php:543
3025
+ msgid "Front Background Color"
3026
+ msgstr ""
3027
+
3028
+ #: ../includes/Elements/Flip_Box.php:552, ../includes/Elements/Flip_Box.php:562
3029
+ msgid "Back Background Color"
3030
+ msgstr ""
3031
+
3032
+ #: ../includes/Elements/Flip_Box.php:572, ../includes/Elements/Team_Member.php:381
3033
+ msgid "Content Padding"
3034
+ msgstr ""
3035
+
3036
+ #: ../includes/Elements/Flip_Box.php:586
3037
+ msgid "Border Style"
3038
+ msgstr ""
3039
+
3040
+ #: ../includes/Elements/Flip_Box.php:622, ../includes/Elements/Info_Box.php:493
3041
+ msgid "Image Style"
3042
+ msgstr ""
3043
+
3044
+ #: ../includes/Elements/Flip_Box.php:633
3045
+ msgid "Image Type"
3046
+ msgstr ""
3047
+
3048
+ #: ../includes/Elements/Flip_Box.php:1084
3049
+ msgid "Button Style"
3050
+ msgstr ""
3051
+
3052
+ #: ../includes/Elements/FluentForm.php:30, ../includes/Elements/FluentForm.php:101, ../includes/Elements/FluentForm.php:110
3053
+ msgid "Fluent Form"
3054
+ msgstr ""
3055
+
3056
+ #: ../includes/Elements/FluentForm.php:87
3057
+ msgid "<strong>Fluent Form</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=fluentform&tab=search&type=term\" target=\"_blank\">Fluent Form</a> first."
3058
+ msgstr ""
3059
+
3060
+ #: ../includes/Elements/FluentForm.php:1084
3061
+ msgid "Section Break Style"
3062
+ msgstr ""
3063
+
3064
+ #: ../includes/Elements/FluentForm.php:1230
3065
+ msgid "Checkbox Grid Style"
3066
+ msgstr ""
3067
+
3068
+ #: ../includes/Elements/FluentForm.php:1238
3069
+ msgid "Grid Table Head"
3070
+ msgstr ""
3071
+
3072
+ #: ../includes/Elements/FluentForm.php:1312
3073
+ msgid "Grid Table Item"
3074
+ msgstr ""
3075
+
3076
+ #: ../includes/Elements/FluentForm.php:1345
3077
+ msgid "Odd Item Background Color"
3078
+ msgstr ""
3079
+
3080
+ #: ../includes/Elements/FluentForm.php:1403
3081
+ msgid "Address Line Style"
3082
+ msgstr ""
3083
+
3084
+ #: ../includes/Elements/FluentForm.php:1698, ../includes/Elements/Login_Register.php:1088
3085
+ msgid "Show Label"
3086
+ msgstr ""
3087
+
3088
+ #: ../includes/Elements/FluentForm.php:1758, ../includes/Elements/Formstack.php:1606
3089
+ msgid "Progressbar"
3090
+ msgstr ""
3091
+
3092
+ #: ../includes/Elements/FluentForm.php:1766, ../includes/Elements/Formstack.php:1614
3093
+ msgid "Show Progressbar"
3094
+ msgstr ""
3095
+
3096
+ #: ../includes/Elements/FluentForm.php:1864, ../includes/Elements/Formstack.php:1724
3097
+ msgid "Filled"
3098
+ msgstr ""
3099
+
3100
+ #: ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/templates/admin/elements.php:390
3101
+ msgid "Formstack"
3102
+ msgstr ""
3103
+
3104
+ #: ../includes/Elements/Formstack.php:83
3105
+ msgid "Please set your app client credentials on the <strong>Formstack</strong> settings page."
3106
+ msgstr ""
3107
+
3108
+ #: ../includes/Elements/Formstack.php:104
3109
+ msgid "Please create form on the <strong>Formstack</strong> settings page."
3110
+ msgstr ""
3111
+
3112
+ #: ../includes/Elements/Formstack.php:125
3113
+ msgid "<strong>Formstack Online Forms</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=formstack&tab=search&type=term\" target=\"_blank\">Formstack Online Forms</a> first."
3114
+ msgstr ""
3115
+
3116
+ #: ../includes/Elements/Formstack.php:138
3117
+ msgid "-- Select One --"
3118
+ msgstr ""
3119
+
3120
+ #: ../includes/Elements/Formstack.php:176
3121
+ msgid "Forms"
3122
+ msgstr ""
3123
+
3124
+ #: ../includes/Elements/Formstack.php:347, ../includes/Elements/GravityForms.php:358, ../includes/Elements/NinjaForms.php:289, ../includes/Elements/WeForms.php:183
3125
+ msgid "Form Width"
3126
+ msgstr ""
3127
+
3128
+ #: ../includes/Elements/Formstack.php:624
3129
+ msgid "Section Heading Style"
3130
+ msgstr ""
3131
+
3132
+ #: ../includes/Elements/Formstack.php:1275, ../includes/Elements/Testimonial.php:562
3133
+ msgid "Rating"
3134
+ msgstr ""
3135
+
3136
+ #: ../includes/Elements/Formstack.php:1988, ../includes/Elements/Login_Register.php:861
3137
+ msgid "Validation Messages"
3138
+ msgstr ""
3139
+
3140
+ #: ../includes/Elements/GravityForms.php:41, ../includes/Elements/GravityForms.php:127
3141
+ msgid "Gravity Forms"
3142
+ msgstr ""
3143
+
3144
+ #: ../includes/Elements/GravityForms.php:235
3145
+ msgid "Use Ajax"
3146
+ msgstr ""
3147
+
3148
+ #: ../includes/Elements/GravityForms.php:237
3149
+ msgid "Use ajax to submit the form"
3150
+ msgstr ""
3151
+
3152
+ #: ../includes/Elements/GravityForms.php:113
3153
+ msgid "<strong>Gravity Forms</strong> is not installed/activated on your site. Please install and activate <strong>Gravity Forms</strong> first."
3154
+ msgstr ""
3155
+
3156
+ #: ../includes/Elements/GravityForms.php:695
3157
+ msgid "Spacing Right"
3158
+ msgstr ""
3159
+
3160
+ #: ../includes/Elements/GravityForms.php:973
3161
+ msgid "Section Field"
3162
+ msgstr ""
3163
+
3164
+ #: ../includes/Elements/GravityForms.php:1004, ../includes/Elements/Pricing_Table.php:701, ../includes/Elements/Pricing_Table.php:1427, ../includes/Elements/Sticky_Video.php:541
3165
+ msgid "Border Type"
3166
+ msgstr ""
3167
+
3168
+ #: ../includes/Elements/GravityForms.php:1010, ../includes/Elements/Sticky_Video.php:547
3169
+ msgid "Double"
3170
+ msgstr ""
3171
+
3172
+ #: ../includes/Elements/GravityForms.php:1024
3173
+ msgid "Border Height"
3174
+ msgstr ""
3175
+
3176
+ #: ../includes/Elements/GravityForms.php:1083, ../includes/Elements/Pricing_Table.php:176, ../includes/Elements/Pricing_Table.php:183, ../includes/Elements/Woo_Checkout.php:188
3177
+ msgid "Price"
3178
+ msgstr ""
3179
+
3180
+ #: ../includes/Elements/GravityForms.php:1091
3181
+ msgid "Price Label Color"
3182
+ msgstr ""
3183
+
3184
+ #: ../includes/Elements/GravityForms.php:1103
3185
+ msgid "Price Color"
3186
+ msgstr ""
3187
+
3188
+ #: ../includes/Elements/GravityForms.php:1121
3189
+ msgid "Total Price"
3190
+ msgstr ""
3191
+
3192
+ #: ../includes/Elements/GravityForms.php:1384
3193
+ msgid "Radio"
3194
+ msgstr ""
3195
+
3196
+ #: ../includes/Elements/GravityForms.php:1581
3197
+ msgid "Scrolling Text"
3198
+ msgstr ""
3199
+
3200
+ #: ../includes/Elements/GravityForms.php:1951
3201
+ msgid "Next/Previous Button"
3202
+ msgstr ""
3203
+
3204
+ #: ../includes/Elements/GravityForms.php:2218, ../includes/Elements/NinjaForms.php:1655
3205
+ msgid "Error Description Color"
3206
+ msgstr ""
3207
+
3208
+ #: ../includes/Elements/GravityForms.php:2233
3209
+ msgid "Error Border Color"
3210
+ msgstr ""
3211
+
3212
+ #: ../includes/Elements/GravityForms.php:2249
3213
+ msgid "Error Field Background Color"
3214
+ msgstr ""
3215
+
3216
+ #: ../includes/Elements/GravityForms.php:2264
3217
+ msgid "Error Field Label Color"
3218
+ msgstr ""
3219
+
3220
+ #: ../includes/Elements/GravityForms.php:2279, ../includes/Elements/NinjaForms.php:1670, ../includes/Elements/WpForms.php:1365
3221
+ msgid "Error Field Input Border Color"
3222
+ msgstr ""
3223
+
3224
+ #: ../includes/Elements/GravityForms.php:2294, ../includes/Elements/WpForms.php:1380
3225
+ msgid "Error Field Input Border Width"
3226
+ msgstr ""
3227
+
3228
+ #: ../includes/Elements/GravityForms.php:2318
3229
+ msgid "Thank You Message"
3230
+ msgstr ""
3231
+
3232
+ #: ../includes/Elements/Image_Accordion.php:21, ../includes/templates/admin/elements.php:223
3233
+ msgid "Image Accordion"
3234
+ msgstr ""
3235
+
3236
+ #: ../includes/Elements/Image_Accordion.php:56
3237
+ msgid "Image Accordion Settings"
3238
+ msgstr ""
3239
+
3240
+ #: ../includes/Elements/Image_Accordion.php:63
3241
+ msgid "Accordion Style"
3242
+ msgstr ""
3243
+
3244
+ #: ../includes/Elements/Image_Accordion.php:68
3245
+ msgid "On Hover"
3246
+ msgstr ""
3247
+
3248
+ #: ../includes/Elements/Image_Accordion.php:69
3249
+ msgid "On Click"
3250
+ msgstr ""
3251
+
3252
+ #: ../includes/Elements/Image_Accordion.php:92
3253
+ msgid "Content Horizontal Alignment"
3254
+ msgstr ""
3255
+
3256
+ #: ../includes/Elements/Image_Accordion.php:115
3257
+ msgid "Content Vertical Alignment"
3258
+ msgstr ""
3259
+
3260
+ #: ../includes/Elements/Image_Accordion.php:127, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Pricing_Table.php:347, ../includes/Elements/Tooltip.php:283, ../includes/Extensions/Reading_Progress.php:117, ../includes/Traits/Helper.php:2926
3261
+ msgid "Bottom"
3262
+ msgstr ""
3263
+
3264
+ #: ../includes/Elements/Image_Accordion.php:170
3265
+ msgid "Make it active?"
3266
+ msgstr ""
3267
+
3268
+ #: ../includes/Elements/Image_Accordion.php:190
3269
+ msgid "Accordion item title"
3270
+ msgstr ""
3271
+
3272
+ #: ../includes/Elements/Image_Accordion.php:198
3273
+ msgid "Accordion content goes here!"
3274
+ msgstr ""
3275
+
3276
+ #: ../includes/Elements/Image_Accordion.php:202
3277
+ msgid "Title Link"
3278
+ msgstr ""
3279
+
3280
+ #: ../includes/Elements/Image_Accordion.php:226
3281
+ msgid "Image Accordion Style"
3282
+ msgstr ""
3283
+
3284
+ #: ../includes/Elements/Image_Accordion.php:331
3285
+ msgid "Hover Overlay Color"
3286
+ msgstr ""
3287
+
3288
+ #: ../includes/Elements/Image_Accordion.php:350
3289
+ msgid "Image Accordion Thumbnail Style"
3290
+ msgstr ""
3291
+
3292
+ #: ../includes/Elements/Info_Box.php:26, ../includes/templates/admin/elements.php:33
3293
+ msgid "Info Box"
3294
+ msgstr ""
3295
+
3296
+ #: ../includes/Elements/Info_Box.php:64, ../includes/Elements/Info_Box.php:151
3297
+ msgid "Infobox Image"
3298
+ msgstr ""
3299
+
3300
+ #: ../includes/Elements/Info_Box.php:71
3301
+ msgid "Infobox Type"
3302
+ msgstr ""
3303
+
3304
+ #: ../includes/Elements/Info_Box.php:76
3305
+ msgid "Image/Icon On Top"
3306
+ msgstr ""
3307
+
3308
+ #: ../includes/Elements/Info_Box.php:77
3309
+ msgid "Image/Icon On Left"
3310
+ msgstr ""
3311
+
3312
+ #: ../includes/Elements/Info_Box.php:78
3313
+ msgid "Image/Icon On Right"
3314
+ msgstr ""
3315
+
3316
+ #: ../includes/Elements/Info_Box.php:86
3317
+ msgid "Image or Icon"
3318
+ msgstr ""
3319
+
3320
+ #: ../includes/Elements/Info_Box.php:95, ../includes/Elements/Info_Box.php:188, ../includes/Extensions/Table_of_Content.php:431
3321
+ msgid "Number"
3322
+ msgstr ""
3323
+
3324
+ #: ../includes/Elements/Info_Box.php:126
3325
+ msgid "Middle"
3326
+ msgstr ""
3327
+
3328
+ #: ../includes/Elements/Info_Box.php:204, ../includes/Elements/Info_Box.php:246, ../includes/Classes/WPML/Eael_WPML.php:179
3329
+ msgid "Infobox Content"
3330
+ msgstr ""
3331
+
3332
+ #: ../includes/Elements/Info_Box.php:210
3333
+ msgid "Infobox Title"
3334
+ msgstr ""
3335
+
3336
+ #: ../includes/Elements/Info_Box.php:216
3337
+ msgid "This is an icon box"
3338
+ msgstr ""
3339
+
3340
+ #: ../includes/Elements/Info_Box.php:252
3341
+ msgid "Write a short description, that will describe the title or something informational and useful."
3342
+ msgstr ""
3343
+
3344
+ #: ../includes/Elements/Info_Box.php:261
3345
+ msgid "Show Content"
3346
+ msgstr ""
3347
+
3348
+ #: ../includes/Elements/Info_Box.php:300, ../includes/Elements/Post_Grid.php:692
3349
+ msgid "Content Height"
3350
+ msgstr ""
3351
+
3352
+ #: ../includes/Elements/Info_Box.php:330
3353
+ msgid "Show Infobox Button"
3354
+ msgstr ""
3355
+
3356
+ #: ../includes/Elements/Info_Box.php:343
3357
+ msgid "Infobox Clickable"
3358
+ msgstr ""
3359
+
3360
+ #: ../includes/Elements/Info_Box.php:358
3361
+ msgid "Infobox Link"
3362
+ msgstr ""
3363
+
3364
+ #: ../includes/Elements/Info_Box.php:394
3365
+ msgid "Enter link URL for the button"
3366
+ msgstr ""
3367
+
3368
+ #: ../includes/Elements/Info_Box.php:399
3369
+ msgid "Enter heading for the button"
3370
+ msgstr ""
3371
+
3372
+ #: ../includes/Elements/Info_Box.php:546, ../includes/Elements/Info_Box.php:601
3373
+ msgid "Image Shape"
3374
+ msgstr ""
3375
+
3376
+ #: ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:815, ../includes/Elements/Info_Box.php:1047, ../includes/Elements/Post_Grid.php:879
3377
+ msgid "Animation"
3378
+ msgstr ""
3379
+
3380
+ #: ../includes/Elements/Info_Box.php:679
3381
+ msgid "Number Icon Style"
3382
+ msgstr ""
3383
+
3384
+ #: ../includes/Elements/Info_Box.php:698, ../includes/Elements/Info_Box.php:930
3385
+ msgid "Icon Background Size"
3386
+ msgstr ""
3387
+
3388
+ #: ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:852, ../includes/Elements/Info_Box.php:988, ../includes/Elements/Info_Box.php:1084
3389
+ msgid "Background Shape"
3390
+ msgstr ""
3391
+
3392
+ #: ../includes/Elements/Info_Box.php:1129
3393
+ msgid "Button Styles"
3394
+ msgstr ""
3395
+
3396
+ #: ../includes/Elements/Info_Box.php:1391
3397
+ msgid "Content Only Margin"
3398
+ msgstr ""
3399
+
3400
+ #: ../includes/Elements/Info_Box.php:1403
3401
+ msgid "Content Only Background"
3402
+ msgstr ""
3403
+
3404
+ #: ../includes/Elements/Info_Box.php:1415
3405
+ msgid "Content Only Padding"
3406
+ msgstr ""
3407
+
3408
+ #: ../includes/Elements/Info_Box.php:1478
3409
+ msgid "Transition will applied to ms (ex: 300ms)."
3410
+ msgstr ""
3411
+
3412
+ #: ../includes/Elements/Login_Register.php:124
3413
+ msgid "Login | Register Form"
3414
+ msgstr ""
3415
+
3416
+ #: ../includes/Elements/Login_Register.php:178, ../includes/Elements/Login_Register.php:1065, ../includes/Elements/Login_Register.php:1066, ../includes/Elements/Login_Register.php:3770
3417
+ msgid "Username"
3418
+ msgstr ""
3419
+
3420
+ #: ../includes/Elements/Login_Register.php:179, ../includes/Elements/Login_Register.php:1071, ../includes/Elements/Login_Register.php:1072, ../includes/Elements/Login_Register.php:3767
3421
+ msgid "Email"
3422
+ msgstr ""
3423
+
3424
+ #: ../includes/Elements/Login_Register.php:180, ../includes/Elements/Login_Register.php:534, ../includes/Elements/Login_Register.php:535, ../includes/Elements/Login_Register.php:561, ../includes/Elements/Login_Register.php:562, ../includes/Elements/Login_Register.php:1078, ../includes/Elements/Login_Register.php:1079, ../includes/Elements/Login_Register.php:3619, ../includes/Elements/Login_Register.php:3768, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:307
3425
+ msgid "Password"
3426
+ msgstr ""
3427
+
3428
+ #: ../includes/Elements/Login_Register.php:181, ../includes/Elements/Login_Register.php:3769
3429
+ msgid "Confirm Password"
3430
+ msgstr ""
3431
+
3432
+ #: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:3771
3433
+ msgid "First Name"
3434
+ msgstr ""
3435
+
3436
+ #: ../includes/Elements/Login_Register.php:183, ../includes/Elements/Login_Register.php:3772
3437
+ msgid "Last Name"
3438
+ msgstr ""
3439
+
3440
+ #: ../includes/Elements/Login_Register.php:184, ../includes/Elements/Login_Register.php:3773
3441
+ msgid "Website"
3442
+ msgstr ""
3443
+
3444
+ #: ../includes/Elements/Login_Register.php:237
3445
+ msgid "Choose the type of form you want to show by default. Note: you can show both forms in a single page even if you select only login or registration from below."
3446
+ msgstr ""
3447
+
3448
+ #: ../includes/Elements/Login_Register.php:241
3449
+ msgid "Default Form Type"
3450
+ msgstr ""
3451
+
3452
+ #: ../includes/Elements/Login_Register.php:244, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3781, ../includes/Elements/Woo_Checkout.php:251, ../includes/Elements/Woo_Checkout.php:880, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:320, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:320
3453
+ msgid "Login"
3454
+ msgstr ""
3455
+
3456
+ #: ../includes/Elements/Login_Register.php:245
3457
+ msgid "Registration"
3458
+ msgstr ""
3459
+
3460
+ #. translators: %1$s is settings page link open tag, %2$s is link closing tag
3461
+ #: ../includes/Elements/Login_Register.php:253
3462
+ msgid "Registration is disabled on your site. Please enable it to use registration form. You can enable it from Dashboard » Settings » General » %1$sMembership%2$s."
3463
+ msgstr ""
3464
+
3465
+ #: ../includes/Elements/Login_Register.php:261
3466
+ msgid "Hide all Forms from Logged-in Users"
3467
+ msgstr ""
3468
+
3469
+ #: ../includes/Elements/Login_Register.php:266
3470
+ msgid "Login Form General"
3471
+ msgstr ""
3472
+
3473
+ #: ../includes/Elements/Login_Register.php:275
3474
+ msgid "Show Logout Link"
3475
+ msgstr ""
3476
+
3477
+ #: ../includes/Elements/Login_Register.php:280
3478
+ msgid "Show Lost your password?"
3479
+ msgstr ""
3480
+
3481
+ #: ../includes/Elements/Login_Register.php:286
3482
+ msgid "Lost Password Text"
3483
+ msgstr ""
3484
+
3485
+ #: ../includes/Elements/Login_Register.php:292, ../includes/Elements/Login_Register.php:3636
3486
+ msgid "Forgot password?"
3487
+ msgstr ""
3488
+
3489
+ #: ../includes/Elements/Login_Register.php:298
3490
+ msgid "Lost Password Link to"
3491
+ msgstr ""
3492
+
3493
+ #: ../includes/Elements/Login_Register.php:302, ../includes/Elements/Login_Register.php:440
3494
+ msgid "Default WordPress Page"
3495
+ msgstr ""
3496
+
3497
+ #: ../includes/Elements/Login_Register.php:303, ../includes/Elements/Login_Register.php:355, ../includes/Elements/Login_Register.php:441
3498
+ msgid "Custom URL"
3499
+ msgstr ""
3500
+
3501
+ #: ../includes/Elements/Login_Register.php:311
3502
+ msgid "Custom Lost Password URL"
3503
+ msgstr ""
3504
+
3505
+ #: ../includes/Elements/Login_Register.php:378, ../includes/Elements/Login_Register.php:329
3506
+ msgid "Show Register Link"
3507
+ msgstr ""
3508
+
3509
+ #: ../includes/Elements/Login_Register.php:336
3510
+ msgid "Register Link Text"
3511
+ msgstr ""
3512
+
3513
+ #: ../includes/Elements/Login_Register.php:338, ../includes/Elements/Login_Register.php:424
3514
+ msgid "You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only."
3515
+ msgstr ""
3516
+
3517
+ #: ../includes/Elements/Login_Register.php:344
3518
+ msgid ""
3519
+ " \n"
3520
+ "Register Now"
3521
+ msgstr ""
3522
+
3523
+ #: ../includes/Elements/Login_Register.php:350
3524
+ msgid "Registration Link Action"
3525
+ msgstr ""
3526
+
3527
+ #: ../includes/Elements/Login_Register.php:354
3528
+ msgid "WordPress Registration Page"
3529
+ msgstr ""
3530
+
3531
+ #: ../includes/Elements/Login_Register.php:356
3532
+ msgid "Show Register Form"
3533
+ msgstr ""
3534
+
3535
+ #: ../includes/Elements/Login_Register.php:364
3536
+ msgid "Custom Register URL"
3537
+ msgstr ""
3538
+
3539
+ #: ../includes/Elements/Login_Register.php:385, ../includes/Elements/Login_Register.php:463
3540
+ msgid "Enable Google reCAPTCHA"
3541
+ msgstr ""
3542
+
3543
+ #: ../includes/Elements/Login_Register.php:386
3544
+ msgid "reCAPTCHA will prevent spam login from bots."
3545
+ msgstr ""
3546
+
3547
+ #: ../includes/Elements/Login_Register.php:395, ../includes/Elements/Login_Register.php:473
3548
+ msgid "reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings"
3549
+ msgstr ""
3550
+
3551
+ #: ../includes/Elements/Login_Register.php:484, ../includes/Elements/Login_Register.php:417
3552
+ msgid "Show Login Link"
3553
+ msgstr ""
3554
+
3555
+ #: ../includes/Elements/Login_Register.php:408
3556
+ msgid "Register Form General"
3557
+ msgstr ""
3558
+
3559
+ #: ../includes/Elements/Login_Register.php:422
3560
+ msgid "Login Link Text"
3561
+ msgstr ""
3562
+
3563
+ #: ../includes/Elements/Login_Register.php:430
3564
+ msgid ""
3565
+ " \n"
3566
+ "Sign In"
3567
+ msgstr ""
3568
+
3569
+ #: ../includes/Elements/Login_Register.php:436
3570
+ msgid "Login Link Action"
3571
+ msgstr ""
3572
+
3573
+ #: ../includes/Elements/Login_Register.php:442
3574
+ msgid "Show Login Form"
3575
+ msgstr ""
3576
+
3577
+ #: ../includes/Elements/Login_Register.php:450
3578
+ msgid "Custom Login URL"
3579
+ msgstr ""
3580
+
3581
+ #: ../includes/Elements/Login_Register.php:464
3582
+ msgid "reCAPTCHA will prevent spam registration from bots."
3583
+ msgstr ""
3584
+
3585
+ #: ../includes/Elements/Login_Register.php:499
3586
+ msgid "Login Form Fields"
3587
+ msgstr ""
3588
+
3589
+ #: ../includes/Elements/Login_Register.php:504
3590
+ msgid "Labels & Placeholders"
3591
+ msgstr ""
3592
+
3593
+ #: ../includes/Elements/Login_Register.php:523
3594
+ msgid "Username Label"
3595
+ msgstr ""
3596
+
3597
+ #: ../includes/Elements/Login_Register.php:524, ../includes/Elements/Login_Register.php:525, ../includes/Elements/Login_Register.php:551, ../includes/Elements/Login_Register.php:552, ../includes/Elements/Login_Register.php:3618
3598
+ msgid "Username or Email Address"
3599
+ msgstr ""
3600
+
3601
+ #: ../includes/Elements/Login_Register.php:533
3602
+ msgid "Password Label"
3603
+ msgstr ""
3604
+
3605
+ #: ../includes/Elements/Login_Register.php:543
3606
+ msgid "Placeholders"
3607
+ msgstr ""
3608
+
3609
+ #: ../includes/Elements/Login_Register.php:550
3610
+ msgid "Username Placeholder"
3611
+ msgstr ""
3612
+
3613
+ #: ../includes/Elements/Login_Register.php:560
3614
+ msgid "Password Placeholder"
3615
+ msgstr ""
3616
+
3617
+ #: ../includes/Elements/Login_Register.php:570
3618
+ msgid "Input Fields width"
3619
+ msgstr ""
3620
+
3621
+ #: ../includes/Elements/Login_Register.php:598
3622
+ msgid "Remember Me Checkbox"
3623
+ msgstr ""
3624
+
3625
+ #: ../includes/Elements/Login_Register.php:606
3626
+ msgid "Password Visibility Icon"
3627
+ msgstr ""
3628
+
3629
+ #: ../includes/Elements/Login_Register.php:615
3630
+ msgid "Login Button"
3631
+ msgstr ""
3632
+
3633
+ #: ../includes/Elements/Login_Register.php:624, ../includes/Elements/Login_Register.php:625
3634
+ msgid "Log In"
3635
+ msgstr ""
3636
+
3637
+ #: ../includes/Elements/Login_Register.php:633
3638
+ msgid "Form Header Content"
3639
+ msgstr ""
3640
+
3641
+ #: ../includes/Elements/Login_Register.php:637
3642
+ msgid "Form Header Image"
3643
+ msgstr ""
3644
+
3645
+ #: ../includes/Elements/Login_Register.php:655
3646
+ msgid "Header Image Position"
3647
+ msgstr ""
3648
+
3649
+ #: ../includes/Elements/Login_Register.php:672
3650
+ msgid "Form Header Logo"
3651
+ msgstr ""
3652
+
3653
+ #: ../includes/Elements/Login_Register.php:688
3654
+ msgid "Form Logo Position"
3655
+ msgstr ""
3656
+
3657
+ #: ../includes/Elements/Login_Register.php:705
3658
+ msgid "Login Form Title"
3659
+ msgstr ""
3660
+
3661
+ #: ../includes/Elements/Login_Register.php:708
3662
+ msgid "Welcome Back!"
3663
+ msgstr ""
3664
+
3665
+ #: ../includes/Elements/Login_Register.php:712
3666
+ msgid "Login Form Sub Title"
3667
+ msgstr ""
3668
+
3669
+ #: ../includes/Elements/Login_Register.php:715
3670
+ msgid "Please login to your account"
3671
+ msgstr ""
3672
+
3673
+ #: ../includes/Elements/Login_Register.php:719
3674
+ msgid "Register Form Title"
3675
+ msgstr ""
3676
+
3677
+ #: ../includes/Elements/Login_Register.php:722
3678
+ msgid "Create a New Account"
3679
+ msgstr ""
3680
+
3681
+ #: ../includes/Elements/Login_Register.php:726
3682
+ msgid "Register Form Sub Title"
3683
+ msgstr ""
3684
+
3685
+ #: ../includes/Elements/Login_Register.php:729
3686
+ msgid "Create an account to enjoy awesome features."
3687
+ msgstr ""
3688
+
3689
+ #: ../includes/Elements/Login_Register.php:738
3690
+ msgid "Login Form Options"
3691
+ msgstr ""
3692
+
3693
+ #: ../includes/Elements/Login_Register.php:743
3694
+ msgid "Redirect After Login"
3695
+ msgstr ""
3696
+
3697
+ #: ../includes/Elements/Login_Register.php:752, ../includes/Elements/Login_Register.php:1146
3698
+ msgid "Please note that only your current domain is allowed here to keep your site secure."
3699
+ msgstr ""
3700
+
3701
+ #: ../includes/Elements/Login_Register.php:786
3702
+ msgid "Terms & Conditions"
3703
+ msgstr ""
3704
+
3705
+ #: ../includes/Elements/Login_Register.php:791
3706
+ msgid "Enforce Terms & Conditions"
3707
+ msgstr ""
3708
+
3709
+ #: ../includes/Elements/Login_Register.php:800
3710
+ msgid "Acceptance Label"
3711
+ msgstr ""
3712
+
3713
+ #: ../includes/Elements/Login_Register.php:801
3714
+ msgid "Eg. I accept the terms & conditions. Note: First line is checkbox label & Last line will be used as link text."
3715
+ msgstr ""
3716
+
3717
+ #: ../includes/Elements/Login_Register.php:805
3718
+ msgid "I Accept the Terms and Conditions."
3719
+ msgstr ""
3720
+
3721
+ #. translators: \n means new line. So, Don't translate this
3722
+ #: ../includes/Elements/Login_Register.php:807
3723
+ msgid ""
3724
+ "I Accept\n"
3725
+ " the Terms and Conditions."
3726
+ msgstr ""
3727
+
3728
+ #: ../includes/Elements/Login_Register.php:814
3729
+ msgid "Content Source"
3730
+ msgstr ""
3731
+
3732
+ #: ../includes/Elements/Login_Register.php:827
3733
+ msgid "Terms and Conditions"
3734
+ msgstr ""
3735
+
3736
+ #: ../includes/Elements/Login_Register.php:830
3737
+ msgid "Please go through the following terms and conditions carefully."
3738
+ msgstr ""
3739
+
3740
+ #: ../includes/Elements/Login_Register.php:839
3741
+ msgid "Terms & Conditions URL"
3742
+ msgstr ""
3743
+
3744
+ #: ../includes/Elements/Login_Register.php:840
3745
+ msgid "Enter the link where your terms & condition or privacy policy is found."
3746
+ msgstr ""
3747
+
3748
+ #: ../includes/Elements/Login_Register.php:870
3749
+ msgid "Invalid Email"
3750
+ msgstr ""
3751
+
3752
+ #: ../includes/Elements/Login_Register.php:873
3753
+ msgid "Eg. Your email is invalid."
3754
+ msgstr ""
3755
+
3756
+ #: ../includes/Elements/Login_Register.php:874
3757
+ msgid "You have used an invalid email"
3758
+ msgstr ""
3759
+
3760
+ #: ../includes/Elements/Login_Register.php:877
3761
+ msgid "Email is missing"
3762
+ msgstr ""
3763
+
3764
+ #: ../includes/Elements/Login_Register.php:880
3765
+ msgid "Eg. Email is missing or Invalid"
3766
+ msgstr ""
3767
+
3768
+ #: ../includes/Elements/Login_Register.php:881, ../includes/Traits/Login_Registration.php:255
3769
+ msgid "Email is missing or Invalid"
3770
+ msgstr ""
3771
+
3772
+ #: ../includes/Elements/Login_Register.php:884
3773
+ msgid "Already Used Email"
3774
+ msgstr ""
3775
+
3776
+ #: ../includes/Elements/Login_Register.php:887
3777
+ msgid "Eg. Your email is already in use.."
3778
+ msgstr ""
3779
+
3780
+ #: ../includes/Elements/Login_Register.php:888, ../includes/Traits/Login_Registration.php:252
3781
+ msgid "The provided email is already registered with other account. Please login or reset password or use another email."
3782
+ msgstr ""
3783
+
3784
+ #: ../includes/Elements/Login_Register.php:891
3785
+ msgid "Invalid Username"
3786
+ msgstr ""
3787
+
3788
+ #: ../includes/Elements/Login_Register.php:894
3789
+ msgid "Eg. Your username is invalid."
3790
+ msgstr ""
3791
+
3792
+ #: ../includes/Elements/Login_Register.php:895
3793
+ msgid "You have used an invalid username"
3794
+ msgstr ""
3795
+
3796
+ #: ../includes/Elements/Login_Register.php:898
3797
+ msgid "Username already in use"
3798
+ msgstr ""
3799
+
3800
+ #: ../includes/Elements/Login_Register.php:901
3801
+ msgid "Eg. Your username is already registered."
3802
+ msgstr ""
3803
+
3804
+ #: ../includes/Elements/Login_Register.php:902
3805
+ msgid "Invalid username provided or the username already registered."
3806
+ msgstr ""
3807
+
3808
+ #: ../includes/Elements/Login_Register.php:905, ../includes/Traits/Login_Registration.php:142
3809
+ msgid "Invalid Password"
3810
+ msgstr ""
3811
+
3812
+ #: ../includes/Elements/Login_Register.php:908
3813
+ msgid "Eg. Your password is invalid"
3814
+ msgstr ""
3815
+
3816
+ #: ../includes/Elements/Login_Register.php:909
3817
+ msgid "Your password is invalid."
3818
+ msgstr ""
3819
+
3820
+ #: ../includes/Elements/Login_Register.php:913
3821
+ msgid "Invalid Password Confirmed"
3822
+ msgstr ""
3823
+
3824
+ #: ../includes/Elements/Login_Register.php:916
3825
+ msgid "Eg. Password did not matched"
3826
+ msgstr ""
3827
+
3828
+ #: ../includes/Elements/Login_Register.php:917
3829
+ msgid "Your confirmed password did not match"
3830
+ msgstr ""
3831
+
3832
+ #: ../includes/Elements/Login_Register.php:921
3833
+ msgid "Already Logged In"
3834
+ msgstr ""
3835
+
3836
+ #: ../includes/Elements/Login_Register.php:924
3837
+ msgid "Eg. You are already logged in"
3838
+ msgstr ""
3839
+
3840
+ #: ../includes/Elements/Login_Register.php:925, ../includes/Traits/Login_Registration.php:97
3841
+ msgid "You are already logged in"
3842
+ msgstr ""
3843
+
3844
+ #: ../includes/Elements/Login_Register.php:929
3845
+ msgid "reCAPTCHA Failed"
3846
+ msgstr ""
3847
+
3848
+ #: ../includes/Elements/Login_Register.php:932
3849
+ msgid "Eg. Recaptcha Validation Failed"
3850
+ msgstr ""
3851
+
3852
+ #: ../includes/Elements/Login_Register.php:933, ../includes/Traits/Login_Registration.php:110, ../includes/Traits/Login_Registration.php:246
3853
+ msgid "You did not pass recaptcha challenge."
3854
+ msgstr ""
3855
+
3856
+ #: ../includes/Elements/Login_Register.php:937
3857
+ msgid "Terms & Condition Error"
3858
+ msgstr ""
3859
+
3860
+ #: ../includes/Elements/Login_Register.php:940
3861
+ msgid "Eg. You must accept the Terms & Conditions"
3862
+ msgstr ""
3863
+
3864
+ #: ../includes/Elements/Login_Register.php:941, ../includes/Traits/Login_Registration.php:243
3865
+ msgid "You did not accept the Terms and Conditions. Please accept it and try again."
3866
+ msgstr ""
3867
+
3868
+ #: ../includes/Elements/Login_Register.php:945
3869
+ msgid "Other Errors"
3870
+ msgstr ""
3871
+
3872
+ #: ../includes/Elements/Login_Register.php:948
3873
+ msgid "Eg. Something went wrong"
3874
+ msgstr ""
3875
+
3876
+ #: ../includes/Elements/Login_Register.php:949, ../includes/Traits/Admin.php:159
3877
+ msgid "Something went wrong!"
3878
+ msgstr ""
3879
+
3880
+ #: ../includes/Elements/Login_Register.php:953
3881
+ msgid "Success Messages"
3882
+ msgstr ""
3883
+
3884
+ #: ../includes/Elements/Login_Register.php:959
3885
+ msgid "Successful Login"
3886
+ msgstr ""
3887
+
3888
+ #: ../includes/Elements/Login_Register.php:962
3889
+ msgid "Eg. You have logged in successfully"
3890
+ msgstr ""
3891
+
3892
+ #: ../includes/Elements/Login_Register.php:963
3893
+ msgid "You have logged in successfully"
3894
+ msgstr ""
3895
+
3896
+ #: ../includes/Elements/Login_Register.php:966
3897
+ msgid "Successful Registration"
3898
+ msgstr ""
3899
+
3900
+ #: ../includes/Elements/Login_Register.php:968
3901
+ msgid "Registration completed successfully, Check your inbox for password if you did not provided while registering."
3902
+ msgstr ""
3903
+
3904
+ #: ../includes/Elements/Login_Register.php:969
3905
+ msgid "eg. Registration completed successfully"
3906
+ msgstr ""
3907
+
3908
+ #: ../includes/Elements/Login_Register.php:979
3909
+ msgid "Register Form Fields"
3910
+ msgstr ""
3911
+
3912
+ #: ../includes/Elements/Login_Register.php:984
3913
+ msgid "Select the type of fields you want to show in the registration form"
3914
+ msgstr ""
3915
+
3916
+ #: ../includes/Elements/Login_Register.php:990
3917
+ msgid "Type"
3918
+ msgstr ""
3919
+
3920
+ #: ../includes/Elements/Login_Register.php:1015
3921
+ msgid "Required"
3922
+ msgstr ""
3923
+
3924
+ #: ../includes/Elements/Login_Register.php:1028
3925
+ msgid "Note: This field is required by default."
3926
+ msgstr ""
3927
+
3928
+ #: ../includes/Elements/Login_Register.php:1040
3929
+ msgid "Field Width"
3930
+ msgstr ""
3931
+
3932
+ #: ../includes/Elements/Login_Register.php:1094
3933
+ msgid "Show Required Mark"
3934
+ msgstr ""
3935
+
3936
+ #: ../includes/Elements/Login_Register.php:1104
3937
+ msgid "Register Button"
3938
+ msgstr ""
3939
+
3940
+ #: ../includes/Elements/Login_Register.php:1113, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3591
3941
+ msgid "Register"
3942
+ msgstr ""
3943
+
3944
+ #: ../includes/Elements/Login_Register.php:1123
3945
+ msgid "Register Form Options"
3946
+ msgstr ""
3947
+
3948
+ #: ../includes/Elements/Login_Register.php:1128
3949
+ msgid "Register Actions"
3950
+ msgstr ""
3951
+
3952
+ #: ../includes/Elements/Login_Register.php:1129
3953
+ msgid "You can select what should happen after a user registers successfully"
3954
+ msgstr ""
3955
+
3956
+ #: ../includes/Elements/Login_Register.php:1135
3957
+ msgid "Redirect"
3958
+ msgstr ""
3959
+
3960
+ #: ../includes/Elements/Login_Register.php:1136
3961
+ msgid "Auto Login"
3962
+ msgstr ""
3963
+
3964
+ #: ../includes/Elements/Login_Register.php:1137
3965
+ msgid "Notify User By Email"
3966
+ msgstr ""
3967
+
3968
+ #: ../includes/Elements/Login_Register.php:1143
3969
+ msgid "Custom Redirect URL"
3970
+ msgstr ""
3971
+
3972
+ #: ../includes/Elements/Login_Register.php:1145
3973
+ msgid "eg. https://your-link.com/wp-admin/"
3974
+ msgstr ""
3975
+
3976
+ #: ../includes/Elements/Login_Register.php:1158
3977
+ msgid "New User Role"
3978
+ msgstr ""
3979
+
3980
+ #. translators: %s: Site Name
3981
+ #: ../includes/Elements/Login_Register.php:1171
3982
+ msgid "Thank you for registering on \"%s\"!"
3983
+ msgstr ""
3984
+
3985
+ #: ../includes/Elements/Login_Register.php:1173, ../includes/Elements/Login_Register.php:1282
3986
+ msgid "Username: [username]"
3987
+ msgstr ""
3988
+
3989
+ #: ../includes/Elements/Login_Register.php:1174
3990
+ msgid "Password: [password]"
3991
+ msgstr ""
3992
+
3993
+ #: ../includes/Elements/Login_Register.php:1175
3994
+ msgid "To reset your password, visit the following address:"
3995
+ msgstr ""
3996
+
3997
+ #: ../includes/Elements/Login_Register.php:1177
3998
+ msgid "Please click the following address to login to your account:"
3999
+ msgstr ""
4000
+
4001
+ #: ../includes/Elements/Login_Register.php:1181
4002
+ msgid "Register User Email Options"
4003
+ msgstr ""
4004
+
4005
+ #: ../includes/Elements/Login_Register.php:1215, ../includes/Elements/Login_Register.php:1321
4006
+ msgid "Email Template Type"
4007
+ msgstr ""
4008
+
4009
+ #: ../includes/Elements/Login_Register.php:1216
4010
+ msgid "Default template uses WordPress Default email template. So, please select the Custom Option to send the user proper information if you used any username field."
4011
+ msgstr ""
4012
+
4013
+ #: ../includes/Elements/Login_Register.php:1221, ../includes/Elements/Login_Register.php:1327
4014
+ msgid "WordPres Default"
4015
+ msgstr ""
4016
+
4017
+ #: ../includes/Elements/Login_Register.php:1227, ../includes/Elements/Login_Register.php:1333
4018
+ msgid "Email Subject"
4019
+ msgstr ""
4020
+
4021
+ #: ../includes/Elements/Login_Register.php:1239, ../includes/Elements/Login_Register.php:1345
4022
+ msgid "Email Message"
4023
+ msgstr ""
4024
+
4025
+ #: ../includes/Elements/Login_Register.php:1241, ../includes/Elements/Login_Register.php:1347
4026
+ msgid "Enter Your Custom Email Message.."
4027
+ msgstr ""
4028
+
4029
+ #: ../includes/Elements/Login_Register.php:1252
4030
+ msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [password], [username], [email], [firstname],[lastname], [website], [loginurl], [password_reset_link] and [sitetitle] "
4031
+ msgstr ""
4032
+
4033
+ #: ../includes/Elements/Login_Register.php:1261, ../includes/Elements/Login_Register.php:1367
4034
+ msgid "Email Content Type"
4035
+ msgstr ""
4036
+
4037
+ #: ../includes/Elements/Login_Register.php:1266, ../includes/Elements/Login_Register.php:1372
4038
+ msgid "HTML"
4039
+ msgstr ""
4040
+
4041
+ #: ../includes/Elements/Login_Register.php:1267, ../includes/Elements/Login_Register.php:1373
4042
+ msgid "Plain"
4043
+ msgstr ""
4044
+
4045
+ #. translators: %s: Site Name
4046
+ #: ../includes/Elements/Login_Register.php:1279
4047
+ msgid "[\"%s\"] New User Registration"
4048
+ msgstr ""
4049
+
4050
+ #. translators: %s: Site Name
4051
+ #: ../includes/Elements/Login_Register.php:1281
4052
+ msgid "New user registration on your site %s"
4053
+ msgstr ""
4054
+
4055
+ #: ../includes/Elements/Login_Register.php:1283
4056
+ msgid "Email: [email]"
4057
+ msgstr ""
4058
+
4059
+ #: ../includes/Elements/Login_Register.php:1287
4060
+ msgid "Register Admin Email Options"
4061
+ msgstr ""
4062
+
4063
+ #: ../includes/Elements/Login_Register.php:1322
4064
+ msgid "Default template uses WordPress Default Admin email template. You can customize it by choosing the custom option."
4065
+ msgstr ""
4066
+
4067
+ #: ../includes/Elements/Login_Register.php:1358
4068
+ msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [username], [email], [firstname],[lastname], [website], [loginurl] and [sitetitle] "
4069
+ msgstr ""
4070
+
4071
+ #: ../includes/Elements/Login_Register.php:1394
4072
+ msgid "Container Box"
4073
+ msgstr ""
4074
+
4075
+ #: ../includes/Elements/Login_Register.php:1510
4076
+ msgid "Container Box Shadow"
4077
+ msgstr ""
4078
+
4079
+ #: ../includes/Elements/Login_Register.php:1530
4080
+ msgid "---Form Wrapper---"
4081
+ msgstr ""
4082
+
4083
+ #: ../includes/Elements/Login_Register.php:1535
4084
+ msgid "Wrapper width"
4085
+ msgstr ""
4086
+
4087
+ #: ../includes/Elements/Login_Register.php:1579
4088
+ msgid "Wrapper Margin"
4089
+ msgstr ""
4090
+
4091
+ #: ../includes/Elements/Login_Register.php:1594
4092
+ msgid "Wrapper Padding"
4093
+ msgstr ""
4094
+
4095
+ #: ../includes/Elements/Login_Register.php:1616
4096
+ msgid "Wrapper Border Radius"
4097
+ msgstr ""
4098
+
4099
+ #: ../includes/Elements/Login_Register.php:1641
4100
+ msgid "---Form Style---"
4101
+ msgstr ""
4102
+
4103
+ #: ../includes/Elements/Login_Register.php:1645
4104
+ msgid "Form width"
4105
+ msgstr ""
4106
+
4107
+ #: ../includes/Elements/Login_Register.php:1743
4108
+ msgid "Form Wrapper Shadow"
4109
+ msgstr ""
4110
+
4111
+ #: ../includes/Elements/Login_Register.php:1752
4112
+ msgid "Form Shadow"
4113
+ msgstr ""
4114
+
4115
+ #: ../includes/Elements/Login_Register.php:1765
4116
+ msgid "%s Form Header"
4117
+ msgstr ""
4118
+
4119
+ #: ../includes/Elements/Login_Register.php:1777
4120
+ msgid "Header Content"
4121
+ msgstr ""
4122
+
4123
+ #: ../includes/Elements/Login_Register.php:1787
4124
+ msgid "Header width"
4125
+ msgstr ""
4126
+
4127
+ #: ../includes/Elements/Login_Register.php:1822
4128
+ msgid "Header height"
4129
+ msgstr ""
4130
+
4131
+ #: ../includes/Elements/Login_Register.php:1853
4132
+ msgid "Header Margin"
4133
+ msgstr ""
4134
+
4135
+ #: ../includes/Elements/Login_Register.php:1868
4136
+ msgid "Header Padding"
4137
+ msgstr ""
4138
+
4139
+ #: ../includes/Elements/Login_Register.php:1921
4140
+ msgid "Form Illustration"
4141
+ msgstr ""
4142
+
4143
+ #: ../includes/Elements/Login_Register.php:2063
4144
+ msgid "Illustration Shadow"
4145
+ msgstr ""
4146
+
4147
+ #: ../includes/Elements/Login_Register.php:2071
4148
+ msgid "Form Logo"
4149
+ msgstr ""
4150
+
4151
+ #: ../includes/Elements/Login_Register.php:2080
4152
+ msgid "width"
4153
+ msgstr ""
4154
+
4155
+ #: ../includes/Elements/Login_Register.php:2115
4156
+ msgid "height"
4157
+ msgstr ""
4158
+
4159
+ #: ../includes/Elements/Login_Register.php:2203
4160
+ msgid "Logo Shadow"
4161
+ msgstr ""
4162
+
4163
+ #: ../includes/Elements/Login_Register.php:2305
4164
+ msgid "Subtitle"
4165
+ msgstr ""
4166
+
4167
+ #: ../includes/Elements/Login_Register.php:2390
4168
+ msgid "Subtitle Typography"
4169
+ msgstr ""
4170
+
4171
+ #: ../includes/Elements/Login_Register.php:2399
4172
+ msgid "Form Fields"
4173
+ msgstr ""
4174
+
4175
+ #: ../includes/Elements/Login_Register.php:2413
4176
+ msgid "Form Input Fields"
4177
+ msgstr ""
4178
+
4179
+ #: ../includes/Elements/Login_Register.php:2447
4180
+ msgid "Remember Me Field"
4181
+ msgstr ""
4182
+
4183
+ #: ../includes/Elements/Login_Register.php:2509, ../includes/Elements/Login_Register.php:3047, ../includes/Elements/Login_Register.php:3368
4184
+ msgid "Colors & Border"
4185
+ msgstr ""
4186
+
4187
+ #: ../includes/Elements/Login_Register.php:2600
4188
+ msgid "Form Labels"
4189
+ msgstr ""
4190
+
4191
+ #: ../includes/Elements/Login_Register.php:2649
4192
+ msgid "Colors"
4193
+ msgstr ""
4194
+
4195
+ #: ../includes/Elements/Login_Register.php:2713
4196
+ msgid "Required Mark Style"
4197
+ msgstr ""
4198
+
4199
+ #: ../includes/Elements/Login_Register.php:2723
4200
+ msgid "Mark Sign"
4201
+ msgstr ""
4202
+
4203
+ #: ../includes/Elements/Login_Register.php:2768, ../includes/Elements/Login_Register.php:2864
4204
+ msgid "Vertical Alignment"
4205
+ msgstr ""
4206
+
4207
+ #: ../includes/Elements/Login_Register.php:2789, ../includes/Elements/Login_Register.php:2885
4208
+ msgid "Horizontal Alignment"
4209
+ msgstr ""
4210
+
4211
+ #: ../includes/Elements/Login_Register.php:2812
4212
+ msgid "Password Visibility Style"
4213
+ msgstr ""
4214
+
4215
+ #: ../includes/Elements/Login_Register.php:2843
4216
+ msgid "Open Eye Color"
4217
+ msgstr ""
4218
+
4219
+ #: ../includes/Elements/Login_Register.php:2853
4220
+ msgid "Close Eye Color"
4221
+ msgstr ""
4222
+
4223
+ #: ../includes/Elements/Login_Register.php:2942
4224
+ msgid "%s Button"
4225
+ msgstr ""
4226
+
4227
+ #: ../includes/Elements/Login_Register.php:2990, ../includes/Elements/Login_Register.php:3290
4228
+ msgid "Display as"
4229
+ msgstr ""
4230
+
4231
+ #: ../includes/Elements/Login_Register.php:3005, ../includes/Elements/Login_Register.php:3304
4232
+ msgid "Justify Content"
4233
+ msgstr ""
4234
+
4235
+ #: ../includes/Elements/Login_Register.php:3008, ../includes/Elements/Login_Register.php:3307, ../includes/Elements/Login_Register.php:3327
4236
+ msgid "Start"
4237
+ msgstr ""
4238
+
4239
+ #: ../includes/Elements/Login_Register.php:3009, ../includes/Elements/Login_Register.php:3308, ../includes/Elements/Login_Register.php:3328
4240
+ msgid "End"
4241
+ msgstr ""
4242
+
4243
+ #: ../includes/Elements/Login_Register.php:3012, ../includes/Elements/Login_Register.php:3311
4244
+ msgid "Space Around"
4245
+ msgstr ""
4246
+
4247
+ #: ../includes/Elements/Login_Register.php:3013, ../includes/Elements/Login_Register.php:3312, ../includes/Elements/Login_Register.php:3332
4248
+ msgid "Space Evenly"
4249
+ msgstr ""
4250
+
4251
+ #: ../includes/Elements/Login_Register.php:3129
4252
+ msgid "Button width"
4253
+ msgstr ""
4254
+
4255
+ #: ../includes/Elements/Login_Register.php:3152
4256
+ msgid "Button Height"
4257
+ msgstr ""
4258
+
4259
+ #: ../includes/Elements/Login_Register.php:3183
4260
+ msgid "%s Form reCAPTCHA"
4261
+ msgstr ""
4262
+
4263
+ #: ../includes/Elements/Login_Register.php:3204
4264
+ msgid "Theme"
4265
+ msgstr ""
4266
+
4267
+ #: ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Pricing_Table.php:411
4268
+ msgid "Light"
4269
+ msgstr ""
4270
+
4271
+ #: ../includes/Elements/Login_Register.php:3208
4272
+ msgid "Dark"
4273
+ msgstr ""
4274
+
4275
+ #: ../includes/Elements/Login_Register.php:3218
4276
+ msgid "Compact"
4277
+ msgstr ""
4278
+
4279
+ #: ../includes/Elements/Login_Register.php:3234
4280
+ msgid "%s Link"
4281
+ msgstr ""
4282
+
4283
+ #: ../includes/Elements/Login_Register.php:3242
4284
+ msgid "Here you can style the %s link displayed on the %s Form"
4285
+ msgstr ""
4286
+
4287
+ #: ../includes/Elements/Login_Register.php:3324
4288
+ msgid "Align Items"
4289
+ msgstr ""
4290
+
4291
+ #: ../includes/Elements/Login_Register.php:3330
4292
+ msgid "Stretch"
4293
+ msgstr ""
4294
+
4295
+ #: ../includes/Elements/Login_Register.php:3331
4296
+ msgid "Baseline"
4297
+ msgstr ""
4298
+
4299
+ #: ../includes/Elements/Login_Register.php:3449
4300
+ msgid "Link Container width"
4301
+ msgstr ""
4302
+
4303
+ #: ../includes/Elements/Login_Register.php:3472
4304
+ msgid "Link width"
4305
+ msgstr ""
4306
+
4307
+ #: ../includes/Elements/Login_Register.php:3495
4308
+ msgid "Link Height"
4309
+ msgstr ""
4310
+
4311
+ #: ../includes/Elements/Login_Register.php:3699
4312
+ msgid "Remember Me"
4313
+ msgstr ""
4314
+
4315
+ #: ../includes/Elements/Login_Register.php:3658
4316
+ msgid "You are already logged in as %s. "
4317
+ msgstr ""
4318
+
4319
+ #: ../includes/Elements/Login_Register.php:3659
4320
+ msgid "Logout"
4321
+ msgstr ""
4322
+
4323
+ #: ../includes/Elements/Login_Register.php:3991
4324
+ msgid "Form Logo Image"
4325
+ msgstr ""
4326
+
4327
+ #. translators: %s: Error fields
4328
+ #: ../includes/Elements/Login_Register.php:4097
4329
+ msgid "Error! you seem to have added %s field in the form more than once."
4330
+ msgstr ""
4331
+
4332
+ #. translators: %s: Error String
4333
+ #: ../includes/Elements/Login_Register.php:4113
4334
+ msgid "Error! It is required to use %s field."
4335
+ msgstr ""
4336
+
4337
+ #. translators: %s: Error String
4338
+ #: ../includes/Elements/Login_Register.php:4137
4339
+ msgid "Error! It is required to use %s field with %s Field."
4340
+ msgstr ""
4341
+
4342
+ #: ../includes/Elements/NinjaForms.php:24, ../includes/Elements/NinjaForms.php:88
4343
+ msgid "Ninja Forms"
4344
+ msgstr ""
4345
+
4346
+ #: ../includes/Elements/NinjaForms.php:74
4347
+ msgid "<strong>Ninja Forms</strong> is not installed/activated on your site. Please install and activate <strong>Ninja Forms</strong> first."
4348
+ msgstr ""
4349
+
4350
+ #: ../includes/Elements/NinjaForms.php:1554
4351
+ msgid "Required Fields Notice"
4352
+ msgstr ""
4353
+
4354
+ #: ../includes/Elements/Post_Grid.php:25, ../includes/templates/admin/elements.php:128
4355
+ msgid "Post Grid"
4356
+ msgstr ""
4357
+
4358
+ #: ../includes/Elements/Post_Grid.php:81
4359
+ msgid "Links"
4360
+ msgstr ""
4361
+
4362
+ #: ../includes/Elements/Post_Grid.php:99, ../includes/Elements/Post_Grid.php:139, ../includes/Elements/Post_Grid.php:179
4363
+ msgid "No Follow"
4364
+ msgstr ""
4365
+
4366
+ #: ../includes/Elements/Post_Grid.php:113, ../includes/Elements/Post_Grid.php:153, ../includes/Elements/Post_Grid.php:193
4367
+ msgid "Target Blank"
4368
+ msgstr ""
4369
+
4370
+ #: ../includes/Elements/Post_Grid.php:167, ../includes/Traits/Helper.php:742, ../includes/Traits/Helper.php:775
4371
+ msgid "Read More"
4372
+ msgstr ""
4373
+
4374
+ #: ../includes/Elements/Post_Grid.php:212
4375
+ msgid "Post Grid Style"
4376
+ msgstr ""
4377
+
4378
+ #: ../includes/Elements/Post_Grid.php:219, ../includes/Elements/Testimonial.php:248
4379
+ msgid "Select Style"
4380
+ msgstr ""
4381
+
4382
+ #: ../includes/Elements/Post_Grid.php:223
4383
+ msgid "Style Two"
4384
+ msgstr ""
4385
+
4386
+ #: ../includes/Elements/Post_Grid.php:224
4387
+ msgid "Style Three"
4388
+ msgstr ""
4389
+
4390
+ #: ../includes/Elements/Post_Grid.php:233
4391
+ msgid "Make sure to enable <strong>Show Date</strong> option from <strong>Layout Settings</strong>"
4392
+ msgstr ""
4393
+
4394
+ #: ../includes/Elements/Post_Grid.php:245
4395
+ msgid "Post Background Color"
4396
+ msgstr ""
4397
+
4398
+ #: ../includes/Elements/Post_Grid.php:258
4399
+ msgid "Spacing Between Items"
4400
+ msgstr ""
4401
+
4402
+ #: ../includes/Elements/Post_Grid.php:328
4403
+ msgid "Meta Date Style"
4404
+ msgstr ""
4405
+
4406
+ #: ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Pricing_Table.php:413, ../includes/Elements/Pricing_Table.php:1344
4407
+ msgid "Shadow"
4408
+ msgstr ""
4409
+
4410
+ #: ../includes/Elements/Post_Grid.php:395
4411
+ msgid "Meta Date Position"
4412
+ msgstr ""
4413
+
4414
+ #: ../includes/Elements/Post_Grid.php:409
4415
+ msgid "Meta Style"
4416
+ msgstr ""
4417
+
4418
+ #: ../includes/Elements/Post_Grid.php:516, ../includes/Elements/Post_Grid.php:527, ../includes/Traits/Helper.php:851
4419
+ msgid "Meta Position"
4420
+ msgstr ""
4421
+
4422
+ #: ../includes/Elements/Post_Grid.php:542
4423
+ msgid "Color, Typography & Spacing"
4424
+ msgstr ""
4425
+
4426
+ #: ../includes/Elements/Post_Grid.php:572
4427
+ msgid "Title Hover Color"
4428
+ msgstr ""
4429
+
4430
+ #: ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Timeline.php:264
4431
+ msgid "Excerpt Style"
4432
+ msgstr ""
4433
+
4434
+ #: ../includes/Elements/Post_Grid.php:641, ../includes/Elements/Post_Timeline.php:273
4435
+ msgid "Excerpt Color"
4436
+ msgstr ""
4437
+
4438
+ #: ../includes/Elements/Post_Grid.php:653, ../includes/Elements/Post_Timeline.php:285
4439
+ msgid "Excerpt Alignment"
4440
+ msgstr ""
4441
+
4442
+ #: ../includes/Elements/Post_Grid.php:669, ../includes/Elements/Post_Timeline.php:301, ../includes/Elements/Tooltip.php:187, ../includes/Elements/Tooltip.php:381
4443
+ msgid "Justified"
4444
+ msgstr ""
4445
+
4446
+ #: ../includes/Elements/Post_Grid.php:683
4447
+ msgid "Excerpt Typography"
4448
+ msgstr ""
4449
+
4450
+ #: ../includes/Elements/Post_Grid.php:725
4451
+ msgid "Terms Style"
4452
+ msgstr ""
4453
+
4454
+ #: ../includes/Elements/Post_Grid.php:736
4455
+ msgid "Terms Color"
4456
+ msgstr ""
4457
+
4458
+ #: ../includes/Elements/Post_Grid.php:775
4459
+ msgid "Meta Typography"
4460
+ msgstr ""
4461
+
4462
+ #: ../includes/Elements/Post_Grid.php:798
4463
+ msgid "Terms"
4464
+ msgstr ""
4465
+
4466
+ #: ../includes/Elements/Post_Grid.php:871
4467
+ msgid "Hover Card Style"
4468
+ msgstr ""
4469
+
4470
+ #: ../includes/Elements/Post_Grid.php:884
4471
+ msgid "FadeIn"
4472
+ msgstr ""
4473
+
4474
+ #: ../includes/Elements/Post_Grid.php:885
4475
+ msgid "ZoomIn"
4476
+ msgstr ""
4477
+
4478
+ #: ../includes/Elements/Post_Grid.php:886
4479
+ msgid "SlideUp"
4480
+ msgstr ""
4481
+
4482
+ #: ../includes/Elements/Post_Grid.php:894
4483
+ msgid "Post Hover Icon"
4484
+ msgstr ""
4485
+
4486
+ #: ../includes/Elements/Post_Grid.php:923
4487
+ msgid "Cards Radius"
4488
+ msgstr ""
4489
+
4490
+ #: ../includes/Elements/Post_Grid.php:946
4491
+ msgid "Icon font size"
4492
+ msgstr ""
4493
+
4494
+ #: ../includes/Elements/Post_Timeline.php:26, ../includes/templates/admin/elements.php:134
4495
+ msgid "Post Timeline"
4496
+ msgstr ""
4497
+
4498
+ #: ../includes/Elements/Post_Timeline.php:77
4499
+ msgid "Timeline Style"
4500
+ msgstr ""
4501
+
4502
+ #: ../includes/Elements/Post_Timeline.php:85
4503
+ msgid "Show Overlay"
4504
+ msgstr ""
4505
+
4506
+ #: ../includes/Elements/Post_Timeline.php:102
4507
+ msgid "Leave blank or Clear to use default gradient overlay"
4508
+ msgstr ""
4509
+
4510
+ #: ../includes/Elements/Post_Timeline.php:116
4511
+ msgid "Timeline Bullet Color"
4512
+ msgstr ""
4513
+
4514
+ #: ../includes/Elements/Post_Timeline.php:129
4515
+ msgid "Timeline Bullet Border Color"
4516
+ msgstr ""
4517
+
4518
+ #: ../includes/Elements/Post_Timeline.php:142
4519
+ msgid "Timeline Vertical Line Color"
4520
+ msgstr ""
4521
+
4522
+ #: ../includes/Elements/Post_Timeline.php:155
4523
+ msgid "Border & Arrow Color"
4524
+ msgstr ""
4525
+
4526
+ #: ../includes/Elements/Post_Timeline.php:170
4527
+ msgid "Date Background Color"
4528
+ msgstr ""
4529
+
4530
+ #: ../includes/Elements/Post_Timeline.php:184
4531
+ msgid "Date Text Color"
4532
+ msgstr ""
4533
+
4534
+ #: ../includes/Elements/Post_Timeline.php:315
4535
+ msgid "excerpt Typography"
4536
+ msgstr ""
4537
+
4538
+ #: ../includes/Elements/Pricing_Table.php:26, ../includes/templates/admin/elements.php:330
4539
+ msgid "Pricing Table"
4540
+ msgstr ""
4541
+
4542
+ #: ../includes/Elements/Pricing_Table.php:74
4543
+ msgid "Pricing Style 2"
4544
+ msgstr ""
4545
+
4546
+ #: ../includes/Elements/Pricing_Table.php:75
4547
+ msgid "Pricing Style 3 (Pro)"
4548
+ msgstr ""
4549
+
4550
+ #: ../includes/Elements/Pricing_Table.php:76
4551
+ msgid "Pricing Style 4 (Pro)"
4552
+ msgstr ""
4553
+
4554
+ #: ../includes/Elements/Pricing_Table.php:77
4555
+ msgid "Pricing Style 5 (Pro)"
4556
+ msgstr ""
4557
+
4558
+ #: ../includes/Elements/Pricing_Table.php:86
4559
+ msgid "Pricing Style"
4560
+ msgstr ""
4561
+
4562
+ #: ../includes/Elements/Pricing_Table.php:113, ../includes/Elements/Pricing_Table.php:292, ../includes/Extensions/Table_of_Content.php:425
4563
+ msgid "List Icon"
4564
+ msgstr ""
4565
+
4566
+ #: ../includes/Elements/Pricing_Table.php:126
4567
+ msgid "Startup"
4568
+ msgstr ""
4569
+
4570
+ #: ../includes/Elements/Pricing_Table.php:140
4571
+ msgid "A tagline here."
4572
+ msgstr ""
4573
+
4574
+ #: ../includes/Elements/Pricing_Table.php:186
4575
+ msgid "99"
4576
+ msgstr ""
4577
+
4578
+ #: ../includes/Elements/Pricing_Table.php:192
4579
+ msgid "On Sale?"
4580
+ msgstr ""
4581
+
4582
+ #: ../includes/Elements/Pricing_Table.php:203, ../includes/Elements/Pricing_Table.php:1027
4583
+ msgid "Sale Price"
4584
+ msgstr ""
4585
+
4586
+ #: ../includes/Elements/Pricing_Table.php:206
4587
+ msgid "89"
4588
+ msgstr ""
4589
+
4590
+ #: ../includes/Elements/Pricing_Table.php:215
4591
+ msgid "Price Currency"
4592
+ msgstr ""
4593
+
4594
+ #: ../includes/Elements/Pricing_Table.php:218
4595
+ msgid "$"
4596
+ msgstr ""
4597
+
4598
+ #: ../includes/Elements/Pricing_Table.php:225
4599
+ msgid "Currency Placement"
4600
+ msgstr ""
4601
+
4602
+ #: ../includes/Elements/Pricing_Table.php:241
4603
+ msgid "Price Period (per)"
4604
+ msgstr ""
4605
+
4606
+ #: ../includes/Elements/Pricing_Table.php:244
4607
+ msgid "month"
4608
+ msgstr ""
4609
+
4610
+ #: ../includes/Elements/Pricing_Table.php:251
4611
+ msgid "Period Separator"
4612
+ msgstr ""
4613
+
4614
+ #: ../includes/Elements/Pricing_Table.php:254
4615
+ msgid "/"
4616
+ msgstr ""
4617
+
4618
+ #: ../includes/Elements/Pricing_Table.php:266
4619
+ msgid "Feature"
4620
+ msgstr ""
4621
+
4622
+ #: ../includes/Elements/Pricing_Table.php:288
4623
+ msgid "Pricing table list item"
4624
+ msgstr ""
4625
+
4626
+ #: ../includes/Elements/Pricing_Table.php:302
4627
+ msgid "Item Active?"
4628
+ msgstr ""
4629
+
4630
+ #: ../includes/Elements/Pricing_Table.php:315
4631
+ msgid "Enable Tooltip?"
4632
+ msgstr ""
4633
+
4634
+ #: ../includes/Elements/Pricing_Table.php:322
4635
+ msgid "Tooltip Content"
4636
+ msgstr ""
4637
+
4638
+ #: ../includes/Elements/Pricing_Table.php:324
4639
+ msgid "I'm a awesome tooltip!!"
4640
+ msgstr ""
4641
+
4642
+ #: ../includes/Elements/Pricing_Table.php:331
4643
+ msgid "Tooltip Side"
4644
+ msgstr ""
4645
+
4646
+ #: ../includes/Elements/Pricing_Table.php:358
4647
+ msgid "Tooltip Trigger"
4648
+ msgstr ""
4649
+
4650
+ #: ../includes/Elements/Pricing_Table.php:362
4651
+ msgid "Click"
4652
+ msgstr ""
4653
+
4654
+ #: ../includes/Elements/Pricing_Table.php:371
4655
+ msgid "Tooltip Animation"
4656
+ msgstr ""
4657
+
4658
+ #: ../includes/Elements/Pricing_Table.php:375
4659
+ msgid "Grow"
4660
+ msgstr ""
4661
+
4662
+ #: ../includes/Elements/Pricing_Table.php:378
4663
+ msgid "Fall"
4664
+ msgstr ""
4665
+
4666
+ #: ../includes/Elements/Pricing_Table.php:387, ../includes/Elements/Progress_Bar.php:214
4667
+ msgid "Animation Duration"
4668
+ msgstr ""
4669
+
4670
+ #: ../includes/Elements/Pricing_Table.php:396, ../includes/Elements/Pricing_Table.php:1457
4671
+ msgid "Tooltip Arrow"
4672
+ msgstr ""
4673
+
4674
+ #: ../includes/Elements/Pricing_Table.php:406
4675
+ msgid "Tooltip Theme"
4676
+ msgstr ""
4677
+
4678
+ #: ../includes/Elements/Pricing_Table.php:410
4679
+ msgid "Noir"
4680
+ msgstr ""
4681
+
4682
+ #: ../includes/Elements/Pricing_Table.php:412
4683
+ msgid "Punk"
4684
+ msgstr ""
4685
+
4686
+ #: ../includes/Elements/Pricing_Table.php:414
4687
+ msgid "Borderless"
4688
+ msgstr ""
4689
+
4690
+ #: ../includes/Elements/Pricing_Table.php:441
4691
+ msgid "Display Button"
4692
+ msgstr ""
4693
+
4694
+ #: ../includes/Elements/Pricing_Table.php:509
4695
+ msgid "Choose Plan"
4696
+ msgstr ""
4697
+
4698
+ #: ../includes/Elements/Pricing_Table.php:519, ../includes/Elements/Tooltip.php:238
4699
+ msgid "Button Link"
4700
+ msgstr ""
4701
+
4702
+ #: ../includes/Elements/Pricing_Table.php:541, ../includes/Elements/Pricing_Table.php:1200
4703
+ msgid "Ribbon"
4704
+ msgstr ""
4705
+
4706
+ #: ../includes/Elements/Pricing_Table.php:548
4707
+ msgid "Featured?"
4708
+ msgstr ""
4709
+
4710
+ #: ../includes/Elements/Pricing_Table.php:558
4711
+ msgid "Ribbon Style"
4712
+ msgstr ""
4713
+
4714
+ #: ../includes/Elements/Pricing_Table.php:563
4715
+ msgid "Style 2"
4716
+ msgstr ""
4717
+
4718
+ #: ../includes/Elements/Pricing_Table.php:564
4719
+ msgid "Style 3"
4720
+ msgstr ""
4721
+
4722
+ #: ../includes/Elements/Pricing_Table.php:565
4723
+ msgid "Style 4"
4724
+ msgstr ""
4725
+
4726
+ #: ../includes/Elements/Pricing_Table.php:579
4727
+ msgid "Featured Tag Text"
4728
+ msgstr ""
4729
+
4730
+ #: ../includes/Elements/Pricing_Table.php:582
4731
+ msgid "Featured"
4732
+ msgstr ""
4733
+
4734
+ #: ../includes/Elements/Pricing_Table.php:599
4735
+ msgid "Ribbon Alignment"
4736
+ msgstr ""
4737
+
4738
+ #: ../includes/Elements/Pricing_Table.php:656
4739
+ msgid "Pricing Table Style"
4740
+ msgstr ""
4741
+
4742
+ #: ../includes/Elements/Pricing_Table.php:840, ../includes/Elements/Pricing_Table.php:1208
4743
+ msgid "Line Color"
4744
+ msgstr ""
4745
+
4746
+ #: ../includes/Elements/Pricing_Table.php:863
4747
+ msgid "Subtitle Style"
4748
+ msgstr ""
4749
+
4750
+ #: ../includes/Elements/Pricing_Table.php:949
4751
+ msgid "Pricing"
4752
+ msgstr ""
4753
+
4754
+ #: ../includes/Elements/Pricing_Table.php:957
4755
+ msgid "Original Price"
4756
+ msgstr ""
4757
+
4758
+ #: ../includes/Elements/Pricing_Table.php:986
4759
+ msgid "Original Price Currency"
4760
+ msgstr ""
4761
+
4762
+ #: ../includes/Elements/Pricing_Table.php:1056
4763
+ msgid "Sale Price Currency"
4764
+ msgstr ""
4765
+
4766
+ #: ../includes/Elements/Pricing_Table.php:1096
4767
+ msgid "Pricing Period"
4768
+ msgstr ""
4769
+
4770
+ #: ../includes/Elements/Pricing_Table.php:1152
4771
+ msgid "Disable item color"
4772
+ msgstr ""
4773
+
4774
+ #: ../includes/Elements/Pricing_Table.php:1227, ../includes/Extensions/Table_of_Content.php:691
4775
+ msgid "Line Height"
4776
+ msgstr ""
4777
+
4778
+ #: ../includes/Elements/Pricing_Table.php:1363, ../includes/Elements/Tooltip.php:23, ../includes/templates/admin/elements.php:45
4779
+ msgid "Tooltip"
4780
+ msgstr ""
4781
+
4782
+ #: ../includes/Elements/Pricing_Table.php:1383
4783
+ msgid "Arrow Background"
4784
+ msgstr ""
4785
+
4786
+ #: ../includes/Elements/Pricing_Table.php:1416
4787
+ msgid "Refresh your browser after saving the padding value for see changes."
4788
+ msgstr ""
4789
+
4790
+ #: ../includes/Elements/Pricing_Table.php:1466, ../includes/Elements/Tooltip.php:648
4791
+ msgid "Arrow Size"
4792
+ msgstr ""
4793
+
4794
+ #: ../includes/Elements/Pricing_Table.php:1511
4795
+ msgid "Icon Settings"
4796
+ msgstr ""
4797
+
4798
+ #: ../includes/Elements/Pricing_Table.php:1522
4799
+ msgid "Show Background"
4800
+ msgstr ""
4801
+
4802
+ #: ../includes/Elements/Pricing_Table.php:1555
4803
+ msgid "Background Hover Color"
4804
+ msgstr ""
4805
+
4806
+ #: ../includes/Elements/Pricing_Table.php:1591
4807
+ msgid "Icon Area Width"
4808
+ msgstr ""
4809
+
4810
+ #: ../includes/Elements/Pricing_Table.php:1616
4811
+ msgid "Icon Area Height"
4812
+ msgstr ""
4813
+
4814
+ #: ../includes/Elements/Pricing_Table.php:1647, ../includes/Elements/Team_Member.php:777
4815
+ msgid "Icon Hover Color"
4816
+ msgstr ""
4817
+
4818
+ #: ../includes/Elements/Pricing_Table.php:1771
4819
+ msgid "Button Gradient Background"
4820
+ msgstr ""
4821
+
4822
+ #: ../includes/Elements/Product_Grid.php:23, ../includes/templates/admin/elements.php:486
4823
+ msgid "Product Grid"
4824
+ msgstr ""
4825
+
4826
+ #: ../includes/Elements/Product_Grid.php:74
4827
+ msgid "Product Settings"
4828
+ msgstr ""
4829
+
4830
+ #: ../includes/Elements/Product_Grid.php:83, ../includes/Elements/Woo_Checkout.php:91
4831
+ msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
4832
+ msgstr ""
4833
+
4834
+ #: ../includes/Elements/Product_Grid.php:92
4835
+ msgid "Filter By"
4836
+ msgstr ""
4837
+
4838
+ #: ../includes/Elements/Product_Grid.php:96
4839
+ msgid "Recent Products"
4840
+ msgstr ""
4841
+
4842
+ #: ../includes/Elements/Product_Grid.php:97
4843
+ msgid "Featured Products"
4844
+ msgstr ""
4845
+
4846
+ #: ../includes/Elements/Product_Grid.php:98
4847
+ msgid "Best Selling Products"
4848
+ msgstr ""
4849
+
4850
+ #: ../includes/Elements/Product_Grid.php:99
4851
+ msgid "Sale Products"
4852
+ msgstr ""
4853
+
4854
+ #: ../includes/Elements/Product_Grid.php:100
4855
+ msgid "Top Rated Products"
4856
+ msgstr ""
4857
+
4858
+ #: ../includes/Elements/Product_Grid.php:127
4859
+ msgid "Products Count"
4860
+ msgstr ""
4861
+
4862
+ #: ../includes/Elements/Product_Grid.php:139, ../includes/Traits/Helper.php:164, ../includes/Traits/Helper.php:268, ../includes/Traits/Helper.php:2838, ../includes/Traits/Helper.php:2877, ../includes/Traits/Helper.php:2940, ../includes/Traits/Helper.php:2978
4863
+ msgid "Offset"
4864
+ msgstr ""
4865
+
4866
+ #: ../includes/Elements/Product_Grid.php:148
4867
+ msgid "Product Categories"
4868
+ msgstr ""
4869
+
4870
+ #: ../includes/Elements/Product_Grid.php:159, ../includes/Elements/Team_Member.php:261
4871
+ msgid "Style Preset"
4872
+ msgstr ""
4873
+
4874
+ #: ../includes/Elements/Product_Grid.php:164, ../includes/Elements/Team_Member.php:250
4875
+ msgid "Simple Style"
4876
+ msgstr ""
4877
+
4878
+ #: ../includes/Elements/Product_Grid.php:165
4879
+ msgid "Reveal Style"
4880
+ msgstr ""
4881
+
4882
+ #: ../includes/Elements/Product_Grid.php:166, ../includes/Elements/Team_Member.php:251
4883
+ msgid "Overlay Style"
4884
+ msgstr ""
4885
+
4886
+ #: ../includes/Elements/Product_Grid.php:174
4887
+ msgid "Show Product Rating?"
4888
+ msgstr ""
4889
+
4890
+ #: ../includes/Elements/Product_Grid.php:210, ../includes/Traits/Helper.php:485, ../includes/Traits/Helper.php:739
4891
+ msgid "Label Text"
4892
+ msgstr ""
4893
+
4894
+ #: ../includes/Elements/Product_Grid.php:225
4895
+ msgid "Products Styles"
4896
+ msgstr ""
4897
+
4898
+ #: ../includes/Elements/Product_Grid.php:233, ../includes/Elements/Team_Member.php:340
4899
+ msgid "Content Background Color"
4900
+ msgstr ""
4901
+
4902
+ #: ../includes/Elements/Product_Grid.php:294
4903
+ msgid "Product Title"
4904
+ msgstr ""
4905
+
4906
+ #: ../includes/Elements/Product_Grid.php:302
4907
+ msgid "Product Title Color"
4908
  msgstr ""
4909
 
4910
+ #: ../includes/Elements/Product_Grid.php:322
4911
+ msgid "Product Price"
4912
  msgstr ""
4913
 
4914
+ #: ../includes/Elements/Product_Grid.php:330
4915
+ msgid "Product Price Color"
4916
  msgstr ""
4917
 
4918
+ #: ../includes/Elements/Product_Grid.php:350
4919
+ msgid "Star Rating"
4920
  msgstr ""
4921
 
4922
+ #: ../includes/Elements/Product_Grid.php:358
4923
+ msgid "Rating Color"
 
4924
  msgstr ""
4925
 
4926
+ #: ../includes/Elements/Product_Grid.php:379
4927
+ msgid "Sale Badge"
4928
  msgstr ""
4929
 
4930
+ #: ../includes/Elements/Product_Grid.php:387
4931
+ msgid "Sale Badge Color"
 
 
 
4932
  msgstr ""
4933
 
4934
+ #: ../includes/Elements/Product_Grid.php:399
4935
+ msgid "Sale Badge Background"
4936
  msgstr ""
4937
 
4938
+ #: ../includes/Elements/Product_Grid.php:420
4939
+ msgid "Stock Out Badge"
4940
  msgstr ""
4941
 
4942
+ #: ../includes/Elements/Product_Grid.php:428
4943
+ msgid "Stock Out Badge Color"
4944
  msgstr ""
4945
 
4946
+ #: ../includes/Elements/Product_Grid.php:440
4947
+ msgid "Stock Out Badge Background"
4948
  msgstr ""
4949
 
4950
+ #: ../includes/Elements/Product_Grid.php:462
4951
+ msgid "Add to Cart Button Styles"
 
 
4952
  msgstr ""
4953
 
4954
+ #: ../includes/Elements/Product_Grid.php:474, ../includes/Elements/Product_Grid.php:525
4955
+ msgid "Button Color"
 
4956
  msgstr ""
4957
 
4958
+ #: ../includes/Elements/Product_Grid.php:488, ../includes/Elements/Product_Grid.php:539
4959
+ msgid "Button Background Color"
 
 
 
4960
  msgstr ""
4961
 
4962
+ #: ../includes/Elements/Progress_Bar.php:26, ../includes/Elements/Progress_Bar.php:122, ../includes/templates/admin/elements.php:229
4963
+ msgid "Progress Bar"
4964
  msgstr ""
4965
 
4966
+ #: ../includes/Elements/Progress_Bar.php:82
4967
+ msgid "Line"
4968
  msgstr ""
4969
 
4970
+ #: ../includes/Elements/Progress_Bar.php:83
4971
+ msgid "Line Rainbow (Pro)"
4972
  msgstr ""
4973
 
4974
+ #: ../includes/Elements/Progress_Bar.php:85
4975
+ msgid "Circle Fill (Pro)"
 
 
 
 
 
 
 
4976
  msgstr ""
4977
 
4978
+ #: ../includes/Elements/Progress_Bar.php:86
4979
+ msgid "Half Circle"
4980
  msgstr ""
4981
 
4982
+ #: ../includes/Elements/Progress_Bar.php:87
4983
+ msgid "Half Circle Fill (Pro)"
 
 
4984
  msgstr ""
4985
 
4986
+ #: ../includes/Elements/Progress_Bar.php:88
4987
+ msgid "Box (Pro)"
4988
  msgstr ""
4989
 
4990
+ #: ../includes/Elements/Progress_Bar.php:139
4991
+ msgid "div"
 
4992
  msgstr ""
4993
 
4994
+ #: ../includes/Elements/Progress_Bar.php:140
4995
+ msgid "span"
4996
  msgstr ""
4997
 
4998
+ #: ../includes/Elements/Progress_Bar.php:141
4999
+ msgid "p"
5000
  msgstr ""
5001
 
5002
+ #: ../includes/Elements/Progress_Bar.php:151
5003
+ msgid "Counter Value Type"
5004
  msgstr ""
5005
 
5006
+ #: ../includes/Elements/Progress_Bar.php:154
5007
+ msgid "Static"
5008
+ msgstr ""
5009
+
5010
+ #: ../includes/Elements/Progress_Bar.php:164, ../includes/Elements/Progress_Bar.php:187
5011
+ msgid "Counter Value"
5012
+ msgstr ""
5013
+
5014
+ #: ../includes/Elements/Progress_Bar.php:204
5015
+ msgid "Display Count"
5016
+ msgstr ""
5017
+
5018
+ #: ../includes/Elements/Progress_Bar.php:235
5019
+ msgid "Prefix Label"
5020
+ msgstr ""
5021
+
5022
+ #: ../includes/Elements/Progress_Bar.php:248
5023
+ msgid "Postfix Label"
5024
+ msgstr ""
5025
+
5026
+ #: ../includes/Elements/Progress_Bar.php:250
5027
+ msgid "Postfix"
5028
+ msgstr ""
5029
+
5030
+ #: ../includes/Elements/Progress_Bar.php:418
5031
+ msgid "Fill"
5032
+ msgstr ""
5033
+
5034
+ #: ../includes/Elements/Progress_Bar.php:474
5035
+ msgid "Show Stripe"
5036
+ msgstr ""
5037
+
5038
+ #: ../includes/Elements/Progress_Bar.php:488
5039
+ msgid "Stripe Animation"
5040
+ msgstr ""
5041
+
5042
+ #: ../includes/Elements/Progress_Bar.php:491
5043
+ msgid "Left To Right"
5044
+ msgstr ""
5045
+
5046
+ #: ../includes/Elements/Progress_Bar.php:492
5047
+ msgid "Right To Left"
5048
+ msgstr ""
5049
+
5050
+ #: ../includes/Elements/Progress_Bar.php:493
5051
+ msgid "Disabled"
5052
+ msgstr ""
5053
+
5054
+ #: ../includes/Elements/Progress_Bar.php:584
5055
+ msgid "Stroke Width"
5056
+ msgstr ""
5057
+
5058
+ #: ../includes/Elements/Progress_Bar.php:609
5059
+ msgid "Stroke Color"
5060
+ msgstr ""
5061
+
5062
+ #: ../includes/Elements/Progress_Bar.php:633, ../includes/Extensions/Reading_Progress.php:173
5063
+ msgid "Fill Color"
5064
+ msgstr ""
5065
+
5066
+ #: ../includes/Elements/Progress_Bar.php:697, ../includes/Traits/Elements.php:124, ../includes/templates/admin/elements.php:242
5067
+ msgid "Counter"
5068
+ msgstr ""
5069
+
5070
+ #: ../includes/Elements/Progress_Bar.php:706
5071
+ msgid "Counter Color"
5072
+ msgstr ""
5073
+
5074
+ #: ../includes/Elements/Progress_Bar.php:720
5075
+ msgid "Prefix/Postfix"
5076
+ msgstr ""
5077
+
5078
+ #: ../includes/Elements/Progress_Bar.php:732
5079
+ msgid "Prefix/Postfix Color"
5080
+ msgstr ""
5081
+
5082
+ #: ../includes/Elements/Progress_Bar.php:790, ../includes/Elements/Progress_Bar.php:821, ../includes/Elements/Progress_Bar.php:867
5083
+ msgid "%"
5084
+ msgstr ""
5085
+
5086
+ #: ../includes/Elements/Sticky_Video.php:24, ../includes/templates/admin/elements.php:111
5087
+ msgid "Sticky Video"
5088
+ msgstr ""
5089
+
5090
+ #: ../includes/Elements/Sticky_Video.php:89
5091
+ msgid "Sticky Options"
5092
+ msgstr ""
5093
+
5094
+ #: ../includes/Elements/Sticky_Video.php:97
5095
+ msgid "Sticky"
5096
+ msgstr ""
5097
+
5098
+ #: ../includes/Elements/Sticky_Video.php:113, ../includes/Extensions/Reading_Progress.php:111, ../includes/Extensions/Table_of_Content.php:407, ../includes/Traits/Helper.php:2794
5099
+ msgid "Position"
5100
+ msgstr ""
5101
+
5102
+ #: ../includes/Elements/Sticky_Video.php:116
5103
+ msgid "Top Left"
5104
+ msgstr ""
5105
+
5106
+ #: ../includes/Elements/Sticky_Video.php:117
5107
+ msgid "Top Right"
5108
+ msgstr ""
5109
+
5110
+ #: ../includes/Elements/Sticky_Video.php:118
5111
+ msgid "Bottom Left"
5112
+ msgstr ""
5113
+
5114
+ #: ../includes/Elements/Sticky_Video.php:119
5115
+ msgid "Bottom Right"
5116
+ msgstr ""
5117
+
5118
+ #: ../includes/Elements/Sticky_Video.php:133
5119
+ msgid "Video"
5120
+ msgstr ""
5121
+
5122
+ #: ../includes/Elements/Sticky_Video.php:145
5123
+ msgid "YouTube"
5124
+ msgstr ""
5125
+
5126
+ #: ../includes/Elements/Sticky_Video.php:146
5127
+ msgid "Vimeo"
5128
+ msgstr ""
5129
+
5130
+ #: ../includes/Elements/Sticky_Video.php:147
5131
+ msgid "Self Hosted"
5132
+ msgstr ""
5133
+
5134
+ #: ../includes/Elements/Sticky_Video.php:157
5135
+ msgid "Enter your URL (YouTube)"
5136
+ msgstr ""
5137
+
5138
+ #: ../includes/Elements/Sticky_Video.php:171
5139
+ msgid "Enter your URL (Vimeo)"
5140
+ msgstr ""
5141
+
5142
+ #: ../includes/Elements/Sticky_Video.php:185
5143
+ msgid "Enter your URL (Dailymotion)"
5144
+ msgstr ""
5145
+
5146
+ #: ../includes/Elements/Sticky_Video.php:196
5147
+ msgid "External URL"
5148
+ msgstr ""
5149
+
5150
+ #: ../includes/Elements/Sticky_Video.php:229
5151
+ msgid "Enter your URL"
5152
+ msgstr ""
5153
+
5154
+ #: ../includes/Elements/Sticky_Video.php:242
5155
+ msgid "Choose File"
5156
+ msgstr ""
5157
+
5158
+ #: ../includes/Elements/Sticky_Video.php:255
5159
+ msgid "Start Time"
5160
+ msgstr ""
5161
+
5162
+ #: ../includes/Elements/Sticky_Video.php:271
5163
+ msgid "End Time"
5164
+ msgstr ""
5165
+
5166
+ #: ../includes/Elements/Sticky_Video.php:287
5167
+ msgid "Video Options"
5168
+ msgstr ""
5169
+
5170
+ #: ../includes/Elements/Sticky_Video.php:307
5171
+ msgid "Mute"
5172
+ msgstr ""
5173
+
5174
+ #: ../includes/Elements/Sticky_Video.php:318
5175
+ msgid "Loop"
5176
+ msgstr ""
5177
+
5178
+ #: ../includes/Elements/Sticky_Video.php:329
5179
+ msgid "Show Bar"
5180
+ msgstr ""
5181
+
5182
+ #: ../includes/Elements/Sticky_Video.php:344, ../includes/Elements/Sticky_Video.php:352
5183
+ msgid "Image Overlay"
5184
+ msgstr ""
5185
+
5186
+ #: ../includes/Elements/Sticky_Video.php:365
5187
+ msgid "Choose Image"
5188
+ msgstr ""
5189
+
5190
+ #: ../includes/Elements/Sticky_Video.php:390
5191
+ msgid "Play Icon"
5192
+ msgstr ""
5193
+
5194
+ #: ../includes/Elements/Sticky_Video.php:404
5195
+ msgid "Choose Icon"
5196
+ msgstr ""
5197
+
5198
+ #: ../includes/Elements/Sticky_Video.php:422
5199
+ msgid "Sticky Video Interface"
5200
+ msgstr ""
5201
+
5202
+ #: ../includes/Elements/Sticky_Video.php:472
5203
+ msgid "Scroll Height To Display Sticky (%)"
5204
+ msgstr ""
5205
+
5206
+ #: ../includes/Elements/Sticky_Video.php:494, ../includes/Extensions/Table_of_Content.php:721
5207
+ msgid "Close Button Color"
5208
+ msgstr ""
5209
+
5210
+ #: ../includes/Elements/Sticky_Video.php:510
5211
+ msgid "Player"
5212
+ msgstr ""
5213
+
5214
+ #: ../includes/Elements/Sticky_Video.php:600
5215
+ msgid "Interface"
5216
+ msgstr ""
5217
+
5218
+ #: ../includes/Elements/Sticky_Video.php:608
5219
+ msgid "Interface Color"
5220
+ msgstr ""
5221
+
5222
+ #: ../includes/Elements/Sticky_Video.php:624
5223
+ msgid "Play Button Size"
5224
+ msgstr ""
5225
+
5226
+ #: ../includes/Elements/Sticky_Video.php:649, ../includes/Extensions/Table_of_Content.php:813
5227
+ msgid "Bar"
5228
+ msgstr ""
5229
+
5230
+ #: ../includes/Elements/Sticky_Video.php:657
5231
+ msgid "Bar Padding"
5232
+ msgstr ""
5233
+
5234
+ #: ../includes/Elements/Sticky_Video.php:680
5235
+ msgid "Bar Margin"
5236
+ msgstr ""
5237
+
5238
+ #: ../includes/Elements/Team_Member.php:24, ../includes/templates/admin/elements.php:15
5239
+ msgid "Team Member"
5240
+ msgstr ""
5241
+
5242
+ #: ../includes/Elements/Team_Member.php:64
5243
+ msgid "Team Member Image"
5244
+ msgstr ""
5245
+
5246
+ #: ../includes/Elements/Team_Member.php:72
5247
+ msgid "Team Member Avatar"
5248
+ msgstr ""
5249
+
5250
+ #: ../includes/Elements/Team_Member.php:98
5251
+ msgid "Team Member Content"
5252
+ msgstr ""
5253
+
5254
+ #: ../includes/Elements/Team_Member.php:106, ../includes/Traits/Helper.php:280
5255
+ msgid "Name"
5256
+ msgstr ""
5257
+
5258
+ #: ../includes/Elements/Team_Member.php:108, ../includes/Elements/Testimonial.php:136
5259
+ msgid "John Doe"
5260
+ msgstr ""
5261
+
5262
+ #: ../includes/Elements/Team_Member.php:115
5263
+ msgid "Job Position"
5264
+ msgstr ""
5265
+
5266
+ #: ../includes/Elements/Team_Member.php:117
5267
+ msgid "Software Engineer"
5268
+ msgstr ""
5269
+
5270
+ #: ../includes/Elements/Team_Member.php:126
5271
+ msgid "Add team member description here. Remove the text if not necessary."
5272
+ msgstr ""
5273
+
5274
+ #: ../includes/Elements/Team_Member.php:137
5275
+ msgid "Social Profiles"
5276
+ msgstr ""
5277
+
5278
+ #: ../includes/Elements/Team_Member.php:144
5279
+ msgid "Display Social Profiles?"
5280
+ msgstr ""
5281
+
5282
+ #: ../includes/Elements/Team_Member.php:204
5283
+ msgid "Place URL here"
5284
+ msgstr ""
5285
+
5286
+ #: ../includes/Elements/Team_Member.php:244
5287
+ msgid "Team Member Styles"
5288
  msgstr ""
5289
 
5290
+ #: ../includes/Elements/Team_Member.php:252
5291
+ msgid "Centered Style"
 
5292
  msgstr ""
5293
 
5294
+ #: ../includes/Elements/Team_Member.php:253
5295
+ msgid "Circle Style"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5296
  msgstr ""
5297
 
5298
+ #: ../includes/Elements/Team_Member.php:254
5299
+ msgid "Social on Bottom"
5300
  msgstr ""
5301
 
5302
+ #: ../includes/Elements/Team_Member.php:255
5303
+ msgid "Social on Right"
5304
  msgstr ""
5305
 
5306
+ #: ../includes/Elements/Team_Member.php:289
5307
+ msgid "Content Card"
5308
  msgstr ""
5309
 
5310
+ #: ../includes/Elements/Team_Member.php:352
5311
+ msgid "Set Alignment"
5312
  msgstr ""
5313
 
5314
+ #: ../includes/Elements/Team_Member.php:416
5315
+ msgid "Team Member Image Style"
5316
  msgstr ""
5317
 
5318
+ #: ../includes/Elements/Team_Member.php:424, ../includes/Elements/Testimonial.php:322
5319
+ msgid "Image Width"
5320
  msgstr ""
5321
 
5322
+ #: ../includes/Elements/Team_Member.php:490, ../includes/Elements/Testimonial.php:404
5323
+ msgid "Rounded Avatar?"
5324
  msgstr ""
5325
 
5326
+ #: ../includes/Elements/Team_Member.php:526
5327
+ msgid "Member Name"
 
5328
  msgstr ""
5329
 
5330
+ #: ../includes/Elements/Team_Member.php:534
5331
+ msgid "Member Name Color"
5332
  msgstr ""
5333
 
5334
+ #: ../includes/Elements/Team_Member.php:554
5335
+ msgid "Member Job Position"
5336
  msgstr ""
5337
 
5338
+ #: ../includes/Elements/Team_Member.php:563
5339
+ msgid "Job Position Color"
 
 
 
 
 
5340
  msgstr ""
5341
 
5342
+ #: ../includes/Elements/Team_Member.php:583
5343
+ msgid "Member Description"
5344
  msgstr ""
5345
 
5346
+ #: ../includes/Elements/Team_Member.php:592
5347
+ msgid "Description Color"
5348
  msgstr ""
5349
 
5350
+ #: ../includes/Elements/Team_Member.php:615
5351
+ msgid "Social Profiles Style"
5352
  msgstr ""
5353
 
5354
+ #: ../includes/Elements/Team_Member.php:647
5355
+ msgid "Social Profiles Margin"
5356
  msgstr ""
5357
 
5358
+ #: ../includes/Elements/Team_Member.php:660
5359
+ msgid "Social Icon Padding"
 
 
5360
  msgstr ""
5361
 
5362
+ #: ../includes/Elements/Team_Member.php:672
5363
+ msgid "Social Icon Distance"
5364
  msgstr ""
5365
 
5366
+ #: ../includes/Elements/Team_Member.php:789
5367
+ msgid "Hover Background"
 
5368
  msgstr ""
5369
 
5370
+ #: ../includes/Elements/Team_Member.php:816
5371
+ msgid "Hover Border Color"
5372
  msgstr ""
5373
 
5374
+ #: ../includes/Elements/Testimonial.php:23, ../includes/templates/admin/elements.php:21
5375
+ msgid "Testimonial"
5376
  msgstr ""
5377
 
5378
+ #: ../includes/Elements/Testimonial.php:81
5379
+ msgid "Testimonial Image"
5380
  msgstr ""
5381
 
5382
+ #: ../includes/Elements/Testimonial.php:88
5383
+ msgid "Display Avatar?"
5384
  msgstr ""
5385
 
5386
+ #: ../includes/Elements/Testimonial.php:97
5387
+ msgid "Testimonial Avatar"
5388
  msgstr ""
5389
 
5390
+ #: ../includes/Elements/Testimonial.php:127
5391
+ msgid "Testimonial Content"
5392
  msgstr ""
5393
 
5394
+ #: ../includes/Elements/Testimonial.php:134, ../includes/Elements/Testimonial.php:440
5395
+ msgid "User Name"
5396
  msgstr ""
5397
 
5398
+ #: ../includes/Elements/Testimonial.php:144, ../includes/Elements/Testimonial.php:480
5399
+ msgid "Company Name"
 
 
 
 
5400
  msgstr ""
5401
 
5402
+ #: ../includes/Elements/Testimonial.php:146
5403
+ msgid "Codetic"
 
 
 
 
5404
  msgstr ""
5405
 
5406
+ #: ../includes/Elements/Testimonial.php:154
5407
+ msgid "Testimonial Description"
 
 
5408
  msgstr ""
5409
 
5410
+ #: ../includes/Elements/Testimonial.php:156
5411
+ msgid "Add testimonial description here. Edit and place your own text."
5412
  msgstr ""
5413
 
5414
+ #: ../includes/Elements/Testimonial.php:163
5415
+ msgid "Description Height"
5416
  msgstr ""
5417
 
5418
+ #: ../includes/Elements/Testimonial.php:180
5419
+ msgid "Display Rating?"
5420
  msgstr ""
5421
 
5422
+ #: ../includes/Elements/Testimonial.php:190
5423
+ msgid "Rating Number"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5424
  msgstr ""
5425
 
5426
+ #: ../includes/Elements/Testimonial.php:240
5427
+ msgid "Testimonial Styles"
5428
  msgstr ""
5429
 
5430
+ #: ../includes/Elements/Testimonial.php:254
5431
+ msgid "Content | Icon/Image | Bio"
 
 
 
5432
  msgstr ""
5433
 
5434
+ #: ../includes/Elements/Testimonial.php:255
5435
+ msgid "Icon/Image | Content"
5436
  msgstr ""
5437
 
5438
+ #: ../includes/Elements/Testimonial.php:256
5439
+ msgid "Content | Icon/Image"
5440
  msgstr ""
5441
 
5442
+ #: ../includes/Elements/Testimonial.php:257
5443
+ msgid "Content Top | Icon Title Inline"
5444
  msgstr ""
5445
 
5446
+ #: ../includes/Elements/Testimonial.php:258
5447
+ msgid "Content Bottom | Icon Title Inline"
5448
  msgstr ""
5449
 
5450
+ #: ../includes/Elements/Testimonial.php:266
5451
+ msgid "Layout Alignment"
 
5452
  msgstr ""
5453
 
5454
+ #: ../includes/Elements/Testimonial.php:298
5455
+ msgid "Display User & Company Block?"
5456
  msgstr ""
5457
 
5458
+ #: ../includes/Elements/Testimonial.php:311
5459
+ msgid "Testimonial Image Style"
5460
  msgstr ""
5461
 
5462
+ #: ../includes/Elements/Testimonial.php:348
5463
+ msgid "Image Max Width"
5464
  msgstr ""
5465
 
5466
+ #: ../includes/Elements/Testimonial.php:432
5467
+ msgid "Color, Typography &amp; Spacing"
5468
  msgstr ""
5469
 
5470
+ #: ../includes/Elements/Testimonial.php:448
5471
+ msgid "User Name Color"
5472
  msgstr ""
5473
 
5474
+ #: ../includes/Elements/Testimonial.php:489
5475
+ msgid "Company Color"
5476
  msgstr ""
5477
 
5478
+ #: ../includes/Elements/Testimonial.php:521
5479
+ msgid "Testimonial Text"
5480
  msgstr ""
5481
 
5482
+ #: ../includes/Elements/Testimonial.php:530
5483
+ msgid "Testimonial Text Color"
5484
  msgstr ""
5485
 
5486
+ #: ../includes/Elements/Testimonial.php:571
5487
+ msgid "Distance Between Rating Item"
5488
  msgstr ""
5489
 
5490
+ #: ../includes/Elements/Testimonial.php:597
5491
+ msgid "Quotation Style"
5492
  msgstr ""
5493
 
5494
+ #: ../includes/Elements/Testimonial.php:605
5495
+ msgid "Quotation Mark Color"
5496
  msgstr ""
5497
 
5498
+ #: ../includes/Elements/Testimonial.php:625
5499
+ msgid "Quotation Postion From Top"
5500
  msgstr ""
5501
 
5502
+ #: ../includes/Elements/Testimonial.php:647
5503
+ msgid "Quotation Postion From Right"
5504
  msgstr ""
5505
 
5506
+ #: ../includes/Elements/Tooltip.php:76
5507
+ msgid "Text"
5508
  msgstr ""
5509
 
5510
+ #: ../includes/Elements/Tooltip.php:84, ../includes/Elements/Tooltip.php:130
5511
+ msgid "Shortcode"
5512
  msgstr ""
5513
 
5514
+ #: ../includes/Elements/Tooltip.php:97
5515
+ msgid "Hover Me!"
5516
  msgstr ""
5517
 
5518
+ #: ../includes/Elements/Tooltip.php:107
5519
+ msgid "Content Tag"
5520
  msgstr ""
5521
 
5522
+ #: ../includes/Elements/Tooltip.php:118
5523
+ msgid "DIV"
5524
  msgstr ""
5525
 
5526
+ #: ../includes/Elements/Tooltip.php:119
5527
+ msgid "SPAN"
5528
  msgstr ""
5529
 
5530
+ #: ../includes/Elements/Tooltip.php:133
5531
+ msgid "[shortcode-here]"
5532
  msgstr ""
5533
 
5534
+ #: ../includes/Elements/Tooltip.php:226
5535
+ msgid "Enable Link"
5536
  msgstr ""
5537
 
5538
+ #: ../includes/Elements/Tooltip.php:259
5539
+ msgid "Tooltip Settings"
5540
  msgstr ""
5541
 
5542
+ #: ../includes/Elements/Tooltip.php:268
5543
+ msgid "Tooltip content"
5544
  msgstr ""
5545
 
5546
+ #: ../includes/Elements/Tooltip.php:275
5547
+ msgid "Hover Direction"
5548
  msgstr ""
5549
 
5550
+ #: ../includes/Elements/Tooltip.php:290
5551
+ msgid "Hover Speed"
5552
  msgstr ""
5553
 
5554
+ #: ../includes/Elements/Tooltip.php:293
5555
+ msgid "300"
5556
  msgstr ""
5557
 
5558
+ #: ../includes/Elements/Tooltip.php:319
5559
+ msgid "Content Max Width"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5560
  msgstr ""
5561
 
5562
+ #: ../includes/Elements/Tooltip.php:533
5563
+ msgid "Tooltip Style"
 
 
 
 
 
5564
  msgstr ""
5565
 
5566
+ #: ../includes/Elements/Tooltip.php:540
5567
+ msgid "Tooltip Width"
5568
  msgstr ""
5569
 
5570
+ #: ../includes/Elements/Tooltip.php:565
5571
+ msgid "Tooltip Max Width"
5572
  msgstr ""
5573
 
5574
+ #: ../includes/Elements/Tooltip.php:674
5575
+ msgid "Arrow Color"
 
 
 
 
 
 
 
 
5576
  msgstr ""
5577
 
5578
+ #: ../includes/Elements/Twitter_Feed.php:26, ../includes/templates/admin/elements.php:420
5579
+ msgid "Twitter Feed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5580
  msgstr ""
5581
 
5582
+ #: ../includes/Elements/Twitter_Feed.php:80
5583
+ msgid "Account Settings"
5584
  msgstr ""
5585
 
5586
+ #: ../includes/Elements/Twitter_Feed.php:87
5587
+ msgid "Account Name"
5588
  msgstr ""
5589
 
5590
+ #: ../includes/Elements/Twitter_Feed.php:91
5591
+ msgid "Use @ sign with your account name."
5592
  msgstr ""
5593
 
5594
+ #: ../includes/Elements/Twitter_Feed.php:99
5595
+ msgid "Hashtag Name"
5596
  msgstr ""
5597
 
5598
+ #: ../includes/Elements/Twitter_Feed.php:102
5599
+ msgid "Remove # sign from your hashtag name."
5600
  msgstr ""
5601
 
5602
+ #: ../includes/Elements/Twitter_Feed.php:110
5603
+ msgid "Consumer Key"
5604
  msgstr ""
5605
 
5606
+ #: ../includes/Elements/Twitter_Feed.php:121
5607
+ msgid "Consumer Secret"
5608
  msgstr ""
5609
 
5610
+ #: ../includes/Elements/Twitter_Feed.php:141
5611
+ msgid "Content Layout"
5612
  msgstr ""
5613
 
5614
+ #: ../includes/Elements/Twitter_Feed.php:154
5615
+ msgid "Column Grid"
5616
  msgstr ""
5617
 
5618
+ #: ../includes/Elements/Twitter_Feed.php:171
5619
+ msgid "Content Length"
 
 
5620
  msgstr ""
5621
 
5622
+ #: ../includes/Elements/Twitter_Feed.php:183
5623
+ msgid "Column spacing"
5624
  msgstr ""
5625
 
5626
+ #: ../includes/Elements/Twitter_Feed.php:200
5627
+ msgid "Post Limit"
5628
  msgstr ""
5629
 
5630
+ #: ../includes/Elements/Twitter_Feed.php:210
5631
+ msgid "Show Media Elements"
5632
  msgstr ""
5633
 
5634
+ #: ../includes/Elements/Twitter_Feed.php:224
5635
+ msgid "Card Settings"
5636
  msgstr ""
5637
 
5638
+ #: ../includes/Elements/Twitter_Feed.php:231, ../includes/Traits/Helper.php:867
5639
+ msgid "Show Avatar"
 
 
5640
  msgstr ""
5641
 
5642
+ #: ../includes/Elements/Twitter_Feed.php:243
5643
+ msgid "Avatar Style"
5644
  msgstr ""
5645
 
5646
+ #: ../includes/Elements/Twitter_Feed.php:260, ../includes/Traits/Helper.php:898
5647
+ msgid "Show Date"
5648
  msgstr ""
5649
 
5650
+ #: ../includes/Elements/Twitter_Feed.php:272, ../includes/Traits/Helper.php:724
5651
+ msgid "Show Read More"
5652
  msgstr ""
5653
 
5654
+ #: ../includes/Elements/Twitter_Feed.php:330
5655
+ msgid "Card Style"
5656
  msgstr ""
5657
 
5658
+ #: ../includes/Elements/Twitter_Feed.php:469
5659
+ msgid "Link Style"
5660
  msgstr ""
5661
 
5662
+ #: ../includes/Elements/TypeForm.php:25, ../includes/Elements/TypeForm.php:126, ../includes/Elements/TypeForm.php:132, ../includes/templates/admin/elements.php:396
5663
+ msgid "Typeform"
5664
  msgstr ""
5665
 
5666
+ #: ../includes/Elements/TypeForm.php:142
5667
+ msgid "Hide Header"
5668
  msgstr ""
5669
 
5670
+ #: ../includes/Elements/TypeForm.php:151
5671
+ msgid "Hide Footer"
 
5672
  msgstr ""
5673
 
5674
+ #: ../includes/Elements/TypeForm.php:241
5675
+ msgid "Form Height"
5676
  msgstr ""
5677
 
5678
+ #: ../includes/Elements/TypeForm.php:267
5679
+ msgid "Opacity"
5680
  msgstr ""
5681
 
5682
+ #: ../includes/Elements/WeForms.php:28
5683
+ msgid "weForm"
5684
  msgstr ""
5685
 
5686
+ #: ../includes/Elements/WeForms.php:93, ../includes/Traits/Helper.php:1694
5687
+ msgid "Select weForm"
5688
  msgstr ""
5689
 
5690
+ #: ../includes/Elements/WeForms.php:94
5691
+ msgid "Please save and refresh the page after selecting the form"
5692
  msgstr ""
5693
 
5694
+ #: ../includes/Elements/WeForms.php:76
5695
+ msgid "<strong>WeForms</strong> is not installed/activated on your site. Please install and activate <strong>WeForms</strong> first."
5696
  msgstr ""
5697
 
5698
+ #: ../includes/Elements/WeForms.php:135
5699
+ msgid "Form Container Styles"
5700
  msgstr ""
5701
 
5702
+ #: ../includes/Elements/WeForms.php:282
5703
+ msgid "Form Fields Styles"
 
 
5704
  msgstr ""
5705
 
5706
+ #: ../includes/Elements/WeForms.php:290
5707
+ msgid "Input Field Background"
5708
  msgstr ""
5709
 
5710
+ #: ../includes/Elements/WeForms.php:356
5711
+ msgid "Fields Padding"
5712
  msgstr ""
5713
 
5714
+ #: ../includes/Elements/WeForms.php:422
5715
+ msgid "Focus State Style"
5716
  msgstr ""
5717
 
5718
+ #: ../includes/Elements/WeForms.php:463
5719
+ msgid "Color & Typography"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5720
  msgstr ""
5721
 
5722
+ #: ../includes/Elements/WeForms.php:482
5723
+ msgid "Field Font Color"
5724
  msgstr ""
5725
 
5726
+ #: ../includes/Elements/WeForms.php:499
5727
+ msgid "Placeholder Font Color"
5728
  msgstr ""
5729
 
5730
+ #: ../includes/Elements/WeForms.php:513
5731
+ msgid "Label Typography"
 
 
5732
  msgstr ""
5733
 
5734
+ #: ../includes/Elements/WeForms.php:530
5735
+ msgid "Input Fields Typography"
5736
  msgstr ""
5737
 
5738
+ #: ../includes/Elements/WeForms.php:554
5739
+ msgid "Submit Button Styles"
5740
  msgstr ""
5741
 
5742
+ #: ../includes/Elements/WeForms.php:562
5743
+ msgid "Button Width"
5744
  msgstr ""
5745
 
5746
+ #: ../includes/Elements/Woocommerce_Review.php:18
5747
+ msgid "WooCommerce Review"
5748
  msgstr ""
5749
 
5750
+ #: ../includes/Elements/Woocommerce_Review.php:60
5751
+ msgid "<strong>ReviewX</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=reviewx&tab=search&type=term\" target=\"_blank\">ReviewX</a> first."
5752
  msgstr ""
5753
 
5754
+ #: ../includes/Elements/Woo_Checkout.php:49, ../includes/templates/admin/elements.php:499
5755
+ msgid "Woo Checkout"
5756
  msgstr ""
5757
 
5758
+ #: ../includes/Elements/Woo_Checkout.php:147, ../includes/Elements/Woo_Checkout.php:341
5759
+ msgid "Order Details"
5760
  msgstr ""
5761
 
5762
+ #: ../includes/Elements/Woo_Checkout.php:155
5763
+ msgid "Change Labels"
5764
  msgstr ""
5765
 
5766
+ #: ../includes/Elements/Woo_Checkout.php:164
5767
+ msgid "Product Text"
 
 
 
 
 
 
5768
  msgstr ""
5769
 
5770
+ #: ../includes/Elements/Woo_Checkout.php:166
5771
+ msgid "Product"
5772
  msgstr ""
5773
 
5774
+ #: ../includes/Elements/Woo_Checkout.php:175
5775
+ msgid "Quantity Text"
5776
  msgstr ""
5777
 
5778
+ #: ../includes/Elements/Woo_Checkout.php:177
5779
+ msgid "Quantity"
5780
  msgstr ""
5781
 
5782
+ #: ../includes/Elements/Woo_Checkout.php:186
5783
+ msgid "Price Text"
5784
  msgstr ""
5785
 
5786
+ #: ../includes/Elements/Woo_Checkout.php:199, ../includes/Elements/Woo_Checkout.php:797
5787
+ msgid "Shop Link"
5788
  msgstr ""
5789
 
5790
+ #: ../includes/Elements/Woo_Checkout.php:208
5791
+ msgid "Link Text"
 
5792
  msgstr ""
5793
 
5794
+ #: ../includes/Elements/Woo_Checkout.php:210
5795
+ msgid "Continue Shopping"
5796
  msgstr ""
5797
 
5798
+ #: ../includes/Elements/Woo_Checkout.php:227, ../includes/Elements/Woo_Checkout.php:1166
5799
+ msgid "Coupon"
5800
  msgstr ""
5801
 
5802
+ #: ../includes/Elements/Woo_Checkout.php:289
5803
+ msgid "Section Title"
5804
  msgstr ""
5805
 
5806
+ #: ../includes/Elements/Woo_Checkout.php:314
5807
+ msgid "Bottom Gap"
5808
  msgstr ""
5809
 
5810
+ #: ../includes/Elements/Woo_Checkout.php:397
5811
+ msgid "Table Head"
5812
  msgstr ""
5813
 
5814
+ #: ../includes/Elements/Woo_Checkout.php:418
5815
+ msgid "Header Color"
5816
  msgstr ""
5817
 
5818
+ #: ../includes/Elements/Woo_Checkout.php:452
5819
+ msgid "Table Body"
5820
  msgstr ""
5821
 
5822
+ #: ../includes/Elements/Woo_Checkout.php:545
5823
+ msgid "Row Gap"
5824
  msgstr ""
5825
 
5826
+ #: ../includes/Elements/Woo_Checkout.php:566
5827
+ msgid "Table Footer"
5828
  msgstr ""
5829
 
5830
+ #: ../includes/Elements/Woo_Checkout.php:761, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:477
5831
+ msgid "Total"
5832
  msgstr ""
5833
 
5834
+ #: ../includes/Elements/Woo_Checkout.php:925, ../includes/Elements/Woo_Checkout.php:1211
5835
+ msgid "Links Color"
5836
  msgstr ""
5837
 
5838
+ #: ../includes/Elements/Woo_Checkout.php:936, ../includes/Elements/Woo_Checkout.php:1222
5839
+ msgid "Links Hover Color"
5840
  msgstr ""
5841
 
5842
+ #: ../includes/Elements/Woo_Checkout.php:986
5843
+ msgid "Form Label"
5844
  msgstr ""
5845
 
5846
+ #: ../includes/Elements/Woo_Checkout.php:1465
5847
+ msgid "Notices"
5848
  msgstr ""
5849
 
5850
+ #: ../includes/Elements/Woo_Checkout.php:1490
5851
+ msgid "Info"
5852
  msgstr ""
5853
 
5854
+ #: ../includes/Elements/Woo_Checkout.php:1533
5855
+ msgid "Error"
5856
  msgstr ""
5857
 
5858
+ #: ../includes/Elements/Woo_Checkout.php:1680
5859
+ msgid "Customer Details"
5860
  msgstr ""
5861
 
5862
+ #: ../includes/Elements/Woo_Checkout.php:1732
5863
+ msgid "Required (*)"
5864
  msgstr ""
5865
 
5866
+ #: ../includes/Elements/Woo_Checkout.php:1847
5867
+ msgid "Bottom Spacing (PX)"
5868
  msgstr ""
5869
 
5870
+ #: ../includes/Elements/Woo_Checkout.php:1874
5871
+ msgid "Payment"
5872
  msgstr ""
5873
 
5874
+ #: ../includes/Elements/Woo_Checkout.php:1981
5875
+ msgid "Selected"
5876
  msgstr ""
5877
 
5878
+ #: ../includes/Elements/Woo_Checkout.php:2003
5879
+ msgid "Methods Info"
5880
  msgstr ""
5881
 
5882
+ #: ../includes/Elements/Woo_Checkout.php:2036
5883
+ msgid "Privacy Policy"
5884
  msgstr ""
5885
 
5886
+ #: ../includes/Elements/WpForms.php:24, ../includes/Elements/WpForms.php:81, ../includes/templates/admin/elements.php:378
5887
+ msgid "WPForms"
5888
  msgstr ""
5889
 
5890
+ #: ../includes/Elements/WpForms.php:71
5891
+ msgid "<strong>WPForms</strong> is not installed/activated on your site. Please install and activate <strong>WPForms</strong> first."
5892
  msgstr ""
5893
 
5894
+ #: ../includes/Extensions/Custom_JS.php:22, ../includes/templates/admin/extensions.php:55
5895
+ msgid "Custom JS"
5896
  msgstr ""
5897
 
5898
+ #: ../includes/Extensions/Custom_JS.php:31
5899
+ msgid "Add your own custom JS here"
5900
  msgstr ""
5901
 
5902
+ #: ../includes/Extensions/Custom_JS.php:48
5903
+ msgid "You may use both jQuery selector e.g. $(‘.selector’) or Vanilla JS selector e.g. document.queryselector(‘.selector’)"
 
 
5904
  msgstr ""
5905
 
5906
+ #: ../includes/Extensions/Custom_JS.php:57
5907
+ msgid "For more information, <a href=\"https://essential-addons.com/elementor/docs/custom-js/\" target=\"_blank\">click here</a>"
5908
  msgstr ""
5909
 
5910
+ #: ../includes/Extensions/Post_Duplicator.php:33, ../includes/Extensions/Post_Duplicator.php:51
5911
+ msgid "EA Duplicator"
5912
  msgstr ""
5913
 
5914
+ #: ../includes/Extensions/Promotion.php:31
5915
+ msgid "Upgrade Essential Addons"
5916
  msgstr ""
5917
 
5918
+ #: ../includes/Extensions/Promotion.php:53
5919
+ msgid "Meet EA Parallax"
5920
  msgstr ""
5921
 
5922
+ #: ../includes/Extensions/Promotion.php:54
5923
+ msgid "Create stunning Parallax effects on your site and blow everyone away."
5924
  msgstr ""
5925
 
5926
+ #: ../includes/Extensions/Promotion.php:77
5927
+ msgid "Meet EA Particles"
5928
  msgstr ""
5929
 
5930
+ #: ../includes/Extensions/Promotion.php:78
5931
+ msgid "Create stunning Particles effects on your site and blow everyone away."
5932
  msgstr ""
5933
 
5934
+ #: ../includes/Extensions/Promotion.php:101
5935
+ msgid "Meet EA Content Protection"
5936
  msgstr ""
5937
 
5938
+ #: ../includes/Extensions/Promotion.php:102
5939
+ msgid "Put a restriction on any of your content and protect your privacy."
5940
  msgstr ""
5941
 
5942
+ #: ../includes/Extensions/Promotion.php:125
5943
+ msgid "Meet EA Advanced Tooltip"
5944
  msgstr ""
5945
 
5946
+ #: ../includes/Extensions/Promotion.php:126
5947
+ msgid "Highlight any Elementor widgets with a key message when they are hovered."
5948
  msgstr ""
5949
 
5950
+ #: ../includes/Extensions/Reading_Progress.php:31
5951
+ msgid "<i class=\"eaicon-logo\"></i> Reading Progress Bar"
5952
  msgstr ""
5953
 
5954
+ #: ../includes/Extensions/Reading_Progress.php:39
5955
+ msgid "Enable Reading Progress Bar"
5956
  msgstr ""
5957
 
5958
+ #: ../includes/Extensions/Reading_Progress.php:51
5959
+ msgid "Enabled Globally?"
5960
  msgstr ""
5961
 
5962
+ #: ../includes/Extensions/Reading_Progress.php:74
5963
+ msgid "Enable Reading Progress Bar Globally"
 
5964
  msgstr ""
5965
 
5966
+ #: ../includes/Extensions/Reading_Progress.php:75, ../includes/Extensions/Table_of_Content.php:76
5967
+ msgid "Enabling this option will effect on entire site."
5968
  msgstr ""
5969
 
5970
+ #: ../includes/Extensions/Reading_Progress.php:91, ../includes/Extensions/Table_of_Content.php:91
5971
+ msgid "Display On"
5972
  msgstr ""
5973
 
5974
+ #: ../includes/Extensions/Reading_Progress.php:95, ../includes/Extensions/Table_of_Content.php:95
5975
+ msgid "All Posts"
5976
  msgstr ""
5977
 
5978
+ #: ../includes/Extensions/Reading_Progress.php:96, ../includes/Extensions/Table_of_Content.php:96
5979
+ msgid "All Pages"
5980
  msgstr ""
5981
 
5982
+ #: ../includes/Extensions/Reading_Progress.php:97, ../includes/Extensions/Table_of_Content.php:97
5983
+ msgid "All Posts & Pages"
5984
  msgstr ""
5985
 
5986
+ #: ../includes/Extensions/Reading_Progress.php:189
5987
+ msgid "Animation Speed"
5988
  msgstr ""
5989
 
5990
+ #: ../includes/Extensions/Table_of_Content.php:34
5991
+ msgid "<i class=\"eaicon-logo\"></i> Table of Contents"
5992
  msgstr ""
5993
 
5994
+ #: ../includes/Extensions/Table_of_Content.php:42
5995
+ msgid "Enable Table of Contents"
5996
  msgstr ""
5997
 
5998
+ #: ../includes/Extensions/Table_of_Content.php:75
5999
+ msgid "Enable Table of Contents Globally"
 
6000
  msgstr ""
6001
 
6002
+ #: ../includes/Extensions/Table_of_Content.php:112, ../includes/templates/admin/extensions.php:43
6003
+ msgid "Table of Contents"
6004
  msgstr ""
6005
 
6006
+ #: ../includes/Extensions/Table_of_Content.php:124, ../includes/Traits/Helper.php:224
6007
+ msgid "Include"
6008
  msgstr ""
6009
 
6010
+ #: ../includes/Extensions/Table_of_Content.php:134
6011
+ msgid "Supported Heading Tag"
6012
  msgstr ""
6013
 
6014
+ #: ../includes/Extensions/Table_of_Content.php:163
6015
+ msgid "Content Selector"
6016
  msgstr ""
6017
 
6018
+ #: ../includes/Extensions/Table_of_Content.php:165
6019
+ msgid "Which content are searched for heading tag, Provide unique selector to replace default selector"
6020
  msgstr ""
6021
 
6022
+ #: ../includes/Extensions/Table_of_Content.php:177, ../includes/Traits/Helper.php:140, ../includes/Traits/Helper.php:236
6023
+ msgid "Exclude"
6024
  msgstr ""
6025
 
6026
+ #: ../includes/Extensions/Table_of_Content.php:187
6027
+ msgid "Exclude By Selector"
6028
  msgstr ""
6029
 
6030
+ #: ../includes/Extensions/Table_of_Content.php:189
6031
+ msgid "CSS selectors, in a comma-separated list"
6032
  msgstr ""
6033
 
6034
+ #: ../includes/Extensions/Table_of_Content.php:205
6035
+ msgid "Keep Sub Heading Collapsed"
6036
  msgstr ""
6037
 
6038
+ #: ../includes/Extensions/Table_of_Content.php:220
6039
+ msgid "Heading Text in URL"
 
6040
  msgstr ""
6041
 
6042
+ #: ../includes/Extensions/Table_of_Content.php:235
6043
+ msgid "Stop Word Wrap"
6044
  msgstr ""
6045
 
6046
+ #: ../includes/Extensions/Table_of_Content.php:250
6047
+ msgid "TOC Auto Collapse"
6048
  msgstr ""
6049
 
6050
+ #: ../includes/Extensions/Table_of_Content.php:265
6051
+ msgid "Hide TOC in mobile"
6052
  msgstr ""
6053
 
6054
+ #: ../includes/Extensions/Table_of_Content.php:280
6055
+ msgid "Sticky Scroll Effect"
6056
  msgstr ""
6057
 
6058
+ #: ../includes/Extensions/Table_of_Content.php:303
6059
+ msgid "Sticky Top Offset"
6060
  msgstr ""
6061
 
6062
+ #: ../includes/Extensions/Table_of_Content.php:329
6063
+ msgid "Z Index"
6064
  msgstr ""
6065
 
6066
+ #: ../includes/Extensions/Table_of_Content.php:356
6067
+ msgid "Need more information about TOC <strong><a href=\"https://essential-addons.com/elementor/docs/table-of-content/\" class=\"eael-btn\" target=\"_blank\">Visit documentation</a></strong>"
6068
  msgstr ""
6069
 
6070
+ #: ../includes/Extensions/Table_of_Content.php:370
6071
+ msgid "EA TOC"
6072
  msgstr ""
6073
 
6074
+ #: ../includes/Extensions/Table_of_Content.php:430, ../includes/Traits/Helper.php:542
6075
+ msgid "Bullet"
6076
  msgstr ""
6077
 
6078
+ #: ../includes/Extensions/Table_of_Content.php:442
6079
+ msgid "Bullet Size"
 
 
 
6080
  msgstr ""
6081
 
6082
+ #: ../includes/Extensions/Table_of_Content.php:468
6083
+ msgid "Top Position"
 
 
 
6084
  msgstr ""
6085
 
6086
+ #: ../includes/Extensions/Table_of_Content.php:552
6087
+ msgid "EA TOC Header"
 
 
 
6088
  msgstr ""
6089
 
6090
+ #: ../includes/Extensions/Table_of_Content.php:610
6091
+ msgid "Collapse"
6092
  msgstr ""
6093
 
6094
+ #: ../includes/Extensions/Table_of_Content.php:633
6095
+ msgid "Text Orientation"
6096
  msgstr ""
6097
 
6098
+ #: ../includes/Extensions/Table_of_Content.php:638
6099
+ msgid "Bottom to Top"
6100
  msgstr ""
6101
 
6102
+ #: ../includes/Extensions/Table_of_Content.php:646
6103
+ msgid "Close Button"
6104
  msgstr ""
6105
 
6106
+ #: ../includes/Extensions/Table_of_Content.php:762
6107
+ msgid "EA TOC Body"
6108
  msgstr ""
6109
 
6110
+ #: ../includes/Extensions/Table_of_Content.php:807
6111
+ msgid "Indicator Style"
6112
  msgstr ""
6113
 
6114
+ #: ../includes/Extensions/Table_of_Content.php:812
6115
+ msgid "Arrow"
6116
  msgstr ""
6117
 
6118
+ #: ../includes/Extensions/Table_of_Content.php:821
6119
+ msgid "Indicator Size"
6120
  msgstr ""
6121
 
6122
+ #: ../includes/Extensions/Table_of_Content.php:847
6123
+ msgid "Indicator Position"
6124
  msgstr ""
6125
 
6126
+ #: ../includes/Extensions/Table_of_Content.php:964
6127
+ msgid "Top Level Space"
6128
  msgstr ""
6129
 
6130
+ #: ../includes/Extensions/Table_of_Content.php:990
6131
+ msgid "Sub Item Space"
6132
  msgstr ""
6133
 
6134
+ #: ../includes/Extensions/Table_of_Content.php:1025
6135
+ msgid "Style"
6136
  msgstr ""
6137
 
6138
+ #: ../includes/Traits/Admin.php:33, ../includes/Traits/Admin.php:34
6139
+ msgid "Templates Cloud"
6140
  msgstr ""
6141
 
6142
+ #: ../includes/Traits/Admin.php:49
6143
+ msgid "Install Templately"
6144
  msgstr ""
6145
 
6146
+ #: ../includes/Traits/Admin.php:57
6147
+ msgid "Activate Templately"
6148
  msgstr ""
6149
 
6150
+ #: ../includes/Traits/Admin.php:71
6151
+ msgid "Explore 100+ Free Templates"
6152
  msgstr ""
6153
 
6154
+ #: ../includes/Traits/Admin.php:72
6155
+ msgid "From multipurpose themes to niche templates, you’ll always find something that catches your eye."
6156
  msgstr ""
6157
 
6158
+ #: ../includes/Traits/Admin.php:83
6159
+ msgid "Install Templately by Essential Addons to get access to the templates library and cloud."
 
6160
  msgstr ""
6161
 
6162
+ #: ../includes/Traits/Admin.php:152
6163
+ msgid "Login | Register Form Settings"
6164
  msgstr ""
6165
 
6166
+ #: ../includes/Traits/Admin.php:153
6167
+ msgid "To retrieve your API Keys, click here"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6168
  msgstr ""
6169
 
6170
+ #: ../includes/Traits/Admin.php:154
6171
+ msgid "Save"
6172
  msgstr ""
6173
 
6174
+ #: ../includes/Traits/Admin.php:155
6175
+ msgid "Cancel"
6176
  msgstr ""
6177
 
6178
+ #: ../includes/Traits/Admin.php:156
6179
+ msgid "Login | Register Form Settings Saved"
6180
  msgstr ""
6181
 
6182
+ #: ../includes/Traits/Admin.php:157
6183
+ msgid "Reload the page to see updated data"
6184
  msgstr ""
6185
 
6186
+ #: ../includes/Traits/Admin.php:158
6187
+ msgid "Oops..."
6188
  msgstr ""
6189
 
6190
+ #: ../includes/Traits/Admin.php:160
6191
+ msgid "reCAPTCHA v2"
6192
  msgstr ""
6193
 
6194
+ #: ../includes/Traits/Admin.php:161
6195
+ msgid "Site Key"
6196
  msgstr ""
6197
 
6198
+ #: ../includes/Traits/Admin.php:162
6199
+ msgid "Site Secret"
6200
  msgstr ""
6201
 
6202
+ #: ../includes/Traits/Admin.php:163
6203
+ msgid "Google Login"
6204
  msgstr ""
6205
 
6206
+ #: ../includes/Traits/Admin.php:164
6207
+ msgid "Google Client ID"
 
6208
  msgstr ""
6209
 
6210
+ #: ../includes/Traits/Admin.php:165
6211
+ msgid "Facebook Login"
6212
  msgstr ""
6213
 
6214
+ #: ../includes/Traits/Admin.php:166
6215
+ msgid "Facebook APP ID"
 
6216
  msgstr ""
6217
 
6218
+ #: ../includes/Traits/Admin.php:167
6219
+ msgid "Facebook APP Secret"
6220
  msgstr ""
6221
 
6222
+ #: ../includes/Traits/Admin.php:194
6223
+ msgid "Essential Addons Settings"
 
6224
  msgstr ""
6225
 
6226
+ #: ../includes/Traits/Admin.php:197, ../includes/templates/admin/elements.php:590, ../includes/templates/admin/extensions.php:106
6227
+ msgid "Save settings"
 
 
6228
  msgstr ""
6229
 
6230
+ #: ../includes/Traits/Admin.php:203
6231
+ msgid "Elements"
6232
  msgstr ""
6233
 
6234
+ #: ../includes/Traits/Admin.php:204
6235
+ msgid "Extensions"
 
6236
  msgstr ""
6237
 
6238
+ #: ../includes/Traits/Admin.php:205
6239
+ msgid "Tools"
6240
  msgstr ""
6241
 
6242
+ #: ../includes/Traits/Admin.php:207
6243
+ msgid "Go Premium"
6244
  msgstr ""
6245
 
6246
+ #: ../includes/Traits/Admin.php:258
6247
+ msgid "Login | Register Settings updated"
6248
  msgstr ""
6249
 
6250
+ #: ../includes/Traits/Admin.php:310
6251
+ msgid "Ok, you deserve it!"
6252
  msgstr ""
6253
 
6254
+ #: ../includes/Traits/Admin.php:315
6255
+ msgid "I already did"
6256
  msgstr ""
6257
 
6258
+ #: ../includes/Traits/Admin.php:323
6259
+ msgid "Maybe Later"
6260
  msgstr ""
6261
 
6262
+ #: ../includes/Traits/Admin.php:331
6263
+ msgid "I need help"
6264
  msgstr ""
6265
 
6266
+ #: ../includes/Traits/Admin.php:336
6267
+ msgid "Never show again"
6268
  msgstr ""
6269
 
6270
+ #: ../includes/Traits/Admin.php:348
6271
+ msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
6272
  msgstr ""
6273
 
6274
+ #: ../includes/Traits/Admin.php:362
6275
+ msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
6276
  msgstr ""
6277
 
6278
+ #: ../includes/Traits/Core.php:52
6279
+ msgid "Go Pro"
6280
  msgstr ""
6281
 
6282
+ #: ../includes/Traits/Core.php:67
6283
+ msgid "Docs & FAQs"
6284
  msgstr ""
6285
 
6286
+ #: ../includes/Traits/Core.php:70
6287
+ msgid "Video Tutorials"
6288
  msgstr ""
6289
 
6290
+ #: ../includes/Traits/Core.php:114
6291
+ msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be installed and activated. Please install Elementor to continue."
6292
  msgstr ""
6293
 
6294
+ #: ../includes/Traits/Core.php:115
6295
+ msgid "Install Elementor"
6296
  msgstr ""
6297
 
6298
+ #: ../includes/Traits/Core.php:108
6299
+ msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be active. Please activate Elementor to continue."
6300
  msgstr ""
6301
 
6302
+ #: ../includes/Traits/Core.php:110
6303
+ msgid "Activate Elementor"
 
 
6304
  msgstr ""
6305
 
6306
+ #: ../includes/Traits/Elements.php:112, ../includes/templates/admin/elements.php:76
6307
+ msgid "Advanced Menu"
6308
  msgstr ""
6309
 
6310
+ #: ../includes/Traits/Elements.php:118, ../includes/templates/admin/elements.php:186
6311
+ msgid "Content Timeline"
6312
  msgstr ""
6313
 
6314
+ #: ../includes/Traits/Elements.php:130, ../includes/templates/admin/elements.php:305
6315
+ msgid "Divider"
6316
  msgstr ""
6317
 
6318
+ #: ../includes/Traits/Elements.php:136, ../includes/templates/admin/elements.php:193
6319
+ msgid "Dynamic Gallery"
6320
  msgstr ""
6321
 
6322
+ #: ../includes/Traits/Elements.php:142, ../includes/templates/admin/elements.php:270
6323
+ msgid "Flip Carousel"
6324
  msgstr ""
6325
 
6326
+ #: ../includes/Traits/Elements.php:148
6327
+ msgid "Google Map"
6328
  msgstr ""
6329
 
6330
+ #: ../includes/Traits/Elements.php:154, ../includes/templates/admin/elements.php:263
6331
+ msgid "Image Comparison"
6332
  msgstr ""
6333
 
6334
+ #: ../includes/Traits/Elements.php:160, ../includes/templates/admin/elements.php:298
6335
+ msgid "Image Hotspots"
6336
  msgstr ""
6337
 
6338
+ #: ../includes/Traits/Elements.php:166, ../includes/templates/admin/elements.php:312
6339
+ msgid "Image Scroller"
6340
  msgstr ""
6341
 
6342
+ #: ../includes/Traits/Elements.php:172, ../includes/templates/admin/elements.php:433
6343
+ msgid "Instagram Feed"
6344
  msgstr ""
6345
 
6346
+ #: ../includes/Traits/Elements.php:178
6347
+ msgid "Interactive Card"
6348
  msgstr ""
6349
 
6350
+ #: ../includes/Traits/Elements.php:184, ../includes/templates/admin/elements.php:235
6351
+ msgid "Interactive Promo"
6352
  msgstr ""
6353
 
6354
+ #: ../includes/Traits/Elements.php:190, ../includes/templates/admin/elements.php:451
6355
+ msgid "LearnDash Course List"
 
 
 
6356
  msgstr ""
6357
 
6358
+ #: ../includes/Traits/Elements.php:196, ../includes/templates/admin/elements.php:249
6359
+ msgid "Lightbox & Modal"
6360
  msgstr ""
6361
 
6362
+ #: ../includes/Traits/Elements.php:202, ../includes/templates/admin/elements.php:277
6363
+ msgid "Logo Carousel"
6364
  msgstr ""
6365
 
6366
+ #: ../includes/Traits/Elements.php:208, ../includes/templates/admin/elements.php:402
6367
+ msgid "Mailchimp"
6368
  msgstr ""
6369
 
6370
+ #: ../includes/Traits/Elements.php:214, ../includes/templates/admin/elements.php:69
6371
+ msgid "Offcanvas"
6372
  msgstr ""
6373
 
6374
+ #: ../includes/Traits/Elements.php:220, ../includes/templates/admin/elements.php:291
6375
+ msgid "One Page Navigation"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6376
  msgstr ""
6377
 
6378
+ #: ../includes/Traits/Elements.php:226, ../includes/templates/admin/elements.php:165
6379
+ msgid "Post Block"
6380
  msgstr ""
6381
 
6382
+ #: ../includes/Traits/Elements.php:232, ../includes/templates/admin/elements.php:172
6383
+ msgid "Post Carousel"
6384
  msgstr ""
6385
 
6386
+ #: ../includes/Traits/Elements.php:238, ../includes/templates/admin/elements.php:179
6387
+ msgid "Smart Post List"
6388
  msgstr ""
6389
 
6390
+ #: ../includes/Traits/Elements.php:244
6391
+ msgid "Price Menu"
6392
  msgstr ""
6393
 
6394
+ #: ../includes/Traits/Elements.php:250, ../includes/templates/admin/elements.php:256
6395
+ msgid "Protected Content"
6396
  msgstr ""
6397
 
6398
+ #: ../includes/Traits/Elements.php:256, ../includes/templates/admin/elements.php:97
6399
+ msgid "Static Product"
6400
  msgstr ""
6401
 
6402
+ #: ../includes/Traits/Elements.php:262, ../includes/templates/admin/elements.php:104
6403
+ msgid "Team Member Carousel"
6404
  msgstr ""
6405
 
6406
+ #: ../includes/Traits/Elements.php:268, ../includes/templates/admin/elements.php:90
6407
+ msgid "Testimonial Slider"
6408
  msgstr ""
6409
 
6410
+ #: ../includes/Traits/Elements.php:280, ../includes/templates/admin/elements.php:426
6411
+ msgid "Twitter Feed Carousel"
6412
  msgstr ""
6413
 
6414
+ #: ../includes/Traits/Elements.php:286, ../includes/templates/admin/elements.php:492
6415
+ msgid "Woo Product Collections"
 
6416
  msgstr ""
6417
 
6418
+ #: ../includes/Traits/Helper.php:46
6419
+ msgid "Manual Selection"
6420
  msgstr ""
6421
 
6422
+ #: ../includes/Traits/Helper.php:73, ../includes/Traits/Helper.php:207
6423
+ msgid "Query"
6424
  msgstr ""
6425
 
6426
+ #: ../includes/Traits/Helper.php:63, ../includes/Traits/Helper.php:53
6427
+ msgid "Dynamic Content Settings"
6428
  msgstr ""
6429
 
6430
+ #: ../includes/Traits/Helper.php:91
6431
+ msgid "Search & Select"
6432
  msgstr ""
6433
 
6434
+ #: ../includes/Traits/Helper.php:104
6435
+ msgid "Author"
6436
  msgstr ""
6437
 
6438
+ #: ../includes/Traits/Helper.php:155
6439
+ msgid "Posts Per Page"
6440
  msgstr ""
6441
 
6442
+ #: ../includes/Traits/Helper.php:173, ../includes/Traits/Helper.php:277, ../includes/Traits/Helper.php:328
6443
+ msgid "Order By"
6444
  msgstr ""
6445
 
6446
+ #: ../includes/Traits/Helper.php:184, ../includes/Traits/Helper.php:295, ../includes/Traits/Helper.php:338
6447
+ msgid "Order"
6448
  msgstr ""
6449
 
6450
+ #: ../includes/Traits/Helper.php:215
6451
+ msgid "Category Grid"
6452
  msgstr ""
6453
 
6454
+ #: ../includes/Traits/Helper.php:258
6455
+ msgid "Box Per Page"
6456
  msgstr ""
6457
 
6458
+ #: ../includes/Traits/Helper.php:249
6459
+ msgid "Grid Per Page"
6460
  msgstr ""
6461
 
6462
+ #: ../includes/Traits/Helper.php:281
6463
+ msgid "Slug"
6464
  msgstr ""
6465
 
6466
+ #: ../includes/Traits/Helper.php:282
6467
+ msgid "Term Group"
6468
  msgstr ""
6469
 
6470
+ #: ../includes/Traits/Helper.php:283
6471
+ msgid "Term ID"
6472
  msgstr ""
6473
 
6474
+ #: ../includes/Traits/Helper.php:284
6475
+ msgid "ID"
6476
  msgstr ""
6477
 
6478
+ #: ../includes/Traits/Helper.php:286
6479
+ msgid "Parent"
6480
  msgstr ""
6481
 
6482
+ #: ../includes/Traits/Helper.php:310
6483
+ msgid "Grid List Posts"
6484
  msgstr ""
6485
 
6486
+ #: ../includes/Traits/Helper.php:319
6487
+ msgid "Post Per Page"
 
 
 
 
 
 
 
 
 
 
6488
  msgstr ""
6489
 
6490
+ #: ../includes/Traits/Helper.php:351
6491
+ msgid "Enable Nested Subcategory"
 
6492
  msgstr ""
6493
 
6494
+ #: ../includes/Traits/Helper.php:418
6495
+ msgid "Post Block Style Preset"
6496
  msgstr ""
6497
 
6498
+ #: ../includes/Traits/Helper.php:455
6499
+ msgid "Date Position"
6500
  msgstr ""
6501
 
6502
+ #: ../includes/Traits/Helper.php:459
6503
+ msgid "Inside"
6504
  msgstr ""
6505
 
6506
+ #: ../includes/Traits/Helper.php:460
6507
+ msgid "Outside"
6508
  msgstr ""
6509
 
6510
+ #: ../includes/Traits/Helper.php:502
6511
+ msgid "Show Image"
6512
  msgstr ""
6513
 
6514
+ #: ../includes/Traits/Helper.php:530
6515
+ msgid "Show Circle Image / Icon"
6516
  msgstr ""
6517
 
6518
+ #: ../includes/Traits/Helper.php:556
6519
+ msgid "Icon Image"
6520
  msgstr ""
6521
 
6522
+ #: ../includes/Traits/Helper.php:569
6523
+ msgid "Icon Image Size"
6524
  msgstr ""
6525
 
6526
+ #: ../includes/Traits/Helper.php:646
6527
+ msgid "Title Length"
6528
  msgstr ""
6529
 
6530
+ #: ../includes/Traits/Helper.php:658
6531
+ msgid "Show excerpt"
6532
  msgstr ""
6533
 
6534
+ #: ../includes/Traits/Helper.php:698, ../includes/Traits/Helper.php:671
6535
+ msgid "Excerpt Words"
 
 
6536
  msgstr ""
6537
 
6538
+ #: ../includes/Traits/Helper.php:710, ../includes/Traits/Helper.php:684
6539
+ msgid "Expanison Indicator"
6540
  msgstr ""
6541
 
6542
+ #: ../includes/Traits/Helper.php:713, ../includes/Traits/Helper.php:687
6543
+ msgid "..."
6544
  msgstr ""
6545
 
6546
+ #: ../includes/Traits/Helper.php:758
6547
+ msgid "Show Read More Button"
6548
  msgstr ""
6549
 
6550
+ #: ../includes/Traits/Helper.php:788
6551
+ msgid "Show Post Terms"
 
6552
  msgstr ""
6553
 
6554
+ #: ../includes/Traits/Helper.php:802
6555
+ msgid "Show Terms From"
6556
  msgstr ""
6557
 
6558
+ #: ../includes/Traits/Helper.php:805
6559
+ msgid "Category"
6560
  msgstr ""
6561
 
6562
+ #: ../includes/Traits/Helper.php:806
6563
+ msgid "Tags"
6564
  msgstr ""
6565
 
6566
+ #: ../includes/Traits/Helper.php:818
6567
+ msgid "Max Terms to Show"
6568
  msgstr ""
6569
 
6570
+ #: ../includes/Traits/Helper.php:839
6571
+ msgid "Show Meta"
 
 
 
 
 
 
 
 
 
 
6572
  msgstr ""
6573
 
6574
+ #: ../includes/Traits/Helper.php:855
6575
+ msgid "Entry Header"
6576
  msgstr ""
6577
 
6578
+ #: ../includes/Traits/Helper.php:856
6579
+ msgid "Entry Footer"
6580
  msgstr ""
6581
 
6582
+ #: ../includes/Traits/Helper.php:883
6583
+ msgid "Show Author Name"
6584
  msgstr ""
6585
 
6586
+ #: ../includes/Traits/Helper.php:1001
6587
+ msgid "Read More Button Style"
6588
  msgstr ""
6589
 
6590
+ #: ../includes/Traits/Helper.php:1168
6591
+ msgid "Load More Button Style"
 
 
 
6592
  msgstr ""
6593
 
6594
+ #: ../includes/Traits/Helper.php:1640
6595
+ msgid "Select a Contact Form"
6596
  msgstr ""
6597
 
6598
+ #: ../includes/Traits/Helper.php:1646, ../includes/Traits/Helper.php:1672, ../includes/Traits/Helper.php:1699, ../includes/Traits/Helper.php:1726, ../includes/Traits/Helper.php:1751, ../includes/Traits/Helper.php:1781, ../includes/Traits/Helper.php:1807
6599
+ msgid "Create a Form First"
6600
  msgstr ""
6601
 
6602
+ #: ../includes/Traits/Helper.php:1666
6603
+ msgid "Select Gravity Form"
6604
  msgstr ""
6605
 
6606
+ #: ../includes/Traits/Helper.php:1719
6607
+ msgid "Select Ninja Form"
6608
  msgstr ""
6609
 
6610
+ #: ../includes/Traits/Helper.php:1745
6611
+ msgid "Select Caldera Form"
6612
  msgstr ""
6613
 
6614
+ #: ../includes/Traits/Helper.php:1775
6615
+ msgid "Select a WPForm"
6616
  msgstr ""
6617
 
6618
+ #: ../includes/Traits/Helper.php:1802
6619
+ msgid "Select a Fluent Form"
6620
  msgstr ""
6621
 
6622
+ #: ../includes/Traits/Helper.php:2121
6623
+ msgid "%s ago"
6624
  msgstr ""
6625
 
6626
+ #: ../includes/Traits/Helper.php:2632
6627
+ msgid "EventON (Pro) "
6628
  msgstr ""
6629
 
6630
+ #: ../includes/Traits/Helper.php:2630
6631
+ msgid "EventON"
6632
  msgstr ""
6633
 
6634
+ #: ../includes/Traits/Helper.php:2672
6635
+ 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."
6636
  msgstr ""
6637
 
6638
+ #: ../includes/Traits/Helper.php:2659
6639
+ msgid "Table ID"
6640
  msgstr ""
6641
 
6642
+ #: ../includes/Traits/Helper.php:2799
6643
+ msgid "Absolute"
6644
  msgstr ""
6645
 
6646
+ #: ../includes/Traits/Helper.php:2813
6647
+ msgid "Horizontal Orientation"
6648
  msgstr ""
6649
 
6650
+ #: ../includes/Traits/Helper.php:2916
6651
+ msgid "Vertical Orientation"
 
6652
  msgstr ""
6653
 
6654
+ #: ../includes/Traits/Helper.php:3025
6655
+ msgid "Essential Addons for Elementor"
6656
  msgstr ""
6657
 
6658
+ #: ../includes/Traits/Login_Registration.php:56, ../includes/Traits/Login_Registration.php:198
6659
+ msgid "Page ID is missing"
6660
  msgstr ""
6661
 
6662
+ #: ../includes/Traits/Login_Registration.php:63, ../includes/Traits/Login_Registration.php:203
6663
+ msgid "Widget ID is missing"
6664
  msgstr ""
6665
 
6666
+ #: ../includes/Traits/Login_Registration.php:76, ../includes/Traits/Login_Registration.php:182
6667
+ msgid "Insecure form submitted without security token"
6668
  msgstr ""
6669
 
6670
+ #: ../includes/Traits/Login_Registration.php:86, ../includes/Traits/Login_Registration.php:189
6671
+ msgid "Security token did not match"
6672
  msgstr ""
6673
 
6674
+ #: ../includes/Traits/Login_Registration.php:158
6675
+ msgid "You are logged in successfully"
6676
  msgstr ""
6677
 
6678
+ #: ../includes/Traits/Login_Registration.php:139
6679
+ msgid "Invalid Username. Please check your username or try again with your email."
6680
  msgstr ""
6681
 
6682
+ #: ../includes/Traits/Login_Registration.php:137
6683
+ msgid "Invalid Email. Please check your email or try again with your username."
6684
  msgstr ""
6685
 
6686
+ #: ../includes/Traits/Login_Registration.php:212
6687
+ msgid "You are already logged in."
6688
  msgstr ""
6689
 
6690
+ #: ../includes/Traits/Login_Registration.php:230
6691
+ msgid "Registration is closed on this site"
 
 
 
6692
  msgstr ""
6693
 
6694
+ #: ../includes/Traits/Login_Registration.php:265
6695
+ msgid "The username already registered."
6696
  msgstr ""
6697
 
6698
+ #: ../includes/Traits/Login_Registration.php:263
6699
+ msgid "Invalid username provided."
6700
  msgstr ""
6701
 
6702
+ #: ../includes/Traits/Login_Registration.php:287
6703
+ msgid "The confirmed password did not match."
 
6704
  msgstr ""
6705
 
6706
+ #: ../includes/Traits/Login_Registration.php:379
6707
+ msgid "Sorry, something went wrong. User could not be registered."
6708
  msgstr ""
6709
 
6710
+ #: ../includes/Traits/Login_Registration.php:422
6711
+ msgid "Your registration completed successfully."
6712
  msgstr ""
6713
 
6714
+ #: ../includes/Classes/WPML/Eael_WPML.php:29
6715
+ msgid "Creative Button: Text"
6716
  msgstr ""
6717
 
6718
+ #: ../includes/Classes/WPML/Eael_WPML.php:34
6719
+ msgid "Creative Button: Secondary Text"
6720
  msgstr ""
6721
 
6722
+ #: ../includes/Classes/WPML/Eael_WPML.php:39
6723
+ msgid "Creative Button: Link"
6724
  msgstr ""
6725
 
6726
+ #: ../includes/Classes/WPML/Eael_WPML.php:51
6727
+ msgid "Call to Action: Title"
6728
  msgstr ""
6729
 
6730
+ #: ../includes/Classes/WPML/Eael_WPML.php:56
6731
+ msgid "Call to Action: Content"
6732
  msgstr ""
6733
 
6734
+ #: ../includes/Classes/WPML/Eael_WPML.php:61
6735
+ msgid "Call to Action: Button Text"
 
 
6736
  msgstr ""
6737
 
6738
+ #: ../includes/Classes/WPML/Eael_WPML.php:78
6739
+ msgid "Dual Color Heading: Title ( First Part )"
6740
  msgstr ""
6741
 
6742
+ #: ../includes/Classes/WPML/Eael_WPML.php:83
6743
+ msgid "Dual Color Heading: Title ( Last Part )"
6744
  msgstr ""
6745
 
6746
+ #: ../includes/Classes/WPML/Eael_WPML.php:88
6747
+ msgid "Dual Color Heading: Sub Text"
6748
  msgstr ""
6749
 
6750
+ #: ../includes/Classes/WPML/Eael_WPML.php:100
6751
+ msgid "Fancy Text: Prefix Text"
6752
  msgstr ""
6753
 
6754
+ #: ../includes/Classes/WPML/Eael_WPML.php:105
6755
+ msgid "Fancy Text: Suffix Text"
6756
  msgstr ""
6757
 
6758
+ #: ../includes/Classes/WPML/Eael_WPML.php:174
6759
+ msgid "Infobox: Title"
6760
  msgstr ""
6761
 
6762
+ #: ../includes/Classes/WPML/Eael_WPML.php:190
6763
+ msgid "Post Grid: Load More Button"
6764
  msgstr ""
6765
 
6766
+ #: ../includes/Classes/WPML/Eael_WPML.php:195
6767
+ msgid "Post Grid: Read More Button"
6768
  msgstr ""
6769
 
6770
+ #: ../includes/Classes/WPML/Eael_WPML.php:206
6771
+ msgid "Post Timeline: Load More Button"
6772
  msgstr ""
6773
 
6774
+ #: ../includes/Classes/WPML/Eael_WPML.php:218
6775
+ msgid "Pricing Table: Title"
6776
  msgstr ""
6777
 
6778
+ #: ../includes/Classes/WPML/Eael_WPML.php:223
6779
+ msgid "Pricing Table: Sub Title"
6780
  msgstr ""
6781
 
6782
+ #: ../includes/Classes/WPML/Eael_WPML.php:228
6783
+ msgid "Pricing Table: Price"
6784
  msgstr ""
6785
 
6786
+ #: ../includes/Classes/WPML/Eael_WPML.php:233
6787
+ msgid "Pricing Table: Currency Placement"
6788
  msgstr ""
6789
 
6790
+ #: ../includes/Classes/WPML/Eael_WPML.php:238
6791
+ msgid "Pricing Table: Price Period (per)"
6792
  msgstr ""
6793
 
6794
+ #: ../includes/Classes/WPML/Eael_WPML.php:243, ../includes/Classes/WPML/Eael_WPML.php:248
6795
+ msgid "Pricing Table: Button Text"
6796
  msgstr ""
6797
 
6798
+ #: ../includes/Classes/WPML/Eael_WPML.php:253
6799
+ msgid "Pricing Table: Featured Tag Text"
6800
  msgstr ""
6801
 
6802
+ #: ../includes/Classes/WPML/Eael_WPML.php:264
6803
+ msgid "Progressbar: Title"
6804
  msgstr ""
6805
 
6806
+ #: ../includes/Classes/WPML/Eael_WPML.php:275
6807
+ msgid "Team Member: Name"
6808
  msgstr ""
6809
 
6810
+ #: ../includes/Classes/WPML/Eael_WPML.php:280
6811
+ msgid "Team Member: Job Position"
6812
  msgstr ""
6813
 
6814
+ #: ../includes/Classes/WPML/Eael_WPML.php:285
6815
+ msgid "Team Member: Description"
6816
  msgstr ""
6817
 
6818
+ #: ../includes/Classes/WPML/Eael_WPML.php:297
6819
+ msgid "Testimonial: User Name"
6820
  msgstr ""
6821
 
6822
+ #: ../includes/Classes/WPML/Eael_WPML.php:302
6823
+ msgid "Testimonial: Company Name"
6824
  msgstr ""
6825
 
6826
+ #: ../includes/Classes/WPML/Eael_WPML.php:307
6827
+ msgid "Testimonial: Testimonial Description"
6828
  msgstr ""
6829
 
6830
+ #: ../includes/Classes/WPML/Eael_WPML.php:319, ../includes/Classes/WPML/Eael_WPML.php:324
6831
+ msgid "Tooltip: Content"
6832
  msgstr ""
6833
 
6834
+ #: ../includes/Classes/WPML/Eael_WPML.php:337, ../includes/Classes/WPML/Widgets/Feature_List.php:49
6835
+ msgid "Feature List: Title"
6836
  msgstr ""
6837
 
6838
+ #: ../includes/Classes/WPML/Eael_WPML.php:342, ../includes/Classes/WPML/Widgets/Feature_List.php:52
6839
+ msgid "Feature List: Content"
6840
  msgstr ""
6841
 
6842
+ #: ../includes/Classes/WPML/Eael_WPML.php:353
6843
+ msgid "Caldera Form: Title"
6844
  msgstr ""
6845
 
6846
+ #: ../includes/Classes/WPML/Eael_WPML.php:358
6847
+ msgid "Caldera Form: Description"
6848
  msgstr ""
6849
 
6850
+ #: ../includes/Classes/WPML/Eael_WPML.php:369
6851
+ msgid "Contact Form-7: Title"
6852
  msgstr ""
6853
 
6854
+ #: ../includes/Classes/WPML/Eael_WPML.php:374
6855
+ msgid "Contact Form-7: Description"
6856
  msgstr ""
6857
 
6858
+ #: ../includes/Classes/WPML/Eael_WPML.php:385
6859
+ msgid "Gravity Form: Title"
6860
  msgstr ""
6861
 
6862
+ #: ../includes/Classes/WPML/Eael_WPML.php:390
6863
+ msgid "Gravity Form: Description"
6864
  msgstr ""
6865
 
6866
+ #: ../includes/Classes/WPML/Eael_WPML.php:401
6867
+ msgid "WPForms: Title"
 
 
6868
  msgstr ""
6869
 
6870
+ #: ../includes/Classes/WPML/Eael_WPML.php:406
6871
+ msgid "WPForms: Description"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6872
  msgstr ""
6873
 
6874
+ #: ../includes/Classes/WPML/Eael_WPML.php:417
6875
+ msgid "NinjaForm: Title"
6876
  msgstr ""
6877
 
6878
+ #: ../includes/Classes/WPML/Eael_WPML.php:422
6879
+ msgid "NinjaForm: Description"
 
 
 
6880
  msgstr ""
6881
 
6882
+ #: ../includes/Classes/WPML/Eael_WPML.php:438
6883
+ msgid "Adv Data Table: Search Placeholder"
6884
  msgstr ""
6885
 
6886
+ #: ../includes/Classes/WPML/Eael_WPML.php:449
6887
+ msgid "Formstack: Custom Title"
 
 
6888
  msgstr ""
6889
 
6890
+ #: ../includes/Classes/WPML/Eael_WPML.php:454
6891
+ msgid "Formstack: Custom Description"
 
 
 
6892
  msgstr ""
6893
 
6894
+ #: ../includes/Classes/WPML/Eael_WPML.php:465
6895
+ msgid "Fluent Form: Title"
6896
  msgstr ""
6897
 
6898
+ #: ../includes/Classes/WPML/Eael_WPML.php:470
6899
+ msgid "Fluent Form: Description"
 
 
6900
  msgstr ""
6901
 
6902
+ #: ../includes/Template/Betterdocs-Category-Box/Layout_2.php:3, ../includes/Template/Betterdocs-Category-Grid/Layout_2.php:3
6903
+ msgid "Layout 2"
6904
  msgstr ""
6905
 
6906
+ #: ../includes/Template/Content/Content_Ticker.php:25
6907
+ msgid "No content found!"
 
 
6908
  msgstr ""
6909
 
6910
+ #: ../includes/Template/Content/Product_Grid.php:45, ../includes/Template/Content/Product_Grid.php:29
6911
+ msgid "Sale!"
6912
  msgstr ""
6913
 
6914
+ #: ../includes/Template/Content/Product_Grid.php:29
6915
+ msgid "Stock "
6916
  msgstr ""
6917
 
6918
+ #: ../includes/Template/Content/Product_Grid.php:29
6919
+ msgid "Out"
6920
  msgstr ""
6921
 
6922
+ #: ../includes/templates/admin/elements.php:5
6923
+ msgid "Content Elements"
6924
  msgstr ""
6925
 
6926
+ #: ../includes/templates/admin/elements.php:124
6927
+ msgid "Dynamic Content Elements"
6928
  msgstr ""
6929
 
6930
+ #: ../includes/templates/admin/elements.php:158
6931
+ msgid "Advanced Google Map"
6932
  msgstr ""
6933
 
6934
+ #: ../includes/templates/admin/elements.php:201
6935
+ msgid "Creative Elements"
6936
  msgstr ""
6937
 
6938
+ #: ../includes/templates/admin/elements.php:205
6939
+ msgid "Count Down"
6940
  msgstr ""
6941
 
6942
+ #: ../includes/templates/admin/elements.php:284
6943
+ msgid "Interactive Cards"
6944
  msgstr ""
6945
 
6946
+ #: ../includes/templates/admin/elements.php:320
6947
+ msgid "Marketing Elements"
6948
  msgstr ""
6949
 
6950
+ #: ../includes/templates/admin/elements.php:324
6951
+ msgid "Call To Action"
6952
  msgstr ""
6953
 
6954
+ #: ../includes/templates/admin/elements.php:336
6955
+ msgid "Price menu"
6956
  msgstr ""
6957
 
6958
+ #: ../includes/templates/admin/elements.php:344
6959
+ msgid "Form Styler Elements"
6960
  msgstr ""
6961
 
6962
+ #: ../includes/templates/admin/elements.php:354
6963
+ msgid "weForms"
6964
  msgstr ""
6965
 
6966
+ #: ../includes/templates/admin/elements.php:360
6967
+ msgid "Ninja Form"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6968
  msgstr ""
6969
 
6970
+ #: ../includes/templates/admin/elements.php:366
6971
+ msgid "Gravity Form"
 
 
 
6972
  msgstr ""
6973
 
6974
+ #: ../includes/templates/admin/elements.php:384
6975
+ msgid "FluentForm"
6976
  msgstr ""
6977
 
6978
+ #: ../includes/templates/admin/elements.php:416
6979
+ msgid "Social Feed Elemens"
6980
  msgstr ""
6981
 
6982
+ #: ../includes/templates/admin/elements.php:447
6983
+ msgid "LearnDash Elements"
 
6984
  msgstr ""
6985
 
6986
+ #: ../includes/templates/admin/elements.php:459
6987
+ msgid "Documentation Elements"
6988
  msgstr ""
6989
 
6990
+ #: ../includes/templates/admin/elements.php:482
6991
+ msgid "WooCommerce Elements"
 
 
 
 
 
6992
  msgstr ""
6993
 
6994
+ #: ../includes/templates/admin/elements.php:536, ../includes/templates/admin/extensions.php:83
6995
+ msgid "Pro"
6996
  msgstr ""
6997
 
6998
+ #: ../includes/templates/admin/extensions.php:5
6999
+ msgid "Premium Extensions"
 
7000
  msgstr ""
7001
 
7002
+ #: ../includes/templates/admin/extensions.php:9
7003
+ msgid "Parallax"
7004
  msgstr ""
7005
 
7006
+ #: ../includes/templates/admin/extensions.php:16
7007
+ msgid "Particles"
7008
  msgstr ""
7009
 
7010
+ #: ../includes/templates/admin/extensions.php:23
7011
+ msgid "Advanced Tooltip"
 
 
 
 
 
 
7012
  msgstr ""
7013
 
7014
+ #: ../includes/templates/admin/extensions.php:30
7015
+ msgid "Content Protection"
 
7016
  msgstr ""
7017
 
7018
+ #: ../includes/templates/admin/extensions.php:37
7019
+ msgid "Reading Progress Bar"
7020
  msgstr ""
7021
 
7022
+ #: ../includes/templates/admin/extensions.php:49
7023
+ msgid "Duplicator"
7024
  msgstr ""
7025
 
7026
+ #: ../includes/templates/admin/general.php:23, ../includes/templates/admin/general.php:27
7027
+ msgid "Documentation"
7028
  msgstr ""
7029
 
7030
+ #: ../includes/templates/admin/general.php:26
7031
+ msgid "Get started by spending some time with the documentation to get familiar with Essential Addons. Build awesome websites for you or your clients with ease."
7032
  msgstr ""
7033
 
7034
+ #: ../includes/templates/admin/general.php:35
7035
+ msgid "Contribute to Essential Addons"
 
7036
  msgstr ""
7037
 
7038
+ #: ../includes/templates/admin/general.php:38
7039
+ msgid "You can contribute to make Essential Addons better reporting bugs, creating issues, pull requests at"
7040
  msgstr ""
7041
 
7042
+ #: ../includes/templates/admin/general.php:38
7043
+ msgid "Github."
 
7044
  msgstr ""
7045
 
7046
+ #: ../includes/templates/admin/general.php:39
7047
+ msgid "Report a bug"
7048
  msgstr ""
7049
 
7050
+ #: ../includes/templates/admin/general.php:47
7051
+ msgid "Need Help?"
7052
  msgstr ""
7053
 
7054
+ #: ../includes/templates/admin/general.php:52
7055
+ msgid "Stuck with something? Get help from the community on"
7056
  msgstr ""
7057
 
7058
+ #: ../includes/templates/admin/general.php:52
7059
+ msgid "WordPress.org Forum"
7060
  msgstr ""
7061
 
7062
+ #: ../includes/templates/admin/general.php:52
7063
+ msgid "or"
7064
  msgstr ""
7065
 
7066
+ #: ../includes/templates/admin/general.php:52
7067
+ msgid "Facebook Community."
7068
  msgstr ""
7069
 
7070
+ #: ../includes/templates/admin/general.php:52
7071
+ msgid "In case of emergency, initiate a live chat at"
7072
  msgstr ""
7073
 
7074
+ #: ../includes/templates/admin/general.php:52
7075
+ msgid "Essential Addons website."
7076
  msgstr ""
7077
 
7078
+ #: ../includes/templates/admin/general.php:53
7079
+ msgid "Get Support"
7080
  msgstr ""
7081
 
7082
+ #: ../includes/templates/admin/general.php:69
7083
+ msgid "Show your Love"
 
7084
  msgstr ""
7085
 
7086
+ #: ../includes/templates/admin/general.php:72
7087
+ msgid "We love to have you in Essential Addons family. We are making it more awesome everyday. Take your 2 minutes to review the plugin and spread the love to encourage us to keep it going."
 
 
7088
  msgstr ""
7089
 
7090
+ #: ../includes/templates/admin/general.php:74
7091
+ msgid "Leave a Review"
7092
  msgstr ""
7093
 
7094
+ #: ../includes/templates/admin/general.php:92
7095
+ msgid "<a href=\"https://wpdeveloper.net/in/upgrade-essential-addons-elementor\" target=\"_blank\">%s</a>"
7096
  msgstr ""
7097
 
7098
+ #: ../includes/templates/admin/go-pro.php:10
7099
+ msgid "Why upgrade to Premium Version?"
7100
  msgstr ""
7101
 
7102
+ #: ../includes/templates/admin/go-pro.php:13
7103
+ msgid "The premium version helps us to continue development of the product incorporating even more features and enhancements."
7104
  msgstr ""
7105
 
7106
+ #: ../includes/templates/admin/go-pro.php:14
7107
+ msgid "You will also get world class support from our dedicated team, 24/7."
 
 
 
 
 
7108
  msgstr ""
7109
 
7110
+ #: ../includes/templates/admin/go-pro.php:15
7111
+ msgid "Get Premium Version"
7112
  msgstr ""
7113
 
7114
+ #: ../includes/templates/admin/tools.php:11, ../includes/templates/admin/tools.php:15
7115
+ msgid "Regenerate Assets"
7116
  msgstr ""
7117
 
7118
+ #: ../includes/templates/admin/tools.php:14
7119
+ msgid "Essential Addons styles & scripts are saved in Uploads folder. This option will clear all those generated files."
7120
  msgstr ""
7121
 
7122
+ #: ../includes/templates/admin/tools.php:28
7123
+ msgid "Assets Embed Method"
7124
  msgstr ""
7125
 
7126
+ #: ../includes/templates/admin/tools.php:31
7127
+ msgid "Configure the Essential Addons assets embed method. Keep it as default (recommended)."
7128
  msgstr ""
7129
 
7130
+ #: ../includes/templates/admin/tools.php:36
7131
+ msgid "CSS Print Method"
7132
  msgstr ""
7133
 
7134
+ #: ../includes/templates/admin/tools.php:40
7135
+ msgid "Configure Settings"
7136
  msgstr ""
7137
 
7138
+ #: ../includes/templates/admin/tools.php:42
7139
+ msgid "CSS Print Method is handled by Elementor Settings itself. Use External CSS Files for better performance (recommended)."
7140
  msgstr ""
7141
 
7142
+ #: ../includes/templates/admin/tools.php:48
7143
+ msgid "JS Print Method"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7144
  msgstr ""
7145
 
7146
+ #: ../includes/templates/admin/tools.php:56
7147
+ msgid "External File"
7148
  msgstr ""
7149
 
7150
+ #: ../includes/templates/admin/tools.php:57
7151
+ msgid "Internal Embedding"
 
 
 
 
 
 
 
 
 
 
 
 
7152
  msgstr ""
7153
 
7154
+ #: ../includes/templates/admin/tools.php:59
7155
+ msgid "Use external JS files for all generated scripts. Choose this setting for better performance (recommended)."
7156
  msgstr ""
7157
 
7158
+ #: ../includes/templates/admin/tools.php:60
7159
+ msgid "Use internal JS that is embedded in the head of the page. For troubleshooting server configuration conflicts and managing development environments."
7160
  msgstr ""
7161
 
7162
+ #: ../includes/Classes/WPML/Widgets/Accordion.php:49
7163
+ msgid "Advance Accordion: Title"
7164
  msgstr ""
7165
 
7166
+ #: ../includes/Classes/WPML/Widgets/Accordion.php:52
7167
+ msgid "Advance Accordion: Content"
7168
  msgstr ""
7169
 
7170
+ #: ../includes/Classes/WPML/Widgets/Advance_Tab.php:49
7171
+ msgid "Advance Tab: Title"
7172
  msgstr ""
7173
 
7174
+ #: ../includes/Classes/WPML/Widgets/Advance_Tab.php:52
7175
+ msgid "Advance Tab: Content"
7176
  msgstr ""
7177
 
7178
+ #: ../includes/Classes/WPML/Widgets/Creative_Button.php:55
7179
+ msgid "Creative Button: Link URL"
7180
  msgstr ""
7181
 
7182
+ #: ../includes/Classes/WPML/Widgets/Data_Table.php:52
7183
+ msgid "Data Table: Header"
 
 
 
 
7184
  msgstr ""
7185
 
7186
+ #: ../includes/Classes/WPML/Widgets/Data_Table_Body.php:52
7187
+ msgid "Data Table: Cell Text"
7188
  msgstr ""
7189
 
7190
+ #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:54
7191
+ msgid "Event: Title"
7192
  msgstr ""
7193
 
7194
+ #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:57
7195
+ msgid "Event: Content"
7196
  msgstr ""
7197
 
7198
+ #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:60
7199
+ msgid "Event : Description"
7200
  msgstr ""
7201
 
7202
+ #: ../includes/Classes/WPML/Widgets/Fancy_Text.php:46
7203
+ msgid "Fancy Text: String"
7204
  msgstr ""
7205
 
7206
+ #: ../includes/Classes/WPML/Widgets/Image_Accordion.php:49
7207
+ msgid "Image Accordion: Title"
7208
  msgstr ""
7209
 
7210
+ #: ../includes/Classes/WPML/Widgets/Image_Accordion.php:52
7211
+ msgid "Image Accordion: Content"
 
 
 
 
 
 
7212
  msgstr ""
7213
 
7214
+ #: ../includes/Classes/WPML/Widgets/Pricing_Table.php:49
7215
+ msgid "Pricing Table: Feature"
7216
  msgstr ""
7217
 
7218
+ #: ../includes/Classes/WPML/Widgets/Pricing_Table.php:52
7219
+ msgid "Pricing Table: Feature Tooltip"
7220
  msgstr ""
7221
 
7222
+ #: ../includes/Classes/WPML/Widgets/Team_Member.php:49
7223
+ msgid "Team Member: Profile Link"
 
 
 
7224
  msgstr ""
7225
 
7226
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:53
7227
+ msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
 
 
 
7228
  msgstr ""
7229
 
7230
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:242
7231
+ msgid "Invalid order."
7232
  msgstr ""
7233
 
7234
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:239, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:116
7235
+ msgid "Sorry, this order is invalid and cannot be paid for."
7236
  msgstr ""
7237
 
7238
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:236, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:146
7239
+ msgid "This order&rsquo;s status is &ldquo;%s&rdquo;&mdash;it cannot be paid for. Please contact us if you need assistance."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7240
  msgstr ""
7241
 
7242
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:121
7243
+ msgid "Please log in to your account below to continue to the payment form."
7244
  msgstr ""
7245
 
7246
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:134
7247
+ msgid "You are paying for a guest order. Please continue with payment only if you recognize this order."
7248
  msgstr ""
7249
 
7250
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:140
7251
+ msgid "This order cannot be paid for. Please contact us if you need assistance."
7252
  msgstr ""
7253
 
7254
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:175
7255
+ msgid "Sorry, \"%s\" is no longer in stock so this order cannot be paid for. We apologize for any inconvenience caused."
7256
  msgstr ""
7257
 
7258
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:189
7259
+ msgid "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order (%2$s available). We apologize for any inconvenience caused."
7260
  msgstr ""
7261
 
7262
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:215
7263
+ msgid "Pay for order"
7264
  msgstr ""
7265
 
7266
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:288
7267
+ msgid "Returning customer?"
7268
  msgstr ""
7269
 
7270
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:288
7271
+ msgid "Click here to login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7272
  msgstr ""
7273
 
7274
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:292
7275
+ msgid "If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section."
 
 
 
 
 
7276
  msgstr ""
7277
 
7278
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:303
7279
+ msgid "Username or email"
 
 
7280
  msgstr ""
7281
 
7282
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:316
7283
+ msgid "Remember me"
7284
  msgstr ""
7285
 
7286
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:323
7287
+ msgid "Lost your password?"
7288
  msgstr ""
7289
 
7290
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:347
7291
+ msgid "Your order"
7292
  msgstr ""
7293
 
7294
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:429
7295
+ msgid "Subtotal"
7296
  msgstr ""
7297
 
7298
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:495
7299
+ msgid "You must be logged in to checkout."
7300
  msgstr ""
7301
 
7302
+ #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:522
7303
+ msgid "Payment Methods"
7304
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
4
  Requires at least: 4.0
5
  Tested up to: 5.5
6
  Requires PHP: 5.4
7
- Stable tag: 4.2.1
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -224,6 +224,13 @@ Your existing elements/content will work with premium version. So you won't lose
224
 
225
  == Changelog ==
226
 
 
 
 
 
 
 
 
227
  = 4.2.1 - 20/08/2020 =
228
  - Added: Google reCAPTCHA option in EA Login | Register Form
229
  - Added: Compatibility with WooCommerce 4.4.1
4
  Requires at least: 4.0
5
  Tested up to: 5.5
6
  Requires PHP: 5.4
7
+ Stable tag: 4.2.2
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
224
 
225
  == Changelog ==
226
 
227
+ = 4.2.2 - 27/08/2020 =
228
+ - Fixed: Sorting not working when Pagination is disabled in EA Advanced Data Table
229
+ - Added: Styling controls for reCAPTCHA in EA Login | Register Form
230
+ - Added: Translatable Strings in EA Login | Register Form
231
+ - Added: Options to change the Error Messages in EA Login | Register Form
232
+ - Few minor bugfix and improvements
233
+
234
  = 4.2.1 - 20/08/2020 =
235
  - Added: Google reCAPTCHA option in EA Login | Register Form
236
  - Added: Compatibility with WooCommerce 4.4.1