Version Description
- Added: GDPR Enhancements plugin setting doc.
- Added: GDPR Enhancement: User Agreement form field.
- Changed: PHP warning that alerts users support for PHP 5.4 and below will be dropped this summer.
- Changed: Spam logging, to improve performance.
- Fixed: Typo in base form CSS.
- Fixed: Stripping HTML from the checkbox and mulitple choice labels in the form builder.
- Fixed: Form builder icon visibility when field labels are hidden.
Download this release
Release Info
Developer | jaredatch |
Plugin | Contact Form by WPForms – Drag & Drop Form Builder for WordPress |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5.3 to 1.4.6
- assets/css/admin-builder-fields.css +23 -5
- assets/css/builder.css +14 -1
- assets/css/builder.min.css +1 -1
- assets/css/wpforms-base.css +1 -1
- assets/js/admin.js +1631 -1
- assets/js/admin.min.js +1 -1
- assets/js/jquery.conditionals.min.js +2 -2
- assets/js/wpforms.js +4 -4
- changelog.txt +9 -0
- includes/admin/admin.php +14 -4
- includes/admin/builder/class-builder.php +12 -1
- includes/admin/builder/panels/class-fields.php +2 -2
- includes/admin/class-review.php +6 -0
- includes/admin/class-settings.php +29 -3
- includes/class-fields.php +5 -0
- includes/class-frontend.php +1 -0
- includes/class-process.php +1 -1
- includes/emails/class-emails.php +71 -26
- includes/fields/class-base.php +4 -3
- includes/fields/class-gdpr-checkbox.php +278 -0
- includes/functions.php +4 -0
- languages/wpforms.pot +687 -634
- readme.txt +9 -0
- wpforms.php +2 -2
assets/css/admin-builder-fields.css
CHANGED
@@ -581,23 +581,32 @@
|
|
581 |
color: #777;
|
582 |
position: absolute;
|
583 |
top: 5px;
|
584 |
-
right:
|
585 |
font-size: 16px;
|
586 |
-
|
|
|
|
|
|
|
|
|
587 |
z-index: 10;
|
588 |
-webkit-transition: all 0.4s ease-in-out;
|
589 |
-moz-transition: all 0.4s ease-in-out;
|
590 |
-ms-transition: all 0.4s ease-in-out;
|
591 |
-o-transition: all 0.4s ease-in-out;
|
592 |
transition: all 0.4s ease-in-out;
|
|
|
593 |
}
|
594 |
|
595 |
#wpforms-panel-fields .wpforms-field:hover .wpforms-field-duplicate,
|
596 |
#wpforms-panel-fields .wpforms-field.active .wpforms-field-duplicate {
|
|
|
|
|
|
|
|
|
597 |
opacity: 0.45;
|
598 |
}
|
599 |
|
600 |
-
#wpforms-panel-fields .wpforms-field .wpforms-field-duplicate:hover {
|
601 |
color: #e27730;
|
602 |
opacity: 1;
|
603 |
}
|
@@ -612,21 +621,30 @@
|
|
612 |
top: 5px;
|
613 |
right: 10px;
|
614 |
font-size: 16px;
|
615 |
-
|
|
|
|
|
|
|
|
|
616 |
z-index: 10;
|
617 |
-webkit-transition: all 0.4s ease-in-out;
|
618 |
-moz-transition: all 0.4s ease-in-out;
|
619 |
-ms-transition: all 0.4s ease-in-out;
|
620 |
-o-transition: all 0.4s ease-in-out;
|
621 |
transition: all 0.4s ease-in-out;
|
|
|
622 |
}
|
623 |
|
624 |
#wpforms-panel-fields .wpforms-field:hover .wpforms-field-delete,
|
625 |
#wpforms-panel-fields .wpforms-field.active .wpforms-field-delete {
|
|
|
|
|
|
|
|
|
626 |
opacity: 0.45;
|
627 |
}
|
628 |
|
629 |
-
#wpforms-panel-fields .wpforms-field .wpforms-field-delete:hover {
|
630 |
color: #d22222;
|
631 |
opacity: 1;
|
632 |
}
|
581 |
color: #777;
|
582 |
position: absolute;
|
583 |
top: 5px;
|
584 |
+
right: 35px;
|
585 |
font-size: 16px;
|
586 |
+
width: 20px;
|
587 |
+
height: 20px;
|
588 |
+
text-align: center;
|
589 |
+
background-color: #fff;
|
590 |
+
display: none;
|
591 |
z-index: 10;
|
592 |
-webkit-transition: all 0.4s ease-in-out;
|
593 |
-moz-transition: all 0.4s ease-in-out;
|
594 |
-ms-transition: all 0.4s ease-in-out;
|
595 |
-o-transition: all 0.4s ease-in-out;
|
596 |
transition: all 0.4s ease-in-out;
|
597 |
+
border-radius: 50%;
|
598 |
}
|
599 |
|
600 |
#wpforms-panel-fields .wpforms-field:hover .wpforms-field-duplicate,
|
601 |
#wpforms-panel-fields .wpforms-field.active .wpforms-field-duplicate {
|
602 |
+
display: block;
|
603 |
+
}
|
604 |
+
|
605 |
+
#wpforms-panel-fields .wpforms-field .wpforms-field-duplicate i {
|
606 |
opacity: 0.45;
|
607 |
}
|
608 |
|
609 |
+
#wpforms-panel-fields .wpforms-field .wpforms-field-duplicate:hover i {
|
610 |
color: #e27730;
|
611 |
opacity: 1;
|
612 |
}
|
621 |
top: 5px;
|
622 |
right: 10px;
|
623 |
font-size: 16px;
|
624 |
+
width: 20px;
|
625 |
+
height: 20px;
|
626 |
+
text-align: center;
|
627 |
+
background-color: #fff;
|
628 |
+
display: none;
|
629 |
z-index: 10;
|
630 |
-webkit-transition: all 0.4s ease-in-out;
|
631 |
-moz-transition: all 0.4s ease-in-out;
|
632 |
-ms-transition: all 0.4s ease-in-out;
|
633 |
-o-transition: all 0.4s ease-in-out;
|
634 |
transition: all 0.4s ease-in-out;
|
635 |
+
border-radius: 50%;
|
636 |
}
|
637 |
|
638 |
#wpforms-panel-fields .wpforms-field:hover .wpforms-field-delete,
|
639 |
#wpforms-panel-fields .wpforms-field.active .wpforms-field-delete {
|
640 |
+
display: block;
|
641 |
+
}
|
642 |
+
|
643 |
+
#wpforms-panel-fields .wpforms-field .wpforms-field-delete i {
|
644 |
opacity: 0.45;
|
645 |
}
|
646 |
|
647 |
+
#wpforms-panel-fields .wpforms-field .wpforms-field-delete:hover i {
|
648 |
color: #d22222;
|
649 |
opacity: 1;
|
650 |
}
|
assets/css/builder.css
CHANGED
@@ -418,6 +418,19 @@ body .choices input[type=text].choices__input {
|
|
418 |
max-height: 100px;
|
419 |
}
|
420 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload {
|
422 |
margin: 6px 0 0 50px;
|
423 |
width: 68%;
|
@@ -574,4 +587,4 @@ body .choices input[type=text].choices__input {
|
|
574 |
word-wrap: normal !important;
|
575 |
}
|
576 |
|
577 |
-
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3Bmb3Jtcy9hc3NldHMvY3NzL2J1aWxkZXIuY3NzIiwic291cmNlcyI6WyJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIuc2NzcyIsIndwZm9ybXMvYXNzZXRzL3Njc3MvX3ZhcmlhYmxlcy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fY29uZmlybS5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fYnV0dG9ucy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fYWxlcnRzLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvX3BhbmVsLWZpZWxkcy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9idWlsZGVyL3BhbmVsLWZpZWxkcy9fY2hlY2tib3guc2NzcyIsIndwZm9ybXMvYXNzZXRzL3Njc3MvYnVpbGRlci9wYW5lbC1maWVsZHMvX3JhZGlvLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvcGFuZWwtZmllbGRzL19wYXltZW50LW11bHRpcGxlLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvX3BhbmVsLXNldHRpbmdzLnNjc3MiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gV1BGb3JtcyBmb3JtIGJ1aWxkZXIgc3R5bGVzLlxuXG5AaW1wb3J0ICd2YXJpYWJsZXMnO1xuQGltcG9ydCAnYWRtaW4vY29uZmlybSc7XG5AaW1wb3J0ICdhZG1pbi9idXR0b25zJztcbkBpbXBvcnQgJ2FkbWluL2FsZXJ0cyc7XG5AaW1wb3J0ICdidWlsZGVyL3BhbmVsLWZpZWxkcyc7XG5AaW1wb3J0ICdidWlsZGVyL3BhbmVsLXNldHRpbmdzJztcblxuLndwZm9ybXMtc2NyZWVuLXJlYWRlci1lbGVtZW50IHtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdGNsaXA6IHJlY3QoMCwgMCwgMCwgMCkgIWltcG9ydGFudDtcblx0aGVpZ2h0OiAxcHggIWltcG9ydGFudDtcblx0d2lkdGg6IDFweCAhaW1wb3J0YW50O1xuXHRib3JkZXI6IDAgIWltcG9ydGFudDtcblx0bWFyZ2luOiAwICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmc6IDAgIWltcG9ydGFudDtcblx0b3ZlcmZsb3c6IGhpZGRlbiAhaW1wb3J0YW50O1xuXHR3b3JkLXdyYXA6IG5vcm1hbCAhaW1wb3J0YW50O1xufSIsIiRvcmFuZ2U6ICNlMjc3MzA7XG4kZGFya29yYW5nZTogI2I4NWExYjtcbiRncmVlbjogIzJhOWIzOTtcbiRibHVlOiAjMGU2Y2FkO1xuJGxpZ2h0Qmx1ZTogI2ViZjNmYjtcbiIsIi8vIEFsZXJ0IHN0eWxlcy5cbi8vIFN0eWxpbmcgdHdlYWtzIGZvciBqUXVlcnktY29uZmlybSBKUyBhbGVydCBsaWJyYXJ5LlxuYm9keSB7XG5cblx0ZGl2Lmpjb25maXJtIHtcblxuXHRcdCosXG5cdFx0Kjo6YmVmb3JlLFxuXHRcdCo6OmFmdGVyIHtcblx0XHRcdC13ZWJraXQtYm94LXNpemluZzogYm9yZGVyLWJveDtcblx0XHRcdC1tb3otYm94LXNpemluZzogYm9yZGVyLWJveDtcblx0XHRcdGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG5cdFx0fVxuXG5cdFx0ZGl2Lmpjb25maXJtLWJveC1jb250YWluZXIgZGl2Lmpjb25maXJtLWJveCB7XG5cdFx0XHRib3JkZXItcmFkaXVzOiAwO1xuXHRcdFx0Ym94LXNoYWRvdzogMCAycHggNnB4IHJnYmEoMCwgMCwgMCwgMC4yKTtcblx0XHR9XG5cblx0XHRkaXYuamNvbmZpcm0tYm94IHtcblxuXHRcdFx0ZGl2Lmpjb25maXJtLWNvbnRlbnQtcGFuZSB7XG5cdFx0XHRcdG1hcmdpbi1ib3R0b206IDIwcHg7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXG5cdFx0XHRcdC5qY29uZmlybS1jb250ZW50IHtcblx0XHRcdFx0XHRvdmVyZmxvdzogaW5pdGlhbDtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXG5cdFx0XHRkaXYuamNvbmZpcm0tY29udGVudCB7XG5cdFx0XHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRcdFx0Y29sb3I6ICM1NTU7XG5cdFx0XHRcdGxpbmUtaGVpZ2h0OiAxLjU7XG5cblx0XHRcdFx0cCB7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIDAgMTZweDtcblx0XHRcdFx0XHRmb250LXNpemU6IDE2cHg7XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0aW5wdXRbdHlwZT10ZXh0XSB7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHR3aWR0aDogOTklO1xuXHRcdFx0XHRib3JkZXI6IDFweCBzb2xpZCAjZDZkNmQ2O1xuXHRcdFx0XHRwYWRkaW5nOiAxMHB4O1xuXHRcdFx0XHRib3gtc2hhZG93OiBub25lO1xuXHRcdFx0XHRtYXJnaW46IDIwcHggYXV0byAwIGF1dG87XG5cdFx0XHR9XG5cblx0XHRcdCN3cGZvcm1zLWVtYmVkLXNob3J0Y29kZSB7XG5cdFx0XHRcdG1hcmdpbjogMjBweCAwO1xuXHRcdFx0XHR0ZXh0LWFsaWduOiBjZW50ZXI7XG5cdFx0XHRcdGZvbnQtc2l6ZTogMjRweDtcblx0XHRcdFx0cGFkZGluZzogOHB4IDVweDtcblx0XHRcdH1cblxuXHRcdFx0I3dwZm9ybXMtZW1iZWQtc2hvcnRjb2RlOmRpc2FibGVkIHtcblx0XHRcdFx0Y29sb3I6ICMzMzM7XG5cdFx0XHR9XG5cblx0XHRcdGJ1dHRvbi5idG4tY29uZmlybSB7XG5cdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICRvcmFuZ2U7XG5cdFx0XHRcdGNvbG9yOiAjZmZmO1xuXHRcdFx0XHRvdXRsaW5lOiBub25lO1xuXG5cdFx0XHRcdCY6aG92ZXIge1xuXHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICRkYXJrb3JhbmdlO1xuXHRcdFx0XHRcdGJvcmRlci1jb2xvcjogJGRhcmtvcmFuZ2U7XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0LmVycm9yIHtcblx0XHRcdFx0ZGlzcGxheTogbm9uZTtcblx0XHRcdFx0Y29sb3I6IHJlZDtcblx0XHRcdH1cblxuXHRcdFx0Lmpjb25maXJtLXRpdGxlLWMgLmpjb25maXJtLWljb24tYyB7XG5cdFx0XHRcdC13ZWJraXQtdHJhbnNpdGlvbjogbm9uZSAhaW1wb3J0YW50O1xuXHRcdFx0XHR0cmFuc2l0aW9uOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdC13ZWJraXQtdHJhbnNmb3JtOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdC1tcy10cmFuc2Zvcm06IG5vbmUgIWltcG9ydGFudDtcblx0XHRcdFx0dHJhbnNmb3JtOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdGZvbnQtc2l6ZTogNDVweCAhaW1wb3J0YW50O1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC5jaG9pY2VzIHtcblx0XHR0ZXh0LWFsaWduOiBsZWZ0O1xuXG5cdFx0aW5wdXRbdHlwZT10ZXh0XS5jaG9pY2VzX19pbnB1dCB7XG5cdFx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDtcblx0XHR9XG5cdH1cbn1cbiIsIi8vIEJ1dHRvbiBzdHlsZXMuXG4ud3Bmb3Jtcy1hZG1pbi1wYWdlIHtcblxuXHQud3Bmb3Jtcy1idG4ge1xuXHRcdGJvcmRlcjogMDtcblx0XHRib3JkZXItcmFkaXVzOiAzcHg7XG5cdFx0Y3Vyc29yOiBwb2ludGVyO1xuXHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRtYXJnaW46IDA7XG5cdFx0dGV4dC1kZWNvcmF0aW9uOiBub25lO1xuXHRcdHRleHQtYWxpZ246IGNlbnRlcjtcblx0XHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuXHRcdHdoaXRlLXNwYWNlOiBub3dyYXA7XG5cdFx0Ym94LXNoYWRvdzogbm9uZTtcblx0fVxuXG5cdC53cGZvcm1zLWJ0bi1ibG9jayB7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0d2lkdGg6IDEwMCU7XG5cdH1cblxuXHQud3Bmb3Jtcy1idG4tbWQge1xuXHRcdGZvbnQtc2l6ZTogMTNweDtcblx0XHRmb250LXdlaWdodDogNjAwO1xuXHRcdHBhZGRpbmc6IDhweCAxMnB4O1xuXHRcdG1pbi1oZWlnaHQ6IDM1cHg7XG5cdH1cblxuXHQud3Bmb3Jtcy1idG4tbGcge1xuXHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRmb250LXdlaWdodDogNjAwO1xuXHRcdHBhZGRpbmc6IDE2cHggMjhweDtcblx0fVxuXG5cdC53cGZvcm1zLWJ0bi1vcmFuZ2Uge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICRvcmFuZ2U7XG5cdFx0Ym9yZGVyLWNvbG9yOiAkb3JhbmdlO1xuXHRcdGNvbG9yOiAjZmZmO1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAkZGFya29yYW5nZTtcblx0XHRcdGJvcmRlci1jb2xvcjogJGRhcmtvcmFuZ2U7XG5cdFx0fVxuXHR9XG5cblx0LndwZm9ybXMtYnRuLWdyZXkge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG5cdFx0Ym9yZGVyLWNvbG9yOiAjY2NjO1xuXHRcdGNvbG9yOiAjNjY2O1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZDdkN2Q3O1xuXHRcdFx0Ym9yZGVyLWNvbG9yOiAjY2NjO1xuXHRcdFx0Y29sb3I6ICM0NDQ7XG5cdFx0fVxuXHR9XG5cblx0LndwZm9ybXMtYnRuLWxpZ2h0LWdyZXkge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG5cdFx0Ym9yZGVyOiAxcHggc29saWQgI2NjYztcblx0XHRjb2xvcjogIzY2NjtcblxuXHRcdCY6aG92ZXIge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2VlZTtcblx0XHRcdGNvbG9yOiAjNDQ0O1xuXHRcdH1cblx0fVxuXG5cdC53cGZvcm1zLWJ0bi10cmFucy1ncmVlbiB7XG5cdFx0YmFja2dyb3VuZC1jb2xvcjogbm9uZTtcblx0XHRjb2xvcjogJGdyZWVuO1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAkZ3JlZW47XG5cdFx0XHRjb2xvcjogI2ZmZjtcblx0XHR9XG5cblx0XHQudW5kZXJsaW5lIHtcblx0XHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuXHRcdFx0JjphZnRlciB7XG5cdFx0XHRcdGNvbnRlbnQ6IFwiIFwiO1xuXHRcdFx0XHRib3JkZXItYm90dG9tOiAxcHggZGFzaGVkICRncmVlbjtcblx0XHRcdFx0cG9zaXRpb246IGFic29sdXRlO1xuXHRcdFx0XHRib3R0b206IC01cHg7XG5cdFx0XHRcdGxlZnQ6IDA7XG5cdFx0XHRcdHdpZHRoOiAxMDAlO1xuXHRcdFx0fVxuXHRcdH1cblxuXHRcdC5kYXNoaWNvbnMge1xuXHRcdFx0aGVpZ2h0OiAxOHB4O1xuXHRcdH1cblx0fVxufVxuIiwiLy8gQWxlcnQgc3R5bGVzLlxuLndwZm9ybXMtYWRtaW4tcGFnZSB7XG5cblx0LndwZm9ybXMtYWxlcnQge1xuXHRcdHBhZGRpbmc6IDE2cHg7XG5cdFx0bWFyZ2luLWJvdHRvbTogMThweDtcblx0XHRib3JkZXI6IDFweCBzb2xpZCB0cmFuc3BhcmVudDtcblxuXHRcdGg0IHtcblx0XHRcdG1hcmdpbi10b3A6IDA7XG5cdFx0XHRjb2xvcjogaW5oZXJpdDtcblx0XHR9XG5cblx0XHRwIHtcblx0XHRcdG1hcmdpbjogMCAwIDE1cHggMDtcblxuXHRcdFx0JjpsYXN0LW9mLXR5cGUge1xuXHRcdFx0XHRtYXJnaW46IDA7XG5cdFx0XHR9XG5cdFx0fVxuXG5cdFx0Ji53cGZvcm1zLWFsZXJ0LW5vbWFyZ2luIHtcblx0XHRcdG1hcmdpbjogMDtcblx0XHR9XG5cblx0XHQmLndwZm9ybXMtYWxlcnQtc21hbGwge1xuXHRcdFx0Zm9udC1zaXplOiAxMnB4O1xuXHRcdH1cblxuXHRcdCYud3Bmb3Jtcy1hbGVydC1zdWNjZXNzIHtcblx0XHRcdGJhY2tncm91bmQtY29sb3I6ICNkZmYwZDg7XG5cdFx0XHRib3JkZXItY29sb3I6ICNkNmU5YzY7XG5cdFx0XHRjb2xvcjogIzNjNzYzZDtcblx0XHR9XG5cblx0XHQmLndwZm9ybXMtYWxlcnQtaW5mbyB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZDllZGY3O1xuXHRcdFx0Ym9yZGVyLWNvbG9yOiAjYmNlOGYxO1xuXHRcdFx0Y29sb3I6ICMzMTcwOGY7XG5cdFx0fVxuXG5cdFx0Ji53cGZvcm1zLWFsZXJ0LXdhcm5pbmcge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZjZjhlMztcblx0XHRcdGJvcmRlci1jb2xvcjogI2ZhZWJjYztcblx0XHRcdGNvbG9yOiAjOGE2ZDNiO1xuXHRcdH1cblxuXHRcdCYud3Bmb3Jtcy1hbGVydC1kYW5nZXIge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2YyZGVkZTtcblx0XHRcdGJvcmRlci1jb2xvcjogI2ViY2NkMTtcblx0XHRcdGNvbG9yOiAjYTk0NDQyO1xuXHRcdH1cblx0fVxufSIsIi8vIEZpZWxkIHBhbmVsLlxuXG4jd3Bmb3Jtcy1wYW5lbC1maWVsZHMge1xuXG5cdC8vIFNpZGViYXIgYXJlYSAobGVmdCBzaWRlLCBmaWVsZCBidXR0b25zL29wdGlvbnMpLlxuXHQud3Bmb3Jtcy1wYW5lbC1zaWRlYmFyIHtcblxuXHRcdC5jaG9pY2VzLWxpc3Qge1xuXG5cdFx0XHQmLnNob3ctaW1hZ2VzIHtcblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtdXBsb2FkIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0fVxuXHRcdFx0fVxuXG5cdFx0XHQud3Bmb3Jtcy1pbWFnZS11cGxvYWQge1xuXHRcdFx0XHRkaXNwbGF5OiBub25lO1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC8vIFBhbmVsIGNvbnRlbnQgYXJlYSAocmlnaHQgc2lkZSwgZm9ybSBwcmV2aWV3IGFyZWEpLlxuXHQud3Bmb3Jtcy1wYW5lbC1jb250ZW50LXdyYXAge1xuXG5cdFx0Ly8gSW1hZ2UgY2hvaWNlcyAoQ2hlY2tib3gsIFJhZGlvLCBNdWx0aXBsZSBwYXltZW50IGl0ZW1zKS5cblx0XHQud3Bmb3Jtcy1maWVsZC1jaGVja2JveCxcblx0XHQud3Bmb3Jtcy1maWVsZC1yYWRpbyxcblx0XHQud3Bmb3Jtcy1maWVsZC1wYXltZW50LW11bHRpcGxlIHtcblxuXHRcdFx0Ly8gR2VuZXJhbCB0b3AgbGV2ZWwgcnVsZXMuXG5cdFx0XHQmLndwZm9ybXMtbGlzdC1pbmxpbmUge1xuXG5cdFx0XHRcdC5wcmltYXJ5LWlucHV0IHtcblx0XHRcdFx0XHRsaSB7XG5cdFx0XHRcdFx0XHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1tb2Rlcm4ge1xuXHRcdFx0XHRcdGxpIHtcblx0XHRcdFx0XHRcdG1hcmdpbjogNXB4O1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1jbGFzc2ljIHtcblx0XHRcdFx0XHRsaSB7XG5cdFx0XHRcdFx0XHRtYXJnaW46IDAgMTBweCAxMHB4IDA7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cdFx0XHR9XG5cblx0XHRcdC8vIE1vZGVybiBzdHlsZS5cblx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1tb2Rlcm4ge1xuXG5cdFx0XHRcdGltZyB7XG5cdFx0XHRcdFx0ZGlzcGxheTogaW5saW5lO1xuXHRcdFx0XHRcdG1hcmdpbjogMCBhdXRvO1xuXHRcdFx0XHRcdG1heC13aWR0aDogMTAwJTtcblx0XHRcdFx0fVxuXG5cdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRcdFx0XHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRwYWRkaW5nOiAwO1xuXHRcdFx0XHRcdGJvcmRlcjogMXB4IHNvbGlkICNmZmY7XG5cdFx0XHRcdFx0Ym9yZGVyLXJhZGl1czogM3B4O1xuXHRcdFx0XHRcdHBhZGRpbmc6IDIwcHggMjBweCAxOHB4IDIwcHg7XG5cdFx0XHRcdFx0dHJhbnNpdGlvbjogYWxsIDAuNXM7XG5cdFx0XHRcdFx0dGV4dC1hbGlnbjogY2VudGVyO1xuXG5cdFx0XHRcdFx0Jjpob3ZlciB7XG5cdFx0XHRcdFx0XHRib3JkZXI6MXB4IHNvbGlkICNkZGQ7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1pbWFnZSB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0cG9zaXRpb246IHJlbGF0aXZlO1xuXG5cdFx0XHRcdFx0JjphZnRlciB7XG5cdFx0XHRcdFx0XHRjb250ZW50OiBcIlxcMjcxNFwiO1xuXHRcdFx0XHRcdFx0Zm9udC1zaXplOiAyMnB4O1xuXHRcdFx0XHRcdFx0bGluZS1oZWlnaHQ6IDMycHg7XG5cdFx0XHRcdFx0XHRjb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRcdGJhY2tncm91bmQ6IGdyZWVuO1xuXHRcdFx0XHRcdFx0b3BhY2l0eTogMDtcblx0XHRcdFx0XHRcdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0XHRcdFx0XHRcdHRvcDogNTAlO1xuXHRcdFx0XHRcdFx0bGVmdDogNTAlO1xuXHRcdFx0XHRcdFx0bWFyZ2luOiAtMTZweCAwIDAgLTE2cHg7XG5cdFx0XHRcdFx0XHR3aWR0aDogMzJweDtcblx0XHRcdFx0XHRcdGhlaWdodDogMzJweDtcblx0XHRcdFx0XHRcdGJvcmRlci1yYWRpdXM6IDUwJTtcblx0XHRcdFx0XHRcdHRyYW5zaXRpb246IGFsbCAwLjVzO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdC53cGZvcm1zLWltYWdlLWNob2ljZXMtbGFiZWwge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRcdG1hcmdpbi10b3A6IDEycHg7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQvLyBTZWxlY3RlZCBzdGF0ZS5cblx0XHRcdFx0bGkge1xuXHRcdFx0XHRcdCYud3Bmb3Jtcy1zZWxlY3RlZCB7XG5cblx0XHRcdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Ym94LXNoYWRvdzogMCAwIDIwcHggMCByZ2JhKDAsIDAsIDAsIDAuMSk7XG5cdFx0XHRcdFx0XHR9XG5cblx0XHRcdFx0XHRcdC53cGZvcm1zLWltYWdlLWNob2ljZXMtaW1hZ2U6YWZ0ZXIge1xuXHRcdFx0XHRcdFx0XHRvcGFjaXR5OiAxO1xuXHRcdFx0XHRcdFx0fVxuXG5cdFx0XHRcdFx0XHQud3Bmb3Jtcy1pbWFnZS1jaG9pY2VzLWxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Zm9udC13ZWlnaHQ6IDcwMDtcblx0XHRcdFx0XHRcdH1cblx0XHRcdFx0XHR9XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0Ly8gQ2xhc3NpYyBzdHlsZS5cblx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1jbGFzc2ljIHtcblxuXHRcdFx0XHRpbWcge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGlubGluZTtcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRtYXgtd2lkdGg6IDEwMCU7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRsYWJlbCB7XG5cdFx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIGF1dG87XG5cdFx0XHRcdFx0cGFkZGluZzogMDtcblx0XHRcdFx0XHRib3JkZXI6IDJweCBzb2xpZCAjZmZmO1xuXHRcdFx0XHRcdHBhZGRpbmc6IDEwcHg7XG5cdFx0XHRcdFx0dGV4dC1hbGlnbjogY2VudGVyO1xuXG5cdFx0XHRcdFx0Jjpob3ZlciB7XG5cdFx0XHRcdFx0XHRib3JkZXItY29sb3I6ICNkZGQ7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1pbWFnZSB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQud3Bmb3Jtcy1pbWFnZS1jaG9pY2VzLWxhYmVsIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRtYXJnaW4tdG9wOiA4cHg7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQvLyBTZWxlY3RlZCBzdGF0ZS5cblx0XHRcdFx0bGkge1xuXHRcdFx0XHRcdCYud3Bmb3Jtcy1zZWxlY3RlZCB7XG5cblx0XHRcdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Ym9yZGVyLWNvbG9yOiAjNjY2O1xuXHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC8vIEZpZWxkIHNwZWNpZmljIHJ1bGVzLlxuXHRAaW1wb3J0ICdwYW5lbC1maWVsZHMvY2hlY2tib3gnO1xuXHRAaW1wb3J0ICdwYW5lbC1maWVsZHMvcmFkaW8nO1xuXHRAaW1wb3J0ICdwYW5lbC1maWVsZHMvcGF5bWVudC1tdWx0aXBsZSc7XG59IiwiLy8gQ2hlY2tib3ggZmllbGQgdHlwZS5cblxuLy8gRmllbGQgb3B0aW9ucyBhcmVhIChsZWZ0IHNpZGUpLlxuLndwZm9ybXMtcGFuZWwtc2lkZWJhciB7XG5cblx0LndwZm9ybXMtZmllbGQtb3B0aW9uLWNoZWNrYm94IHtcblxuXHRcdC8vIENob2ljZXMgZmlsZSB1cGxvYWQuXG5cdFx0LndwZm9ybXMtZmllbGQtb3B0aW9uLXJvdy1jaG9pY2VzIC53cGZvcm1zLWltYWdlLXVwbG9hZCB7XG5cdFx0XHRtYXJnaW46IDZweCAwIDAgNTBweDtcblx0XHRcdHdpZHRoOiA2OCU7XG5cblx0XHRcdC5wcmV2aWV3IHtcblx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogcmdiYSggMjU1LDI1NSwyNTUsMC42NSk7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHR3aWR0aDogMTAwJTtcblxuXHRcdFx0XHRhIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRhOmhvdmVyIHtcblx0XHRcdFx0XHQmOmFmdGVyIHtcblx0XHRcdFx0XHRcdGNvbnRlbnQ6IFwiXFxmMDU3XCI7XG5cdFx0XHRcdFx0XHRmb250LWZhbWlseTogRm9udEF3ZXNvbWU7XG5cdFx0XHRcdFx0XHR3aWR0aDogMjVweDtcblx0XHRcdFx0XHRcdGhlaWdodDogMjVweDtcblx0XHRcdFx0XHRcdGJvcmRlcjogMXB4IHNvbGlkIHJlZDtcblx0XHRcdFx0XHRcdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0XHRcdFx0XHRcdHRvcDogNTAlO1xuXHRcdFx0XHRcdFx0bGVmdDogNTAlO1xuXHRcdFx0XHRcdFx0bWFyZ2luOiAtMTIuNXB4IDAgMCAtMTIuNXB4O1xuXHRcdFx0XHRcdFx0Zm9udC1zaXplOiAzMHB4O1xuXHRcdFx0XHRcdFx0Y29sb3I6IHJlZDtcblx0XHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG5cdFx0XHRcdFx0XHR2ZXJ0aWNhbC1hbGlnbjogdW5zZXQ7XG5cdFx0XHRcdFx0XHRsaW5lLWhlaWdodDogMC44O1xuXHRcdFx0XHRcdFx0Ym9yZGVyLXJhZGl1czogNTAlO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdGltZyB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIGF1dG87XG5cdFx0XHRcdFx0bWF4LXdpZHRoOiAxMDAlO1xuXHRcdFx0XHRcdG1heC1oZWlnaHQ6IDEwMHB4O1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG59XG5cbi8vIEZvcm0gcHJldmlldyBhcmVhIChyaWdodCBzaWRlKS5cbi53cGZvcm1zLXBhbmVsLWNvbnRlbnQtd3JhcCB7XG59IiwiLy8gUmFkaW8gZmllbGQgdHlwZS5cblxuLy8gRmllbGQgb3B0aW9ucyBhcmVhIChsZWZ0IHNpZGUpLlxuLndwZm9ybXMtcGFuZWwtc2lkZWJhciB7XG5cblx0LndwZm9ybXMtZmllbGQtb3B0aW9uLXJhZGlvIHtcblxuXHRcdC8vIENob2ljZXMgZmlsZSB1cGxvYWQuXG5cdFx0LndwZm9ybXMtZmllbGQtb3B0aW9uLXJvdy1jaG9pY2VzIC53cGZvcm1zLWltYWdlLXVwbG9hZCB7XG5cdFx0XHRtYXJnaW46IDZweCAwIDAgNTBweDtcblx0XHRcdHdpZHRoOiA2OCU7XG5cblx0XHRcdC5wcmV2aWV3IHtcblx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogcmdiYSggMjU1LDI1NSwyNTUsMC42NSk7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHR3aWR0aDogMTAwJTtcblxuXHRcdFx0XHRhIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRhOmhvdmVyIHtcblx0XHRcdFx0XHQmOmFmdGVyIHtcblx0XHRcdFx0XHRcdGNvbnRlbnQ6IFwiXFxmMDU3XCI7XG5cdFx0XHRcdFx0XHRmb250LWZhbWlseTogRm9udEF3ZXNvbWU7XG5cdFx0XHRcdFx0XHR3aWR0aDogMjVweDtcblx0XHRcdFx0XHRcdGhlaWdodDogMjVweDtcblx0XHRcdFx0XHRcdGJvcmRlcjogMXB4IHNvbGlkIHJlZDtcblx0XHRcdFx0XHRcdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0XHRcdFx0XHRcdHRvcDogNTAlO1xuXHRcdFx0XHRcdFx0bGVmdDogNTAlO1xuXHRcdFx0XHRcdFx0bWFyZ2luOiAtMTIuNXB4IDAgMCAtMTIuNXB4O1xuXHRcdFx0XHRcdFx0Zm9udC1zaXplOiAzMHB4O1xuXHRcdFx0XHRcdFx0Y29sb3I6IHJlZDtcblx0XHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG5cdFx0XHRcdFx0XHR2ZXJ0aWNhbC1hbGlnbjogdW5zZXQ7XG5cdFx0XHRcdFx0XHRsaW5lLWhlaWdodDogMC44O1xuXHRcdFx0XHRcdFx0Ym9yZGVyLXJhZGl1czogNTAlO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdGltZyB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIGF1dG87XG5cdFx0XHRcdFx0bWF4LXdpZHRoOiAxMDAlO1xuXHRcdFx0XHRcdG1heC1oZWlnaHQ6IDEwMHB4O1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG59XG5cbi8vIEZvcm0gcHJldmlldyBhcmVhIChyaWdodCBzaWRlKS5cbi53cGZvcm1zLXBhbmVsLWNvbnRlbnQtd3JhcCB7XG59IiwiLy8gUGF5bWVudCBNdWx0aXBsZSBmaWVsZCB0eXBlLlxuXG4vLyBGaWVsZCBvcHRpb25zIGFyZWEgKGxlZnQgc2lkZSkuXG4ud3Bmb3Jtcy1wYW5lbC1zaWRlYmFyIHtcblxuXHQud3Bmb3Jtcy1maWVsZC1vcHRpb24tcGF5bWVudC1tdWx0aXBsZSB7XG5cblx0XHQvLyBDaG9pY2VzIGZpbGUgdXBsb2FkLlxuXHRcdC53cGZvcm1zLWZpZWxkLW9wdGlvbi1yb3ctY2hvaWNlcyAud3Bmb3Jtcy1pbWFnZS11cGxvYWQge1xuXHRcdFx0bWFyZ2luOiA2cHggMCAwIDUwcHg7XG5cdFx0XHR3aWR0aDogNzAlO1xuXG5cdFx0XHQucHJldmlldyB7XG5cdFx0XHRcdGJhY2tncm91bmQtY29sb3I6IHJnYmEoIDI1NSwyNTUsMjU1LDAuNjUpO1xuXHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0d2lkdGg6IDEwMCU7XG5cblx0XHRcdFx0YSB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0cG9zaXRpb246IHJlbGF0aXZlO1xuXHRcdFx0XHR9XG5cblx0XHRcdFx0YTpob3ZlciB7XG5cdFx0XHRcdFx0JjphZnRlciB7XG5cdFx0XHRcdFx0XHRjb250ZW50OiBcIlxcZjA1N1wiO1xuXHRcdFx0XHRcdFx0Zm9udC1mYW1pbHk6IEZvbnRBd2Vzb21lO1xuXHRcdFx0XHRcdFx0d2lkdGg6IDI1cHg7XG5cdFx0XHRcdFx0XHRoZWlnaHQ6IDI1cHg7XG5cdFx0XHRcdFx0XHRib3JkZXI6IDFweCBzb2xpZCByZWQ7XG5cdFx0XHRcdFx0XHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdFx0XHRcdFx0XHR0b3A6IDUwJTtcblx0XHRcdFx0XHRcdGxlZnQ6IDUwJTtcblx0XHRcdFx0XHRcdG1hcmdpbjogLTEyLjVweCAwIDAgLTEyLjVweDtcblx0XHRcdFx0XHRcdGZvbnQtc2l6ZTogMzBweDtcblx0XHRcdFx0XHRcdGNvbG9yOiByZWQ7XG5cdFx0XHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRcdFx0XHRcdFx0dmVydGljYWwtYWxpZ246IHVuc2V0O1xuXHRcdFx0XHRcdFx0bGluZS1oZWlnaHQ6IDAuODtcblx0XHRcdFx0XHRcdGJvcmRlci1yYWRpdXM6IDUwJTtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRpbWcge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRcdG1hcmdpbjogMCBhdXRvO1xuXHRcdFx0XHRcdG1heC13aWR0aDogMTAwJTtcblx0XHRcdFx0XHRtYXgtaGVpZ2h0OiAxMDBweDtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH1cblx0fVxufVxuXG4vLyBGb3JtIHByZXZpZXcgYXJlYSAocmlnaHQgc2lkZSkuXG4ud3Bmb3Jtcy1wYW5lbC1jb250ZW50LXdyYXAge1xufSIsIi8vIFNldHRpbmdzIHBhbmVsLlxuI3dwZm9ybXMtcGFuZWwtc2V0dGluZ3Mge1xuXG5cdC53cGZvcm1zLXBhbmVsLWNvbnRlbnQge1xuXG5cdFx0LndwZm9ybXMtbm90aWZpY2F0aW9uIHtcblx0XHRcdGJvcmRlcjogMXB4IHNvbGlkICNkM2QzZDM7XG5cdFx0XHRtYXJnaW46IDAgMCAyMHB4IDA7XG5cblx0XHRcdC53cGZvcm1zLXBhbmVsLWZpZWxkIHtcblx0XHRcdFx0cGFkZGluZzogMCAyMHB4O1xuXHRcdFx0fVxuXHRcdH1cblxuXHRcdC53cGZvcm1zLW5vdGlmaWNhdGlvbi1oZWFkZXIge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2YxZjFmMTtcblx0XHRcdHBhZGRpbmc6IDEwcHggMjBweDtcblx0XHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRcdG1hcmdpbjogMDtcblxuXHRcdFx0LndwZm9ybXMtbm90aWZpY2F0aW9uLW5hbWUtaG9sZGVye1xuXHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0bWFyZ2luLXJpZ2h0OiAxMDBweDtcblxuXHRcdFx0XHQud3Bmb3Jtcy1ub3RpZmljYXRpb24tbmFtZS1lZGl0IHtcblx0XHRcdFx0XHRkaXNwbGF5OiBub25lO1xuXHRcdFx0XHRcdG1hcmdpbi10b3A6IC02cHg7XG5cdFx0XHRcdFx0bWFyZ2luLWJvdHRvbTogLTZweDtcblx0XHRcdFx0XHR3aWR0aDogMTAwJTtcblxuXHRcdFx0XHRcdCYuYWN0aXZlIHtcblx0XHRcdFx0XHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRcdFx0XHR9XG5cblx0XHRcdFx0XHRpbnB1dCB7XG5cdFx0XHRcdFx0XHR3aWR0aDogMTAwJTtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0LndwZm9ybXMtbm90aWZpY2F0aW9uLWFjdGlvbnMge1xuXHRcdFx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG5cdFx0XHRcdGZsb2F0OiByaWdodDtcblx0XHRcdFx0dGV4dC1hbGlnbjogcmlnaHQ7XG5cdFx0XHRcdHdpZHRoOiAxMDBweDtcblxuXHRcdFx0XHRidXR0b24ge1xuXHRcdFx0XHRcdC13ZWJraXQtYXBwZWFyYW5jZTogbm9uZTtcblx0XHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcblx0XHRcdFx0XHRib3JkZXI6IG5vbmU7XG5cdFx0XHRcdFx0Y29sb3I6IGluaGVyaXQ7XG5cdFx0XHRcdFx0Y3Vyc29yOiBwb2ludGVyO1xuXHRcdFx0XHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRcdFx0XHRsaW5lLWhlaWdodDogMTtcblxuXHRcdFx0XHRcdCYud3Bmb3Jtcy1ub3RpZmljYXRpb24tZWRpdCB7fVxuXG5cdFx0XHRcdFx0Ji53cGZvcm1zLW5vdGlmaWNhdGlvbi1kZWxldGUge1xuXHRcdFx0XHRcdFx0Y29sb3I6ICNkMjIyMjI7XG5cdFx0XHRcdFx0XHRwYWRkaW5nLXJpZ2h0OiAwO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH1cblxuXHRcdC53cGZvcm1zLW5vdGlmaWNhdGlvbi1jb250ZW50IHtcblx0XHRcdG1hcmdpbi10b3A6IDIwcHg7XG5cdFx0fVxuXHR9XG59XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFFRUEsQUFJRSxJQUpFLENBRUgsR0FBRyxBQUFBLFNBQVMsQ0FFWCxDQUFDO0FBSkgsQUFLRSxJQUxFLENBRUgsR0FBRyxBQUFBLFNBQVMsQ0FHWCxDQUFDLEFBQUEsUUFBUTtBQUxYLEFBTUUsSUFORSxDQUVILEdBQUcsQUFBQSxTQUFTLENBSVgsQ0FBQyxBQUFBLE9BQU8sQ0FBQztFQUNSLGtCQUFrQixFQUFFLFVBQVU7RUFDOUIsZUFBZSxFQUFFLFVBQVU7RUFDM0IsVUFBVSxFQUFFLFVBQVU7Q0FDdEI7O0FBVkgsQUFZNkIsSUFaekIsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQVVYLEdBQUcsQUFBQSx1QkFBdUIsQ0FBQyxHQUFHLEFBQUEsYUFBYSxDQUFDO0VBQzNDLGFBQWEsRUFBRSxDQUFDO0VBQ2hCLFVBQVUsRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxrQkFBa0I7Q0FDeEM7O0FBZkgsQUFtQkcsSUFuQkMsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQWVYLEdBQUcsQUFBQSxhQUFhLENBRWYsR0FBRyxBQUFBLHNCQUFzQixDQUFDO0VBQ3pCLGFBQWEsRUFBRSxJQUFJO0VBQ25CLE9BQU8sRUFBRSxLQUFLO0NBS2Q7O0FBMUJKLEFBdUJJLElBdkJBLENBRUgsR0FBRyxBQUFBLFNBQVMsQ0FlWCxHQUFHLEFBQUEsYUFBYSxDQUVmLEdBQUcsQUFBQSxzQkFBc0IsQ0FJeEIsaUJBQWlCLENBQUM7RUFDakIsUUFBUSxFQUFFLE9BQU87Q0FDakI7O0FBekJMLEFBNEJH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 */
|
418 |
max-height: 100px;
|
419 |
}
|
420 |
|
421 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .wpforms-help-tooltip,
|
422 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .toggle-bulk-add-display,
|
423 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .add,
|
424 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .remove,
|
425 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .move,
|
426 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .default {
|
427 |
+
display: none;
|
428 |
+
}
|
429 |
+
|
430 |
+
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices li input[type=text] {
|
431 |
+
width: 99%;
|
432 |
+
}
|
433 |
+
|
434 |
#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload {
|
435 |
margin: 6px 0 0 50px;
|
436 |
width: 68%;
|
587 |
word-wrap: normal !important;
|
588 |
}
|
589 |
|
590 |
+
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3Bmb3Jtcy9hc3NldHMvY3NzL2J1aWxkZXIuY3NzIiwic291cmNlcyI6WyJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIuc2NzcyIsIndwZm9ybXMvYXNzZXRzL3Njc3MvX3ZhcmlhYmxlcy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fY29uZmlybS5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fYnV0dG9ucy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9hZG1pbi9fYWxlcnRzLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvX3BhbmVsLWZpZWxkcy5zY3NzIiwid3Bmb3Jtcy9hc3NldHMvc2Nzcy9idWlsZGVyL3BhbmVsLWZpZWxkcy9fY2hlY2tib3guc2NzcyIsIndwZm9ybXMvYXNzZXRzL3Njc3MvYnVpbGRlci9wYW5lbC1maWVsZHMvX2dkcHItY2hlY2tib3guc2NzcyIsIndwZm9ybXMvYXNzZXRzL3Njc3MvYnVpbGRlci9wYW5lbC1maWVsZHMvX3JhZGlvLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvcGFuZWwtZmllbGRzL19wYXltZW50LW11bHRpcGxlLnNjc3MiLCJ3cGZvcm1zL2Fzc2V0cy9zY3NzL2J1aWxkZXIvX3BhbmVsLXNldHRpbmdzLnNjc3MiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gV1BGb3JtcyBmb3JtIGJ1aWxkZXIgc3R5bGVzLlxuXG5AaW1wb3J0ICd2YXJpYWJsZXMnO1xuQGltcG9ydCAnYWRtaW4vY29uZmlybSc7XG5AaW1wb3J0ICdhZG1pbi9idXR0b25zJztcbkBpbXBvcnQgJ2FkbWluL2FsZXJ0cyc7XG5AaW1wb3J0ICdidWlsZGVyL3BhbmVsLWZpZWxkcyc7XG5AaW1wb3J0ICdidWlsZGVyL3BhbmVsLXNldHRpbmdzJztcblxuLndwZm9ybXMtc2NyZWVuLXJlYWRlci1lbGVtZW50IHtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdGNsaXA6IHJlY3QoMCwgMCwgMCwgMCkgIWltcG9ydGFudDtcblx0aGVpZ2h0OiAxcHggIWltcG9ydGFudDtcblx0d2lkdGg6IDFweCAhaW1wb3J0YW50O1xuXHRib3JkZXI6IDAgIWltcG9ydGFudDtcblx0bWFyZ2luOiAwICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmc6IDAgIWltcG9ydGFudDtcblx0b3ZlcmZsb3c6IGhpZGRlbiAhaW1wb3J0YW50O1xuXHR3b3JkLXdyYXA6IG5vcm1hbCAhaW1wb3J0YW50O1xufSIsIiRvcmFuZ2U6ICNlMjc3MzA7XG4kZGFya29yYW5nZTogI2I4NWExYjtcbiRncmVlbjogIzJhOWIzOTtcbiRibHVlOiAjMGU2Y2FkO1xuJGxpZ2h0Qmx1ZTogI2ViZjNmYjtcbiIsIi8vIEFsZXJ0IHN0eWxlcy5cbi8vIFN0eWxpbmcgdHdlYWtzIGZvciBqUXVlcnktY29uZmlybSBKUyBhbGVydCBsaWJyYXJ5LlxuYm9keSB7XG5cblx0ZGl2Lmpjb25maXJtIHtcblxuXHRcdCosXG5cdFx0Kjo6YmVmb3JlLFxuXHRcdCo6OmFmdGVyIHtcblx0XHRcdC13ZWJraXQtYm94LXNpemluZzogYm9yZGVyLWJveDtcblx0XHRcdC1tb3otYm94LXNpemluZzogYm9yZGVyLWJveDtcblx0XHRcdGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG5cdFx0fVxuXG5cdFx0ZGl2Lmpjb25maXJtLWJveC1jb250YWluZXIgZGl2Lmpjb25maXJtLWJveCB7XG5cdFx0XHRib3JkZXItcmFkaXVzOiAwO1xuXHRcdFx0Ym94LXNoYWRvdzogMCAycHggNnB4IHJnYmEoMCwgMCwgMCwgMC4yKTtcblx0XHR9XG5cblx0XHRkaXYuamNvbmZpcm0tYm94IHtcblxuXHRcdFx0ZGl2Lmpjb25maXJtLWNvbnRlbnQtcGFuZSB7XG5cdFx0XHRcdG1hcmdpbi1ib3R0b206IDIwcHg7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXG5cdFx0XHRcdC5qY29uZmlybS1jb250ZW50IHtcblx0XHRcdFx0XHRvdmVyZmxvdzogaW5pdGlhbDtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXG5cdFx0XHRkaXYuamNvbmZpcm0tY29udGVudCB7XG5cdFx0XHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRcdFx0Y29sb3I6ICM1NTU7XG5cdFx0XHRcdGxpbmUtaGVpZ2h0OiAxLjU7XG5cblx0XHRcdFx0cCB7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIDAgMTZweDtcblx0XHRcdFx0XHRmb250LXNpemU6IDE2cHg7XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0aW5wdXRbdHlwZT10ZXh0XSB7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHR3aWR0aDogOTklO1xuXHRcdFx0XHRib3JkZXI6IDFweCBzb2xpZCAjZDZkNmQ2O1xuXHRcdFx0XHRwYWRkaW5nOiAxMHB4O1xuXHRcdFx0XHRib3gtc2hhZG93OiBub25lO1xuXHRcdFx0XHRtYXJnaW46IDIwcHggYXV0byAwIGF1dG87XG5cdFx0XHR9XG5cblx0XHRcdCN3cGZvcm1zLWVtYmVkLXNob3J0Y29kZSB7XG5cdFx0XHRcdG1hcmdpbjogMjBweCAwO1xuXHRcdFx0XHR0ZXh0LWFsaWduOiBjZW50ZXI7XG5cdFx0XHRcdGZvbnQtc2l6ZTogMjRweDtcblx0XHRcdFx0cGFkZGluZzogOHB4IDVweDtcblx0XHRcdH1cblxuXHRcdFx0I3dwZm9ybXMtZW1iZWQtc2hvcnRjb2RlOmRpc2FibGVkIHtcblx0XHRcdFx0Y29sb3I6ICMzMzM7XG5cdFx0XHR9XG5cblx0XHRcdGJ1dHRvbi5idG4tY29uZmlybSB7XG5cdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICRvcmFuZ2U7XG5cdFx0XHRcdGNvbG9yOiAjZmZmO1xuXHRcdFx0XHRvdXRsaW5lOiBub25lO1xuXG5cdFx0XHRcdCY6aG92ZXIge1xuXHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICRkYXJrb3JhbmdlO1xuXHRcdFx0XHRcdGJvcmRlci1jb2xvcjogJGRhcmtvcmFuZ2U7XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0LmVycm9yIHtcblx0XHRcdFx0ZGlzcGxheTogbm9uZTtcblx0XHRcdFx0Y29sb3I6IHJlZDtcblx0XHRcdH1cblxuXHRcdFx0Lmpjb25maXJtLXRpdGxlLWMgLmpjb25maXJtLWljb24tYyB7XG5cdFx0XHRcdC13ZWJraXQtdHJhbnNpdGlvbjogbm9uZSAhaW1wb3J0YW50O1xuXHRcdFx0XHR0cmFuc2l0aW9uOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdC13ZWJraXQtdHJhbnNmb3JtOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdC1tcy10cmFuc2Zvcm06IG5vbmUgIWltcG9ydGFudDtcblx0XHRcdFx0dHJhbnNmb3JtOiBub25lICFpbXBvcnRhbnQ7XG5cdFx0XHRcdGZvbnQtc2l6ZTogNDVweCAhaW1wb3J0YW50O1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC5jaG9pY2VzIHtcblx0XHR0ZXh0LWFsaWduOiBsZWZ0O1xuXG5cdFx0aW5wdXRbdHlwZT10ZXh0XS5jaG9pY2VzX19pbnB1dCB7XG5cdFx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDtcblx0XHR9XG5cdH1cbn1cbiIsIi8vIEJ1dHRvbiBzdHlsZXMuXG4ud3Bmb3Jtcy1hZG1pbi1wYWdlIHtcblxuXHQud3Bmb3Jtcy1idG4ge1xuXHRcdGJvcmRlcjogMDtcblx0XHRib3JkZXItcmFkaXVzOiAzcHg7XG5cdFx0Y3Vyc29yOiBwb2ludGVyO1xuXHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRtYXJnaW46IDA7XG5cdFx0dGV4dC1kZWNvcmF0aW9uOiBub25lO1xuXHRcdHRleHQtYWxpZ246IGNlbnRlcjtcblx0XHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuXHRcdHdoaXRlLXNwYWNlOiBub3dyYXA7XG5cdFx0Ym94LXNoYWRvdzogbm9uZTtcblx0fVxuXG5cdC53cGZvcm1zLWJ0bi1ibG9jayB7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0d2lkdGg6IDEwMCU7XG5cdH1cblxuXHQud3Bmb3Jtcy1idG4tbWQge1xuXHRcdGZvbnQtc2l6ZTogMTNweDtcblx0XHRmb250LXdlaWdodDogNjAwO1xuXHRcdHBhZGRpbmc6IDhweCAxMnB4O1xuXHRcdG1pbi1oZWlnaHQ6IDM1cHg7XG5cdH1cblxuXHQud3Bmb3Jtcy1idG4tbGcge1xuXHRcdGZvbnQtc2l6ZTogMTZweDtcblx0XHRmb250LXdlaWdodDogNjAwO1xuXHRcdHBhZGRpbmc6IDE2cHggMjhweDtcblx0fVxuXG5cdC53cGZvcm1zLWJ0bi1vcmFuZ2Uge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICRvcmFuZ2U7XG5cdFx0Ym9yZGVyLWNvbG9yOiAkb3JhbmdlO1xuXHRcdGNvbG9yOiAjZmZmO1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAkZGFya29yYW5nZTtcblx0XHRcdGJvcmRlci1jb2xvcjogJGRhcmtvcmFuZ2U7XG5cdFx0fVxuXHR9XG5cblx0LndwZm9ybXMtYnRuLWdyZXkge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG5cdFx0Ym9yZGVyLWNvbG9yOiAjY2NjO1xuXHRcdGNvbG9yOiAjNjY2O1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZDdkN2Q3O1xuXHRcdFx0Ym9yZGVyLWNvbG9yOiAjY2NjO1xuXHRcdFx0Y29sb3I6ICM0NDQ7XG5cdFx0fVxuXHR9XG5cblx0LndwZm9ybXMtYnRuLWxpZ2h0LWdyZXkge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG5cdFx0Ym9yZGVyOiAxcHggc29saWQgI2NjYztcblx0XHRjb2xvcjogIzY2NjtcblxuXHRcdCY6aG92ZXIge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2VlZTtcblx0XHRcdGNvbG9yOiAjNDQ0O1xuXHRcdH1cblx0fVxuXG5cdC53cGZvcm1zLWJ0bi10cmFucy1ncmVlbiB7XG5cdFx0YmFja2dyb3VuZC1jb2xvcjogbm9uZTtcblx0XHRjb2xvcjogJGdyZWVuO1xuXG5cdFx0Jjpob3ZlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAkZ3JlZW47XG5cdFx0XHRjb2xvcjogI2ZmZjtcblx0XHR9XG5cblx0XHQudW5kZXJsaW5lIHtcblx0XHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuXHRcdFx0JjphZnRlciB7XG5cdFx0XHRcdGNvbnRlbnQ6IFwiIFwiO1xuXHRcdFx0XHRib3JkZXItYm90dG9tOiAxcHggZGFzaGVkICRncmVlbjtcblx0XHRcdFx0cG9zaXRpb246IGFic29sdXRlO1xuXHRcdFx0XHRib3R0b206IC01cHg7XG5cdFx0XHRcdGxlZnQ6IDA7XG5cdFx0XHRcdHdpZHRoOiAxMDAlO1xuXHRcdFx0fVxuXHRcdH1cblxuXHRcdC5kYXNoaWNvbnMge1xuXHRcdFx0aGVpZ2h0OiAxOHB4O1xuXHRcdH1cblx0fVxufVxuIiwiLy8gQWxlcnQgc3R5bGVzLlxuLndwZm9ybXMtYWRtaW4tcGFnZSB7XG5cblx0LndwZm9ybXMtYWxlcnQge1xuXHRcdHBhZGRpbmc6IDE2cHg7XG5cdFx0bWFyZ2luLWJvdHRvbTogMThweDtcblx0XHRib3JkZXI6IDFweCBzb2xpZCB0cmFuc3BhcmVudDtcblxuXHRcdGg0IHtcblx0XHRcdG1hcmdpbi10b3A6IDA7XG5cdFx0XHRjb2xvcjogaW5oZXJpdDtcblx0XHR9XG5cblx0XHRwIHtcblx0XHRcdG1hcmdpbjogMCAwIDE1cHggMDtcblxuXHRcdFx0JjpsYXN0LW9mLXR5cGUge1xuXHRcdFx0XHRtYXJnaW46IDA7XG5cdFx0XHR9XG5cdFx0fVxuXG5cdFx0Ji53cGZvcm1zLWFsZXJ0LW5vbWFyZ2luIHtcblx0XHRcdG1hcmdpbjogMDtcblx0XHR9XG5cblx0XHQmLndwZm9ybXMtYWxlcnQtc21hbGwge1xuXHRcdFx0Zm9udC1zaXplOiAxMnB4O1xuXHRcdH1cblxuXHRcdCYud3Bmb3Jtcy1hbGVydC1zdWNjZXNzIHtcblx0XHRcdGJhY2tncm91bmQtY29sb3I6ICNkZmYwZDg7XG5cdFx0XHRib3JkZXItY29sb3I6ICNkNmU5YzY7XG5cdFx0XHRjb2xvcjogIzNjNzYzZDtcblx0XHR9XG5cblx0XHQmLndwZm9ybXMtYWxlcnQtaW5mbyB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZDllZGY3O1xuXHRcdFx0Ym9yZGVyLWNvbG9yOiAjYmNlOGYxO1xuXHRcdFx0Y29sb3I6ICMzMTcwOGY7XG5cdFx0fVxuXG5cdFx0Ji53cGZvcm1zLWFsZXJ0LXdhcm5pbmcge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZjZjhlMztcblx0XHRcdGJvcmRlci1jb2xvcjogI2ZhZWJjYztcblx0XHRcdGNvbG9yOiAjOGE2ZDNiO1xuXHRcdH1cblxuXHRcdCYud3Bmb3Jtcy1hbGVydC1kYW5nZXIge1xuXHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2YyZGVkZTtcblx0XHRcdGJvcmRlci1jb2xvcjogI2ViY2NkMTtcblx0XHRcdGNvbG9yOiAjYTk0NDQyO1xuXHRcdH1cblx0fVxufSIsIi8vIEZpZWxkIHBhbmVsLlxuXG4jd3Bmb3Jtcy1wYW5lbC1maWVsZHMge1xuXG5cdC8vIFNpZGViYXIgYXJlYSAobGVmdCBzaWRlLCBmaWVsZCBidXR0b25zL29wdGlvbnMpLlxuXHQud3Bmb3Jtcy1wYW5lbC1zaWRlYmFyIHtcblxuXHRcdC5jaG9pY2VzLWxpc3Qge1xuXG5cdFx0XHQmLnNob3ctaW1hZ2VzIHtcblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtdXBsb2FkIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0fVxuXHRcdFx0fVxuXG5cdFx0XHQud3Bmb3Jtcy1pbWFnZS11cGxvYWQge1xuXHRcdFx0XHRkaXNwbGF5OiBub25lO1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC8vIFBhbmVsIGNvbnRlbnQgYXJlYSAocmlnaHQgc2lkZSwgZm9ybSBwcmV2aWV3IGFyZWEpLlxuXHQud3Bmb3Jtcy1wYW5lbC1jb250ZW50LXdyYXAge1xuXG5cdFx0Ly8gSW1hZ2UgY2hvaWNlcyAoQ2hlY2tib3gsIFJhZGlvLCBNdWx0aXBsZSBwYXltZW50IGl0ZW1zKS5cblx0XHQud3Bmb3Jtcy1maWVsZC1jaGVja2JveCxcblx0XHQud3Bmb3Jtcy1maWVsZC1yYWRpbyxcblx0XHQud3Bmb3Jtcy1maWVsZC1wYXltZW50LW11bHRpcGxlIHtcblxuXHRcdFx0Ly8gR2VuZXJhbCB0b3AgbGV2ZWwgcnVsZXMuXG5cdFx0XHQmLndwZm9ybXMtbGlzdC1pbmxpbmUge1xuXG5cdFx0XHRcdC5wcmltYXJ5LWlucHV0IHtcblx0XHRcdFx0XHRsaSB7XG5cdFx0XHRcdFx0XHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1tb2Rlcm4ge1xuXHRcdFx0XHRcdGxpIHtcblx0XHRcdFx0XHRcdG1hcmdpbjogNXB4O1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1jbGFzc2ljIHtcblx0XHRcdFx0XHRsaSB7XG5cdFx0XHRcdFx0XHRtYXJnaW46IDAgMTBweCAxMHB4IDA7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cdFx0XHR9XG5cblx0XHRcdC8vIE1vZGVybiBzdHlsZS5cblx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1tb2Rlcm4ge1xuXG5cdFx0XHRcdGltZyB7XG5cdFx0XHRcdFx0ZGlzcGxheTogaW5saW5lO1xuXHRcdFx0XHRcdG1hcmdpbjogMCBhdXRvO1xuXHRcdFx0XHRcdG1heC13aWR0aDogMTAwJTtcblx0XHRcdFx0fVxuXG5cdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRcdFx0XHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRwYWRkaW5nOiAwO1xuXHRcdFx0XHRcdGJvcmRlcjogMXB4IHNvbGlkICNmZmY7XG5cdFx0XHRcdFx0Ym9yZGVyLXJhZGl1czogM3B4O1xuXHRcdFx0XHRcdHBhZGRpbmc6IDIwcHggMjBweCAxOHB4IDIwcHg7XG5cdFx0XHRcdFx0dHJhbnNpdGlvbjogYWxsIDAuNXM7XG5cdFx0XHRcdFx0dGV4dC1hbGlnbjogY2VudGVyO1xuXG5cdFx0XHRcdFx0Jjpob3ZlciB7XG5cdFx0XHRcdFx0XHRib3JkZXI6MXB4IHNvbGlkICNkZGQ7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1pbWFnZSB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0cG9zaXRpb246IHJlbGF0aXZlO1xuXG5cdFx0XHRcdFx0JjphZnRlciB7XG5cdFx0XHRcdFx0XHRjb250ZW50OiBcIlxcMjcxNFwiO1xuXHRcdFx0XHRcdFx0Zm9udC1zaXplOiAyMnB4O1xuXHRcdFx0XHRcdFx0bGluZS1oZWlnaHQ6IDMycHg7XG5cdFx0XHRcdFx0XHRjb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRcdGJhY2tncm91bmQ6IGdyZWVuO1xuXHRcdFx0XHRcdFx0b3BhY2l0eTogMDtcblx0XHRcdFx0XHRcdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0XHRcdFx0XHRcdHRvcDogNTAlO1xuXHRcdFx0XHRcdFx0bGVmdDogNTAlO1xuXHRcdFx0XHRcdFx0bWFyZ2luOiAtMTZweCAwIDAgLTE2cHg7XG5cdFx0XHRcdFx0XHR3aWR0aDogMzJweDtcblx0XHRcdFx0XHRcdGhlaWdodDogMzJweDtcblx0XHRcdFx0XHRcdGJvcmRlci1yYWRpdXM6IDUwJTtcblx0XHRcdFx0XHRcdHRyYW5zaXRpb246IGFsbCAwLjVzO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdC53cGZvcm1zLWltYWdlLWNob2ljZXMtbGFiZWwge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRcdG1hcmdpbi10b3A6IDEycHg7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQvLyBTZWxlY3RlZCBzdGF0ZS5cblx0XHRcdFx0bGkge1xuXHRcdFx0XHRcdCYud3Bmb3Jtcy1zZWxlY3RlZCB7XG5cblx0XHRcdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Ym94LXNoYWRvdzogMCAwIDIwcHggMCByZ2JhKDAsIDAsIDAsIDAuMSk7XG5cdFx0XHRcdFx0XHR9XG5cblx0XHRcdFx0XHRcdC53cGZvcm1zLWltYWdlLWNob2ljZXMtaW1hZ2U6YWZ0ZXIge1xuXHRcdFx0XHRcdFx0XHRvcGFjaXR5OiAxO1xuXHRcdFx0XHRcdFx0fVxuXG5cdFx0XHRcdFx0XHQud3Bmb3Jtcy1pbWFnZS1jaG9pY2VzLWxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Zm9udC13ZWlnaHQ6IDcwMDtcblx0XHRcdFx0XHRcdH1cblx0XHRcdFx0XHR9XG5cdFx0XHRcdH1cblx0XHRcdH1cblxuXHRcdFx0Ly8gQ2xhc3NpYyBzdHlsZS5cblx0XHRcdHVsLndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1jbGFzc2ljIHtcblxuXHRcdFx0XHRpbWcge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGlubGluZTtcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRtYXgtd2lkdGg6IDEwMCU7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRsYWJlbCB7XG5cdFx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIGF1dG87XG5cdFx0XHRcdFx0cGFkZGluZzogMDtcblx0XHRcdFx0XHRib3JkZXI6IDJweCBzb2xpZCAjZmZmO1xuXHRcdFx0XHRcdHBhZGRpbmc6IDEwcHg7XG5cdFx0XHRcdFx0dGV4dC1hbGlnbjogY2VudGVyO1xuXG5cdFx0XHRcdFx0Jjpob3ZlciB7XG5cdFx0XHRcdFx0XHRib3JkZXItY29sb3I6ICNkZGQ7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0LndwZm9ybXMtaW1hZ2UtY2hvaWNlcy1pbWFnZSB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQud3Bmb3Jtcy1pbWFnZS1jaG9pY2VzLWxhYmVsIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRtYXJnaW4tdG9wOiA4cHg7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHQvLyBTZWxlY3RlZCBzdGF0ZS5cblx0XHRcdFx0bGkge1xuXHRcdFx0XHRcdCYud3Bmb3Jtcy1zZWxlY3RlZCB7XG5cblx0XHRcdFx0XHRcdGxhYmVsIHtcblx0XHRcdFx0XHRcdFx0Ym9yZGVyLWNvbG9yOiAjNjY2O1xuXHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH1cblx0fVxuXG5cdC8vIEZpZWxkIHNwZWNpZmljIHJ1bGVzLlxuXHRAaW1wb3J0ICdwYW5lbC1maWVsZHMvY2hlY2tib3gnO1xuXHRAaW1wb3J0ICdwYW5lbC1maWVsZHMvZ2Rwci1jaGVja2JveCc7XG5cdEBpbXBvcnQgJ3BhbmVsLWZpZWxkcy9yYWRpbyc7XG5cdEBpbXBvcnQgJ3BhbmVsLWZpZWxkcy9wYXltZW50LW11bHRpcGxlJztcbn0iLCIvLyBDaGVja2JveCBmaWVsZCB0eXBlLlxuXG4vLyBGaWVsZCBvcHRpb25zIGFyZWEgKGxlZnQgc2lkZSkuXG4ud3Bmb3Jtcy1wYW5lbC1zaWRlYmFyIHtcblxuXHQud3Bmb3Jtcy1maWVsZC1vcHRpb24tY2hlY2tib3gge1xuXG5cdFx0Ly8gQ2hvaWNlcyBmaWxlIHVwbG9hZC5cblx0XHQud3Bmb3Jtcy1maWVsZC1vcHRpb24tcm93LWNob2ljZXMgLndwZm9ybXMtaW1hZ2UtdXBsb2FkIHtcblx0XHRcdG1hcmdpbjogNnB4IDAgMCA1MHB4O1xuXHRcdFx0d2lkdGg6IDY4JTtcblxuXHRcdFx0LnByZXZpZXcge1xuXHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKCAyNTUsMjU1LDI1NSwwLjY1KTtcblx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdHdpZHRoOiAxMDAlO1xuXG5cdFx0XHRcdGEge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0XHRcdFx0fVxuXG5cdFx0XHRcdGE6aG92ZXIge1xuXHRcdFx0XHRcdCY6YWZ0ZXIge1xuXHRcdFx0XHRcdFx0Y29udGVudDogXCJcXGYwNTdcIjtcblx0XHRcdFx0XHRcdGZvbnQtZmFtaWx5OiBGb250QXdlc29tZTtcblx0XHRcdFx0XHRcdHdpZHRoOiAyNXB4O1xuXHRcdFx0XHRcdFx0aGVpZ2h0OiAyNXB4O1xuXHRcdFx0XHRcdFx0Ym9yZGVyOiAxcHggc29saWQgcmVkO1xuXHRcdFx0XHRcdFx0cG9zaXRpb246IGFic29sdXRlO1xuXHRcdFx0XHRcdFx0dG9wOiA1MCU7XG5cdFx0XHRcdFx0XHRsZWZ0OiA1MCU7XG5cdFx0XHRcdFx0XHRtYXJnaW46IC0xMi41cHggMCAwIC0xMi41cHg7XG5cdFx0XHRcdFx0XHRmb250LXNpemU6IDMwcHg7XG5cdFx0XHRcdFx0XHRjb2xvcjogcmVkO1xuXHRcdFx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRcdHZlcnRpY2FsLWFsaWduOiB1bnNldDtcblx0XHRcdFx0XHRcdGxpbmUtaGVpZ2h0OiAwLjg7XG5cdFx0XHRcdFx0XHRib3JkZXItcmFkaXVzOiA1MCU7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0aW1nIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRtYXgtd2lkdGg6IDEwMCU7XG5cdFx0XHRcdFx0bWF4LWhlaWdodDogMTAwcHg7XG5cdFx0XHRcdH1cblx0XHRcdH1cblx0XHR9XG5cdH1cbn1cblxuLy8gRm9ybSBwcmV2aWV3IGFyZWEgKHJpZ2h0IHNpZGUpLlxuLndwZm9ybXMtcGFuZWwtY29udGVudC13cmFwIHtcbn0iLCIvLyBHRFBSIENoZWNrYm94IGZpZWxkIHR5cGUuXG5cbi8vIEZpZWxkIG9wdGlvbnMgYXJlYSAobGVmdCBzaWRlKS5cbi53cGZvcm1zLXBhbmVsLXNpZGViYXIge1xuXG5cdC53cGZvcm1zLWZpZWxkLW9wdGlvbi1nZHByLWNoZWNrYm94IHtcblxuXHRcdC8vIENob2ljZXMuXG5cdFx0LndwZm9ybXMtZmllbGQtb3B0aW9uLXJvdy1jaG9pY2VzIHtcblxuXHRcdFx0Ly8gSGlkZSBjaG9pY2VzIGVsZW1lbnRzIHRoYXQgYXJlIG5vdCByZWxldmFudCB0byB0aGlzIGZpZWxkIHR5cGUuXG5cdFx0XHQud3Bmb3Jtcy1oZWxwLXRvb2x0aXAsXG5cdFx0XHQudG9nZ2xlLWJ1bGstYWRkLWRpc3BsYXksXG5cdFx0XHQuYWRkLFxuXHRcdFx0LnJlbW92ZSxcblx0XHRcdC5tb3ZlLFxuXHRcdFx0LmRlZmF1bHQge1xuXHRcdFx0XHRkaXNwbGF5OiBub25lO1xuXHRcdFx0fVxuXG5cdFx0XHQvLyBNYWtlIEFncmVlbWVudCB0ZXh0IGZpZWxkIGZ1bGwgd2lkdGguXG5cdFx0XHRsaSB7XG5cdFx0XHRcdGlucHV0W3R5cGU9dGV4dF0ge1xuXHRcdFx0XHRcdHdpZHRoOiA5OSU7XG5cdFx0XHRcdH1cblx0XHRcdH1cblx0XHR9XG5cdH1cbn1cblxuLy8gRm9ybSBwcmV2aWV3IGFyZWEgKHJpZ2h0IHNpZGUpLlxuLndwZm9ybXMtcGFuZWwtY29udGVudC13cmFwIHtcbn0iLCIvLyBSYWRpbyBmaWVsZCB0eXBlLlxuXG4vLyBGaWVsZCBvcHRpb25zIGFyZWEgKGxlZnQgc2lkZSkuXG4ud3Bmb3Jtcy1wYW5lbC1zaWRlYmFyIHtcblxuXHQud3Bmb3Jtcy1maWVsZC1vcHRpb24tcmFkaW8ge1xuXG5cdFx0Ly8gQ2hvaWNlcyBmaWxlIHVwbG9hZC5cblx0XHQud3Bmb3Jtcy1maWVsZC1vcHRpb24tcm93LWNob2ljZXMgLndwZm9ybXMtaW1hZ2UtdXBsb2FkIHtcblx0XHRcdG1hcmdpbjogNnB4IDAgMCA1MHB4O1xuXHRcdFx0d2lkdGg6IDY4JTtcblxuXHRcdFx0LnByZXZpZXcge1xuXHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKCAyNTUsMjU1LDI1NSwwLjY1KTtcblx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdHdpZHRoOiAxMDAlO1xuXG5cdFx0XHRcdGEge1xuXHRcdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0XHRcdFx0fVxuXG5cdFx0XHRcdGE6aG92ZXIge1xuXHRcdFx0XHRcdCY6YWZ0ZXIge1xuXHRcdFx0XHRcdFx0Y29udGVudDogXCJcXGYwNTdcIjtcblx0XHRcdFx0XHRcdGZvbnQtZmFtaWx5OiBGb250QXdlc29tZTtcblx0XHRcdFx0XHRcdHdpZHRoOiAyNXB4O1xuXHRcdFx0XHRcdFx0aGVpZ2h0OiAyNXB4O1xuXHRcdFx0XHRcdFx0Ym9yZGVyOiAxcHggc29saWQgcmVkO1xuXHRcdFx0XHRcdFx0cG9zaXRpb246IGFic29sdXRlO1xuXHRcdFx0XHRcdFx0dG9wOiA1MCU7XG5cdFx0XHRcdFx0XHRsZWZ0OiA1MCU7XG5cdFx0XHRcdFx0XHRtYXJnaW46IC0xMi41cHggMCAwIC0xMi41cHg7XG5cdFx0XHRcdFx0XHRmb250LXNpemU6IDMwcHg7XG5cdFx0XHRcdFx0XHRjb2xvcjogcmVkO1xuXHRcdFx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcblx0XHRcdFx0XHRcdHZlcnRpY2FsLWFsaWduOiB1bnNldDtcblx0XHRcdFx0XHRcdGxpbmUtaGVpZ2h0OiAwLjg7XG5cdFx0XHRcdFx0XHRib3JkZXItcmFkaXVzOiA1MCU7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cblx0XHRcdFx0aW1nIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRtYXJnaW46IDAgYXV0bztcblx0XHRcdFx0XHRtYXgtd2lkdGg6IDEwMCU7XG5cdFx0XHRcdFx0bWF4LWhlaWdodDogMTAwcHg7XG5cdFx0XHRcdH1cblx0XHRcdH1cblx0XHR9XG5cdH1cbn1cblxuLy8gRm9ybSBwcmV2aWV3IGFyZWEgKHJpZ2h0IHNpZGUpLlxuLndwZm9ybXMtcGFuZWwtY29udGVudC13cmFwIHtcbn0iLCIvLyBQYXltZW50IE11bHRpcGxlIGZpZWxkIHR5cGUuXG5cbi8vIEZpZWxkIG9wdGlvbnMgYXJlYSAobGVmdCBzaWRlKS5cbi53cGZvcm1zLXBhbmVsLXNpZGViYXIge1xuXG5cdC53cGZvcm1zLWZpZWxkLW9wdGlvbi1wYXltZW50LW11bHRpcGxlIHtcblxuXHRcdC8vIENob2ljZXMgZmlsZSB1cGxvYWQuXG5cdFx0LndwZm9ybXMtZmllbGQtb3B0aW9uLXJvdy1jaG9pY2VzIC53cGZvcm1zLWltYWdlLXVwbG9hZCB7XG5cdFx0XHRtYXJnaW46IDZweCAwIDAgNTBweDtcblx0XHRcdHdpZHRoOiA3MCU7XG5cblx0XHRcdC5wcmV2aWV3IHtcblx0XHRcdFx0YmFja2dyb3VuZC1jb2xvcjogcmdiYSggMjU1LDI1NSwyNTUsMC42NSk7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHR3aWR0aDogMTAwJTtcblxuXHRcdFx0XHRhIHtcblx0XHRcdFx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRcdFx0XHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdFx0XHRcdH1cblxuXHRcdFx0XHRhOmhvdmVyIHtcblx0XHRcdFx0XHQmOmFmdGVyIHtcblx0XHRcdFx0XHRcdGNvbnRlbnQ6IFwiXFxmMDU3XCI7XG5cdFx0XHRcdFx0XHRmb250LWZhbWlseTogRm9udEF3ZXNvbWU7XG5cdFx0XHRcdFx0XHR3aWR0aDogMjVweDtcblx0XHRcdFx0XHRcdGhlaWdodDogMjVweDtcblx0XHRcdFx0XHRcdGJvcmRlcjogMXB4IHNvbGlkIHJlZDtcblx0XHRcdFx0XHRcdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0XHRcdFx0XHRcdHRvcDogNTAlO1xuXHRcdFx0XHRcdFx0bGVmdDogNTAlO1xuXHRcdFx0XHRcdFx0bWFyZ2luOiAtMTIuNXB4IDAgMCAtMTIuNXB4O1xuXHRcdFx0XHRcdFx0Zm9udC1zaXplOiAzMHB4O1xuXHRcdFx0XHRcdFx0Y29sb3I6IHJlZDtcblx0XHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG5cdFx0XHRcdFx0XHR2ZXJ0aWNhbC1hbGlnbjogdW5zZXQ7XG5cdFx0XHRcdFx0XHRsaW5lLWhlaWdodDogMC44O1xuXHRcdFx0XHRcdFx0Ym9yZGVyLXJhZGl1czogNTAlO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXG5cdFx0XHRcdGltZyB7XG5cdFx0XHRcdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0XHRcdFx0bWFyZ2luOiAwIGF1dG87XG5cdFx0XHRcdFx0bWF4LXdpZHRoOiAxMDAlO1xuXHRcdFx0XHRcdG1heC1oZWlnaHQ6IDEwMHB4O1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG59XG5cbi8vIEZvcm0gcHJldmlldyBhcmVhIChyaWdodCBzaWRlKS5cbi53cGZvcm1zLXBhbmVsLWNvbnRlbnQtd3JhcCB7XG59IiwiLy8gU2V0dGluZ3MgcGFuZWwuXG4jd3Bmb3Jtcy1wYW5lbC1zZXR0aW5ncyB7XG5cblx0LndwZm9ybXMtcGFuZWwtY29udGVudCB7XG5cblx0XHQud3Bmb3Jtcy1ub3RpZmljYXRpb24ge1xuXHRcdFx0Ym9yZGVyOiAxcHggc29saWQgI2QzZDNkMztcblx0XHRcdG1hcmdpbjogMCAwIDIwcHggMDtcblxuXHRcdFx0LndwZm9ybXMtcGFuZWwtZmllbGQge1xuXHRcdFx0XHRwYWRkaW5nOiAwIDIwcHg7XG5cdFx0XHR9XG5cdFx0fVxuXG5cdFx0LndwZm9ybXMtbm90aWZpY2F0aW9uLWhlYWRlciB7XG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yOiAjZjFmMWYxO1xuXHRcdFx0cGFkZGluZzogMTBweCAyMHB4O1xuXHRcdFx0Zm9udC1zaXplOiAxNnB4O1xuXHRcdFx0bWFyZ2luOiAwO1xuXG5cdFx0XHQud3Bmb3Jtcy1ub3RpZmljYXRpb24tbmFtZS1ob2xkZXJ7XG5cdFx0XHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdFx0XHRtYXJnaW4tcmlnaHQ6IDEwMHB4O1xuXG5cdFx0XHRcdC53cGZvcm1zLW5vdGlmaWNhdGlvbi1uYW1lLWVkaXQge1xuXHRcdFx0XHRcdGRpc3BsYXk6IG5vbmU7XG5cdFx0XHRcdFx0bWFyZ2luLXRvcDogLTZweDtcblx0XHRcdFx0XHRtYXJnaW4tYm90dG9tOiAtNnB4O1xuXHRcdFx0XHRcdHdpZHRoOiAxMDAlO1xuXG5cdFx0XHRcdFx0Ji5hY3RpdmUge1xuXHRcdFx0XHRcdFx0ZGlzcGxheTogaW5saW5lLWJsb2NrO1xuXHRcdFx0XHRcdH1cblxuXHRcdFx0XHRcdGlucHV0IHtcblx0XHRcdFx0XHRcdHdpZHRoOiAxMDAlO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fVxuXHRcdFx0fVxuXG5cdFx0XHQud3Bmb3Jtcy1ub3RpZmljYXRpb24tYWN0aW9ucyB7XG5cdFx0XHRcdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0XHRcdFx0ZmxvYXQ6IHJpZ2h0O1xuXHRcdFx0XHR0ZXh0LWFsaWduOiByaWdodDtcblx0XHRcdFx0d2lkdGg6IDEwMHB4O1xuXG5cdFx0XHRcdGJ1dHRvbiB7XG5cdFx0XHRcdFx0LXdlYmtpdC1hcHBlYXJhbmNlOiBub25lO1xuXHRcdFx0XHRcdGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xuXHRcdFx0XHRcdGJvcmRlcjogbm9uZTtcblx0XHRcdFx0XHRjb2xvcjogaW5oZXJpdDtcblx0XHRcdFx0XHRjdXJzb3I6IHBvaW50ZXI7XG5cdFx0XHRcdFx0Zm9udC1zaXplOiAxNnB4O1xuXHRcdFx0XHRcdGxpbmUtaGVpZ2h0OiAxO1xuXG5cdFx0XHRcdFx0Ji53cGZvcm1zLW5vdGlmaWNhdGlvbi1lZGl0IHt9XG5cblx0XHRcdFx0XHQmLndwZm9ybXMtbm90aWZpY2F0aW9uLWRlbGV0ZSB7XG5cdFx0XHRcdFx0XHRjb2xvcjogI2QyMjIyMjtcblx0XHRcdFx0XHRcdHBhZGRpbmctcmlnaHQ6IDA7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fVxuXG5cdFx0LndwZm9ybXMtbm90aWZpY2F0aW9uLWNvbnRlbnQge1xuXHRcdFx0bWFyZ2luLXRvcDogMjBweDtcblx0XHR9XG5cdH1cbn1cbiJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUVFQSxBQUlFLElBSkUsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQUVYLENBQUM7QUFKSCxBQUtFLElBTEUsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQUdYLENBQUMsQUFBQSxRQUFRO0FBTFgsQUFNRSxJQU5FLENBRUgsR0FBRyxBQUFBLFNBQVMsQ0FJWCxDQUFDLEFBQUEsT0FBTyxDQUFDO0VBQ1Isa0JBQWtCLEVBQUUsVUFBVTtFQUM5QixlQUFlLEVBQUUsVUFBVTtFQUMzQixVQUFVLEVBQUUsVUFBVTtDQUN0Qjs7QUFWSCxBQVk2QixJQVp6QixDQUVILEdBQUcsQUFBQSxTQUFTLENBVVgsR0FBRyxBQUFBLHVCQUF1QixDQUFDLEdBQUcsQUFBQSxhQUFhLENBQUM7RUFDM0MsYUFBYSxFQUFFLENBQUM7RUFDaEIsVUFBVSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLGtCQUFrQjtDQUN4Qzs7QUFmSCxBQW1CRyxJQW5CQyxDQUVILEdBQUcsQUFBQSxTQUFTLENBZVgsR0FBRyxBQUFBLGFBQWEsQ0FFZixHQUFHLEFBQUEsc0JBQXNCLENBQUM7RUFDekIsYUFBYSxFQUFFLElBQUk7RUFDbkIsT0FBTyxFQUFFLEtBQUs7Q0FLZDs7QUExQkosQUF1QkksSUF2QkEsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQWVYLEdBQUcsQUFBQSxhQUFhLENBRWYsR0FBRyxBQUFBLHNCQUFzQixDQUl4QixpQkFBaUIsQ0FBQztFQUNqQixRQUFRLEVBQUUsT0FBTztDQUNqQjs7QUF6QkwsQUE0QkcsSUE1QkMsQ0FFSCxHQUFHLEFBQUEsU0FBUyxDQWVYLEdBQUcsQUFBQSxhQUFhLENBV2YsR0FBRyxBQUFBLGlCQUFpQixDQUFDO0VBQ3BCLFNBQVMsRUFBRSxJQUFJO0VBQ2YsS0FBSyxFQUFFLElBQUk7RUFDWCxXQUFXLEVBQUUsR0FBRztDQU1oQjs7QUFy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 */
|
assets/css/builder.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
body div.jconfirm *,body div.jconfirm *::before,body div.jconfirm *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body div.jconfirm div.jconfirm-box-container div.jconfirm-box{border-radius:0;box-shadow:0 2px 6px rgba(0,0,0,0.2)}body div.jconfirm div.jconfirm-box div.jconfirm-content-pane{margin-bottom:20px;display:block}body div.jconfirm div.jconfirm-box div.jconfirm-content-pane .jconfirm-content{overflow:initial}body div.jconfirm div.jconfirm-box div.jconfirm-content{font-size:16px;color:#555;line-height:1.5}body div.jconfirm div.jconfirm-box div.jconfirm-content p{margin:0 0 16px;font-size:16px}body div.jconfirm div.jconfirm-box input[type=text]{display:block;width:99%;border:1px solid #d6d6d6;padding:10px;box-shadow:none;margin:20px auto 0 auto}body div.jconfirm div.jconfirm-box #wpforms-embed-shortcode{margin:20px 0;text-align:center;font-size:24px;padding:8px 5px}body div.jconfirm div.jconfirm-box #wpforms-embed-shortcode:disabled{color:#333}body div.jconfirm div.jconfirm-box button.btn-confirm{background-color:#e27730;color:#fff;outline:none}body div.jconfirm div.jconfirm-box button.btn-confirm:hover{background-color:#b85a1b;border-color:#b85a1b}body div.jconfirm div.jconfirm-box .error{display:none;color:red}body div.jconfirm div.jconfirm-box .jconfirm-title-c .jconfirm-icon-c{-webkit-transition:none !important;transition:none !important;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;font-size:45px !important}body .choices{text-align:left}body .choices input[type=text].choices__input{display:inline-block !important}.wpforms-admin-page .wpforms-btn{border:0;border-radius:3px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-align:center;vertical-align:middle;white-space:nowrap;box-shadow:none}.wpforms-admin-page .wpforms-btn-block{display:block;width:100%}.wpforms-admin-page .wpforms-btn-md{font-size:13px;font-weight:600;padding:8px 12px;min-height:35px}.wpforms-admin-page .wpforms-btn-lg{font-size:16px;font-weight:600;padding:16px 28px}.wpforms-admin-page .wpforms-btn-orange{background-color:#e27730;border-color:#e27730;color:#fff}.wpforms-admin-page .wpforms-btn-orange:hover{background-color:#b85a1b;border-color:#b85a1b}.wpforms-admin-page .wpforms-btn-grey{background-color:#eee;border-color:#ccc;color:#666}.wpforms-admin-page .wpforms-btn-grey:hover{background-color:#d7d7d7;border-color:#ccc;color:#444}.wpforms-admin-page .wpforms-btn-light-grey{background-color:#f5f5f5;border:1px solid #ccc;color:#666}.wpforms-admin-page .wpforms-btn-light-grey:hover{background-color:#eee;color:#444}.wpforms-admin-page .wpforms-btn-trans-green{background-color:none;color:#2a9b39}.wpforms-admin-page .wpforms-btn-trans-green:hover{background-color:#2a9b39;color:#fff}.wpforms-admin-page .wpforms-btn-trans-green .underline{position:relative}.wpforms-admin-page .wpforms-btn-trans-green .underline:after{content:" ";border-bottom:1px dashed #2a9b39;position:absolute;bottom:-5px;left:0;width:100%}.wpforms-admin-page .wpforms-btn-trans-green .dashicons{height:18px}.wpforms-admin-page .wpforms-alert{padding:16px;margin-bottom:18px;border:1px solid transparent}.wpforms-admin-page .wpforms-alert h4{margin-top:0;color:inherit}.wpforms-admin-page .wpforms-alert p{margin:0 0 15px 0}.wpforms-admin-page .wpforms-alert p:last-of-type{margin:0}.wpforms-admin-page .wpforms-alert.wpforms-alert-nomargin{margin:0}.wpforms-admin-page .wpforms-alert.wpforms-alert-small{font-size:12px}.wpforms-admin-page .wpforms-alert.wpforms-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.wpforms-admin-page .wpforms-alert.wpforms-alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.wpforms-admin-page .wpforms-alert.wpforms-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.wpforms-admin-page .wpforms-alert.wpforms-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}#wpforms-panel-fields .wpforms-panel-sidebar .choices-list.show-images .wpforms-image-upload{display:block}#wpforms-panel-fields .wpforms-panel-sidebar .choices-list .wpforms-image-upload{display:none}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline .primary-input li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline .primary-input li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline .primary-input li{vertical-align:top}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline ul.wpforms-image-choices-modern li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline ul.wpforms-image-choices-modern li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline ul.wpforms-image-choices-modern li{margin:5px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline ul.wpforms-image-choices-classic li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline ul.wpforms-image-choices-classic li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline ul.wpforms-image-choices-classic li{margin:0 10px 10px 0}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern img{display:inline;margin:0 auto;max-width:100%}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern label{background-color:#fff;display:inline-block;margin:0 auto;padding:0;border:1px solid #fff;border-radius:3px;padding:20px 20px 18px 20px;transition:all 0.5s;text-align:center}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern label:hover{border:1px solid #ddd}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-image{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-image:after{content:"\2714";font-size:22px;line-height:32px;color:#fff;background:green;opacity:0;position:absolute;top:50%;left:50%;margin:-16px 0 0 -16px;width:32px;height:32px;border-radius:50%;transition:all 0.5s}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-label{display:block;margin-top:12px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected label{box-shadow:0 0 20px 0 rgba(0,0,0,0.1)}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after{opacity:1}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label{font-weight:700}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic img{display:inline;margin:0 auto;max-width:100%}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic label{background-color:#fff;display:inline-block;margin:0 auto;padding:0;border:2px solid #fff;padding:10px;text-align:center}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic label:hover{border-color:#ddd}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic .wpforms-image-choices-image{display:block}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic .wpforms-image-choices-label{display:block;margin-top:8px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic li.wpforms-selected label{border-color:#666}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:68%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:68%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:70%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification{border:1px solid #d3d3d3;margin:0 0 20px 0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification .wpforms-panel-field{padding:0 20px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header{background-color:#f1f1f1;padding:10px 20px;font-size:16px;margin:0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder{display:block;margin-right:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit{display:none;margin-top:-6px;margin-bottom:-6px;width:100%}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit.active{display:inline-block}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit input{width:100%}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions{display:inline-block;float:right;text-align:right;width:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions button{-webkit-appearance:none;background-color:transparent;border:none;color:inherit;cursor:pointer;font-size:16px;line-height:1}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions button.wpforms-notification-delete{color:#d22222;padding-right:0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-content{margin-top:20px}.wpforms-screen-reader-element{position:absolute !important;clip:rect(0, 0, 0, 0) !important;height:1px !important;width:1px !important;border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;word-wrap:normal !important}
|
1 |
+
body div.jconfirm *,body div.jconfirm *::before,body div.jconfirm *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body div.jconfirm div.jconfirm-box-container div.jconfirm-box{border-radius:0;box-shadow:0 2px 6px rgba(0,0,0,0.2)}body div.jconfirm div.jconfirm-box div.jconfirm-content-pane{margin-bottom:20px;display:block}body div.jconfirm div.jconfirm-box div.jconfirm-content-pane .jconfirm-content{overflow:initial}body div.jconfirm div.jconfirm-box div.jconfirm-content{font-size:16px;color:#555;line-height:1.5}body div.jconfirm div.jconfirm-box div.jconfirm-content p{margin:0 0 16px;font-size:16px}body div.jconfirm div.jconfirm-box input[type=text]{display:block;width:99%;border:1px solid #d6d6d6;padding:10px;box-shadow:none;margin:20px auto 0 auto}body div.jconfirm div.jconfirm-box #wpforms-embed-shortcode{margin:20px 0;text-align:center;font-size:24px;padding:8px 5px}body div.jconfirm div.jconfirm-box #wpforms-embed-shortcode:disabled{color:#333}body div.jconfirm div.jconfirm-box button.btn-confirm{background-color:#e27730;color:#fff;outline:none}body div.jconfirm div.jconfirm-box button.btn-confirm:hover{background-color:#b85a1b;border-color:#b85a1b}body div.jconfirm div.jconfirm-box .error{display:none;color:red}body div.jconfirm div.jconfirm-box .jconfirm-title-c .jconfirm-icon-c{-webkit-transition:none !important;transition:none !important;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;font-size:45px !important}body .choices{text-align:left}body .choices input[type=text].choices__input{display:inline-block !important}.wpforms-admin-page .wpforms-btn{border:0;border-radius:3px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-align:center;vertical-align:middle;white-space:nowrap;box-shadow:none}.wpforms-admin-page .wpforms-btn-block{display:block;width:100%}.wpforms-admin-page .wpforms-btn-md{font-size:13px;font-weight:600;padding:8px 12px;min-height:35px}.wpforms-admin-page .wpforms-btn-lg{font-size:16px;font-weight:600;padding:16px 28px}.wpforms-admin-page .wpforms-btn-orange{background-color:#e27730;border-color:#e27730;color:#fff}.wpforms-admin-page .wpforms-btn-orange:hover{background-color:#b85a1b;border-color:#b85a1b}.wpforms-admin-page .wpforms-btn-grey{background-color:#eee;border-color:#ccc;color:#666}.wpforms-admin-page .wpforms-btn-grey:hover{background-color:#d7d7d7;border-color:#ccc;color:#444}.wpforms-admin-page .wpforms-btn-light-grey{background-color:#f5f5f5;border:1px solid #ccc;color:#666}.wpforms-admin-page .wpforms-btn-light-grey:hover{background-color:#eee;color:#444}.wpforms-admin-page .wpforms-btn-trans-green{background-color:none;color:#2a9b39}.wpforms-admin-page .wpforms-btn-trans-green:hover{background-color:#2a9b39;color:#fff}.wpforms-admin-page .wpforms-btn-trans-green .underline{position:relative}.wpforms-admin-page .wpforms-btn-trans-green .underline:after{content:" ";border-bottom:1px dashed #2a9b39;position:absolute;bottom:-5px;left:0;width:100%}.wpforms-admin-page .wpforms-btn-trans-green .dashicons{height:18px}.wpforms-admin-page .wpforms-alert{padding:16px;margin-bottom:18px;border:1px solid transparent}.wpforms-admin-page .wpforms-alert h4{margin-top:0;color:inherit}.wpforms-admin-page .wpforms-alert p{margin:0 0 15px 0}.wpforms-admin-page .wpforms-alert p:last-of-type{margin:0}.wpforms-admin-page .wpforms-alert.wpforms-alert-nomargin{margin:0}.wpforms-admin-page .wpforms-alert.wpforms-alert-small{font-size:12px}.wpforms-admin-page .wpforms-alert.wpforms-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.wpforms-admin-page .wpforms-alert.wpforms-alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.wpforms-admin-page .wpforms-alert.wpforms-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.wpforms-admin-page .wpforms-alert.wpforms-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}#wpforms-panel-fields .wpforms-panel-sidebar .choices-list.show-images .wpforms-image-upload{display:block}#wpforms-panel-fields .wpforms-panel-sidebar .choices-list .wpforms-image-upload{display:none}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline .primary-input li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline .primary-input li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline .primary-input li{vertical-align:top}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline ul.wpforms-image-choices-modern li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline ul.wpforms-image-choices-modern li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline ul.wpforms-image-choices-modern li{margin:5px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox.wpforms-list-inline ul.wpforms-image-choices-classic li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio.wpforms-list-inline ul.wpforms-image-choices-classic li,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple.wpforms-list-inline ul.wpforms-image-choices-classic li{margin:0 10px 10px 0}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern img{display:inline;margin:0 auto;max-width:100%}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern label{background-color:#fff;display:inline-block;margin:0 auto;padding:0;border:1px solid #fff;border-radius:3px;padding:20px 20px 18px 20px;transition:all 0.5s;text-align:center}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern label:hover{border:1px solid #ddd}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-image{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-image:after{content:"\2714";font-size:22px;line-height:32px;color:#fff;background:green;opacity:0;position:absolute;top:50%;left:50%;margin:-16px 0 0 -16px;width:32px;height:32px;border-radius:50%;transition:all 0.5s}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern .wpforms-image-choices-label{display:block;margin-top:12px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected label{box-shadow:0 0 20px 0 rgba(0,0,0,0.1)}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-image:after{opacity:1}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-image-choices-label{font-weight:700}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic img,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic img{display:inline;margin:0 auto;max-width:100%}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic label{background-color:#fff;display:inline-block;margin:0 auto;padding:0;border:2px solid #fff;padding:10px;text-align:center}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic label:hover,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic label:hover{border-color:#ddd}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic .wpforms-image-choices-image,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic .wpforms-image-choices-image{display:block}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic .wpforms-image-choices-label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic .wpforms-image-choices-label{display:block;margin-top:8px}#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-checkbox ul.wpforms-image-choices-classic li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-radio ul.wpforms-image-choices-classic li.wpforms-selected label,#wpforms-panel-fields .wpforms-panel-content-wrap .wpforms-field-payment-multiple ul.wpforms-image-choices-classic li.wpforms-selected label{border-color:#666}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:68%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-checkbox .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .wpforms-help-tooltip,#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .toggle-bulk-add-display,#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .add,#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .remove,#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .move,#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices .default{display:none}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-gdpr-checkbox .wpforms-field-option-row-choices li input[type=text]{width:99%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:68%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-radio .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload{margin:6px 0 0 50px;width:70%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview{background-color:rgba(255,255,255,0.65);display:block;width:100%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview a{display:block;position:relative}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview a:hover:after{content:"\f057";font-family:FontAwesome;width:25px;height:25px;border:1px solid red;position:absolute;top:50%;left:50%;margin:-12.5px 0 0 -12.5px;font-size:30px;color:red;background-color:#fff;vertical-align:unset;line-height:0.8;border-radius:50%}#wpforms-panel-fields .wpforms-panel-sidebar .wpforms-field-option-payment-multiple .wpforms-field-option-row-choices .wpforms-image-upload .preview img{display:block;margin:0 auto;max-width:100%;max-height:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification{border:1px solid #d3d3d3;margin:0 0 20px 0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification .wpforms-panel-field{padding:0 20px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header{background-color:#f1f1f1;padding:10px 20px;font-size:16px;margin:0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder{display:block;margin-right:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit{display:none;margin-top:-6px;margin-bottom:-6px;width:100%}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit.active{display:inline-block}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-name-holder .wpforms-notification-name-edit input{width:100%}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions{display:inline-block;float:right;text-align:right;width:100px}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions button{-webkit-appearance:none;background-color:transparent;border:none;color:inherit;cursor:pointer;font-size:16px;line-height:1}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-header .wpforms-notification-actions button.wpforms-notification-delete{color:#d22222;padding-right:0}#wpforms-panel-settings .wpforms-panel-content .wpforms-notification-content{margin-top:20px}.wpforms-screen-reader-element{position:absolute !important;clip:rect(0, 0, 0, 0) !important;height:1px !important;width:1px !important;border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;word-wrap:normal !important}
|
assets/css/wpforms-base.css
CHANGED
@@ -47,7 +47,7 @@
|
|
47 |
height: 70px;
|
48 |
}
|
49 |
|
50 |
-
/* Field sizes - medium */
|
51 |
.wpforms-container input.wpforms-field-large,
|
52 |
.wpforms-container select.wpforms-field-large,
|
53 |
.wpforms-container .wpforms-field-row.wpforms-field-large {
|
47 |
height: 70px;
|
48 |
}
|
49 |
|
50 |
+
/* Field sizes - medium */
|
51 |
.wpforms-container input.wpforms-field-large,
|
52 |
.wpforms-container select.wpforms-field-large,
|
53 |
.wpforms-container .wpforms-field-row.wpforms-field-large {
|
assets/js/admin.js
CHANGED
@@ -1 +1,1631 @@
|
|
1 |
-
!function(e){"use strict";var t,n={settings:{iconActivate:'<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',iconDeactivate:'<i class="fa fa-toggle-on" aria-hidden="true"></i>',iconInstall:'<i class="fa fa-cloud-download" aria-hidden="true"></i>',iconSpinner:'<i class="fa fa-spinner fa-spin" aria-hidden="true"></i>',mediaFrame:!1},init:function(){t=this.settings,e(document).ready(n.ready),n.initFormOverview(),n.initEntriesSingle(),n.initEntriesList(),n.initWelcome(),n.initAddons(),n.initSettings(),n.initTools(),n.initUpgrades()},ready:function(){e(".notice").show(),e("#screen-meta-links, #screen-meta").prependTo("#wpforms-header-temp").show(),n.initChoicesJS(),n.initCheckboxMultiselectColumns(),e(".wpforms-color-picker").minicolors(),e(".wpforms-file-upload").each(function(){var t=e(this).find("input[type=file]"),n=e(this).find("label"),o=n.html();t.on("change",function(e){var t="";this.files&&this.files.length>1?t=(this.getAttribute("data-multiple-caption")||"").replace("{count}",this.files.length):e.target.value&&(t=e.target.value.split("\\").pop()),t?n.find(".fld").html(t):n.html(o)}),t.on("focus",function(){t.addClass("has-focus")}).on("blur",function(){t.removeClass("has-focus")})}),jconfirm.defaults={closeIcon:!0,backgroundDismiss:!0,escapeKey:!0,animationBounce:1,useBootstrap:!1,theme:"modern",boxWidth:"400px",animateFromElement:!1},e(document).on("click",".wpforms-upgrade-modal",function(){e.alert({title:!1,content:wpforms_admin.upgrade_modal,icon:"fa fa-info-circle",type:"blue",boxWidth:"565px",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).trigger("wpformsReady")},initChoicesJS:function(){e(".choicesjs-select").each(function(){var t=e(this),n={searchEnabled:!1};t.attr("multiple")&&(n.searchEnabled=!0,n.removeItemButton=!0),t.data("placeholder")&&(n.placeholderValue=t.data("placeholder")),"off"===t.data("sorting")&&(n.shouldSort=!1),t.data("search")&&(n.searchEnabled=!0),new Choices(t[0],n)})},initCheckboxMultiselectColumns:function(){e(document).on("change",".checkbox-multiselect-columns input",function(){var t=e(this),n=t.parent(),o=t.closest(".checkbox-multiselect-columns"),i=n.text(),r="check-item-"+t.val(),s=o.find("#"+r);t.prop("checked")?(t.parent().addClass("checked"),s.length||o.find(".second-column ul").append('<li id="'+r+'">'+i+"</li>")):(t.parent().removeClass("checked"),o.find("#"+r).remove())}),e(document).on("click",".checkbox-multiselect-columns .all",function(t){t.preventDefault(),e(this).closest(".checkbox-multiselect-columns").find("input[type=checkbox]").prop("checked",!0).trigger("change"),e(this).remove()})},initFormOverview:function(){e(document).on("click","#wpforms-overview .wp-list-table .delete a, #wpforms-overview .wp-list-table .duplicate a",function(t){t.preventDefault();var n=e(this).attr("href"),o=e(this).parent().hasClass("delete")?wpforms_admin.form_delete_confirm:wpforms_admin.form_duplicate_confirm;e.confirm({title:!1,content:o,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},initEntriesSingle:function(){"wpforms-entries"===n.getQueryString("page")&&"details"===n.getQueryString("view")&&n.entryHotkeys(),e(document).on("click","#wpforms-entries-single .submitdelete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-single .wpforms-entry-print a",function(t){t.preventDefault(),window.open(e(this).attr("href"))}),e(document).on("click","#wpforms-entries-single .wpforms-empty-field-toggle",function(t){t.preventDefault(),"true"===wpCookies.get("wpforms_entry_hide_empty")?(wpCookies.remove("wpforms_entry_hide_empty"),e(this).text(wpforms_admin.entry_empty_fields_hide)):(wpCookies.set("wpforms_entry_hide_empty","true",2592e3),e(this).text(wpforms_admin.entry_empty_fields_show)),e(".wpforms-entry-field.empty").toggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .add",function(t){t.preventDefault(),e(this).hide().next("form").slideToggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .cancel",function(t){t.preventDefault(),e(this).closest("form").slideToggle(),e(".wpforms-entry-notes-new .add").show()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-byline .note-delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_note_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entryHotkeys:function(){e(document).keydown(function(t){if(74!==t.keyCode||n.isFormTypeNode(t.target.nodeName)){if(75===t.keyCode&&!n.isFormTypeNode(t.target.nodeName)){var o=e("#wpforms-entry-next-link").attr("href");"#"!==o&&(window.location.href=o)}}else{var i=e("#wpforms-entry-prev-link").attr("href");"#"!==i&&(window.location.href=i)}})},initEntriesList:function(){e(document).on("click","#wpforms-entries-table-edit-columns",function(e){e.preventDefault(),n.entriesListFieldColumn()}),e(document).on("click","#wpforms-entries-list .form-selector .toggle",function(t){t.preventDefault(),e(this).toggleClass("active").next(".form-list").toggle()}),e(document).on("click","#wpforms-entries-list .wp-list-table .delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-star",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .starred-num").text()),r=n.data("id");n.hasClass("star")?(o="star",i++,n.attr("title",wpforms_admin.entry_unstar)):(o="unstar",i--,n.attr("title",wpforms_admin.entry_star)),n.toggleClass("star unstar"),e("#wpforms-entries-list .starred-num").text(i);var s={task:o,action:"wpforms_entry_list_star",nonce:wpforms_admin.nonce,entry_id:r};e.post(wpforms_admin.ajax_url,s)}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-read",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .unread-num").text()),r=n.data("id");n.hasClass("read")?(o="read",i--,n.attr("title",wpforms_admin.entry_unread)):(o="unread",i++,n.attr("title",wpforms_admin.entry_read)),n.toggleClass("read unread"),e("#wpforms-entries-list .unread-num").text(i);var s={task:o,action:"wpforms_entry_list_read",nonce:wpforms_admin.nonce,entry_id:r};e.post(wpforms_admin.ajax_url,s)}),e(document).on("click","#wpforms-entries-list .form-details-actions-deleteall",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.entry_delete_all_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entriesListFieldColumn:function(){e.alert({title:wpforms_admin.entry_field_columns,boxWidth:"500px",content:t.iconSpinner+e("#wpforms-field-column-select").html(),onContentReady:function(){var t=this.$content,n=t.find("select"),o=new Choices(n[0],{maxItemCount:5,placeholderValue:wpforms_admin.fields_select+"...",removeItemButton:!0,shouldSort:!1,callbackOnInit:function(){t.find(".fa").remove(),t.find("form").show()}});e(".jconfirm-content-pane, .jconfirm-box").css("overflow","visible"),o.passedElement.addEventListener("change",function(){o.hideDropdown()},!1)},buttons:{confirm:{text:wpforms_admin.save_refresh,btnClass:"btn-confirm",keys:["enter"],action:function(){this.$content.find("form").submit()}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initWelcome:function(){e(document).on("click","#wpforms-welcome .play-video",function(t){t.preventDefault();e.dialog({title:!1,content:'<div class="video-container"><iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/yDyvSGV7tP4?rel=0&showinfo=0&autoplay=1" frameborder="0" allowfullscreen></iframe></div>',closeIcon:!0,boxWidth:"70%"})})},initAddons:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-admin-addons").length){e(".addon-item .details").matchHeight({byrow:!1,property:"height"});var t=new List("wpforms-admin-addons-list",{valueNames:["addon-name"]});e("#wpforms-admin-addons-search").on("keyup",function(){t.search(e(this).val())})}}),e(document).on("wpformsReady",function(){e("#wpforms-admin-addons").length&&e(".addon-item .details").matchHeight({byrow:!1,property:"min-height"})}),e(document).on("click","#wpforms-admin-addons .addon-item button",function(t){t.preventDefault(),n.addonToggle(e(this))})},addonToggle:function(n){var o,i,r,s,a,c,m=e(n),d=m.closest(".addon-item"),l=m.attr("data-plugin");if(m.prop("disabled",!0).addClass("loading"),m.html(t.iconSpinner),m.hasClass("status-active"))o="wpforms_deactivate_addon",i="status-inactive",r=wpforms_admin.addon_inactive,s=t.iconActivate+wpforms_admin.addon_activate,a=t.iconDeactivate+wpforms_admin.addon_deactivate;else if(m.hasClass("status-inactive"))o="wpforms_activate_addon",i="status-active",r=wpforms_admin.addon_active,s=t.iconDeactivate+wpforms_admin.addon_deactivate,a=t.iconActivate+wpforms_admin.addon_activate;else{if(!m.hasClass("status-download"))return;o="wpforms_install_addon",i="status-inactive",r=wpforms_admin.addon_inactive,s=t.iconActivate+wpforms_admin.addon_activate,a=t.iconInstall+wpforms_admin.addon_install}var f={action:o,nonce:wpforms_admin.nonce,plugin:l};e.post(wpforms_admin.ajax_url,f,function(t){t.success?("wpforms_install_addon"===o?(m.attr("data-plugin",t.data.basename),c=t.data.msg):c=t.data,d.find(".actions").append('<div class="msg success">'+c+"</div>"),d.find("span.status-label").removeClass("status-active status-inactive status-download").addClass(i).text(r),m.removeClass("status-active status-inactive status-download").addClass(i).html(s)):(d.find(".actions").append('<div class="msg error">'+t.data+"</div>"),m.html(a)),m.prop("disabled",!1).removeClass("loading"),setTimeout(function(){e(".addon-item .msg").remove()},3e3)}).fail(function(e){console.log(e.responseText)})},initSettings:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-settings").length){var t=n.getQueryString("wpforms-integration"),o=n.getQueryString("jump");t?e("body").animate({scrollTop:e("#wpforms-integration-"+t).offset().top},1e3):o&&e("body").animate({scrollTop:e("#"+o).offset().top},1e3)}}),e(document).on("click",".wpforms-setting-row-image button",function(t){t.preventDefault(),n.imageUploadModal(e(this))}),e(document).on("click","#wpforms-setting-license-key-verify",function(t){t.preventDefault(),n.licenseVerify(e(this))}),e(document).on("click","#wpforms-setting-license-key-deactivate",function(t){t.preventDefault(),n.licenseDeactivate(e(this))}),e(document).on("click","#wpforms-setting-license-key-refresh",function(t){t.preventDefault(),n.licenseRefresh(e(this))}),e(document).on("click",".wpforms-settings-provider-connect",function(t){t.preventDefault(),n.integrationConnect(e(this))}),e(document).on("click",".wpforms-settings-provider-accounts-list a",function(t){t.preventDefault(),n.integrationDisconnect(e(this))}),e(document).on("click",".wpforms-settings-provider-header",function(t){t.preventDefault(),e(this).parent().find(".wpforms-settings-provider-accounts").slideToggle(),e(this).parent().find(".wpforms-settings-provider-logo i").toggleClass("fa-chevron-right fa-chevron-down")}),e(document).on("click",".wpforms-settings-provider-accounts-toggle a",function(t){t.preventDefault();var n=e(this).parent().next(".wpforms-settings-provider-accounts-connect");n.find("input[type=text], input[type=password]").val(""),n.slideToggle()})},imageUploadModal:function(n){if(t.media_frame)t.media_frame.open();else{var o=e(n).closest(".wpforms-setting-field");t.media_frame=wp.media.frames.wpforms_media_frame=wp.media({className:"media-frame wpforms-media-frame",frame:"select",multiple:!1,title:wpforms_admin.upload_image_title,library:{type:"image"},button:{text:wpforms_admin.upload_image_button}}),t.media_frame.on("select",function(){var e=t.media_frame.state().get("selection").first().toJSON();o.find("input[type=text]").val(e.url),o.find("img").remove(),o.prepend('<img src="'+e.url+'">')}),t.media_frame.open()}},licenseVerify:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),r=o.outerWidth(),s=o.text(),a={action:"wpforms_verify_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};o.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n,r="fa fa-check-circle",a="green";t.success?(n=t.data.msg,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").show(),i.find(".type strong").text(t.data.type),e(".wpforms-license-notice").remove()):(r="fa fa-exclamation-circle",a="orange",n=t.data,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:n,icon:r,type:a,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(s).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseDeactivate:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),r=o.outerWidth(),s=o.text(),a={action:"wpforms_deactivate_license",nonce:wpforms_admin.nonce};o.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n="fa fa-info-circle",r="blue",a=t.data;t.success?(i.find("#wpforms-setting-license-key").val(""),i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()):(n="fa fa-exclamation-circle",r="orange"),e.alert({title:!1,content:a,icon:n,type:r,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(s).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseRefresh:function(t){var n=e(t).closest(".wpforms-setting-row"),o={action:"wpforms_refresh_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};e.post(wpforms_admin.ajax_url,o,function(t){var o,i="fa fa-check-circle",r="green";t.success?(o=t.data.msg,n.find(".type strong").text(t.data.type)):(i="fa fa-exclamation-circle",r="orange",o=t.data,n.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:o,icon:i,type:r,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}).fail(function(e){console.log(e.responseText)})},integrationConnect:function(t){var n=e(t),o=n.outerWidth(),i=n.text(),r=n.closest(".wpforms-settings-provider"),s={action:"wpforms_settings_provider_add",data:n.closest("form").serialize(),provider:n.data("provider"),nonce:wpforms_admin.nonce};n.html("Connecting...").css("width",o).prop("disabled",!0),e.post(wpforms_admin.ajax_url,s,function(t){if(t.success)r.find(".wpforms-settings-provider-accounts-list ul").append(t.data.html),r.addClass("connected"),n.closest(".wpforms-settings-provider-accounts-connect").slideToggle();else{var o=wpforms_admin.provider_auth_error;t.data.error_msg&&(o+="\n"+t.data.error_msg),e.alert({title:!1,content:o,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),console.log(t)}n.html(i).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},integrationDisconnect:function(t){var n=e(t),o={action:"wpforms_settings_provider_disconnect",provider:n.data("provider"),key:n.data("key"),nonce:wpforms_admin.nonce};e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.provider_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){e.post(wpforms_admin.ajax_url,o,function(e){e.success?n.parent().parent().remove():console.log(e)}).fail(function(e){console.log(e.responseText)})}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initTools:function(){e(document).on("click","#wpforms-ssl-verify",function(e){e.preventDefault(),n.verifySSLConnection()}),e(document).on("click","#wpforms-importer-forms-submit",function(t){if(t.preventDefault(),e("#wpforms-importer-forms input:checked").length){var o=[];e("#wpforms-importer-forms input:checked").each(function(t){o[t]=e(this).val()}),wpforms_admin.isPro?n.importForms(o):n.analyzeForms(o)}else e.alert({title:!1,content:wpforms_admin.importer_forms_required,icon:"fa fa-info-circle",type:"blue",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).on("click","#wpforms-importer-continue-submit",function(e){e.preventDefault(),n.importForms(t.formIDs)})},verifySSLConnection:function(){var t=e("#wpforms-ssl-verify"),n=t.text(),o=t.outerWidth(),i=t.parent(),r={action:"wpforms_verify_ssl",nonce:wpforms_admin.nonce};t.css("width",o).prop("disabled",!0).text(wpforms_admin.testing),e.post(wpforms_admin.ajax_url,r,function(e){console.log(e),i.find(".wpforms-alert, .wpforms-ssl-error").remove(),e.success?t.before('<div class="wpforms-alert wpforms-alert-success">'+e.data.msg+"</div>"):(t.before('<div class="wpforms-alert wpforms-alert-danger">'+e.data.msg+"</div>"),t.before('<div class="wpforms-ssl-error pre-error">'+e.data.debug+"</div>")),t.css("width",o).prop("disabled",!1).text(n)})},analyzeForms:function(o){var i=e("#wpforms-importer-analyze");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms").hide(),i.show(),t.analyzeQueue=o,t.analyzed=0,t.analyzeUpgrade=[],t.formIDs=o,n.analyzeForm()},analyzeForm:function(){var o=e("#wpforms-importer-analyze"),i=_.first(t.analyzeQueue),r={action:"wpforms_import_form_"+n.getQueryString("provider"),analyze:1,form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,r,function(e){if(e.success)if(_.isEmpty(e.data.upgrade_plain)&&_.isEmpty(e.data.upgrade_omit)||t.analyzeUpgrade.push({name:e.data.name,fields:_.union(e.data.upgrade_omit,e.data.upgrade_plain)}),t.analyzeQueue=_.without(t.analyzeQueue,i),t.analyzed++,_.isEmpty(t.analyzeQueue))if(_.isEmpty(t.analyzeUpgrade))n.importForms(t.formIDs);else{var r=wp.template("wpforms-importer-upgrade");o.find(".upgrade").append(r(t.analyzeUpgrade)),o.find(".upgrade").show(),o.find(".process-analyze").hide()}else o.find(".form-current").text(t.analyzed+1),n.analyzeForm()})},importForms:function(o){var i=e("#wpforms-importer-process");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms, #wpforms-importer-analyze").hide(),i.show(),t.importQueue=o,t.imported=0,n.importForm()},importForm:function(){var o=e("#wpforms-importer-process"),i=_.first(t.importQueue),r={action:"wpforms_import_form_"+n.getQueryString("provider"),form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,r,function(e){if(e.success){var r;r=e.data.error?wp.template("wpforms-importer-status-error"):wp.template("wpforms-importer-status-update"),o.find(".status").prepend(r(e.data)),o.find(".status").show(),t.importQueue=_.without(t.importQueue,i),t.imported++,_.isEmpty(t.importQueue)?(o.find(".process-count").hide(),o.find(".forms-completed").text(t.imported),o.find(".process-completed").show()):(o.find(".form-current").text(t.imported+1),n.importForm())}})},initUpgrades:function(){e(document).on("click","#wpforms-upgrade-143 button",function(o){o.preventDefault();var i=e(this),r=i.outerWidth(),s=e("#wpforms-upgrade-143 .status"),a={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,init:!0,incomplete:i.data("incomplete")};i.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(e){if(e.success){t.upgraded=Number(e.data.upgraded),t.upgradeTotal=Number(e.data.total);var o=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);i.remove(),s.find(".bar").css("width",o+"%"),s.show().find(".total").text(t.upgradeTotal),s.find(".current").text(t.upgraded),s.find(".percent").text(o+"%"),n.upgrade143()}})})},upgrade143:function(){var o=e("#wpforms-upgrade-143 .status"),i={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,upgraded:t.upgraded};e.post(wpforms_admin.ajax_url,i,function(e){if(e.success){t.upgraded=Number(t.upgraded)+Number(e.data.count);var i=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);o.find(".bar").css("width",i+"%"),Number(e.data.count)<10?(o.find(".progress-bar").addClass("complete"),o.find(".msg").text(wpforms_admin.upgrade_completed)):(o.find(".current").text(t.upgraded),o.find(".percent").text(i+"%"),n.upgrade143())}})},isFormTypeNode:function(e){return"TEXTAREA"===(e=e||!1)||"INPUT"===e||"SELECT"===e},getQueryString:function(e){var t=new RegExp("[?&]"+e+"=([^&]*)").exec(window.location.search);return t&&decodeURIComponent(t[1].replace(/\+/g," "))},debug:function(e){n.isDebug()&&("object"==typeof e||e.constructor===Array?(console.log("WPForms Debug:"),console.log(e)):console.log("WPForms Debug: "+e))},isDebug:function(){return window.location.hash&&"#wpformsdebug"===window.location.hash}};n.init(),window.WPFormsAdmin=n}(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* global wp, _, wpforms_admin, jconfirm, wpCookies, Choices, List */
|
2 |
+
|
3 |
+
;(function($) {
|
4 |
+
|
5 |
+
'use strict';
|
6 |
+
|
7 |
+
// Global settings access.
|
8 |
+
var s;
|
9 |
+
|
10 |
+
// Admin object.
|
11 |
+
var WPFormsAdmin = {
|
12 |
+
|
13 |
+
// Settings.
|
14 |
+
settings: {
|
15 |
+
iconActivate: '<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',
|
16 |
+
iconDeactivate: '<i class="fa fa-toggle-on" aria-hidden="true"></i>',
|
17 |
+
iconInstall: '<i class="fa fa-cloud-download" aria-hidden="true"></i>',
|
18 |
+
iconSpinner: '<i class="fa fa-spinner fa-spin" aria-hidden="true"></i>',
|
19 |
+
mediaFrame: false
|
20 |
+
},
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Start the engine.
|
24 |
+
*
|
25 |
+
* @since 1.3.9
|
26 |
+
*/
|
27 |
+
init: function() {
|
28 |
+
|
29 |
+
// Settings shortcut.
|
30 |
+
s = this.settings;
|
31 |
+
|
32 |
+
// Document ready.
|
33 |
+
$( document ).ready( WPFormsAdmin.ready );
|
34 |
+
|
35 |
+
// Forms Overview.
|
36 |
+
WPFormsAdmin.initFormOverview();
|
37 |
+
|
38 |
+
// Entries Single (Details).
|
39 |
+
WPFormsAdmin.initEntriesSingle();
|
40 |
+
|
41 |
+
// Entries List.
|
42 |
+
WPFormsAdmin.initEntriesList();
|
43 |
+
|
44 |
+
// Welcome activation.
|
45 |
+
WPFormsAdmin.initWelcome();
|
46 |
+
|
47 |
+
// Addons List.
|
48 |
+
WPFormsAdmin.initAddons();
|
49 |
+
|
50 |
+
// Settings.
|
51 |
+
WPFormsAdmin.initSettings();
|
52 |
+
|
53 |
+
// Tools.
|
54 |
+
WPFormsAdmin.initTools();
|
55 |
+
|
56 |
+
// Upgrades (Tools view).
|
57 |
+
WPFormsAdmin.initUpgrades();
|
58 |
+
},
|
59 |
+
|
60 |
+
/**
|
61 |
+
* Document ready.
|
62 |
+
*
|
63 |
+
* @since 1.3.9
|
64 |
+
*/
|
65 |
+
ready: function() {
|
66 |
+
|
67 |
+
// To prevent jumping (since WP core moves the notices with js),
|
68 |
+
// they are hidden initally with CSS, then revealed below with JS,
|
69 |
+
// which runs after they have been moved.
|
70 |
+
$( '.notice' ).show();
|
71 |
+
|
72 |
+
// If there are screen options we have to move them.
|
73 |
+
$( '#screen-meta-links, #screen-meta' ).prependTo( '#wpforms-header-temp' ).show();
|
74 |
+
|
75 |
+
// Init fancy selects via choices.js.
|
76 |
+
WPFormsAdmin.initChoicesJS();
|
77 |
+
|
78 |
+
// Init checkbox multiselects columns.
|
79 |
+
WPFormsAdmin.initCheckboxMultiselectColumns();
|
80 |
+
|
81 |
+
// Init colorpickers via minicolors.js.
|
82 |
+
$( '.wpforms-color-picker' ).minicolors();
|
83 |
+
|
84 |
+
// Init fancy File Uploads.
|
85 |
+
$( '.wpforms-file-upload' ).each( function(){
|
86 |
+
var $input = $( this ).find( 'input[type=file]' ),
|
87 |
+
$label = $( this ).find( 'label' ),
|
88 |
+
labelVal = $label.html();
|
89 |
+
$input.on( 'change', function( event ) {
|
90 |
+
var fileName = '';
|
91 |
+
if ( this.files && this.files.length > 1 ) {
|
92 |
+
fileName = ( this.getAttribute( 'data-multiple-caption' ) || '' ).replace( '{count}', this.files.length );
|
93 |
+
} else if( event.target.value ) {
|
94 |
+
fileName = event.target.value.split( '\\' ).pop();
|
95 |
+
}
|
96 |
+
if ( fileName ) {
|
97 |
+
$label.find( '.fld' ).html( fileName );
|
98 |
+
} else {
|
99 |
+
$label.html( labelVal );
|
100 |
+
}
|
101 |
+
});
|
102 |
+
// Firefox bug fix.
|
103 |
+
$input.on( 'focus', function(){ $input.addClass( 'has-focus' ); }).on( 'blur', function(){ $input.removeClass( 'has-focus' ); });
|
104 |
+
});
|
105 |
+
|
106 |
+
// jquery-confirm defaults.
|
107 |
+
jconfirm.defaults = {
|
108 |
+
closeIcon: true,
|
109 |
+
backgroundDismiss: true,
|
110 |
+
escapeKey: true,
|
111 |
+
animationBounce: 1,
|
112 |
+
useBootstrap: false,
|
113 |
+
theme: 'modern',
|
114 |
+
boxWidth: '400px',
|
115 |
+
animateFromElement: false
|
116 |
+
};
|
117 |
+
|
118 |
+
// Upgrade information modal for upgrade links.
|
119 |
+
$( document ).on( 'click', '.wpforms-upgrade-modal', function() {
|
120 |
+
|
121 |
+
$.alert({
|
122 |
+
title: false,
|
123 |
+
content: wpforms_admin.upgrade_modal,
|
124 |
+
icon: 'fa fa-info-circle',
|
125 |
+
type: 'blue',
|
126 |
+
boxWidth: '565px',
|
127 |
+
buttons: {
|
128 |
+
confirm: {
|
129 |
+
text: wpforms_admin.ok,
|
130 |
+
btnClass: 'btn-confirm',
|
131 |
+
keys: [ 'enter' ]
|
132 |
+
}
|
133 |
+
}
|
134 |
+
});
|
135 |
+
});
|
136 |
+
|
137 |
+
// Action available for each binding.
|
138 |
+
$( document ).trigger( 'wpformsReady' );
|
139 |
+
},
|
140 |
+
|
141 |
+
/**
|
142 |
+
* Initilize Choices JS elements.
|
143 |
+
*
|
144 |
+
* @since 1.4.2
|
145 |
+
*/
|
146 |
+
initChoicesJS: function() {
|
147 |
+
|
148 |
+
$( '.choicesjs-select' ).each( function() {
|
149 |
+
var $this = $( this ),
|
150 |
+
args = { searchEnabled: false };
|
151 |
+
if ( $this.attr( 'multiple' ) ) {
|
152 |
+
args.searchEnabled = true;
|
153 |
+
args.removeItemButton = true;
|
154 |
+
}
|
155 |
+
if ( $this.data( 'placeholder' ) ) {
|
156 |
+
args.placeholderValue = $this.data( 'placeholder' );
|
157 |
+
}
|
158 |
+
if ( $this.data( 'sorting' ) === 'off' ) {
|
159 |
+
args.shouldSort = false;
|
160 |
+
}
|
161 |
+
if ( $this.data( 'search' ) ) {
|
162 |
+
args.searchEnabled = true;
|
163 |
+
}
|
164 |
+
new Choices( $this[0], args );
|
165 |
+
});
|
166 |
+
},
|
167 |
+
|
168 |
+
/**
|
169 |
+
* Initilize checkbox mulit-select columns.
|
170 |
+
*
|
171 |
+
* @since 1.4.2
|
172 |
+
*/
|
173 |
+
initCheckboxMultiselectColumns: function() {
|
174 |
+
|
175 |
+
$( document ).on( 'change', '.checkbox-multiselect-columns input', function() {
|
176 |
+
|
177 |
+
var $this = $( this ),
|
178 |
+
$parent = $this.parent(),
|
179 |
+
$container = $this.closest( '.checkbox-multiselect-columns' ),
|
180 |
+
label = $parent.text(),
|
181 |
+
itemID = 'check-item-' + $this.val(),
|
182 |
+
$item = $container.find( '#' + itemID );
|
183 |
+
|
184 |
+
if ( $this.prop( 'checked' ) ) {
|
185 |
+
$this.parent().addClass( 'checked' );
|
186 |
+
if ( ! $item.length ) {
|
187 |
+
$container.find('.second-column ul').append( '<li id="'+itemID+'">'+label+'</li>' );
|
188 |
+
}
|
189 |
+
} else {
|
190 |
+
$this.parent().removeClass( 'checked' );
|
191 |
+
$container.find( '#' + itemID ).remove();
|
192 |
+
}
|
193 |
+
});
|
194 |
+
|
195 |
+
$( document ).on( 'click', '.checkbox-multiselect-columns .all', function( event ) {
|
196 |
+
|
197 |
+
event.preventDefault();
|
198 |
+
|
199 |
+
$( this ).closest( '.checkbox-multiselect-columns' ).find( 'input[type=checkbox]' ).prop( 'checked', true ).trigger( 'change' );
|
200 |
+
$( this ).remove();
|
201 |
+
});
|
202 |
+
},
|
203 |
+
|
204 |
+
//--------------------------------------------------------------------//
|
205 |
+
// Forms Overview
|
206 |
+
//--------------------------------------------------------------------//
|
207 |
+
|
208 |
+
/**
|
209 |
+
* Element bindings for Form Overview page.
|
210 |
+
*
|
211 |
+
* @since 1.3.9
|
212 |
+
*/
|
213 |
+
initFormOverview: function() {
|
214 |
+
|
215 |
+
// Confirm form entry deletion and duplications.
|
216 |
+
$( document ).on( 'click', '#wpforms-overview .wp-list-table .delete a, #wpforms-overview .wp-list-table .duplicate a', function( event ) {
|
217 |
+
|
218 |
+
event.preventDefault();
|
219 |
+
|
220 |
+
var url = $( this ).attr( 'href' ),
|
221 |
+
msg = $( this ).parent().hasClass( 'delete' ) ? wpforms_admin.form_delete_confirm : wpforms_admin.form_duplicate_confirm;
|
222 |
+
|
223 |
+
// Trigger alert modal to confirm.
|
224 |
+
$.confirm({
|
225 |
+
title: false,
|
226 |
+
content: msg,
|
227 |
+
backgroundDismiss: false,
|
228 |
+
closeIcon: false,
|
229 |
+
icon: 'fa fa-exclamation-circle',
|
230 |
+
type: 'orange',
|
231 |
+
buttons: {
|
232 |
+
confirm: {
|
233 |
+
text: wpforms_admin.ok,
|
234 |
+
btnClass: 'btn-confirm',
|
235 |
+
keys: [ 'enter' ],
|
236 |
+
action: function(){
|
237 |
+
window.location = url;
|
238 |
+
}
|
239 |
+
},
|
240 |
+
cancel: {
|
241 |
+
text: wpforms_admin.cancel,
|
242 |
+
keys: [ 'esc' ]
|
243 |
+
}
|
244 |
+
}
|
245 |
+
});
|
246 |
+
});
|
247 |
+
},
|
248 |
+
|
249 |
+
//--------------------------------------------------------------------//
|
250 |
+
// Entry Single (Details)
|
251 |
+
//--------------------------------------------------------------------//
|
252 |
+
|
253 |
+
/**
|
254 |
+
* Element bindings for Entries Single (Details) page.
|
255 |
+
*
|
256 |
+
* @since 1.3.9
|
257 |
+
*/
|
258 |
+
initEntriesSingle: function() {
|
259 |
+
|
260 |
+
// Entry navigation hotkeys.
|
261 |
+
// We only want to listen on the applicable admin page.
|
262 |
+
if ( 'wpforms-entries' === WPFormsAdmin.getQueryString( 'page' ) && 'details' === WPFormsAdmin.getQueryString( 'view' ) ) {
|
263 |
+
WPFormsAdmin.entryHotkeys();
|
264 |
+
}
|
265 |
+
|
266 |
+
// Confirm entry deletion.
|
267 |
+
$( document ).on( 'click', '#wpforms-entries-single .submitdelete', function( event ) {
|
268 |
+
|
269 |
+
event.preventDefault();
|
270 |
+
|
271 |
+
var url = $( this ).attr( 'href' );
|
272 |
+
|
273 |
+
// Trigger alert modal to confirm.
|
274 |
+
$.confirm({
|
275 |
+
title: false,
|
276 |
+
content: wpforms_admin.entry_delete_confirm,
|
277 |
+
backgroundDismiss: false,
|
278 |
+
closeIcon: false,
|
279 |
+
icon: 'fa fa-exclamation-circle',
|
280 |
+
type: 'orange',
|
281 |
+
buttons: {
|
282 |
+
confirm: {
|
283 |
+
text: wpforms_admin.ok,
|
284 |
+
btnClass: 'btn-confirm',
|
285 |
+
keys: [ 'enter' ],
|
286 |
+
action: function(){
|
287 |
+
window.location = url;
|
288 |
+
}
|
289 |
+
},
|
290 |
+
cancel: {
|
291 |
+
text: wpforms_admin.cancel,
|
292 |
+
keys: [ 'esc' ]
|
293 |
+
}
|
294 |
+
}
|
295 |
+
});
|
296 |
+
});
|
297 |
+
|
298 |
+
// Open Print preview in new window.
|
299 |
+
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-print a', function( event ) {
|
300 |
+
|
301 |
+
event.preventDefault();
|
302 |
+
|
303 |
+
window.open( $( this ).attr( 'href' ) );
|
304 |
+
});
|
305 |
+
|
306 |
+
// Toggle displaying empty fields.
|
307 |
+
$( document ).on( 'click', '#wpforms-entries-single .wpforms-empty-field-toggle', function( event ) {
|
308 |
+
|
309 |
+
event.preventDefault();
|
310 |
+
|
311 |
+
// Handle cookie.
|
312 |
+
if ( wpCookies.get( 'wpforms_entry_hide_empty' ) === 'true') {
|
313 |
+
|
314 |
+
// User was hiding empty fields, so now display them.
|
315 |
+
wpCookies.remove('wpforms_entry_hide_empty');
|
316 |
+
$( this ).text( wpforms_admin.entry_empty_fields_hide );
|
317 |
+
} else {
|
318 |
+
|
319 |
+
// User was seeing empty fields, so now hide them.
|
320 |
+
wpCookies.set( 'wpforms_entry_hide_empty', 'true', 2592000 ); // 1month.
|
321 |
+
$( this ).text( wpforms_admin.entry_empty_fields_show );
|
322 |
+
}
|
323 |
+
|
324 |
+
$( '.wpforms-entry-field.empty' ).toggle();
|
325 |
+
});
|
326 |
+
|
327 |
+
// Display notes editor.
|
328 |
+
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-new .add', function( event ) {
|
329 |
+
|
330 |
+
event.preventDefault();
|
331 |
+
|
332 |
+
$( this ).hide().next( 'form' ).slideToggle();
|
333 |
+
});
|
334 |
+
|
335 |
+
// Cancel note.
|
336 |
+
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-new .cancel', function( event ) {
|
337 |
+
|
338 |
+
event.preventDefault();
|
339 |
+
|
340 |
+
$( this ).closest( 'form' ).slideToggle();
|
341 |
+
$('.wpforms-entry-notes-new .add').show();
|
342 |
+
});
|
343 |
+
|
344 |
+
// Delete note.
|
345 |
+
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-byline .note-delete', function( event ) {
|
346 |
+
|
347 |
+
event.preventDefault();
|
348 |
+
|
349 |
+
var url = $( this ).attr( 'href' );
|
350 |
+
|
351 |
+
// Trigger alert modal to confirm.
|
352 |
+
$.confirm({
|
353 |
+
title: false,
|
354 |
+
content: wpforms_admin.entry_note_delete_confirm,
|
355 |
+
backgroundDismiss: false,
|
356 |
+
closeIcon: false,
|
357 |
+
icon: 'fa fa-exclamation-circle',
|
358 |
+
type: 'orange',
|
359 |
+
buttons: {
|
360 |
+
confirm: {
|
361 |
+
text: wpforms_admin.ok,
|
362 |
+
btnClass: 'btn-confirm',
|
363 |
+
keys: [ 'enter' ],
|
364 |
+
action: function(){
|
365 |
+
window.location = url;
|
366 |
+
}
|
367 |
+
},
|
368 |
+
cancel: {
|
369 |
+
text: wpforms_admin.cancel,
|
370 |
+
keys: [ 'esc' ]
|
371 |
+
}
|
372 |
+
}
|
373 |
+
});
|
374 |
+
});
|
375 |
+
},
|
376 |
+
|
377 |
+
/**
|
378 |
+
* Hotkeys for Entries Single (Details) page.
|
379 |
+
*
|
380 |
+
* j triggers previous entry, k triggers next entry.
|
381 |
+
*
|
382 |
+
* @since 1.4.0
|
383 |
+
*/
|
384 |
+
entryHotkeys: function() {
|
385 |
+
|
386 |
+
$( document ).keydown( function( event ) {
|
387 |
+
if ( 74 === event.keyCode && ! WPFormsAdmin.isFormTypeNode( event.target.nodeName ) ) {
|
388 |
+
// j key has been pressed outside of a form element, go to
|
389 |
+
// the previous entry.
|
390 |
+
var prevEntry = $('#wpforms-entry-prev-link').attr( 'href' );
|
391 |
+
if ( '#' !== prevEntry ) {
|
392 |
+
window.location.href = prevEntry;
|
393 |
+
}
|
394 |
+
} else if ( 75 === event.keyCode && ! WPFormsAdmin.isFormTypeNode( event.target.nodeName ) ) {
|
395 |
+
// k key has been pressed outside of a form element, go to
|
396 |
+
// the previous entry.
|
397 |
+
var nextEntry = $('#wpforms-entry-next-link').attr( 'href' );
|
398 |
+
if ( '#' !== nextEntry ) {
|
399 |
+
window.location.href = nextEntry;
|
400 |
+
}
|
401 |
+
}
|
402 |
+
});
|
403 |
+
},
|
404 |
+
|
405 |
+
|
406 |
+
//--------------------------------------------------------------------//
|
407 |
+
// Entry List
|
408 |
+
//--------------------------------------------------------------------//
|
409 |
+
|
410 |
+
/**
|
411 |
+
* Element bindings for Entries List table page.
|
412 |
+
*
|
413 |
+
* @since 1.3.9
|
414 |
+
*/
|
415 |
+
initEntriesList: function() {
|
416 |
+
|
417 |
+
$( document ).on( 'click', '#wpforms-entries-table-edit-columns', function( event ) {
|
418 |
+
|
419 |
+
event.preventDefault();
|
420 |
+
|
421 |
+
WPFormsAdmin.entriesListFieldColumn();
|
422 |
+
});
|
423 |
+
|
424 |
+
// Toogle form selector dropdown.
|
425 |
+
$( document ).on( 'click', '#wpforms-entries-list .form-selector .toggle', function( event ) {
|
426 |
+
|
427 |
+
event.preventDefault();
|
428 |
+
|
429 |
+
$( this ).toggleClass( 'active' ).next( '.form-list' ).toggle();
|
430 |
+
|
431 |
+
});
|
432 |
+
|
433 |
+
// Confirm entry deletion.
|
434 |
+
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .delete', function( event ) {
|
435 |
+
|
436 |
+
event.preventDefault();
|
437 |
+
|
438 |
+
var url = $( this ).attr( 'href' );
|
439 |
+
|
440 |
+
// Trigger alert modal to confirm.
|
441 |
+
$.confirm({
|
442 |
+
title: false,
|
443 |
+
content: wpforms_admin.entry_delete_confirm,
|
444 |
+
backgroundDismiss: false,
|
445 |
+
closeIcon: false,
|
446 |
+
icon: 'fa fa-exclamation-circle',
|
447 |
+
type: 'orange',
|
448 |
+
buttons: {
|
449 |
+
confirm: {
|
450 |
+
text: wpforms_admin.ok,
|
451 |
+
btnClass: 'btn-confirm',
|
452 |
+
keys: [ 'enter' ],
|
453 |
+
action: function(){
|
454 |
+
window.location = url;
|
455 |
+
}
|
456 |
+
},
|
457 |
+
cancel: {
|
458 |
+
text: wpforms_admin.cancel,
|
459 |
+
keys: [ 'esc' ]
|
460 |
+
}
|
461 |
+
}
|
462 |
+
});
|
463 |
+
});
|
464 |
+
|
465 |
+
// Toggle entry stars.
|
466 |
+
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .indicator-star', function( event ) {
|
467 |
+
|
468 |
+
event.preventDefault();
|
469 |
+
|
470 |
+
var $this = $( this ),
|
471 |
+
task = '',
|
472 |
+
total = Number( $( '#wpforms-entries-list .starred-num' ).text() ),
|
473 |
+
id = $this.data( 'id' );
|
474 |
+
|
475 |
+
if ( $this.hasClass( 'star' ) ) {
|
476 |
+
task = 'star';
|
477 |
+
total++;
|
478 |
+
$this.attr( 'title', wpforms_admin.entry_unstar );
|
479 |
+
} else {
|
480 |
+
task = 'unstar';
|
481 |
+
total--;
|
482 |
+
$this.attr( 'title', wpforms_admin.entry_star );
|
483 |
+
}
|
484 |
+
$this.toggleClass( 'star unstar' );
|
485 |
+
$( '#wpforms-entries-list .starred-num' ).text( total );
|
486 |
+
|
487 |
+
var data = {
|
488 |
+
task : task,
|
489 |
+
action : 'wpforms_entry_list_star',
|
490 |
+
nonce : wpforms_admin.nonce,
|
491 |
+
entry_id: id
|
492 |
+
};
|
493 |
+
$.post( wpforms_admin.ajax_url, data );
|
494 |
+
});
|
495 |
+
|
496 |
+
// Toggle entry read state.
|
497 |
+
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .indicator-read', function( event ) {
|
498 |
+
|
499 |
+
event.preventDefault();
|
500 |
+
|
501 |
+
var $this = $( this ),
|
502 |
+
task = '',
|
503 |
+
total = Number( $( '#wpforms-entries-list .unread-num' ).text() ),
|
504 |
+
id = $this.data( 'id' );
|
505 |
+
|
506 |
+
if ( $this.hasClass( 'read' ) ) {
|
507 |
+
task = 'read';
|
508 |
+
total--;
|
509 |
+
$this.attr( 'title', wpforms_admin.entry_unread );
|
510 |
+
} else {
|
511 |
+
task = 'unread';
|
512 |
+
total++;
|
513 |
+
$this.attr( 'title', wpforms_admin.entry_read );
|
514 |
+
}
|
515 |
+
$this.toggleClass( 'read unread' );
|
516 |
+
$( '#wpforms-entries-list .unread-num' ).text( total );
|
517 |
+
|
518 |
+
var data = {
|
519 |
+
task : task,
|
520 |
+
action : 'wpforms_entry_list_read',
|
521 |
+
nonce : wpforms_admin.nonce,
|
522 |
+
entry_id: id
|
523 |
+
};
|
524 |
+
$.post( wpforms_admin.ajax_url, data );
|
525 |
+
});
|
526 |
+
|
527 |
+
// Confirm mass entry deletion - this deletes ALL entries.
|
528 |
+
$( document ).on( 'click', '#wpforms-entries-list .form-details-actions-deleteall', function( event ) {
|
529 |
+
|
530 |
+
event.preventDefault();
|
531 |
+
|
532 |
+
var url = $( this ).attr( 'href' );
|
533 |
+
|
534 |
+
// Trigger alert modal to confirm.
|
535 |
+
$.confirm({
|
536 |
+
title: wpforms_admin.heads_up,
|
537 |
+
content: wpforms_admin.entry_delete_all_confirm,
|
538 |
+
backgroundDismiss: false,
|
539 |
+
closeIcon: false,
|
540 |
+
icon: 'fa fa-exclamation-circle',
|
541 |
+
type: 'orange',
|
542 |
+
buttons: {
|
543 |
+
confirm: {
|
544 |
+
text: wpforms_admin.ok,
|
545 |
+
btnClass: 'btn-confirm',
|
546 |
+
keys: [ 'enter' ],
|
547 |
+
action: function(){
|
548 |
+
window.location = url;
|
549 |
+
}
|
550 |
+
},
|
551 |
+
cancel: {
|
552 |
+
text: wpforms_admin.cancel,
|
553 |
+
keys: [ 'esc' ]
|
554 |
+
}
|
555 |
+
}
|
556 |
+
});
|
557 |
+
});
|
558 |
+
},
|
559 |
+
|
560 |
+
/**
|
561 |
+
* Display settings to change the entry list field columns/
|
562 |
+
*
|
563 |
+
* @since 1.4.0
|
564 |
+
*/
|
565 |
+
entriesListFieldColumn: function() {
|
566 |
+
|
567 |
+
$.alert({
|
568 |
+
title: wpforms_admin.entry_field_columns,
|
569 |
+
boxWidth: '500px',
|
570 |
+
content: s.iconSpinner + $( '#wpforms-field-column-select' ).html(),
|
571 |
+
onContentReady: function() {
|
572 |
+
|
573 |
+
var $modalContent = this.$content,
|
574 |
+
$select = $modalContent.find( 'select' ),
|
575 |
+
choices = new Choices( $select[0], {
|
576 |
+
maxItemCount: 5,
|
577 |
+
placeholderValue: wpforms_admin.fields_select+'...',
|
578 |
+
removeItemButton: true,
|
579 |
+
shouldSort: false,
|
580 |
+
callbackOnInit: function() {
|
581 |
+
$modalContent.find( '.fa' ).remove();
|
582 |
+
$modalContent.find( 'form' ).show();
|
583 |
+
}
|
584 |
+
});
|
585 |
+
|
586 |
+
$( '.jconfirm-content-pane, .jconfirm-box' ).css( 'overflow','visible' );
|
587 |
+
|
588 |
+
choices.passedElement.addEventListener( 'change', function() {
|
589 |
+
choices.hideDropdown();
|
590 |
+
}, false );
|
591 |
+
},
|
592 |
+
buttons: {
|
593 |
+
confirm: {
|
594 |
+
text: wpforms_admin.save_refresh,
|
595 |
+
btnClass: 'btn-confirm',
|
596 |
+
keys: ['enter'],
|
597 |
+
action: function() {
|
598 |
+
this.$content.find( 'form' ).submit();
|
599 |
+
}
|
600 |
+
},
|
601 |
+
cancel: {
|
602 |
+
text: wpforms_admin.cancel,
|
603 |
+
keys: [ 'esc' ]
|
604 |
+
}
|
605 |
+
}
|
606 |
+
});
|
607 |
+
},
|
608 |
+
|
609 |
+
//--------------------------------------------------------------------//
|
610 |
+
// Welcome Activation.
|
611 |
+
//--------------------------------------------------------------------//
|
612 |
+
|
613 |
+
/**
|
614 |
+
* Welcome activation page.
|
615 |
+
*
|
616 |
+
* @since 1.3.9
|
617 |
+
*/
|
618 |
+
initWelcome: function() {
|
619 |
+
|
620 |
+
// Open modal and play How To video.
|
621 |
+
$( document ).on( 'click', '#wpforms-welcome .play-video', function( event ) {
|
622 |
+
|
623 |
+
event.preventDefault();
|
624 |
+
|
625 |
+
var video = '<div class="video-container"><iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/yDyvSGV7tP4?rel=0&showinfo=0&autoplay=1" frameborder="0" allowfullscreen></iframe></div>';
|
626 |
+
|
627 |
+
$.dialog({
|
628 |
+
title: false,
|
629 |
+
content: video,
|
630 |
+
closeIcon: true,
|
631 |
+
boxWidth: '70%'
|
632 |
+
});
|
633 |
+
});
|
634 |
+
},
|
635 |
+
|
636 |
+
//--------------------------------------------------------------------//
|
637 |
+
// Addons List.
|
638 |
+
//--------------------------------------------------------------------//
|
639 |
+
|
640 |
+
/**
|
641 |
+
* Element bindings for Addons List page.
|
642 |
+
*
|
643 |
+
* @since 1.3.9
|
644 |
+
*/
|
645 |
+
initAddons: function() {
|
646 |
+
|
647 |
+
// Some actions have to be delayed to document.ready.
|
648 |
+
$( document ).on( 'wpformsReady', function() {
|
649 |
+
|
650 |
+
// Only run on the addons page.
|
651 |
+
if ( $( '#wpforms-admin-addons' ).length ) {
|
652 |
+
|
653 |
+
// Display all addon boxes as the same height.
|
654 |
+
$( '.addon-item .details' ).matchHeight( { byrow: false, property: 'height' } );
|
655 |
+
|
656 |
+
// Addons searching.
|
657 |
+
var addonSearch = new List('wpforms-admin-addons-list', {
|
658 |
+
valueNames: [ 'addon-name' ]
|
659 |
+
});
|
660 |
+
|
661 |
+
$( '#wpforms-admin-addons-search' ).on( 'keyup', function() {
|
662 |
+
addonSearch.search( $( this ).val() );
|
663 |
+
});
|
664 |
+
}
|
665 |
+
});
|
666 |
+
|
667 |
+
// Display all addon boxes as the same height.
|
668 |
+
$( document ).on( 'wpformsReady', function() {
|
669 |
+
|
670 |
+
// Only run on the addons page because the matchHeight jQuery
|
671 |
+
// library is not loaded globally.
|
672 |
+
if ( $( '#wpforms-admin-addons' ).length ) {
|
673 |
+
$( '.addon-item .details' ).matchHeight( { byrow: false, property: 'min-height' } );
|
674 |
+
}
|
675 |
+
});
|
676 |
+
|
677 |
+
// Toogle an addon state.
|
678 |
+
$( document ).on( 'click', '#wpforms-admin-addons .addon-item button', function( event ) {
|
679 |
+
|
680 |
+
event.preventDefault();
|
681 |
+
|
682 |
+
WPFormsAdmin.addonToggle( $( this ) );
|
683 |
+
});
|
684 |
+
},
|
685 |
+
|
686 |
+
/**
|
687 |
+
* Toggle addon state.
|
688 |
+
*
|
689 |
+
* @since 1.3.9
|
690 |
+
*/
|
691 |
+
addonToggle: function( el ) {
|
692 |
+
|
693 |
+
var $this = $( el ),
|
694 |
+
$addon = $this.closest( '.addon-item' ),
|
695 |
+
plugin = $this.attr( 'data-plugin' ),
|
696 |
+
action,
|
697 |
+
cssClass,
|
698 |
+
statusText,
|
699 |
+
buttonText,
|
700 |
+
errorText,
|
701 |
+
successText;
|
702 |
+
|
703 |
+
$this.prop( 'disabled', true ).addClass( 'loading' );
|
704 |
+
$this.html( s.iconSpinner );
|
705 |
+
|
706 |
+
if ( $this.hasClass( 'status-active' ) ) {
|
707 |
+
// Deactivate.
|
708 |
+
action = 'wpforms_deactivate_addon';
|
709 |
+
cssClass = 'status-inactive';
|
710 |
+
statusText = wpforms_admin.addon_inactive;
|
711 |
+
buttonText = s.iconActivate + wpforms_admin.addon_activate;
|
712 |
+
errorText = s.iconDeactivate + wpforms_admin.addon_deactivate;
|
713 |
+
|
714 |
+
} else if ( $this.hasClass( 'status-inactive' ) ) {
|
715 |
+
// Activate.
|
716 |
+
action = 'wpforms_activate_addon';
|
717 |
+
cssClass = 'status-active';
|
718 |
+
statusText = wpforms_admin.addon_active;
|
719 |
+
buttonText = s.iconDeactivate + wpforms_admin.addon_deactivate;
|
720 |
+
errorText = s.iconActivate + wpforms_admin.addon_activate;
|
721 |
+
|
722 |
+
} else if ( $this.hasClass( 'status-download' ) ) {
|
723 |
+
// Install.
|
724 |
+
action = 'wpforms_install_addon';
|
725 |
+
cssClass = 'status-inactive';
|
726 |
+
statusText = wpforms_admin.addon_inactive;
|
727 |
+
buttonText = s.iconActivate + wpforms_admin.addon_activate;
|
728 |
+
errorText = s.iconInstall + wpforms_admin.addon_install;
|
729 |
+
} else {
|
730 |
+
return;
|
731 |
+
}
|
732 |
+
|
733 |
+
var data = {
|
734 |
+
action: action,
|
735 |
+
nonce : wpforms_admin.nonce,
|
736 |
+
plugin: plugin
|
737 |
+
};
|
738 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
739 |
+
|
740 |
+
if ( res.success ){
|
741 |
+
if ( 'wpforms_install_addon' === action ) {
|
742 |
+
$this.attr( 'data-plugin', res.data.basename );
|
743 |
+
successText = res.data.msg;
|
744 |
+
} else {
|
745 |
+
successText = res.data;
|
746 |
+
}
|
747 |
+
$addon.find( '.actions' ).append( '<div class="msg success">'+successText+'</div>' );
|
748 |
+
$addon.find( 'span.status-label' ).removeClass( 'status-active status-inactive status-download' ).addClass( cssClass ).text( statusText );
|
749 |
+
$this.removeClass( 'status-active status-inactive status-download' ).addClass( cssClass ).html( buttonText );
|
750 |
+
} else {
|
751 |
+
if ( 'download_failed' === res.data[0].code ) {
|
752 |
+
$addon.find( '.actions' ).append( '<div class="msg error">'+wpforms_admin.addon_error+'</div>' );
|
753 |
+
} else {
|
754 |
+
$addon.find( '.actions' ).append( '<div class="msg error">'+res.data+'</div>' );
|
755 |
+
}
|
756 |
+
$this.html( errorText );
|
757 |
+
}
|
758 |
+
|
759 |
+
$this.prop( 'disabled', false ).removeClass( 'loading' );
|
760 |
+
|
761 |
+
// Automatically clear addon messages after 3 seconds.
|
762 |
+
setTimeout( function() {
|
763 |
+
$( '.addon-item .msg' ).remove();
|
764 |
+
}, 3000 );
|
765 |
+
|
766 |
+
}).fail( function( xhr ) {
|
767 |
+
console.log( xhr.responseText );
|
768 |
+
});
|
769 |
+
},
|
770 |
+
|
771 |
+
//--------------------------------------------------------------------//
|
772 |
+
// Settings.
|
773 |
+
//--------------------------------------------------------------------//
|
774 |
+
|
775 |
+
/**
|
776 |
+
* Element bindings for Settings page.
|
777 |
+
*
|
778 |
+
* @since 1.3.9
|
779 |
+
*/
|
780 |
+
initSettings: function() {
|
781 |
+
|
782 |
+
// On ready events.
|
783 |
+
$( document ).on( 'wpformsReady', function() {
|
784 |
+
|
785 |
+
// Only proceed if we're on the settings page.
|
786 |
+
if ( ! $( '#wpforms-settings' ).length ) {
|
787 |
+
return;
|
788 |
+
}
|
789 |
+
|
790 |
+
// Watch for hashes and scroll to if found.
|
791 |
+
// Display all addon boxes as the same height.
|
792 |
+
var integrationFocus = WPFormsAdmin.getQueryString( 'wpforms-integration' ),
|
793 |
+
jumpTo = WPFormsAdmin.getQueryString( 'jump' );
|
794 |
+
|
795 |
+
if ( integrationFocus ) {
|
796 |
+
$( 'body' ).animate({
|
797 |
+
scrollTop: $( '#wpforms-integration-'+integrationFocus ).offset().top
|
798 |
+
}, 1000 );
|
799 |
+
} else if ( jumpTo ) {
|
800 |
+
$( 'body' ).animate({
|
801 |
+
scrollTop: $( '#'+jumpTo ).offset().top
|
802 |
+
}, 1000 );
|
803 |
+
}
|
804 |
+
|
805 |
+
// Settings conditional logic.
|
806 |
+
$( '.wpforms-admin-settings-form' ).conditions( [
|
807 |
+
// Misc > Disable User Cookies visibility.
|
808 |
+
{
|
809 |
+
conditions: {
|
810 |
+
element: '#wpforms-setting-gdpr',
|
811 |
+
type: 'checked',
|
812 |
+
operator: 'is'
|
813 |
+
},
|
814 |
+
actions: {
|
815 |
+
if: {
|
816 |
+
element: '#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details',
|
817 |
+
action: 'show'
|
818 |
+
},
|
819 |
+
else : {
|
820 |
+
element: '#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details',
|
821 |
+
action: 'hide'
|
822 |
+
}
|
823 |
+
},
|
824 |
+
effect: 'appear'
|
825 |
+
}
|
826 |
+
] );
|
827 |
+
});
|
828 |
+
|
829 |
+
// Image upload fields.
|
830 |
+
$( document ).on( 'click', '.wpforms-setting-row-image button', function( event ) {
|
831 |
+
|
832 |
+
event.preventDefault();
|
833 |
+
|
834 |
+
WPFormsAdmin.imageUploadModal( $( this ) );
|
835 |
+
});
|
836 |
+
|
837 |
+
// Verify license key.
|
838 |
+
$( document ).on( 'click', '#wpforms-setting-license-key-verify', function( event ) {
|
839 |
+
|
840 |
+
event.preventDefault();
|
841 |
+
|
842 |
+
WPFormsAdmin.licenseVerify( $( this ) );
|
843 |
+
});
|
844 |
+
|
845 |
+
// Deactivate license key.
|
846 |
+
$( document ).on( 'click', '#wpforms-setting-license-key-deactivate', function( event ) {
|
847 |
+
|
848 |
+
event.preventDefault();
|
849 |
+
|
850 |
+
WPFormsAdmin.licenseDeactivate( $( this ) );
|
851 |
+
});
|
852 |
+
|
853 |
+
// Refresh license key.
|
854 |
+
$( document ).on( 'click', '#wpforms-setting-license-key-refresh', function( event ) {
|
855 |
+
|
856 |
+
event.preventDefault();
|
857 |
+
|
858 |
+
WPFormsAdmin.licenseRefresh( $( this ) );
|
859 |
+
});
|
860 |
+
|
861 |
+
/**
|
862 |
+
* @todo Refactor providers settings tab. Code below is legacy.
|
863 |
+
*/
|
864 |
+
|
865 |
+
// Integration connect.
|
866 |
+
$( document ).on( 'click', '.wpforms-settings-provider-connect', function( event ) {
|
867 |
+
|
868 |
+
event.preventDefault();
|
869 |
+
|
870 |
+
WPFormsAdmin.integrationConnect( $( this ) );
|
871 |
+
});
|
872 |
+
|
873 |
+
// Integration account disconnect.
|
874 |
+
$( document ).on( 'click', '.wpforms-settings-provider-accounts-list a', function( event ) {
|
875 |
+
|
876 |
+
event.preventDefault();
|
877 |
+
|
878 |
+
WPFormsAdmin.integrationDisconnect( $( this ) );
|
879 |
+
});
|
880 |
+
|
881 |
+
// Integration individual display toggling.
|
882 |
+
$( document ).on( 'click', '.wpforms-settings-provider-header', function( event ) {
|
883 |
+
|
884 |
+
event.preventDefault();
|
885 |
+
|
886 |
+
$( this ).parent().find( '.wpforms-settings-provider-accounts' ).slideToggle();
|
887 |
+
$( this ).parent().find( '.wpforms-settings-provider-logo i' ).toggleClass( 'fa-chevron-right fa-chevron-down' );
|
888 |
+
});
|
889 |
+
|
890 |
+
// Integration accounts display toggling.
|
891 |
+
$( document ).on( 'click', '.wpforms-settings-provider-accounts-toggle a', function( event ) {
|
892 |
+
|
893 |
+
event.preventDefault();
|
894 |
+
|
895 |
+
var $connectFields = $( this ).parent().next( '.wpforms-settings-provider-accounts-connect' );
|
896 |
+
$connectFields.find( 'input[type=text], input[type=password]' ).val('');
|
897 |
+
$connectFields.slideToggle();
|
898 |
+
});
|
899 |
+
},
|
900 |
+
|
901 |
+
/**
|
902 |
+
* Image upload modal window.
|
903 |
+
*
|
904 |
+
* @since 1.3.0
|
905 |
+
*/
|
906 |
+
imageUploadModal: function( el ) {
|
907 |
+
|
908 |
+
if ( s.media_frame ) {
|
909 |
+
s.media_frame.open();
|
910 |
+
return;
|
911 |
+
}
|
912 |
+
|
913 |
+
var $setting = $( el ).closest( '.wpforms-setting-field' );
|
914 |
+
|
915 |
+
s.media_frame = wp.media.frames.wpforms_media_frame = wp.media({
|
916 |
+
className: 'media-frame wpforms-media-frame',
|
917 |
+
frame: 'select',
|
918 |
+
multiple: false,
|
919 |
+
title: wpforms_admin.upload_image_title,
|
920 |
+
library: {
|
921 |
+
type: 'image'
|
922 |
+
},
|
923 |
+
button: {
|
924 |
+
text: wpforms_admin.upload_image_button
|
925 |
+
}
|
926 |
+
});
|
927 |
+
|
928 |
+
s.media_frame.on( 'select', function(){
|
929 |
+
// Grab our attachment selection and construct a JSON representation of the model.
|
930 |
+
var media_attachment = s.media_frame.state().get( 'selection' ).first().toJSON();
|
931 |
+
|
932 |
+
// Send the attachment URL to our custom input field via jQuery.
|
933 |
+
$setting.find( 'input[type=text]' ).val( media_attachment.url );
|
934 |
+
$setting.find( 'img' ).remove();
|
935 |
+
$setting.prepend( '<img src="'+media_attachment.url+'">' );
|
936 |
+
});
|
937 |
+
|
938 |
+
// Now that everything has been set, let's open up the frame.
|
939 |
+
s.media_frame.open();
|
940 |
+
},
|
941 |
+
|
942 |
+
/**
|
943 |
+
* Verify a license key.
|
944 |
+
*
|
945 |
+
* @since 1.3.9
|
946 |
+
*/
|
947 |
+
licenseVerify: function( el ) {
|
948 |
+
|
949 |
+
var $this = $( el ),
|
950 |
+
$row = $this.closest( '.wpforms-setting-row' ),
|
951 |
+
buttonWidth = $this.outerWidth(),
|
952 |
+
buttonLabel = $this.text(),
|
953 |
+
data = {
|
954 |
+
action: 'wpforms_verify_license',
|
955 |
+
nonce: wpforms_admin.nonce,
|
956 |
+
license: $('#wpforms-setting-license-key').val()
|
957 |
+
};
|
958 |
+
|
959 |
+
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
|
960 |
+
|
961 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
962 |
+
|
963 |
+
var icon = 'fa fa-check-circle',
|
964 |
+
color = 'green',
|
965 |
+
msg;
|
966 |
+
|
967 |
+
if ( res.success ){
|
968 |
+
msg = res.data.msg;
|
969 |
+
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).show();
|
970 |
+
$row.find( '.type strong' ).text( res.data.type );
|
971 |
+
$('.wpforms-license-notice').remove();
|
972 |
+
} else {
|
973 |
+
icon = 'fa fa-exclamation-circle';
|
974 |
+
color = 'orange';
|
975 |
+
msg = res.data;
|
976 |
+
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
|
977 |
+
}
|
978 |
+
|
979 |
+
$.alert({
|
980 |
+
title: false,
|
981 |
+
content: msg,
|
982 |
+
icon: icon,
|
983 |
+
type: color,
|
984 |
+
buttons: {
|
985 |
+
confirm: {
|
986 |
+
text: wpforms_admin.ok,
|
987 |
+
btnClass: 'btn-confirm',
|
988 |
+
keys: [ 'enter' ]
|
989 |
+
}
|
990 |
+
}
|
991 |
+
});
|
992 |
+
|
993 |
+
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
|
994 |
+
|
995 |
+
}).fail( function( xhr ) {
|
996 |
+
console.log( xhr.responseText );
|
997 |
+
});
|
998 |
+
},
|
999 |
+
|
1000 |
+
/**
|
1001 |
+
* Verify a license key.
|
1002 |
+
*
|
1003 |
+
* @since 1.3.9
|
1004 |
+
*/
|
1005 |
+
licenseDeactivate: function( el ) {
|
1006 |
+
|
1007 |
+
var $this = $( el ),
|
1008 |
+
$row = $this.closest( '.wpforms-setting-row' ),
|
1009 |
+
buttonWidth = $this.outerWidth(),
|
1010 |
+
buttonLabel = $this.text(),
|
1011 |
+
data = {
|
1012 |
+
action: 'wpforms_deactivate_license',
|
1013 |
+
nonce: wpforms_admin.nonce
|
1014 |
+
};
|
1015 |
+
|
1016 |
+
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
|
1017 |
+
|
1018 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1019 |
+
|
1020 |
+
var icon = 'fa fa-info-circle',
|
1021 |
+
color = 'blue',
|
1022 |
+
msg = res.data;
|
1023 |
+
|
1024 |
+
if ( res.success ){
|
1025 |
+
$row.find( '#wpforms-setting-license-key' ).val('');
|
1026 |
+
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
|
1027 |
+
} else {
|
1028 |
+
icon = 'fa fa-exclamation-circle';
|
1029 |
+
color = 'orange';
|
1030 |
+
}
|
1031 |
+
|
1032 |
+
$.alert({
|
1033 |
+
title: false,
|
1034 |
+
content: msg,
|
1035 |
+
icon: icon,
|
1036 |
+
type: color,
|
1037 |
+
buttons: {
|
1038 |
+
confirm: {
|
1039 |
+
text: wpforms_admin.ok,
|
1040 |
+
btnClass: 'btn-confirm',
|
1041 |
+
keys: [ 'enter' ]
|
1042 |
+
}
|
1043 |
+
}
|
1044 |
+
});
|
1045 |
+
|
1046 |
+
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
|
1047 |
+
|
1048 |
+
}).fail( function( xhr ) {
|
1049 |
+
console.log( xhr.responseText );
|
1050 |
+
});
|
1051 |
+
},
|
1052 |
+
|
1053 |
+
/**
|
1054 |
+
* Refresh a license key.
|
1055 |
+
*
|
1056 |
+
* @since 1.3.9
|
1057 |
+
*/
|
1058 |
+
licenseRefresh: function( el ) {
|
1059 |
+
|
1060 |
+
var $this = $( el ),
|
1061 |
+
$row = $this.closest( '.wpforms-setting-row' ),
|
1062 |
+
data = {
|
1063 |
+
action: 'wpforms_refresh_license',
|
1064 |
+
nonce: wpforms_admin.nonce,
|
1065 |
+
license: $('#wpforms-setting-license-key').val()
|
1066 |
+
};
|
1067 |
+
|
1068 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1069 |
+
|
1070 |
+
var icon = 'fa fa-check-circle',
|
1071 |
+
color = 'green',
|
1072 |
+
msg;
|
1073 |
+
|
1074 |
+
if ( res.success ){
|
1075 |
+
msg = res.data.msg;
|
1076 |
+
$row.find( '.type strong' ).text( res.data.type );
|
1077 |
+
} else {
|
1078 |
+
icon = 'fa fa-exclamation-circle';
|
1079 |
+
color = 'orange';
|
1080 |
+
msg = res.data;
|
1081 |
+
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
|
1082 |
+
}
|
1083 |
+
|
1084 |
+
$.alert({
|
1085 |
+
title: false,
|
1086 |
+
content: msg,
|
1087 |
+
icon: icon,
|
1088 |
+
type: color,
|
1089 |
+
buttons: {
|
1090 |
+
confirm: {
|
1091 |
+
text: wpforms_admin.ok,
|
1092 |
+
btnClass: 'btn-confirm',
|
1093 |
+
keys: [ 'enter' ]
|
1094 |
+
}
|
1095 |
+
}
|
1096 |
+
});
|
1097 |
+
|
1098 |
+
}).fail( function( xhr ) {
|
1099 |
+
console.log( xhr.responseText );
|
1100 |
+
});
|
1101 |
+
},
|
1102 |
+
|
1103 |
+
/**
|
1104 |
+
* Connect integration provider account.
|
1105 |
+
*
|
1106 |
+
* @since 1.3.9
|
1107 |
+
*/
|
1108 |
+
integrationConnect: function( el ) {
|
1109 |
+
|
1110 |
+
var $this = $( el ),
|
1111 |
+
buttonWidth = $this.outerWidth(),
|
1112 |
+
buttonLabel = $this.text(),
|
1113 |
+
$provider = $this.closest( '.wpforms-settings-provider' ),
|
1114 |
+
data = {
|
1115 |
+
action : 'wpforms_settings_provider_add',
|
1116 |
+
data : $this.closest( 'form' ).serialize(),
|
1117 |
+
provider: $this.data( 'provider' ),
|
1118 |
+
nonce : wpforms_admin.nonce
|
1119 |
+
};
|
1120 |
+
|
1121 |
+
$this.html( 'Connecting...' ).css( 'width', buttonWidth ).prop( 'disabled', true );
|
1122 |
+
|
1123 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1124 |
+
|
1125 |
+
if ( res.success ){
|
1126 |
+
$provider.find( '.wpforms-settings-provider-accounts-list ul' ).append( res.data.html );
|
1127 |
+
$provider.addClass( 'connected' );
|
1128 |
+
$this.closest( '.wpforms-settings-provider-accounts-connect' ).slideToggle();
|
1129 |
+
} else {
|
1130 |
+
var msg = wpforms_admin.provider_auth_error;
|
1131 |
+
if ( res.data.error_msg ) {
|
1132 |
+
msg += "\n" + res.data.error_msg; // jshint ignore:line
|
1133 |
+
}
|
1134 |
+
$.alert({
|
1135 |
+
title: false,
|
1136 |
+
content: msg,
|
1137 |
+
icon: 'fa fa-exclamation-circle',
|
1138 |
+
type: 'orange',
|
1139 |
+
buttons: {
|
1140 |
+
confirm: {
|
1141 |
+
text: wpforms_admin.ok,
|
1142 |
+
btnClass: 'btn-confirm',
|
1143 |
+
keys: [ 'enter' ]
|
1144 |
+
}
|
1145 |
+
}
|
1146 |
+
});
|
1147 |
+
console.log(res);
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
|
1151 |
+
|
1152 |
+
}).fail( function( xhr ) {
|
1153 |
+
console.log( xhr.responseText );
|
1154 |
+
});
|
1155 |
+
},
|
1156 |
+
|
1157 |
+
/**
|
1158 |
+
* Remove integration provider account.
|
1159 |
+
*
|
1160 |
+
* @since 1.3.9
|
1161 |
+
*/
|
1162 |
+
integrationDisconnect: function( el ) {
|
1163 |
+
|
1164 |
+
var $this = $( el ),
|
1165 |
+
data = {
|
1166 |
+
action : 'wpforms_settings_provider_disconnect',
|
1167 |
+
provider: $this.data( 'provider' ),
|
1168 |
+
key : $this.data( 'key'),
|
1169 |
+
nonce : wpforms_admin.nonce
|
1170 |
+
};
|
1171 |
+
|
1172 |
+
$.confirm({
|
1173 |
+
title: wpforms_admin.heads_up,
|
1174 |
+
content: wpforms_admin.provider_delete_confirm,
|
1175 |
+
backgroundDismiss: false,
|
1176 |
+
closeIcon: false,
|
1177 |
+
icon: 'fa fa-exclamation-circle',
|
1178 |
+
type: 'orange',
|
1179 |
+
buttons: {
|
1180 |
+
confirm: {
|
1181 |
+
text: wpforms_admin.ok,
|
1182 |
+
btnClass: 'btn-confirm',
|
1183 |
+
keys: [ 'enter' ],
|
1184 |
+
action: function(){
|
1185 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1186 |
+
if ( res.success ){
|
1187 |
+
$this.parent().parent().remove();
|
1188 |
+
} else {
|
1189 |
+
console.log( res );
|
1190 |
+
}
|
1191 |
+
}).fail( function( xhr ) {
|
1192 |
+
console.log( xhr.responseText );
|
1193 |
+
});
|
1194 |
+
}
|
1195 |
+
},
|
1196 |
+
cancel: {
|
1197 |
+
text: wpforms_admin.cancel,
|
1198 |
+
keys: [ 'esc' ]
|
1199 |
+
}
|
1200 |
+
}
|
1201 |
+
});
|
1202 |
+
},
|
1203 |
+
|
1204 |
+
//--------------------------------------------------------------------//
|
1205 |
+
// Tools.
|
1206 |
+
//--------------------------------------------------------------------//
|
1207 |
+
|
1208 |
+
/**
|
1209 |
+
* Element bindings for Tools page.
|
1210 |
+
*
|
1211 |
+
* @since 1.4.2
|
1212 |
+
*/
|
1213 |
+
initTools: function() {
|
1214 |
+
|
1215 |
+
// Run import for a specific provider.
|
1216 |
+
$( document ).on( 'click', '#wpforms-ssl-verify', function( event ) {
|
1217 |
+
|
1218 |
+
event.preventDefault();
|
1219 |
+
|
1220 |
+
WPFormsAdmin.verifySSLConnection();
|
1221 |
+
});
|
1222 |
+
|
1223 |
+
// Run import for a specific provider.
|
1224 |
+
$( document ).on( 'click', '#wpforms-importer-forms-submit', function( event ) {
|
1225 |
+
|
1226 |
+
event.preventDefault();
|
1227 |
+
|
1228 |
+
// Check to confirm user as selected a form.
|
1229 |
+
if ( $( '#wpforms-importer-forms input:checked' ).length ) {
|
1230 |
+
|
1231 |
+
var ids = [];
|
1232 |
+
$( '#wpforms-importer-forms input:checked' ).each( function ( i ) {
|
1233 |
+
ids[i] = $( this ).val();
|
1234 |
+
});
|
1235 |
+
|
1236 |
+
if ( ! wpforms_admin.isPro ) {
|
1237 |
+
// We need to analyze the forms before starting the
|
1238 |
+
// actual import.
|
1239 |
+
WPFormsAdmin.analyzeForms( ids );
|
1240 |
+
} else {
|
1241 |
+
// Begin the import process.
|
1242 |
+
WPFormsAdmin.importForms( ids );
|
1243 |
+
}
|
1244 |
+
|
1245 |
+
} else {
|
1246 |
+
|
1247 |
+
// User didn't actually select a form so alert them.
|
1248 |
+
$.alert({
|
1249 |
+
title: false,
|
1250 |
+
content: wpforms_admin.importer_forms_required,
|
1251 |
+
icon: 'fa fa-info-circle',
|
1252 |
+
type: 'blue',
|
1253 |
+
buttons: {
|
1254 |
+
confirm: {
|
1255 |
+
text: wpforms_admin.ok,
|
1256 |
+
btnClass: 'btn-confirm',
|
1257 |
+
keys: [ 'enter' ]
|
1258 |
+
}
|
1259 |
+
}
|
1260 |
+
});
|
1261 |
+
}
|
1262 |
+
});
|
1263 |
+
|
1264 |
+
// Continue import after analyzing.
|
1265 |
+
$( document ).on( 'click', '#wpforms-importer-continue-submit', function( event ) {
|
1266 |
+
|
1267 |
+
event.preventDefault();
|
1268 |
+
|
1269 |
+
WPFormsAdmin.importForms( s.formIDs );
|
1270 |
+
});
|
1271 |
+
},
|
1272 |
+
|
1273 |
+
/**
|
1274 |
+
* Perform test connection to verify that the current web host
|
1275 |
+
* can successfully make outbound SSL connections.
|
1276 |
+
*
|
1277 |
+
* @since 1.4.5
|
1278 |
+
*/
|
1279 |
+
verifySSLConnection: function() {
|
1280 |
+
|
1281 |
+
var $btn = $( '#wpforms-ssl-verify' ),
|
1282 |
+
btnLabel = $btn.text(),
|
1283 |
+
btnWidth = $btn.outerWidth(),
|
1284 |
+
$settings = $btn.parent(),
|
1285 |
+
data = {
|
1286 |
+
action: 'wpforms_verify_ssl',
|
1287 |
+
nonce: wpforms_admin.nonce
|
1288 |
+
};
|
1289 |
+
|
1290 |
+
$btn.css( 'width', btnWidth ).prop( 'disabled', true ).text( wpforms_admin.testing );
|
1291 |
+
|
1292 |
+
// Trigger AJAX to test connection
|
1293 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1294 |
+
|
1295 |
+
console.log( res );
|
1296 |
+
|
1297 |
+
// Remove any previous alerts.
|
1298 |
+
$settings.find( '.wpforms-alert, .wpforms-ssl-error' ).remove();
|
1299 |
+
|
1300 |
+
if ( res.success ){
|
1301 |
+
$btn.before( '<div class="wpforms-alert wpforms-alert-success">' + res.data.msg + '</div>' );
|
1302 |
+
} else {
|
1303 |
+
$btn.before( '<div class="wpforms-alert wpforms-alert-danger">' + res.data.msg + '</div>' );
|
1304 |
+
$btn.before( '<div class="wpforms-ssl-error pre-error">' + res.data.debug + '</div>' );
|
1305 |
+
}
|
1306 |
+
|
1307 |
+
$btn.css( 'width', btnWidth ).prop( 'disabled', false ).text( btnLabel );
|
1308 |
+
});
|
1309 |
+
},
|
1310 |
+
|
1311 |
+
/**
|
1312 |
+
* Begins the process of analyzing the forms.
|
1313 |
+
*
|
1314 |
+
* This runs for non-Pro installs to check if any of the forms to be
|
1315 |
+
* imported contain fields
|
1316 |
+
* not currently available.
|
1317 |
+
*
|
1318 |
+
* @since 1.4.2
|
1319 |
+
*/
|
1320 |
+
analyzeForms: function( forms ) {
|
1321 |
+
|
1322 |
+
var $processAnalyze = $( '#wpforms-importer-analyze' );
|
1323 |
+
|
1324 |
+
// Display total number of forms we have to import.
|
1325 |
+
$processAnalyze.find( '.form-total' ).text( forms.length );
|
1326 |
+
$processAnalyze.find( '.form-current' ).text( '1' );
|
1327 |
+
|
1328 |
+
// Hide the form select section.
|
1329 |
+
$( '#wpforms-importer-forms' ).hide();
|
1330 |
+
|
1331 |
+
// Show Analyze status.
|
1332 |
+
$processAnalyze.show();
|
1333 |
+
|
1334 |
+
// Create global analyze queue.
|
1335 |
+
s.analyzeQueue = forms;
|
1336 |
+
s.analyzed = 0;
|
1337 |
+
s.analyzeUpgrade = [];
|
1338 |
+
s.formIDs = forms;
|
1339 |
+
|
1340 |
+
// Analyze the first form in the queue.
|
1341 |
+
WPFormsAdmin.analyzeForm();
|
1342 |
+
},
|
1343 |
+
|
1344 |
+
/**
|
1345 |
+
* Analyze a single form from the queue.
|
1346 |
+
*
|
1347 |
+
* @since 1.4.2
|
1348 |
+
*/
|
1349 |
+
analyzeForm: function() {
|
1350 |
+
|
1351 |
+
var $analyzeSettings = $( '#wpforms-importer-analyze' ),
|
1352 |
+
formID = _.first( s.analyzeQueue ),
|
1353 |
+
provider = WPFormsAdmin.getQueryString( 'provider' ),
|
1354 |
+
data = {
|
1355 |
+
action: 'wpforms_import_form_' + provider,
|
1356 |
+
analyze: 1,
|
1357 |
+
form_id: formID,
|
1358 |
+
nonce: wpforms_admin.nonce
|
1359 |
+
};
|
1360 |
+
|
1361 |
+
// Trigger AJAX analyze for this form.
|
1362 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1363 |
+
|
1364 |
+
if ( res.success ){
|
1365 |
+
|
1366 |
+
if ( ! _.isEmpty( res.data.upgrade_plain ) || ! _.isEmpty( res.data.upgrade_omit ) ) {
|
1367 |
+
s.analyzeUpgrade.push({
|
1368 |
+
name: res.data.name,
|
1369 |
+
fields: _.union( res.data.upgrade_omit, res.data.upgrade_plain )
|
1370 |
+
});
|
1371 |
+
}
|
1372 |
+
|
1373 |
+
// Remove this form ID from the queue.
|
1374 |
+
s.analyzeQueue = _.without( s.analyzeQueue, formID );
|
1375 |
+
s.analyzed++;
|
1376 |
+
|
1377 |
+
if ( _.isEmpty( s.analyzeQueue ) ) {
|
1378 |
+
|
1379 |
+
if ( _.isEmpty( s.analyzeUpgrade ) ) {
|
1380 |
+
// Continue to import forms as no Pro fields were
|
1381 |
+
// found.
|
1382 |
+
WPFormsAdmin.importForms( s.formIDs );
|
1383 |
+
} else {
|
1384 |
+
// We found Pro fields, so alert the user.
|
1385 |
+
var upgradeDetails = wp.template( 'wpforms-importer-upgrade' );
|
1386 |
+
$analyzeSettings.find( '.upgrade' ).append( upgradeDetails( s.analyzeUpgrade ) );
|
1387 |
+
$analyzeSettings.find( '.upgrade' ).show();
|
1388 |
+
$analyzeSettings.find( '.process-analyze' ).hide();
|
1389 |
+
}
|
1390 |
+
|
1391 |
+
} else {
|
1392 |
+
// Analyze next form in the queue.
|
1393 |
+
$analyzeSettings.find( '.form-current' ).text( s.analyzed+1 );
|
1394 |
+
WPFormsAdmin.analyzeForm();
|
1395 |
+
}
|
1396 |
+
}
|
1397 |
+
});
|
1398 |
+
},
|
1399 |
+
|
1400 |
+
/**
|
1401 |
+
* Begins the process of importing the forms.
|
1402 |
+
*
|
1403 |
+
* @since 1.4.2
|
1404 |
+
*/
|
1405 |
+
importForms: function( forms ) {
|
1406 |
+
|
1407 |
+
var $processSettings = $( '#wpforms-importer-process' );
|
1408 |
+
|
1409 |
+
// Display total number of forms we have to import.
|
1410 |
+
$processSettings.find( '.form-total' ).text( forms.length );
|
1411 |
+
$processSettings.find( '.form-current' ).text( '1' );
|
1412 |
+
|
1413 |
+
// Hide the form select and form analyze sections.
|
1414 |
+
$( '#wpforms-importer-forms, #wpforms-importer-analyze' ).hide();
|
1415 |
+
|
1416 |
+
// Show processing status.
|
1417 |
+
$processSettings.show();
|
1418 |
+
|
1419 |
+
// Create global import queue.
|
1420 |
+
s.importQueue = forms;
|
1421 |
+
s.imported = 0;
|
1422 |
+
|
1423 |
+
// Import the first form in the queue.
|
1424 |
+
WPFormsAdmin.importForm();
|
1425 |
+
},
|
1426 |
+
|
1427 |
+
/**
|
1428 |
+
* Imports a single form from the import queue.
|
1429 |
+
*
|
1430 |
+
* @since 1.4.2
|
1431 |
+
*/
|
1432 |
+
importForm: function() {
|
1433 |
+
|
1434 |
+
var $processSettings = $( '#wpforms-importer-process' ),
|
1435 |
+
formID = _.first( s.importQueue ),
|
1436 |
+
provider = WPFormsAdmin.getQueryString( 'provider' ),
|
1437 |
+
data = {
|
1438 |
+
action: 'wpforms_import_form_' + provider,
|
1439 |
+
form_id: formID,
|
1440 |
+
nonce: wpforms_admin.nonce
|
1441 |
+
};
|
1442 |
+
|
1443 |
+
// Trigger AJAX import for this form.
|
1444 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1445 |
+
|
1446 |
+
if ( res.success ){
|
1447 |
+
var statusUpdate;
|
1448 |
+
|
1449 |
+
if ( res.data.error ) {
|
1450 |
+
statusUpdate = wp.template( 'wpforms-importer-status-error' );
|
1451 |
+
} else {
|
1452 |
+
statusUpdate = wp.template( 'wpforms-importer-status-update' );
|
1453 |
+
}
|
1454 |
+
|
1455 |
+
$processSettings.find( '.status' ).prepend( statusUpdate( res.data ) );
|
1456 |
+
$processSettings.find( '.status' ).show();
|
1457 |
+
|
1458 |
+
// Remove this form ID from the queue.
|
1459 |
+
s.importQueue = _.without( s.importQueue, formID );
|
1460 |
+
s.imported++;
|
1461 |
+
|
1462 |
+
if ( _.isEmpty( s.importQueue ) ) {
|
1463 |
+
$processSettings.find( '.process-count' ).hide();
|
1464 |
+
$processSettings.find( '.forms-completed' ).text( s.imported );
|
1465 |
+
$processSettings.find( '.process-completed' ).show();
|
1466 |
+
} else {
|
1467 |
+
// Import next form in the queue.
|
1468 |
+
$processSettings.find( '.form-current' ).text( s.imported+1 );
|
1469 |
+
WPFormsAdmin.importForm();
|
1470 |
+
}
|
1471 |
+
}
|
1472 |
+
});
|
1473 |
+
},
|
1474 |
+
|
1475 |
+
//--------------------------------------------------------------------//
|
1476 |
+
// Upgrades (Tabs view).
|
1477 |
+
//--------------------------------------------------------------------//
|
1478 |
+
|
1479 |
+
/**
|
1480 |
+
* Element bindings for Tools page.
|
1481 |
+
*
|
1482 |
+
* @since 1.4.3
|
1483 |
+
*/
|
1484 |
+
initUpgrades: function() {
|
1485 |
+
|
1486 |
+
// Prepare to run the v1.4.3 upgrade routine.
|
1487 |
+
$( document ).on( 'click', '#wpforms-upgrade-143 button', function( event ) {
|
1488 |
+
|
1489 |
+
event.preventDefault();
|
1490 |
+
|
1491 |
+
var $this = $( this ),
|
1492 |
+
buttonWidth = $this.outerWidth(),
|
1493 |
+
$status = $( '#wpforms-upgrade-143 .status' ),
|
1494 |
+
data = {
|
1495 |
+
action: 'wpforms_upgrade_143',
|
1496 |
+
nonce: wpforms_admin.nonce,
|
1497 |
+
init: true,
|
1498 |
+
incomplete: $this.data( 'incomplete' )
|
1499 |
+
};
|
1500 |
+
|
1501 |
+
// Change the button to indicate we are doing initial processing.
|
1502 |
+
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
|
1503 |
+
|
1504 |
+
// Get the total number of entries, then kick off the routine.
|
1505 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1506 |
+
if ( res.success ){
|
1507 |
+
|
1508 |
+
// Set initial values.
|
1509 |
+
s.upgraded = Number( res.data.upgraded );
|
1510 |
+
s.upgradeTotal = Number( res.data.total );
|
1511 |
+
var percent = Math.round( ( Number( s.upgraded ) / Number( s.upgradeTotal ) ) * 100 );
|
1512 |
+
|
1513 |
+
// Show the status area.
|
1514 |
+
$this.remove();
|
1515 |
+
$status.find( '.bar' ).css( 'width', percent + '%' );
|
1516 |
+
$status.show().find( '.total' ).text( s.upgradeTotal );
|
1517 |
+
$status.find( '.current' ).text( s.upgraded );
|
1518 |
+
$status.find( '.percent' ).text( percent + '%' );
|
1519 |
+
|
1520 |
+
// Begin the actual upgrade routine.
|
1521 |
+
WPFormsAdmin.upgrade143();
|
1522 |
+
}
|
1523 |
+
});
|
1524 |
+
});
|
1525 |
+
},
|
1526 |
+
|
1527 |
+
/**
|
1528 |
+
* The v1.4.3 entry fields upgrade routine.
|
1529 |
+
*
|
1530 |
+
* @since 1.4.3
|
1531 |
+
*/
|
1532 |
+
upgrade143: function() {
|
1533 |
+
|
1534 |
+
var $status = $( '#wpforms-upgrade-143 .status' ),
|
1535 |
+
data = {
|
1536 |
+
action: 'wpforms_upgrade_143',
|
1537 |
+
nonce: wpforms_admin.nonce,
|
1538 |
+
upgraded: s.upgraded
|
1539 |
+
};
|
1540 |
+
|
1541 |
+
// Get the total number of entries, then kick off the routine.
|
1542 |
+
$.post( wpforms_admin.ajax_url, data, function( res ) {
|
1543 |
+
if ( res.success ){
|
1544 |
+
|
1545 |
+
s.upgraded = Number( s.upgraded ) + Number( res.data.count );
|
1546 |
+
var percent = Math.round( ( Number( s.upgraded ) / Number( s.upgradeTotal ) ) * 100 );
|
1547 |
+
|
1548 |
+
// Update progress bar.
|
1549 |
+
$status.find( '.bar' ).css( 'width', percent + '%' );
|
1550 |
+
|
1551 |
+
if ( Number( res.data.count ) < 10 ) {
|
1552 |
+
// This batch completed the upgrade routine.
|
1553 |
+
$status.find( '.progress-bar' ).addClass( 'complete' );
|
1554 |
+
$status.find( '.msg' ).text( wpforms_admin.upgrade_completed );
|
1555 |
+
} else {
|
1556 |
+
|
1557 |
+
$status.find( '.current' ).text( s.upgraded );
|
1558 |
+
$status.find( '.percent' ).text( percent + '%' );
|
1559 |
+
|
1560 |
+
// Batch the next round of entries.
|
1561 |
+
WPFormsAdmin.upgrade143();
|
1562 |
+
}
|
1563 |
+
}
|
1564 |
+
});
|
1565 |
+
},
|
1566 |
+
|
1567 |
+
//--------------------------------------------------------------------//
|
1568 |
+
// Helper functions.
|
1569 |
+
//--------------------------------------------------------------------//
|
1570 |
+
|
1571 |
+
/**
|
1572 |
+
* Return if the target nodeName is a form element.
|
1573 |
+
*
|
1574 |
+
* @since 1.4.0
|
1575 |
+
*/
|
1576 |
+
isFormTypeNode: function( name ) {
|
1577 |
+
|
1578 |
+
name = name || false;
|
1579 |
+
|
1580 |
+
if ( 'TEXTAREA' === name || 'INPUT' === name || 'SELECT' === name ){
|
1581 |
+
return true;
|
1582 |
+
}
|
1583 |
+
|
1584 |
+
return false;
|
1585 |
+
},
|
1586 |
+
|
1587 |
+
/**
|
1588 |
+
* Get query string in a URL.
|
1589 |
+
*
|
1590 |
+
* @since 1.3.9
|
1591 |
+
*/
|
1592 |
+
getQueryString: function( name ) {
|
1593 |
+
|
1594 |
+
var match = new RegExp( '[?&]' + name + '=([^&]*)' ).exec( window.location.search );
|
1595 |
+
return match && decodeURIComponent( match[1].replace(/\+/g, ' ') );
|
1596 |
+
},
|
1597 |
+
|
1598 |
+
/**
|
1599 |
+
* Debug output helper.
|
1600 |
+
*
|
1601 |
+
* @since 1.4.4
|
1602 |
+
* @param msg
|
1603 |
+
*/
|
1604 |
+
debug: function( msg ) {
|
1605 |
+
|
1606 |
+
if ( WPFormsAdmin.isDebug() ) {
|
1607 |
+
if ( typeof msg === 'object' || msg.constructor === Array ) {
|
1608 |
+
console.log( 'WPForms Debug:' );
|
1609 |
+
console.log( msg );
|
1610 |
+
} else {
|
1611 |
+
console.log( 'WPForms Debug: ' + msg );
|
1612 |
+
}
|
1613 |
+
}
|
1614 |
+
},
|
1615 |
+
|
1616 |
+
/**
|
1617 |
+
* Is debug mode.
|
1618 |
+
*
|
1619 |
+
* @since 1.4.4
|
1620 |
+
*/
|
1621 |
+
isDebug: function() {
|
1622 |
+
|
1623 |
+
return ( window.location.hash && '#wpformsdebug' === window.location.hash );
|
1624 |
+
}
|
1625 |
+
};
|
1626 |
+
|
1627 |
+
WPFormsAdmin.init();
|
1628 |
+
|
1629 |
+
window.WPFormsAdmin = WPFormsAdmin;
|
1630 |
+
|
1631 |
+
})( jQuery );
|
assets/js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){"use strict";var t,n={settings:{iconActivate:'<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',iconDeactivate:'<i class="fa fa-toggle-on" aria-hidden="true"></i>',iconInstall:'<i class="fa fa-cloud-download" aria-hidden="true"></i>',iconSpinner:'<i class="fa fa-spinner fa-spin" aria-hidden="true"></i>',mediaFrame:!1},init:function(){t=this.settings,e(document).ready(n.ready),n.initFormOverview(),n.initEntriesSingle(),n.initEntriesList(),n.initWelcome(),n.initAddons(),n.initSettings(),n.initTools(),n.initUpgrades()},ready:function(){e(".notice").show(),e("#screen-meta-links, #screen-meta").prependTo("#wpforms-header-temp").show(),n.initChoicesJS(),n.initCheckboxMultiselectColumns(),e(".wpforms-color-picker").minicolors(),e(".wpforms-file-upload").each(function(){var t=e(this).find("input[type=file]"),n=e(this).find("label"),o=n.html();t.on("change",function(e){var t="";this.files&&this.files.length>1?t=(this.getAttribute("data-multiple-caption")||"").replace("{count}",this.files.length):e.target.value&&(t=e.target.value.split("\\").pop()),t?n.find(".fld").html(t):n.html(o)}),t.on("focus",function(){t.addClass("has-focus")}).on("blur",function(){t.removeClass("has-focus")})}),jconfirm.defaults={closeIcon:!0,backgroundDismiss:!0,escapeKey:!0,animationBounce:1,useBootstrap:!1,theme:"modern",boxWidth:"400px",animateFromElement:!1},e(document).on("click",".wpforms-upgrade-modal",function(){e.alert({title:!1,content:wpforms_admin.upgrade_modal,icon:"fa fa-info-circle",type:"blue",boxWidth:"565px",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).trigger("wpformsReady")},initChoicesJS:function(){e(".choicesjs-select").each(function(){var t=e(this),n={searchEnabled:!1};t.attr("multiple")&&(n.searchEnabled=!0,n.removeItemButton=!0),t.data("placeholder")&&(n.placeholderValue=t.data("placeholder")),"off"===t.data("sorting")&&(n.shouldSort=!1),t.data("search")&&(n.searchEnabled=!0),new Choices(t[0],n)})},initCheckboxMultiselectColumns:function(){e(document).on("change",".checkbox-multiselect-columns input",function(){var t=e(this),n=t.parent(),o=t.closest(".checkbox-multiselect-columns"),i=n.text(),r="check-item-"+t.val(),s=o.find("#"+r);t.prop("checked")?(t.parent().addClass("checked"),s.length||o.find(".second-column ul").append('<li id="'+r+'">'+i+"</li>")):(t.parent().removeClass("checked"),o.find("#"+r).remove())}),e(document).on("click",".checkbox-multiselect-columns .all",function(t){t.preventDefault(),e(this).closest(".checkbox-multiselect-columns").find("input[type=checkbox]").prop("checked",!0).trigger("change"),e(this).remove()})},initFormOverview:function(){e(document).on("click","#wpforms-overview .wp-list-table .delete a, #wpforms-overview .wp-list-table .duplicate a",function(t){t.preventDefault();var n=e(this).attr("href"),o=e(this).parent().hasClass("delete")?wpforms_admin.form_delete_confirm:wpforms_admin.form_duplicate_confirm;e.confirm({title:!1,content:o,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},initEntriesSingle:function(){"wpforms-entries"===n.getQueryString("page")&&"details"===n.getQueryString("view")&&n.entryHotkeys(),e(document).on("click","#wpforms-entries-single .submitdelete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-single .wpforms-entry-print a",function(t){t.preventDefault(),window.open(e(this).attr("href"))}),e(document).on("click","#wpforms-entries-single .wpforms-empty-field-toggle",function(t){t.preventDefault(),"true"===wpCookies.get("wpforms_entry_hide_empty")?(wpCookies.remove("wpforms_entry_hide_empty"),e(this).text(wpforms_admin.entry_empty_fields_hide)):(wpCookies.set("wpforms_entry_hide_empty","true",2592e3),e(this).text(wpforms_admin.entry_empty_fields_show)),e(".wpforms-entry-field.empty").toggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .add",function(t){t.preventDefault(),e(this).hide().next("form").slideToggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .cancel",function(t){t.preventDefault(),e(this).closest("form").slideToggle(),e(".wpforms-entry-notes-new .add").show()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-byline .note-delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_note_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entryHotkeys:function(){e(document).keydown(function(t){if(74!==t.keyCode||n.isFormTypeNode(t.target.nodeName)){if(75===t.keyCode&&!n.isFormTypeNode(t.target.nodeName)){var o=e("#wpforms-entry-next-link").attr("href");"#"!==o&&(window.location.href=o)}}else{var i=e("#wpforms-entry-prev-link").attr("href");"#"!==i&&(window.location.href=i)}})},initEntriesList:function(){e(document).on("click","#wpforms-entries-table-edit-columns",function(e){e.preventDefault(),n.entriesListFieldColumn()}),e(document).on("click","#wpforms-entries-list .form-selector .toggle",function(t){t.preventDefault(),e(this).toggleClass("active").next(".form-list").toggle()}),e(document).on("click","#wpforms-entries-list .wp-list-table .delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-star",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .starred-num").text()),r=n.data("id");n.hasClass("star")?(o="star",i++,n.attr("title",wpforms_admin.entry_unstar)):(o="unstar",i--,n.attr("title",wpforms_admin.entry_star)),n.toggleClass("star unstar"),e("#wpforms-entries-list .starred-num").text(i);var s={task:o,action:"wpforms_entry_list_star",nonce:wpforms_admin.nonce,entry_id:r};e.post(wpforms_admin.ajax_url,s)}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-read",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .unread-num").text()),r=n.data("id");n.hasClass("read")?(o="read",i--,n.attr("title",wpforms_admin.entry_unread)):(o="unread",i++,n.attr("title",wpforms_admin.entry_read)),n.toggleClass("read unread"),e("#wpforms-entries-list .unread-num").text(i);var s={task:o,action:"wpforms_entry_list_read",nonce:wpforms_admin.nonce,entry_id:r};e.post(wpforms_admin.ajax_url,s)}),e(document).on("click","#wpforms-entries-list .form-details-actions-deleteall",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.entry_delete_all_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entriesListFieldColumn:function(){e.alert({title:wpforms_admin.entry_field_columns,boxWidth:"500px",content:t.iconSpinner+e("#wpforms-field-column-select").html(),onContentReady:function(){var t=this.$content,n=t.find("select"),o=new Choices(n[0],{maxItemCount:5,placeholderValue:wpforms_admin.fields_select+"...",removeItemButton:!0,shouldSort:!1,callbackOnInit:function(){t.find(".fa").remove(),t.find("form").show()}});e(".jconfirm-content-pane, .jconfirm-box").css("overflow","visible"),o.passedElement.addEventListener("change",function(){o.hideDropdown()},!1)},buttons:{confirm:{text:wpforms_admin.save_refresh,btnClass:"btn-confirm",keys:["enter"],action:function(){this.$content.find("form").submit()}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initWelcome:function(){e(document).on("click","#wpforms-welcome .play-video",function(t){t.preventDefault();e.dialog({title:!1,content:'<div class="video-container"><iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/yDyvSGV7tP4?rel=0&showinfo=0&autoplay=1" frameborder="0" allowfullscreen></iframe></div>',closeIcon:!0,boxWidth:"70%"})})},initAddons:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-admin-addons").length){e(".addon-item .details").matchHeight({byrow:!1,property:"height"});var t=new List("wpforms-admin-addons-list",{valueNames:["addon-name"]});e("#wpforms-admin-addons-search").on("keyup",function(){t.search(e(this).val())})}}),e(document).on("wpformsReady",function(){e("#wpforms-admin-addons").length&&e(".addon-item .details").matchHeight({byrow:!1,property:"min-height"})}),e(document).on("click","#wpforms-admin-addons .addon-item button",function(t){t.preventDefault(),n.addonToggle(e(this))})},addonToggle:function(n){var o,i,r,s,a,c,m=e(n),d=m.closest(".addon-item"),l=m.attr("data-plugin");if(m.prop("disabled",!0).addClass("loading"),m.html(t.iconSpinner),m.hasClass("status-active"))o="wpforms_deactivate_addon",i="status-inactive",r=wpforms_admin.addon_inactive,s=t.iconActivate+wpforms_admin.addon_activate,a=t.iconDeactivate+wpforms_admin.addon_deactivate;else if(m.hasClass("status-inactive"))o="wpforms_activate_addon",i="status-active",r=wpforms_admin.addon_active,s=t.iconDeactivate+wpforms_admin.addon_deactivate,a=t.iconActivate+wpforms_admin.addon_activate;else{if(!m.hasClass("status-download"))return;o="wpforms_install_addon",i="status-inactive",r=wpforms_admin.addon_inactive,s=t.iconActivate+wpforms_admin.addon_activate,a=t.iconInstall+wpforms_admin.addon_install}var f={action:o,nonce:wpforms_admin.nonce,plugin:l};e.post(wpforms_admin.ajax_url,f,function(t){t.success?("wpforms_install_addon"===o?(m.attr("data-plugin",t.data.basename),c=t.data.msg):c=t.data,d.find(".actions").append('<div class="msg success">'+c+"</div>"),d.find("span.status-label").removeClass("status-active status-inactive status-download").addClass(i).text(r),m.removeClass("status-active status-inactive status-download").addClass(i).html(s)):(d.find(".actions").append('<div class="msg error">'+t.data+"</div>"),m.html(a)),m.prop("disabled",!1).removeClass("loading"),setTimeout(function(){e(".addon-item .msg").remove()},3e3)}).fail(function(e){console.log(e.responseText)})},initSettings:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-settings").length){var t=n.getQueryString("wpforms-integration"),o=n.getQueryString("jump");t?e("body").animate({scrollTop:e("#wpforms-integration-"+t).offset().top},1e3):o&&e("body").animate({scrollTop:e("#"+o).offset().top},1e3)}}),e(document).on("click",".wpforms-setting-row-image button",function(t){t.preventDefault(),n.imageUploadModal(e(this))}),e(document).on("click","#wpforms-setting-license-key-verify",function(t){t.preventDefault(),n.licenseVerify(e(this))}),e(document).on("click","#wpforms-setting-license-key-deactivate",function(t){t.preventDefault(),n.licenseDeactivate(e(this))}),e(document).on("click","#wpforms-setting-license-key-refresh",function(t){t.preventDefault(),n.licenseRefresh(e(this))}),e(document).on("click",".wpforms-settings-provider-connect",function(t){t.preventDefault(),n.integrationConnect(e(this))}),e(document).on("click",".wpforms-settings-provider-accounts-list a",function(t){t.preventDefault(),n.integrationDisconnect(e(this))}),e(document).on("click",".wpforms-settings-provider-header",function(t){t.preventDefault(),e(this).parent().find(".wpforms-settings-provider-accounts").slideToggle(),e(this).parent().find(".wpforms-settings-provider-logo i").toggleClass("fa-chevron-right fa-chevron-down")}),e(document).on("click",".wpforms-settings-provider-accounts-toggle a",function(t){t.preventDefault();var n=e(this).parent().next(".wpforms-settings-provider-accounts-connect");n.find("input[type=text], input[type=password]").val(""),n.slideToggle()})},imageUploadModal:function(n){if(t.media_frame)t.media_frame.open();else{var o=e(n).closest(".wpforms-setting-field");t.media_frame=wp.media.frames.wpforms_media_frame=wp.media({className:"media-frame wpforms-media-frame",frame:"select",multiple:!1,title:wpforms_admin.upload_image_title,library:{type:"image"},button:{text:wpforms_admin.upload_image_button}}),t.media_frame.on("select",function(){var e=t.media_frame.state().get("selection").first().toJSON();o.find("input[type=text]").val(e.url),o.find("img").remove(),o.prepend('<img src="'+e.url+'">')}),t.media_frame.open()}},licenseVerify:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),r=o.outerWidth(),s=o.text(),a={action:"wpforms_verify_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};o.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n,r="fa fa-check-circle",a="green";t.success?(n=t.data.msg,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").show(),i.find(".type strong").text(t.data.type),e(".wpforms-license-notice").remove()):(r="fa fa-exclamation-circle",a="orange",n=t.data,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:n,icon:r,type:a,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(s).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseDeactivate:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),r=o.outerWidth(),s=o.text(),a={action:"wpforms_deactivate_license",nonce:wpforms_admin.nonce};o.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n="fa fa-info-circle",r="blue",a=t.data;t.success?(i.find("#wpforms-setting-license-key").val(""),i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()):(n="fa fa-exclamation-circle",r="orange"),e.alert({title:!1,content:a,icon:n,type:r,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(s).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseRefresh:function(t){var n=e(t).closest(".wpforms-setting-row"),o={action:"wpforms_refresh_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};e.post(wpforms_admin.ajax_url,o,function(t){var o,i="fa fa-check-circle",r="green";t.success?(o=t.data.msg,n.find(".type strong").text(t.data.type)):(i="fa fa-exclamation-circle",r="orange",o=t.data,n.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:o,icon:i,type:r,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}).fail(function(e){console.log(e.responseText)})},integrationConnect:function(t){var n=e(t),o=n.outerWidth(),i=n.text(),r=n.closest(".wpforms-settings-provider"),s={action:"wpforms_settings_provider_add",data:n.closest("form").serialize(),provider:n.data("provider"),nonce:wpforms_admin.nonce};n.html("Connecting...").css("width",o).prop("disabled",!0),e.post(wpforms_admin.ajax_url,s,function(t){if(t.success)r.find(".wpforms-settings-provider-accounts-list ul").append(t.data.html),r.addClass("connected"),n.closest(".wpforms-settings-provider-accounts-connect").slideToggle();else{var o=wpforms_admin.provider_auth_error;t.data.error_msg&&(o+="\n"+t.data.error_msg),e.alert({title:!1,content:o,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),console.log(t)}n.html(i).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},integrationDisconnect:function(t){var n=e(t),o={action:"wpforms_settings_provider_disconnect",provider:n.data("provider"),key:n.data("key"),nonce:wpforms_admin.nonce};e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.provider_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){e.post(wpforms_admin.ajax_url,o,function(e){e.success?n.parent().parent().remove():console.log(e)}).fail(function(e){console.log(e.responseText)})}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initTools:function(){e(document).on("click","#wpforms-ssl-verify",function(e){e.preventDefault(),n.verifySSLConnection()}),e(document).on("click","#wpforms-importer-forms-submit",function(t){if(t.preventDefault(),e("#wpforms-importer-forms input:checked").length){var o=[];e("#wpforms-importer-forms input:checked").each(function(t){o[t]=e(this).val()}),wpforms_admin.isPro?n.importForms(o):n.analyzeForms(o)}else e.alert({title:!1,content:wpforms_admin.importer_forms_required,icon:"fa fa-info-circle",type:"blue",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).on("click","#wpforms-importer-continue-submit",function(e){e.preventDefault(),n.importForms(t.formIDs)})},verifySSLConnection:function(){var t=e("#wpforms-ssl-verify"),n=t.text(),o=t.outerWidth(),i=t.parent(),r={action:"wpforms_verify_ssl",nonce:wpforms_admin.nonce};t.css("width",o).prop("disabled",!0).text(wpforms_admin.testing),e.post(wpforms_admin.ajax_url,r,function(e){console.log(e),i.find(".wpforms-alert, .wpforms-ssl-error").remove(),e.success?t.before('<div class="wpforms-alert wpforms-alert-success">'+e.data.msg+"</div>"):(t.before('<div class="wpforms-alert wpforms-alert-danger">'+e.data.msg+"</div>"),t.before('<div class="wpforms-ssl-error pre-error">'+e.data.debug+"</div>")),t.css("width",o).prop("disabled",!1).text(n)})},analyzeForms:function(o){var i=e("#wpforms-importer-analyze");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms").hide(),i.show(),t.analyzeQueue=o,t.analyzed=0,t.analyzeUpgrade=[],t.formIDs=o,n.analyzeForm()},analyzeForm:function(){var o=e("#wpforms-importer-analyze"),i=_.first(t.analyzeQueue),r={action:"wpforms_import_form_"+n.getQueryString("provider"),analyze:1,form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,r,function(e){if(e.success)if(_.isEmpty(e.data.upgrade_plain)&&_.isEmpty(e.data.upgrade_omit)||t.analyzeUpgrade.push({name:e.data.name,fields:_.union(e.data.upgrade_omit,e.data.upgrade_plain)}),t.analyzeQueue=_.without(t.analyzeQueue,i),t.analyzed++,_.isEmpty(t.analyzeQueue))if(_.isEmpty(t.analyzeUpgrade))n.importForms(t.formIDs);else{var r=wp.template("wpforms-importer-upgrade");o.find(".upgrade").append(r(t.analyzeUpgrade)),o.find(".upgrade").show(),o.find(".process-analyze").hide()}else o.find(".form-current").text(t.analyzed+1),n.analyzeForm()})},importForms:function(o){var i=e("#wpforms-importer-process");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms, #wpforms-importer-analyze").hide(),i.show(),t.importQueue=o,t.imported=0,n.importForm()},importForm:function(){var o=e("#wpforms-importer-process"),i=_.first(t.importQueue),r={action:"wpforms_import_form_"+n.getQueryString("provider"),form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,r,function(e){if(e.success){var r;r=e.data.error?wp.template("wpforms-importer-status-error"):wp.template("wpforms-importer-status-update"),o.find(".status").prepend(r(e.data)),o.find(".status").show(),t.importQueue=_.without(t.importQueue,i),t.imported++,_.isEmpty(t.importQueue)?(o.find(".process-count").hide(),o.find(".forms-completed").text(t.imported),o.find(".process-completed").show()):(o.find(".form-current").text(t.imported+1),n.importForm())}})},initUpgrades:function(){e(document).on("click","#wpforms-upgrade-143 button",function(o){o.preventDefault();var i=e(this),r=i.outerWidth(),s=e("#wpforms-upgrade-143 .status"),a={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,init:!0,incomplete:i.data("incomplete")};i.html(t.iconSpinner).css("width",r).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(e){if(e.success){t.upgraded=Number(e.data.upgraded),t.upgradeTotal=Number(e.data.total);var o=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);i.remove(),s.find(".bar").css("width",o+"%"),s.show().find(".total").text(t.upgradeTotal),s.find(".current").text(t.upgraded),s.find(".percent").text(o+"%"),n.upgrade143()}})})},upgrade143:function(){var o=e("#wpforms-upgrade-143 .status"),i={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,upgraded:t.upgraded};e.post(wpforms_admin.ajax_url,i,function(e){if(e.success){t.upgraded=Number(t.upgraded)+Number(e.data.count);var i=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);o.find(".bar").css("width",i+"%"),Number(e.data.count)<10?(o.find(".progress-bar").addClass("complete"),o.find(".msg").text(wpforms_admin.upgrade_completed)):(o.find(".current").text(t.upgraded),o.find(".percent").text(i+"%"),n.upgrade143())}})},isFormTypeNode:function(e){return"TEXTAREA"===(e=e||!1)||"INPUT"===e||"SELECT"===e},getQueryString:function(e){var t=new RegExp("[?&]"+e+"=([^&]*)").exec(window.location.search);return t&&decodeURIComponent(t[1].replace(/\+/g," "))},debug:function(e){n.isDebug()&&("object"==typeof e||e.constructor===Array?(console.log("WPForms Debug:"),console.log(e)):console.log("WPForms Debug: "+e))},isDebug:function(){return window.location.hash&&"#wpformsdebug"===window.location.hash}};n.init(),window.WPFormsAdmin=n}(jQuery);
|
1 |
+
!function(e){"use strict";var t,n={settings:{iconActivate:'<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',iconDeactivate:'<i class="fa fa-toggle-on" aria-hidden="true"></i>',iconInstall:'<i class="fa fa-cloud-download" aria-hidden="true"></i>',iconSpinner:'<i class="fa fa-spinner fa-spin" aria-hidden="true"></i>',mediaFrame:!1},init:function(){t=this.settings,e(document).ready(n.ready),n.initFormOverview(),n.initEntriesSingle(),n.initEntriesList(),n.initWelcome(),n.initAddons(),n.initSettings(),n.initTools(),n.initUpgrades()},ready:function(){e(".notice").show(),e("#screen-meta-links, #screen-meta").prependTo("#wpforms-header-temp").show(),n.initChoicesJS(),n.initCheckboxMultiselectColumns(),e(".wpforms-color-picker").minicolors(),e(".wpforms-file-upload").each(function(){var t=e(this).find("input[type=file]"),n=e(this).find("label"),o=n.html();t.on("change",function(e){var t="";this.files&&this.files.length>1?t=(this.getAttribute("data-multiple-caption")||"").replace("{count}",this.files.length):e.target.value&&(t=e.target.value.split("\\").pop()),t?n.find(".fld").html(t):n.html(o)}),t.on("focus",function(){t.addClass("has-focus")}).on("blur",function(){t.removeClass("has-focus")})}),jconfirm.defaults={closeIcon:!0,backgroundDismiss:!0,escapeKey:!0,animationBounce:1,useBootstrap:!1,theme:"modern",boxWidth:"400px",animateFromElement:!1},e(document).on("click",".wpforms-upgrade-modal",function(){e.alert({title:!1,content:wpforms_admin.upgrade_modal,icon:"fa fa-info-circle",type:"blue",boxWidth:"565px",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).trigger("wpformsReady")},initChoicesJS:function(){e(".choicesjs-select").each(function(){var t=e(this),n={searchEnabled:!1};t.attr("multiple")&&(n.searchEnabled=!0,n.removeItemButton=!0),t.data("placeholder")&&(n.placeholderValue=t.data("placeholder")),"off"===t.data("sorting")&&(n.shouldSort=!1),t.data("search")&&(n.searchEnabled=!0),new Choices(t[0],n)})},initCheckboxMultiselectColumns:function(){e(document).on("change",".checkbox-multiselect-columns input",function(){var t=e(this),n=t.parent(),o=t.closest(".checkbox-multiselect-columns"),i=n.text(),s="check-item-"+t.val(),r=o.find("#"+s);t.prop("checked")?(t.parent().addClass("checked"),r.length||o.find(".second-column ul").append('<li id="'+s+'">'+i+"</li>")):(t.parent().removeClass("checked"),o.find("#"+s).remove())}),e(document).on("click",".checkbox-multiselect-columns .all",function(t){t.preventDefault(),e(this).closest(".checkbox-multiselect-columns").find("input[type=checkbox]").prop("checked",!0).trigger("change"),e(this).remove()})},initFormOverview:function(){e(document).on("click","#wpforms-overview .wp-list-table .delete a, #wpforms-overview .wp-list-table .duplicate a",function(t){t.preventDefault();var n=e(this).attr("href"),o=e(this).parent().hasClass("delete")?wpforms_admin.form_delete_confirm:wpforms_admin.form_duplicate_confirm;e.confirm({title:!1,content:o,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},initEntriesSingle:function(){"wpforms-entries"===n.getQueryString("page")&&"details"===n.getQueryString("view")&&n.entryHotkeys(),e(document).on("click","#wpforms-entries-single .submitdelete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-single .wpforms-entry-print a",function(t){t.preventDefault(),window.open(e(this).attr("href"))}),e(document).on("click","#wpforms-entries-single .wpforms-empty-field-toggle",function(t){t.preventDefault(),"true"===wpCookies.get("wpforms_entry_hide_empty")?(wpCookies.remove("wpforms_entry_hide_empty"),e(this).text(wpforms_admin.entry_empty_fields_hide)):(wpCookies.set("wpforms_entry_hide_empty","true",2592e3),e(this).text(wpforms_admin.entry_empty_fields_show)),e(".wpforms-entry-field.empty").toggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .add",function(t){t.preventDefault(),e(this).hide().next("form").slideToggle()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-new .cancel",function(t){t.preventDefault(),e(this).closest("form").slideToggle(),e(".wpforms-entry-notes-new .add").show()}),e(document).on("click","#wpforms-entries-single .wpforms-entry-notes-byline .note-delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_note_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entryHotkeys:function(){e(document).keydown(function(t){if(74!==t.keyCode||n.isFormTypeNode(t.target.nodeName)){if(75===t.keyCode&&!n.isFormTypeNode(t.target.nodeName)){var o=e("#wpforms-entry-next-link").attr("href");"#"!==o&&(window.location.href=o)}}else{var i=e("#wpforms-entry-prev-link").attr("href");"#"!==i&&(window.location.href=i)}})},initEntriesList:function(){e(document).on("click","#wpforms-entries-table-edit-columns",function(e){e.preventDefault(),n.entriesListFieldColumn()}),e(document).on("click","#wpforms-entries-list .form-selector .toggle",function(t){t.preventDefault(),e(this).toggleClass("active").next(".form-list").toggle()}),e(document).on("click","#wpforms-entries-list .wp-list-table .delete",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:!1,content:wpforms_admin.entry_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-star",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .starred-num").text()),s=n.data("id");n.hasClass("star")?(o="star",i++,n.attr("title",wpforms_admin.entry_unstar)):(o="unstar",i--,n.attr("title",wpforms_admin.entry_star)),n.toggleClass("star unstar"),e("#wpforms-entries-list .starred-num").text(i);var r={task:o,action:"wpforms_entry_list_star",nonce:wpforms_admin.nonce,entry_id:s};e.post(wpforms_admin.ajax_url,r)}),e(document).on("click","#wpforms-entries-list .wp-list-table .indicator-read",function(t){t.preventDefault();var n=e(this),o="",i=Number(e("#wpforms-entries-list .unread-num").text()),s=n.data("id");n.hasClass("read")?(o="read",i--,n.attr("title",wpforms_admin.entry_unread)):(o="unread",i++,n.attr("title",wpforms_admin.entry_read)),n.toggleClass("read unread"),e("#wpforms-entries-list .unread-num").text(i);var r={task:o,action:"wpforms_entry_list_read",nonce:wpforms_admin.nonce,entry_id:s};e.post(wpforms_admin.ajax_url,r)}),e(document).on("click","#wpforms-entries-list .form-details-actions-deleteall",function(t){t.preventDefault();var n=e(this).attr("href");e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.entry_delete_all_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){window.location=n}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})})},entriesListFieldColumn:function(){e.alert({title:wpforms_admin.entry_field_columns,boxWidth:"500px",content:t.iconSpinner+e("#wpforms-field-column-select").html(),onContentReady:function(){var t=this.$content,n=t.find("select"),o=new Choices(n[0],{maxItemCount:5,placeholderValue:wpforms_admin.fields_select+"...",removeItemButton:!0,shouldSort:!1,callbackOnInit:function(){t.find(".fa").remove(),t.find("form").show()}});e(".jconfirm-content-pane, .jconfirm-box").css("overflow","visible"),o.passedElement.addEventListener("change",function(){o.hideDropdown()},!1)},buttons:{confirm:{text:wpforms_admin.save_refresh,btnClass:"btn-confirm",keys:["enter"],action:function(){this.$content.find("form").submit()}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initWelcome:function(){e(document).on("click","#wpforms-welcome .play-video",function(t){t.preventDefault();e.dialog({title:!1,content:'<div class="video-container"><iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/yDyvSGV7tP4?rel=0&showinfo=0&autoplay=1" frameborder="0" allowfullscreen></iframe></div>',closeIcon:!0,boxWidth:"70%"})})},initAddons:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-admin-addons").length){e(".addon-item .details").matchHeight({byrow:!1,property:"height"});var t=new List("wpforms-admin-addons-list",{valueNames:["addon-name"]});e("#wpforms-admin-addons-search").on("keyup",function(){t.search(e(this).val())})}}),e(document).on("wpformsReady",function(){e("#wpforms-admin-addons").length&&e(".addon-item .details").matchHeight({byrow:!1,property:"min-height"})}),e(document).on("click","#wpforms-admin-addons .addon-item button",function(t){t.preventDefault(),n.addonToggle(e(this))})},addonToggle:function(n){var o,i,s,r,a,c,d=e(n),m=d.closest(".addon-item"),l=d.attr("data-plugin");if(d.prop("disabled",!0).addClass("loading"),d.html(t.iconSpinner),d.hasClass("status-active"))o="wpforms_deactivate_addon",i="status-inactive",s=wpforms_admin.addon_inactive,r=t.iconActivate+wpforms_admin.addon_activate,a=t.iconDeactivate+wpforms_admin.addon_deactivate;else if(d.hasClass("status-inactive"))o="wpforms_activate_addon",i="status-active",s=wpforms_admin.addon_active,r=t.iconDeactivate+wpforms_admin.addon_deactivate,a=t.iconActivate+wpforms_admin.addon_activate;else{if(!d.hasClass("status-download"))return;o="wpforms_install_addon",i="status-inactive",s=wpforms_admin.addon_inactive,r=t.iconActivate+wpforms_admin.addon_activate,a=t.iconInstall+wpforms_admin.addon_install}var f={action:o,nonce:wpforms_admin.nonce,plugin:l};e.post(wpforms_admin.ajax_url,f,function(t){t.success?("wpforms_install_addon"===o?(d.attr("data-plugin",t.data.basename),c=t.data.msg):c=t.data,m.find(".actions").append('<div class="msg success">'+c+"</div>"),m.find("span.status-label").removeClass("status-active status-inactive status-download").addClass(i).text(s),d.removeClass("status-active status-inactive status-download").addClass(i).html(r)):("download_failed"===t.data[0].code?m.find(".actions").append('<div class="msg error">'+wpforms_admin.addon_error+"</div>"):m.find(".actions").append('<div class="msg error">'+t.data+"</div>"),d.html(a)),d.prop("disabled",!1).removeClass("loading"),setTimeout(function(){e(".addon-item .msg").remove()},3e3)}).fail(function(e){console.log(e.responseText)})},initSettings:function(){e(document).on("wpformsReady",function(){if(e("#wpforms-settings").length){var t=n.getQueryString("wpforms-integration"),o=n.getQueryString("jump");t?e("body").animate({scrollTop:e("#wpforms-integration-"+t).offset().top},1e3):o&&e("body").animate({scrollTop:e("#"+o).offset().top},1e3),e(".wpforms-admin-settings-form").conditions([{conditions:{element:"#wpforms-setting-gdpr",type:"checked",operator:"is"},actions:{if:{element:"#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details",action:"show"},else:{element:"#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details",action:"hide"}},effect:"appear"}])}}),e(document).on("click",".wpforms-setting-row-image button",function(t){t.preventDefault(),n.imageUploadModal(e(this))}),e(document).on("click","#wpforms-setting-license-key-verify",function(t){t.preventDefault(),n.licenseVerify(e(this))}),e(document).on("click","#wpforms-setting-license-key-deactivate",function(t){t.preventDefault(),n.licenseDeactivate(e(this))}),e(document).on("click","#wpforms-setting-license-key-refresh",function(t){t.preventDefault(),n.licenseRefresh(e(this))}),e(document).on("click",".wpforms-settings-provider-connect",function(t){t.preventDefault(),n.integrationConnect(e(this))}),e(document).on("click",".wpforms-settings-provider-accounts-list a",function(t){t.preventDefault(),n.integrationDisconnect(e(this))}),e(document).on("click",".wpforms-settings-provider-header",function(t){t.preventDefault(),e(this).parent().find(".wpforms-settings-provider-accounts").slideToggle(),e(this).parent().find(".wpforms-settings-provider-logo i").toggleClass("fa-chevron-right fa-chevron-down")}),e(document).on("click",".wpforms-settings-provider-accounts-toggle a",function(t){t.preventDefault();var n=e(this).parent().next(".wpforms-settings-provider-accounts-connect");n.find("input[type=text], input[type=password]").val(""),n.slideToggle()})},imageUploadModal:function(n){if(t.media_frame)t.media_frame.open();else{var o=e(n).closest(".wpforms-setting-field");t.media_frame=wp.media.frames.wpforms_media_frame=wp.media({className:"media-frame wpforms-media-frame",frame:"select",multiple:!1,title:wpforms_admin.upload_image_title,library:{type:"image"},button:{text:wpforms_admin.upload_image_button}}),t.media_frame.on("select",function(){var e=t.media_frame.state().get("selection").first().toJSON();o.find("input[type=text]").val(e.url),o.find("img").remove(),o.prepend('<img src="'+e.url+'">')}),t.media_frame.open()}},licenseVerify:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),s=o.outerWidth(),r=o.text(),a={action:"wpforms_verify_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};o.html(t.iconSpinner).css("width",s).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n,s="fa fa-check-circle",a="green";t.success?(n=t.data.msg,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").show(),i.find(".type strong").text(t.data.type),e(".wpforms-license-notice").remove()):(s="fa fa-exclamation-circle",a="orange",n=t.data,i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:n,icon:s,type:a,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(r).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseDeactivate:function(n){var o=e(n),i=o.closest(".wpforms-setting-row"),s=o.outerWidth(),r=o.text(),a={action:"wpforms_deactivate_license",nonce:wpforms_admin.nonce};o.html(t.iconSpinner).css("width",s).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(t){var n="fa fa-info-circle",s="blue",a=t.data;t.success?(i.find("#wpforms-setting-license-key").val(""),i.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()):(n="fa fa-exclamation-circle",s="orange"),e.alert({title:!1,content:a,icon:n,type:s,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),o.html(r).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},licenseRefresh:function(t){var n=e(t).closest(".wpforms-setting-row"),o={action:"wpforms_refresh_license",nonce:wpforms_admin.nonce,license:e("#wpforms-setting-license-key").val()};e.post(wpforms_admin.ajax_url,o,function(t){var o,i="fa fa-check-circle",s="green";t.success?(o=t.data.msg,n.find(".type strong").text(t.data.type)):(i="fa fa-exclamation-circle",s="orange",o=t.data,n.find(".type, .desc, #wpforms-setting-license-key-deactivate").hide()),e.alert({title:!1,content:o,icon:i,type:s,buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}).fail(function(e){console.log(e.responseText)})},integrationConnect:function(t){var n=e(t),o=n.outerWidth(),i=n.text(),s=n.closest(".wpforms-settings-provider"),r={action:"wpforms_settings_provider_add",data:n.closest("form").serialize(),provider:n.data("provider"),nonce:wpforms_admin.nonce};n.html("Connecting...").css("width",o).prop("disabled",!0),e.post(wpforms_admin.ajax_url,r,function(t){if(t.success)s.find(".wpforms-settings-provider-accounts-list ul").append(t.data.html),s.addClass("connected"),n.closest(".wpforms-settings-provider-accounts-connect").slideToggle();else{var o=wpforms_admin.provider_auth_error;t.data.error_msg&&(o+="\n"+t.data.error_msg),e.alert({title:!1,content:o,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}),console.log(t)}n.html(i).css("width","auto").prop("disabled",!1)}).fail(function(e){console.log(e.responseText)})},integrationDisconnect:function(t){var n=e(t),o={action:"wpforms_settings_provider_disconnect",provider:n.data("provider"),key:n.data("key"),nonce:wpforms_admin.nonce};e.confirm({title:wpforms_admin.heads_up,content:wpforms_admin.provider_delete_confirm,backgroundDismiss:!1,closeIcon:!1,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"],action:function(){e.post(wpforms_admin.ajax_url,o,function(e){e.success?n.parent().parent().remove():console.log(e)}).fail(function(e){console.log(e.responseText)})}},cancel:{text:wpforms_admin.cancel,keys:["esc"]}}})},initTools:function(){e(document).on("click","#wpforms-ssl-verify",function(e){e.preventDefault(),n.verifySSLConnection()}),e(document).on("click","#wpforms-importer-forms-submit",function(t){if(t.preventDefault(),e("#wpforms-importer-forms input:checked").length){var o=[];e("#wpforms-importer-forms input:checked").each(function(t){o[t]=e(this).val()}),wpforms_admin.isPro?n.importForms(o):n.analyzeForms(o)}else e.alert({title:!1,content:wpforms_admin.importer_forms_required,icon:"fa fa-info-circle",type:"blue",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}),e(document).on("click","#wpforms-importer-continue-submit",function(e){e.preventDefault(),n.importForms(t.formIDs)})},verifySSLConnection:function(){var t=e("#wpforms-ssl-verify"),n=t.text(),o=t.outerWidth(),i=t.parent(),s={action:"wpforms_verify_ssl",nonce:wpforms_admin.nonce};t.css("width",o).prop("disabled",!0).text(wpforms_admin.testing),e.post(wpforms_admin.ajax_url,s,function(e){console.log(e),i.find(".wpforms-alert, .wpforms-ssl-error").remove(),e.success?t.before('<div class="wpforms-alert wpforms-alert-success">'+e.data.msg+"</div>"):(t.before('<div class="wpforms-alert wpforms-alert-danger">'+e.data.msg+"</div>"),t.before('<div class="wpforms-ssl-error pre-error">'+e.data.debug+"</div>")),t.css("width",o).prop("disabled",!1).text(n)})},analyzeForms:function(o){var i=e("#wpforms-importer-analyze");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms").hide(),i.show(),t.analyzeQueue=o,t.analyzed=0,t.analyzeUpgrade=[],t.formIDs=o,n.analyzeForm()},analyzeForm:function(){var o=e("#wpforms-importer-analyze"),i=_.first(t.analyzeQueue),s={action:"wpforms_import_form_"+n.getQueryString("provider"),analyze:1,form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,s,function(e){if(e.success)if(_.isEmpty(e.data.upgrade_plain)&&_.isEmpty(e.data.upgrade_omit)||t.analyzeUpgrade.push({name:e.data.name,fields:_.union(e.data.upgrade_omit,e.data.upgrade_plain)}),t.analyzeQueue=_.without(t.analyzeQueue,i),t.analyzed++,_.isEmpty(t.analyzeQueue))if(_.isEmpty(t.analyzeUpgrade))n.importForms(t.formIDs);else{var s=wp.template("wpforms-importer-upgrade");o.find(".upgrade").append(s(t.analyzeUpgrade)),o.find(".upgrade").show(),o.find(".process-analyze").hide()}else o.find(".form-current").text(t.analyzed+1),n.analyzeForm()})},importForms:function(o){var i=e("#wpforms-importer-process");i.find(".form-total").text(o.length),i.find(".form-current").text("1"),e("#wpforms-importer-forms, #wpforms-importer-analyze").hide(),i.show(),t.importQueue=o,t.imported=0,n.importForm()},importForm:function(){var o=e("#wpforms-importer-process"),i=_.first(t.importQueue),s={action:"wpforms_import_form_"+n.getQueryString("provider"),form_id:i,nonce:wpforms_admin.nonce};e.post(wpforms_admin.ajax_url,s,function(e){if(e.success){var s;s=e.data.error?wp.template("wpforms-importer-status-error"):wp.template("wpforms-importer-status-update"),o.find(".status").prepend(s(e.data)),o.find(".status").show(),t.importQueue=_.without(t.importQueue,i),t.imported++,_.isEmpty(t.importQueue)?(o.find(".process-count").hide(),o.find(".forms-completed").text(t.imported),o.find(".process-completed").show()):(o.find(".form-current").text(t.imported+1),n.importForm())}})},initUpgrades:function(){e(document).on("click","#wpforms-upgrade-143 button",function(o){o.preventDefault();var i=e(this),s=i.outerWidth(),r=e("#wpforms-upgrade-143 .status"),a={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,init:!0,incomplete:i.data("incomplete")};i.html(t.iconSpinner).css("width",s).prop("disabled",!0),e.post(wpforms_admin.ajax_url,a,function(e){if(e.success){t.upgraded=Number(e.data.upgraded),t.upgradeTotal=Number(e.data.total);var o=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);i.remove(),r.find(".bar").css("width",o+"%"),r.show().find(".total").text(t.upgradeTotal),r.find(".current").text(t.upgraded),r.find(".percent").text(o+"%"),n.upgrade143()}})})},upgrade143:function(){var o=e("#wpforms-upgrade-143 .status"),i={action:"wpforms_upgrade_143",nonce:wpforms_admin.nonce,upgraded:t.upgraded};e.post(wpforms_admin.ajax_url,i,function(e){if(e.success){t.upgraded=Number(t.upgraded)+Number(e.data.count);var i=Math.round(Number(t.upgraded)/Number(t.upgradeTotal)*100);o.find(".bar").css("width",i+"%"),Number(e.data.count)<10?(o.find(".progress-bar").addClass("complete"),o.find(".msg").text(wpforms_admin.upgrade_completed)):(o.find(".current").text(t.upgraded),o.find(".percent").text(i+"%"),n.upgrade143())}})},isFormTypeNode:function(e){return"TEXTAREA"===(e=e||!1)||"INPUT"===e||"SELECT"===e},getQueryString:function(e){var t=new RegExp("[?&]"+e+"=([^&]*)").exec(window.location.search);return t&&decodeURIComponent(t[1].replace(/\+/g," "))},debug:function(e){n.isDebug()&&("object"==typeof e||e.constructor===Array?(console.log("WPForms Debug:"),console.log(e)):console.log("WPForms Debug: "+e))},isDebug:function(){return window.location.hash&&"#wpformsdebug"===window.location.hash}};n.init(),window.WPFormsAdmin=n}(jQuery);
|
assets/js/jquery.conditionals.min.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
/**
|
2 |
-
* jQuery Conditions 1.0.
|
3 |
*
|
4 |
* Copyright 2016 Bejamin Rojas
|
5 |
* @license Released under the MIT license.
|
6 |
* http://jquery.org/license
|
7 |
*/
|
8 |
-
!function(
|
1 |
/**
|
2 |
+
* jQuery Conditions 1.0.1
|
3 |
*
|
4 |
* Copyright 2016 Bejamin Rojas
|
5 |
* @license Released under the MIT license.
|
6 |
* http://jquery.org/license
|
7 |
*/
|
8 |
+
!function(e){"use strict";e.fn.conditions=function(i){return this.each(function(t,o){new n(o,i,e.fn.conditions.defaults).init()})},e.fn.conditions.defaults={condition:null,actions:{},effect:"fade"};var n=function(n,i,t){var o=this;o.element=e(n),o.defaults=t,o.conditions=i,o._init=!1,e.isArray(o.conditions)||(o.conditions=[o.conditions]),e.each(o.conditions,function(n,i){o.conditions[n]=e.extend({},o.defaults,i)})};n.prototype.init=function(){var n=this;n._init=!0,e(n.element).on("change",function(){n.matchConditions()}),e(n.element).on("keyup",function(){n.matchConditions()}),n.matchConditions(!0)},n.prototype.matchConditions=function(n){var i=this;n||(i._init=!1),e.each(i.conditions,function(n,t){var o=!1,a=!0;e.isArray(t.conditions)||(t.conditions=[t.conditions]),e.each(t.conditions,function(n,i){switch(i=e.extend({element:null,type:"val",operator:"==",condition:null,multiple:"single"},i),i.element=e(i.element),i.type){case"value":case"val":switch(i.operator){case"===":case"==":case"=":if(e.isArray(i.element.val())){var t=!1,c=!0;e.each(i.element.val(),function(e,n){n===i.condition?t=!0:c=!1}),o="single"==i.multiple?t:c}else o=i.element.val()===i.condition;break;case"!==":case"!=":if(e.isArray(i.element.val())){var t=!1,c=!0;e.each(i.element.val(),function(e,n){n!==i.condition?t=!0:c=!1}),o="single"==i.multiple?t:c}else o=i.element.val()!==i.condition;break;case"array":if(e.isArray(i.element.val())){var t=!1,c=i.element.val().length===i.condition.length;e.each(i.element.val(),function(n,o){-1!==e.inArray(o,i.condition)?t=!0:c=!1}),o="single"==i.multiple?t:c}else o=-1!==e.inArray(i.element.val(),i.condition);break;case"!array":if(e.isArray(i.element.val())){var t=!1,c=!0,s=[];e.each(i.element.val(),function(n,o){-1===e.inArray(o,i.condition)?t=!0:s.push(o)}),s.length==i.condition.length&&(c=!1),o="single"==i.multiple?t:c}else o=-1===e.inArray(i.element.val(),i.condition)}break;case"checked":switch(i.operator){case"is":o=i.element.is(":checked");break;case"!is":o=!i.element.is(":checked")}}!o&&a&&(a=!1)}),a?e.isEmptyObject(t.actions.if)||(e.isArray(t.actions.if)||(t.actions.if=[t.actions.if]),e.each(t.actions.if,function(e,n){i.showAndHide(n,t.effect)})):e.isEmptyObject(t.actions.else)||(e.isArray(t.actions.else)||(t.actions.else=[t.actions.else]),e.each(t.actions.else,function(e,n){i.showAndHide(n,t.effect)}))})},n.prototype.showAndHide=function(n,i){var t=this;switch(n.action){case"show":t._show(e(n.element),i);break;case"hide":t._hide(e(n.element),i)}},n.prototype._show=function(e,n){if(this._init)e.show();else switch(n){case"appear":e.show();break;case"slide":e.slideDown();break;case"fade":e.fadeIn(300)}},n.prototype._hide=function(e,n){if(this._init)e.hide();else switch(n){case"appear":e.hide();break;case"slide":e.slideUp();break;case"fade":e.fadeOut(300)}}}(jQuery);
|
assets/js/wpforms.js
CHANGED
@@ -13,9 +13,6 @@
|
|
13 |
*/
|
14 |
init: function() {
|
15 |
|
16 |
-
// Set user identifier
|
17 |
-
WPForms.setUserIndentifier();
|
18 |
-
|
19 |
// Document ready
|
20 |
$(document).ready(WPForms.ready);
|
21 |
|
@@ -32,6 +29,9 @@
|
|
32 |
*/
|
33 |
ready: function() {
|
34 |
|
|
|
|
|
|
|
35 |
WPForms.loadValidation();
|
36 |
WPForms.loadDatePicker();
|
37 |
WPForms.loadTimePicker();
|
@@ -752,7 +752,7 @@
|
|
752 |
*/
|
753 |
setUserIndentifier: function() {
|
754 |
|
755 |
-
if ( ! WPForms.getCookie('_wpfuuid') ) {
|
756 |
|
757 |
// Generate UUID - http://stackoverflow.com/a/873856/1489528
|
758 |
var s = new Array(36),
|
13 |
*/
|
14 |
init: function() {
|
15 |
|
|
|
|
|
|
|
16 |
// Document ready
|
17 |
$(document).ready(WPForms.ready);
|
18 |
|
29 |
*/
|
30 |
ready: function() {
|
31 |
|
32 |
+
// Set user identifier
|
33 |
+
WPForms.setUserIndentifier();
|
34 |
+
|
35 |
WPForms.loadValidation();
|
36 |
WPForms.loadDatePicker();
|
37 |
WPForms.loadTimePicker();
|
752 |
*/
|
753 |
setUserIndentifier: function() {
|
754 |
|
755 |
+
if ( wpforms_settings.uuid_cookie && ! WPForms.getCookie('_wpfuuid') ) {
|
756 |
|
757 |
// Generate UUID - http://stackoverflow.com/a/873856/1489528
|
758 |
var s = new Array(36),
|
changelog.txt
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.4.5.3 =
|
4 |
- Changed: Use minified admin assets when appropriate.
|
5 |
- Changed: Show helpful doc link in form embed modal.
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.4.6 =
|
4 |
+
- Added: GDPR Enhancements plugin setting [doc](https://wpforms.com/how-to-create-gdpr-compliant-forms/).
|
5 |
+
- Added: GDPR Enhancement: User Agreement form field.
|
6 |
+
- Changed: PHP warning that alerts users support for PHP 5.4 and below will be dropped this summer.
|
7 |
+
- Changed: Spam logging, to improve performance.
|
8 |
+
- Fixed: Typo in base form CSS.
|
9 |
+
- Fixed: Stripping HTML from the checkbox and mulitple choice labels in the form builder.
|
10 |
+
- Fixed: Form builder icon visibility when field labels are hidden.
|
11 |
+
|
12 |
= 1.4.5.3 =
|
13 |
- Changed: Use minified admin assets when appropriate.
|
14 |
- Changed: Show helpful doc link in form embed modal.
|
includes/admin/admin.php
CHANGED
@@ -123,6 +123,15 @@ function wpforms_admin_scripts() {
|
|
123 |
false
|
124 |
);
|
125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
// Main admin script.
|
127 |
wp_enqueue_script(
|
128 |
'wpforms-admin',
|
@@ -138,6 +147,7 @@ function wpforms_admin_scripts() {
|
|
138 |
'addon_deactivate' => esc_html__( 'Deactivate', 'wpforms' ),
|
139 |
'addon_inactive' => esc_html__( 'Inactive', 'wpforms' ),
|
140 |
'addon_install' => esc_html__( 'Install Addon', 'wpforms' ),
|
|
|
141 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
142 |
'cancel' => esc_html__( 'Cancel', 'wpforms' ),
|
143 |
'close' => esc_html__( 'Close', 'wpforms' ),
|
@@ -324,7 +334,7 @@ function wpforms_admin_upgrade_link() {
|
|
324 |
// If at this point we still don't have an ID, we really don't have one!
|
325 |
// Just return the standard upgrade URL.
|
326 |
if ( empty( $shareasale_id ) ) {
|
327 |
-
return 'https://wpforms.com/lite-upgrade/?utm_source=WordPress&utm_medium=link&utm_campaign=liteplugin';
|
328 |
}
|
329 |
|
330 |
// Whether we have a specific redirect URL to use
|
@@ -345,8 +355,8 @@ function wpforms_admin_upgrade_link() {
|
|
345 |
*/
|
346 |
function wpforms_check_php_version() {
|
347 |
|
348 |
-
// Display for PHP below 5.
|
349 |
-
if ( version_compare( PHP_VERSION, '5.
|
350 |
return;
|
351 |
}
|
352 |
|
@@ -380,7 +390,7 @@ function wpforms_check_php_version() {
|
|
380 |
) .
|
381 |
'<br><br>' .
|
382 |
wp_kses(
|
383 |
-
__( '<em><strong>Please Note:</strong> After
|
384 |
array(
|
385 |
'strong' => array(),
|
386 |
'em' => array(),
|
123 |
false
|
124 |
);
|
125 |
|
126 |
+
// jQuery Conditionals.
|
127 |
+
wp_enqueue_script(
|
128 |
+
'jquery-conditionals',
|
129 |
+
WPFORMS_PLUGIN_URL . "assets/js/jquery.conditionals.min.js",
|
130 |
+
array( 'jquery' ),
|
131 |
+
'1.0.1',
|
132 |
+
false
|
133 |
+
);
|
134 |
+
|
135 |
// Main admin script.
|
136 |
wp_enqueue_script(
|
137 |
'wpforms-admin',
|
147 |
'addon_deactivate' => esc_html__( 'Deactivate', 'wpforms' ),
|
148 |
'addon_inactive' => esc_html__( 'Inactive', 'wpforms' ),
|
149 |
'addon_install' => esc_html__( 'Install Addon', 'wpforms' ),
|
150 |
+
'addon_error' => esc_html__( 'Could not install addon. Please download from wpforms.com and install manually.', 'wpforms' ),
|
151 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
152 |
'cancel' => esc_html__( 'Cancel', 'wpforms' ),
|
153 |
'close' => esc_html__( 'Close', 'wpforms' ),
|
334 |
// If at this point we still don't have an ID, we really don't have one!
|
335 |
// Just return the standard upgrade URL.
|
336 |
if ( empty( $shareasale_id ) ) {
|
337 |
+
return 'https://wpforms.com/lite-upgrade/?discount=LITEUPGRADE&utm_source=WordPress&utm_medium=link&utm_campaign=liteplugin';
|
338 |
}
|
339 |
|
340 |
// Whether we have a specific redirect URL to use
|
355 |
*/
|
356 |
function wpforms_check_php_version() {
|
357 |
|
358 |
+
// Display for PHP below 5.4.
|
359 |
+
if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) {
|
360 |
return;
|
361 |
}
|
362 |
|
390 |
) .
|
391 |
'<br><br>' .
|
392 |
wp_kses(
|
393 |
+
__( '<em><strong>Please Note:</strong> After June 2018, WPForms will be deactivated if no further action is taken.</em>', 'wpforms' ),
|
394 |
array(
|
395 |
'strong' => array(),
|
396 |
'em' => array(),
|
includes/admin/builder/class-builder.php
CHANGED
@@ -115,6 +115,7 @@ class WPForms_Builder {
|
|
115 |
// Load builder panels.
|
116 |
$this->load_panels();
|
117 |
|
|
|
118 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueues' ) );
|
119 |
add_action( 'admin_print_footer_scripts', array( $this, 'footer_scripts' ) );
|
120 |
add_action( 'wpforms_admin_page', array( $this, 'output' ) );
|
@@ -157,7 +158,7 @@ class WPForms_Builder {
|
|
157 |
'fields',
|
158 |
'settings',
|
159 |
'providers',
|
160 |
-
'payments'
|
161 |
) );
|
162 |
|
163 |
foreach ( $this->panels as $panel ) {
|
@@ -171,6 +172,16 @@ class WPForms_Builder {
|
|
171 |
}
|
172 |
}
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
/**
|
175 |
* Enqueue assets for the builder.
|
176 |
*
|
115 |
// Load builder panels.
|
116 |
$this->load_panels();
|
117 |
|
118 |
+
add_action( 'admin_head', array( $this, 'admin_head' ) );
|
119 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueues' ) );
|
120 |
add_action( 'admin_print_footer_scripts', array( $this, 'footer_scripts' ) );
|
121 |
add_action( 'wpforms_admin_page', array( $this, 'output' ) );
|
158 |
'fields',
|
159 |
'settings',
|
160 |
'providers',
|
161 |
+
'payments',
|
162 |
) );
|
163 |
|
164 |
foreach ( $this->panels as $panel ) {
|
172 |
}
|
173 |
}
|
174 |
|
175 |
+
/**
|
176 |
+
* Admin head area inside the form builder.
|
177 |
+
*
|
178 |
+
* @since 1.4.6
|
179 |
+
*/
|
180 |
+
public function admin_head() {
|
181 |
+
|
182 |
+
do_action( 'wpforms_builder_admin_head', $this->view );
|
183 |
+
}
|
184 |
+
|
185 |
/**
|
186 |
* Enqueue assets for the builder.
|
187 |
*
|
includes/admin/builder/panels/class-fields.php
CHANGED
@@ -326,7 +326,7 @@ class WPForms_Builder_Panel_Fields extends WPForms_Builder_Panel {
|
|
326 |
<# } else { #>
|
327 |
<input class="wpforms-screen-reader-element" type="{{ data.type }}" disabled<# if ( 1 === data.settings.choices[choiceID].default ) { print( ' checked' ); } #>>
|
328 |
<# } #>
|
329 |
-
<span class="wpforms-image-choices-label">{{ data.settings.choices[choiceID].label }}</span>
|
330 |
</label>
|
331 |
</li>
|
332 |
<# }) #>
|
@@ -335,7 +335,7 @@ class WPForms_Builder_Panel_Fields extends WPForms_Builder_Panel {
|
|
335 |
<ul class="primary-input">
|
336 |
<# _.each( data.order, function( choiceID, key ) { #>
|
337 |
<li>
|
338 |
-
<input type="{{ data.type }}" disabled<# if ( 1 === data.settings.choices[choiceID].default ) { print( ' checked' ); } #>>{{ data.settings.choices[choiceID].label }}
|
339 |
</li>
|
340 |
<# }) #>
|
341 |
</ul>
|
326 |
<# } else { #>
|
327 |
<input class="wpforms-screen-reader-element" type="{{ data.type }}" disabled<# if ( 1 === data.settings.choices[choiceID].default ) { print( ' checked' ); } #>>
|
328 |
<# } #>
|
329 |
+
<span class="wpforms-image-choices-label">{{{ data.settings.choices[choiceID].label }}}</span>
|
330 |
</label>
|
331 |
</li>
|
332 |
<# }) #>
|
335 |
<ul class="primary-input">
|
336 |
<# _.each( data.order, function( choiceID, key ) { #>
|
337 |
<li>
|
338 |
+
<input type="{{ data.type }}" disabled<# if ( 1 === data.settings.choices[choiceID].default ) { print( ' checked' ); } #>>{{{ data.settings.choices[choiceID].label }}}
|
339 |
</li>
|
340 |
<# }) #>
|
341 |
</ul>
|
includes/admin/class-review.php
CHANGED
@@ -38,6 +38,12 @@ class WPForms_Review {
|
|
38 |
return;
|
39 |
}
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
// Verify that we can do a check for reviews.
|
42 |
$review = get_option( 'wpforms_review' );
|
43 |
$time = time();
|
38 |
return;
|
39 |
}
|
40 |
|
41 |
+
// If the user has opted out of product annoucement notifications, don't
|
42 |
+
// display the review request.
|
43 |
+
if ( wpforms_setting( 'hide-announcements', false ) ) {
|
44 |
+
return;
|
45 |
+
}
|
46 |
+
|
47 |
// Verify that we can do a check for reviews.
|
48 |
$review = get_option( 'wpforms_review' );
|
49 |
$time = time();
|
includes/admin/class-settings.php
CHANGED
@@ -277,7 +277,7 @@ class WPForms_Settings {
|
|
277 |
'no_label' => true,
|
278 |
'class' => array( 'section-heading' ),
|
279 |
),
|
280 |
-
'license-key'
|
281 |
'id' => 'license-key',
|
282 |
'name' => esc_html__( 'License Key', 'wpforms' ),
|
283 |
'type' => 'license',
|
@@ -308,6 +308,32 @@ class WPForms_Settings {
|
|
308 |
'desc' => esc_html__( 'Check this if you would like to load WPForms assets site-wide. Only check if your site is having compatibility issues or instructed to by support.', 'wpforms' ),
|
309 |
'type' => 'checkbox',
|
310 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
),
|
312 |
// Email settings tab.
|
313 |
'email' => array(
|
@@ -442,7 +468,7 @@ class WPForms_Settings {
|
|
442 |
),
|
443 |
),
|
444 |
// Misc. settings tab.
|
445 |
-
'misc'
|
446 |
'misc-heading' => array(
|
447 |
'id' => 'misc-heading',
|
448 |
'content' => '<h4>' . esc_html__( 'Misc', 'wpforms' ) . '</h4>',
|
@@ -456,7 +482,7 @@ class WPForms_Settings {
|
|
456 |
'desc' => esc_html__( 'Check this if you would like to hide plugin announcements and update details.', 'wpforms' ),
|
457 |
'type' => 'checkbox',
|
458 |
),
|
459 |
-
'uninstall-data'
|
460 |
'id' => 'uninstall-data',
|
461 |
'name' => esc_html__( 'Uninstall WPForms', 'wpforms' ),
|
462 |
'desc' => esc_html__( 'Check this if you would like to remove ALL WPForms data upon plugin deletion. All forms, entries, and uploaded files will be unrecoverable.', 'wpforms' ),
|
277 |
'no_label' => true,
|
278 |
'class' => array( 'section-heading' ),
|
279 |
),
|
280 |
+
'license-key' => array(
|
281 |
'id' => 'license-key',
|
282 |
'name' => esc_html__( 'License Key', 'wpforms' ),
|
283 |
'type' => 'license',
|
308 |
'desc' => esc_html__( 'Check this if you would like to load WPForms assets site-wide. Only check if your site is having compatibility issues or instructed to by support.', 'wpforms' ),
|
309 |
'type' => 'checkbox',
|
310 |
),
|
311 |
+
'gdpr-heading' => array(
|
312 |
+
'id' => 'GDPR',
|
313 |
+
'content' => '<h4>' . esc_html__( 'GDPR', 'wpforms' ) . '</h4>',
|
314 |
+
'type' => 'content',
|
315 |
+
'no_label' => true,
|
316 |
+
'class' => array( 'section-heading', 'no-desc' ),
|
317 |
+
),
|
318 |
+
'gdpr' => array(
|
319 |
+
'id' => 'gdpr',
|
320 |
+
'name' => esc_html__( 'GDPR Enhancements', 'wpforms' ),
|
321 |
+
'desc' => sprintf(
|
322 |
+
wp_kses(
|
323 |
+
/* translators: %s = WPForms.com GDPR documentation URL. */
|
324 |
+
__( 'Check this to turn on GDPR related features and enhancements. <a href="%s" target="_blank" rel="noopener noreferrer">Read our GDPR documentation</a> to learn more.', 'wpforms' ),
|
325 |
+
array(
|
326 |
+
'a' => array(
|
327 |
+
'href' => array(),
|
328 |
+
'target' => array(),
|
329 |
+
'rel' => array(),
|
330 |
+
),
|
331 |
+
)
|
332 |
+
),
|
333 |
+
'https://wpforms.com/docs/how-to-create-gdpr-compliant-forms/'
|
334 |
+
),
|
335 |
+
'type' => 'checkbox',
|
336 |
+
),
|
337 |
),
|
338 |
// Email settings tab.
|
339 |
'email' => array(
|
468 |
),
|
469 |
),
|
470 |
// Misc. settings tab.
|
471 |
+
'misc' => array(
|
472 |
'misc-heading' => array(
|
473 |
'id' => 'misc-heading',
|
474 |
'content' => '<h4>' . esc_html__( 'Misc', 'wpforms' ) . '</h4>',
|
482 |
'desc' => esc_html__( 'Check this if you would like to hide plugin announcements and update details.', 'wpforms' ),
|
483 |
'type' => 'checkbox',
|
484 |
),
|
485 |
+
'uninstall-data' => array(
|
486 |
'id' => 'uninstall-data',
|
487 |
'name' => esc_html__( 'Uninstall WPForms', 'wpforms' ),
|
488 |
'desc' => esc_html__( 'Check this if you would like to remove ALL WPForms data upon plugin deletion. All forms, entries, and uploaded files will be unrecoverable.', 'wpforms' ),
|
includes/class-fields.php
CHANGED
@@ -68,6 +68,11 @@ class WPForms_Fields {
|
|
68 |
'payment-total',
|
69 |
) );
|
70 |
|
|
|
|
|
|
|
|
|
|
|
71 |
foreach ( $fields as $field ) {
|
72 |
|
73 |
if ( file_exists( WPFORMS_PLUGIN_DIR . 'includes/fields/class-' . $field . '.php' ) ) {
|
68 |
'payment-total',
|
69 |
) );
|
70 |
|
71 |
+
// Include GDPR Checkbox field if GDPR enhancements are enabled.
|
72 |
+
if ( wpforms_setting( 'gdpr', false ) ) {
|
73 |
+
$fields[] = 'gdpr-checkbox';
|
74 |
+
}
|
75 |
+
|
76 |
foreach ( $fields as $field ) {
|
77 |
|
78 |
if ( file_exists( WPFORMS_PLUGIN_DIR . 'includes/fields/class-' . $field . '.php' ) ) {
|
includes/class-frontend.php
CHANGED
@@ -1024,6 +1024,7 @@ class WPForms_Frontend {
|
|
1024 |
'val_time24h' => wpforms_setting( 'validation-time24h', esc_html__( 'Please enter time in 24-hour format (eg 22:45).', 'wpforms' ) ),
|
1025 |
'val_requiredpayment' => wpforms_setting( 'validation-requiredpayment', esc_html__( 'Payment is required.', 'wpforms' ) ),
|
1026 |
'val_creditcard' => wpforms_setting( 'validation-creditcard', esc_html__( 'Please enter a valid credit card number.', 'wpforms' ) ),
|
|
|
1027 |
);
|
1028 |
// Include payment related strings if needed.
|
1029 |
if ( function_exists( 'wpforms_get_currencies' ) ) {
|
1024 |
'val_time24h' => wpforms_setting( 'validation-time24h', esc_html__( 'Please enter time in 24-hour format (eg 22:45).', 'wpforms' ) ),
|
1025 |
'val_requiredpayment' => wpforms_setting( 'validation-requiredpayment', esc_html__( 'Payment is required.', 'wpforms' ) ),
|
1026 |
'val_creditcard' => wpforms_setting( 'validation-creditcard', esc_html__( 'Please enter a valid credit card number.', 'wpforms' ) ),
|
1027 |
+
'uuid_cookie' => false,
|
1028 |
);
|
1029 |
// Include payment related strings if needed.
|
1030 |
if ( function_exists( 'wpforms_get_currencies' ) ) {
|
includes/class-process.php
CHANGED
@@ -236,7 +236,7 @@ class WPForms_Process {
|
|
236 |
|
237 |
// Logs spam entry depending on log levels set.
|
238 |
wpforms_log(
|
239 |
-
'Spam Entry',
|
240 |
array( $honeypot, $entry ),
|
241 |
array(
|
242 |
'type' => array( 'spam' ),
|
236 |
|
237 |
// Logs spam entry depending on log levels set.
|
238 |
wpforms_log(
|
239 |
+
'Spam Entry ' . uniqid(),
|
240 |
array( $honeypot, $entry ),
|
241 |
array(
|
242 |
'type' => array( 'spam' ),
|
includes/emails/class-emails.php
CHANGED
@@ -135,8 +135,8 @@ class WPForms_WP_Emails {
|
|
135 |
*
|
136 |
* @since 1.1.3
|
137 |
*
|
138 |
-
* @param string $key
|
139 |
-
* @param mixed
|
140 |
*/
|
141 |
public function __set( $key, $value ) {
|
142 |
|
@@ -322,7 +322,7 @@ class WPForms_WP_Emails {
|
|
322 |
* @param string $to The To address.
|
323 |
* @param string $subject The subject line of the email.
|
324 |
* @param string $message The body of the email.
|
325 |
-
* @param array
|
326 |
*
|
327 |
* @return bool
|
328 |
*/
|
@@ -390,7 +390,7 @@ class WPForms_WP_Emails {
|
|
390 |
*
|
391 |
* @since 1.1.3
|
392 |
*
|
393 |
-
* @param string $message
|
394 |
*
|
395 |
* @return string
|
396 |
*/
|
@@ -408,9 +408,9 @@ class WPForms_WP_Emails {
|
|
408 |
*
|
409 |
* @since 1.1.3
|
410 |
*
|
411 |
-
* @param string $string
|
412 |
-
* @param bool
|
413 |
-
* @param bool
|
414 |
*
|
415 |
* @return string
|
416 |
*/
|
@@ -436,7 +436,7 @@ class WPForms_WP_Emails {
|
|
436 |
*
|
437 |
* @since 1.1.3
|
438 |
*
|
439 |
-
* @param bool $html
|
440 |
*
|
441 |
* @return string
|
442 |
*/
|
@@ -446,6 +446,10 @@ class WPForms_WP_Emails {
|
|
446 |
return '';
|
447 |
}
|
448 |
|
|
|
|
|
|
|
|
|
449 |
$message = '';
|
450 |
|
451 |
if ( $html ) {
|
@@ -461,20 +465,51 @@ class WPForms_WP_Emails {
|
|
461 |
|
462 |
$field_template = ob_get_clean();
|
463 |
|
|
|
|
|
|
|
464 |
$x = 1;
|
465 |
-
foreach ( $this->fields as $field ) {
|
466 |
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
}
|
473 |
|
474 |
-
|
475 |
-
$field_name = $field['name'];
|
476 |
-
|
477 |
-
if ( empty( $field_name ) ) {
|
478 |
$field_name = sprintf(
|
479 |
/* translators: %d - field ID. */
|
480 |
esc_html__( 'Field ID #%d', 'wpforms' ),
|
@@ -483,14 +518,24 @@ class WPForms_WP_Emails {
|
|
483 |
}
|
484 |
|
485 |
$field_item = $field_template;
|
|
|
486 |
if ( 1 === $x ) {
|
487 |
$field_item = str_replace( 'border-top:1px solid #dddddd;', '', $field_item );
|
488 |
}
|
489 |
-
$field_item
|
490 |
-
$
|
491 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
|
493 |
$message .= wpautop( $field_item );
|
|
|
494 |
$x ++;
|
495 |
}
|
496 |
} else {
|
@@ -560,9 +605,9 @@ class WPForms_WP_Emails {
|
|
560 |
*
|
561 |
* @since 1.1.3
|
562 |
*
|
563 |
-
* @param string $slug
|
564 |
* @param string $name Optional. Default null.
|
565 |
-
* @param bool
|
566 |
*
|
567 |
* @return string
|
568 |
*/
|
@@ -591,9 +636,9 @@ class WPForms_WP_Emails {
|
|
591 |
* @since 1.1.3
|
592 |
*
|
593 |
* @param string|array $template_names Template file(s) to search for, in order.
|
594 |
-
* @param bool
|
595 |
-
* @param bool
|
596 |
-
*
|
597 |
*
|
598 |
* @return string The template filename if one is located.
|
599 |
*/
|
135 |
*
|
136 |
* @since 1.1.3
|
137 |
*
|
138 |
+
* @param string $key Object property key.
|
139 |
+
* @param mixed $value Object property value.
|
140 |
*/
|
141 |
public function __set( $key, $value ) {
|
142 |
|
322 |
* @param string $to The To address.
|
323 |
* @param string $subject The subject line of the email.
|
324 |
* @param string $message The body of the email.
|
325 |
+
* @param array $attachments Attachments to the email.
|
326 |
*
|
327 |
* @return bool
|
328 |
*/
|
390 |
*
|
391 |
* @since 1.1.3
|
392 |
*
|
393 |
+
* @param string $message Text to convert.
|
394 |
*
|
395 |
* @return string
|
396 |
*/
|
408 |
*
|
409 |
* @since 1.1.3
|
410 |
*
|
411 |
+
* @param string $string String that may contain tags.
|
412 |
+
* @param bool $sanitize Toggle to maybe sanitize.
|
413 |
+
* @param bool $linebreaks Toggle to process linebreaks.
|
414 |
*
|
415 |
* @return string
|
416 |
*/
|
436 |
*
|
437 |
* @since 1.1.3
|
438 |
*
|
439 |
+
* @param bool $html Toggle to use HTML or plaintext.
|
440 |
*
|
441 |
* @return string
|
442 |
*/
|
446 |
return '';
|
447 |
}
|
448 |
|
449 |
+
if ( empty( $this->form_data['fields'] ) ) {
|
450 |
+
$html = false;
|
451 |
+
}
|
452 |
+
|
453 |
$message = '';
|
454 |
|
455 |
if ( $html ) {
|
465 |
|
466 |
$field_template = ob_get_clean();
|
467 |
|
468 |
+
// Check to see if user has added support for field type.
|
469 |
+
$other_fields = apply_filters( 'wpforms_email_display_other_fields', array(), $this );
|
470 |
+
|
471 |
$x = 1;
|
|
|
472 |
|
473 |
+
foreach ( $this->form_data['fields'] as $field_id => $field ) {
|
474 |
+
|
475 |
+
$field_name = '';
|
476 |
+
$field_val = '';
|
477 |
+
|
478 |
+
// If the field exists in the form_data but not in the final
|
479 |
+
// field data, then it's a non-input based field, "other fields".
|
480 |
+
if ( empty( $this->fields[ $field_id ] ) ) {
|
481 |
+
|
482 |
+
if ( empty( $other_fields ) || ! in_array( $field['type'], $other_fields, true ) ) {
|
483 |
+
continue;
|
484 |
+
}
|
485 |
+
|
486 |
+
if ( 'divider' === $field['type'] ) {
|
487 |
+
$field_name = ! empty( $field['label'] ) ? str_repeat( '—', 3 ) . ' ' . $field['label'] . ' ' . str_repeat( '—', 3 ) : null;
|
488 |
+
$field_val = ! empty( $field['description'] ) ? $field['description'] : '';
|
489 |
+
} elseif ( 'pagebreak' === $field['type'] ) {
|
490 |
+
if ( ! empty( $field['position'] ) && 'bottom' === $field['position'] ) {
|
491 |
+
continue;
|
492 |
+
}
|
493 |
+
$title = ! empty( $field['title'] ) ? $field['title'] : esc_html__( 'Page Break', 'wpforms' );
|
494 |
+
$field_name = str_repeat( '—', 6 ) . ' ' . $title . ' ' . str_repeat( '—', 6 );
|
495 |
+
} elseif ( 'html' === $field['type'] ) {
|
496 |
+
$field_name = null;
|
497 |
+
$field_val = $field['code'];
|
498 |
+
}
|
499 |
+
} else {
|
500 |
+
|
501 |
+
if (
|
502 |
+
! apply_filters( 'wpforms_email_display_empty_fields', false ) &&
|
503 |
+
( empty( $this->fields[ $field_id ]['value'] ) && '0' !== $this->fields[ $field_id ]['value'] )
|
504 |
+
) {
|
505 |
+
continue;
|
506 |
+
}
|
507 |
+
|
508 |
+
$field_name = $this->fields[ $field_id ]['name'];
|
509 |
+
$field_val = empty( $this->fields[ $field_id ]['value'] ) && '0' !== $this->fields[ $field_id ]['value'] ? '<em>' . esc_html__( '(empty)', 'wpforms' ) . '</em>' : $this->fields[ $field_id ]['value'];
|
510 |
}
|
511 |
|
512 |
+
if ( empty( $field_name ) && ! is_null( $field_name ) ) {
|
|
|
|
|
|
|
513 |
$field_name = sprintf(
|
514 |
/* translators: %d - field ID. */
|
515 |
esc_html__( 'Field ID #%d', 'wpforms' ),
|
518 |
}
|
519 |
|
520 |
$field_item = $field_template;
|
521 |
+
|
522 |
if ( 1 === $x ) {
|
523 |
$field_item = str_replace( 'border-top:1px solid #dddddd;', '', $field_item );
|
524 |
}
|
525 |
+
$field_item = str_replace( '{field_name}', $field_name, $field_item );
|
526 |
+
$field_item = str_replace(
|
527 |
+
'{field_value}',
|
528 |
+
apply_filters(
|
529 |
+
'wpforms_html_field_value',
|
530 |
+
wpforms_decode_string( $field_val ),
|
531 |
+
isset( $this->fields[ $field_id ] ) ? $this->fields[ $field_id ] : $field,
|
532 |
+
$this->form_data, 'email-html'
|
533 |
+
),
|
534 |
+
$field_item
|
535 |
+
);
|
536 |
|
537 |
$message .= wpautop( $field_item );
|
538 |
+
|
539 |
$x ++;
|
540 |
}
|
541 |
} else {
|
605 |
*
|
606 |
* @since 1.1.3
|
607 |
*
|
608 |
+
* @param string $slug Template file slug.
|
609 |
* @param string $name Optional. Default null.
|
610 |
+
* @param bool $load Maybe load.
|
611 |
*
|
612 |
* @return string
|
613 |
*/
|
636 |
* @since 1.1.3
|
637 |
*
|
638 |
* @param string|array $template_names Template file(s) to search for, in order.
|
639 |
+
* @param bool $load If true the template file will be loaded if it is found.
|
640 |
+
* @param bool $require_once Whether to require_once or require. Default true.
|
641 |
+
* Has no effect if $load is false.
|
642 |
*
|
643 |
* @return string The template filename if one is located.
|
644 |
*/
|
includes/fields/class-base.php
CHANGED
@@ -360,6 +360,7 @@ abstract class WPForms_Field {
|
|
360 |
|
361 |
case 'choices':
|
362 |
$values = ! empty( $field['choices'] ) ? $field['choices'] : $this->defaults;
|
|
|
363 |
$class = array();
|
364 |
|
365 |
if ( ! empty( $field['show_values'] ) ) {
|
@@ -378,7 +379,7 @@ abstract class WPForms_Field {
|
|
378 |
$field,
|
379 |
array(
|
380 |
'slug' => 'choices',
|
381 |
-
'value' =>
|
382 |
'tooltip' => esc_html__( 'Add choices for the form field.', 'wpforms' ),
|
383 |
'after_tooltip' => '<a href="#" class="toggle-bulk-add-display"><i class="fa fa-download"></i> <span>' . esc_html__( 'Bulk Add', 'wpforms' ) . '</span></a>',
|
384 |
),
|
@@ -974,9 +975,9 @@ abstract class WPForms_Field {
|
|
974 |
}
|
975 |
|
976 |
// Build output.
|
977 |
-
if ( in_array( $field['type'], array( 'checkbox', 'payment-multiple', 'radio' ), true ) ) {
|
978 |
|
979 |
-
if (
|
980 |
$type = 'checkbox';
|
981 |
} else {
|
982 |
$type = 'radio';
|
360 |
|
361 |
case 'choices':
|
362 |
$values = ! empty( $field['choices'] ) ? $field['choices'] : $this->defaults;
|
363 |
+
$label = ! empty( $args['label'] ) ? esc_html( $args['label'] ) : esc_html__( 'Choices', 'wpforms' );
|
364 |
$class = array();
|
365 |
|
366 |
if ( ! empty( $field['show_values'] ) ) {
|
379 |
$field,
|
380 |
array(
|
381 |
'slug' => 'choices',
|
382 |
+
'value' => $label,
|
383 |
'tooltip' => esc_html__( 'Add choices for the form field.', 'wpforms' ),
|
384 |
'after_tooltip' => '<a href="#" class="toggle-bulk-add-display"><i class="fa fa-download"></i> <span>' . esc_html__( 'Bulk Add', 'wpforms' ) . '</span></a>',
|
385 |
),
|
975 |
}
|
976 |
|
977 |
// Build output.
|
978 |
+
if ( in_array( $field['type'], array( 'checkbox', 'gdpr-checkbox', 'payment-multiple', 'radio' ), true ) ) {
|
979 |
|
980 |
+
if ( in_array( $field['type'], array( 'checkbox', 'gdpr-checkbox', true ) ) ) {
|
981 |
$type = 'checkbox';
|
982 |
} else {
|
983 |
$type = 'radio';
|
includes/fields/class-gdpr-checkbox.php
ADDED
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* GDPR Checkbox field.
|
4 |
+
*
|
5 |
+
* @package WPForms
|
6 |
+
* @author WPForms
|
7 |
+
* @since 1.4.6
|
8 |
+
* @license GPL-2.0+
|
9 |
+
* @copyright Copyright (c) 2018, WPForms LLC
|
10 |
+
*/
|
11 |
+
class WPForms_Field_GDPR_Checkbox extends WPForms_Field {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Primary class constructor.
|
15 |
+
*
|
16 |
+
* @since 1.4.6
|
17 |
+
*/
|
18 |
+
public function init() {
|
19 |
+
|
20 |
+
// Define field type information.
|
21 |
+
$this->name = esc_html__( 'GDPR Agreement', 'wpforms' );
|
22 |
+
$this->type = 'gdpr-checkbox';
|
23 |
+
$this->icon = 'fa-check-square-o';
|
24 |
+
$this->order = 50;
|
25 |
+
$this->defaults = array(
|
26 |
+
1 => array(
|
27 |
+
'label' => esc_html__( 'I consent to having this website store my submitted information so they can respond to my inquiry.', 'wpforms' ),
|
28 |
+
'value' => '',
|
29 |
+
'image' => '',
|
30 |
+
'default' => '',
|
31 |
+
),
|
32 |
+
);
|
33 |
+
|
34 |
+
// Set field to default to required.
|
35 |
+
add_filter( 'wpforms_field_new_required', array( $this, 'field_default_required' ), 10, 2 );
|
36 |
+
|
37 |
+
// Define additional field properties.
|
38 |
+
add_filter( 'wpforms_field_properties_gdpr-checkbox', array( $this, 'field_properties' ), 5, 3 );
|
39 |
+
}
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Field should default to being required.
|
43 |
+
*
|
44 |
+
* @since 1.4.6
|
45 |
+
*
|
46 |
+
* @param bool $required Required status, true is required.
|
47 |
+
* @param array $field Field settings.
|
48 |
+
*
|
49 |
+
* @return bool
|
50 |
+
*/
|
51 |
+
public function field_default_required( $required, $field ) {
|
52 |
+
|
53 |
+
if ( 'gdpr-checkbox' === $field['type'] ) {
|
54 |
+
return true;
|
55 |
+
}
|
56 |
+
|
57 |
+
return $required;
|
58 |
+
}
|
59 |
+
|
60 |
+
/**
|
61 |
+
* Define additional field properties.
|
62 |
+
*
|
63 |
+
* @since 1.4.6
|
64 |
+
*
|
65 |
+
* @param array $properties Field properties.
|
66 |
+
* @param array $field Field settings.
|
67 |
+
* @param array $form_data Form data.
|
68 |
+
*
|
69 |
+
* @return array
|
70 |
+
*/
|
71 |
+
public function field_properties( $properties, $field, $form_data ) {
|
72 |
+
|
73 |
+
// Define data.
|
74 |
+
$form_id = absint( $form_data['id'] );
|
75 |
+
$field_id = absint( $field['id'] );
|
76 |
+
$choices = $field['choices'];
|
77 |
+
|
78 |
+
// Remove primary input.
|
79 |
+
unset( $properties['inputs']['primary'] );
|
80 |
+
|
81 |
+
// Set input container (ul) properties.
|
82 |
+
$properties['input_container'] = array(
|
83 |
+
'class' => array(),
|
84 |
+
'data' => array(),
|
85 |
+
'id' => "wpforms-{$form_id}-field_{$field_id}",
|
86 |
+
);
|
87 |
+
|
88 |
+
// Set input properties.
|
89 |
+
foreach ( $choices as $key => $choice ) {
|
90 |
+
|
91 |
+
$depth = isset( $choice['depth'] ) ? absint( $choice['depth'] ) : 1;
|
92 |
+
|
93 |
+
$properties['inputs'][ $key ] = array(
|
94 |
+
'container' => array(
|
95 |
+
'attr' => array(),
|
96 |
+
'class' => array( "choice-{$key}", "depth-{$depth}" ),
|
97 |
+
'data' => array(),
|
98 |
+
'id' => '',
|
99 |
+
),
|
100 |
+
'label' => array(
|
101 |
+
'attr' => array(
|
102 |
+
'for' => "wpforms-{$form_id}-field_{$field_id}_{$key}",
|
103 |
+
),
|
104 |
+
'class' => array( 'wpforms-field-label-inline' ),
|
105 |
+
'data' => array(),
|
106 |
+
'id' => '',
|
107 |
+
'text' => $choice['label'],
|
108 |
+
),
|
109 |
+
'attr' => array(
|
110 |
+
'name' => "wpforms[fields][{$field_id}][]",
|
111 |
+
'value' => $choice['label'],
|
112 |
+
),
|
113 |
+
'class' => array(),
|
114 |
+
'data' => array(),
|
115 |
+
'id' => "wpforms-{$form_id}-field_{$field_id}_{$key}",
|
116 |
+
'image' => '',
|
117 |
+
'required' => ! empty( $field['required'] ) ? 'required' : '',
|
118 |
+
'default' => '',
|
119 |
+
);
|
120 |
+
}
|
121 |
+
|
122 |
+
// Required class for pagebreak validation.
|
123 |
+
if ( ! empty( $field['required'] ) ) {
|
124 |
+
$properties['input_container']['class'][] = 'wpforms-field-required';
|
125 |
+
}
|
126 |
+
|
127 |
+
return $properties;
|
128 |
+
}
|
129 |
+
|
130 |
+
/**
|
131 |
+
* Field options panel inside the builder.
|
132 |
+
*
|
133 |
+
* @since 1.4.6
|
134 |
+
*
|
135 |
+
* @param array $field Field settings.
|
136 |
+
*/
|
137 |
+
public function field_options( $field ) {
|
138 |
+
|
139 |
+
// Field is always required.
|
140 |
+
$this->field_element( 'text', $field, array(
|
141 |
+
'type' => 'hidden',
|
142 |
+
'slug' => 'required',
|
143 |
+
'value' => '1',
|
144 |
+
) );
|
145 |
+
|
146 |
+
// -------------------------------------------------------------------//
|
147 |
+
// Basic field options
|
148 |
+
// -------------------------------------------------------------------//
|
149 |
+
|
150 |
+
// Options open markup.
|
151 |
+
$this->field_option( 'basic-options', $field, array(
|
152 |
+
'markup' => 'open',
|
153 |
+
) );
|
154 |
+
|
155 |
+
// Label.
|
156 |
+
$this->field_option( 'label', $field );
|
157 |
+
|
158 |
+
// Choices.
|
159 |
+
$this->field_option( 'choices', $field, array(
|
160 |
+
'label' => esc_html__( 'Agreement', 'wpforms' )
|
161 |
+
) );
|
162 |
+
|
163 |
+
// Description.
|
164 |
+
$this->field_option( 'description', $field );
|
165 |
+
|
166 |
+
// Options close markup.
|
167 |
+
$this->field_option( 'basic-options', $field, array(
|
168 |
+
'markup' => 'close',
|
169 |
+
) );
|
170 |
+
|
171 |
+
// -------------------------------------------------------------------//
|
172 |
+
// Advanced field options
|
173 |
+
// -------------------------------------------------------------------//
|
174 |
+
|
175 |
+
// Options open markup.
|
176 |
+
$this->field_option( 'advanced-options', $field, array(
|
177 |
+
'markup' => 'open',
|
178 |
+
) );
|
179 |
+
|
180 |
+
// Hide label.
|
181 |
+
$this->field_option( 'label_hide', $field );
|
182 |
+
|
183 |
+
// Custom CSS classes.
|
184 |
+
$this->field_option( 'css', $field );
|
185 |
+
|
186 |
+
// Options close markup.
|
187 |
+
$this->field_option( 'advanced-options', $field, array(
|
188 |
+
'markup' => 'close',
|
189 |
+
) );
|
190 |
+
}
|
191 |
+
|
192 |
+
/**
|
193 |
+
* Field preview inside the builder.
|
194 |
+
*
|
195 |
+
* @since 1.4.6
|
196 |
+
*
|
197 |
+
* @param array $field Field settings.
|
198 |
+
*/
|
199 |
+
public function field_preview( $field ) {
|
200 |
+
|
201 |
+
// Label.
|
202 |
+
$this->field_preview_option( 'label', $field );
|
203 |
+
|
204 |
+
// Choices.
|
205 |
+
$this->field_preview_option( 'choices', $field );
|
206 |
+
|
207 |
+
// Description.
|
208 |
+
$this->field_preview_option( 'description', $field );
|
209 |
+
}
|
210 |
+
|
211 |
+
/**
|
212 |
+
* Field display on the form front-end.
|
213 |
+
*
|
214 |
+
* @since 1.4.6
|
215 |
+
*
|
216 |
+
* @param array $field Field settings.
|
217 |
+
* @param array $deprecated Deprecated array.
|
218 |
+
* @param array $form_data Form data.
|
219 |
+
*/
|
220 |
+
public function field_display( $field, $deprecated, $form_data ) {
|
221 |
+
|
222 |
+
// Define data.
|
223 |
+
$container = $field['properties']['input_container'];
|
224 |
+
$choices = $field['properties']['inputs'];
|
225 |
+
|
226 |
+
printf( '<ul %s>',
|
227 |
+
wpforms_html_attributes( $container['id'], $container['class'], $container['data'] )
|
228 |
+
);
|
229 |
+
|
230 |
+
foreach ( $choices as $key => $choice ) {
|
231 |
+
|
232 |
+
$required = '';
|
233 |
+
if ( ! empty( $choice['required'] ) && ! empty( $field['label_hide'] ) ) {
|
234 |
+
$required = apply_filters( 'wpforms_field_required_label', ' <span class="wpforms-required-label">*</span>' );
|
235 |
+
}
|
236 |
+
|
237 |
+
printf( '<li %s>',
|
238 |
+
wpforms_html_attributes( $choice['container']['id'], $choice['container']['class'], $choice['container']['data'], $choice['container']['attr'] )
|
239 |
+
);
|
240 |
+
// Normal display.
|
241 |
+
printf( '<input type="checkbox" %s %s %s>',
|
242 |
+
wpforms_html_attributes( $choice['id'], $choice['class'], $choice['data'], $choice['attr'] ),
|
243 |
+
esc_attr( $choice['required'] ),
|
244 |
+
checked( '1', $choice['default'], false )
|
245 |
+
);
|
246 |
+
|
247 |
+
printf( '<label %s>%s%s</label>',
|
248 |
+
wpforms_html_attributes( $choice['label']['id'], $choice['label']['class'], $choice['label']['data'], $choice['label']['attr'] ),
|
249 |
+
wp_kses_post( $choice['label']['text'] ),
|
250 |
+
$required
|
251 |
+
); // WPCS: XSS ok.
|
252 |
+
|
253 |
+
echo '</li>';
|
254 |
+
}
|
255 |
+
|
256 |
+
echo '</ul>';
|
257 |
+
}
|
258 |
+
|
259 |
+
/**
|
260 |
+
* Formats and sanitizes field.
|
261 |
+
*
|
262 |
+
* @since 1.4.6
|
263 |
+
*
|
264 |
+
* @param int $field_id Field ID.
|
265 |
+
* @param array $field_submit Submitted form data.
|
266 |
+
* @param array $form_data Form data.
|
267 |
+
*/
|
268 |
+
public function format( $field_id, $field_submit, $form_data ) {
|
269 |
+
|
270 |
+
wpforms()->process->fields[ $field_id ] = array(
|
271 |
+
'name' => ! empty( $form_data['fields'][ $field_id ]['label'] ) ? sanitize_text_field( $form_data['fields'][ $field_id ]['label'] ) : '',
|
272 |
+
'value' => $form_data['fields'][ $field_id ]['choices'][1]['label'],
|
273 |
+
'id' => absint( $field_id ),
|
274 |
+
'type' => $this->type,
|
275 |
+
);
|
276 |
+
}
|
277 |
+
}
|
278 |
+
new WPForms_Field_GDPR_Checkbox();
|
includes/functions.php
CHANGED
@@ -586,6 +586,7 @@ function wpforms_get_form_fields( $form = false, $whitelist = array() ) {
|
|
586 |
'select',
|
587 |
'radio',
|
588 |
'checkbox',
|
|
|
589 |
'email',
|
590 |
'address',
|
591 |
'url',
|
@@ -595,6 +596,9 @@ function wpforms_get_form_fields( $form = false, $whitelist = array() ) {
|
|
595 |
'phone',
|
596 |
'number',
|
597 |
'file-upload',
|
|
|
|
|
|
|
598 |
'payment-single',
|
599 |
'payment-multiple',
|
600 |
'payment-select',
|
586 |
'select',
|
587 |
'radio',
|
588 |
'checkbox',
|
589 |
+
'gdpr-checkbox',
|
590 |
'email',
|
591 |
'address',
|
592 |
'url',
|
596 |
'phone',
|
597 |
'number',
|
598 |
'file-upload',
|
599 |
+
'rating',
|
600 |
+
'likert_scale',
|
601 |
+
'signature',
|
602 |
'payment-single',
|
603 |
'payment-multiple',
|
604 |
'payment-select',
|
languages/wpforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WPForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPForms 1.4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpforms\n"
|
7 |
-
"POT-Creation-Date: 2018-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,197 +12,203 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: includes/admin/admin.php:
|
16 |
#: pro/includes/admin/class-addons.php:284
|
17 |
msgid "Activate"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: includes/admin/admin.php:
|
21 |
msgid "Active"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: includes/admin/admin.php:
|
25 |
msgid "Deactivate"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: includes/admin/admin.php:
|
29 |
msgid "Inactive"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/admin/admin.php:
|
33 |
msgid "Install Addon"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
#: includes/admin/class-editor.php:126
|
38 |
#: pro/includes/admin/entries/class-entries-single.php:608
|
39 |
msgid "Cancel"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/admin/admin.php:
|
43 |
#: includes/admin/class-editor.php:72 includes/class-preview.php:161
|
44 |
msgid "Close"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/admin/admin.php:
|
48 |
msgid "Are you sure you want to delete this entry?"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/admin/admin.php:
|
52 |
msgid "Are you sure you want to delete ALL entries?"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/admin/admin.php:
|
56 |
#: pro/includes/admin/entries/class-entries-single.php:514
|
57 |
msgid "Hide Empty Fields"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/admin/admin.php:
|
61 |
#: pro/includes/admin/entries/class-entries-single.php:514
|
62 |
msgid "Show Empty Fields"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/admin/admin.php:
|
66 |
msgid "Entries Field Columns"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/admin/admin.php:
|
70 |
msgid "Are you sure you want to delete this note?"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/admin/admin.php:
|
74 |
#: pro/includes/admin/entries/class-entries-list-table.php:372
|
75 |
msgid "Unstar entry"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/admin/admin.php:
|
79 |
#: pro/includes/admin/entries/class-entries-list-table.php:372
|
80 |
msgid "Star entry"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/admin/admin.php:
|
84 |
#: pro/includes/admin/entries/class-entries-list-table.php:377
|
85 |
msgid "Mark entry read"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/admin/admin.php:
|
89 |
#: pro/includes/admin/entries/class-entries-list-table.php:377
|
90 |
msgid "Mark entry unread"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/admin/admin.php:
|
94 |
msgid "Select fields"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/admin/admin.php:
|
98 |
msgid "Are you sure you want to delete this form?"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/admin/admin.php:
|
102 |
msgid "Are you sure you want to duplicate this form?"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/admin/admin.php:
|
106 |
msgid "Heads up!"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: includes/admin/admin.php:
|
110 |
msgid "Please select at least one form to import."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/admin/admin.php:
|
114 |
msgid "OK"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/admin/admin.php:
|
118 |
msgid "Install and Activate"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/admin/admin.php:
|
122 |
msgid ""
|
123 |
"needs to be installed and activated to import its forms. Would you like us "
|
124 |
"to install and activate it for you?"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/admin/admin.php:
|
128 |
msgid ""
|
129 |
"needs to be activated to import its forms. Would you like us to activate it "
|
130 |
"for you?"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/admin/admin.php:
|
134 |
msgid "Are you sure you want to disconnect this account?"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: includes/admin/admin.php:
|
138 |
msgid "Could not authenticate with the provider."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/admin/admin.php:
|
142 |
msgid "Save and Refresh"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/admin/admin.php:
|
146 |
msgid "Testing"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/admin/admin.php:
|
150 |
msgid "Upgrade was successfully completed!"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/admin/admin.php:
|
154 |
msgid "Upload or Choose Your Image"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/admin/admin.php:
|
158 |
msgid "Use Image"
|
159 |
msgstr ""
|
160 |
|
161 |
#. translators: %1$s - WPForms plugin name; %2$s - WPForms.com URL to a related
|
162 |
#. doc.
|
163 |
-
#: includes/admin/admin.php:
|
164 |
msgid ""
|
165 |
"Your site is running an outdated version of PHP that is no longer supported "
|
166 |
"and may cause issues with %1$s. <a href=\"%2$s\" target=\"_blank\" rel="
|
167 |
"\"noopener noreferrer\">Read more</a> for additional information."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/admin/admin.php:
|
171 |
msgid ""
|
172 |
-
"<em><strong>Please Note:</strong> After
|
173 |
-
"deactivated if
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/admin/admin.php:
|
177 |
msgid "Thanks for your interest in WPForms Pro!"
|
178 |
msgstr ""
|
179 |
|
180 |
#. translators: %s - WPForms.com contact page URL.
|
181 |
-
#: includes/admin/admin.php:
|
182 |
msgid ""
|
183 |
"If you have any questions or issues just <a href=\"%s\" target=\"_blank\" "
|
184 |
"rel=\"noopener noreferrer\">let us know</a>."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/admin/admin.php:
|
188 |
msgid ""
|
189 |
"After purchasing WPForms Pro, you'll need to <strong>download and install "
|
190 |
"the Pro version of the plugin</strong>, and then <strong>remove the free "
|
191 |
"plugin</strong>."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/admin/admin.php:
|
195 |
msgid "(Don't worry, all your forms and settings will be preserved.)"
|
196 |
msgstr ""
|
197 |
|
198 |
#. translators: %s - WPForms.com upgrade from Lite to paid docs page URL.
|
199 |
-
#: includes/admin/admin.php:
|
200 |
msgid ""
|
201 |
"Check out <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">our "
|
202 |
"documentation</a> for step-by-step instructions."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/admin/ajax-actions.php:24 includes/fields/class-base.php:
|
206 |
msgid "You do not have permission."
|
207 |
msgstr ""
|
208 |
|
@@ -230,11 +236,11 @@ msgstr ""
|
|
230 |
msgid "Error updating form template"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/admin/ajax-actions.php:281 includes/fields/class-base.php:
|
234 |
msgid "post type"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/admin/ajax-actions.php:309 includes/fields/class-base.php:
|
238 |
msgid "taxonomy"
|
239 |
msgstr ""
|
240 |
|
@@ -248,61 +254,61 @@ msgid ""
|
|
248 |
"with the technical details below."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/admin/builder/class-builder.php:
|
252 |
#: includes/class-conditional-logic-core.php:449
|
253 |
msgid "AND"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/admin/builder/class-builder.php:
|
257 |
msgid "Add New Choices"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/admin/builder/class-builder.php:
|
261 |
-
#: includes/fields/class-base.php:
|
262 |
msgid "Bulk Add"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/admin/builder/class-builder.php:
|
266 |
msgid "Hide Bulk Add"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/admin/builder/class-builder.php:
|
270 |
msgid "Add Choices (one per line)"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/admin/builder/class-builder.php:
|
274 |
msgid ""
|
275 |
"Blue\n"
|
276 |
"Red\n"
|
277 |
"Green"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/admin/builder/class-builder.php:
|
281 |
msgid "Show presets"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: includes/admin/builder/class-builder.php:
|
285 |
msgid "Hide presets"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/admin/builder/class-builder.php:
|
289 |
msgid ""
|
290 |
"The {source} {type} contains over {limit} items ({total}). This may make the "
|
291 |
"field difficult for your visitors to use and/or cause the form to be slow."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/admin/builder/class-builder.php:
|
295 |
msgid ""
|
296 |
"Due to form changes, conditional logic rules have been removed or updated:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/admin/builder/class-builder.php:
|
300 |
msgid ""
|
301 |
"Are you sure you want to disable conditional logic? This will remove the "
|
302 |
"rules for this field or setting."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/admin/builder/class-builder.php:
|
306 |
#: pro/includes/admin/entries/class-entries-list-table.php:222
|
307 |
#: pro/includes/admin/entries/class-entries-list-table.php:233
|
308 |
#: pro/includes/admin/entries/class-entries-list-table.php:710
|
@@ -311,306 +317,306 @@ msgstr ""
|
|
311 |
msgid "Field"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/admin/builder/class-builder.php:
|
315 |
msgid "Field Locked"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/admin/builder/class-builder.php:
|
319 |
msgid "This field cannot be deleted or duplicated."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/admin/builder/class-builder.php:
|
323 |
msgid "Available Fields"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/admin/builder/class-builder.php:
|
327 |
msgid "No fields available"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/admin/builder/class-builder.php:
|
331 |
msgid "No email fields"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/admin/builder/class-builder.php:
|
335 |
msgid "Are you sure you want to delete this notification?"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/admin/builder/class-builder.php:
|
339 |
msgid "Enter a notification name"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/admin/builder/class-builder.php:
|
343 |
msgid "Eg: User Confirmation"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/admin/builder/class-builder.php:
|
347 |
msgid "You must provide a notification name"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/admin/builder/class-builder.php:
|
351 |
msgid ""
|
352 |
"Form must contain one notification. To disable all notifications use the "
|
353 |
"Notifications dropdown setting."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: includes/admin/builder/class-builder.php:
|
357 |
-
#: pro/wpforms-pro.php:
|
358 |
msgid "Default Notification"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: includes/admin/builder/class-builder.php:
|
362 |
-
#: includes/admin/builder/class-builder.php:
|
363 |
msgid "Save"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/admin/builder/class-builder.php:
|
367 |
msgid "Saving ..."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/admin/builder/class-builder.php:
|
371 |
msgid "Saved!"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/admin/builder/class-builder.php:
|
375 |
msgid "Save and Exit"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/admin/builder/class-builder.php:
|
379 |
-
#: includes/fields/class-base.php:
|
380 |
msgid "Show Layouts"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/admin/builder/class-builder.php:
|
384 |
msgid "Hide Layouts"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/admin/builder/class-builder.php:
|
388 |
msgid "Select your layout"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/admin/builder/class-builder.php:
|
392 |
msgid "Select your column"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/admin/builder/class-builder.php:
|
396 |
-
#: includes/admin/builder/class-builder.php:
|
397 |
msgid "Loading"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: includes/admin/builder/class-builder.php:
|
401 |
msgid "Use Template"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: includes/admin/builder/class-builder.php:
|
405 |
msgid ""
|
406 |
"Changing templates on an existing form will DELETE existing form fields. Are "
|
407 |
"you sure you want apply the new template?"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/admin/builder/class-builder.php:
|
411 |
msgid ""
|
412 |
"You are almost done. To embed this form on your site, please paste the "
|
413 |
"following shortcode inside a post or page."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/admin/builder/class-builder.php:
|
417 |
msgid "Or you can follow the instructions in this video."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/admin/builder/class-builder.php:
|
421 |
-
#: includes/admin/builder/class-builder.php:
|
422 |
msgid "Exit"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/admin/builder/class-builder.php:
|
426 |
msgid "If you exit without saving, your changes will be lost."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/admin/builder/class-builder.php:
|
430 |
msgid "Are you sure you want to delete this field?"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/admin/builder/class-builder.php:
|
434 |
msgid "Are you sure you want to duplicate this field?"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/admin/builder/class-builder.php:
|
438 |
msgid "(copy)"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/admin/builder/class-builder.php:
|
442 |
msgid "Please enter a form name."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/admin/builder/class-builder.php:
|
446 |
msgid "This item must contain at least one choice."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/admin/builder/class-builder.php:
|
450 |
-
#: includes/fields/class-base.php:253 includes/fields/class-base.php:
|
451 |
-
#: lite/wpforms-lite.php:101 pro/wpforms-pro.php:
|
452 |
msgid "Off"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/admin/builder/class-builder.php:
|
456 |
#: includes/fields/class-base.php:253 lite/wpforms-lite.php:100
|
457 |
-
#: pro/wpforms-pro.php:
|
458 |
msgid "On"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/admin/builder/class-builder.php:
|
462 |
msgid "or"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/admin/builder/class-builder.php:
|
466 |
#: includes/admin/class-am-deactivation-survey.php:307
|
467 |
#: includes/templates/class-suggestion.php:61
|
468 |
msgid "Other"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/admin/builder/class-builder.php:
|
472 |
#: includes/class-conditional-logic-core.php:372
|
473 |
#: pro/includes/admin/entries/class-entries-list-table.php:728
|
474 |
msgid "is"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/admin/builder/class-builder.php:
|
478 |
#: includes/class-conditional-logic-core.php:373
|
479 |
#: pro/includes/admin/entries/class-entries-list-table.php:729
|
480 |
msgid "is not"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/admin/builder/class-builder.php:
|
484 |
#: includes/class-conditional-logic-core.php:374
|
485 |
msgid "empty"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: includes/admin/builder/class-builder.php:
|
489 |
#: includes/class-conditional-logic-core.php:375
|
490 |
msgid "not empty"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/admin/builder/class-builder.php:
|
494 |
#: includes/class-conditional-logic-core.php:380
|
495 |
#: pro/includes/admin/entries/class-entries-list-table.php:726
|
496 |
msgid "contains"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/admin/builder/class-builder.php:
|
500 |
#: includes/class-conditional-logic-core.php:381
|
501 |
#: pro/includes/admin/entries/class-entries-list-table.php:727
|
502 |
msgid "does not contain"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/admin/builder/class-builder.php:
|
506 |
#: includes/class-conditional-logic-core.php:382
|
507 |
msgid "starts with"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: includes/admin/builder/class-builder.php:
|
511 |
#: includes/class-conditional-logic-core.php:383
|
512 |
msgid "ends with"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/admin/builder/class-builder.php:
|
516 |
msgid ""
|
517 |
"Form entries must be stored to accept payments. Please enable saving form "
|
518 |
"entries in the General settings first."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/admin/builder/class-builder.php:
|
522 |
#: pro/includes/fields/class-page-break.php:199
|
523 |
#: pro/includes/fields/class-page-break.php:521
|
524 |
msgid "Previous"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/admin/builder/class-builder.php:
|
528 |
msgid ""
|
529 |
"Your form contains required {provider} settings that have not been "
|
530 |
"configured. Please double-check and configure these settings to complete the "
|
531 |
"connection setup."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: includes/admin/builder/class-builder.php:
|
535 |
#: includes/class-conditional-logic-core.php:449
|
536 |
msgid "Create new rule"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/admin/builder/class-builder.php:
|
540 |
msgid "Add new group"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/admin/builder/class-builder.php:
|
544 |
#: includes/class-conditional-logic-core.php:450
|
545 |
msgid "Delete rule"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/admin/builder/class-builder.php:
|
549 |
-
#: includes/admin/builder/functions.php:255 includes/fields/class-base.php:
|
550 |
msgid "Show Smart Tags"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: includes/admin/builder/class-builder.php:
|
554 |
msgid "Hide Smart Tags"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/admin/builder/class-builder.php:
|
558 |
#: includes/class-conditional-logic-core.php:331
|
559 |
msgid "-- Select Field --"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/admin/builder/class-builder.php:
|
563 |
#: includes/class-conditional-logic-core.php:429
|
564 |
msgid "-- Select Choice --"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/admin/builder/class-builder.php:
|
568 |
-
#: includes/fields/class-base.php:
|
569 |
msgid "Remove Image"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: includes/admin/builder/class-builder.php:
|
573 |
msgid "Countries"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/admin/builder/class-builder.php:
|
577 |
msgid "Countries Postal Code"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/admin/builder/class-builder.php:
|
581 |
msgid "States"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/admin/builder/class-builder.php:
|
585 |
msgid "States Postal Code"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/admin/builder/class-builder.php:
|
589 |
msgid "Months"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: includes/admin/builder/class-builder.php:
|
593 |
msgid "Days"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/admin/builder/class-builder.php:
|
597 |
#: includes/admin/class-welcome.php:114
|
598 |
msgid "Sullie the WPForms mascot"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/admin/builder/class-builder.php:
|
602 |
msgid "Now editing"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/admin/builder/class-builder.php:
|
606 |
msgid "Embed Form"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/admin/builder/class-builder.php:
|
610 |
msgid "Embed"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/admin/builder/class-builder.php:
|
614 |
msgid "Save Form"
|
615 |
msgstr ""
|
616 |
|
@@ -731,17 +737,17 @@ msgid "You don't have any fields yet. Add some!"
|
|
731 |
msgstr ""
|
732 |
|
733 |
#: includes/admin/builder/panels/class-fields.php:275
|
734 |
-
#: includes/fields/class-base.php:
|
735 |
msgid "Duplicate Field"
|
736 |
msgstr ""
|
737 |
|
738 |
#: includes/admin/builder/panels/class-fields.php:277
|
739 |
-
#: includes/fields/class-base.php:
|
740 |
msgid "Delete Field"
|
741 |
msgstr ""
|
742 |
|
743 |
#: includes/admin/builder/panels/class-fields.php:279
|
744 |
-
#: includes/fields/class-base.php:
|
745 |
msgid "Click to edit. Drag to reorder."
|
746 |
msgstr ""
|
747 |
|
@@ -784,7 +790,7 @@ msgid "General"
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/admin/builder/panels/class-settings.php:43 lite/wpforms-lite.php:63
|
787 |
-
#: lite/wpforms-lite.php:96 pro/wpforms-pro.php:
|
788 |
msgid "Notifications"
|
789 |
msgstr ""
|
790 |
|
@@ -861,7 +867,7 @@ msgstr ""
|
|
861 |
|
862 |
#: includes/admin/builder/panels/class-settings.php:186
|
863 |
#: includes/templates/class-suggestion.php:76 lite/wpforms-lite.php:217
|
864 |
-
#: pro/wpforms-pro.php:
|
865 |
msgid "Message"
|
866 |
msgstr ""
|
867 |
|
@@ -1038,9 +1044,9 @@ msgid ""
|
|
1038 |
"a>?"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#. #-#-#-#-# wpforms.pot (WPForms 1.4.
|
1042 |
#. Plugin Name of the plugin/theme
|
1043 |
-
#. #-#-#-#-# wpforms.pot (WPForms 1.4.
|
1044 |
#. Author of the plugin/theme
|
1045 |
#: includes/admin/class-menu.php:39 includes/admin/class-menu.php:40
|
1046 |
#: includes/admin/class-menu.php:51 includes/admin/class-menu.php:103
|
@@ -1068,7 +1074,7 @@ msgstr ""
|
|
1068 |
#: includes/admin/class-menu.php:72
|
1069 |
#: includes/admin/overview/class-overview-table.php:172
|
1070 |
#: pro/includes/admin/entries/class-entries-list.php:542
|
1071 |
-
#: pro/wpforms-pro.php:
|
1072 |
msgid "Entries"
|
1073 |
msgstr ""
|
1074 |
|
@@ -1097,30 +1103,30 @@ msgstr ""
|
|
1097 |
msgid "Addons"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/admin/class-review.php:
|
1101 |
msgid ""
|
1102 |
"Hey, I noticed you collected over 50 entries from WPForms - that’s awesome! "
|
1103 |
"Could you please do me a BIG favor and give it a 5-star rating on WordPress "
|
1104 |
"to help us spread the word and boost our motivation?"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/admin/class-review.php:
|
1108 |
msgid "~ Syed Balkhi<br>Co-Founder of WPForms"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/admin/class-review.php:
|
1112 |
msgid "Ok, you deserve it"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/admin/class-review.php:
|
1116 |
msgid "Nope, maybe later"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/admin/class-review.php:
|
1120 |
msgid "I already did"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/admin/class-review.php:
|
1124 |
msgid ""
|
1125 |
"Hey, I noticed you created a contact form with WPForms - that’s awesome! "
|
1126 |
"Could you please do me a BIG favor and give it a 5-star rating on WordPress "
|
@@ -1129,7 +1135,7 @@ msgstr ""
|
|
1129 |
|
1130 |
#. translators: $1$s - WPForms plugin name; $2$s - WP.org review link; $3$s -
|
1131 |
#. WP.org review link.
|
1132 |
-
#: includes/admin/class-review.php:
|
1133 |
msgid ""
|
1134 |
"Please rate %1$s <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
|
1135 |
"\">★★★★★</a> on <a href=\"%3$s\" target="
|
@@ -1143,12 +1149,12 @@ msgstr ""
|
|
1143 |
|
1144 |
#: includes/admin/class-settings.php:167 includes/admin/class-settings.php:172
|
1145 |
#: includes/admin/class-settings.php:177 includes/admin/class-settings.php:182
|
1146 |
-
#: includes/admin/class-settings.php:192 pro/wpforms-pro.php:
|
1147 |
msgid "Save Settings"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/admin/class-settings.php:170 includes/admin/class-settings.php:
|
1151 |
-
#: includes/admin/class-settings.php:
|
1152 |
#: includes/fields/class-email.php:68 includes/fields/class-email.php:306
|
1153 |
#: includes/templates/class-contact.php:41
|
1154 |
#: includes/templates/class-subscribe.php:44
|
@@ -1159,7 +1165,7 @@ msgstr ""
|
|
1159 |
msgid "Email"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/admin/class-settings.php:175 includes/admin/class-settings.php:
|
1163 |
msgid "reCAPTCHA"
|
1164 |
msgstr ""
|
1165 |
|
@@ -1167,12 +1173,12 @@ msgstr ""
|
|
1167 |
msgid "Validation"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/admin/class-settings.php:185 includes/admin/class-settings.php:
|
1171 |
-
#: includes/admin/class-settings.php:
|
1172 |
msgid "Integrations"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/admin/class-settings.php:190 includes/admin/class-settings.php:
|
1176 |
msgid "Misc"
|
1177 |
msgstr ""
|
1178 |
|
@@ -1249,164 +1255,180 @@ msgid ""
|
|
1249 |
"your site is having compatibility issues or instructed to by support."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/admin/class-settings.php:
|
1253 |
-
msgid "
|
|
|
|
|
|
|
|
|
1254 |
msgstr ""
|
1255 |
|
|
|
1256 |
#: includes/admin/class-settings.php:324
|
1257 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1258 |
"Determines how email notifications will be formatted. HTML Templates are the "
|
1259 |
"default."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/admin/class-settings.php:
|
1263 |
msgid "HTML Template"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/admin/class-settings.php:
|
1267 |
msgid "Plain text"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/admin/class-settings.php:
|
1271 |
msgid "Header Image"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/admin/class-settings.php:
|
1275 |
msgid ""
|
1276 |
"Upload or choose a logo to be displayed at the top of email notifications."
|
1277 |
"<br>Recommended size is 300x100 or smaller for best support on all devices."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/admin/class-settings.php:
|
1281 |
msgid "Background Color"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/admin/class-settings.php:
|
1285 |
msgid "Customize the background color of the HTML email template."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/admin/class-settings.php:
|
1289 |
msgid "Carbon Copy"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/admin/class-settings.php:
|
1293 |
msgid ""
|
1294 |
"Check this if you would like to enable the ability to CC: email addresses in "
|
1295 |
"the form notification settings."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/admin/class-settings.php:
|
1299 |
#: pro/includes/fields/class-date-time.php:153
|
1300 |
msgid "Type"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/admin/class-settings.php:
|
1304 |
msgid "v2 reCAPTCHA"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/admin/class-settings.php:
|
1308 |
msgid "Invisible reCAPTCHA"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/admin/class-settings.php:
|
1312 |
msgid "Site Key"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/admin/class-settings.php:
|
1316 |
msgid "Secret Key"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/admin/class-settings.php:
|
1320 |
msgid "No-Conflict Mode"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/admin/class-settings.php:
|
1324 |
msgid ""
|
1325 |
"When checked, other reCAPTCHA occurrences are forcefully removed, to prevent "
|
1326 |
"conflicts. Only check if your site is having compatibility issues or "
|
1327 |
"instructed to by support."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/admin/class-settings.php:
|
1331 |
msgid "Validation Messages"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/admin/class-settings.php:
|
1335 |
msgid ""
|
1336 |
"These messages are displayed to the user as they fill out a form in real-"
|
1337 |
"time."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: includes/admin/class-settings.php:
|
1341 |
msgid "Required"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: includes/admin/class-settings.php:
|
1345 |
-
#: includes/functions.php:
|
1346 |
msgid "This field is required."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/admin/class-settings.php:
|
1350 |
msgid "Website URL"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/admin/class-settings.php:
|
1354 |
#: pro/includes/fields/class-url.php:158
|
1355 |
msgid "Please enter a valid URL."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/admin/class-settings.php:
|
1359 |
msgid "Please enter a valid email address."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/admin/class-settings.php:
|
1363 |
msgid "Number"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/admin/class-settings.php:
|
1367 |
#: includes/fields/class-number.php:157
|
1368 |
msgid "Please enter a valid number."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: includes/admin/class-settings.php:
|
1372 |
msgid "Confirm Value"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: includes/admin/class-settings.php:
|
1376 |
#: pro/includes/fields/class-password.php:404
|
1377 |
msgid "Field values do not match."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: includes/admin/class-settings.php:
|
1381 |
msgid ""
|
1382 |
"Manage integrations with popular providers such as Constant Contact, "
|
1383 |
"MailChimp, Zapier, and more."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: includes/admin/class-settings.php:
|
1387 |
msgid "Hide Announcements"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/admin/class-settings.php:
|
1391 |
msgid ""
|
1392 |
"Check this if you would like to hide plugin announcements and update details."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: includes/admin/class-settings.php:
|
1396 |
msgid "Uninstall WPForms"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: includes/admin/class-settings.php:
|
1400 |
msgid ""
|
1401 |
"Check this if you would like to remove ALL WPForms data upon plugin "
|
1402 |
"deletion. All forms, entries, and uploaded files will be unrecoverable."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: includes/admin/class-settings.php:
|
1406 |
msgid "Want to better protect your contact forms from spam?"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: includes/admin/class-settings.php:
|
1410 |
msgid ""
|
1411 |
"WPForms custom captcha addon allows you to add custom questions captcha or "
|
1412 |
"math questions captcha to your WordPress forms. Since we know spam is a huge "
|
@@ -1414,7 +1436,7 @@ msgid ""
|
|
1414 |
"your forms."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: includes/admin/class-settings.php:
|
1418 |
msgid "Click here to Upgrade"
|
1419 |
msgstr ""
|
1420 |
|
@@ -1666,7 +1688,7 @@ msgid "Please upload a valid .json form export file."
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
#: includes/admin/class-tools.php:682
|
1669 |
-
#: pro/includes/admin/entries/class-entries-export.php:
|
1670 |
msgid "Error"
|
1671 |
msgstr ""
|
1672 |
|
@@ -1902,7 +1924,7 @@ msgstr ""
|
|
1902 |
#: includes/admin/importers/class-contact-form-7.php:400
|
1903 |
#: includes/admin/importers/class-ninja-forms.php:132
|
1904 |
#: includes/admin/importers/class-ninja-forms.php:406 lite/wpforms-lite.php:157
|
1905 |
-
#: pro/wpforms-pro.php:
|
1906 |
msgid "New Entry: %s"
|
1907 |
msgstr ""
|
1908 |
|
@@ -2049,8 +2071,8 @@ msgid ""
|
|
2049 |
"\"wpforms-setting-license-key-refresh\">click here to force a refresh</a>."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: includes/admin/settings-api.php:306 includes/fields/class-base.php:
|
2053 |
-
#: includes/fields/class-base.php:
|
2054 |
msgid "Upload Image"
|
2055 |
msgstr ""
|
2056 |
|
@@ -2086,33 +2108,33 @@ msgstr ""
|
|
2086 |
#: includes/class-frontend.php:1021
|
2087 |
#: pro/includes/fields/class-file-upload.php:383
|
2088 |
#: pro/includes/fields/class-file-upload.php:399
|
2089 |
-
#: pro/includes/fields/class-file-upload.php:417 pro/wpforms-pro.php:
|
2090 |
msgid "File type is not allowed."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: includes/class-frontend.php:1022 pro/wpforms-pro.php:
|
2094 |
msgid "File exceeds max size allowed."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: includes/class-frontend.php:1023 pro/wpforms-pro.php:
|
2098 |
msgid "Please enter time in 12-hour AM/PM format (eg 8:45 AM)."
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: includes/class-frontend.php:1024 pro/wpforms-pro.php:
|
2102 |
msgid "Please enter time in 24-hour format (eg 22:45)."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: includes/class-frontend.php:1025
|
2106 |
-
#: pro/includes/fields/class-payment-total.php:208 pro/wpforms-pro.php:
|
2107 |
msgid "Payment is required."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: includes/class-frontend.php:1026 pro/wpforms-pro.php:
|
2111 |
msgid "Please enter a valid credit card number."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#. translators: %s - URL to a non-amp version of a page with the form.
|
2115 |
-
#: includes/class-frontend.php:
|
2116 |
msgid "<a href=\"%s\">Go to the full page</a> to view and submit the form."
|
2117 |
msgstr ""
|
2118 |
|
@@ -2166,8 +2188,8 @@ msgstr ""
|
|
2166 |
#. translators: %d - field ID
|
2167 |
#. translators: %d - field ID.
|
2168 |
#. translators: %d - field ID.
|
2169 |
-
#: includes/class-preview.php:193 includes/emails/class-emails.php:
|
2170 |
-
#: includes/emails/class-emails.php:
|
2171 |
#: pro/includes/admin/entries/class-entries-single.php:543
|
2172 |
msgid "Field ID #%d"
|
2173 |
msgstr ""
|
@@ -2242,7 +2264,7 @@ msgstr ""
|
|
2242 |
|
2243 |
#. translators: %s - form name.
|
2244 |
#: includes/class-process.php:396 lite/wpforms-lite.php:54
|
2245 |
-
#: pro/wpforms-pro.php:
|
2246 |
msgid "New %s Entry"
|
2247 |
msgstr ""
|
2248 |
|
@@ -2271,7 +2293,7 @@ msgid "Embedded Post/Page ID"
|
|
2271 |
msgstr ""
|
2272 |
|
2273 |
#: includes/class-smart-tags.php:42
|
2274 |
-
#: pro/includes/admin/entries/class-entries-export.php:
|
2275 |
#: pro/includes/admin/entries/class-entries-list-table.php:165
|
2276 |
#: pro/includes/fields/class-date-time.php:72
|
2277 |
#: pro/includes/fields/class-date-time.php:129
|
@@ -2383,12 +2405,18 @@ msgid ""
|
|
2383 |
"reached."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: includes/emails/class-emails.php:
|
2387 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
2388 |
msgid "(empty)"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: includes/emails/class-emails.php:
|
2392 |
msgid "An empty form was submitted."
|
2393 |
msgstr ""
|
2394 |
|
@@ -2429,63 +2457,63 @@ msgstr ""
|
|
2429 |
msgid "Code"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: includes/fields/class-base.php:
|
2433 |
msgid "Choices"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: includes/fields/class-base.php:
|
2437 |
msgid "Add choices for the form field."
|
2438 |
msgstr ""
|
2439 |
|
2440 |
#. translators: %1$s - source name; %2$s - type name.
|
2441 |
-
#: includes/fields/class-base.php:
|
2442 |
msgid "Choices are dynamically populated from the %1$s %2$s."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: includes/fields/class-base.php:
|
2446 |
msgid "Items"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: includes/fields/class-base.php:
|
2450 |
msgid ""
|
2451 |
"Images are not cropped or resized. For best results, they should be the same "
|
2452 |
"size and 250x250 pixels or smaller."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: includes/fields/class-base.php:
|
2456 |
msgid "Use image choices"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: includes/fields/class-base.php:
|
2460 |
msgid "Check this option to enable using images with the choices."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/fields/class-base.php:
|
2464 |
msgid "Image Choice Style"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: includes/fields/class-base.php:
|
2468 |
msgid "Select the style for the image choices."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: includes/fields/class-base.php:
|
2472 |
msgid "Modern"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: includes/fields/class-base.php:
|
2476 |
msgid "Classic"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: includes/fields/class-base.php:
|
2480 |
#: pro/includes/fields/class-page-break.php:287
|
2481 |
msgid "None"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: includes/fields/class-base.php:
|
2485 |
msgid "Enter text for the default form field value."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: includes/fields/class-base.php:
|
2489 |
#: includes/fields/class-name.php:298 includes/fields/class-name.php:313
|
2490 |
#: includes/fields/class-name.php:328 pro/includes/fields/class-address.php:336
|
2491 |
#: pro/includes/fields/class-address.php:355
|
@@ -2496,126 +2524,126 @@ msgstr ""
|
|
2496 |
msgid "Default Value"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: includes/fields/class-base.php:
|
2500 |
msgid "Select the default form field size."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: includes/fields/class-base.php:
|
2504 |
msgid "Small"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: includes/fields/class-base.php:
|
2508 |
msgid "Medium"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: includes/fields/class-base.php:
|
2512 |
msgid "Large"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/fields/class-base.php:
|
2516 |
msgid "Field Size"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/fields/class-base.php:
|
2520 |
msgid "Advanced Options"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/fields/class-base.php:
|
2524 |
msgid "Enter text for the form field placeholder."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/fields/class-base.php:
|
2528 |
msgid "Placeholder Text"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/fields/class-base.php:
|
2532 |
msgid ""
|
2533 |
"Enter CSS class names for the form field container. Class names should be "
|
2534 |
"separated with spaces."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: includes/fields/class-base.php:
|
2538 |
msgid "CSS Classes"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: includes/fields/class-base.php:
|
2542 |
msgid "Check this option to hide the form field label."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: includes/fields/class-base.php:
|
2546 |
msgid "Hide Label"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: includes/fields/class-base.php:
|
2550 |
msgid "Check this option to hide the form field sub-label."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: includes/fields/class-base.php:
|
2554 |
msgid "Hide Sub-Labels"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: includes/fields/class-base.php:
|
2558 |
msgid "Select the layout for displaying field choices."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: includes/fields/class-base.php:
|
2562 |
msgid "One Column"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: includes/fields/class-base.php:
|
2566 |
msgid "Two Columns"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: includes/fields/class-base.php:
|
2570 |
msgid "Three Columns"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: includes/fields/class-base.php:
|
2574 |
msgid "Inline"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: includes/fields/class-base.php:
|
2578 |
msgid "Choice Layout"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/fields/class-base.php:
|
2582 |
msgid "Select auto-populate method to use."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/fields/class-base.php:
|
2586 |
msgid "Post Type"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: includes/fields/class-base.php:
|
2590 |
msgid "Taxonomy"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: includes/fields/class-base.php:
|
2594 |
msgid "Dynamic Choices"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
#. translators: %s - dynamic source type name.
|
2598 |
-
#: includes/fields/class-base.php:
|
2599 |
msgid "Select %s to use for auto-populating field choices."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
#. translators: %s - dynamic source type name.
|
2603 |
-
#: includes/fields/class-base.php:
|
2604 |
msgid "Dynamic %s Source"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
#. translators: %d - total amount of choices.
|
2608 |
-
#: includes/fields/class-base.php:
|
2609 |
msgid ""
|
2610 |
"Showing the first 20 choices.<br> All %d choices will be displayed when "
|
2611 |
"viewing the form."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: includes/fields/class-base.php:
|
2615 |
msgid "No form ID found"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: includes/fields/class-base.php:
|
2619 |
msgid "No field type found"
|
2620 |
msgstr ""
|
2621 |
|
@@ -2688,6 +2716,20 @@ msgstr ""
|
|
2688 |
msgid "Enter text for the confirmation field placeholder."
|
2689 |
msgstr ""
|
2690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2691 |
#: includes/fields/class-name.php:82 includes/fields/class-name.php:377
|
2692 |
msgid "First"
|
2693 |
msgstr ""
|
@@ -2797,1277 +2839,1277 @@ msgstr ""
|
|
2797 |
msgid "Paragraph Text"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: includes/functions.php:
|
2801 |
msgid "Alabama"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: includes/functions.php:
|
2805 |
msgid "Alaska"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: includes/functions.php:
|
2809 |
msgid "Arizona"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: includes/functions.php:
|
2813 |
msgid "Arkansas"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: includes/functions.php:
|
2817 |
msgid "California"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: includes/functions.php:
|
2821 |
msgid "Colorado"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: includes/functions.php:
|
2825 |
msgid "Connecticut"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: includes/functions.php:
|
2829 |
msgid "Delaware"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: includes/functions.php:
|
2833 |
msgid "District of Columbia"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: includes/functions.php:
|
2837 |
msgid "Florida"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: includes/functions.php:
|
2841 |
msgctxt "US State"
|
2842 |
msgid "Georgia"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: includes/functions.php:
|
2846 |
msgid "Hawaii"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: includes/functions.php:
|
2850 |
msgid "Idaho"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: includes/functions.php:
|
2854 |
msgid "Illinois"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: includes/functions.php:
|
2858 |
msgid "Indiana"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: includes/functions.php:
|
2862 |
msgid "Iowa"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: includes/functions.php:
|
2866 |
msgid "Kansas"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: includes/functions.php:
|
2870 |
msgid "Kentucky"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: includes/functions.php:
|
2874 |
msgid "Louisiana"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: includes/functions.php:
|
2878 |
msgid "Maine"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: includes/functions.php:
|
2882 |
msgid "Maryland"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: includes/functions.php:
|
2886 |
msgid "Massachusetts"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: includes/functions.php:
|
2890 |
msgid "Michigan"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: includes/functions.php:
|
2894 |
msgid "Minnesota"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: includes/functions.php:
|
2898 |
msgid "Mississippi"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: includes/functions.php:
|
2902 |
msgid "Missouri"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: includes/functions.php:
|
2906 |
msgid "Montana"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: includes/functions.php:
|
2910 |
msgid "Nebraska"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: includes/functions.php:
|
2914 |
msgid "Nevada"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: includes/functions.php:
|
2918 |
msgid "New Hampshire"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: includes/functions.php:
|
2922 |
msgid "New Jersey"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: includes/functions.php:
|
2926 |
msgid "New Mexico"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: includes/functions.php:
|
2930 |
msgid "New York"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: includes/functions.php:
|
2934 |
msgid "North Carolina"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: includes/functions.php:
|
2938 |
msgid "North Dakota"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: includes/functions.php:
|
2942 |
msgid "Ohio"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: includes/functions.php:
|
2946 |
msgid "Oklahoma"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: includes/functions.php:
|
2950 |
msgid "Oregon"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/functions.php:
|
2954 |
msgid "Pennsylvania"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: includes/functions.php:
|
2958 |
msgid "Rhode Island"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: includes/functions.php:
|
2962 |
msgid "South Carolina"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: includes/functions.php:
|
2966 |
msgid "South Dakota"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: includes/functions.php:
|
2970 |
msgid "Tennessee"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: includes/functions.php:
|
2974 |
msgid "Texas"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: includes/functions.php:
|
2978 |
msgid "Utah"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: includes/functions.php:
|
2982 |
msgid "Vermont"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: includes/functions.php:
|
2986 |
msgid "Virginia"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: includes/functions.php:
|
2990 |
msgid "Washington"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: includes/functions.php:
|
2994 |
msgid "West Virginia"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: includes/functions.php:
|
2998 |
msgid "Wisconsin"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: includes/functions.php:
|
3002 |
msgid "Wyoming"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: includes/functions.php:
|
3006 |
msgid "Afghanistan"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: includes/functions.php:
|
3010 |
msgid "Åland Islands"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: includes/functions.php:
|
3014 |
msgid "Albania"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: includes/functions.php:
|
3018 |
msgid "Algeria"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: includes/functions.php:
|
3022 |
msgid "American Samoa"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: includes/functions.php:
|
3026 |
msgid "Andorra"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: includes/functions.php:
|
3030 |
msgid "Angola"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: includes/functions.php:
|
3034 |
msgid "Anguilla"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: includes/functions.php:
|
3038 |
msgid "Antarctica"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: includes/functions.php:
|
3042 |
msgid "Antigua and Barbuda"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: includes/functions.php:
|
3046 |
msgid "Argentina"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: includes/functions.php:
|
3050 |
msgid "Armenia"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: includes/functions.php:
|
3054 |
msgid "Aruba"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: includes/functions.php:
|
3058 |
msgid "Australia"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: includes/functions.php:
|
3062 |
msgid "Austria"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: includes/functions.php:
|
3066 |
msgid "Azerbaijan"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: includes/functions.php:
|
3070 |
msgid "Bahamas"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: includes/functions.php:
|
3074 |
msgid "Bahrain"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: includes/functions.php:
|
3078 |
msgid "Bangladesh"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: includes/functions.php:
|
3082 |
msgid "Barbados"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: includes/functions.php:
|
3086 |
msgid "Belarus"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: includes/functions.php:
|
3090 |
msgid "Belgium"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: includes/functions.php:
|
3094 |
msgid "Belize"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: includes/functions.php:
|
3098 |
msgid "Benin"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: includes/functions.php:
|
3102 |
msgid "Bermuda"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: includes/functions.php:
|
3106 |
msgid "Bhutan"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: includes/functions.php:
|
3110 |
msgid "Bolivia (Plurinational State of)"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: includes/functions.php:
|
3114 |
msgid "Bosnia and Herzegovina"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: includes/functions.php:
|
3118 |
msgid "Botswana"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: includes/functions.php:
|
3122 |
msgid "Bouvet Island"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: includes/functions.php:
|
3126 |
msgid "Brazil"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: includes/functions.php:
|
3130 |
msgid "British Indian Ocean Territory"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: includes/functions.php:
|
3134 |
msgid "Brunei Darussalam"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: includes/functions.php:
|
3138 |
msgid "Bulgaria"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: includes/functions.php:
|
3142 |
msgid "Burkina Faso"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: includes/functions.php:
|
3146 |
msgid "Burundi"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: includes/functions.php:
|
3150 |
msgid "Cabo Verde"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: includes/functions.php:
|
3154 |
msgid "Cambodia"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: includes/functions.php:
|
3158 |
msgid "Cameroon"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: includes/functions.php:
|
3162 |
msgid "Canada"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: includes/functions.php:
|
3166 |
msgid "Cayman Islands"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: includes/functions.php:
|
3170 |
msgid "Central African Republic"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: includes/functions.php:
|
3174 |
msgid "Chad"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: includes/functions.php:
|
3178 |
msgid "Chile"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: includes/functions.php:
|
3182 |
msgid "China"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: includes/functions.php:
|
3186 |
msgid "Christmas Island"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: includes/functions.php:
|
3190 |
msgid "Cocos (Keeling) Islands"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: includes/functions.php:
|
3194 |
msgid "Colombia"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: includes/functions.php:
|
3198 |
msgid "Comoros"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: includes/functions.php:
|
3202 |
msgid "Congo"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: includes/functions.php:
|
3206 |
msgid "Congo (Democratic Republic of the)"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: includes/functions.php:
|
3210 |
msgid "Cook Islands"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: includes/functions.php:
|
3214 |
msgid "Costa Rica"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: includes/functions.php:
|
3218 |
msgid "Côte d'Ivoire"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: includes/functions.php:
|
3222 |
msgid "Croatia"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: includes/functions.php:
|
3226 |
msgid "Cuba"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: includes/functions.php:
|
3230 |
msgid "Curaçao"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: includes/functions.php:
|
3234 |
msgid "Cyprus"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: includes/functions.php:
|
3238 |
msgid "Czech Republic"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: includes/functions.php:
|
3242 |
msgid "Denmark"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: includes/functions.php:
|
3246 |
msgid "Djibouti"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: includes/functions.php:
|
3250 |
msgid "Dominica"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: includes/functions.php:
|
3254 |
msgid "Dominican Republic"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: includes/functions.php:
|
3258 |
msgid "Ecuador"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: includes/functions.php:
|
3262 |
msgid "Egypt"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: includes/functions.php:
|
3266 |
msgid "El Salvador"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: includes/functions.php:
|
3270 |
msgid "Equatorial Guinea"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: includes/functions.php:
|
3274 |
msgid "Eritrea"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: includes/functions.php:
|
3278 |
msgid "Estonia"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: includes/functions.php:
|
3282 |
msgid "Ethiopia"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: includes/functions.php:
|
3286 |
msgid "Falkland Islands (Malvinas)"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: includes/functions.php:
|
3290 |
msgid "Faroe Islands"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: includes/functions.php:
|
3294 |
msgid "Fiji"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: includes/functions.php:
|
3298 |
msgid "Finland"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: includes/functions.php:
|
3302 |
msgid "France"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: includes/functions.php:
|
3306 |
msgid "French Guiana"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: includes/functions.php:
|
3310 |
msgid "French Polynesia"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: includes/functions.php:
|
3314 |
msgid "French Southern Territories"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: includes/functions.php:
|
3318 |
msgid "Gabon"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: includes/functions.php:
|
3322 |
msgid "Gambia"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: includes/functions.php:
|
3326 |
msgctxt "Country"
|
3327 |
msgid "Georgia"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/functions.php:
|
3331 |
msgid "Germany"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: includes/functions.php:
|
3335 |
msgid "Ghana"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: includes/functions.php:
|
3339 |
msgid "Gibraltar"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: includes/functions.php:
|
3343 |
msgid "Greece"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: includes/functions.php:
|
3347 |
msgid "Greenland"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: includes/functions.php:
|
3351 |
msgid "Grenada"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: includes/functions.php:
|
3355 |
msgid "Guadeloupe"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: includes/functions.php:
|
3359 |
msgid "Guam"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: includes/functions.php:
|
3363 |
msgid "Guatemala"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: includes/functions.php:
|
3367 |
msgid "Guernsey"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: includes/functions.php:
|
3371 |
msgid "Guinea"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: includes/functions.php:
|
3375 |
msgid "Guinea-Bissau"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: includes/functions.php:
|
3379 |
msgid "Guyana"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: includes/functions.php:
|
3383 |
msgid "Haiti"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: includes/functions.php:
|
3387 |
msgid "Heard Island and McDonald Islands"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: includes/functions.php:
|
3391 |
msgid "Honduras"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: includes/functions.php:
|
3395 |
msgid "Hong Kong"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: includes/functions.php:
|
3399 |
msgid "Hungary"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: includes/functions.php:
|
3403 |
msgid "Iceland"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: includes/functions.php:
|
3407 |
msgid "India"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: includes/functions.php:
|
3411 |
msgid "Indonesia"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: includes/functions.php:
|
3415 |
msgid "Iran (Islamic Republic of)"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: includes/functions.php:
|
3419 |
msgid "Iraq"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: includes/functions.php:
|
3423 |
msgid "Ireland (Republic of)"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: includes/functions.php:
|
3427 |
msgid "Isle of Man"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: includes/functions.php:
|
3431 |
msgid "Israel"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: includes/functions.php:
|
3435 |
msgid "Italy"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: includes/functions.php:
|
3439 |
msgid "Jamaica"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: includes/functions.php:
|
3443 |
msgid "Japan"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: includes/functions.php:
|
3447 |
msgid "Jersey"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: includes/functions.php:
|
3451 |
msgid "Jordan"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: includes/functions.php:
|
3455 |
msgid "Kazakhstan"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: includes/functions.php:
|
3459 |
msgid "Kenya"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: includes/functions.php:
|
3463 |
msgid "Kiribati"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: includes/functions.php:
|
3467 |
msgid "Korea (Democratic People's Republic of)"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: includes/functions.php:
|
3471 |
msgid "Korea (Republic of)"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: includes/functions.php:
|
3475 |
msgid "Kuwait"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: includes/functions.php:
|
3479 |
msgid "Kyrgyzstan"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: includes/functions.php:
|
3483 |
msgid "Lao People's Democratic Republic"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: includes/functions.php:
|
3487 |
msgid "Latvia"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: includes/functions.php:
|
3491 |
msgid "Lebanon"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: includes/functions.php:
|
3495 |
msgid "Lesotho"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: includes/functions.php:
|
3499 |
msgid "Liberia"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: includes/functions.php:
|
3503 |
msgid "Libya"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: includes/functions.php:
|
3507 |
msgid "Liechtenstein"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: includes/functions.php:
|
3511 |
msgid "Lithuania"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: includes/functions.php:
|
3515 |
msgid "Luxembourg"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: includes/functions.php:
|
3519 |
msgid "Macao"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: includes/functions.php:
|
3523 |
msgid "Macedonia (Republic of)"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: includes/functions.php:
|
3527 |
msgid "Madagascar"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: includes/functions.php:
|
3531 |
msgid "Malawi"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: includes/functions.php:
|
3535 |
msgid "Malaysia"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: includes/functions.php:
|
3539 |
msgid "Maldives"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: includes/functions.php:
|
3543 |
msgid "Mali"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: includes/functions.php:
|
3547 |
msgid "Malta"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: includes/functions.php:
|
3551 |
msgid "Marshall Islands"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: includes/functions.php:
|
3555 |
msgid "Martinique"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: includes/functions.php:
|
3559 |
msgid "Mauritania"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: includes/functions.php:
|
3563 |
msgid "Mauritius"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: includes/functions.php:
|
3567 |
msgid "Mayotte"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: includes/functions.php:
|
3571 |
msgid "Mexico"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: includes/functions.php:
|
3575 |
msgid "Micronesia (Federated States of)"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: includes/functions.php:
|
3579 |
msgid "Moldova (Republic of)"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: includes/functions.php:
|
3583 |
msgid "Monaco"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: includes/functions.php:
|
3587 |
msgid "Mongolia"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: includes/functions.php:
|
3591 |
msgid "Montenegro"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: includes/functions.php:
|
3595 |
msgid "Montserrat"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: includes/functions.php:
|
3599 |
msgid "Morocco"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: includes/functions.php:
|
3603 |
msgid "Mozambique"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: includes/functions.php:
|
3607 |
msgid "Myanmar"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: includes/functions.php:
|
3611 |
msgid "Namibia"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: includes/functions.php:
|
3615 |
msgid "Nauru"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: includes/functions.php:
|
3619 |
msgid "Nepal"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: includes/functions.php:
|
3623 |
msgid "Netherlands"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: includes/functions.php:
|
3627 |
msgid "New Caledonia"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: includes/functions.php:
|
3631 |
msgid "New Zealand"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: includes/functions.php:
|
3635 |
msgid "Nicaragua"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: includes/functions.php:
|
3639 |
msgid "Niger"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: includes/functions.php:
|
3643 |
msgid "Nigeria"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: includes/functions.php:
|
3647 |
msgid "Niue"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: includes/functions.php:
|
3651 |
msgid "Norfolk Island"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: includes/functions.php:
|
3655 |
msgid "Northern Mariana Islands"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: includes/functions.php:
|
3659 |
msgid "Norway"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: includes/functions.php:
|
3663 |
msgid "Oman"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: includes/functions.php:
|
3667 |
msgid "Pakistan"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: includes/functions.php:
|
3671 |
msgid "Palau"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: includes/functions.php:
|
3675 |
msgid "Palestine (State of)"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: includes/functions.php:
|
3679 |
msgid "Panama"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: includes/functions.php:
|
3683 |
msgid "Papua New Guinea"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: includes/functions.php:
|
3687 |
msgid "Paraguay"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: includes/functions.php:
|
3691 |
msgid "Peru"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: includes/functions.php:
|
3695 |
msgid "Philippines"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: includes/functions.php:
|
3699 |
msgid "Pitcairn"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: includes/functions.php:
|
3703 |
msgid "Poland"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: includes/functions.php:
|
3707 |
msgid "Portugal"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: includes/functions.php:
|
3711 |
msgid "Puerto Rico"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: includes/functions.php:
|
3715 |
msgid "Qatar"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: includes/functions.php:
|
3719 |
msgid "Réunion"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: includes/functions.php:
|
3723 |
msgid "Romania"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: includes/functions.php:
|
3727 |
msgid "Russian Federation"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: includes/functions.php:
|
3731 |
msgid "Rwanda"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: includes/functions.php:
|
3735 |
msgid "Saint Barthélemy"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: includes/functions.php:
|
3739 |
msgid "Saint Helena, Ascension and Tristan da Cunha"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: includes/functions.php:
|
3743 |
msgid "Saint Kitts and Nevis"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: includes/functions.php:
|
3747 |
msgid "Saint Lucia"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: includes/functions.php:
|
3751 |
msgid "Saint Martin (French part)"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: includes/functions.php:
|
3755 |
msgid "Saint Pierre and Miquelon"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: includes/functions.php:
|
3759 |
msgid "Saint Vincent and the Grenadines"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: includes/functions.php:
|
3763 |
msgid "Samoa"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: includes/functions.php:
|
3767 |
msgid "San Marino"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: includes/functions.php:
|
3771 |
msgid "Sao Tome and Principe"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: includes/functions.php:
|
3775 |
msgid "Saudi Arabia"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: includes/functions.php:
|
3779 |
msgid "Senegal"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: includes/functions.php:
|
3783 |
msgid "Serbia"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: includes/functions.php:
|
3787 |
msgid "Seychelles"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: includes/functions.php:
|
3791 |
msgid "Sierra Leone"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: includes/functions.php:
|
3795 |
msgid "Singapore"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: includes/functions.php:
|
3799 |
msgid "Sint Maarten (Dutch part)"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: includes/functions.php:
|
3803 |
msgid "Slovakia"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: includes/functions.php:
|
3807 |
msgid "Slovenia"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: includes/functions.php:
|
3811 |
msgid "Solomon Islands"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: includes/functions.php:
|
3815 |
msgid "Somalia"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: includes/functions.php:
|
3819 |
msgid "South Africa"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: includes/functions.php:
|
3823 |
msgid "South Georgia and the South Sandwich Islands"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: includes/functions.php:
|
3827 |
msgid "South Sudan"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: includes/functions.php:
|
3831 |
msgid "Spain"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: includes/functions.php:
|
3835 |
msgid "Sri Lanka"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: includes/functions.php:
|
3839 |
msgid "Sudan"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: includes/functions.php:
|
3843 |
msgid "Suriname"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: includes/functions.php:
|
3847 |
msgid "Svalbard and Jan Mayen"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: includes/functions.php:
|
3851 |
msgid "Swaziland"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: includes/functions.php:
|
3855 |
msgid "Sweden"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: includes/functions.php:
|
3859 |
msgid "Switzerland"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: includes/functions.php:
|
3863 |
msgid "Syrian Arab Republic"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: includes/functions.php:
|
3867 |
msgid "Taiwan, Province of China"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: includes/functions.php:
|
3871 |
msgid "Tajikistan"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: includes/functions.php:
|
3875 |
msgid "Tanzania (United Republic of)"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: includes/functions.php:
|
3879 |
msgid "Thailand"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: includes/functions.php:
|
3883 |
msgid "Timor-Leste"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: includes/functions.php:
|
3887 |
msgid "Togo"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: includes/functions.php:
|
3891 |
msgid "Tokelau"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: includes/functions.php:
|
3895 |
msgid "Tonga"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: includes/functions.php:
|
3899 |
msgid "Trinidad and Tobago"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: includes/functions.php:
|
3903 |
msgid "Tunisia"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: includes/functions.php:
|
3907 |
msgid "Turkey"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: includes/functions.php:
|
3911 |
msgid "Turkmenistan"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: includes/functions.php:
|
3915 |
msgid "Turks and Caicos Islands"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: includes/functions.php:
|
3919 |
msgid "Tuvalu"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: includes/functions.php:
|
3923 |
msgid "Uganda"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: includes/functions.php:
|
3927 |
msgid "Ukraine"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: includes/functions.php:
|
3931 |
msgid "United Arab Emirates"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: includes/functions.php:
|
3935 |
msgid "United Kingdom of Great Britain and Northern Ireland"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: includes/functions.php:
|
3939 |
msgid "United States of America"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: includes/functions.php:
|
3943 |
msgid "United States Minor Outlying Islands"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: includes/functions.php:
|
3947 |
msgid "Uruguay"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: includes/functions.php:
|
3951 |
msgid "Uzbekistan"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: includes/functions.php:
|
3955 |
msgid "Vanuatu"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: includes/functions.php:
|
3959 |
msgid "Vatican City State"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: includes/functions.php:
|
3963 |
msgid "Venezuela (Bolivarian Republic of)"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: includes/functions.php:
|
3967 |
msgid "Viet Nam"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: includes/functions.php:
|
3971 |
msgid "Virgin Islands (British)"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: includes/functions.php:
|
3975 |
msgid "Virgin Islands (U.S.)"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: includes/functions.php:
|
3979 |
msgid "Wallis and Futuna"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: includes/functions.php:
|
3983 |
msgid "Western Sahara"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: includes/functions.php:
|
3987 |
msgid "Yemen"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: includes/functions.php:
|
3991 |
msgid "Zambia"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: includes/functions.php:
|
3995 |
msgid "Zimbabwe"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: includes/functions.php:
|
3999 |
msgid "January"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: includes/functions.php:
|
4003 |
msgid "February"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: includes/functions.php:
|
4007 |
msgid "March"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: includes/functions.php:
|
4011 |
msgid "April"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: includes/functions.php:
|
4015 |
msgid "May"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: includes/functions.php:
|
4019 |
msgid "June"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: includes/functions.php:
|
4023 |
msgid "July"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: includes/functions.php:
|
4027 |
msgid "August"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: includes/functions.php:
|
4031 |
msgid "September"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: includes/functions.php:
|
4035 |
msgid "October"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: includes/functions.php:
|
4039 |
msgid "November"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: includes/functions.php:
|
4043 |
msgid "December"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: includes/functions.php:
|
4047 |
msgid "Sunday"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: includes/functions.php:
|
4051 |
msgid "Monday"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: includes/functions.php:
|
4055 |
msgid "Tuesday"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: includes/functions.php:
|
4059 |
msgid "Wednesday"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: includes/functions.php:
|
4063 |
msgid "Thursday"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: includes/functions.php:
|
4067 |
msgid "Friday"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: includes/functions.php:
|
4071 |
msgid "Saturday"
|
4072 |
msgstr ""
|
4073 |
|
@@ -4587,39 +4629,39 @@ msgid ""
|
|
4587 |
"more awesome features."
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: lite/wpforms-lite.php:119 pro/wpforms-pro.php:
|
4591 |
msgid "Send To Email Address"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: lite/wpforms-lite.php:122 pro/wpforms-pro.php:
|
4595 |
msgid ""
|
4596 |
"Enter the email address to receive form entry notifications. For multiple "
|
4597 |
"notifications, separate email addresses with a comma."
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: lite/wpforms-lite.php:138 pro/wpforms-pro.php:
|
4601 |
msgid "CC"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: lite/wpforms-lite.php:154 pro/wpforms-pro.php:
|
4605 |
msgid "Email Subject"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: lite/wpforms-lite.php:170 pro/wpforms-pro.php:
|
4609 |
msgid "From Name"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: lite/wpforms-lite.php:186 pro/wpforms-pro.php:
|
4613 |
msgid "From Email"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: lite/wpforms-lite.php:202 pro/wpforms-pro.php:
|
4617 |
msgid "Reply-To"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
#. translators: %s - {all_fields} Smart Tag.
|
4621 |
#. translators: %s - all fields smart tag.
|
4622 |
-
#: lite/wpforms-lite.php:230 pro/wpforms-pro.php:
|
4623 |
msgid "To display all form fields, use the %s Smart Tag."
|
4624 |
msgstr ""
|
4625 |
|
@@ -4670,7 +4712,7 @@ msgstr ""
|
|
4670 |
|
4671 |
#: lite/wpforms-lite.php:436
|
4672 |
#: pro/includes/admin/builder/panels/class-payments.php:22
|
4673 |
-
#: pro/wpforms-pro.php:
|
4674 |
msgid "Payments"
|
4675 |
msgstr ""
|
4676 |
|
@@ -4757,29 +4799,20 @@ msgstr ""
|
|
4757 |
msgid "Could not deactivate addon. Please deactivate from the Plugins page."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
-
#: pro/includes/admin/ajax-actions.php:
|
4761 |
msgid "Addon activated."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
-
#: pro/includes/admin/ajax-actions.php:
|
4765 |
msgid "Could not activate addon. Please activate from the Plugins page."
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: pro/includes/admin/ajax-actions.php:
|
4769 |
-
#: pro/includes/admin/ajax-actions.php:88
|
4770 |
-
#: pro/includes/admin/ajax-actions.php:92
|
4771 |
-
#: pro/includes/admin/ajax-actions.php:118
|
4772 |
-
msgid ""
|
4773 |
-
"Could not install addon. Please download from wpforms.com and install "
|
4774 |
-
"manually."
|
4775 |
-
msgstr ""
|
4776 |
-
|
4777 |
-
#: pro/includes/admin/ajax-actions.php:112
|
4778 |
msgid "Addon installed."
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: pro/includes/admin/ajax-actions.php:
|
4782 |
-
#: pro/includes/admin/ajax-actions.php:
|
4783 |
msgid "Please enter a license key."
|
4784 |
msgstr ""
|
4785 |
|
@@ -4963,15 +4996,15 @@ msgstr ""
|
|
4963 |
msgid "No updates are currently needed."
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: pro/includes/admin/entries/class-entries-export.php:
|
4967 |
msgid "Date GMT"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: pro/includes/admin/entries/class-entries-export.php:
|
4971 |
msgid "ID"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: pro/includes/admin/entries/class-entries-export.php:
|
4975 |
msgid "You do not have permission to export entries."
|
4976 |
msgstr ""
|
4977 |
|
@@ -5446,7 +5479,7 @@ msgid "15 minutes"
|
|
5446 |
msgstr ""
|
5447 |
|
5448 |
#: pro/includes/fields/class-date-time.php:167
|
5449 |
-
msgid "30
|
5450 |
msgstr ""
|
5451 |
|
5452 |
#: pro/includes/fields/class-date-time.php:168
|
@@ -5557,11 +5590,6 @@ msgstr ""
|
|
5557 |
msgid "Contents of this field are not displayed in the admin area."
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: pro/includes/fields/class-page-break.php:25
|
5561 |
-
#: pro/includes/fields/class-page-break.php:528
|
5562 |
-
msgid "Page Break"
|
5563 |
-
msgstr ""
|
5564 |
-
|
5565 |
#. translators: %1$s - current step in multi-page form; %2$d - total number of
|
5566 |
#. pages.
|
5567 |
#: pro/includes/fields/class-page-break.php:145
|
@@ -5681,43 +5709,43 @@ msgstr ""
|
|
5681 |
msgid "Check this option to ask users to provide their password twice."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: pro/includes/fields/class-payment-credit-card.php:22 pro/wpforms-pro.php:
|
5685 |
msgid "Credit Card"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5689 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5690 |
msgid "Card Number"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5694 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5695 |
msgid "Security Code"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5699 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5700 |
msgid "Name on Card"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5704 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5705 |
msgid "Expiration"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5709 |
msgid "Card Number Placeholder Text"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5713 |
msgid "Security Code Placeholder Text"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5717 |
msgid "Name on Card Placeholder Text"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: pro/includes/fields/class-payment-credit-card.php:
|
5721 |
msgid ""
|
5722 |
"This page is insecure. Credit Card field should be used for testing purposes "
|
5723 |
"only."
|
@@ -5996,63 +6024,88 @@ msgstr ""
|
|
5996 |
msgid "Request"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: pro/wpforms-pro.php:
|
6000 |
msgid "File Extension"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: pro/wpforms-pro.php:
|
6004 |
msgid "File Size"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: pro/wpforms-pro.php:
|
6008 |
msgid "Time (12 hour)"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: pro/wpforms-pro.php:
|
6012 |
msgid "Time (24 hour)"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: pro/wpforms-pro.php:
|
6016 |
msgid "Payment Required"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: pro/wpforms-pro.php:
|
6020 |
msgid "Currency"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: pro/wpforms-pro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6024 |
msgid "Disable storing entry information in WordPress"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: pro/wpforms-pro.php:
|
|
|
|
|
|
|
|
|
6028 |
msgid "Add New Notification"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: pro/wpforms-pro.php:
|
6032 |
msgid "Send"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: pro/wpforms-pro.php:
|
6036 |
msgid "Don't send"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: pro/wpforms-pro.php:
|
6040 |
msgid "this notification if"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: pro/wpforms-pro.php:
|
6044 |
msgid "Email notifications"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
#. translators: %s - admin area Addons page URL.
|
6048 |
-
#: pro/wpforms-pro.php:
|
6049 |
msgid ""
|
6050 |
"Install the <a href=\"%s\">Conditional Logic addon</a> to enable conditional "
|
6051 |
"logic for Email Notifications."
|
6052 |
msgstr ""
|
6053 |
|
6054 |
#. translators: %s - WPForms.com announcement page URL.
|
6055 |
-
#: pro/wpforms-pro.php:
|
6056 |
msgid ""
|
6057 |
"Conditional logic functionality is now included in the core WPForms plugin! "
|
6058 |
"The WPForms Conditional Logic addon can be removed without affecting your "
|
@@ -6064,9 +6117,9 @@ msgstr ""
|
|
6064 |
msgid "Please deactivate WPForms Lite before activating WPForms."
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#. #-#-#-#-# wpforms.pot (WPForms 1.4.
|
6068 |
#. Plugin URI of the plugin/theme
|
6069 |
-
#. #-#-#-#-# wpforms.pot (WPForms 1.4.
|
6070 |
#. Author URI of the plugin/theme
|
6071 |
msgid "https://wpforms.com"
|
6072 |
msgstr ""
|
2 |
# This file is distributed under the same license as the WPForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPForms 1.4.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpforms\n"
|
7 |
+
"POT-Creation-Date: 2018-05-14 13:37:44+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: includes/admin/admin.php:145 includes/admin/admin.php:174
|
16 |
#: pro/includes/admin/class-addons.php:284
|
17 |
msgid "Activate"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: includes/admin/admin.php:146 pro/includes/admin/class-addons.php:241
|
21 |
msgid "Active"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/admin/admin.php:147 pro/includes/admin/class-addons.php:279
|
25 |
msgid "Deactivate"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/admin/admin.php:148 pro/includes/admin/class-addons.php:247
|
29 |
msgid "Inactive"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/admin/admin.php:149 pro/includes/admin/class-addons.php:289
|
33 |
msgid "Install Addon"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: includes/admin/admin.php:150 pro/includes/admin/ajax-actions.php:64
|
37 |
+
msgid ""
|
38 |
+
"Could not install addon. Please download from wpforms.com and install "
|
39 |
+
"manually."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/admin/admin.php:152 includes/admin/builder/class-builder.php:331
|
43 |
#: includes/admin/class-editor.php:126
|
44 |
#: pro/includes/admin/entries/class-entries-single.php:608
|
45 |
msgid "Cancel"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/admin/admin.php:153 includes/admin/builder/class-builder.php:333
|
49 |
#: includes/admin/class-editor.php:72 includes/class-preview.php:161
|
50 |
msgid "Close"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: includes/admin/admin.php:154
|
54 |
msgid "Are you sure you want to delete this entry?"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/admin/admin.php:155
|
58 |
msgid "Are you sure you want to delete ALL entries?"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/admin/admin.php:156
|
62 |
#: pro/includes/admin/entries/class-entries-single.php:514
|
63 |
msgid "Hide Empty Fields"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/admin/admin.php:157
|
67 |
#: pro/includes/admin/entries/class-entries-single.php:514
|
68 |
msgid "Show Empty Fields"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: includes/admin/admin.php:158
|
72 |
msgid "Entries Field Columns"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/admin/admin.php:159
|
76 |
msgid "Are you sure you want to delete this note?"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: includes/admin/admin.php:160
|
80 |
#: pro/includes/admin/entries/class-entries-list-table.php:372
|
81 |
msgid "Unstar entry"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/admin/admin.php:161
|
85 |
#: pro/includes/admin/entries/class-entries-list-table.php:372
|
86 |
msgid "Star entry"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/admin/admin.php:162
|
90 |
#: pro/includes/admin/entries/class-entries-list-table.php:377
|
91 |
msgid "Mark entry read"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/admin/admin.php:163
|
95 |
#: pro/includes/admin/entries/class-entries-list-table.php:377
|
96 |
msgid "Mark entry unread"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/admin/admin.php:164
|
100 |
msgid "Select fields"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/admin/admin.php:165
|
104 |
msgid "Are you sure you want to delete this form?"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: includes/admin/admin.php:166
|
108 |
msgid "Are you sure you want to duplicate this form?"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/admin/admin.php:167 includes/admin/builder/class-builder.php:341
|
112 |
msgid "Heads up!"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: includes/admin/admin.php:168
|
116 |
msgid "Please select at least one form to import."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: includes/admin/admin.php:171 includes/admin/builder/class-builder.php:332
|
120 |
msgid "OK"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/admin/admin.php:172
|
124 |
msgid "Install and Activate"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/admin/admin.php:173
|
128 |
msgid ""
|
129 |
"needs to be installed and activated to import its forms. Would you like us "
|
130 |
"to install and activate it for you?"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/admin/admin.php:175
|
134 |
msgid ""
|
135 |
"needs to be activated to import its forms. Would you like us to activate it "
|
136 |
"for you?"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/admin.php:176
|
140 |
msgid "Are you sure you want to disconnect this account?"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/admin/admin.php:177
|
144 |
msgid "Could not authenticate with the provider."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/admin/admin.php:178
|
148 |
msgid "Save and Refresh"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/admin/admin.php:179
|
152 |
msgid "Testing"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/admin/admin.php:180
|
156 |
msgid "Upgrade was successfully completed!"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/admin/admin.php:181 includes/admin/builder/class-builder.php:401
|
160 |
msgid "Upload or Choose Your Image"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/admin/admin.php:182 includes/admin/builder/class-builder.php:402
|
164 |
msgid "Use Image"
|
165 |
msgstr ""
|
166 |
|
167 |
#. translators: %1$s - WPForms plugin name; %2$s - WPForms.com URL to a related
|
168 |
#. doc.
|
169 |
+
#: includes/admin/admin.php:379
|
170 |
msgid ""
|
171 |
"Your site is running an outdated version of PHP that is no longer supported "
|
172 |
"and may cause issues with %1$s. <a href=\"%2$s\" target=\"_blank\" rel="
|
173 |
"\"noopener noreferrer\">Read more</a> for additional information."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/admin/admin.php:393
|
177 |
msgid ""
|
178 |
+
"<em><strong>Please Note:</strong> After June 2018, WPForms will be "
|
179 |
+
"deactivated if no further action is taken.</em>"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/admin/admin.php:415
|
183 |
msgid "Thanks for your interest in WPForms Pro!"
|
184 |
msgstr ""
|
185 |
|
186 |
#. translators: %s - WPForms.com contact page URL.
|
187 |
+
#: includes/admin/admin.php:419
|
188 |
msgid ""
|
189 |
"If you have any questions or issues just <a href=\"%s\" target=\"_blank\" "
|
190 |
"rel=\"noopener noreferrer\">let us know</a>."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/admin/admin.php:433
|
194 |
msgid ""
|
195 |
"After purchasing WPForms Pro, you'll need to <strong>download and install "
|
196 |
"the Pro version of the plugin</strong>, and then <strong>remove the free "
|
197 |
"plugin</strong>."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/admin/admin.php:438
|
201 |
msgid "(Don't worry, all your forms and settings will be preserved.)"
|
202 |
msgstr ""
|
203 |
|
204 |
#. translators: %s - WPForms.com upgrade from Lite to paid docs page URL.
|
205 |
+
#: includes/admin/admin.php:444
|
206 |
msgid ""
|
207 |
"Check out <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">our "
|
208 |
"documentation</a> for step-by-step instructions."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/admin/ajax-actions.php:24 includes/fields/class-base.php:1095
|
212 |
msgid "You do not have permission."
|
213 |
msgstr ""
|
214 |
|
236 |
msgid "Error updating form template"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/admin/ajax-actions.php:281 includes/fields/class-base.php:447
|
240 |
msgid "post type"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/admin/ajax-actions.php:309 includes/fields/class-base.php:451
|
244 |
msgid "taxonomy"
|
245 |
msgstr ""
|
246 |
|
254 |
"with the technical details below."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/admin/builder/class-builder.php:318
|
258 |
#: includes/class-conditional-logic-core.php:449
|
259 |
msgid "AND"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/admin/builder/class-builder.php:320
|
263 |
msgid "Add New Choices"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/admin/builder/class-builder.php:321
|
267 |
+
#: includes/fields/class-base.php:384
|
268 |
msgid "Bulk Add"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/admin/builder/class-builder.php:322
|
272 |
msgid "Hide Bulk Add"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/admin/builder/class-builder.php:323
|
276 |
msgid "Add Choices (one per line)"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/admin/builder/class-builder.php:324
|
280 |
msgid ""
|
281 |
"Blue\n"
|
282 |
"Red\n"
|
283 |
"Green"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/admin/builder/class-builder.php:325
|
287 |
msgid "Show presets"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/admin/builder/class-builder.php:326
|
291 |
msgid "Hide presets"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/admin/builder/class-builder.php:330
|
295 |
msgid ""
|
296 |
"The {source} {type} contains over {limit} items ({total}). This may make the "
|
297 |
"field difficult for your visitors to use and/or cause the form to be slow."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/admin/builder/class-builder.php:334
|
301 |
msgid ""
|
302 |
"Due to form changes, conditional logic rules have been removed or updated:"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/admin/builder/class-builder.php:335
|
306 |
msgid ""
|
307 |
"Are you sure you want to disable conditional logic? This will remove the "
|
308 |
"rules for this field or setting."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/admin/builder/class-builder.php:336
|
312 |
#: pro/includes/admin/entries/class-entries-list-table.php:222
|
313 |
#: pro/includes/admin/entries/class-entries-list-table.php:233
|
314 |
#: pro/includes/admin/entries/class-entries-list-table.php:710
|
317 |
msgid "Field"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/admin/builder/class-builder.php:337
|
321 |
msgid "Field Locked"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/admin/builder/class-builder.php:338
|
325 |
msgid "This field cannot be deleted or duplicated."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: includes/admin/builder/class-builder.php:339
|
329 |
msgid "Available Fields"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: includes/admin/builder/class-builder.php:340
|
333 |
msgid "No fields available"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/admin/builder/class-builder.php:344
|
337 |
msgid "No email fields"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: includes/admin/builder/class-builder.php:345
|
341 |
msgid "Are you sure you want to delete this notification?"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/admin/builder/class-builder.php:346
|
345 |
msgid "Enter a notification name"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/admin/builder/class-builder.php:347
|
349 |
msgid "Eg: User Confirmation"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/admin/builder/class-builder.php:348
|
353 |
msgid "You must provide a notification name"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: includes/admin/builder/class-builder.php:349
|
357 |
msgid ""
|
358 |
"Form must contain one notification. To disable all notifications use the "
|
359 |
"Notifications dropdown setting."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/admin/builder/class-builder.php:350 lite/wpforms-lite.php:110
|
363 |
+
#: pro/wpforms-pro.php:479
|
364 |
msgid "Default Notification"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/admin/builder/class-builder.php:351
|
368 |
+
#: includes/admin/builder/class-builder.php:526
|
369 |
msgid "Save"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: includes/admin/builder/class-builder.php:352
|
373 |
msgid "Saving ..."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/admin/builder/class-builder.php:353
|
377 |
msgid "Saved!"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/admin/builder/class-builder.php:354
|
381 |
msgid "Save and Exit"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/admin/builder/class-builder.php:356
|
385 |
+
#: includes/fields/class-base.php:713
|
386 |
msgid "Show Layouts"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/admin/builder/class-builder.php:357
|
390 |
msgid "Hide Layouts"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/admin/builder/class-builder.php:358
|
394 |
msgid "Select your layout"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/admin/builder/class-builder.php:359
|
398 |
msgid "Select your column"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/admin/builder/class-builder.php:360
|
402 |
+
#: includes/admin/builder/class-builder.php:485
|
403 |
msgid "Loading"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/admin/builder/class-builder.php:366
|
407 |
msgid "Use Template"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/admin/builder/class-builder.php:367
|
411 |
msgid ""
|
412 |
"Changing templates on an existing form will DELETE existing form fields. Are "
|
413 |
"you sure you want apply the new template?"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/admin/builder/class-builder.php:368
|
417 |
msgid ""
|
418 |
"You are almost done. To embed this form on your site, please paste the "
|
419 |
"following shortcode inside a post or page."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/admin/builder/class-builder.php:369
|
423 |
msgid "Or you can follow the instructions in this video."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/builder/class-builder.php:370
|
427 |
+
#: includes/admin/builder/class-builder.php:531
|
428 |
msgid "Exit"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/admin/builder/class-builder.php:372
|
432 |
msgid "If you exit without saving, your changes will be lost."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/admin/builder/class-builder.php:373
|
436 |
msgid "Are you sure you want to delete this field?"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/admin/builder/class-builder.php:374
|
440 |
msgid "Are you sure you want to duplicate this field?"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/admin/builder/class-builder.php:375
|
444 |
msgid "(copy)"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/admin/builder/class-builder.php:376
|
448 |
msgid "Please enter a form name."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/admin/builder/class-builder.php:377
|
452 |
msgid "This item must contain at least one choice."
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/admin/builder/class-builder.php:378
|
456 |
+
#: includes/fields/class-base.php:253 includes/fields/class-base.php:763
|
457 |
+
#: lite/wpforms-lite.php:101 pro/wpforms-pro.php:472
|
458 |
msgid "Off"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/admin/builder/class-builder.php:379
|
462 |
#: includes/fields/class-base.php:253 lite/wpforms-lite.php:100
|
463 |
+
#: pro/wpforms-pro.php:471
|
464 |
msgid "On"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/admin/builder/class-builder.php:380
|
468 |
msgid "or"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/admin/builder/class-builder.php:381
|
472 |
#: includes/admin/class-am-deactivation-survey.php:307
|
473 |
#: includes/templates/class-suggestion.php:61
|
474 |
msgid "Other"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/admin/builder/class-builder.php:382
|
478 |
#: includes/class-conditional-logic-core.php:372
|
479 |
#: pro/includes/admin/entries/class-entries-list-table.php:728
|
480 |
msgid "is"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin/builder/class-builder.php:383
|
484 |
#: includes/class-conditional-logic-core.php:373
|
485 |
#: pro/includes/admin/entries/class-entries-list-table.php:729
|
486 |
msgid "is not"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/admin/builder/class-builder.php:384
|
490 |
#: includes/class-conditional-logic-core.php:374
|
491 |
msgid "empty"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/admin/builder/class-builder.php:385
|
495 |
#: includes/class-conditional-logic-core.php:375
|
496 |
msgid "not empty"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/admin/builder/class-builder.php:386
|
500 |
#: includes/class-conditional-logic-core.php:380
|
501 |
#: pro/includes/admin/entries/class-entries-list-table.php:726
|
502 |
msgid "contains"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/admin/builder/class-builder.php:387
|
506 |
#: includes/class-conditional-logic-core.php:381
|
507 |
#: pro/includes/admin/entries/class-entries-list-table.php:727
|
508 |
msgid "does not contain"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/admin/builder/class-builder.php:388
|
512 |
#: includes/class-conditional-logic-core.php:382
|
513 |
msgid "starts with"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/admin/builder/class-builder.php:389
|
517 |
#: includes/class-conditional-logic-core.php:383
|
518 |
msgid "ends with"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/admin/builder/class-builder.php:390
|
522 |
msgid ""
|
523 |
"Form entries must be stored to accept payments. Please enable saving form "
|
524 |
"entries in the General settings first."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/admin/builder/class-builder.php:391
|
528 |
#: pro/includes/fields/class-page-break.php:199
|
529 |
#: pro/includes/fields/class-page-break.php:521
|
530 |
msgid "Previous"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/admin/builder/class-builder.php:392
|
534 |
msgid ""
|
535 |
"Your form contains required {provider} settings that have not been "
|
536 |
"configured. Please double-check and configure these settings to complete the "
|
537 |
"connection setup."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/admin/builder/class-builder.php:393
|
541 |
#: includes/class-conditional-logic-core.php:449
|
542 |
msgid "Create new rule"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/admin/builder/class-builder.php:394
|
546 |
msgid "Add new group"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: includes/admin/builder/class-builder.php:395
|
550 |
#: includes/class-conditional-logic-core.php:450
|
551 |
msgid "Delete rule"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/admin/builder/class-builder.php:397
|
555 |
+
#: includes/admin/builder/functions.php:255 includes/fields/class-base.php:659
|
556 |
msgid "Show Smart Tags"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/admin/builder/class-builder.php:398
|
560 |
msgid "Hide Smart Tags"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/admin/builder/class-builder.php:399
|
564 |
#: includes/class-conditional-logic-core.php:331
|
565 |
msgid "-- Select Field --"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/admin/builder/class-builder.php:400
|
569 |
#: includes/class-conditional-logic-core.php:429
|
570 |
msgid "-- Select Choice --"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/admin/builder/class-builder.php:403
|
574 |
+
#: includes/fields/class-base.php:422 includes/fields/class-base.php:537
|
575 |
msgid "Remove Image"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/admin/builder/class-builder.php:436
|
579 |
msgid "Countries"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/admin/builder/class-builder.php:440
|
583 |
msgid "Countries Postal Code"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/admin/builder/class-builder.php:444
|
587 |
msgid "States"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/admin/builder/class-builder.php:448
|
591 |
msgid "States Postal Code"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/admin/builder/class-builder.php:452
|
595 |
msgid "Months"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/admin/builder/class-builder.php:456
|
599 |
msgid "Days"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/admin/builder/class-builder.php:500
|
603 |
#: includes/admin/class-welcome.php:114
|
604 |
msgid "Sullie the WPForms mascot"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/admin/builder/class-builder.php:508
|
608 |
msgid "Now editing"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/admin/builder/class-builder.php:519
|
612 |
msgid "Embed Form"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: includes/admin/builder/class-builder.php:521
|
616 |
msgid "Embed"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: includes/admin/builder/class-builder.php:524
|
620 |
msgid "Save Form"
|
621 |
msgstr ""
|
622 |
|
737 |
msgstr ""
|
738 |
|
739 |
#: includes/admin/builder/panels/class-fields.php:275
|
740 |
+
#: includes/fields/class-base.php:1134
|
741 |
msgid "Duplicate Field"
|
742 |
msgstr ""
|
743 |
|
744 |
#: includes/admin/builder/panels/class-fields.php:277
|
745 |
+
#: includes/fields/class-base.php:1135
|
746 |
msgid "Delete Field"
|
747 |
msgstr ""
|
748 |
|
749 |
#: includes/admin/builder/panels/class-fields.php:279
|
750 |
+
#: includes/fields/class-base.php:1136
|
751 |
msgid "Click to edit. Drag to reorder."
|
752 |
msgstr ""
|
753 |
|
790 |
msgstr ""
|
791 |
|
792 |
#: includes/admin/builder/panels/class-settings.php:43 lite/wpforms-lite.php:63
|
793 |
+
#: lite/wpforms-lite.php:96 pro/wpforms-pro.php:458 pro/wpforms-pro.php:467
|
794 |
msgid "Notifications"
|
795 |
msgstr ""
|
796 |
|
867 |
|
868 |
#: includes/admin/builder/panels/class-settings.php:186
|
869 |
#: includes/templates/class-suggestion.php:76 lite/wpforms-lite.php:217
|
870 |
+
#: pro/wpforms-pro.php:616
|
871 |
msgid "Message"
|
872 |
msgstr ""
|
873 |
|
1044 |
"a>?"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#. #-#-#-#-# wpforms.pot (WPForms 1.4.6) #-#-#-#-#
|
1048 |
#. Plugin Name of the plugin/theme
|
1049 |
+
#. #-#-#-#-# wpforms.pot (WPForms 1.4.6) #-#-#-#-#
|
1050 |
#. Author of the plugin/theme
|
1051 |
#: includes/admin/class-menu.php:39 includes/admin/class-menu.php:40
|
1052 |
#: includes/admin/class-menu.php:51 includes/admin/class-menu.php:103
|
1074 |
#: includes/admin/class-menu.php:72
|
1075 |
#: includes/admin/overview/class-overview-table.php:172
|
1076 |
#: pro/includes/admin/entries/class-entries-list.php:542
|
1077 |
+
#: pro/wpforms-pro.php:391
|
1078 |
msgid "Entries"
|
1079 |
msgstr ""
|
1080 |
|
1103 |
msgid "Addons"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/admin/class-review.php:99
|
1107 |
msgid ""
|
1108 |
"Hey, I noticed you collected over 50 entries from WPForms - that’s awesome! "
|
1109 |
"Could you please do me a BIG favor and give it a 5-star rating on WordPress "
|
1110 |
"to help us spread the word and boost our motivation?"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/admin/class-review.php:100 includes/admin/class-review.php:164
|
1114 |
msgid "~ Syed Balkhi<br>Co-Founder of WPForms"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/admin/class-review.php:102 includes/admin/class-review.php:166
|
1118 |
msgid "Ok, you deserve it"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/admin/class-review.php:103 includes/admin/class-review.php:167
|
1122 |
msgid "Nope, maybe later"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/admin/class-review.php:104 includes/admin/class-review.php:168
|
1126 |
msgid "I already did"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/admin/class-review.php:163
|
1130 |
msgid ""
|
1131 |
"Hey, I noticed you created a contact form with WPForms - that’s awesome! "
|
1132 |
"Could you please do me a BIG favor and give it a 5-star rating on WordPress "
|
1135 |
|
1136 |
#. translators: $1$s - WPForms plugin name; $2$s - WP.org review link; $3$s -
|
1137 |
#. WP.org review link.
|
1138 |
+
#: includes/admin/class-review.php:221
|
1139 |
msgid ""
|
1140 |
"Please rate %1$s <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
|
1141 |
"\">★★★★★</a> on <a href=\"%3$s\" target="
|
1149 |
|
1150 |
#: includes/admin/class-settings.php:167 includes/admin/class-settings.php:172
|
1151 |
#: includes/admin/class-settings.php:177 includes/admin/class-settings.php:182
|
1152 |
+
#: includes/admin/class-settings.php:192 pro/wpforms-pro.php:159
|
1153 |
msgid "Save Settings"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/admin/class-settings.php:170 includes/admin/class-settings.php:342
|
1157 |
+
#: includes/admin/class-settings.php:437 includes/fields/class-email.php:21
|
1158 |
#: includes/fields/class-email.php:68 includes/fields/class-email.php:306
|
1159 |
#: includes/templates/class-contact.php:41
|
1160 |
#: includes/templates/class-subscribe.php:44
|
1165 |
msgid "Email"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/admin/class-settings.php:175 includes/admin/class-settings.php:382
|
1169 |
msgid "reCAPTCHA"
|
1170 |
msgstr ""
|
1171 |
|
1173 |
msgid "Validation"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/admin/class-settings.php:185 includes/admin/class-settings.php:458
|
1177 |
+
#: includes/admin/class-settings.php:465
|
1178 |
msgid "Integrations"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/admin/class-settings.php:190 includes/admin/class-settings.php:474
|
1182 |
msgid "Misc"
|
1183 |
msgstr ""
|
1184 |
|
1255 |
"your site is having compatibility issues or instructed to by support."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/admin/class-settings.php:313
|
1259 |
+
msgid "GDPR"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/admin/class-settings.php:320
|
1263 |
+
msgid "GDPR Enhancements"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#. translators: %s = WPForms.com GDPR documentation URL.
|
1267 |
#: includes/admin/class-settings.php:324
|
1268 |
msgid ""
|
1269 |
+
"Check this to turn on GDPR related features and enhancements. <a href=\"%s\" "
|
1270 |
+
"target=\"_blank\" rel=\"noopener noreferrer\">Read our GDPR documentation</"
|
1271 |
+
"a> to learn more."
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-settings.php:349
|
1275 |
+
msgid "Template"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/admin/class-settings.php:350
|
1279 |
+
msgid ""
|
1280 |
"Determines how email notifications will be formatted. HTML Templates are the "
|
1281 |
"default."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/admin/class-settings.php:354
|
1285 |
msgid "HTML Template"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/admin/class-settings.php:355
|
1289 |
msgid "Plain text"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/admin/class-settings.php:360
|
1293 |
msgid "Header Image"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/admin/class-settings.php:361
|
1297 |
msgid ""
|
1298 |
"Upload or choose a logo to be displayed at the top of email notifications."
|
1299 |
"<br>Recommended size is 300x100 or smaller for best support on all devices."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/admin/class-settings.php:366
|
1303 |
msgid "Background Color"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/admin/class-settings.php:367
|
1307 |
msgid "Customize the background color of the HTML email template."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/admin/class-settings.php:373
|
1311 |
msgid "Carbon Copy"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/admin/class-settings.php:374
|
1315 |
msgid ""
|
1316 |
"Check this if you would like to enable the ability to CC: email addresses in "
|
1317 |
"the form notification settings."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: includes/admin/class-settings.php:389
|
1321 |
#: pro/includes/fields/class-date-time.php:153
|
1322 |
msgid "Type"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/admin/class-settings.php:393
|
1326 |
msgid "v2 reCAPTCHA"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: includes/admin/class-settings.php:394
|
1330 |
msgid "Invisible reCAPTCHA"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: includes/admin/class-settings.php:399
|
1334 |
msgid "Site Key"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/admin/class-settings.php:404
|
1338 |
msgid "Secret Key"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/admin/class-settings.php:409
|
1342 |
msgid "No-Conflict Mode"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/admin/class-settings.php:410
|
1346 |
msgid ""
|
1347 |
"When checked, other reCAPTCHA occurrences are forcefully removed, to prevent "
|
1348 |
"conflicts. Only check if your site is having compatibility issues or "
|
1349 |
"instructed to by support."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: includes/admin/class-settings.php:418
|
1353 |
msgid "Validation Messages"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/admin/class-settings.php:418
|
1357 |
msgid ""
|
1358 |
"These messages are displayed to the user as they fill out a form in real-"
|
1359 |
"time."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/admin/class-settings.php:425 includes/fields/class-base.php:337
|
1363 |
msgid "Required"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/admin/class-settings.php:427 includes/class-frontend.php:1016
|
1367 |
+
#: includes/functions.php:1705
|
1368 |
msgid "This field is required."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/admin/class-settings.php:431
|
1372 |
msgid "Website URL"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: includes/admin/class-settings.php:433 includes/class-frontend.php:1017
|
1376 |
#: pro/includes/fields/class-url.php:158
|
1377 |
msgid "Please enter a valid URL."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/admin/class-settings.php:439 includes/class-frontend.php:1018
|
1381 |
msgid "Please enter a valid email address."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/admin/class-settings.php:443
|
1385 |
msgid "Number"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/admin/class-settings.php:445 includes/class-frontend.php:1019
|
1389 |
#: includes/fields/class-number.php:157
|
1390 |
msgid "Please enter a valid number."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: includes/admin/class-settings.php:449
|
1394 |
msgid "Confirm Value"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: includes/admin/class-settings.php:451 includes/class-frontend.php:1020
|
1398 |
#: pro/includes/fields/class-password.php:404
|
1399 |
msgid "Field values do not match."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/admin/class-settings.php:458 includes/admin/class-settings.php:465
|
1403 |
msgid ""
|
1404 |
"Manage integrations with popular providers such as Constant Contact, "
|
1405 |
"MailChimp, Zapier, and more."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/admin/class-settings.php:481
|
1409 |
msgid "Hide Announcements"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/admin/class-settings.php:482
|
1413 |
msgid ""
|
1414 |
"Check this if you would like to hide plugin announcements and update details."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: includes/admin/class-settings.php:487
|
1418 |
msgid "Uninstall WPForms"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: includes/admin/class-settings.php:488
|
1422 |
msgid ""
|
1423 |
"Check this if you would like to remove ALL WPForms data upon plugin "
|
1424 |
"deletion. All forms, entries, and uploaded files will be unrecoverable."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/admin/class-settings.php:601
|
1428 |
msgid "Want to better protect your contact forms from spam?"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: includes/admin/class-settings.php:603
|
1432 |
msgid ""
|
1433 |
"WPForms custom captcha addon allows you to add custom questions captcha or "
|
1434 |
"math questions captcha to your WordPress forms. Since we know spam is a huge "
|
1436 |
"your forms."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: includes/admin/class-settings.php:606
|
1440 |
msgid "Click here to Upgrade"
|
1441 |
msgstr ""
|
1442 |
|
1688 |
msgstr ""
|
1689 |
|
1690 |
#: includes/admin/class-tools.php:682
|
1691 |
+
#: pro/includes/admin/entries/class-entries-export.php:345
|
1692 |
msgid "Error"
|
1693 |
msgstr ""
|
1694 |
|
1924 |
#: includes/admin/importers/class-contact-form-7.php:400
|
1925 |
#: includes/admin/importers/class-ninja-forms.php:132
|
1926 |
#: includes/admin/importers/class-ninja-forms.php:406 lite/wpforms-lite.php:157
|
1927 |
+
#: pro/wpforms-pro.php:556
|
1928 |
msgid "New Entry: %s"
|
1929 |
msgstr ""
|
1930 |
|
2071 |
"\"wpforms-setting-license-key-refresh\">click here to force a refresh</a>."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: includes/admin/settings-api.php:306 includes/fields/class-base.php:430
|
2075 |
+
#: includes/fields/class-base.php:545
|
2076 |
msgid "Upload Image"
|
2077 |
msgstr ""
|
2078 |
|
2108 |
#: includes/class-frontend.php:1021
|
2109 |
#: pro/includes/fields/class-file-upload.php:383
|
2110 |
#: pro/includes/fields/class-file-upload.php:399
|
2111 |
+
#: pro/includes/fields/class-file-upload.php:417 pro/wpforms-pro.php:192
|
2112 |
msgid "File type is not allowed."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: includes/class-frontend.php:1022 pro/wpforms-pro.php:198
|
2116 |
msgid "File exceeds max size allowed."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: includes/class-frontend.php:1023 pro/wpforms-pro.php:204
|
2120 |
msgid "Please enter time in 12-hour AM/PM format (eg 8:45 AM)."
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: includes/class-frontend.php:1024 pro/wpforms-pro.php:210
|
2124 |
msgid "Please enter time in 24-hour format (eg 22:45)."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
#: includes/class-frontend.php:1025
|
2128 |
+
#: pro/includes/fields/class-payment-total.php:208 pro/wpforms-pro.php:216
|
2129 |
msgid "Payment is required."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: includes/class-frontend.php:1026 pro/wpforms-pro.php:222
|
2133 |
msgid "Please enter a valid credit card number."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#. translators: %s - URL to a non-amp version of a page with the form.
|
2137 |
+
#: includes/class-frontend.php:1133
|
2138 |
msgid "<a href=\"%s\">Go to the full page</a> to view and submit the form."
|
2139 |
msgstr ""
|
2140 |
|
2188 |
#. translators: %d - field ID
|
2189 |
#. translators: %d - field ID.
|
2190 |
#. translators: %d - field ID.
|
2191 |
+
#: includes/class-preview.php:193 includes/emails/class-emails.php:515
|
2192 |
+
#: includes/emails/class-emails.php:557
|
2193 |
#: pro/includes/admin/entries/class-entries-single.php:543
|
2194 |
msgid "Field ID #%d"
|
2195 |
msgstr ""
|
2264 |
|
2265 |
#. translators: %s - form name.
|
2266 |
#: includes/class-process.php:396 lite/wpforms-lite.php:54
|
2267 |
+
#: pro/wpforms-pro.php:450
|
2268 |
msgid "New %s Entry"
|
2269 |
msgstr ""
|
2270 |
|
2293 |
msgstr ""
|
2294 |
|
2295 |
#: includes/class-smart-tags.php:42
|
2296 |
+
#: pro/includes/admin/entries/class-entries-export.php:206
|
2297 |
#: pro/includes/admin/entries/class-entries-list-table.php:165
|
2298 |
#: pro/includes/fields/class-date-time.php:72
|
2299 |
#: pro/includes/fields/class-date-time.php:129
|
2405 |
"reached."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: includes/emails/class-emails.php:493
|
2409 |
+
#: pro/includes/fields/class-page-break.php:25
|
2410 |
+
#: pro/includes/fields/class-page-break.php:528
|
2411 |
+
msgid "Page Break"
|
2412 |
+
msgstr ""
|
2413 |
+
|
2414 |
+
#: includes/emails/class-emails.php:509 includes/emails/class-emails.php:551
|
2415 |
+
#: includes/fields/class-base.php:973 includes/fields/class-select.php:200
|
2416 |
msgid "(empty)"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: includes/emails/class-emails.php:569
|
2420 |
msgid "An empty form was submitted."
|
2421 |
msgstr ""
|
2422 |
|
2457 |
msgid "Code"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: includes/fields/class-base.php:363
|
2461 |
msgid "Choices"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/fields/class-base.php:383 includes/fields/class-base.php:499
|
2465 |
msgid "Add choices for the form field."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
#. translators: %1$s - source name; %2$s - type name.
|
2469 |
+
#: includes/fields/class-base.php:461
|
2470 |
msgid "Choices are dynamically populated from the %1$s %2$s."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: includes/fields/class-base.php:498
|
2474 |
msgid "Items"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: includes/fields/class-base.php:576
|
2478 |
msgid ""
|
2479 |
"Images are not cropped or resized. For best results, they should be the same "
|
2480 |
"size and 250x250 pixels or smaller."
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: includes/fields/class-base.php:586
|
2484 |
msgid "Use image choices"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: includes/fields/class-base.php:587
|
2488 |
msgid "Check this option to enable using images with the choices."
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: includes/fields/class-base.php:615
|
2492 |
msgid "Image Choice Style"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: includes/fields/class-base.php:616
|
2496 |
msgid "Select the style for the image choices."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/fields/class-base.php:629
|
2500 |
msgid "Modern"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: includes/fields/class-base.php:630
|
2504 |
msgid "Classic"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: includes/fields/class-base.php:631
|
2508 |
#: pro/includes/fields/class-page-break.php:287
|
2509 |
msgid "None"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: includes/fields/class-base.php:658
|
2513 |
msgid "Enter text for the default form field value."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: includes/fields/class-base.php:660 includes/fields/class-name.php:283
|
2517 |
#: includes/fields/class-name.php:298 includes/fields/class-name.php:313
|
2518 |
#: includes/fields/class-name.php:328 pro/includes/fields/class-address.php:336
|
2519 |
#: pro/includes/fields/class-address.php:355
|
2524 |
msgid "Default Value"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: includes/fields/class-base.php:670
|
2528 |
msgid "Select the default form field size."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: includes/fields/class-base.php:672 pro/includes/fields/class-rating.php:256
|
2532 |
msgid "Small"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: includes/fields/class-base.php:673 pro/includes/fields/class-rating.php:257
|
2536 |
msgid "Medium"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: includes/fields/class-base.php:674 pro/includes/fields/class-rating.php:258
|
2540 |
msgid "Large"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: includes/fields/class-base.php:676
|
2544 |
msgid "Field Size"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: includes/fields/class-base.php:689
|
2548 |
msgid "Advanced Options"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: includes/fields/class-base.php:700
|
2552 |
msgid "Enter text for the form field placeholder."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: includes/fields/class-base.php:701
|
2556 |
msgid "Placeholder Text"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: includes/fields/class-base.php:711
|
2560 |
msgid ""
|
2561 |
"Enter CSS class names for the form field container. Class names should be "
|
2562 |
"separated with spaces."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: includes/fields/class-base.php:716
|
2566 |
msgid "CSS Classes"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: includes/fields/class-base.php:725
|
2570 |
msgid "Check this option to hide the form field label."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: includes/fields/class-base.php:727
|
2574 |
msgid "Hide Label"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: includes/fields/class-base.php:735
|
2578 |
msgid "Check this option to hide the form field sub-label."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: includes/fields/class-base.php:737
|
2582 |
msgid "Hide Sub-Labels"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: includes/fields/class-base.php:745
|
2586 |
msgid "Select the layout for displaying field choices."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: includes/fields/class-base.php:747
|
2590 |
msgid "One Column"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: includes/fields/class-base.php:748
|
2594 |
msgid "Two Columns"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: includes/fields/class-base.php:749
|
2598 |
msgid "Three Columns"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: includes/fields/class-base.php:750
|
2602 |
msgid "Inline"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: includes/fields/class-base.php:752
|
2606 |
msgid "Choice Layout"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: includes/fields/class-base.php:761
|
2610 |
msgid "Select auto-populate method to use."
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: includes/fields/class-base.php:764 includes/fields/class-base.php:785
|
2614 |
msgid "Post Type"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: includes/fields/class-base.php:765 includes/fields/class-base.php:796
|
2618 |
msgid "Taxonomy"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: includes/fields/class-base.php:767
|
2622 |
msgid "Dynamic Choices"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
#. translators: %s - dynamic source type name.
|
2626 |
+
#: includes/fields/class-base.php:807
|
2627 |
msgid "Select %s to use for auto-populating field choices."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
#. translators: %s - dynamic source type name.
|
2631 |
+
#: includes/fields/class-base.php:809
|
2632 |
msgid "Dynamic %s Source"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
#. translators: %d - total amount of choices.
|
2636 |
+
#: includes/fields/class-base.php:1064
|
2637 |
msgid ""
|
2638 |
"Showing the first 20 choices.<br> All %d choices will be displayed when "
|
2639 |
"viewing the form."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/fields/class-base.php:1100
|
2643 |
msgid "No form ID found"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: includes/fields/class-base.php:1105
|
2647 |
msgid "No field type found"
|
2648 |
msgstr ""
|
2649 |
|
2716 |
msgid "Enter text for the confirmation field placeholder."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: includes/fields/class-gdpr-checkbox.php:21
|
2720 |
+
msgid "GDPR Agreement"
|
2721 |
+
msgstr ""
|
2722 |
+
|
2723 |
+
#: includes/fields/class-gdpr-checkbox.php:27
|
2724 |
+
msgid ""
|
2725 |
+
"I consent to having this website store my submitted information so they can "
|
2726 |
+
"respond to my inquiry."
|
2727 |
+
msgstr ""
|
2728 |
+
|
2729 |
+
#: includes/fields/class-gdpr-checkbox.php:160
|
2730 |
+
msgid "Agreement"
|
2731 |
+
msgstr ""
|
2732 |
+
|
2733 |
#: includes/fields/class-name.php:82 includes/fields/class-name.php:377
|
2734 |
msgid "First"
|
2735 |
msgstr ""
|
2839 |
msgid "Paragraph Text"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: includes/functions.php:688
|
2843 |
msgid "Alabama"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: includes/functions.php:689
|
2847 |
msgid "Alaska"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: includes/functions.php:690
|
2851 |
msgid "Arizona"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: includes/functions.php:691
|
2855 |
msgid "Arkansas"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: includes/functions.php:692
|
2859 |
msgid "California"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: includes/functions.php:693
|
2863 |
msgid "Colorado"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: includes/functions.php:694
|
2867 |
msgid "Connecticut"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: includes/functions.php:695
|
2871 |
msgid "Delaware"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: includes/functions.php:696
|
2875 |
msgid "District of Columbia"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: includes/functions.php:697
|
2879 |
msgid "Florida"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: includes/functions.php:698
|
2883 |
msgctxt "US State"
|
2884 |
msgid "Georgia"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: includes/functions.php:699
|
2888 |
msgid "Hawaii"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: includes/functions.php:700
|
2892 |
msgid "Idaho"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: includes/functions.php:701
|
2896 |
msgid "Illinois"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: includes/functions.php:702
|
2900 |
msgid "Indiana"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: includes/functions.php:703
|
2904 |
msgid "Iowa"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: includes/functions.php:704
|
2908 |
msgid "Kansas"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: includes/functions.php:705
|
2912 |
msgid "Kentucky"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: includes/functions.php:706
|
2916 |
msgid "Louisiana"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: includes/functions.php:707
|
2920 |
msgid "Maine"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: includes/functions.php:708
|
2924 |
msgid "Maryland"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: includes/functions.php:709
|
2928 |
msgid "Massachusetts"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: includes/functions.php:710
|
2932 |
msgid "Michigan"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: includes/functions.php:711
|
2936 |
msgid "Minnesota"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: includes/functions.php:712
|
2940 |
msgid "Mississippi"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: includes/functions.php:713
|
2944 |
msgid "Missouri"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: includes/functions.php:714
|
2948 |
msgid "Montana"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: includes/functions.php:715
|
2952 |
msgid "Nebraska"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: includes/functions.php:716
|
2956 |
msgid "Nevada"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: includes/functions.php:717
|
2960 |
msgid "New Hampshire"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: includes/functions.php:718
|
2964 |
msgid "New Jersey"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: includes/functions.php:719
|
2968 |
msgid "New Mexico"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: includes/functions.php:720
|
2972 |
msgid "New York"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
+
#: includes/functions.php:721
|
2976 |
msgid "North Carolina"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: includes/functions.php:722
|
2980 |
msgid "North Dakota"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
+
#: includes/functions.php:723
|
2984 |
msgid "Ohio"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: includes/functions.php:724
|
2988 |
msgid "Oklahoma"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: includes/functions.php:725
|
2992 |
msgid "Oregon"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: includes/functions.php:726
|
2996 |
msgid "Pennsylvania"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: includes/functions.php:727
|
3000 |
msgid "Rhode Island"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: includes/functions.php:728
|
3004 |
msgid "South Carolina"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: includes/functions.php:729
|
3008 |
msgid "South Dakota"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: includes/functions.php:730
|
3012 |
msgid "Tennessee"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: includes/functions.php:731
|
3016 |
msgid "Texas"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: includes/functions.php:732
|
3020 |
msgid "Utah"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: includes/functions.php:733
|
3024 |
msgid "Vermont"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: includes/functions.php:734
|
3028 |
msgid "Virginia"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: includes/functions.php:735
|
3032 |
msgid "Washington"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: includes/functions.php:736
|
3036 |
msgid "West Virginia"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: includes/functions.php:737
|
3040 |
msgid "Wisconsin"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: includes/functions.php:738
|
3044 |
msgid "Wyoming"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: includes/functions.php:753
|
3048 |
msgid "Afghanistan"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: includes/functions.php:754
|
3052 |
msgid "Åland Islands"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: includes/functions.php:755
|
3056 |
msgid "Albania"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: includes/functions.php:756
|
3060 |
msgid "Algeria"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: includes/functions.php:757
|
3064 |
msgid "American Samoa"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: includes/functions.php:758
|
3068 |
msgid "Andorra"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: includes/functions.php:759
|
3072 |
msgid "Angola"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: includes/functions.php:760
|
3076 |
msgid "Anguilla"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: includes/functions.php:761
|
3080 |
msgid "Antarctica"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: includes/functions.php:762
|
3084 |
msgid "Antigua and Barbuda"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: includes/functions.php:763
|
3088 |
msgid "Argentina"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: includes/functions.php:764
|
3092 |
msgid "Armenia"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: includes/functions.php:765
|
3096 |
msgid "Aruba"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: includes/functions.php:766
|
3100 |
msgid "Australia"
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: includes/functions.php:767
|
3104 |
msgid "Austria"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: includes/functions.php:768
|
3108 |
msgid "Azerbaijan"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: includes/functions.php:769
|
3112 |
msgid "Bahamas"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: includes/functions.php:770
|
3116 |
msgid "Bahrain"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: includes/functions.php:771
|
3120 |
msgid "Bangladesh"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: includes/functions.php:772
|
3124 |
msgid "Barbados"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: includes/functions.php:773
|
3128 |
msgid "Belarus"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: includes/functions.php:774
|
3132 |
msgid "Belgium"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: includes/functions.php:775
|
3136 |
msgid "Belize"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: includes/functions.php:776
|
3140 |
msgid "Benin"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: includes/functions.php:777
|
3144 |
msgid "Bermuda"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: includes/functions.php:778
|
3148 |
msgid "Bhutan"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: includes/functions.php:779
|
3152 |
msgid "Bolivia (Plurinational State of)"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
#: includes/functions.php:780
|
3156 |
msgid "Bosnia and Herzegovina"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: includes/functions.php:781
|
3160 |
msgid "Botswana"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: includes/functions.php:782
|
3164 |
msgid "Bouvet Island"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: includes/functions.php:783
|
3168 |
msgid "Brazil"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: includes/functions.php:784
|
3172 |
msgid "British Indian Ocean Territory"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: includes/functions.php:785
|
3176 |
msgid "Brunei Darussalam"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: includes/functions.php:786
|
3180 |
msgid "Bulgaria"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: includes/functions.php:787
|
3184 |
msgid "Burkina Faso"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
+
#: includes/functions.php:788
|
3188 |
msgid "Burundi"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: includes/functions.php:789
|
3192 |
msgid "Cabo Verde"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: includes/functions.php:790
|
3196 |
msgid "Cambodia"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: includes/functions.php:791
|
3200 |
msgid "Cameroon"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: includes/functions.php:792
|
3204 |
msgid "Canada"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: includes/functions.php:793
|
3208 |
msgid "Cayman Islands"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: includes/functions.php:794
|
3212 |
msgid "Central African Republic"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: includes/functions.php:795
|
3216 |
msgid "Chad"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: includes/functions.php:796
|
3220 |
msgid "Chile"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: includes/functions.php:797
|
3224 |
msgid "China"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: includes/functions.php:798
|
3228 |
msgid "Christmas Island"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: includes/functions.php:799
|
3232 |
msgid "Cocos (Keeling) Islands"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: includes/functions.php:800
|
3236 |
msgid "Colombia"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: includes/functions.php:801
|
3240 |
msgid "Comoros"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: includes/functions.php:802
|
3244 |
msgid "Congo"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: includes/functions.php:803
|
3248 |
msgid "Congo (Democratic Republic of the)"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: includes/functions.php:804
|
3252 |
msgid "Cook Islands"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: includes/functions.php:805
|
3256 |
msgid "Costa Rica"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: includes/functions.php:806
|
3260 |
msgid "Côte d'Ivoire"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/functions.php:807
|
3264 |
msgid "Croatia"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: includes/functions.php:808
|
3268 |
msgid "Cuba"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: includes/functions.php:809
|
3272 |
msgid "Curaçao"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: includes/functions.php:810
|
3276 |
msgid "Cyprus"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: includes/functions.php:811
|
3280 |
msgid "Czech Republic"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/functions.php:812
|
3284 |
msgid "Denmark"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: includes/functions.php:813
|
3288 |
msgid "Djibouti"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: includes/functions.php:814
|
3292 |
msgid "Dominica"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: includes/functions.php:815
|
3296 |
msgid "Dominican Republic"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/functions.php:816
|
3300 |
msgid "Ecuador"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/functions.php:817
|
3304 |
msgid "Egypt"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: includes/functions.php:818
|
3308 |
msgid "El Salvador"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: includes/functions.php:819
|
3312 |
msgid "Equatorial Guinea"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: includes/functions.php:820
|
3316 |
msgid "Eritrea"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: includes/functions.php:821
|
3320 |
msgid "Estonia"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: includes/functions.php:822
|
3324 |
msgid "Ethiopia"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: includes/functions.php:823
|
3328 |
msgid "Falkland Islands (Malvinas)"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: includes/functions.php:824
|
3332 |
msgid "Faroe Islands"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: includes/functions.php:825
|
3336 |
msgid "Fiji"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: includes/functions.php:826
|
3340 |
msgid "Finland"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: includes/functions.php:827
|
3344 |
msgid "France"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: includes/functions.php:828
|
3348 |
msgid "French Guiana"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: includes/functions.php:829
|
3352 |
msgid "French Polynesia"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: includes/functions.php:830
|
3356 |
msgid "French Southern Territories"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: includes/functions.php:831
|
3360 |
msgid "Gabon"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: includes/functions.php:832
|
3364 |
msgid "Gambia"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: includes/functions.php:833
|
3368 |
msgctxt "Country"
|
3369 |
msgid "Georgia"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: includes/functions.php:834
|
3373 |
msgid "Germany"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: includes/functions.php:835
|
3377 |
msgid "Ghana"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: includes/functions.php:836
|
3381 |
msgid "Gibraltar"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: includes/functions.php:837
|
3385 |
msgid "Greece"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: includes/functions.php:838
|
3389 |
msgid "Greenland"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: includes/functions.php:839
|
3393 |
msgid "Grenada"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: includes/functions.php:840
|
3397 |
msgid "Guadeloupe"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: includes/functions.php:841
|
3401 |
msgid "Guam"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: includes/functions.php:842
|
3405 |
msgid "Guatemala"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: includes/functions.php:843
|
3409 |
msgid "Guernsey"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: includes/functions.php:844
|
3413 |
msgid "Guinea"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: includes/functions.php:845
|
3417 |
msgid "Guinea-Bissau"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: includes/functions.php:846
|
3421 |
msgid "Guyana"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: includes/functions.php:847
|
3425 |
msgid "Haiti"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: includes/functions.php:848
|
3429 |
msgid "Heard Island and McDonald Islands"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: includes/functions.php:849
|
3433 |
msgid "Honduras"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: includes/functions.php:850
|
3437 |
msgid "Hong Kong"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: includes/functions.php:851
|
3441 |
msgid "Hungary"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: includes/functions.php:852
|
3445 |
msgid "Iceland"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: includes/functions.php:853
|
3449 |
msgid "India"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: includes/functions.php:854
|
3453 |
msgid "Indonesia"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: includes/functions.php:855
|
3457 |
msgid "Iran (Islamic Republic of)"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: includes/functions.php:856
|
3461 |
msgid "Iraq"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: includes/functions.php:857
|
3465 |
msgid "Ireland (Republic of)"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: includes/functions.php:858
|
3469 |
msgid "Isle of Man"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: includes/functions.php:859
|
3473 |
msgid "Israel"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: includes/functions.php:860
|
3477 |
msgid "Italy"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: includes/functions.php:861
|
3481 |
msgid "Jamaica"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: includes/functions.php:862
|
3485 |
msgid "Japan"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: includes/functions.php:863
|
3489 |
msgid "Jersey"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: includes/functions.php:864
|
3493 |
msgid "Jordan"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: includes/functions.php:865
|
3497 |
msgid "Kazakhstan"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: includes/functions.php:866
|
3501 |
msgid "Kenya"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: includes/functions.php:867
|
3505 |
msgid "Kiribati"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: includes/functions.php:868
|
3509 |
msgid "Korea (Democratic People's Republic of)"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: includes/functions.php:869
|
3513 |
msgid "Korea (Republic of)"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: includes/functions.php:870
|
3517 |
msgid "Kuwait"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: includes/functions.php:871
|
3521 |
msgid "Kyrgyzstan"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: includes/functions.php:872
|
3525 |
msgid "Lao People's Democratic Republic"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: includes/functions.php:873
|
3529 |
msgid "Latvia"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: includes/functions.php:874
|
3533 |
msgid "Lebanon"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: includes/functions.php:875
|
3537 |
msgid "Lesotho"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: includes/functions.php:876
|
3541 |
msgid "Liberia"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: includes/functions.php:877
|
3545 |
msgid "Libya"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: includes/functions.php:878
|
3549 |
msgid "Liechtenstein"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: includes/functions.php:879
|
3553 |
msgid "Lithuania"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: includes/functions.php:880
|
3557 |
msgid "Luxembourg"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: includes/functions.php:881
|
3561 |
msgid "Macao"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: includes/functions.php:882
|
3565 |
msgid "Macedonia (Republic of)"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: includes/functions.php:883
|
3569 |
msgid "Madagascar"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: includes/functions.php:884
|
3573 |
msgid "Malawi"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: includes/functions.php:885
|
3577 |
msgid "Malaysia"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: includes/functions.php:886
|
3581 |
msgid "Maldives"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: includes/functions.php:887
|
3585 |
msgid "Mali"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: includes/functions.php:888
|
3589 |
msgid "Malta"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: includes/functions.php:889
|
3593 |
msgid "Marshall Islands"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: includes/functions.php:890
|
3597 |
msgid "Martinique"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: includes/functions.php:891
|
3601 |
msgid "Mauritania"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: includes/functions.php:892
|
3605 |
msgid "Mauritius"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: includes/functions.php:893
|
3609 |
msgid "Mayotte"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: includes/functions.php:894
|
3613 |
msgid "Mexico"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: includes/functions.php:895
|
3617 |
msgid "Micronesia (Federated States of)"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: includes/functions.php:896
|
3621 |
msgid "Moldova (Republic of)"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: includes/functions.php:897
|
3625 |
msgid "Monaco"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: includes/functions.php:898
|
3629 |
msgid "Mongolia"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: includes/functions.php:899
|
3633 |
msgid "Montenegro"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: includes/functions.php:900
|
3637 |
msgid "Montserrat"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: includes/functions.php:901
|
3641 |
msgid "Morocco"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: includes/functions.php:902
|
3645 |
msgid "Mozambique"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: includes/functions.php:903
|
3649 |
msgid "Myanmar"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: includes/functions.php:904
|
3653 |
msgid "Namibia"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: includes/functions.php:905
|
3657 |
msgid "Nauru"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: includes/functions.php:906
|
3661 |
msgid "Nepal"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: includes/functions.php:907
|
3665 |
msgid "Netherlands"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: includes/functions.php:908
|
3669 |
msgid "New Caledonia"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: includes/functions.php:909
|
3673 |
msgid "New Zealand"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: includes/functions.php:910
|
3677 |
msgid "Nicaragua"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: includes/functions.php:911
|
3681 |
msgid "Niger"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: includes/functions.php:912
|
3685 |
msgid "Nigeria"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: includes/functions.php:913
|
3689 |
msgid "Niue"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: includes/functions.php:914
|
3693 |
msgid "Norfolk Island"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: includes/functions.php:915
|
3697 |
msgid "Northern Mariana Islands"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: includes/functions.php:916
|
3701 |
msgid "Norway"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: includes/functions.php:917
|
3705 |
msgid "Oman"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: includes/functions.php:918
|
3709 |
msgid "Pakistan"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: includes/functions.php:919
|
3713 |
msgid "Palau"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: includes/functions.php:920
|
3717 |
msgid "Palestine (State of)"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: includes/functions.php:921
|
3721 |
msgid "Panama"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: includes/functions.php:922
|
3725 |
msgid "Papua New Guinea"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: includes/functions.php:923
|
3729 |
msgid "Paraguay"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: includes/functions.php:924
|
3733 |
msgid "Peru"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: includes/functions.php:925
|
3737 |
msgid "Philippines"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: includes/functions.php:926
|
3741 |
msgid "Pitcairn"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: includes/functions.php:927
|
3745 |
msgid "Poland"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: includes/functions.php:928
|
3749 |
msgid "Portugal"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: includes/functions.php:929
|
3753 |
msgid "Puerto Rico"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: includes/functions.php:930
|
3757 |
msgid "Qatar"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: includes/functions.php:931
|
3761 |
msgid "Réunion"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: includes/functions.php:932
|
3765 |
msgid "Romania"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: includes/functions.php:933
|
3769 |
msgid "Russian Federation"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: includes/functions.php:934
|
3773 |
msgid "Rwanda"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: includes/functions.php:935
|
3777 |
msgid "Saint Barthélemy"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: includes/functions.php:936
|
3781 |
msgid "Saint Helena, Ascension and Tristan da Cunha"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: includes/functions.php:937
|
3785 |
msgid "Saint Kitts and Nevis"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: includes/functions.php:938
|
3789 |
msgid "Saint Lucia"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: includes/functions.php:939
|
3793 |
msgid "Saint Martin (French part)"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: includes/functions.php:940
|
3797 |
msgid "Saint Pierre and Miquelon"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: includes/functions.php:941
|
3801 |
msgid "Saint Vincent and the Grenadines"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: includes/functions.php:942
|
3805 |
msgid "Samoa"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: includes/functions.php:943
|
3809 |
msgid "San Marino"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: includes/functions.php:944
|
3813 |
msgid "Sao Tome and Principe"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: includes/functions.php:945
|
3817 |
msgid "Saudi Arabia"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: includes/functions.php:946
|
3821 |
msgid "Senegal"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: includes/functions.php:947
|
3825 |
msgid "Serbia"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: includes/functions.php:948
|
3829 |
msgid "Seychelles"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: includes/functions.php:949
|
3833 |
msgid "Sierra Leone"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: includes/functions.php:950
|
3837 |
msgid "Singapore"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: includes/functions.php:951
|
3841 |
msgid "Sint Maarten (Dutch part)"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: includes/functions.php:952
|
3845 |
msgid "Slovakia"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: includes/functions.php:953
|
3849 |
msgid "Slovenia"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: includes/functions.php:954
|
3853 |
msgid "Solomon Islands"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: includes/functions.php:955
|
3857 |
msgid "Somalia"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: includes/functions.php:956
|
3861 |
msgid "South Africa"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: includes/functions.php:957
|
3865 |
msgid "South Georgia and the South Sandwich Islands"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: includes/functions.php:958
|
3869 |
msgid "South Sudan"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: includes/functions.php:959
|
3873 |
msgid "Spain"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: includes/functions.php:960
|
3877 |
msgid "Sri Lanka"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: includes/functions.php:961
|
3881 |
msgid "Sudan"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: includes/functions.php:962
|
3885 |
msgid "Suriname"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: includes/functions.php:963
|
3889 |
msgid "Svalbard and Jan Mayen"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: includes/functions.php:964
|
3893 |
msgid "Swaziland"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: includes/functions.php:965
|
3897 |
msgid "Sweden"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: includes/functions.php:966
|
3901 |
msgid "Switzerland"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: includes/functions.php:967
|
3905 |
msgid "Syrian Arab Republic"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: includes/functions.php:968
|
3909 |
msgid "Taiwan, Province of China"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: includes/functions.php:969
|
3913 |
msgid "Tajikistan"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: includes/functions.php:970
|
3917 |
msgid "Tanzania (United Republic of)"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: includes/functions.php:971
|
3921 |
msgid "Thailand"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: includes/functions.php:972
|
3925 |
msgid "Timor-Leste"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: includes/functions.php:973
|
3929 |
msgid "Togo"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: includes/functions.php:974
|
3933 |
msgid "Tokelau"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: includes/functions.php:975
|
3937 |
msgid "Tonga"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: includes/functions.php:976
|
3941 |
msgid "Trinidad and Tobago"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: includes/functions.php:977
|
3945 |
msgid "Tunisia"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: includes/functions.php:978
|
3949 |
msgid "Turkey"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: includes/functions.php:979
|
3953 |
msgid "Turkmenistan"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: includes/functions.php:980
|
3957 |
msgid "Turks and Caicos Islands"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: includes/functions.php:981
|
3961 |
msgid "Tuvalu"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: includes/functions.php:982
|
3965 |
msgid "Uganda"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: includes/functions.php:983
|
3969 |
msgid "Ukraine"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: includes/functions.php:984
|
3973 |
msgid "United Arab Emirates"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: includes/functions.php:985
|
3977 |
msgid "United Kingdom of Great Britain and Northern Ireland"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: includes/functions.php:986
|
3981 |
msgid "United States of America"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: includes/functions.php:987
|
3985 |
msgid "United States Minor Outlying Islands"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: includes/functions.php:988
|
3989 |
msgid "Uruguay"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: includes/functions.php:989
|
3993 |
msgid "Uzbekistan"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: includes/functions.php:990
|
3997 |
msgid "Vanuatu"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: includes/functions.php:991
|
4001 |
msgid "Vatican City State"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: includes/functions.php:992
|
4005 |
msgid "Venezuela (Bolivarian Republic of)"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: includes/functions.php:993
|
4009 |
msgid "Viet Nam"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: includes/functions.php:994
|
4013 |
msgid "Virgin Islands (British)"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: includes/functions.php:995
|
4017 |
msgid "Virgin Islands (U.S.)"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: includes/functions.php:996
|
4021 |
msgid "Wallis and Futuna"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: includes/functions.php:997
|
4025 |
msgid "Western Sahara"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: includes/functions.php:998
|
4029 |
msgid "Yemen"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: includes/functions.php:999
|
4033 |
msgid "Zambia"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: includes/functions.php:1000
|
4037 |
msgid "Zimbabwe"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: includes/functions.php:1015
|
4041 |
msgid "January"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: includes/functions.php:1016
|
4045 |
msgid "February"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: includes/functions.php:1017
|
4049 |
msgid "March"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: includes/functions.php:1018
|
4053 |
msgid "April"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: includes/functions.php:1019
|
4057 |
msgid "May"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: includes/functions.php:1020
|
4061 |
msgid "June"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: includes/functions.php:1021
|
4065 |
msgid "July"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: includes/functions.php:1022
|
4069 |
msgid "August"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: includes/functions.php:1023
|
4073 |
msgid "September"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: includes/functions.php:1024
|
4077 |
msgid "October"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: includes/functions.php:1025
|
4081 |
msgid "November"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: includes/functions.php:1026
|
4085 |
msgid "December"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: includes/functions.php:1041
|
4089 |
msgid "Sunday"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: includes/functions.php:1042
|
4093 |
msgid "Monday"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: includes/functions.php:1043
|
4097 |
msgid "Tuesday"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: includes/functions.php:1044
|
4101 |
msgid "Wednesday"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: includes/functions.php:1045
|
4105 |
msgid "Thursday"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: includes/functions.php:1046
|
4109 |
msgid "Friday"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: includes/functions.php:1047
|
4113 |
msgid "Saturday"
|
4114 |
msgstr ""
|
4115 |
|
4629 |
"more awesome features."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: lite/wpforms-lite.php:119 pro/wpforms-pro.php:518
|
4633 |
msgid "Send To Email Address"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: lite/wpforms-lite.php:122 pro/wpforms-pro.php:521
|
4637 |
msgid ""
|
4638 |
"Enter the email address to receive form entry notifications. For multiple "
|
4639 |
"notifications, separate email addresses with a comma."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: lite/wpforms-lite.php:138 pro/wpforms-pro.php:537
|
4643 |
msgid "CC"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: lite/wpforms-lite.php:154 pro/wpforms-pro.php:553
|
4647 |
msgid "Email Subject"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: lite/wpforms-lite.php:170 pro/wpforms-pro.php:569
|
4651 |
msgid "From Name"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: lite/wpforms-lite.php:186 pro/wpforms-pro.php:585
|
4655 |
msgid "From Email"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: lite/wpforms-lite.php:202 pro/wpforms-pro.php:601
|
4659 |
msgid "Reply-To"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#. translators: %s - {all_fields} Smart Tag.
|
4663 |
#. translators: %s - all fields smart tag.
|
4664 |
+
#: lite/wpforms-lite.php:230 pro/wpforms-pro.php:627
|
4665 |
msgid "To display all form fields, use the %s Smart Tag."
|
4666 |
msgstr ""
|
4667 |
|
4712 |
|
4713 |
#: lite/wpforms-lite.php:436
|
4714 |
#: pro/includes/admin/builder/panels/class-payments.php:22
|
4715 |
+
#: pro/wpforms-pro.php:157 pro/wpforms-pro.php:228
|
4716 |
msgid "Payments"
|
4717 |
msgstr ""
|
4718 |
|
4799 |
msgid "Could not deactivate addon. Please deactivate from the Plugins page."
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: pro/includes/admin/ajax-actions.php:46
|
4803 |
msgid "Addon activated."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: pro/includes/admin/ajax-actions.php:50
|
4807 |
msgid "Could not activate addon. Please activate from the Plugins page."
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: pro/includes/admin/ajax-actions.php:119
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4811 |
msgid "Addon installed."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: pro/includes/admin/ajax-actions.php:232
|
4815 |
+
#: pro/includes/admin/ajax-actions.php:275
|
4816 |
msgid "Please enter a license key."
|
4817 |
msgstr ""
|
4818 |
|
4996 |
msgid "No updates are currently needed."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: pro/includes/admin/entries/class-entries-export.php:207
|
5000 |
msgid "Date GMT"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: pro/includes/admin/entries/class-entries-export.php:208
|
5004 |
msgid "ID"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
+
#: pro/includes/admin/entries/class-entries-export.php:344
|
5008 |
msgid "You do not have permission to export entries."
|
5009 |
msgstr ""
|
5010 |
|
5479 |
msgstr ""
|
5480 |
|
5481 |
#: pro/includes/fields/class-date-time.php:167
|
5482 |
+
msgid "30 minutes"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
#: pro/includes/fields/class-date-time.php:168
|
5590 |
msgid "Contents of this field are not displayed in the admin area."
|
5591 |
msgstr ""
|
5592 |
|
|
|
|
|
|
|
|
|
|
|
5593 |
#. translators: %1$s - current step in multi-page form; %2$d - total number of
|
5594 |
#. pages.
|
5595 |
#: pro/includes/fields/class-page-break.php:145
|
5709 |
msgid "Check this option to ask users to provide their password twice."
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: pro/includes/fields/class-payment-credit-card.php:22 pro/wpforms-pro.php:220
|
5713 |
msgid "Credit Card"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: pro/includes/fields/class-payment-credit-card.php:79
|
5717 |
+
#: pro/includes/fields/class-payment-credit-card.php:331
|
5718 |
msgid "Card Number"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: pro/includes/fields/class-payment-credit-card.php:102
|
5722 |
+
#: pro/includes/fields/class-payment-credit-card.php:336
|
5723 |
msgid "Security Code"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: pro/includes/fields/class-payment-credit-card.php:123
|
5727 |
+
#: pro/includes/fields/class-payment-credit-card.php:343
|
5728 |
msgid "Name on Card"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: pro/includes/fields/class-payment-credit-card.php:137
|
5732 |
+
#: pro/includes/fields/class-payment-credit-card.php:348
|
5733 |
msgid "Expiration"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: pro/includes/fields/class-payment-credit-card.php:269
|
5737 |
msgid "Card Number Placeholder Text"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: pro/includes/fields/class-payment-credit-card.php:278
|
5741 |
msgid "Security Code Placeholder Text"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: pro/includes/fields/class-payment-credit-card.php:287
|
5745 |
msgid "Name on Card Placeholder Text"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: pro/includes/fields/class-payment-credit-card.php:391
|
5749 |
msgid ""
|
5750 |
"This page is insecure. Credit Card field should be used for testing purposes "
|
5751 |
"only."
|
6024 |
msgid "Request"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: pro/wpforms-pro.php:190
|
6028 |
msgid "File Extension"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: pro/wpforms-pro.php:196
|
6032 |
msgid "File Size"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: pro/wpforms-pro.php:202
|
6036 |
msgid "Time (12 hour)"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: pro/wpforms-pro.php:208
|
6040 |
msgid "Time (24 hour)"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: pro/wpforms-pro.php:214
|
6044 |
msgid "Payment Required"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: pro/wpforms-pro.php:235
|
6048 |
msgid "Currency"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: pro/wpforms-pro.php:249
|
6052 |
+
msgid "Disable User Cookies"
|
6053 |
+
msgstr ""
|
6054 |
+
|
6055 |
+
#: pro/wpforms-pro.php:250
|
6056 |
+
msgid ""
|
6057 |
+
"Check this to disable user tracking cookies (UUIDs). This will disable the "
|
6058 |
+
"Related Entries feature and the Form Abandonment/Geolocation addons."
|
6059 |
+
msgstr ""
|
6060 |
+
|
6061 |
+
#: pro/wpforms-pro.php:255
|
6062 |
+
msgid "Disable User Details"
|
6063 |
+
msgstr ""
|
6064 |
+
|
6065 |
+
#: pro/wpforms-pro.php:256
|
6066 |
+
msgid ""
|
6067 |
+
"Check this to disable storing the IP address and User Agent on all forms. If "
|
6068 |
+
"unchecked this can be managed on a form by form basis inside the form "
|
6069 |
+
"settings."
|
6070 |
+
msgstr ""
|
6071 |
+
|
6072 |
+
#: pro/wpforms-pro.php:363
|
6073 |
msgid "Disable storing entry information in WordPress"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: pro/wpforms-pro.php:375
|
6077 |
+
msgid "Disable storing user details (IP address and user agent)"
|
6078 |
+
msgstr ""
|
6079 |
+
|
6080 |
+
#: pro/wpforms-pro.php:459
|
6081 |
msgid "Add New Notification"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: pro/wpforms-pro.php:640
|
6085 |
msgid "Send"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
#: pro/wpforms-pro.php:641
|
6089 |
msgid "Don't send"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: pro/wpforms-pro.php:643
|
6093 |
msgid "this notification if"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
+
#: pro/wpforms-pro.php:644
|
6097 |
msgid "Email notifications"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
#. translators: %s - admin area Addons page URL.
|
6101 |
+
#: pro/wpforms-pro.php:653
|
6102 |
msgid ""
|
6103 |
"Install the <a href=\"%s\">Conditional Logic addon</a> to enable conditional "
|
6104 |
"logic for Email Notifications."
|
6105 |
msgstr ""
|
6106 |
|
6107 |
#. translators: %s - WPForms.com announcement page URL.
|
6108 |
+
#: pro/wpforms-pro.php:733
|
6109 |
msgid ""
|
6110 |
"Conditional logic functionality is now included in the core WPForms plugin! "
|
6111 |
"The WPForms Conditional Logic addon can be removed without affecting your "
|
6117 |
msgid "Please deactivate WPForms Lite before activating WPForms."
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#. #-#-#-#-# wpforms.pot (WPForms 1.4.6) #-#-#-#-#
|
6121 |
#. Plugin URI of the plugin/theme
|
6122 |
+
#. #-#-#-#-# wpforms.pot (WPForms 1.4.6) #-#-#-#-#
|
6123 |
#. Author URI of the plugin/theme
|
6124 |
msgid "https://wpforms.com"
|
6125 |
msgstr ""
|
readme.txt
CHANGED
@@ -211,6 +211,15 @@ Syed Balkhi
|
|
211 |
|
212 |
== Changelog ==
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
= 1.4.5.3 =
|
215 |
- Changed: Use minified admin assets when appropriate.
|
216 |
- Changed: Show helpful doc link in form embed modal.
|
211 |
|
212 |
== Changelog ==
|
213 |
|
214 |
+
= 1.4.6 =
|
215 |
+
- Added: GDPR Enhancements plugin setting [doc](https://wpforms.com/how-to-create-gdpr-compliant-forms/).
|
216 |
+
- Added: GDPR Enhancement: User Agreement form field.
|
217 |
+
- Changed: PHP warning that alerts users support for PHP 5.4 and below will be dropped this summer.
|
218 |
+
- Changed: Spam logging, to improve performance.
|
219 |
+
- Fixed: Typo in base form CSS.
|
220 |
+
- Fixed: Stripping HTML from the checkbox and mulitple choice labels in the form builder.
|
221 |
+
- Fixed: Form builder icon visibility when field labels are hidden.
|
222 |
+
|
223 |
= 1.4.5.3 =
|
224 |
- Changed: Use minified admin assets when appropriate.
|
225 |
- Changed: Show helpful doc link in form embed modal.
|
wpforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
-
* Version: 1.4.
|
9 |
* Text Domain: wpforms
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -92,7 +92,7 @@ if ( class_exists( 'WPForms' ) ) {
|
|
92 |
*
|
93 |
* @var string
|
94 |
*/
|
95 |
-
public $version = '1.4.
|
96 |
|
97 |
/**
|
98 |
* The form data handler instance.
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
+
* Version: 1.4.6
|
9 |
* Text Domain: wpforms
|
10 |
* Domain Path: languages
|
11 |
*
|
92 |
*
|
93 |
* @var string
|
94 |
*/
|
95 |
+
public $version = '1.4.6';
|
96 |
|
97 |
/**
|
98 |
* The form data handler instance.
|