Version Description
- Improvement: When searching for specific choice in Dropdown part, a configurable "No results" message is shown if no choice is found.
- Improvement: Custom HTML ID of the form using "Form HTML ID" control can now be toggled by checking "Use custom HTML ID" control.
- Bugfix: Form ID used as a prefix for all selectors in Additional CSS section in Style tab was using ID of child element instead of parent.
- Bugfix: Number part was returning an error when 0 was submitted even if when it was in specified range of min and max value.
- Bugfix: Various fixes related to front-end and form builder UI styles.
Download this release
Release Info
Developer | thethemefoundry |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.9.6 |
Comparing to | |
See all releases |
Code changes from version 1.9.5 to 1.9.6
- core/assets/css/customize.css +15 -29
- core/assets/css/layout.css +5 -0
- core/assets/js/lib/happyforms-select.js +13 -6
- core/assets/js/parts/part-select.js +27 -1
- core/classes/class-form-email.php +3 -3
- core/classes/class-form-setup.php +39 -4
- core/classes/class-session.php +1 -1
- core/classes/parts/class-part-number.php +1 -1
- core/classes/parts/class-part-select.php +5 -1
- core/helpers/helper-form-templates.php +18 -2
- core/templates/partials/happyforms-select.php +4 -1
- core/templates/parts/customize-checkbox.php +2 -2
- core/templates/parts/customize-number.php +2 -2
- core/templates/parts/customize-radio.php +2 -2
- core/templates/parts/customize-select.php +8 -2
- happyforms.php +2 -2
- inc/assets/js/customize.js +3 -3
- inc/classes/class-happyforms.php +10 -13
- inc/classes/parts/class-part-legal-dummy.php +5 -5
- inc/classes/parts/class-part-narrative-dummy.php +4 -4
- inc/classes/parts/class-part-website-url-dummy.php +1 -1
- languages/happyforms.pot +328 -319
- readme.txt +13 -3
core/assets/css/customize.css
CHANGED
@@ -467,12 +467,17 @@ a.happyforms-form-part-remove:hover {
|
|
467 |
display: none;
|
468 |
}
|
469 |
|
|
|
|
|
|
|
|
|
470 |
.customize-control-group.happyforms-nested-settings {
|
471 |
display: none;
|
472 |
}
|
473 |
|
474 |
#customize-control-receive_email_alerts.checked ~ .happyforms-nested-settings[data-trigger=receive_email_alerts],
|
475 |
-
#customize-control-send_confirmation_email.checked ~ .happyforms-nested-settings[data-trigger=send_confirmation_email]
|
|
|
476 |
display: block;
|
477 |
}
|
478 |
|
@@ -926,6 +931,10 @@ ul.happyforms-parts-list li.happyforms-parts-list-item {
|
|
926 |
cursor: pointer;
|
927 |
}
|
928 |
|
|
|
|
|
|
|
|
|
929 |
ul.happyforms-parts-list li.happyforms-parts-list-item:first-child {
|
930 |
border-top: 1px solid #ddd;
|
931 |
}
|
@@ -1105,6 +1114,11 @@ ul.happyforms-parts-list li[data-part-type="payments_dummy"] .happyforms-parts-l
|
|
1105 |
background-image: url(../svg/icons/payment.svg);
|
1106 |
}
|
1107 |
|
|
|
|
|
|
|
|
|
|
|
1108 |
ul.happyforms-parts-list .happyforms-parts-list-item-title {
|
1109 |
padding: 0 0 5px;
|
1110 |
}
|
@@ -1154,26 +1168,6 @@ ul.happyforms-style-controls .customize-control {
|
|
1154 |
box-sizing: border-box;
|
1155 |
}
|
1156 |
|
1157 |
-
.happyforms-customize-controls-wrap--side-by-side {
|
1158 |
-
display: flex;
|
1159 |
-
justify-content: space-between;
|
1160 |
-
margin-top: -1em;
|
1161 |
-
margin-bottom: -1em;
|
1162 |
-
}
|
1163 |
-
|
1164 |
-
.happyforms-customize-controls-wrap--side-by-side > * {
|
1165 |
-
width: 47%;
|
1166 |
-
}
|
1167 |
-
|
1168 |
-
.happyforms-nested-settings.happyforms-customize-controls-wrap--side-by-side {
|
1169 |
-
margin-top: 0;
|
1170 |
-
margin-bottom: 0;
|
1171 |
-
}
|
1172 |
-
|
1173 |
-
.happyforms-nested-settings.happyforms-customize-controls-wrap--side-by-side p {
|
1174 |
-
margin: 0;
|
1175 |
-
}
|
1176 |
-
|
1177 |
/* Style view */
|
1178 |
.happyforms-stack-view.happyforms-style-view {
|
1179 |
padding: 0;
|
@@ -1394,14 +1388,6 @@ i.mce-i-happyforms_narrative_input:after {
|
|
1394 |
padding-bottom: 0;
|
1395 |
border-bottom: 0;
|
1396 |
}
|
1397 |
-
.happyforms-nested-settings > .happyforms-customize-controls-wrap--side-by-side,
|
1398 |
-
.happyforms-nested-settings > .happyforms-customize-controls-wrap--side-by-side p {
|
1399 |
-
margin-top: 0;
|
1400 |
-
margin-bottom: 0;
|
1401 |
-
}
|
1402 |
-
.happyforms-nested-settings.happyforms-customize-controls-wrap--side-by-side p {
|
1403 |
-
margin: 0;
|
1404 |
-
}
|
1405 |
|
1406 |
#customize-control-additional_css_divider + li {
|
1407 |
margin-bottom: 0;
|
467 |
display: none;
|
468 |
}
|
469 |
|
470 |
+
#customize-control-confirmation_email_content .wp-editor-tabs {
|
471 |
+
visibility: hidden;
|
472 |
+
}
|
473 |
+
|
474 |
.customize-control-group.happyforms-nested-settings {
|
475 |
display: none;
|
476 |
}
|
477 |
|
478 |
#customize-control-receive_email_alerts.checked ~ .happyforms-nested-settings[data-trigger=receive_email_alerts],
|
479 |
+
#customize-control-send_confirmation_email.checked ~ .happyforms-nested-settings[data-trigger=send_confirmation_email],
|
480 |
+
#customize-control-use_html_id.checked ~ .happyforms-nested-settings[data-trigger=use_html_id] {
|
481 |
display: block;
|
482 |
}
|
483 |
|
931 |
cursor: pointer;
|
932 |
}
|
933 |
|
934 |
+
ul.happyforms-parts-list li.happyforms-parts-list-item.hidden {
|
935 |
+
display: none;
|
936 |
+
}
|
937 |
+
|
938 |
ul.happyforms-parts-list li.happyforms-parts-list-item:first-child {
|
939 |
border-top: 1px solid #ddd;
|
940 |
}
|
1114 |
background-image: url(../svg/icons/payment.svg);
|
1115 |
}
|
1116 |
|
1117 |
+
ul.happyforms-parts-list li[data-part-type="signature_dummy"] .happyforms-parts-list-item-title:before {
|
1118 |
+
opacity: 0.5;
|
1119 |
+
background-image: url(../svg/icons/legal.svg);
|
1120 |
+
}
|
1121 |
+
|
1122 |
ul.happyforms-parts-list .happyforms-parts-list-item-title {
|
1123 |
padding: 0 0 5px;
|
1124 |
}
|
1168 |
box-sizing: border-box;
|
1169 |
}
|
1170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
/* Style view */
|
1172 |
.happyforms-stack-view.happyforms-style-view {
|
1173 |
padding: 0;
|
1388 |
padding-bottom: 0;
|
1389 |
border-bottom: 0;
|
1390 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1391 |
|
1392 |
#customize-control-additional_css_divider + li {
|
1393 |
margin-bottom: 0;
|
core/assets/css/layout.css
CHANGED
@@ -1127,6 +1127,11 @@ input[type=submit][disabled].happyforms-button--submit {
|
|
1127 |
color: #888888;
|
1128 |
}
|
1129 |
|
|
|
|
|
|
|
|
|
|
|
1130 |
.happyforms-custom-select-dropdown li.happyforms-custom-select-dropdown__item:hover,
|
1131 |
.happyforms-custom-select-dropdown li.happyforms-custom-select-dropdown__item.active {
|
1132 |
color: #000;
|
1127 |
color: #888888;
|
1128 |
}
|
1129 |
|
1130 |
+
.happyforms-custom-select-dropdown li.happyforms-custom-select-dropdown__not-found {
|
1131 |
+
display: none;
|
1132 |
+
cursor: default;
|
1133 |
+
}
|
1134 |
+
|
1135 |
.happyforms-custom-select-dropdown li.happyforms-custom-select-dropdown__item:hover,
|
1136 |
.happyforms-custom-select-dropdown li.happyforms-custom-select-dropdown__item.active {
|
1137 |
color: #000;
|
core/assets/js/lib/happyforms-select.js
CHANGED
@@ -9,6 +9,7 @@
|
|
9 |
this.$input = options.$input;
|
10 |
this.$select = options.$select;
|
11 |
this.$placeholder = $( 'li.happyforms-custom-select-dropdown__placeholder', this.$select );
|
|
|
12 |
this.searchable = options.searchable;
|
13 |
|
14 |
var autocompleteDefaults = {
|
@@ -22,7 +23,7 @@
|
|
22 |
};
|
23 |
|
24 |
this.autocompleteOptions = $.extend( {}, autocompleteDefaults, options.autocompleteOptions );
|
25 |
-
|
26 |
this.defaultValue = '';
|
27 |
this.defaultLabel = '';
|
28 |
this.placeholderText = this.$placeholder.text();
|
@@ -44,7 +45,7 @@
|
|
44 |
if ( '' === this.defaultLabel && '' === this.defaultValue && this.$placeholder.length ) {
|
45 |
this.defaultLabel = this.placeholderText;
|
46 |
}
|
47 |
-
|
48 |
this.$el.on( 'keyup keypress', this.handleKeyUp.bind( this ) );
|
49 |
this.$el.on( 'focus', this.handleFocus.bind( this ) );
|
50 |
this.$el.on( 'blur', this.handleBlur.bind( this ) );
|
@@ -120,7 +121,10 @@
|
|
120 |
e.stopPropagation();
|
121 |
|
122 |
var $li = $( e.target );
|
123 |
-
|
|
|
|
|
|
|
124 |
}
|
125 |
|
126 |
HappyFormsSelect.prototype.handleKeyUp = function( e ) {
|
@@ -142,7 +146,7 @@
|
|
142 |
this.setValue( $focusedItem.data('value').toString() );
|
143 |
}
|
144 |
break;
|
145 |
-
default:
|
146 |
if ('autocomplete' === this.searchable) {
|
147 |
var trigger = this.autocompleteOptions.trigger;
|
148 |
|
@@ -298,6 +302,8 @@
|
|
298 |
var $allItems = $( 'li.happyforms-dropdown-item', this.$select );
|
299 |
var foundItems = 0;
|
300 |
|
|
|
|
|
301 |
if ( value ) {
|
302 |
$allItems.hide();
|
303 |
|
@@ -317,9 +323,10 @@
|
|
317 |
}
|
318 |
|
319 |
if ( foundItems > 0 ) {
|
|
|
320 |
self.$select.show();
|
321 |
} else {
|
322 |
-
self.
|
323 |
}
|
324 |
} );
|
325 |
} else {
|
@@ -410,4 +417,4 @@
|
|
410 |
}
|
411 |
});
|
412 |
}
|
413 |
-
} )( jQuery );
|
9 |
this.$input = options.$input;
|
10 |
this.$select = options.$select;
|
11 |
this.$placeholder = $( 'li.happyforms-custom-select-dropdown__placeholder', this.$select );
|
12 |
+
this.$noResults = $( 'li.happyforms-custom-select-dropdown__not-found', this.$select );
|
13 |
this.searchable = options.searchable;
|
14 |
|
15 |
var autocompleteDefaults = {
|
23 |
};
|
24 |
|
25 |
this.autocompleteOptions = $.extend( {}, autocompleteDefaults, options.autocompleteOptions );
|
26 |
+
|
27 |
this.defaultValue = '';
|
28 |
this.defaultLabel = '';
|
29 |
this.placeholderText = this.$placeholder.text();
|
45 |
if ( '' === this.defaultLabel && '' === this.defaultValue && this.$placeholder.length ) {
|
46 |
this.defaultLabel = this.placeholderText;
|
47 |
}
|
48 |
+
|
49 |
this.$el.on( 'keyup keypress', this.handleKeyUp.bind( this ) );
|
50 |
this.$el.on( 'focus', this.handleFocus.bind( this ) );
|
51 |
this.$el.on( 'blur', this.handleBlur.bind( this ) );
|
121 |
e.stopPropagation();
|
122 |
|
123 |
var $li = $( e.target );
|
124 |
+
|
125 |
+
if ( $li.attr( 'data-value' ) ) {
|
126 |
+
this.setValue( $li.data('value').toString() );
|
127 |
+
}
|
128 |
}
|
129 |
|
130 |
HappyFormsSelect.prototype.handleKeyUp = function( e ) {
|
146 |
this.setValue( $focusedItem.data('value').toString() );
|
147 |
}
|
148 |
break;
|
149 |
+
default:
|
150 |
if ('autocomplete' === this.searchable) {
|
151 |
var trigger = this.autocompleteOptions.trigger;
|
152 |
|
302 |
var $allItems = $( 'li.happyforms-dropdown-item', this.$select );
|
303 |
var foundItems = 0;
|
304 |
|
305 |
+
self.$noResults.hide();
|
306 |
+
|
307 |
if ( value ) {
|
308 |
$allItems.hide();
|
309 |
|
323 |
}
|
324 |
|
325 |
if ( foundItems > 0 ) {
|
326 |
+
self.$noResults.hide();
|
327 |
self.$select.show();
|
328 |
} else {
|
329 |
+
self.$noResults.show();
|
330 |
}
|
331 |
} );
|
332 |
} else {
|
417 |
}
|
418 |
});
|
419 |
}
|
420 |
+
} )( jQuery );
|
core/assets/js/parts/part-select.js
CHANGED
@@ -144,6 +144,7 @@
|
|
144 |
this.listenTo( this.model, 'change:allow_search', this.onAllowSearchChange );
|
145 |
this.listenTo( this.model, 'change:placeholder', this.onPlaceholderChange );
|
146 |
this.listenTo( this.model, 'change:required', this.onRequiredChange );
|
|
|
147 |
this.listenTo( this.model.get( 'options' ), 'add', this.onOptionModelAdd );
|
148 |
this.listenTo( this.model.get( 'options' ), 'change', this.onOptionModelChange );
|
149 |
this.listenTo( this.model.get( 'options' ), 'remove', this.onOptionModelRemove );
|
@@ -313,6 +314,12 @@
|
|
313 |
},
|
314 |
|
315 |
onAllowSearchChange: function( model, value ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
this.model.fetchHtml( function( response ) {
|
317 |
var data = {
|
318 |
id: model.get( 'id' ),
|
@@ -403,6 +410,18 @@
|
|
403 |
$textarea.val( '' );
|
404 |
$( '.add-options', this.$el ).click();
|
405 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
} );
|
407 |
|
408 |
happyForms.previewer = _.extend( happyForms.previewer, {
|
@@ -449,7 +468,14 @@
|
|
449 |
|
450 |
$( 'input', $part ).attr( 'placeholder', options.label );
|
451 |
$( '.happyforms-custom-select-dropdown__placeholder', $part ).removeClass('preview-hidden').text( options.label );
|
452 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
} );
|
454 |
|
455 |
} ) ( jQuery, _, Backbone, wp.customize, _happyFormsSettings );
|
144 |
this.listenTo( this.model, 'change:allow_search', this.onAllowSearchChange );
|
145 |
this.listenTo( this.model, 'change:placeholder', this.onPlaceholderChange );
|
146 |
this.listenTo( this.model, 'change:required', this.onRequiredChange );
|
147 |
+
this.listenTo( this.model, 'change:no_results_label', this.onNoResultsLabelChange );
|
148 |
this.listenTo( this.model.get( 'options' ), 'add', this.onOptionModelAdd );
|
149 |
this.listenTo( this.model.get( 'options' ), 'change', this.onOptionModelChange );
|
150 |
this.listenTo( this.model.get( 'options' ), 'remove', this.onOptionModelRemove );
|
314 |
},
|
315 |
|
316 |
onAllowSearchChange: function( model, value ) {
|
317 |
+
if ( 1 == value ) {
|
318 |
+
$( '[data-trigger=allow_search]', this.$el ).show();
|
319 |
+
} else {
|
320 |
+
$( '[data-trigger=allow_search]', this.$el ).hide();
|
321 |
+
}
|
322 |
+
|
323 |
this.model.fetchHtml( function( response ) {
|
324 |
var data = {
|
325 |
id: model.get( 'id' ),
|
410 |
$textarea.val( '' );
|
411 |
$( '.add-options', this.$el ).click();
|
412 |
},
|
413 |
+
|
414 |
+
onNoResultsLabelChange: function( model, value ) {
|
415 |
+
var data = {
|
416 |
+
id: model.get( 'id' ),
|
417 |
+
callback: 'onNoResultsLabelChangeCallback',
|
418 |
+
options: {
|
419 |
+
label: value
|
420 |
+
}
|
421 |
+
};
|
422 |
+
|
423 |
+
happyForms.previewSend( 'happyforms-part-dom-update', data );
|
424 |
+
},
|
425 |
} );
|
426 |
|
427 |
happyForms.previewer = _.extend( happyForms.previewer, {
|
468 |
|
469 |
$( 'input', $part ).attr( 'placeholder', options.label );
|
470 |
$( '.happyforms-custom-select-dropdown__placeholder', $part ).removeClass('preview-hidden').text( options.label );
|
471 |
+
},
|
472 |
+
|
473 |
+
onNoResultsLabelChangeCallback: function( id, html, options, $ ) {
|
474 |
+
var $part = this.getPartElement( html );
|
475 |
+
var $option = $( '.happyforms-custom-select-dropdown__not-found', $part );
|
476 |
+
|
477 |
+
$option.text( options.label );
|
478 |
+
},
|
479 |
} );
|
480 |
|
481 |
} ) ( jQuery, _, Backbone, wp.customize, _happyFormsSettings );
|
core/classes/class-form-email.php
CHANGED
@@ -130,19 +130,19 @@ class HappyForms_Form_Email {
|
|
130 |
600 => array(
|
131 |
'type' => 'text',
|
132 |
'label' => __( 'Email display name', HAPPYFORMS_TEXT_DOMAIN ),
|
133 |
-
'tooltip' => __( 'If your form contains an email field,
|
134 |
'field' => 'confirmation_email_from_name',
|
135 |
),
|
136 |
700 => array(
|
137 |
'type' => 'text',
|
138 |
'label' => __( 'Email subject', HAPPYFORMS_TEXT_DOMAIN ),
|
139 |
-
'tooltip' => __( 'If your form contains an email field,
|
140 |
'field' => 'confirmation_email_subject',
|
141 |
),
|
142 |
800 => array(
|
143 |
'type' => 'editor',
|
144 |
'label' => __( 'Email content', HAPPYFORMS_TEXT_DOMAIN ),
|
145 |
-
'tooltip' => __( 'If your form contains an email field,
|
146 |
'field' => 'confirmation_email_content',
|
147 |
),
|
148 |
810 => array(
|
130 |
600 => array(
|
131 |
'type' => 'text',
|
132 |
'label' => __( 'Email display name', HAPPYFORMS_TEXT_DOMAIN ),
|
133 |
+
'tooltip' => __( 'If your form contains an email field, users will receive an email with this sender name.', HAPPYFORMS_TEXT_DOMAIN ),
|
134 |
'field' => 'confirmation_email_from_name',
|
135 |
),
|
136 |
700 => array(
|
137 |
'type' => 'text',
|
138 |
'label' => __( 'Email subject', HAPPYFORMS_TEXT_DOMAIN ),
|
139 |
+
'tooltip' => __( 'If your form contains an email field, users will receive an email with this subject.', HAPPYFORMS_TEXT_DOMAIN ),
|
140 |
'field' => 'confirmation_email_subject',
|
141 |
),
|
142 |
800 => array(
|
143 |
'type' => 'editor',
|
144 |
'label' => __( 'Email content', HAPPYFORMS_TEXT_DOMAIN ),
|
145 |
+
'tooltip' => __( 'If your form contains an email field, users will receive an email with this content.', HAPPYFORMS_TEXT_DOMAIN ),
|
146 |
'field' => 'confirmation_email_content',
|
147 |
),
|
148 |
810 => array(
|
core/classes/class-form-setup.php
CHANGED
@@ -32,6 +32,7 @@ class HappyForms_Form_Setup {
|
|
32 |
public function hook() {
|
33 |
// Common form extensions
|
34 |
add_filter( 'happyforms_meta_fields', array( $this, 'meta_fields' ) );
|
|
|
35 |
|
36 |
// Customizer form display
|
37 |
add_filter( 'happyforms_part_class', array( $this, 'part_class_customizer' ) );
|
@@ -188,13 +189,25 @@ class HappyForms_Form_Setup {
|
|
188 |
'tooltip' => __( 'Add custom CSS classes separated by space for targeting a button in your stylesheet.', HAPPYFORMS_TEXT_DOMAIN ),
|
189 |
'field' => 'submit_button_html_class'
|
190 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
1201 => array(
|
|
|
|
|
|
|
|
|
192 |
'type' => 'text',
|
193 |
'label' => __( 'Form HTML ID', HAPPYFORMS_TEXT_DOMAIN ),
|
194 |
'field' => 'html_id',
|
195 |
-
'tooltip' => __( 'Add a unique HTML ID to your form. Write without a hash (#) character.', HAPPYFORMS_TEXT_DOMAIN ),
|
196 |
),
|
197 |
-
|
|
|
|
|
|
|
198 |
'type' => 'checkbox',
|
199 |
'label' => __( 'Hide form after submit', HAPPYFORMS_TEXT_DOMAIN ),
|
200 |
'tooltip' => __( 'Hide all form parts and display just title and confirmation message on submit.', HAPPYFORMS_TEXT_DOMAIN ),
|
@@ -280,11 +293,15 @@ class HappyForms_Form_Setup {
|
|
280 |
}
|
281 |
|
282 |
public function form_html_id( $id, $form ) {
|
|
|
|
|
283 |
if ( ! empty( $form['html_id'] ) ) {
|
284 |
-
$
|
|
|
|
|
285 |
}
|
286 |
|
287 |
-
return $id;
|
288 |
}
|
289 |
|
290 |
public function form_html_class( $class, $form ) {
|
@@ -294,6 +311,24 @@ class HappyForms_Form_Setup {
|
|
294 |
|
295 |
return $class;
|
296 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
}
|
298 |
|
299 |
if ( ! function_exists( 'happyforms_get_setup' ) ):
|
32 |
public function hook() {
|
33 |
// Common form extensions
|
34 |
add_filter( 'happyforms_meta_fields', array( $this, 'meta_fields' ) );
|
35 |
+
add_filter( 'happyforms_update_form_data', array( $this, 'update_html_id_checkbox' ) );
|
36 |
|
37 |
// Customizer form display
|
38 |
add_filter( 'happyforms_part_class', array( $this, 'part_class_customizer' ) );
|
189 |
'tooltip' => __( 'Add custom CSS classes separated by space for targeting a button in your stylesheet.', HAPPYFORMS_TEXT_DOMAIN ),
|
190 |
'field' => 'submit_button_html_class'
|
191 |
),
|
192 |
+
1200 => array(
|
193 |
+
'type' => 'checkbox',
|
194 |
+
'label' => __( 'Use custom HTML ID', HAPPYFORMS_TEXT_DOMAIN ),
|
195 |
+
'field' => 'use_html_id',
|
196 |
+
'tooltip' => __( 'Add a unique HTML ID to your form. Write without a hash (#) character.', HAPPYFORMS_TEXT_DOMAIN ),
|
197 |
+
),
|
198 |
1201 => array(
|
199 |
+
'type' => 'group_start',
|
200 |
+
'trigger' => 'use_html_id'
|
201 |
+
),
|
202 |
+
1202 => array(
|
203 |
'type' => 'text',
|
204 |
'label' => __( 'Form HTML ID', HAPPYFORMS_TEXT_DOMAIN ),
|
205 |
'field' => 'html_id',
|
|
|
206 |
),
|
207 |
+
1203 => array(
|
208 |
+
'type' => 'group_end',
|
209 |
+
),
|
210 |
+
1204 => array(
|
211 |
'type' => 'checkbox',
|
212 |
'label' => __( 'Hide form after submit', HAPPYFORMS_TEXT_DOMAIN ),
|
213 |
'tooltip' => __( 'Hide all form parts and display just title and confirmation message on submit.', HAPPYFORMS_TEXT_DOMAIN ),
|
293 |
}
|
294 |
|
295 |
public function form_html_id( $id, $form ) {
|
296 |
+
$has_html_id_checkbox = ( metadata_exists( 'post', $form['ID'], '_happyforms_use_html_id' ) );
|
297 |
+
|
298 |
if ( ! empty( $form['html_id'] ) ) {
|
299 |
+
if ( ! $has_html_id_checkbox || $has_html_id_checkbox && 1 == $form['use_html_id'] ) {
|
300 |
+
$id = $form['html_id'];
|
301 |
+
}
|
302 |
}
|
303 |
|
304 |
+
return esc_attr( $id );
|
305 |
}
|
306 |
|
307 |
public function form_html_class( $class, $form ) {
|
311 |
|
312 |
return $class;
|
313 |
}
|
314 |
+
|
315 |
+
/**
|
316 |
+
* Updates 'Use HTML ID' value to 1 if meta data for it does not exist
|
317 |
+
* but HTML ID input is not empty.
|
318 |
+
*
|
319 |
+
* @hooked filter `happyforms_update_form_data`
|
320 |
+
*
|
321 |
+
* @return array
|
322 |
+
*/
|
323 |
+
public function update_html_id_checkbox( $update_data ) {
|
324 |
+
$has_html_id_checkbox = ( metadata_exists( 'post', $update_data['ID'], '_happyforms_use_html_id' ) );
|
325 |
+
|
326 |
+
if ( ! $has_html_id_checkbox && ! empty( $update_data['_happyforms_html_id'] ) ) {
|
327 |
+
$update_data['_happyforms_use_html_id'] = 1;
|
328 |
+
}
|
329 |
+
|
330 |
+
return $update_data;
|
331 |
+
}
|
332 |
}
|
333 |
|
334 |
if ( ! function_exists( 'happyforms_get_setup' ) ):
|
core/classes/class-session.php
CHANGED
@@ -200,7 +200,7 @@ class HappyForms_Session {
|
|
200 |
'step' => $this->step,
|
201 |
) );
|
202 |
|
203 |
-
$serialized = wp_slash( json_encode( $data ) );
|
204 |
|
205 |
return $serialized;
|
206 |
}
|
200 |
'step' => $this->step,
|
201 |
) );
|
202 |
|
203 |
+
$serialized = wp_slash( json_encode( $data ), JSON_UNESCAPED_UNICODE );
|
204 |
|
205 |
return $serialized;
|
206 |
}
|
core/classes/parts/class-part-number.php
CHANGED
@@ -198,7 +198,7 @@ class HappyForms_Part_Number extends HappyForms_Form_Part {
|
|
198 |
$part_name = happyforms_get_part_name( $part, $form );
|
199 |
$validated_values = $value;
|
200 |
|
201 |
-
if ( $part['required'] &&
|
202 |
$error = new WP_Error( 'error', happyforms_get_validation_message( 'field_empty' ) );
|
203 |
|
204 |
if ( empty( $validated_values[1] ) ) {
|
198 |
$part_name = happyforms_get_part_name( $part, $form );
|
199 |
$validated_values = $value;
|
200 |
|
201 |
+
if ( $part['required'] && '' === $validated_values[0] ) {
|
202 |
$error = new WP_Error( 'error', happyforms_get_validation_message( 'field_empty' ) );
|
203 |
|
204 |
if ( empty( $validated_values[1] ) ) {
|
core/classes/parts/class-part-select.php
CHANGED
@@ -70,7 +70,11 @@ class HappyForms_Part_Select extends HappyForms_Form_Part {
|
|
70 |
'allow_search' => array(
|
71 |
'default' => 0,
|
72 |
'sanitize' => 'happyforms_sanitize_checkbox'
|
73 |
-
)
|
|
|
|
|
|
|
|
|
74 |
);
|
75 |
|
76 |
return happyforms_get_part_customize_fields( $fields, $this->type );
|
70 |
'allow_search' => array(
|
71 |
'default' => 0,
|
72 |
'sanitize' => 'happyforms_sanitize_checkbox'
|
73 |
+
),
|
74 |
+
'no_results_label' => array(
|
75 |
+
'default' => __( 'No results', HAPPYFORMS_TEXT_DOMAIN ),
|
76 |
+
'sanitize' => 'sanitize_text_field',
|
77 |
+
),
|
78 |
);
|
79 |
|
80 |
return happyforms_get_part_customize_fields( $fields, $this->type );
|
core/helpers/helper-form-templates.php
CHANGED
@@ -519,6 +519,22 @@ function happyforms_the_form_title( $form ) {
|
|
519 |
|
520 |
endif;
|
521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
if ( ! function_exists( 'happyforms_get_form_id' ) ):
|
523 |
/**
|
524 |
* Get a form's html id.
|
@@ -851,8 +867,8 @@ function happyforms_additional_css( $form ) {
|
|
851 |
return;
|
852 |
}
|
853 |
|
854 |
-
$
|
855 |
-
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$
|
856 |
?>
|
857 |
<!-- HappyForms Additional CSS -->
|
858 |
<style>
|
519 |
|
520 |
endif;
|
521 |
|
522 |
+
if ( ! function_exists( 'happyforms_get_form_wrapper_id' ) ) :
|
523 |
+
/**
|
524 |
+
* Get form wrapper's HTML ID.
|
525 |
+
*
|
526 |
+
* @param array $form Current form data.
|
527 |
+
*
|
528 |
+
* @return string
|
529 |
+
*/
|
530 |
+
function happyforms_get_form_wrapper_id( $form ) {
|
531 |
+
$id = 'happyforms-' . esc_attr( $form['ID'] );
|
532 |
+
|
533 |
+
return apply_filters( 'happyforms_form_id', $id, $form );
|
534 |
+
}
|
535 |
+
|
536 |
+
endif;
|
537 |
+
|
538 |
if ( ! function_exists( 'happyforms_get_form_id' ) ):
|
539 |
/**
|
540 |
* Get a form's html id.
|
867 |
return;
|
868 |
}
|
869 |
|
870 |
+
$form_wrapper_id = happyforms_get_form_wrapper_id( $form );
|
871 |
+
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$form_wrapper_id}" );
|
872 |
?>
|
873 |
<!-- HappyForms Additional CSS -->
|
874 |
<style>
|
core/templates/partials/happyforms-select.php
CHANGED
@@ -3,4 +3,7 @@
|
|
3 |
<?php foreach ( $options as $index => $option ) : ?>
|
4 |
<li <?php echo ( isset( $option['id'] ) ) ? 'data-option-id="'. esc_attr( $option['id'] ) .'" ' : ''; ?>data-value="<?php echo ( isset( $option['value'] ) ) ? $option['value'] : $index; ?>" data-label="<?php echo esc_attr( $option['label'] ); ?>" class="happyforms-dropdown-item happyforms-custom-select-dropdown__item"><?php echo esc_attr( $option['label'] ); ?></li>
|
5 |
<?php endforeach; ?>
|
6 |
-
|
|
|
|
|
|
3 |
<?php foreach ( $options as $index => $option ) : ?>
|
4 |
<li <?php echo ( isset( $option['id'] ) ) ? 'data-option-id="'. esc_attr( $option['id'] ) .'" ' : ''; ?>data-value="<?php echo ( isset( $option['value'] ) ) ? $option['value'] : $index; ?>" data-label="<?php echo esc_attr( $option['label'] ); ?>" class="happyforms-dropdown-item happyforms-custom-select-dropdown__item"><?php echo esc_attr( $option['label'] ); ?></li>
|
5 |
<?php endforeach; ?>
|
6 |
+
<?php if ( isset( $part['allow_search'] ) && 1 == $part['allow_search'] ) : ?>
|
7 |
+
<li class="happyforms-custom-select-dropdown__not-found"><?php echo esc_attr( $part['no_results_label'] ); ?></li>
|
8 |
+
<?php endif; ?>
|
9 |
+
</ul>
|
core/templates/parts/customize-checkbox.php
CHANGED
@@ -117,12 +117,12 @@
|
|
117 |
<div class="happyforms-part-item-body">
|
118 |
<div class="happyforms-part-item-handle"></div>
|
119 |
<label>
|
120 |
-
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN );
|
121 |
<input type="text" class="widefat" name="label" value="<%= label %>">
|
122 |
</label>
|
123 |
<div class="happyforms-part-item-advanced">
|
124 |
<label>
|
125 |
-
<input type="checkbox" name="is_default" value="1" <% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( '
|
126 |
</label>
|
127 |
</div>
|
128 |
<div class="option-actions">
|
117 |
<div class="happyforms-part-item-body">
|
118 |
<div class="happyforms-part-item-handle"></div>
|
119 |
<label>
|
120 |
+
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN ); ?>:
|
121 |
<input type="text" class="widefat" name="label" value="<%= label %>">
|
122 |
</label>
|
123 |
<div class="happyforms-part-item-advanced">
|
124 |
<label>
|
125 |
+
<input type="checkbox" name="is_default" value="1" <% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( 'Make this choice default', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
126 |
</label>
|
127 |
</div>
|
128 |
<div class="option-actions">
|
core/templates/parts/customize-number.php
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
|
34 |
<?php do_action( 'happyforms_part_customize_number_before_options' ); ?>
|
35 |
|
36 |
-
<div class="min-max-wrapper
|
37 |
<p>
|
38 |
<label for="<%= instance.id %>_min_value"><?php _e( 'Min value', HAPPYFORMS_TEXT_DOMAIN ); ?></label>
|
39 |
<input type="number" id="<%= instance.id %>_min_value" class="widefat title" value="<%= instance.min_value %>" data-bind="min_value" />
|
@@ -59,7 +59,7 @@
|
|
59 |
<input type="checkbox" name="masked" class="checkbox" value="1" <% if ( instance.masked ) { %>checked="checked"<% } %> data-bind="masked" /> <?php _e( 'Use number separators', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
60 |
</label>
|
61 |
</p>
|
62 |
-
<div class="happyforms-nested-settings mask-wrapper number-options number-options--numeric
|
63 |
<p>
|
64 |
<label for="<%= instance.id %>_mask_numeric_thousands_delimiter"><?php _e( 'Grouping', HAPPYFORMS_TEXT_DOMAIN ); ?></label>
|
65 |
<input type="text" id="<%= instance.id %>_mask_numeric_thousands_delimiter" class="widefat title" value="<%= instance.mask_numeric_thousands_delimiter %>" data-bind="mask_numeric_thousands_delimiter" />
|
33 |
|
34 |
<?php do_action( 'happyforms_part_customize_number_before_options' ); ?>
|
35 |
|
36 |
+
<div class="min-max-wrapper">
|
37 |
<p>
|
38 |
<label for="<%= instance.id %>_min_value"><?php _e( 'Min value', HAPPYFORMS_TEXT_DOMAIN ); ?></label>
|
39 |
<input type="number" id="<%= instance.id %>_min_value" class="widefat title" value="<%= instance.min_value %>" data-bind="min_value" />
|
59 |
<input type="checkbox" name="masked" class="checkbox" value="1" <% if ( instance.masked ) { %>checked="checked"<% } %> data-bind="masked" /> <?php _e( 'Use number separators', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
60 |
</label>
|
61 |
</p>
|
62 |
+
<div class="happyforms-nested-settings mask-wrapper number-options number-options--numeric" data-trigger="masked" style="display: <%= (instance.masked == 1) ? 'flex' : 'none' %>">
|
63 |
<p>
|
64 |
<label for="<%= instance.id %>_mask_numeric_thousands_delimiter"><?php _e( 'Grouping', HAPPYFORMS_TEXT_DOMAIN ); ?></label>
|
65 |
<input type="text" id="<%= instance.id %>_mask_numeric_thousands_delimiter" class="widefat title" value="<%= instance.mask_numeric_thousands_delimiter %>" data-bind="mask_numeric_thousands_delimiter" />
|
core/templates/parts/customize-radio.php
CHANGED
@@ -100,12 +100,12 @@
|
|
100 |
<div class="happyforms-part-item-body">
|
101 |
<div class="happyforms-part-item-handle"></div>
|
102 |
<label>
|
103 |
-
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN );
|
104 |
<input type="text" class="widefat" name="label" value="<%= label %>" data-option-attribute="label">
|
105 |
</label>
|
106 |
<div class="happyforms-part-item-advanced">
|
107 |
<label>
|
108 |
-
<input type="checkbox" name="is_default" value="1" class="default-option-switch"<% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( 'Make this
|
109 |
</label>
|
110 |
</div>
|
111 |
<div class="option-actions">
|
100 |
<div class="happyforms-part-item-body">
|
101 |
<div class="happyforms-part-item-handle"></div>
|
102 |
<label>
|
103 |
+
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN ); ?>:
|
104 |
<input type="text" class="widefat" name="label" value="<%= label %>" data-option-attribute="label">
|
105 |
</label>
|
106 |
<div class="happyforms-part-item-advanced">
|
107 |
<label>
|
108 |
+
<input type="checkbox" name="is_default" value="1" class="default-option-switch"<% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( 'Make this choice default', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
109 |
</label>
|
110 |
</div>
|
111 |
<div class="option-actions">
|
core/templates/parts/customize-select.php
CHANGED
@@ -68,6 +68,12 @@
|
|
68 |
<input type="checkbox" class="checkbox" value="1" <% if ( instance.allow_search ) { %>checked="checked"<% } %> data-bind="allow_search" /> <?php _e( 'Make searchable', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
69 |
</label>
|
70 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
<?php happyforms_customize_part_width_control(); ?>
|
73 |
|
@@ -92,12 +98,12 @@
|
|
92 |
<div class="happyforms-part-item-body">
|
93 |
<div class="happyforms-part-item-handle"></div>
|
94 |
<label>
|
95 |
-
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN );
|
96 |
<input type="text" class="widefat" name="label" value="<%= label %>" data-option-attribute="label">
|
97 |
</label>
|
98 |
<div class="happyforms-part-item-advanced">
|
99 |
<label>
|
100 |
-
<input type="checkbox" name="is_default" value="1" class="default-option-switch"<% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( 'Make this
|
101 |
</label>
|
102 |
</div>
|
103 |
<div class="option-actions">
|
68 |
<input type="checkbox" class="checkbox" value="1" <% if ( instance.allow_search ) { %>checked="checked"<% } %> data-bind="allow_search" /> <?php _e( 'Make searchable', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
69 |
</label>
|
70 |
</p>
|
71 |
+
<div class="happyforms-nested-settings" data-trigger="allow_search" style="display: <%= (instance.allow_search == 1) ? 'block' : 'none' %>">
|
72 |
+
<p>
|
73 |
+
<label for="<%= instance.id %>_no_results_label"><?php _e( '\'No results\' label', 'happyforms-upgrade' ); ?></label>
|
74 |
+
<input type="text" id="<%= instance.id %>_no_results_label" class="widefat title" value="<%= instance.no_results_label %>" data-bind="no_results_label" />
|
75 |
+
</p>
|
76 |
+
</div>
|
77 |
|
78 |
<?php happyforms_customize_part_width_control(); ?>
|
79 |
|
98 |
<div class="happyforms-part-item-body">
|
99 |
<div class="happyforms-part-item-handle"></div>
|
100 |
<label>
|
101 |
+
<?php _e( 'Label', HAPPYFORMS_TEXT_DOMAIN ); ?>:
|
102 |
<input type="text" class="widefat" name="label" value="<%= label %>" data-option-attribute="label">
|
103 |
</label>
|
104 |
<div class="happyforms-part-item-advanced">
|
105 |
<label>
|
106 |
+
<input type="checkbox" name="is_default" value="1" class="default-option-switch"<% if (is_default == 1) { %> checked="checked"<% } %>> <?php _e( 'Make this choice default', HAPPYFORMS_TEXT_DOMAIN ); ?>
|
107 |
</label>
|
108 |
</div>
|
109 |
<div class="option-actions">
|
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
-
* Version: 1.9.
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.9.
|
17 |
define( 'HAPPYFORMS_TEXT_DOMAIN', 'happyforms' );
|
18 |
|
19 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
+
* Version: 1.9.6
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.9.6' );
|
17 |
define( 'HAPPYFORMS_TEXT_DOMAIN', 'happyforms' );
|
18 |
|
19 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
inc/assets/js/customize.js
CHANGED
@@ -882,7 +882,7 @@
|
|
882 |
var $partEls = $( '.happyforms-parts-list-item', this.$el );
|
883 |
|
884 |
if ( '' === search ) {
|
885 |
-
$partEls.
|
886 |
$clearButton.removeClass( 'active' );
|
887 |
} else {
|
888 |
$clearButton.addClass( 'active' );
|
@@ -895,10 +895,10 @@
|
|
895 |
return label.indexOf( search ) >= 0 || description.indexOf( search ) >= 0;
|
896 |
} );
|
897 |
|
898 |
-
$partEls.
|
899 |
|
900 |
results.forEach( function( part ) {
|
901 |
-
$( '.happyforms-parts-list-item[data-part-type="' + part.get( 'type' ) + '"]', this.$el ).
|
902 |
} );
|
903 |
},
|
904 |
|
882 |
var $partEls = $( '.happyforms-parts-list-item', this.$el );
|
883 |
|
884 |
if ( '' === search ) {
|
885 |
+
$partEls.removeClass( 'hidden' );
|
886 |
$clearButton.removeClass( 'active' );
|
887 |
} else {
|
888 |
$clearButton.addClass( 'active' );
|
895 |
return label.indexOf( search ) >= 0 || description.indexOf( search ) >= 0;
|
896 |
} );
|
897 |
|
898 |
+
$partEls.addClass( 'hidden' );
|
899 |
|
900 |
results.forEach( function( part ) {
|
901 |
+
$( '.happyforms-parts-list-item[data-part-type="' + part.get( 'type' ) + '"]', this.$el ).removeClass( 'hidden' );
|
902 |
} );
|
903 |
},
|
904 |
|
inc/classes/class-happyforms.php
CHANGED
@@ -53,29 +53,26 @@ class HappyForms extends HappyForms_Core {
|
|
53 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-rich-text-dummy.php' );
|
54 |
$part_library->register_part( 'HappyForms_Part_RichText_Dummy', 16 );
|
55 |
|
56 |
-
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-title-dummy.php' );
|
57 |
-
$part_library->register_part( 'HappyForms_Part_Title_Dummy', 17 );
|
58 |
-
|
59 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-legal-dummy.php' );
|
60 |
-
$part_library->register_part( 'HappyForms_Part_Legal_Dummy',
|
61 |
|
62 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-signature-dummy.php' );
|
63 |
-
$part_library->register_part( 'HappyForms_Part_Signature_Dummy',
|
64 |
|
65 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-rating-dummy.php' );
|
66 |
-
$part_library->register_part( 'HappyForms_Part_Rating_Dummy',
|
67 |
|
68 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-narrative-dummy.php' );
|
69 |
-
$part_library->register_part( 'HappyForms_Part_Narrative_Dummy',
|
70 |
|
71 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-placeholder-dummy.php' );
|
72 |
-
$part_library->register_part( 'HappyForms_Part_Placeholder_Dummy',
|
73 |
|
74 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-mailchimp-dummy.php' );
|
75 |
-
$part_library->register_part( 'HappyForms_Part_Mailchimp_Dummy',
|
76 |
|
77 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-payments-dummy.php' );
|
78 |
-
$part_library->register_part( 'HappyForms_Part_Payments_Dummy',
|
79 |
}
|
80 |
|
81 |
public function add_dummy_setup_controls( $controls ) {
|
@@ -83,7 +80,7 @@ class HappyForms extends HappyForms_Core {
|
|
83 |
'type' => 'checkbox_dummy',
|
84 |
'dummy_id' => 'redirect_on_complete',
|
85 |
'label' => __( 'Redirect on complete', HAPPYFORMS_TEXT_DOMAIN ),
|
86 |
-
'tooltip' => __( 'By default,
|
87 |
);
|
88 |
|
89 |
$controls[1320] = array(
|
@@ -125,7 +122,7 @@ class HappyForms extends HappyForms_Core {
|
|
125 |
'type' => 'checkbox_dummy',
|
126 |
'dummy_id' => 'save_abandoned_responses',
|
127 |
'label' => __( 'Save abandoned submission', HAPPYFORMS_TEXT_DOMAIN ),
|
128 |
-
'tooltip' => __( 'Keep incomplete
|
129 |
);
|
130 |
|
131 |
$controls[1690] = array(
|
@@ -205,7 +202,7 @@ class HappyForms extends HappyForms_Core {
|
|
205 |
'type' => 'checkbox_dummy',
|
206 |
'dummy_id' => 'abandoned_resume_send_alert_email',
|
207 |
'label' => __( 'Send abandonment email', 'happyforms' ),
|
208 |
-
'tooltip' => __( 'Notify
|
209 |
);
|
210 |
|
211 |
return $controls;
|
53 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-rich-text-dummy.php' );
|
54 |
$part_library->register_part( 'HappyForms_Part_RichText_Dummy', 16 );
|
55 |
|
|
|
|
|
|
|
56 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-legal-dummy.php' );
|
57 |
+
$part_library->register_part( 'HappyForms_Part_Legal_Dummy', 17 );
|
58 |
|
59 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-signature-dummy.php' );
|
60 |
+
$part_library->register_part( 'HappyForms_Part_Signature_Dummy', 18 );
|
61 |
|
62 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-rating-dummy.php' );
|
63 |
+
$part_library->register_part( 'HappyForms_Part_Rating_Dummy', 19 );
|
64 |
|
65 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-narrative-dummy.php' );
|
66 |
+
$part_library->register_part( 'HappyForms_Part_Narrative_Dummy', 20 );
|
67 |
|
68 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-placeholder-dummy.php' );
|
69 |
+
$part_library->register_part( 'HappyForms_Part_Placeholder_Dummy', 21 );
|
70 |
|
71 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-mailchimp-dummy.php' );
|
72 |
+
$part_library->register_part( 'HappyForms_Part_Mailchimp_Dummy', 22 );
|
73 |
|
74 |
require_once( happyforms_get_include_folder() . '/classes/parts/class-part-payments-dummy.php' );
|
75 |
+
$part_library->register_part( 'HappyForms_Part_Payments_Dummy', 23 );
|
76 |
}
|
77 |
|
78 |
public function add_dummy_setup_controls( $controls ) {
|
80 |
'type' => 'checkbox_dummy',
|
81 |
'dummy_id' => 'redirect_on_complete',
|
82 |
'label' => __( 'Redirect on complete', HAPPYFORMS_TEXT_DOMAIN ),
|
83 |
+
'tooltip' => __( 'By default, users will be redirected to the post or page displaying this form. To set a custom redirect webpage, add a link here.', HAPPYFORMS_TEXT_DOMAIN ),
|
84 |
);
|
85 |
|
86 |
$controls[1320] = array(
|
122 |
'type' => 'checkbox_dummy',
|
123 |
'dummy_id' => 'save_abandoned_responses',
|
124 |
'label' => __( 'Save abandoned submission', HAPPYFORMS_TEXT_DOMAIN ),
|
125 |
+
'tooltip' => __( 'Keep incomplete users responses stored in your WordPress database.', HAPPYFORMS_TEXT_DOMAIN ),
|
126 |
);
|
127 |
|
128 |
$controls[1690] = array(
|
202 |
'type' => 'checkbox_dummy',
|
203 |
'dummy_id' => 'abandoned_resume_send_alert_email',
|
204 |
'label' => __( 'Send abandonment email', 'happyforms' ),
|
205 |
+
'tooltip' => __( 'Notify users when they abandon your form before submitting it.', 'happyforms' ),
|
206 |
);
|
207 |
|
208 |
return $controls;
|
inc/classes/parts/class-part-legal-dummy.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
class HappyForms_Part_Legal_Dummy extends HappyForms_Form_Part {
|
4 |
|
5 |
public $type = 'legal_dummy';
|
6 |
-
|
7 |
public function __construct() {
|
8 |
-
$this->label = __( '
|
9 |
-
$this->description = __( 'For requiring
|
10 |
}
|
11 |
-
|
12 |
-
}
|
3 |
class HappyForms_Part_Legal_Dummy extends HappyForms_Form_Part {
|
4 |
|
5 |
public $type = 'legal_dummy';
|
6 |
+
|
7 |
public function __construct() {
|
8 |
+
$this->label = __( 'Compliance', 'happyforms' );
|
9 |
+
$this->description = __( 'For requiring permission before accepting submission.', 'happyforms' );
|
10 |
}
|
11 |
+
|
12 |
+
}
|
inc/classes/parts/class-part-narrative-dummy.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
class HappyForms_Part_Narrative_Dummy extends HappyForms_Form_Part {
|
4 |
|
5 |
public $type = 'narrative_dummy';
|
6 |
-
|
7 |
public function __construct() {
|
8 |
-
$this->label = __( '
|
9 |
$this->description = __( 'For adding fill-in-the-blank style inputs to a paragraph of text.', 'happyforms' );
|
10 |
}
|
11 |
-
|
12 |
-
}
|
3 |
class HappyForms_Part_Narrative_Dummy extends HappyForms_Form_Part {
|
4 |
|
5 |
public $type = 'narrative_dummy';
|
6 |
+
|
7 |
public function __construct() {
|
8 |
+
$this->label = __( 'Blanks', 'happyforms' );
|
9 |
$this->description = __( 'For adding fill-in-the-blank style inputs to a paragraph of text.', 'happyforms' );
|
10 |
}
|
11 |
+
|
12 |
+
}
|
inc/classes/parts/class-part-website-url-dummy.php
CHANGED
@@ -6,7 +6,7 @@ class HappyForms_Part_WebsiteUrl_Dummy extends HappyForms_Form_Part {
|
|
6 |
|
7 |
public function __construct() {
|
8 |
$this->label = __( 'Site Address', 'happyforms' );
|
9 |
-
$this->description = __( 'For formatted
|
10 |
}
|
11 |
|
12 |
}
|
6 |
|
7 |
public function __construct() {
|
8 |
$this->label = __( 'Site Address', 'happyforms' );
|
9 |
+
$this->description = __( 'For formatted site URLs.', 'happyforms' );
|
10 |
}
|
11 |
|
12 |
}
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: HappyForms 1.9.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -273,14 +273,14 @@ msgstr ""
|
|
273 |
|
274 |
#: core/classes/class-form-email.php:133
|
275 |
msgid ""
|
276 |
-
"If your form contains an email field,
|
277 |
-
"
|
278 |
msgstr ""
|
279 |
|
280 |
#: core/classes/class-form-email.php:139
|
281 |
msgid ""
|
282 |
-
"If your form contains an email field,
|
283 |
-
"
|
284 |
msgstr ""
|
285 |
|
286 |
#: core/classes/class-form-email.php:144
|
@@ -289,8 +289,8 @@ msgstr ""
|
|
289 |
|
290 |
#: core/classes/class-form-email.php:145
|
291 |
msgid ""
|
292 |
-
"If your form contains an email field,
|
293 |
-
"
|
294 |
msgstr ""
|
295 |
|
296 |
#: core/classes/class-form-email.php:150
|
@@ -309,105 +309,109 @@ msgstr ""
|
|
309 |
msgid "Missing validation callback for field %s"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: core/classes/class-form-setup.php:
|
313 |
msgid "Thank you! Your submission has been sent."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: core/classes/class-form-setup.php:
|
317 |
msgid "There is a problem! Please review your submission."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: core/classes/class-form-setup.php:
|
321 |
msgid "This field is required."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: core/classes/class-form-setup.php:
|
325 |
msgid "(optional)"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: core/classes/class-form-setup.php:
|
329 |
msgid "Send"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: core/classes/class-form-setup.php:
|
333 |
msgid "Validate your submission"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: core/classes/class-form-setup.php:
|
337 |
msgid "Review submission"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: core/classes/class-form-setup.php:
|
341 |
msgid "Success message"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: core/classes/class-form-setup.php:
|
345 |
msgid ""
|
346 |
"This is the message your users will see after succesfully submitting your "
|
347 |
"form."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: core/classes/class-form-setup.php:
|
351 |
msgid "Error message"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: core/classes/class-form-setup.php:
|
355 |
msgid ""
|
356 |
"This is the message your users will see when there are form errors "
|
357 |
"preventing submission."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: core/classes/class-form-setup.php:
|
361 |
msgid "Optional part label"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: core/classes/class-form-setup.php:
|
365 |
msgid ""
|
366 |
"Mark optional parts in your form to let your users distinguish them from "
|
367 |
"required parts."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: core/classes/class-form-setup.php:
|
371 |
msgid "Submit button label"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: core/classes/class-form-setup.php:
|
375 |
msgid "Change text of submit button to describe an action your form performs."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: core/classes/class-form-setup.php:
|
379 |
msgid "Submit button CSS classes"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: core/classes/class-form-setup.php:
|
383 |
msgid ""
|
384 |
"Add custom CSS classes separated by space for targeting a button in your "
|
385 |
"stylesheet."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: core/classes/class-form-setup.php:
|
389 |
-
msgid "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: core/classes/class-form-setup.php:
|
393 |
msgid "Add a unique HTML ID to your form. Write without a hash (#) character."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: core/classes/class-form-setup.php:
|
|
|
|
|
|
|
|
|
397 |
msgid "Hide form after submit"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: core/classes/class-form-setup.php:
|
401 |
msgid ""
|
402 |
"Hide all form parts and display just title and confirmation message on "
|
403 |
"submit."
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: core/classes/class-form-setup.php:
|
407 |
msgid "Spam prevention"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: core/classes/class-form-setup.php:
|
411 |
msgid "Protect your form against bots by using HoneyPot security."
|
412 |
msgstr ""
|
413 |
|
@@ -1056,6 +1060,10 @@ msgstr ""
|
|
1056 |
msgid "For selecting one option from a long list. Default value adjustable."
|
1057 |
msgstr ""
|
1058 |
|
|
|
|
|
|
|
|
|
1059 |
#: core/classes/parts/class-part-single-line-text.php:8
|
1060 |
msgid "Short Text"
|
1061 |
msgstr ""
|
@@ -1104,927 +1112,927 @@ msgstr ""
|
|
1104 |
msgid "Spam protection, skip this field"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: core/helpers/helper-form-templates.php:
|
1108 |
msgid "January"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: core/helpers/helper-form-templates.php:
|
1112 |
msgid "February"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: core/helpers/helper-form-templates.php:
|
1116 |
msgid "March"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: core/helpers/helper-form-templates.php:
|
1120 |
msgid "April"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: core/helpers/helper-form-templates.php:
|
1124 |
msgid "May"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: core/helpers/helper-form-templates.php:
|
1128 |
msgid "June"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: core/helpers/helper-form-templates.php:
|
1132 |
msgid "July"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: core/helpers/helper-form-templates.php:
|
1136 |
msgid "August"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: core/helpers/helper-form-templates.php:
|
1140 |
msgid "September"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: core/helpers/helper-form-templates.php:
|
1144 |
msgid "October"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: core/helpers/helper-form-templates.php:
|
1148 |
msgid "November"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: core/helpers/helper-form-templates.php:
|
1152 |
msgid "December"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: core/helpers/helper-form-templates.php:
|
1156 |
msgid "Andorra"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: core/helpers/helper-form-templates.php:
|
1160 |
msgid "United Arab Emirates"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: core/helpers/helper-form-templates.php:
|
1164 |
msgid "Afghanistan"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: core/helpers/helper-form-templates.php:
|
1168 |
msgid "Antigua and Barbuda"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: core/helpers/helper-form-templates.php:
|
1172 |
msgid "Anguilla"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: core/helpers/helper-form-templates.php:
|
1176 |
msgid "Albania"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: core/helpers/helper-form-templates.php:
|
1180 |
msgid "Armenia"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: core/helpers/helper-form-templates.php:
|
1184 |
msgid "Angola"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: core/helpers/helper-form-templates.php:
|
1188 |
msgid "Antarctica"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: core/helpers/helper-form-templates.php:
|
1192 |
msgid "Argentina"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: core/helpers/helper-form-templates.php:
|
1196 |
msgid "American Samoa"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: core/helpers/helper-form-templates.php:
|
1200 |
msgid "Austria"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: core/helpers/helper-form-templates.php:
|
1204 |
msgid "Australia"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: core/helpers/helper-form-templates.php:
|
1208 |
msgid "Aruba"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: core/helpers/helper-form-templates.php:
|
1212 |
msgid "Azerbaijan"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: core/helpers/helper-form-templates.php:
|
1216 |
msgid "Bosnia and Herzegovina"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: core/helpers/helper-form-templates.php:
|
1220 |
msgid "Barbados"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: core/helpers/helper-form-templates.php:
|
1224 |
msgid "Bangladesh"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: core/helpers/helper-form-templates.php:
|
1228 |
msgid "Belgium"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: core/helpers/helper-form-templates.php:
|
1232 |
msgid "Burkina Faso"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: core/helpers/helper-form-templates.php:
|
1236 |
msgid "Bulgaria"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: core/helpers/helper-form-templates.php:
|
1240 |
msgid "Bahrain"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: core/helpers/helper-form-templates.php:
|
1244 |
msgid "Burundi"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: core/helpers/helper-form-templates.php:
|
1248 |
msgid "Benin"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: core/helpers/helper-form-templates.php:
|
1252 |
msgid "Saint Barthelemy"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: core/helpers/helper-form-templates.php:
|
1256 |
msgid "Bermuda"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: core/helpers/helper-form-templates.php:
|
1260 |
msgid "Brunei Darussalam"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: core/helpers/helper-form-templates.php:
|
1264 |
msgid "Bolivia"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: core/helpers/helper-form-templates.php:
|
1268 |
msgid "Brazil"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: core/helpers/helper-form-templates.php:
|
1272 |
msgid "Bahamas"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: core/helpers/helper-form-templates.php:
|
1276 |
msgid "Bhutan"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: core/helpers/helper-form-templates.php:
|
1280 |
msgid "Botswana"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: core/helpers/helper-form-templates.php:
|
1284 |
msgid "Belarus"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: core/helpers/helper-form-templates.php:
|
1288 |
msgid "Belize"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: core/helpers/helper-form-templates.php:
|
1292 |
msgid "Canada"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: core/helpers/helper-form-templates.php:
|
1296 |
msgid "Congo, The Democratic Republic of the"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: core/helpers/helper-form-templates.php:
|
1300 |
msgid "Central African Republic"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: core/helpers/helper-form-templates.php:
|
1304 |
msgid "Congo"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: core/helpers/helper-form-templates.php:
|
1308 |
msgid "Switzerland"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: core/helpers/helper-form-templates.php:
|
1312 |
msgid "Cook Islands"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: core/helpers/helper-form-templates.php:
|
1316 |
msgid "Chile"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: core/helpers/helper-form-templates.php:
|
1320 |
msgid "Cameroon"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: core/helpers/helper-form-templates.php:
|
1324 |
msgid "China"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: core/helpers/helper-form-templates.php:
|
1328 |
msgid "Colombia"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: core/helpers/helper-form-templates.php:
|
1332 |
msgid "Costa Rica"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: core/helpers/helper-form-templates.php:
|
1336 |
msgid "Cuba"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: core/helpers/helper-form-templates.php:
|
1340 |
msgid "Cape Verde"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: core/helpers/helper-form-templates.php:
|
1344 |
msgid "Cyprus"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: core/helpers/helper-form-templates.php:
|
1348 |
msgid "Czech Republic"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: core/helpers/helper-form-templates.php:
|
1352 |
msgid "Germany"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: core/helpers/helper-form-templates.php:
|
1356 |
msgid "Djibouti"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: core/helpers/helper-form-templates.php:
|
1360 |
msgid "Denmark"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: core/helpers/helper-form-templates.php:
|
1364 |
msgid "Dominica"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: core/helpers/helper-form-templates.php:
|
1368 |
msgid "Dominican Republic"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: core/helpers/helper-form-templates.php:
|
1372 |
msgid "Algeria"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: core/helpers/helper-form-templates.php:
|
1376 |
msgid "Ecuador"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: core/helpers/helper-form-templates.php:
|
1380 |
msgid "Estonia"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: core/helpers/helper-form-templates.php:
|
1384 |
msgid "Egypt"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: core/helpers/helper-form-templates.php:
|
1388 |
msgid "Eritrea"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: core/helpers/helper-form-templates.php:
|
1392 |
msgid "Spain"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: core/helpers/helper-form-templates.php:
|
1396 |
msgid "Ethiopia"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: core/helpers/helper-form-templates.php:
|
1400 |
msgid "Finland"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: core/helpers/helper-form-templates.php:
|
1404 |
msgid "Fiji"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: core/helpers/helper-form-templates.php:
|
1408 |
msgid "Falkland Islands (Malvinas)"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: core/helpers/helper-form-templates.php:
|
1412 |
msgid "Micronesia, Federated States of"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: core/helpers/helper-form-templates.php:
|
1416 |
msgid "Faroe Islands"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: core/helpers/helper-form-templates.php:
|
1420 |
msgid "France"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: core/helpers/helper-form-templates.php:
|
1424 |
msgid "Gabon"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: core/helpers/helper-form-templates.php:
|
1428 |
msgid "United Kingdom"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: core/helpers/helper-form-templates.php:
|
1432 |
msgid "Grenada"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: core/helpers/helper-form-templates.php:
|
1436 |
msgid "Georgia"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: core/helpers/helper-form-templates.php:
|
1440 |
msgid "Ghana"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: core/helpers/helper-form-templates.php:
|
1444 |
msgid "Gibraltar"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: core/helpers/helper-form-templates.php:
|
1448 |
msgid "Greenland"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: core/helpers/helper-form-templates.php:
|
1452 |
msgid "Gambia"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: core/helpers/helper-form-templates.php:
|
1456 |
msgid "Guinea"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: core/helpers/helper-form-templates.php:
|
1460 |
msgid "Greece"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: core/helpers/helper-form-templates.php:
|
1464 |
msgid "Guatemala"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: core/helpers/helper-form-templates.php:
|
1468 |
msgid "Guam"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: core/helpers/helper-form-templates.php:
|
1472 |
msgid "Guinea-bissau"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: core/helpers/helper-form-templates.php:
|
1476 |
msgid "Guyana"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: core/helpers/helper-form-templates.php:
|
1480 |
msgid "Hong Kong"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: core/helpers/helper-form-templates.php:
|
1484 |
msgid "Honduras"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: core/helpers/helper-form-templates.php:
|
1488 |
msgid "Croatia"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: core/helpers/helper-form-templates.php:
|
1492 |
msgid "Haiti"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: core/helpers/helper-form-templates.php:
|
1496 |
msgid "Hungary"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: core/helpers/helper-form-templates.php:
|
1500 |
msgid "Indonesia"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: core/helpers/helper-form-templates.php:
|
1504 |
msgid "Ireland"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: core/helpers/helper-form-templates.php:
|
1508 |
msgid "Israel"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: core/helpers/helper-form-templates.php:
|
1512 |
msgid "India"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: core/helpers/helper-form-templates.php:
|
1516 |
msgid "Iraq"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: core/helpers/helper-form-templates.php:
|
1520 |
msgid "Iran, Islamic Republic of"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: core/helpers/helper-form-templates.php:
|
1524 |
msgid "Iceland"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: core/helpers/helper-form-templates.php:
|
1528 |
msgid "Italy"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: core/helpers/helper-form-templates.php:
|
1532 |
msgid "Jamaica"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: core/helpers/helper-form-templates.php:
|
1536 |
msgid "Jordan"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: core/helpers/helper-form-templates.php:
|
1540 |
msgid "Japan"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: core/helpers/helper-form-templates.php:
|
1544 |
msgid "Kenya"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: core/helpers/helper-form-templates.php:
|
1548 |
msgid "Kyrgyzstan"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: core/helpers/helper-form-templates.php:
|
1552 |
msgid "Cambodia"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: core/helpers/helper-form-templates.php:
|
1556 |
msgid "Kiribati"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: core/helpers/helper-form-templates.php:
|
1560 |
msgid "Comoros"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: core/helpers/helper-form-templates.php:
|
1564 |
msgid "Saint Kitts and Nevis"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: core/helpers/helper-form-templates.php:
|
1568 |
msgid "Korea Democratic Peoples Republic of"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: core/helpers/helper-form-templates.php:
|
1572 |
msgid "Korea Republic of"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: core/helpers/helper-form-templates.php:
|
1576 |
msgid "Kuwait"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: core/helpers/helper-form-templates.php:
|
1580 |
msgid "Cayman Islands"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: core/helpers/helper-form-templates.php:
|
1584 |
msgid "Lao Peoples Democratic Republic"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: core/helpers/helper-form-templates.php:
|
1588 |
msgid "Lebanon"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: core/helpers/helper-form-templates.php:
|
1592 |
msgid "Saint Lucia"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: core/helpers/helper-form-templates.php:
|
1596 |
msgid "Liechtenstein"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: core/helpers/helper-form-templates.php:
|
1600 |
msgid "Sri Lanka"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: core/helpers/helper-form-templates.php:
|
1604 |
msgid "Liberia"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: core/helpers/helper-form-templates.php:
|
1608 |
msgid "Lesotho"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: core/helpers/helper-form-templates.php:
|
1612 |
msgid "Lithuania"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: core/helpers/helper-form-templates.php:
|
1616 |
msgid "Luxembourg"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: core/helpers/helper-form-templates.php:
|
1620 |
msgid "Latvia"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: core/helpers/helper-form-templates.php:
|
1624 |
msgid "Libyan Arab Jamahiriya"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: core/helpers/helper-form-templates.php:
|
1628 |
msgid "Morocco"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: core/helpers/helper-form-templates.php:
|
1632 |
msgid "Monaco"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: core/helpers/helper-form-templates.php:
|
1636 |
msgid "Moldova, Republic of"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: core/helpers/helper-form-templates.php:
|
1640 |
msgid "Montenegro"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: core/helpers/helper-form-templates.php:
|
1644 |
msgid "Madagascar"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: core/helpers/helper-form-templates.php:
|
1648 |
msgid "Marshall Islands"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: core/helpers/helper-form-templates.php:
|
1652 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: core/helpers/helper-form-templates.php:
|
1656 |
msgid "Mali"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: core/helpers/helper-form-templates.php:
|
1660 |
msgid "Myanmar"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: core/helpers/helper-form-templates.php:
|
1664 |
msgid "Mongolia"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: core/helpers/helper-form-templates.php:
|
1668 |
msgid "Macau"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: core/helpers/helper-form-templates.php:
|
1672 |
msgid "Northern Mariana Islands"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: core/helpers/helper-form-templates.php:
|
1676 |
msgid "Mauritania"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: core/helpers/helper-form-templates.php:
|
1680 |
msgid "Montserrat"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: core/helpers/helper-form-templates.php:
|
1684 |
msgid "Malta"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: core/helpers/helper-form-templates.php:
|
1688 |
msgid "Mauritius"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: core/helpers/helper-form-templates.php:
|
1692 |
msgid "Maldives"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: core/helpers/helper-form-templates.php:
|
1696 |
msgid "Malawi"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: core/helpers/helper-form-templates.php:
|
1700 |
msgid "Mexico"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: core/helpers/helper-form-templates.php:
|
1704 |
msgid "Malaysia"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: core/helpers/helper-form-templates.php:
|
1708 |
msgid "Mozambique"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: core/helpers/helper-form-templates.php:
|
1712 |
msgid "Namibia"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: core/helpers/helper-form-templates.php:
|
1716 |
msgid "New Caledonia"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: core/helpers/helper-form-templates.php:
|
1720 |
msgid "Niger"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: core/helpers/helper-form-templates.php:
|
1724 |
msgid "Nigeria"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: core/helpers/helper-form-templates.php:
|
1728 |
msgid "Nicaragua"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: core/helpers/helper-form-templates.php:
|
1732 |
msgid "Netherlands"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: core/helpers/helper-form-templates.php:
|
1736 |
msgid "Norway"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: core/helpers/helper-form-templates.php:
|
1740 |
msgid "Nepal"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: core/helpers/helper-form-templates.php:
|
1744 |
msgid "Nauru"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: core/helpers/helper-form-templates.php:
|
1748 |
msgid "Niue"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: core/helpers/helper-form-templates.php:
|
1752 |
msgid "New Zealand"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: core/helpers/helper-form-templates.php:
|
1756 |
msgid "Oman"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: core/helpers/helper-form-templates.php:
|
1760 |
msgid "Panama"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: core/helpers/helper-form-templates.php:
|
1764 |
msgid "Peru"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: core/helpers/helper-form-templates.php:
|
1768 |
msgid "French Polynesia"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: core/helpers/helper-form-templates.php:
|
1772 |
msgid "Papua New Guinea"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: core/helpers/helper-form-templates.php:
|
1776 |
msgid "Philippines"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: core/helpers/helper-form-templates.php:
|
1780 |
msgid "Pakistan"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: core/helpers/helper-form-templates.php:
|
1784 |
msgid "Poland"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: core/helpers/helper-form-templates.php:
|
1788 |
msgid "Saint Pierre and Miquelon"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: core/helpers/helper-form-templates.php:
|
1792 |
msgid "Pitcairn"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: core/helpers/helper-form-templates.php:
|
1796 |
msgid "Portugal"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: core/helpers/helper-form-templates.php:
|
1800 |
msgid "Palau"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: core/helpers/helper-form-templates.php:
|
1804 |
msgid "Paraguay"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: core/helpers/helper-form-templates.php:
|
1808 |
msgid "Qatar"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: core/helpers/helper-form-templates.php:
|
1812 |
msgid "Romania"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: core/helpers/helper-form-templates.php:
|
1816 |
msgid "Serbia"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: core/helpers/helper-form-templates.php:
|
1820 |
msgid "Russian Federation"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: core/helpers/helper-form-templates.php:
|
1824 |
msgid "Rwanda"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: core/helpers/helper-form-templates.php:
|
1828 |
msgid "Saudi Arabia"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: core/helpers/helper-form-templates.php:
|
1832 |
msgid "Solomon Islands"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: core/helpers/helper-form-templates.php:
|
1836 |
msgid "Seychelles"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: core/helpers/helper-form-templates.php:
|
1840 |
msgid "Sudan"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: core/helpers/helper-form-templates.php:
|
1844 |
msgid "Sweden"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: core/helpers/helper-form-templates.php:
|
1848 |
msgid "Singapore"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: core/helpers/helper-form-templates.php:
|
1852 |
msgid "Saint Helena"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: core/helpers/helper-form-templates.php:
|
1856 |
msgid "Slovenia"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: core/helpers/helper-form-templates.php:
|
1860 |
msgid "Slovakia"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: core/helpers/helper-form-templates.php:
|
1864 |
msgid "Sierra Leone"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: core/helpers/helper-form-templates.php:
|
1868 |
msgid "San Marino"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: core/helpers/helper-form-templates.php:
|
1872 |
msgid "Senegal"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: core/helpers/helper-form-templates.php:
|
1876 |
msgid "Somalia"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: core/helpers/helper-form-templates.php:
|
1880 |
msgid "Suriname"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: core/helpers/helper-form-templates.php:
|
1884 |
msgid "Sao Tome and Principe"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: core/helpers/helper-form-templates.php:
|
1888 |
msgid "El Salvador"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: core/helpers/helper-form-templates.php:
|
1892 |
msgid "Syrian Arab Republic"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: core/helpers/helper-form-templates.php:
|
1896 |
msgid "Swaziland"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: core/helpers/helper-form-templates.php:
|
1900 |
msgid "Turks and Caicos Islands"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: core/helpers/helper-form-templates.php:
|
1904 |
msgid "Chad"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: core/helpers/helper-form-templates.php:
|
1908 |
msgid "Togo"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: core/helpers/helper-form-templates.php:
|
1912 |
msgid "Thailand"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: core/helpers/helper-form-templates.php:
|
1916 |
msgid "Tajikistan"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: core/helpers/helper-form-templates.php:
|
1920 |
msgid "Tokelau"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: core/helpers/helper-form-templates.php:
|
1924 |
msgid "Timor-leste"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: core/helpers/helper-form-templates.php:
|
1928 |
msgid "Turkmenistan"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: core/helpers/helper-form-templates.php:
|
1932 |
msgid "Tunisia"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: core/helpers/helper-form-templates.php:
|
1936 |
msgid "Tonga"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: core/helpers/helper-form-templates.php:
|
1940 |
msgid "Turkey"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: core/helpers/helper-form-templates.php:
|
1944 |
msgid "Trinidad and Tobago"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: core/helpers/helper-form-templates.php:
|
1948 |
msgid "Tuvalu"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: core/helpers/helper-form-templates.php:
|
1952 |
msgid "Taiwan, Province of China"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: core/helpers/helper-form-templates.php:
|
1956 |
msgid "Tanzania, United Republic of"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: core/helpers/helper-form-templates.php:
|
1960 |
msgid "Ukraine"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: core/helpers/helper-form-templates.php:
|
1964 |
msgid "Uganda"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: core/helpers/helper-form-templates.php:
|
1968 |
msgid "United States"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: core/helpers/helper-form-templates.php:
|
1972 |
msgid "Uruguay"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: core/helpers/helper-form-templates.php:
|
1976 |
msgid "Uzbekistan"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: core/helpers/helper-form-templates.php:
|
1980 |
msgid "Saint Vincent and the Grenadines"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: core/helpers/helper-form-templates.php:
|
1984 |
msgid "Venezuela"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: core/helpers/helper-form-templates.php:
|
1988 |
msgid "Virgin Islands, British"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: core/helpers/helper-form-templates.php:
|
1992 |
msgid "Virgin Islands, U.S."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: core/helpers/helper-form-templates.php:
|
1996 |
msgid "Vietnam"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: core/helpers/helper-form-templates.php:
|
2000 |
msgid "Vanuatu"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: core/helpers/helper-form-templates.php:
|
2004 |
msgid "Wallis and Futuna"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: core/helpers/helper-form-templates.php:
|
2008 |
msgid "Samoa"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: core/helpers/helper-form-templates.php:
|
2012 |
msgid "Yemen"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: core/helpers/helper-form-templates.php:
|
2016 |
msgid "Mayotte"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: core/helpers/helper-form-templates.php:
|
2020 |
msgid "South Africa"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: core/helpers/helper-form-templates.php:
|
2024 |
msgid "Zambia"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: core/helpers/helper-form-templates.php:
|
2028 |
msgid "Zimbabwe"
|
2029 |
msgstr ""
|
2030 |
|
@@ -2843,7 +2851,7 @@ msgstr ""
|
|
2843 |
#: core/templates/customize-form-part-footer.php:3
|
2844 |
#: core/templates/parts/customize-checkbox.php:129
|
2845 |
#: core/templates/parts/customize-radio.php:112
|
2846 |
-
#: core/templates/parts/customize-select.php:
|
2847 |
msgid "Delete"
|
2848 |
msgstr ""
|
2849 |
|
@@ -2854,7 +2862,7 @@ msgstr ""
|
|
2854 |
#: core/templates/customize-form-part-footer.php:5
|
2855 |
#: core/templates/parts/customize-checkbox.php:130
|
2856 |
#: core/templates/parts/customize-radio.php:113
|
2857 |
-
#: core/templates/parts/customize-select.php:
|
2858 |
msgid "More"
|
2859 |
msgstr ""
|
2860 |
|
@@ -2877,7 +2885,7 @@ msgid "Clear Results"
|
|
2877 |
msgstr ""
|
2878 |
|
2879 |
#: core/templates/customize-form-parts-drawer.php:30
|
2880 |
-
#: inc/classes/class-happyforms.php:
|
2881 |
#: inc/templates/customize-controls/checkbox_dummy.php:7
|
2882 |
msgid "Upgrade"
|
2883 |
msgstr ""
|
@@ -2924,7 +2932,7 @@ msgstr ""
|
|
2924 |
#: core/templates/parts/customize-radio.php:4
|
2925 |
#: core/templates/parts/customize-radio.php:103
|
2926 |
#: core/templates/parts/customize-select.php:4
|
2927 |
-
#: core/templates/parts/customize-select.php:
|
2928 |
#: core/templates/parts/customize-single-line-text.php:4
|
2929 |
msgid "Label"
|
2930 |
msgstr ""
|
@@ -3082,13 +3090,15 @@ msgstr ""
|
|
3082 |
#: core/templates/parts/customize-multi-line-text.php:71
|
3083 |
#: core/templates/parts/customize-number.php:99
|
3084 |
#: core/templates/parts/customize-radio.php:83
|
3085 |
-
#: core/templates/parts/customize-select.php:
|
3086 |
#: core/templates/parts/customize-single-line-text.php:62
|
3087 |
msgid "CSS classes"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
#: core/templates/parts/customize-checkbox.php:125
|
3091 |
-
|
|
|
|
|
3092 |
msgstr ""
|
3093 |
|
3094 |
#: core/templates/parts/customize-email.php:8
|
@@ -3173,15 +3183,14 @@ msgstr ""
|
|
3173 |
msgid "Prefix"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: core/templates/parts/customize-radio.php:108
|
3177 |
-
#: core/templates/parts/customize-select.php:100
|
3178 |
-
msgid "Make this option default"
|
3179 |
-
msgstr ""
|
3180 |
-
|
3181 |
#: core/templates/parts/customize-select.php:68
|
3182 |
msgid "Make searchable"
|
3183 |
msgstr ""
|
3184 |
|
|
|
|
|
|
|
|
|
3185 |
#: core/templates/parts/frontend-checkbox.php:13
|
3186 |
msgid "Select all"
|
3187 |
msgstr ""
|
@@ -3190,157 +3199,157 @@ msgstr ""
|
|
3190 |
msgid "Click to edit this part."
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: inc/classes/class-happyforms.php:
|
3194 |
msgid "Redirect on complete"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: inc/classes/class-happyforms.php:
|
3198 |
msgid ""
|
3199 |
-
"By default,
|
3200 |
-
"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: inc/classes/class-happyforms.php:
|
3204 |
msgid "Use theme styles"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: inc/classes/class-happyforms.php:
|
3208 |
msgid "Inherit theme default styles instead of using HappyForms styles."
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: inc/classes/class-happyforms.php:
|
3212 |
msgid "Shuffle parts"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: inc/classes/class-happyforms.php:
|
3216 |
msgid "Shuffle the order of all form parts to avoid biases in your responses."
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: inc/classes/class-happyforms.php:
|
3220 |
msgid "Use reCAPTCHA"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: inc/classes/class-happyforms.php:
|
3224 |
msgid "Protect your form against bots using your Google ReCaptcha credentials."
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: inc/classes/class-happyforms.php:
|
3228 |
msgid "Require password"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: inc/classes/class-happyforms.php:
|
3232 |
msgid "Only users with password will be able to view and submit the form."
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: inc/classes/class-happyforms.php:
|
3236 |
msgid "Open in overlay window"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: inc/classes/class-happyforms.php:
|
3240 |
msgid "Generate a link that can be clicked to open an overlay window for this form."
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: inc/classes/class-happyforms.php:
|
3244 |
msgid "Save abandoned submission"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: inc/classes/class-happyforms.php:
|
3248 |
-
msgid "Keep incomplete
|
3249 |
msgstr ""
|
3250 |
|
3251 |
-
#: inc/classes/class-happyforms.php:
|
3252 |
msgid "Give each submission an ID number"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: inc/classes/class-happyforms.php:
|
3256 |
msgid "Tag responses with a unique, incremental identifier."
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: inc/classes/class-happyforms.php:
|
3260 |
msgid "Preview values before submission"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: inc/classes/class-happyforms.php:
|
3264 |
msgid "Let your users review their submission before confirming it."
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: inc/classes/class-happyforms.php:
|
3268 |
msgid "Fade submit button until valid"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
-
#: inc/classes/class-happyforms.php:
|
3272 |
msgid ""
|
3273 |
"Reduce the opacity of the submit button until all required form parts are "
|
3274 |
"valid."
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: inc/classes/class-happyforms.php:
|
3278 |
msgid "Limit submissions"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: inc/classes/class-happyforms.php:
|
3282 |
msgid "Set limit on number of allowed form submission in general or per user."
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: inc/classes/class-happyforms.php:
|
3286 |
msgid "Schedule visibility"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: inc/classes/class-happyforms.php:
|
3290 |
msgid ""
|
3291 |
"Show or hide this form during a chosen time and day. Go to Settings > "
|
3292 |
"Timezone to set your city offset."
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: inc/classes/class-happyforms.php:
|
3296 |
msgid "Include mark and reply link"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: inc/classes/class-happyforms.php:
|
3300 |
msgid "Reply to your users and mark their submission as read in one click."
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: inc/classes/class-happyforms.php:
|
3304 |
msgid "Link to attachments in email"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: inc/classes/class-happyforms.php:
|
3308 |
msgid "Show attachments as links instead of a simple counter."
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: inc/classes/class-happyforms.php:
|
3312 |
msgid "Hide Placeholder parts in email"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: inc/classes/class-happyforms.php:
|
3316 |
msgid "Include referral link"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: inc/classes/class-happyforms.php:
|
3320 |
msgid "Include the page link your form was submitted from."
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: inc/classes/class-happyforms.php:
|
3324 |
msgid "Attach PDF to confirmation email"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: inc/classes/class-happyforms.php:
|
3328 |
msgid "Attach a PDF to the recipient's confirmation email."
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: inc/classes/class-happyforms.php:
|
3332 |
msgid "Send abandonment email"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: inc/classes/class-happyforms.php:
|
3336 |
-
msgid "Notify
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: inc/classes/class-happyforms.php:
|
3340 |
msgid "HappyForms Upgrade"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: inc/classes/class-happyforms.php:
|
3344 |
msgid ""
|
3345 |
"<p>Can we ask a favor?</p><p>You created your first form %s days ago — how "
|
3346 |
"time flies! Since then, we’ve answered hundreds of community emails and "
|
@@ -3383,11 +3392,11 @@ msgid "For formatted day, month, year and or time fields."
|
|
3383 |
msgstr ""
|
3384 |
|
3385 |
#: inc/classes/parts/class-part-legal-dummy.php:8
|
3386 |
-
msgid "
|
3387 |
msgstr ""
|
3388 |
|
3389 |
#: inc/classes/parts/class-part-legal-dummy.php:9
|
3390 |
-
msgid "For requiring
|
3391 |
msgstr ""
|
3392 |
|
3393 |
#: inc/classes/parts/class-part-mailchimp-dummy.php:8
|
@@ -3399,7 +3408,7 @@ msgid "For requiring permission before opting into your mailing list."
|
|
3399 |
msgstr ""
|
3400 |
|
3401 |
#: inc/classes/parts/class-part-narrative-dummy.php:8
|
3402 |
-
msgid "
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: inc/classes/parts/class-part-narrative-dummy.php:9
|
@@ -3487,7 +3496,7 @@ msgid "Site Address"
|
|
3487 |
msgstr ""
|
3488 |
|
3489 |
#: inc/classes/parts/class-part-website-url-dummy.php:9
|
3490 |
-
msgid "For formatted
|
3491 |
msgstr ""
|
3492 |
|
3493 |
#. Plugin URI of the plugin/theme
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.9.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2020-03-11 13:58:15+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
273 |
|
274 |
#: core/classes/class-form-email.php:133
|
275 |
msgid ""
|
276 |
+
"If your form contains an email field, users will receive an email with this "
|
277 |
+
"sender name."
|
278 |
msgstr ""
|
279 |
|
280 |
#: core/classes/class-form-email.php:139
|
281 |
msgid ""
|
282 |
+
"If your form contains an email field, users will receive an email with this "
|
283 |
+
"subject."
|
284 |
msgstr ""
|
285 |
|
286 |
#: core/classes/class-form-email.php:144
|
289 |
|
290 |
#: core/classes/class-form-email.php:145
|
291 |
msgid ""
|
292 |
+
"If your form contains an email field, users will receive an email with this "
|
293 |
+
"content."
|
294 |
msgstr ""
|
295 |
|
296 |
#: core/classes/class-form-email.php:150
|
309 |
msgid "Missing validation callback for field %s"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: core/classes/class-form-setup.php:52
|
313 |
msgid "Thank you! Your submission has been sent."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: core/classes/class-form-setup.php:56
|
317 |
msgid "There is a problem! Please review your submission."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: core/classes/class-form-setup.php:76
|
321 |
msgid "This field is required."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: core/classes/class-form-setup.php:80
|
325 |
msgid "(optional)"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: core/classes/class-form-setup.php:84
|
329 |
msgid "Send"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: core/classes/class-form-setup.php:108
|
333 |
msgid "Validate your submission"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: core/classes/class-form-setup.php:116
|
337 |
msgid "Review submission"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: core/classes/class-form-setup.php:164
|
341 |
msgid "Success message"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: core/classes/class-form-setup.php:165
|
345 |
msgid ""
|
346 |
"This is the message your users will see after succesfully submitting your "
|
347 |
"form."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: core/classes/class-form-setup.php:170
|
351 |
msgid "Error message"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: core/classes/class-form-setup.php:171
|
355 |
msgid ""
|
356 |
"This is the message your users will see when there are form errors "
|
357 |
"preventing submission."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: core/classes/class-form-setup.php:176
|
361 |
msgid "Optional part label"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: core/classes/class-form-setup.php:177
|
365 |
msgid ""
|
366 |
"Mark optional parts in your form to let your users distinguish them from "
|
367 |
"required parts."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: core/classes/class-form-setup.php:182
|
371 |
msgid "Submit button label"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: core/classes/class-form-setup.php:183
|
375 |
msgid "Change text of submit button to describe an action your form performs."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: core/classes/class-form-setup.php:188
|
379 |
msgid "Submit button CSS classes"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: core/classes/class-form-setup.php:189
|
383 |
msgid ""
|
384 |
"Add custom CSS classes separated by space for targeting a button in your "
|
385 |
"stylesheet."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: core/classes/class-form-setup.php:194
|
389 |
+
msgid "Use custom HTML ID"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: core/classes/class-form-setup.php:196
|
393 |
msgid "Add a unique HTML ID to your form. Write without a hash (#) character."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: core/classes/class-form-setup.php:204
|
397 |
+
msgid "Form HTML ID"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: core/classes/class-form-setup.php:212
|
401 |
msgid "Hide form after submit"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: core/classes/class-form-setup.php:213
|
405 |
msgid ""
|
406 |
"Hide all form parts and display just title and confirmation message on "
|
407 |
"submit."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: core/classes/class-form-setup.php:218
|
411 |
msgid "Spam prevention"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: core/classes/class-form-setup.php:219
|
415 |
msgid "Protect your form against bots by using HoneyPot security."
|
416 |
msgstr ""
|
417 |
|
1060 |
msgid "For selecting one option from a long list. Default value adjustable."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: core/classes/parts/class-part-select.php:75
|
1064 |
+
msgid "No results"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
#: core/classes/parts/class-part-single-line-text.php:8
|
1068 |
msgid "Short Text"
|
1069 |
msgstr ""
|
1112 |
msgid "Spam protection, skip this field"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: core/helpers/helper-form-templates.php:1022
|
1116 |
msgid "January"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: core/helpers/helper-form-templates.php:1023
|
1120 |
msgid "February"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: core/helpers/helper-form-templates.php:1024
|
1124 |
msgid "March"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: core/helpers/helper-form-templates.php:1025
|
1128 |
msgid "April"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: core/helpers/helper-form-templates.php:1026
|
1132 |
msgid "May"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: core/helpers/helper-form-templates.php:1027
|
1136 |
msgid "June"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: core/helpers/helper-form-templates.php:1028
|
1140 |
msgid "July"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: core/helpers/helper-form-templates.php:1029
|
1144 |
msgid "August"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: core/helpers/helper-form-templates.php:1030
|
1148 |
msgid "September"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: core/helpers/helper-form-templates.php:1031
|
1152 |
msgid "October"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: core/helpers/helper-form-templates.php:1032
|
1156 |
msgid "November"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: core/helpers/helper-form-templates.php:1033
|
1160 |
msgid "December"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: core/helpers/helper-form-templates.php:1074 core/helpers/helper-misc.php:218
|
1164 |
msgid "Andorra"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: core/helpers/helper-form-templates.php:1075 core/helpers/helper-misc.php:436
|
1168 |
msgid "United Arab Emirates"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: core/helpers/helper-form-templates.php:1076 core/helpers/helper-misc.php:214
|
1172 |
msgid "Afghanistan"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: core/helpers/helper-form-templates.php:1077 core/helpers/helper-misc.php:222
|
1176 |
msgid "Antigua and Barbuda"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: core/helpers/helper-form-templates.php:1078 core/helpers/helper-misc.php:220
|
1180 |
msgid "Anguilla"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: core/helpers/helper-form-templates.php:1079 core/helpers/helper-misc.php:215
|
1184 |
msgid "Albania"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: core/helpers/helper-form-templates.php:1080 core/helpers/helper-misc.php:224
|
1188 |
msgid "Armenia"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: core/helpers/helper-form-templates.php:1081 core/helpers/helper-misc.php:219
|
1192 |
msgid "Angola"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: core/helpers/helper-form-templates.php:1082 core/helpers/helper-misc.php:221
|
1196 |
msgid "Antarctica"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: core/helpers/helper-form-templates.php:1083 core/helpers/helper-misc.php:223
|
1200 |
msgid "Argentina"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: core/helpers/helper-form-templates.php:1084 core/helpers/helper-misc.php:217
|
1204 |
msgid "American Samoa"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: core/helpers/helper-form-templates.php:1085 core/helpers/helper-misc.php:227
|
1208 |
msgid "Austria"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: core/helpers/helper-form-templates.php:1086 core/helpers/helper-misc.php:226
|
1212 |
msgid "Australia"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: core/helpers/helper-form-templates.php:1087 core/helpers/helper-misc.php:225
|
1216 |
msgid "Aruba"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: core/helpers/helper-form-templates.php:1088 core/helpers/helper-misc.php:228
|
1220 |
msgid "Azerbaijan"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: core/helpers/helper-form-templates.php:1089
|
1224 |
msgid "Bosnia and Herzegovina"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:232
|
1228 |
msgid "Barbados"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: core/helpers/helper-form-templates.php:1091 core/helpers/helper-misc.php:231
|
1232 |
msgid "Bangladesh"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:234
|
1236 |
msgid "Belgium"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:247
|
1240 |
msgid "Burkina Faso"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: core/helpers/helper-form-templates.php:1094 core/helpers/helper-misc.php:246
|
1244 |
msgid "Bulgaria"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:230
|
1248 |
msgid "Bahrain"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:248
|
1252 |
msgid "Burundi"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: core/helpers/helper-form-templates.php:1097 core/helpers/helper-misc.php:236
|
1256 |
msgid "Benin"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: core/helpers/helper-form-templates.php:1098
|
1260 |
msgid "Saint Barthelemy"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: core/helpers/helper-form-templates.php:1099 core/helpers/helper-misc.php:237
|
1264 |
msgid "Bermuda"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:245
|
1268 |
msgid "Brunei Darussalam"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:239
|
1272 |
msgid "Bolivia"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: core/helpers/helper-form-templates.php:1102 core/helpers/helper-misc.php:243
|
1276 |
msgid "Brazil"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:229
|
1280 |
msgid "Bahamas"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: core/helpers/helper-form-templates.php:1104 core/helpers/helper-misc.php:238
|
1284 |
msgid "Bhutan"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:241
|
1288 |
msgid "Botswana"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: core/helpers/helper-form-templates.php:1106 core/helpers/helper-misc.php:233
|
1292 |
msgid "Belarus"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:235
|
1296 |
msgid "Belize"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: core/helpers/helper-form-templates.php:1108 core/helpers/helper-misc.php:251
|
1300 |
msgid "Canada"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: core/helpers/helper-form-templates.php:1109
|
1304 |
msgid "Congo, The Democratic Republic of the"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:254
|
1308 |
msgid "Central African Republic"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:262
|
1312 |
msgid "Congo"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: core/helpers/helper-form-templates.php:1112 core/helpers/helper-misc.php:419
|
1316 |
msgid "Switzerland"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: core/helpers/helper-form-templates.php:1113 core/helpers/helper-misc.php:264
|
1320 |
msgid "Cook Islands"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:256
|
1324 |
msgid "Chile"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:250
|
1328 |
msgid "Cameroon"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:257
|
1332 |
msgid "China"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: core/helpers/helper-form-templates.php:1117 core/helpers/helper-misc.php:260
|
1336 |
msgid "Colombia"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: core/helpers/helper-form-templates.php:1118 core/helpers/helper-misc.php:265
|
1340 |
msgid "Costa Rica"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: core/helpers/helper-form-templates.php:1119 core/helpers/helper-misc.php:268
|
1344 |
msgid "Cuba"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:252
|
1348 |
msgid "Cape Verde"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:269
|
1352 |
msgid "Cyprus"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: core/helpers/helper-form-templates.php:1122 core/helpers/helper-misc.php:270
|
1356 |
msgid "Czech Republic"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:295
|
1360 |
msgid "Germany"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:272
|
1364 |
msgid "Djibouti"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: core/helpers/helper-form-templates.php:1125 core/helpers/helper-misc.php:271
|
1368 |
msgid "Denmark"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:273
|
1372 |
msgid "Dominica"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:274
|
1376 |
msgid "Dominican Republic"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:216
|
1380 |
msgid "Algeria"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:276
|
1384 |
msgid "Ecuador"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: core/helpers/helper-form-templates.php:1130 core/helpers/helper-misc.php:281
|
1388 |
msgid "Estonia"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:277
|
1392 |
msgid "Egypt"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:280
|
1396 |
msgid "Eritrea"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:410
|
1400 |
msgid "Spain"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: core/helpers/helper-form-templates.php:1134 core/helpers/helper-misc.php:282
|
1404 |
msgid "Ethiopia"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:286
|
1408 |
msgid "Finland"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: core/helpers/helper-form-templates.php:1136 core/helpers/helper-misc.php:285
|
1412 |
msgid "Fiji"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:283
|
1416 |
msgid "Falkland Islands (Malvinas)"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:354
|
1420 |
msgid "Micronesia, Federated States of"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: core/helpers/helper-form-templates.php:1139 core/helpers/helper-misc.php:284
|
1424 |
msgid "Faroe Islands"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:287
|
1428 |
msgid "France"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: core/helpers/helper-form-templates.php:1141 core/helpers/helper-misc.php:292
|
1432 |
msgid "Gabon"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:437
|
1436 |
msgid "United Kingdom"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:300
|
1440 |
msgid "Grenada"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:294
|
1444 |
msgid "Georgia"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:296
|
1448 |
msgid "Ghana"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:297
|
1452 |
msgid "Gibraltar"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:299
|
1456 |
msgid "Greenland"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:293
|
1460 |
msgid "Gambia"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:304
|
1464 |
msgid "Guinea"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:298
|
1468 |
msgid "Greece"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:303
|
1472 |
msgid "Guatemala"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:302
|
1476 |
msgid "Guam"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: core/helpers/helper-form-templates.php:1153
|
1480 |
msgid "Guinea-bissau"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:306
|
1484 |
msgid "Guyana"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:311
|
1488 |
msgid "Hong Kong"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:310
|
1492 |
msgid "Honduras"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: core/helpers/helper-form-templates.php:1157
|
1496 |
msgid "Croatia"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:307
|
1500 |
msgid "Haiti"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:312
|
1504 |
msgid "Hungary"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: core/helpers/helper-form-templates.php:1160 core/helpers/helper-misc.php:315
|
1508 |
msgid "Indonesia"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:318
|
1512 |
msgid "Ireland"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: core/helpers/helper-form-templates.php:1162 core/helpers/helper-misc.php:319
|
1516 |
msgid "Israel"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:314
|
1520 |
msgid "India"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: core/helpers/helper-form-templates.php:1164 core/helpers/helper-misc.php:317
|
1524 |
msgid "Iraq"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: core/helpers/helper-form-templates.php:1165
|
1528 |
msgid "Iran, Islamic Republic of"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:313
|
1532 |
msgid "Iceland"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:320
|
1536 |
msgid "Italy"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:321
|
1540 |
msgid "Jamaica"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:323
|
1544 |
msgid "Jordan"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:322
|
1548 |
msgid "Japan"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:325
|
1552 |
msgid "Kenya"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: core/helpers/helper-form-templates.php:1172 core/helpers/helper-misc.php:330
|
1556 |
msgid "Kyrgyzstan"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:249
|
1560 |
msgid "Cambodia"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:326
|
1564 |
msgid "Kiribati"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:261
|
1568 |
msgid "Comoros"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:393
|
1572 |
msgid "Saint Kitts and Nevis"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: core/helpers/helper-form-templates.php:1177
|
1576 |
msgid "Korea Democratic Peoples Republic of"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: core/helpers/helper-form-templates.php:1178
|
1580 |
msgid "Korea Republic of"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:329
|
1584 |
msgid "Kuwait"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: core/helpers/helper-form-templates.php:1180 core/helpers/helper-misc.php:253
|
1588 |
msgid "Cayman Islands"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: core/helpers/helper-form-templates.php:1181
|
1592 |
msgid "Lao Peoples Democratic Republic"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:333
|
1596 |
msgid "Lebanon"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:394
|
1600 |
msgid "Saint Lucia"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: core/helpers/helper-form-templates.php:1184 core/helpers/helper-misc.php:337
|
1604 |
msgid "Liechtenstein"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: core/helpers/helper-form-templates.php:1185 core/helpers/helper-misc.php:411
|
1608 |
msgid "Sri Lanka"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:335
|
1612 |
msgid "Liberia"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:334
|
1616 |
msgid "Lesotho"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: core/helpers/helper-form-templates.php:1188 core/helpers/helper-misc.php:338
|
1620 |
msgid "Lithuania"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:339
|
1624 |
msgid "Luxembourg"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:332
|
1628 |
msgid "Latvia"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:336
|
1632 |
msgid "Libyan Arab Jamahiriya"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:359
|
1636 |
msgid "Morocco"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:356
|
1640 |
msgid "Monaco"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:355
|
1644 |
msgid "Moldova, Republic of"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: core/helpers/helper-form-templates.php:1195
|
1648 |
msgid "Montenegro"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:342
|
1652 |
msgid "Madagascar"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:348
|
1656 |
msgid "Marshall Islands"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:341
|
1660 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:346
|
1664 |
msgid "Mali"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:361
|
1668 |
msgid "Myanmar"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:357
|
1672 |
msgid "Mongolia"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: core/helpers/helper-form-templates.php:1202 core/helpers/helper-misc.php:340
|
1676 |
msgid "Macau"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:374
|
1680 |
msgid "Northern Mariana Islands"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:350
|
1684 |
msgid "Mauritania"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: core/helpers/helper-form-templates.php:1205 core/helpers/helper-misc.php:358
|
1688 |
msgid "Montserrat"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: core/helpers/helper-form-templates.php:1206 core/helpers/helper-misc.php:347
|
1692 |
msgid "Malta"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:351
|
1696 |
msgid "Mauritius"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:345
|
1700 |
msgid "Maldives"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:343
|
1704 |
msgid "Malawi"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:353
|
1708 |
msgid "Mexico"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:344
|
1712 |
msgid "Malaysia"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:360
|
1716 |
msgid "Mozambique"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:362
|
1720 |
msgid "Namibia"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:367
|
1724 |
msgid "New Caledonia"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:370
|
1728 |
msgid "Niger"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:371
|
1732 |
msgid "Nigeria"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:369
|
1736 |
msgid "Nicaragua"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:365
|
1740 |
msgid "Netherlands"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:375
|
1744 |
msgid "Norway"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: core/helpers/helper-form-templates.php:1220 core/helpers/helper-misc.php:364
|
1748 |
msgid "Nepal"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:363
|
1752 |
msgid "Nauru"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:372
|
1756 |
msgid "Niue"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: core/helpers/helper-form-templates.php:1223 core/helpers/helper-misc.php:368
|
1760 |
msgid "New Zealand"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: core/helpers/helper-form-templates.php:1224 core/helpers/helper-misc.php:376
|
1764 |
msgid "Oman"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:379
|
1768 |
msgid "Panama"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:382
|
1772 |
msgid "Peru"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: core/helpers/helper-form-templates.php:1227 core/helpers/helper-misc.php:290
|
1776 |
msgid "French Polynesia"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:380
|
1780 |
msgid "Papua New Guinea"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:383
|
1784 |
msgid "Philippines"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:377
|
1788 |
msgid "Pakistan"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:385
|
1792 |
msgid "Poland"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: core/helpers/helper-form-templates.php:1232
|
1796 |
msgid "Saint Pierre and Miquelon"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:384
|
1800 |
msgid "Pitcairn"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:386
|
1804 |
msgid "Portugal"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:378
|
1808 |
msgid "Palau"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:381
|
1812 |
msgid "Paraguay"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:388
|
1816 |
msgid "Qatar"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: core/helpers/helper-form-templates.php:1238 core/helpers/helper-misc.php:390
|
1820 |
msgid "Romania"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: core/helpers/helper-form-templates.php:1239
|
1824 |
msgid "Serbia"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: core/helpers/helper-form-templates.php:1240 core/helpers/helper-misc.php:391
|
1828 |
msgid "Russian Federation"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:392
|
1832 |
msgid "Rwanda"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:399
|
1836 |
msgid "Saudi Arabia"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:406
|
1840 |
msgid "Solomon Islands"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:401
|
1844 |
msgid "Seychelles"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:414
|
1848 |
msgid "Sudan"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: core/helpers/helper-form-templates.php:1246 core/helpers/helper-misc.php:418
|
1852 |
msgid "Sweden"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: core/helpers/helper-form-templates.php:1247 core/helpers/helper-misc.php:403
|
1856 |
msgid "Singapore"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: core/helpers/helper-form-templates.php:1248
|
1860 |
msgid "Saint Helena"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:405
|
1864 |
msgid "Slovenia"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: core/helpers/helper-form-templates.php:1250
|
1868 |
msgid "Slovakia"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:402
|
1872 |
msgid "Sierra Leone"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:397
|
1876 |
msgid "San Marino"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:400
|
1880 |
msgid "Senegal"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:407
|
1884 |
msgid "Somalia"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: core/helpers/helper-form-templates.php:1255 core/helpers/helper-misc.php:415
|
1888 |
msgid "Suriname"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: core/helpers/helper-form-templates.php:1256 core/helpers/helper-misc.php:398
|
1892 |
msgid "Sao Tome and Principe"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: core/helpers/helper-form-templates.php:1257 core/helpers/helper-misc.php:278
|
1896 |
msgid "El Salvador"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: core/helpers/helper-form-templates.php:1258 core/helpers/helper-misc.php:420
|
1900 |
msgid "Syrian Arab Republic"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: core/helpers/helper-form-templates.php:1259 core/helpers/helper-misc.php:417
|
1904 |
msgid "Swaziland"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:432
|
1908 |
msgid "Turks and Caicos Islands"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: core/helpers/helper-form-templates.php:1261 core/helpers/helper-misc.php:255
|
1912 |
msgid "Chad"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:425
|
1916 |
msgid "Togo"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:424
|
1920 |
msgid "Thailand"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: core/helpers/helper-form-templates.php:1264 core/helpers/helper-misc.php:422
|
1924 |
msgid "Tajikistan"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: core/helpers/helper-form-templates.php:1265 core/helpers/helper-misc.php:426
|
1928 |
msgid "Tokelau"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: core/helpers/helper-form-templates.php:1266
|
1932 |
msgid "Timor-leste"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:431
|
1936 |
msgid "Turkmenistan"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: core/helpers/helper-form-templates.php:1268 core/helpers/helper-misc.php:429
|
1940 |
msgid "Tunisia"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:427
|
1944 |
msgid "Tonga"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: core/helpers/helper-form-templates.php:1270 core/helpers/helper-misc.php:430
|
1948 |
msgid "Turkey"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: core/helpers/helper-form-templates.php:1271 core/helpers/helper-misc.php:428
|
1952 |
msgid "Trinidad and Tobago"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:433
|
1956 |
msgid "Tuvalu"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: core/helpers/helper-form-templates.php:1273 core/helpers/helper-misc.php:421
|
1960 |
msgid "Taiwan, Province of China"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:423
|
1964 |
msgid "Tanzania, United Republic of"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:435
|
1968 |
msgid "Ukraine"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:434
|
1972 |
msgid "Uganda"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: core/helpers/helper-form-templates.php:1277 core/helpers/helper-misc.php:438
|
1976 |
msgid "United States"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: core/helpers/helper-form-templates.php:1278 core/helpers/helper-misc.php:440
|
1980 |
msgid "Uruguay"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: core/helpers/helper-form-templates.php:1279 core/helpers/helper-misc.php:441
|
1984 |
msgid "Uzbekistan"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: core/helpers/helper-form-templates.php:1280 core/helpers/helper-misc.php:395
|
1988 |
msgid "Saint Vincent and the Grenadines"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:443
|
1992 |
msgid "Venezuela"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: core/helpers/helper-form-templates.php:1282
|
1996 |
msgid "Virgin Islands, British"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: core/helpers/helper-form-templates.php:1283
|
2000 |
msgid "Virgin Islands, U.S."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: core/helpers/helper-form-templates.php:1284 core/helpers/helper-misc.php:444
|
2004 |
msgid "Vietnam"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: core/helpers/helper-form-templates.php:1285 core/helpers/helper-misc.php:442
|
2008 |
msgid "Vanuatu"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: core/helpers/helper-form-templates.php:1286
|
2012 |
msgid "Wallis and Futuna"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: core/helpers/helper-form-templates.php:1287 core/helpers/helper-misc.php:396
|
2016 |
msgid "Samoa"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: core/helpers/helper-form-templates.php:1288 core/helpers/helper-misc.php:449
|
2020 |
msgid "Yemen"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: core/helpers/helper-form-templates.php:1289 core/helpers/helper-misc.php:352
|
2024 |
msgid "Mayotte"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: core/helpers/helper-form-templates.php:1290 core/helpers/helper-misc.php:408
|
2028 |
msgid "South Africa"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: core/helpers/helper-form-templates.php:1291 core/helpers/helper-misc.php:451
|
2032 |
msgid "Zambia"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: core/helpers/helper-form-templates.php:1292 core/helpers/helper-misc.php:452
|
2036 |
msgid "Zimbabwe"
|
2037 |
msgstr ""
|
2038 |
|
2851 |
#: core/templates/customize-form-part-footer.php:3
|
2852 |
#: core/templates/parts/customize-checkbox.php:129
|
2853 |
#: core/templates/parts/customize-radio.php:112
|
2854 |
+
#: core/templates/parts/customize-select.php:110
|
2855 |
msgid "Delete"
|
2856 |
msgstr ""
|
2857 |
|
2862 |
#: core/templates/customize-form-part-footer.php:5
|
2863 |
#: core/templates/parts/customize-checkbox.php:130
|
2864 |
#: core/templates/parts/customize-radio.php:113
|
2865 |
+
#: core/templates/parts/customize-select.php:111
|
2866 |
msgid "More"
|
2867 |
msgstr ""
|
2868 |
|
2885 |
msgstr ""
|
2886 |
|
2887 |
#: core/templates/customize-form-parts-drawer.php:30
|
2888 |
+
#: inc/classes/class-happyforms.php:231
|
2889 |
#: inc/templates/customize-controls/checkbox_dummy.php:7
|
2890 |
msgid "Upgrade"
|
2891 |
msgstr ""
|
2932 |
#: core/templates/parts/customize-radio.php:4
|
2933 |
#: core/templates/parts/customize-radio.php:103
|
2934 |
#: core/templates/parts/customize-select.php:4
|
2935 |
+
#: core/templates/parts/customize-select.php:101
|
2936 |
#: core/templates/parts/customize-single-line-text.php:4
|
2937 |
msgid "Label"
|
2938 |
msgstr ""
|
3090 |
#: core/templates/parts/customize-multi-line-text.php:71
|
3091 |
#: core/templates/parts/customize-number.php:99
|
3092 |
#: core/templates/parts/customize-radio.php:83
|
3093 |
+
#: core/templates/parts/customize-select.php:83
|
3094 |
#: core/templates/parts/customize-single-line-text.php:62
|
3095 |
msgid "CSS classes"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
#: core/templates/parts/customize-checkbox.php:125
|
3099 |
+
#: core/templates/parts/customize-radio.php:108
|
3100 |
+
#: core/templates/parts/customize-select.php:106
|
3101 |
+
msgid "Make this choice default"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
#: core/templates/parts/customize-email.php:8
|
3183 |
msgid "Prefix"
|
3184 |
msgstr ""
|
3185 |
|
|
|
|
|
|
|
|
|
|
|
3186 |
#: core/templates/parts/customize-select.php:68
|
3187 |
msgid "Make searchable"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: core/templates/parts/customize-select.php:73
|
3191 |
+
msgid "'No results' label"
|
3192 |
+
msgstr ""
|
3193 |
+
|
3194 |
#: core/templates/parts/frontend-checkbox.php:13
|
3195 |
msgid "Select all"
|
3196 |
msgstr ""
|
3199 |
msgid "Click to edit this part."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: inc/classes/class-happyforms.php:82
|
3203 |
msgid "Redirect on complete"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: inc/classes/class-happyforms.php:83
|
3207 |
msgid ""
|
3208 |
+
"By default, users will be redirected to the post or page displaying this "
|
3209 |
+
"form. To set a custom redirect webpage, add a link here."
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: inc/classes/class-happyforms.php:89
|
3213 |
msgid "Use theme styles"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: inc/classes/class-happyforms.php:90
|
3217 |
msgid "Inherit theme default styles instead of using HappyForms styles."
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: inc/classes/class-happyforms.php:96
|
3221 |
msgid "Shuffle parts"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: inc/classes/class-happyforms.php:97
|
3225 |
msgid "Shuffle the order of all form parts to avoid biases in your responses."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: inc/classes/class-happyforms.php:103
|
3229 |
msgid "Use reCAPTCHA"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: inc/classes/class-happyforms.php:104
|
3233 |
msgid "Protect your form against bots using your Google ReCaptcha credentials."
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: inc/classes/class-happyforms.php:110
|
3237 |
msgid "Require password"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: inc/classes/class-happyforms.php:111
|
3241 |
msgid "Only users with password will be able to view and submit the form."
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: inc/classes/class-happyforms.php:117
|
3245 |
msgid "Open in overlay window"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: inc/classes/class-happyforms.php:118
|
3249 |
msgid "Generate a link that can be clicked to open an overlay window for this form."
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: inc/classes/class-happyforms.php:124
|
3253 |
msgid "Save abandoned submission"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: inc/classes/class-happyforms.php:125
|
3257 |
+
msgid "Keep incomplete users responses stored in your WordPress database."
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: inc/classes/class-happyforms.php:131
|
3261 |
msgid "Give each submission an ID number"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: inc/classes/class-happyforms.php:132
|
3265 |
msgid "Tag responses with a unique, incremental identifier."
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: inc/classes/class-happyforms.php:138
|
3269 |
msgid "Preview values before submission"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: inc/classes/class-happyforms.php:139
|
3273 |
msgid "Let your users review their submission before confirming it."
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: inc/classes/class-happyforms.php:145
|
3277 |
msgid "Fade submit button until valid"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: inc/classes/class-happyforms.php:146
|
3281 |
msgid ""
|
3282 |
"Reduce the opacity of the submit button until all required form parts are "
|
3283 |
"valid."
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: inc/classes/class-happyforms.php:152
|
3287 |
msgid "Limit submissions"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: inc/classes/class-happyforms.php:153
|
3291 |
msgid "Set limit on number of allowed form submission in general or per user."
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: inc/classes/class-happyforms.php:159
|
3295 |
msgid "Schedule visibility"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: inc/classes/class-happyforms.php:160
|
3299 |
msgid ""
|
3300 |
"Show or hide this form during a chosen time and day. Go to Settings > "
|
3301 |
"Timezone to set your city offset."
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/classes/class-happyforms.php:170
|
3305 |
msgid "Include mark and reply link"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/classes/class-happyforms.php:171
|
3309 |
msgid "Reply to your users and mark their submission as read in one click."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/classes/class-happyforms.php:177
|
3313 |
msgid "Link to attachments in email"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/classes/class-happyforms.php:178
|
3317 |
msgid "Show attachments as links instead of a simple counter."
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: inc/classes/class-happyforms.php:184
|
3321 |
msgid "Hide Placeholder parts in email"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: inc/classes/class-happyforms.php:190
|
3325 |
msgid "Include referral link"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: inc/classes/class-happyforms.php:191
|
3329 |
msgid "Include the page link your form was submitted from."
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: inc/classes/class-happyforms.php:197
|
3333 |
msgid "Attach PDF to confirmation email"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: inc/classes/class-happyforms.php:198
|
3337 |
msgid "Attach a PDF to the recipient's confirmation email."
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: inc/classes/class-happyforms.php:204
|
3341 |
msgid "Send abandonment email"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: inc/classes/class-happyforms.php:205
|
3345 |
+
msgid "Notify users when they abandon your form before submitting it."
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: inc/classes/class-happyforms.php:230
|
3349 |
msgid "HappyForms Upgrade"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: inc/classes/class-happyforms.php:355
|
3353 |
msgid ""
|
3354 |
"<p>Can we ask a favor?</p><p>You created your first form %s days ago — how "
|
3355 |
"time flies! Since then, we’ve answered hundreds of community emails and "
|
3392 |
msgstr ""
|
3393 |
|
3394 |
#: inc/classes/parts/class-part-legal-dummy.php:8
|
3395 |
+
msgid "Compliance"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
#: inc/classes/parts/class-part-legal-dummy.php:9
|
3399 |
+
msgid "For requiring permission before accepting submission."
|
3400 |
msgstr ""
|
3401 |
|
3402 |
#: inc/classes/parts/class-part-mailchimp-dummy.php:8
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: inc/classes/parts/class-part-narrative-dummy.php:8
|
3411 |
+
msgid "Blanks"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
#: inc/classes/parts/class-part-narrative-dummy.php:9
|
3496 |
msgstr ""
|
3497 |
|
3498 |
#: inc/classes/parts/class-part-website-url-dummy.php:9
|
3499 |
+
msgid "For formatted site URLs."
|
3500 |
msgstr ""
|
3501 |
|
3502 |
#. Plugin URI of the plugin/theme
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.3
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.9.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -38,7 +38,7 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
38 |
* Create multi-column layouts with a single click.
|
39 |
* Easily duplicate forms.
|
40 |
* Confirmation message on submission.
|
41 |
-
* Confirmation email sent to
|
42 |
* One-click HoneyPot spam prevention.
|
43 |
* Over 50 styles controls built-in.
|
44 |
* GDPR and 508 compliant forms and secure forms.
|
@@ -47,7 +47,7 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
47 |
|
48 |
* Short Text — For fields like ‘First Name’ and ‘Last Name’.
|
49 |
* Long Text — For longer messages and feedback.
|
50 |
-
* Email — Validate
|
51 |
* Multiple Choice — Checkboxes for multiple selections.
|
52 |
* Single Choice — Radio buttons for single selection.
|
53 |
* Dropdown — For long lists and single selection.
|
@@ -97,6 +97,13 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
97 |
|
98 |
== Changelog ==
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
= 1.9.5 =
|
101 |
* New feature: Added support for prefix and suffix in Short Text, Email, and Number part inputs.
|
102 |
* New feature: Added support for input placeholder in confirmation fields.
|
@@ -580,6 +587,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
580 |
|
581 |
== Upgrade Notice ==
|
582 |
|
|
|
|
|
|
|
583 |
= 1.9.5 =
|
584 |
* Support for prefix and suffix in selected parts. Added placeholder control to confirmation fields. Improvements to front-end styles and form builder UI.
|
585 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.3
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.9.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
38 |
* Create multi-column layouts with a single click.
|
39 |
* Easily duplicate forms.
|
40 |
* Confirmation message on submission.
|
41 |
+
* Confirmation email sent to user.
|
42 |
* One-click HoneyPot spam prevention.
|
43 |
* Over 50 styles controls built-in.
|
44 |
* GDPR and 508 compliant forms and secure forms.
|
47 |
|
48 |
* Short Text — For fields like ‘First Name’ and ‘Last Name’.
|
49 |
* Long Text — For longer messages and feedback.
|
50 |
+
* Email — Validate users email addresses before submission.
|
51 |
* Multiple Choice — Checkboxes for multiple selections.
|
52 |
* Single Choice — Radio buttons for single selection.
|
53 |
* Dropdown — For long lists and single selection.
|
97 |
|
98 |
== Changelog ==
|
99 |
|
100 |
+
= 1.9.6 =
|
101 |
+
* Improvement: When searching for specific choice in Dropdown part, a configurable "No results" message is shown if no choice is found.
|
102 |
+
* Improvement: Custom HTML ID of the form using "Form HTML ID" control can now be toggled by checking "Use custom HTML ID" control.
|
103 |
+
* Bugfix: Form ID used as a prefix for all selectors in Additional CSS section in Style tab was using ID of child element instead of parent.
|
104 |
+
* Bugfix: Number part was returning an error when 0 was submitted even if when it was in specified range of min and max value.
|
105 |
+
* Bugfix: Various fixes related to front-end and form builder UI styles.
|
106 |
+
|
107 |
= 1.9.5 =
|
108 |
* New feature: Added support for prefix and suffix in Short Text, Email, and Number part inputs.
|
109 |
* New feature: Added support for input placeholder in confirmation fields.
|
587 |
|
588 |
== Upgrade Notice ==
|
589 |
|
590 |
+
= 1.9.6 =
|
591 |
+
* Miscellaneous improvements and bugfixes.
|
592 |
+
|
593 |
= 1.9.5 =
|
594 |
* Support for prefix and suffix in selected parts. Added placeholder control to confirmation fields. Improvements to front-end styles and form builder UI.
|
595 |
|