Version Description
- New feature: Labels can now be toggled on a per-field basis.
- Improvement: Better support for Elementor popups.
- Improvement: Long Answer field now suppports a minimum of 2 rows.
- Bugfix: Screen reader styles were causing glitches on some themes.
Download this release
Release Info
Developer | happyforms |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.12.3 |
Comparing to | |
See all releases |
Code changes from version 1.12.2 to 1.12.3
- core/assets/css/customize.css +18 -0
- core/assets/css/layout.css +24 -20
- core/classes/class-form-assets.php +19 -0
- core/classes/class-form-part-library.php +1 -3
- core/classes/class-form-styles.php +1 -19
- core/classes/parts/class-part-checkbox.php +1 -1
- core/classes/parts/class-part-email.php +2 -2
- core/classes/parts/class-part-multi-line-text.php +1 -1
- core/classes/parts/class-part-number.php +1 -1
- core/classes/parts/class-part-radio.php +1 -1
- core/classes/parts/class-part-select.php +1 -1
- core/classes/parts/class-part-single-line-text.php +1 -1
- core/helpers/helper-form-templates.php +4 -0
- core/templates/parts/customize-checkbox.php +14 -2
- core/templates/parts/customize-email.php +14 -2
- core/templates/parts/customize-multi-line-text.php +15 -3
- core/templates/parts/customize-number.php +14 -2
- core/templates/parts/customize-radio.php +14 -2
- core/templates/parts/customize-select.php +14 -2
- core/templates/parts/customize-single-line-text.php +14 -2
- core/templates/parts/frontend-checkbox.php +1 -1
- core/templates/parts/frontend-email.php +1 -1
- core/templates/parts/frontend-multi-line-text.php +1 -1
- core/templates/parts/frontend-number.php +1 -1
- core/templates/parts/frontend-radio.php +1 -1
- core/templates/parts/frontend-select.php +1 -1
- core/templates/parts/frontend-single-line-text.php +1 -1
- happyforms.php +2 -2
- inc/assets/js/customize.js +0 -6
- languages/happyforms.pot +524 -501
- readme.txt +53 -37
core/assets/css/customize.css
CHANGED
@@ -1660,3 +1660,21 @@ ul.happyforms-parts-list li.happyforms-parts-list-item--group .happyforms-parts-
|
|
1660 |
.happyforms-messages-view .customize-control {
|
1661 |
display: block;
|
1662 |
}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1660 |
.happyforms-messages-view .customize-control {
|
1661 |
display: block;
|
1662 |
}*/
|
1663 |
+
|
1664 |
+
.happyforms-stack-view .customize-control div.label-group{
|
1665 |
+
display:flex;
|
1666 |
+
justify-content: space-around;
|
1667 |
+
}
|
1668 |
+
|
1669 |
+
.happyforms-stack-view .customize-control div.label-group input[data-bind='label'] {
|
1670 |
+
width:80%;
|
1671 |
+
margin-right:1%;
|
1672 |
+
}
|
1673 |
+
|
1674 |
+
.happyforms-stack-view .customize-control div.label-group select[data-bind='label_placement'] {
|
1675 |
+
width:20%;
|
1676 |
+
}
|
1677 |
+
|
1678 |
+
p.label-field-group {
|
1679 |
+
margin-bottom: 0;
|
1680 |
+
}
|
core/assets/css/layout.css
CHANGED
@@ -332,7 +332,8 @@ h3.happyforms-form__title {
|
|
332 |
width: 100%;
|
333 |
}
|
334 |
|
335 |
-
.happyforms-part--label-left .happyforms-part-wrap
|
|
|
336 |
display: flex;
|
337 |
flex-flow: row;
|
338 |
flex-wrap: wrap;
|
@@ -609,8 +610,10 @@ h3.happyforms-form__title {
|
|
609 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-below .happyforms-part__label,
|
610 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-inside .happyforms-part__label,
|
611 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-as_placeholder .happyforms-part__label,
|
|
|
612 |
.happyforms-form--part-title-text-align-right .happyforms-part--label-above .happyforms-part__label,
|
613 |
-
.happyforms-form--part-title-text-align-right .happyforms-part--label-as_placeholder .happyforms-part__label
|
|
|
614 |
width: 100%;
|
615 |
}
|
616 |
|
@@ -1141,32 +1144,33 @@ input[type=submit][disabled].happyforms-button--submit {
|
|
1141 |
}
|
1142 |
|
1143 |
.screen-reader-text {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
position: absolute;
|
1145 |
-
|
1146 |
-
|
1147 |
-
}
|
1148 |
-
.happyforms-form--direction-rtl .screen-reader-text {
|
1149 |
-
left: auto;
|
1150 |
-
right: -10000em;
|
1151 |
}
|
1152 |
|
1153 |
.screen-reader-text:focus {
|
|
|
|
|
|
|
|
|
1154 |
display: block;
|
1155 |
-
|
1156 |
-
top: 7px;
|
1157 |
-
left: 6px;
|
1158 |
-
width: auto;
|
1159 |
height: auto;
|
1160 |
-
|
1161 |
-
color: #0073aa;
|
1162 |
-
background: #f1f1f1;
|
1163 |
-
-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
1164 |
-
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
1165 |
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
1166 |
-
font-size: 14px;
|
1167 |
-
font-weight: 600;
|
1168 |
line-height: normal;
|
|
|
1169 |
text-decoration: none;
|
|
|
|
|
|
|
1170 |
}
|
1171 |
|
1172 |
.happyforms-part-error-notice,
|
332 |
width: 100%;
|
333 |
}
|
334 |
|
335 |
+
.happyforms-part--label-left .happyforms-part-wrap,
|
336 |
+
.happyforms-part--label-hidden .happyforms-part-wrap {
|
337 |
display: flex;
|
338 |
flex-flow: row;
|
339 |
flex-wrap: wrap;
|
610 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-below .happyforms-part__label,
|
611 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-inside .happyforms-part__label,
|
612 |
.happyforms-form--part-title-text-align-center .happyforms-part--label-as_placeholder .happyforms-part__label,
|
613 |
+
.happyforms-form--part-title-text-align-center .happyforms-part--label-show .happyforms-part__label,
|
614 |
.happyforms-form--part-title-text-align-right .happyforms-part--label-above .happyforms-part__label,
|
615 |
+
.happyforms-form--part-title-text-align-right .happyforms-part--label-as_placeholder .happyforms-part__label,
|
616 |
+
.happyforms-form--part-title-text-align-right .happyforms-part--label-show .happyforms-part__label {
|
617 |
width: 100%;
|
618 |
}
|
619 |
|
1144 |
}
|
1145 |
|
1146 |
.screen-reader-text {
|
1147 |
+
border: 0;
|
1148 |
+
clip: rect(1px, 1px, 1px, 1px);
|
1149 |
+
clip-path: inset(50%);
|
1150 |
+
height: 1px;
|
1151 |
+
margin: -1px;
|
1152 |
+
overflow: hidden;
|
1153 |
+
padding: 0;
|
1154 |
position: absolute;
|
1155 |
+
width: 1px;
|
1156 |
+
word-wrap: normal !important;
|
|
|
|
|
|
|
|
|
1157 |
}
|
1158 |
|
1159 |
.screen-reader-text:focus {
|
1160 |
+
background-color: #eee;
|
1161 |
+
clip: auto !important;
|
1162 |
+
clip-path: none;
|
1163 |
+
color: #444;
|
1164 |
display: block;
|
1165 |
+
font-size: 1em;
|
|
|
|
|
|
|
1166 |
height: auto;
|
1167 |
+
left: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
line-height: normal;
|
1169 |
+
padding: 15px 23px 14px;
|
1170 |
text-decoration: none;
|
1171 |
+
top: 5px;
|
1172 |
+
width: auto;
|
1173 |
+
z-index: 100000;
|
1174 |
}
|
1175 |
|
1176 |
.happyforms-part-error-notice,
|
core/classes/class-form-assets.php
CHANGED
@@ -29,6 +29,9 @@ class HappyForms_Form_Assets {
|
|
29 |
}
|
30 |
|
31 |
add_action( 'wp_print_footer_scripts', array( $this, 'wp_print_footer_scripts' ), 0 );
|
|
|
|
|
|
|
32 |
}
|
33 |
|
34 |
public function output_frontend_styles( $form ) {
|
@@ -209,6 +212,22 @@ class HappyForms_Form_Assets {
|
|
209 |
do_action( 'happyforms_print_scripts', $this->forms );
|
210 |
}
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
|
214 |
if ( ! function_exists( 'happyforms_get_form_assets' ) ):
|
29 |
}
|
30 |
|
31 |
add_action( 'wp_print_footer_scripts', array( $this, 'wp_print_footer_scripts' ), 0 );
|
32 |
+
|
33 |
+
// 3rd party compatibility
|
34 |
+
add_action( 'elementor/theme/after_do_popup', array( $this, 'elementor_popup_compatibility' ) );
|
35 |
}
|
36 |
|
37 |
public function output_frontend_styles( $form ) {
|
212 |
do_action( 'happyforms_print_scripts', $this->forms );
|
213 |
}
|
214 |
|
215 |
+
public function elementor_popup_compatibility() {
|
216 |
+
?>
|
217 |
+
<script type="text/javascript">
|
218 |
+
( function( $ ) {
|
219 |
+
$( function() {
|
220 |
+
$( document ).on( 'elementor/popup/show', () => {
|
221 |
+
if ( $.fn.happyForm ) {
|
222 |
+
$( '.happyforms-form' ).happyForm();
|
223 |
+
}
|
224 |
+
} );
|
225 |
+
} );
|
226 |
+
} )( jQuery );
|
227 |
+
</script>
|
228 |
+
<?php
|
229 |
+
}
|
230 |
+
|
231 |
}
|
232 |
|
233 |
if ( ! function_exists( 'happyforms_get_form_assets' ) ):
|
core/classes/class-form-part-library.php
CHANGED
@@ -245,9 +245,7 @@ class HappyForms_Form_Part_Library {
|
|
245 |
}
|
246 |
|
247 |
if ( isset( $part_data['label_placement'] ) ) {
|
248 |
-
$
|
249 |
-
|
250 |
-
$class[] = 'happyforms-part--label-' . esc_attr( $label_placement );
|
251 |
}
|
252 |
|
253 |
if ( isset( $part_data['css_class'] ) && ! empty( $part_data['css_class'] ) ) {
|
245 |
}
|
246 |
|
247 |
if ( isset( $part_data['label_placement'] ) ) {
|
248 |
+
$class[] = 'happyforms-part--label-' . esc_attr( $part_data['label_placement'] );
|
|
|
|
|
249 |
}
|
250 |
|
251 |
if ( isset( $part_data['css_class'] ) && ! empty( $part_data['css_class'] ) ) {
|
core/classes/class-form-styles.php
CHANGED
@@ -40,7 +40,6 @@ class HappyForms_Form_Styles {
|
|
40 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class' ), 10, 2 );
|
41 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class_title_display' ), 10, 2 );
|
42 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class_compat' ), PHP_INT_MAX, 2 );
|
43 |
-
add_filter( 'happyforms_get_form_data', array( $this, 'control_global_label_settings' ) );
|
44 |
add_filter( 'happyforms_get_form_data', array( $this, 'control_global_description_settings' ) );
|
45 |
add_filter( 'happyforms_get_form_data', array( $this, 'cap_form_width' ) );
|
46 |
add_action( 'happyforms_do_style_control', array( $this, 'do_control' ), 10, 3 );
|
@@ -709,11 +708,6 @@ class HappyForms_Form_Styles {
|
|
709 |
'label' => __( 'Label font weight', 'happyforms' ),
|
710 |
'field' => 'part_title_font_weight',
|
711 |
),
|
712 |
-
2901 => array(
|
713 |
-
'type' => 'custom-select',
|
714 |
-
'label' => __( 'Label display', 'happyforms' ),
|
715 |
-
'field' => 'part_title_label_placement',
|
716 |
-
),
|
717 |
3000 => array(
|
718 |
'type' => 'buttonset',
|
719 |
'label' => __( 'Hint alignment', 'happyforms' ),
|
@@ -1032,18 +1026,6 @@ class HappyForms_Form_Styles {
|
|
1032 |
}
|
1033 |
}
|
1034 |
|
1035 |
-
public function control_global_label_settings( $form ) {
|
1036 |
-
if( empty( $form['part_title_label_placement'] ) ) {
|
1037 |
-
return $form;
|
1038 |
-
}
|
1039 |
-
|
1040 |
-
foreach( $form['parts'] as $p => $part ) {
|
1041 |
-
$form['parts'][$p]['label_placement'] = $form['part_title_label_placement'];
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
return $form;
|
1045 |
-
}
|
1046 |
-
|
1047 |
public function is_class_field( $field ) {
|
1048 |
return 'form_class' === $field['target'];
|
1049 |
}
|
@@ -1071,7 +1053,7 @@ class HappyForms_Form_Styles {
|
|
1071 |
if ( happyforms_is_preview() ) {
|
1072 |
$class[] = $form['form_title'];
|
1073 |
}
|
1074 |
-
|
1075 |
return $class;
|
1076 |
}
|
1077 |
|
40 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class' ), 10, 2 );
|
41 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class_title_display' ), 10, 2 );
|
42 |
add_filter( 'happyforms_form_class', array( $this, 'form_html_class_compat' ), PHP_INT_MAX, 2 );
|
|
|
43 |
add_filter( 'happyforms_get_form_data', array( $this, 'control_global_description_settings' ) );
|
44 |
add_filter( 'happyforms_get_form_data', array( $this, 'cap_form_width' ) );
|
45 |
add_action( 'happyforms_do_style_control', array( $this, 'do_control' ), 10, 3 );
|
708 |
'label' => __( 'Label font weight', 'happyforms' ),
|
709 |
'field' => 'part_title_font_weight',
|
710 |
),
|
|
|
|
|
|
|
|
|
|
|
711 |
3000 => array(
|
712 |
'type' => 'buttonset',
|
713 |
'label' => __( 'Hint alignment', 'happyforms' ),
|
1026 |
}
|
1027 |
}
|
1028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
public function is_class_field( $field ) {
|
1030 |
return 'form_class' === $field['target'];
|
1031 |
}
|
1053 |
if ( happyforms_is_preview() ) {
|
1054 |
$class[] = $form['form_title'];
|
1055 |
}
|
1056 |
+
|
1057 |
return $class;
|
1058 |
}
|
1059 |
|
core/classes/parts/class-part-checkbox.php
CHANGED
@@ -40,7 +40,7 @@ class HappyForms_Part_Checkbox extends HappyForms_Form_Part {
|
|
40 |
'sanitize' => 'sanitize_text_field',
|
41 |
),
|
42 |
'label_placement' => array(
|
43 |
-
'default' => '',
|
44 |
'sanitize' => 'sanitize_text_field'
|
45 |
),
|
46 |
'description' => array(
|
40 |
'sanitize' => 'sanitize_text_field',
|
41 |
),
|
42 |
'label_placement' => array(
|
43 |
+
'default' => 'show',
|
44 |
'sanitize' => 'sanitize_text_field'
|
45 |
),
|
46 |
'description' => array(
|
core/classes/parts/class-part-email.php
CHANGED
@@ -36,7 +36,7 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
|
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
-
'default' => '',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
@@ -298,7 +298,7 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
|
|
298 |
|
299 |
wp_register_script(
|
300 |
'happyforms-email',
|
301 |
-
happyforms_get_plugin_url() . 'core/assets/js/frontend/email.js',
|
302 |
array(), HAPPYFORMS_VERSION, true
|
303 |
);
|
304 |
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
+
'default' => 'show',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
298 |
|
299 |
wp_register_script(
|
300 |
'happyforms-email',
|
301 |
+
happyforms_get_plugin_url() . 'core/assets/js/frontend/email.js',
|
302 |
array(), HAPPYFORMS_VERSION, true
|
303 |
);
|
304 |
|
core/classes/parts/class-part-multi-line-text.php
CHANGED
@@ -36,7 +36,7 @@ class HappyForms_Part_MultiLineText extends HappyForms_Form_Part {
|
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
-
'default' => '',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
+
'default' => 'show',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
core/classes/parts/class-part-number.php
CHANGED
@@ -36,7 +36,7 @@ class HappyForms_Part_Number extends HappyForms_Form_Part {
|
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
-
'default' => '',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
+
'default' => 'show',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
core/classes/parts/class-part-radio.php
CHANGED
@@ -41,7 +41,7 @@ class HappyForms_Part_Radio extends HappyForms_Form_Part {
|
|
41 |
'sanitize' => 'sanitize_text_field',
|
42 |
),
|
43 |
'label_placement' => array(
|
44 |
-
'default' => '',
|
45 |
'sanitize' => 'sanitize_text_field'
|
46 |
),
|
47 |
'description' => array(
|
41 |
'sanitize' => 'sanitize_text_field',
|
42 |
),
|
43 |
'label_placement' => array(
|
44 |
+
'default' => 'show',
|
45 |
'sanitize' => 'sanitize_text_field'
|
46 |
),
|
47 |
'description' => array(
|
core/classes/parts/class-part-select.php
CHANGED
@@ -36,7 +36,7 @@ class HappyForms_Part_Select extends HappyForms_Form_Part {
|
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
-
'default' => '',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
36 |
'sanitize' => 'sanitize_text_field',
|
37 |
),
|
38 |
'label_placement' => array(
|
39 |
+
'default' => 'show',
|
40 |
'sanitize' => 'sanitize_text_field'
|
41 |
),
|
42 |
'description' => array(
|
core/classes/parts/class-part-single-line-text.php
CHANGED
@@ -33,7 +33,7 @@ class HappyForms_Part_SingleLineText extends HappyForms_Form_Part {
|
|
33 |
'sanitize' => 'sanitize_text_field',
|
34 |
),
|
35 |
'label_placement' => array(
|
36 |
-
'default' => '',
|
37 |
'sanitize' => 'sanitize_text_field'
|
38 |
),
|
39 |
'description' => array(
|
33 |
'sanitize' => 'sanitize_text_field',
|
34 |
),
|
35 |
'label_placement' => array(
|
36 |
+
'default' => 'show',
|
37 |
'sanitize' => 'sanitize_text_field'
|
38 |
),
|
39 |
'description' => array(
|
core/helpers/helper-form-templates.php
CHANGED
@@ -212,6 +212,10 @@ endif;
|
|
212 |
if ( ! function_exists( 'happyforms_part_has_tooltip' ) ) :
|
213 |
|
214 |
function happyforms_part_has_tooltip( $part ) {
|
|
|
|
|
|
|
|
|
215 |
if ( ( isset( $part['description_mode'] )
|
216 |
&& 'tooltip' === $part['description_mode'] )
|
217 |
|| ( isset( $part['tooltip_description'] )
|
212 |
if ( ! function_exists( 'happyforms_part_has_tooltip' ) ) :
|
213 |
|
214 |
function happyforms_part_has_tooltip( $part ) {
|
215 |
+
if ( isset( $part['label_placement'] ) && 'hidden' === $part['label_placement'] ) {
|
216 |
+
return false;
|
217 |
+
}
|
218 |
+
|
219 |
if ( ( isset( $part['description_mode'] )
|
220 |
&& 'tooltip' === $part['description_mode'] )
|
221 |
|| ( isset( $part['tooltip_description'] )
|
core/templates/parts/customize-checkbox.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-checkbox-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p>
|
8 |
<label for="<%= instance.id %>_description"><?php _e( 'Hint', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="customize-happyforms-checkbox-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p>
|
20 |
<label for="<%= instance.id %>_description"><?php _e( 'Hint', 'happyforms' ); ?></label>
|
core/templates/parts/customize-email.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-email-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
8 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="customize-happyforms-email-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
20 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
core/templates/parts/customize-multi-line-text.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-multi-line-text-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
8 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
@@ -53,7 +65,7 @@
|
|
53 |
|
54 |
<p>
|
55 |
<label for="<%= instance.id %>_rows"><?php _e( 'Rows', 'happyforms' ); ?></label>
|
56 |
-
<input type="number" id="<%= instance.id %>_rows" min="
|
57 |
</p>
|
58 |
|
59 |
<?php happyforms_customize_part_width_control(); ?>
|
1 |
<script type="text/template" id="customize-happyforms-multi-line-text-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
20 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
65 |
|
66 |
<p>
|
67 |
<label for="<%= instance.id %>_rows"><?php _e( 'Rows', 'happyforms' ); ?></label>
|
68 |
+
<input type="number" id="<%= instance.id %>_rows" min="2" max="20" class="widefat title" value="<%= instance.rows %>" data-bind="rows" />
|
69 |
</p>
|
70 |
|
71 |
<?php happyforms_customize_part_width_control(); ?>
|
core/templates/parts/customize-number.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="happyforms-customize-number-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
8 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="happyforms-customize-number-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
20 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
core/templates/parts/customize-radio.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-radio-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p>
|
8 |
<label for="<%= instance.id %>_description"><?php _e( 'Hint', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="customize-happyforms-radio-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p>
|
20 |
<label for="<%= instance.id %>_description"><?php _e( 'Hint', 'happyforms' ); ?></label>
|
core/templates/parts/customize-select.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-select-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
8 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="customize-happyforms-select-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
20 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
core/templates/parts/customize-single-line-text.php
CHANGED
@@ -1,8 +1,20 @@
|
|
1 |
<script type="text/template" id="customize-happyforms-single-line-text-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
-
<p>
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
</p>
|
7 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
8 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
1 |
<script type="text/template" id="customize-happyforms-single-line-text-template">
|
2 |
<?php include( happyforms_get_core_folder() . '/templates/customize-form-part-header.php' ); ?>
|
3 |
+
<p class="label-field-group">
|
4 |
<label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
|
5 |
+
<div class="label-group">
|
6 |
+
<input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
|
7 |
+
<select id="<%= instance.id %>_label_placement" name="label_placement" data-bind="label_placement" class="widefat">
|
8 |
+
<option value="show"<%= (instance.label_placement == 'show') ? ' selected' : '' %>><?php _e( 'Show', 'happyforms' ); ?></option>
|
9 |
+
<% if ( 'left' == instance.label_placement ) { %>
|
10 |
+
<option value="left" selected><?php _e( 'Left', 'happyforms' ); ?></option>
|
11 |
+
<% } %>
|
12 |
+
<% if ( 'below' == instance.label_placement ) { %>
|
13 |
+
<option value="below" selected><?php _e( 'Below', 'happyforms' ); ?></option>
|
14 |
+
<% } %>
|
15 |
+
<option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hide', 'happyforms' ); ?></option>
|
16 |
+
</select>
|
17 |
+
</div>
|
18 |
</p>
|
19 |
<p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
|
20 |
<label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
|
core/templates/parts/frontend-checkbox.php
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
|
40 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
41 |
|
42 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
43 |
<?php happyforms_print_part_description( $part ); ?>
|
44 |
<?php endif; ?>
|
45 |
|
39 |
|
40 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
41 |
|
42 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
43 |
<?php happyforms_print_part_description( $part ); ?>
|
44 |
<?php endif; ?>
|
45 |
|
core/templates/parts/frontend-email.php
CHANGED
@@ -47,7 +47,7 @@
|
|
47 |
</div><!-- /.happyforms-input-group -->
|
48 |
<?php endif; ?>
|
49 |
|
50 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
51 |
<?php happyforms_print_part_description( $part ); ?>
|
52 |
<?php endif; ?>
|
53 |
|
47 |
</div><!-- /.happyforms-input-group -->
|
48 |
<?php endif; ?>
|
49 |
|
50 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
51 |
<?php happyforms_print_part_description( $part ); ?>
|
52 |
<?php endif; ?>
|
53 |
|
core/templates/parts/frontend-multi-line-text.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
16 |
|
17 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
18 |
<?php happyforms_print_part_description( $part ); ?>
|
19 |
<?php endif; ?>
|
20 |
|
14 |
|
15 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
16 |
|
17 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
18 |
<?php happyforms_print_part_description( $part ); ?>
|
19 |
<?php endif; ?>
|
20 |
|
core/templates/parts/frontend-number.php
CHANGED
@@ -59,7 +59,7 @@
|
|
59 |
|
60 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
61 |
|
62 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
63 |
<?php happyforms_print_part_description( $part ); ?>
|
64 |
<?php endif; ?>
|
65 |
|
59 |
|
60 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
61 |
|
62 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
63 |
<?php happyforms_print_part_description( $part ); ?>
|
64 |
<?php endif; ?>
|
65 |
|
core/templates/parts/frontend-radio.php
CHANGED
@@ -35,7 +35,7 @@
|
|
35 |
|
36 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
37 |
|
38 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
39 |
<?php happyforms_print_part_description( $part ); ?>
|
40 |
<?php endif; ?>
|
41 |
|
35 |
|
36 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
37 |
|
38 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
39 |
<?php happyforms_print_part_description( $part ); ?>
|
40 |
<?php endif; ?>
|
41 |
|
core/templates/parts/frontend-select.php
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
|
24 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
25 |
|
26 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
27 |
<?php happyforms_print_part_description( $part ); ?>
|
28 |
<?php endif; ?>
|
29 |
|
23 |
|
24 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
25 |
|
26 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
27 |
<?php happyforms_print_part_description( $part ); ?>
|
28 |
<?php endif; ?>
|
29 |
|
core/templates/parts/frontend-single-line-text.php
CHANGED
@@ -59,7 +59,7 @@
|
|
59 |
|
60 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
61 |
|
62 |
-
<?php if ( 'tooltip' !== $part['description_mode'] ) : ?>
|
63 |
<?php happyforms_print_part_description( $part ); ?>
|
64 |
<?php endif; ?>
|
65 |
|
59 |
|
60 |
<?php do_action( 'happyforms_part_input_after', $part, $form ); ?>
|
61 |
|
62 |
+
<?php if ( 'tooltip' !== $part['description_mode'] || 'hidden' === $part['label_placement'] ) : ?>
|
63 |
<?php happyforms_print_part_description( $part ); ?>
|
64 |
<?php endif; ?>
|
65 |
|
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.io
|
6 |
* Description: We're changin' WordPress forms.
|
7 |
* Author: Happyforms
|
8 |
-
* Version: 1.12.
|
9 |
* Author URI: https://happyforms.io
|
10 |
* Upgrade URI: https://happyforms.io/upgrade
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.12.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
5 |
* Plugin URI: https://happyforms.io
|
6 |
* Description: We're changin' WordPress forms.
|
7 |
* Author: Happyforms
|
8 |
+
* Version: 1.12.3
|
9 |
* Author URI: https://happyforms.io
|
10 |
* Upgrade URI: https://happyforms.io/upgrade
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.12.3' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/assets/js/customize.js
CHANGED
@@ -691,7 +691,6 @@
|
|
691 |
this.drawer.close();
|
692 |
|
693 |
partModel.set( 'description_mode', happyForms.form.get( 'part_description_mode' ) );
|
694 |
-
partModel.set( 'label_placement', happyForms.form.get( 'part_title_label_placement' ) );
|
695 |
|
696 |
this.model.get( 'parts' ).add( partModel, options );
|
697 |
this.model.trigger( 'change', this.model );
|
@@ -1952,7 +1951,6 @@
|
|
1952 |
classes.views.Base.prototype.initialize.apply( this, arguments );
|
1953 |
|
1954 |
this.listenTo( this.model, 'change:form_title', this.onChangeTitleDisplay );
|
1955 |
-
this.listenTo( this.model, 'change:part_title_label_placement', this.onChangeGlobalLabelPosition );
|
1956 |
this.listenTo( this.model, 'change:part_description_mode', this.onChangeGlobalDescriptionMode );
|
1957 |
|
1958 |
this.styles = new Backbone.Collection();
|
@@ -2021,10 +2019,6 @@
|
|
2021 |
happyForms.previewSend( 'happyforms-form-class-update', data );
|
2022 |
},
|
2023 |
|
2024 |
-
onChangeGlobalLabelPosition: function( model, value ) {
|
2025 |
-
this.refreshFormParts( 'label_placement', value );
|
2026 |
-
},
|
2027 |
-
|
2028 |
onChangeGlobalDescriptionMode: function( model, value ) {
|
2029 |
this.refreshFormParts( 'description_mode', value );
|
2030 |
},
|
691 |
this.drawer.close();
|
692 |
|
693 |
partModel.set( 'description_mode', happyForms.form.get( 'part_description_mode' ) );
|
|
|
694 |
|
695 |
this.model.get( 'parts' ).add( partModel, options );
|
696 |
this.model.trigger( 'change', this.model );
|
1951 |
classes.views.Base.prototype.initialize.apply( this, arguments );
|
1952 |
|
1953 |
this.listenTo( this.model, 'change:form_title', this.onChangeTitleDisplay );
|
|
|
1954 |
this.listenTo( this.model, 'change:part_description_mode', this.onChangeGlobalDescriptionMode );
|
1955 |
|
1956 |
this.styles = new Backbone.Collection();
|
2019 |
happyForms.previewSend( 'happyforms-form-class-update', data );
|
2020 |
},
|
2021 |
|
|
|
|
|
|
|
|
|
2022 |
onChangeGlobalDescriptionMode: function( model, value ) {
|
2023 |
this.refreshFormParts( 'description_mode', value );
|
2024 |
},
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Happyforms (free) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Happyforms (free) 1.12.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -266,24 +266,24 @@ msgid "Include submitted values"
|
|
266 |
msgstr ""
|
267 |
|
268 |
#: core/classes/class-form-messages.php:32
|
269 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
270 |
msgid "Min words"
|
271 |
msgstr ""
|
272 |
|
273 |
#: core/classes/class-form-messages.php:36
|
274 |
#: core/classes/parts/class-part-multi-line-text.php:74
|
275 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
276 |
msgid "Max words"
|
277 |
msgstr ""
|
278 |
|
279 |
#: core/classes/class-form-messages.php:40
|
280 |
#: core/classes/parts/class-part-multi-line-text.php:70
|
281 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
282 |
msgid "Min characters"
|
283 |
msgstr ""
|
284 |
|
285 |
#: core/classes/class-form-messages.php:44
|
286 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
287 |
msgid "Max characters"
|
288 |
msgstr ""
|
289 |
|
@@ -458,49 +458,77 @@ msgstr ""
|
|
458 |
msgid "Question is optional"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: core/classes/class-form-styles.php:
|
462 |
msgid "Left-to-right"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: core/classes/class-form-styles.php:
|
466 |
msgid "Right-to-left"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: core/classes/class-form-styles.php:
|
470 |
-
#: core/classes/class-form-styles.php:
|
471 |
-
#: core/classes/class-form-styles.php:
|
472 |
-
#: core/classes/class-form-styles.php:
|
473 |
msgid "Default"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: core/classes/class-form-styles.php:
|
477 |
-
#: core/classes/class-form-styles.php:
|
478 |
-
#: core/classes/class-form-styles.php:
|
479 |
msgid "Narrow"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: core/classes/class-form-styles.php:
|
483 |
-
#: core/classes/class-form-styles.php:
|
484 |
-
#: core/classes/class-form-styles.php:
|
485 |
msgid "Wide"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: core/classes/class-form-styles.php:
|
489 |
-
#: core/classes/class-form-styles.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
msgid "Show"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: core/classes/class-form-styles.php:
|
494 |
-
#: core/classes/class-form-styles.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
msgid "Hide"
|
496 |
msgstr ""
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: core/classes/class-form-styles.php:99 core/classes/class-form-styles.php:173
|
499 |
-
#: core/classes/class-form-styles.php:204
|
500 |
#: core/classes/class-form-styles.php:213
|
501 |
#: core/classes/class-form-styles.php:242
|
502 |
#: core/classes/class-form-styles.php:319
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
#: core/classes/class-form-styles.php:100
|
@@ -508,385 +536,380 @@ msgstr ""
|
|
508 |
#: core/classes/class-form-styles.php:214
|
509 |
#: core/classes/class-form-styles.php:243
|
510 |
#: core/classes/class-form-styles.php:320
|
511 |
-
msgid "Center"
|
512 |
-
msgstr ""
|
513 |
-
|
514 |
-
#: core/classes/class-form-styles.php:101
|
515 |
-
#: core/classes/class-form-styles.php:175
|
516 |
-
#: core/classes/class-form-styles.php:215
|
517 |
-
#: core/classes/class-form-styles.php:244
|
518 |
-
#: core/classes/class-form-styles.php:321
|
519 |
msgid "Right"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: core/classes/class-form-styles.php:
|
523 |
msgid "All sides"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: core/classes/class-form-styles.php:
|
527 |
msgid "Bottom only"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: core/classes/class-form-styles.php:
|
531 |
-
#: core/classes/class-form-styles.php:
|
532 |
msgid "Square"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: core/classes/class-form-styles.php:
|
536 |
-
#: core/classes/class-form-styles.php:
|
537 |
msgid "Round"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: core/classes/class-form-styles.php:
|
541 |
-
#: core/classes/class-form-styles.php:
|
542 |
msgid "Pill"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: core/classes/class-form-styles.php:
|
546 |
-
#: core/classes/class-form-styles.php:
|
547 |
msgid "Normal"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: core/classes/class-form-styles.php:
|
551 |
-
#: core/classes/class-form-styles.php:
|
552 |
msgid "Bold"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: core/classes/class-form-styles.php:
|
556 |
msgid "Above"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: core/classes/class-form-styles.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
msgid "Below"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: core/classes/class-form-styles.php:
|
564 |
msgid "Hidden"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: core/classes/class-form-styles.php:
|
568 |
msgid "Standard"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: core/classes/class-form-styles.php:
|
572 |
msgid "Tooltip"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: core/classes/class-form-styles.php:
|
576 |
msgid "Full width"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: core/classes/class-form-styles.php:
|
580 |
msgid "Above form"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: core/classes/class-form-styles.php:
|
584 |
msgid "Below form"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: core/classes/class-form-styles.php:
|
588 |
msgid "General"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: core/classes/class-form-styles.php:
|
592 |
-
#: core/classes/class-form-styles.php:
|
593 |
-
#: core/templates/parts/customize-checkbox.php:
|
594 |
msgid "Width"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: core/classes/class-form-styles.php:
|
598 |
-
#: core/classes/class-form-styles.php:
|
599 |
msgid "Padding"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: core/classes/class-form-styles.php:
|
603 |
msgid "Direction"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: core/classes/class-form-styles.php:
|
607 |
msgid "Message location"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: core/classes/class-form-styles.php:
|
611 |
-
#: core/classes/class-form-styles.php:
|
612 |
-
#: core/classes/class-form-styles.php:
|
613 |
-
#: core/classes/class-form-styles.php:
|
614 |
msgid "Colors"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: core/classes/class-form-styles.php:
|
618 |
msgid "Primary"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: core/classes/class-form-styles.php:
|
622 |
msgid "Success message background"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: core/classes/class-form-styles.php:
|
626 |
msgid "Success message text"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: core/classes/class-form-styles.php:
|
630 |
msgid "Validation message text"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: core/classes/class-form-styles.php:
|
634 |
msgid "Error message background"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: core/classes/class-form-styles.php:
|
638 |
msgid "Error message text"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: core/classes/class-form-styles.php:
|
642 |
#: inc/classes/parts/class-part-layout-title-dummy.php:8
|
643 |
#: inc/classes/parts/class-part-title-dummy.php:8
|
644 |
msgid "Title"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: core/classes/class-form-styles.php:
|
648 |
msgid "Display"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: core/classes/class-form-styles.php:
|
652 |
-
#: core/classes/class-form-styles.php:
|
653 |
msgid "Alignment"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: core/classes/class-form-styles.php:
|
657 |
-
#: core/classes/class-form-styles.php:
|
658 |
msgid "Font size"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: core/classes/class-form-styles.php:
|
662 |
msgid "Field borders & spacing"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: core/classes/class-form-styles.php:
|
666 |
-
#: core/classes/class-form-styles.php:
|
667 |
-
#: core/classes/class-form-styles.php:
|
668 |
-
#: core/classes/class-form-styles.php:
|
669 |
msgid "Border"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: core/classes/class-form-styles.php:
|
673 |
msgid "Border location"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: core/classes/class-form-styles.php:
|
677 |
-
#: core/classes/class-form-styles.php:
|
678 |
msgid "Border radius"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: core/classes/class-form-styles.php:
|
682 |
msgid "Outer spacing"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: core/classes/class-form-styles.php:
|
686 |
msgid "Inner spacing"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: core/classes/class-form-styles.php:
|
690 |
msgid "Border on focus"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: core/classes/class-form-styles.php:
|
694 |
-
#: core/classes/class-form-styles.php:
|
695 |
-
#: core/classes/class-form-styles.php:
|
696 |
-
#: core/classes/class-form-styles.php:
|
697 |
msgid "Background"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: core/classes/class-form-styles.php:
|
701 |
-
#: core/classes/class-form-styles.php:
|
702 |
-
#: core/classes/class-form-styles.php:
|
703 |
-
#: core/classes/class-form-styles.php:
|
704 |
msgid "Background on focus"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: core/classes/class-form-styles.php:
|
708 |
msgid "Field labels & text"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: core/classes/class-form-styles.php:
|
712 |
msgid "Toggle placeholder on field focus"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: core/classes/class-form-styles.php:
|
716 |
msgid "Label alignment"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: core/classes/class-form-styles.php:
|
720 |
msgid "Label font size"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: core/classes/class-form-styles.php:
|
724 |
msgid "Label font weight"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: core/classes/class-form-styles.php:
|
728 |
-
msgid "Label display"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: core/classes/class-form-styles.php:719
|
732 |
msgid "Hint alignment"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: core/classes/class-form-styles.php:
|
736 |
msgid "Hint font size"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: core/classes/class-form-styles.php:
|
740 |
msgid "Hint display"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: core/classes/class-form-styles.php:
|
744 |
msgid "Placeholder & value alignment"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: core/classes/class-form-styles.php:
|
748 |
msgid "Value font size"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: core/classes/class-form-styles.php:
|
752 |
#: core/templates/parts/customize-checkbox.php:4
|
753 |
-
#: core/templates/parts/customize-checkbox.php:
|
754 |
#: core/templates/parts/customize-email.php:4
|
755 |
#: core/templates/parts/customize-multi-line-text.php:4
|
756 |
#: core/templates/parts/customize-number.php:4
|
757 |
#: core/templates/parts/customize-radio.php:4
|
758 |
-
#: core/templates/parts/customize-radio.php:
|
759 |
#: core/templates/parts/customize-select.php:4
|
760 |
-
#: core/templates/parts/customize-select.php:
|
761 |
#: core/templates/parts/customize-single-line-text.php:4
|
762 |
msgid "Label"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: core/classes/class-form-styles.php:
|
766 |
msgid "Value"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: core/classes/class-form-styles.php:
|
770 |
-
#: core/templates/parts/customize-email.php:
|
771 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
772 |
-
#: core/templates/parts/customize-number.php:
|
773 |
-
#: core/templates/parts/customize-select.php:
|
774 |
-
#: core/templates/parts/customize-single-line-text.php:
|
775 |
#: inc/classes/parts/class-part-placeholder-dummy.php:8
|
776 |
msgid "Placeholder"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: core/classes/class-form-styles.php:
|
780 |
-
#: core/templates/parts/customize-checkbox.php:
|
781 |
-
#: core/templates/parts/customize-email.php:
|
782 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
783 |
-
#: core/templates/parts/customize-number.php:
|
784 |
-
#: core/templates/parts/customize-radio.php:
|
785 |
-
#: core/templates/parts/customize-select.php:
|
786 |
-
#: core/templates/parts/customize-single-line-text.php:
|
787 |
msgid "Hint"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: core/classes/class-form-styles.php:
|
791 |
msgid "Dropdowns"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: core/classes/class-form-styles.php:
|
795 |
msgid "Items"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: core/classes/class-form-styles.php:
|
799 |
-
#: core/classes/class-form-styles.php:
|
800 |
msgid "Text"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: core/classes/class-form-styles.php:
|
804 |
msgid "Text focused"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: core/classes/class-form-styles.php:
|
808 |
msgid "Checkboxes & Radios"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: core/classes/class-form-styles.php:
|
812 |
msgid "Checkmark"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: core/classes/class-form-styles.php:
|
816 |
msgid "Rating"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: core/classes/class-form-styles.php:
|
820 |
msgid "Rating star color"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: core/classes/class-form-styles.php:
|
824 |
msgid "Rating star color on hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: core/classes/class-form-styles.php:
|
828 |
msgid "Tables"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: core/classes/class-form-styles.php:
|
832 |
msgid "Odd row primary"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: core/classes/class-form-styles.php:
|
836 |
msgid "Odd row secondary"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: core/classes/class-form-styles.php:
|
840 |
msgid "Even row primary"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: core/classes/class-form-styles.php:
|
844 |
msgid "Even row secondary"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: core/classes/class-form-styles.php:
|
848 |
msgid "Dividers"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: core/classes/class-form-styles.php:
|
852 |
msgid "Color"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: core/classes/class-form-styles.php:
|
856 |
msgid "Submit button"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: core/classes/class-form-styles.php:
|
860 |
msgid "Font weight"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: core/classes/class-form-styles.php:
|
864 |
msgid "Make button a field of last input"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: core/classes/class-form-styles.php:
|
868 |
msgid "Text on focus"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: core/classes/class-form-styles.php:
|
872 |
msgid "Add your own CSS code here to customize the appearance of your form."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: core/classes/class-form-styles.php:
|
876 |
msgid ""
|
877 |
"For each rule you add, we'll prepend your form's HTML ID. This makes sure "
|
878 |
"all styles added will only apply to this form. For example %s becomes %s."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: core/classes/class-form-styles.php:
|
882 |
msgid ""
|
883 |
"The edit field automatically highlights code syntax. You can disable this "
|
884 |
"in your <a href=\"%s\" class=\"%s\" target=\"_blank\">user profile</a> to "
|
885 |
"work in plain text mode."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: core/classes/class-form-styles.php:
|
889 |
-
#: core/classes/class-form-styles.php:
|
890 |
msgid "Additional CSS"
|
891 |
msgstr ""
|
892 |
|
@@ -1151,1028 +1174,1028 @@ msgstr ""
|
|
1151 |
msgid "Spam protection, skip this field"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: core/helpers/helper-form-templates.php:
|
1155 |
msgid "January"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: core/helpers/helper-form-templates.php:
|
1159 |
msgid "February"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: core/helpers/helper-form-templates.php:
|
1163 |
msgid "March"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: core/helpers/helper-form-templates.php:
|
1167 |
msgid "April"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: core/helpers/helper-form-templates.php:
|
1171 |
msgid "May"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: core/helpers/helper-form-templates.php:
|
1175 |
msgid "June"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: core/helpers/helper-form-templates.php:
|
1179 |
msgid "July"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: core/helpers/helper-form-templates.php:
|
1183 |
msgid "August"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: core/helpers/helper-form-templates.php:
|
1187 |
msgid "September"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: core/helpers/helper-form-templates.php:
|
1191 |
msgid "October"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: core/helpers/helper-form-templates.php:
|
1195 |
msgid "November"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: core/helpers/helper-form-templates.php:
|
1199 |
msgid "December"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: core/helpers/helper-form-templates.php:
|
1203 |
msgid "Ascension Island"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: core/helpers/helper-form-templates.php:
|
1207 |
msgid "Andorra"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: core/helpers/helper-form-templates.php:
|
1211 |
msgid "United Arab Emirates"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: core/helpers/helper-form-templates.php:
|
1215 |
msgid "Afghanistan"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: core/helpers/helper-form-templates.php:
|
1219 |
msgid "Antigua and Barbuda"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: core/helpers/helper-form-templates.php:
|
1223 |
msgid "Anguilla"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: core/helpers/helper-form-templates.php:
|
1227 |
msgid "Albania"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: core/helpers/helper-form-templates.php:
|
1231 |
msgid "Armenia"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: core/helpers/helper-form-templates.php:
|
1235 |
msgid "Angola"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: core/helpers/helper-form-templates.php:
|
1239 |
msgid "Argentina"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: core/helpers/helper-form-templates.php:
|
1243 |
msgid "American Samoa"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: core/helpers/helper-form-templates.php:
|
1247 |
msgid "Austria"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: core/helpers/helper-form-templates.php:
|
1251 |
msgid "Australia"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: core/helpers/helper-form-templates.php:
|
1255 |
msgid "Aruba"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: core/helpers/helper-form-templates.php:
|
1259 |
msgid "Åland Islands"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: core/helpers/helper-form-templates.php:
|
1263 |
msgid "Azerbaijan"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: core/helpers/helper-form-templates.php:
|
1267 |
msgid "Bosnia and Herzegovina"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: core/helpers/helper-form-templates.php:
|
1271 |
msgid "Barbados"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: core/helpers/helper-form-templates.php:
|
1275 |
msgid "Bangladesh"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: core/helpers/helper-form-templates.php:
|
1279 |
msgid "Belgium"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: core/helpers/helper-form-templates.php:
|
1283 |
msgid "Burkina Faso"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: core/helpers/helper-form-templates.php:
|
1287 |
msgid "Bulgaria"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: core/helpers/helper-form-templates.php:
|
1291 |
msgid "Bahrain"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: core/helpers/helper-form-templates.php:
|
1295 |
msgid "Burundi"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: core/helpers/helper-form-templates.php:
|
1299 |
msgid "Benin"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: core/helpers/helper-form-templates.php:
|
1303 |
msgid "Saint Barthélemy"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: core/helpers/helper-form-templates.php:
|
1307 |
msgid "Bermuda"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: core/helpers/helper-form-templates.php:
|
1311 |
msgid "Brunei Darussalam"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: core/helpers/helper-form-templates.php:
|
1315 |
msgid "Bolivia"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: core/helpers/helper-form-templates.php:
|
1319 |
msgid "Bonaire, Sint Eustatius and Saba"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: core/helpers/helper-form-templates.php:
|
1323 |
msgid "Brazil"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: core/helpers/helper-form-templates.php:
|
1327 |
msgid "Bahamas"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: core/helpers/helper-form-templates.php:
|
1331 |
msgid "Bhutan"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: core/helpers/helper-form-templates.php:
|
1335 |
msgid "Botswana"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: core/helpers/helper-form-templates.php:
|
1339 |
msgid "Belarus"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: core/helpers/helper-form-templates.php:
|
1343 |
msgid "Belize"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: core/helpers/helper-form-templates.php:
|
1347 |
msgid "Canada"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: core/helpers/helper-form-templates.php:
|
1351 |
msgid "Cocos (Keeling) Islands"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: core/helpers/helper-form-templates.php:
|
1355 |
msgid "Congo, the Democratic Republic of the"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: core/helpers/helper-form-templates.php:
|
1359 |
msgid "Central African Republic"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: core/helpers/helper-form-templates.php:
|
1363 |
msgid "Congo"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: core/helpers/helper-form-templates.php:
|
1367 |
msgid "Switzerland"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: core/helpers/helper-form-templates.php:
|
1371 |
msgid "Cote D'Ivoire"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: core/helpers/helper-form-templates.php:
|
1375 |
msgid "Cook Islands"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: core/helpers/helper-form-templates.php:
|
1379 |
msgid "Chile"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: core/helpers/helper-form-templates.php:
|
1383 |
msgid "Cameroon"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: core/helpers/helper-form-templates.php:
|
1387 |
msgid "China"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: core/helpers/helper-form-templates.php:
|
1391 |
msgid "Colombia"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: core/helpers/helper-form-templates.php:
|
1395 |
msgid "Costa Rica"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: core/helpers/helper-form-templates.php:
|
1399 |
msgid "Cuba"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: core/helpers/helper-form-templates.php:
|
1403 |
msgid "Cape Verde"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: core/helpers/helper-form-templates.php:
|
1407 |
msgid "Curaçao"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: core/helpers/helper-form-templates.php:
|
1411 |
msgid "Christmas Island"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: core/helpers/helper-form-templates.php:
|
1415 |
msgid "Cyprus"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: core/helpers/helper-form-templates.php:
|
1419 |
msgid "Czech Republic"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: core/helpers/helper-form-templates.php:
|
1423 |
msgid "Germany"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: core/helpers/helper-form-templates.php:
|
1427 |
msgid "Djibouti"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: core/helpers/helper-form-templates.php:
|
1431 |
msgid "Denmark"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: core/helpers/helper-form-templates.php:
|
1435 |
msgid "Dominica"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: core/helpers/helper-form-templates.php:
|
1439 |
msgid "Dominican Republic"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: core/helpers/helper-form-templates.php:
|
1443 |
msgid "Algeria"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: core/helpers/helper-form-templates.php:
|
1447 |
msgid "Ecuador"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: core/helpers/helper-form-templates.php:
|
1451 |
msgid "Estonia"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: core/helpers/helper-form-templates.php:
|
1455 |
msgid "Egypt"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: core/helpers/helper-form-templates.php:
|
1459 |
msgid "Western Sahara"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: core/helpers/helper-form-templates.php:
|
1463 |
msgid "Eritrea"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: core/helpers/helper-form-templates.php:
|
1467 |
msgid "Spain"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: core/helpers/helper-form-templates.php:
|
1471 |
msgid "Ethiopia"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: core/helpers/helper-form-templates.php:
|
1475 |
msgid "Finland"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: core/helpers/helper-form-templates.php:
|
1479 |
msgid "Fiji"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: core/helpers/helper-form-templates.php:
|
1483 |
msgid "Falkland Islands (Malvinas)"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: core/helpers/helper-form-templates.php:
|
1487 |
msgid "Micronesia, Federated States of"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: core/helpers/helper-form-templates.php:
|
1491 |
msgid "Faroe Islands"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: core/helpers/helper-form-templates.php:
|
1495 |
msgid "France"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: core/helpers/helper-form-templates.php:
|
1499 |
msgid "Gabon"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: core/helpers/helper-form-templates.php:
|
1503 |
msgid "United Kingdom"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: core/helpers/helper-form-templates.php:
|
1507 |
msgid "Grenada"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: core/helpers/helper-form-templates.php:
|
1511 |
msgid "Georgia"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: core/helpers/helper-form-templates.php:
|
1515 |
msgid "French Guiana"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: core/helpers/helper-form-templates.php:
|
1519 |
msgid "Guernsey"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: core/helpers/helper-form-templates.php:
|
1523 |
msgid "Ghana"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: core/helpers/helper-form-templates.php:
|
1527 |
msgid "Gibraltar"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: core/helpers/helper-form-templates.php:
|
1531 |
msgid "Greenland"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: core/helpers/helper-form-templates.php:
|
1535 |
msgid "Gambia"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: core/helpers/helper-form-templates.php:
|
1539 |
msgid "Guinea"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: core/helpers/helper-form-templates.php:
|
1543 |
msgid "Guadeloupe"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: core/helpers/helper-form-templates.php:
|
1547 |
msgid "Equatorial Guinea"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: core/helpers/helper-form-templates.php:
|
1551 |
msgid "Greece"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: core/helpers/helper-form-templates.php:
|
1555 |
msgid "Guatemala"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: core/helpers/helper-form-templates.php:
|
1559 |
msgid "Guam"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: core/helpers/helper-form-templates.php:
|
1563 |
msgid "Guinea-Bissau"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: core/helpers/helper-form-templates.php:
|
1567 |
msgid "Guyana"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: core/helpers/helper-form-templates.php:
|
1571 |
msgid "Hong Kong"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: core/helpers/helper-form-templates.php:
|
1575 |
msgid "Honduras"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: core/helpers/helper-form-templates.php:
|
1579 |
msgid "Croatia"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: core/helpers/helper-form-templates.php:
|
1583 |
msgid "Haiti"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: core/helpers/helper-form-templates.php:
|
1587 |
msgid "Hungary"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: core/helpers/helper-form-templates.php:
|
1591 |
msgid "Indonesia"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: core/helpers/helper-form-templates.php:
|
1595 |
msgid "Ireland"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: core/helpers/helper-form-templates.php:
|
1599 |
msgid "Israel"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: core/helpers/helper-form-templates.php:
|
1603 |
msgid "Isle of Man"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: core/helpers/helper-form-templates.php:
|
1607 |
msgid "India"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: core/helpers/helper-form-templates.php:
|
1611 |
msgid "British Indian Ocean Territory"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: core/helpers/helper-form-templates.php:
|
1615 |
msgid "Iraq"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: core/helpers/helper-form-templates.php:
|
1619 |
msgid "Iran, Islamic Republic of"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: core/helpers/helper-form-templates.php:
|
1623 |
msgid "Iceland"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: core/helpers/helper-form-templates.php:
|
1627 |
msgid "Italy"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: core/helpers/helper-form-templates.php:
|
1631 |
msgid "Jersey"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: core/helpers/helper-form-templates.php:
|
1635 |
msgid "Jamaica"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: core/helpers/helper-form-templates.php:
|
1639 |
msgid "Jordan"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: core/helpers/helper-form-templates.php:
|
1643 |
msgid "Japan"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: core/helpers/helper-form-templates.php:
|
1647 |
msgid "Kenya"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: core/helpers/helper-form-templates.php:
|
1651 |
msgid "Kyrgyzstan"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: core/helpers/helper-form-templates.php:
|
1655 |
msgid "Cambodia"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: core/helpers/helper-form-templates.php:
|
1659 |
msgid "Kiribati"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: core/helpers/helper-form-templates.php:
|
1663 |
msgid "Comoros"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: core/helpers/helper-form-templates.php:
|
1667 |
msgid "Saint Kitts and Nevis"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: core/helpers/helper-form-templates.php:
|
1671 |
msgid "North Korea"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: core/helpers/helper-form-templates.php:
|
1675 |
msgid "South Korea"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: core/helpers/helper-form-templates.php:
|
1679 |
msgid "Kuwait"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: core/helpers/helper-form-templates.php:
|
1683 |
msgid "Cayman Islands"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: core/helpers/helper-form-templates.php:
|
1687 |
msgid "Kazakhstan"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: core/helpers/helper-form-templates.php:
|
1691 |
msgid "Lao People's Democratic Republic"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: core/helpers/helper-form-templates.php:
|
1695 |
msgid "Lebanon"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: core/helpers/helper-form-templates.php:
|
1699 |
msgid "Saint Lucia"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: core/helpers/helper-form-templates.php:
|
1703 |
msgid "Liechtenstein"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: core/helpers/helper-form-templates.php:
|
1707 |
msgid "Sri Lanka"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: core/helpers/helper-form-templates.php:
|
1711 |
msgid "Liberia"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: core/helpers/helper-form-templates.php:
|
1715 |
msgid "Lesotho"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: core/helpers/helper-form-templates.php:
|
1719 |
msgid "Lithuania"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: core/helpers/helper-form-templates.php:
|
1723 |
msgid "Luxembourg"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: core/helpers/helper-form-templates.php:
|
1727 |
msgid "Latvia"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: core/helpers/helper-form-templates.php:
|
1731 |
msgid "Libya"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: core/helpers/helper-form-templates.php:
|
1735 |
msgid "Morocco"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: core/helpers/helper-form-templates.php:
|
1739 |
msgid "Monaco"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: core/helpers/helper-form-templates.php:
|
1743 |
msgid "Moldova, Republic of"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: core/helpers/helper-form-templates.php:
|
1747 |
msgid "Montenegro"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: core/helpers/helper-form-templates.php:
|
1751 |
msgid "Saint Martin (French part)"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: core/helpers/helper-form-templates.php:
|
1755 |
msgid "Madagascar"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: core/helpers/helper-form-templates.php:
|
1759 |
msgid "Marshall Islands"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: core/helpers/helper-form-templates.php:
|
1763 |
msgid "North Macedonia, Republic of"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: core/helpers/helper-form-templates.php:
|
1767 |
msgid "Mali"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: core/helpers/helper-form-templates.php:
|
1771 |
msgid "Myanmar"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: core/helpers/helper-form-templates.php:
|
1775 |
msgid "Mongolia"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: core/helpers/helper-form-templates.php:
|
1779 |
msgid "Macao"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: core/helpers/helper-form-templates.php:
|
1783 |
msgid "Northern Mariana Islands"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: core/helpers/helper-form-templates.php:
|
1787 |
msgid "Martinique"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: core/helpers/helper-form-templates.php:
|
1791 |
msgid "Mauritania"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: core/helpers/helper-form-templates.php:
|
1795 |
msgid "Montserrat"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: core/helpers/helper-form-templates.php:
|
1799 |
msgid "Malta"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: core/helpers/helper-form-templates.php:
|
1803 |
msgid "Mauritius"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: core/helpers/helper-form-templates.php:
|
1807 |
msgid "Maldives"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: core/helpers/helper-form-templates.php:
|
1811 |
msgid "Malawi"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: core/helpers/helper-form-templates.php:
|
1815 |
msgid "Mexico"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: core/helpers/helper-form-templates.php:
|
1819 |
msgid "Malaysia"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: core/helpers/helper-form-templates.php:
|
1823 |
msgid "Mozambique"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: core/helpers/helper-form-templates.php:
|
1827 |
msgid "Namibia"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: core/helpers/helper-form-templates.php:
|
1831 |
msgid "New Caledonia"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: core/helpers/helper-form-templates.php:
|
1835 |
msgid "Niger"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: core/helpers/helper-form-templates.php:
|
1839 |
msgid "Norfolk Island"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: core/helpers/helper-form-templates.php:
|
1843 |
msgid "Nigeria"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: core/helpers/helper-form-templates.php:
|
1847 |
msgid "Nicaragua"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: core/helpers/helper-form-templates.php:
|
1851 |
msgid "Netherlands"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: core/helpers/helper-form-templates.php:
|
1855 |
msgid "Norway"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: core/helpers/helper-form-templates.php:
|
1859 |
msgid "Nepal"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: core/helpers/helper-form-templates.php:
|
1863 |
msgid "Nauru"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: core/helpers/helper-form-templates.php:
|
1867 |
msgid "Niue"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: core/helpers/helper-form-templates.php:
|
1871 |
msgid "New Zealand"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: core/helpers/helper-form-templates.php:
|
1875 |
msgid "Oman"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: core/helpers/helper-form-templates.php:
|
1879 |
msgid "Panama"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: core/helpers/helper-form-templates.php:
|
1883 |
msgid "Peru"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: core/helpers/helper-form-templates.php:
|
1887 |
msgid "French Polynesia"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: core/helpers/helper-form-templates.php:
|
1891 |
msgid "Papua New Guinea"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: core/helpers/helper-form-templates.php:
|
1895 |
msgid "Philippines"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: core/helpers/helper-form-templates.php:
|
1899 |
msgid "Pakistan"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: core/helpers/helper-form-templates.php:
|
1903 |
msgid "Poland"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: core/helpers/helper-form-templates.php:
|
1907 |
msgid "Saint Pierre and Miquelon"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: core/helpers/helper-form-templates.php:
|
1911 |
msgid "Puerto Rico"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: core/helpers/helper-form-templates.php:
|
1915 |
msgid "Palestinian Territory, Occupied"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: core/helpers/helper-form-templates.php:
|
1919 |
msgid "Portugal"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: core/helpers/helper-form-templates.php:
|
1923 |
msgid "Palau"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: core/helpers/helper-form-templates.php:
|
1927 |
msgid "Paraguay"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: core/helpers/helper-form-templates.php:
|
1931 |
msgid "Qatar"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: core/helpers/helper-form-templates.php:
|
1935 |
msgid "Reunion"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: core/helpers/helper-form-templates.php:
|
1939 |
msgid "Romania"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: core/helpers/helper-form-templates.php:
|
1943 |
msgid "Serbia"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: core/helpers/helper-form-templates.php:
|
1947 |
msgid "Russian Federation"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: core/helpers/helper-form-templates.php:
|
1951 |
msgid "Rwanda"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: core/helpers/helper-form-templates.php:
|
1955 |
msgid "Saudi Arabia"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: core/helpers/helper-form-templates.php:
|
1959 |
msgid "Solomon Islands"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: core/helpers/helper-form-templates.php:
|
1963 |
msgid "Seychelles"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: core/helpers/helper-form-templates.php:
|
1967 |
msgid "Sudan"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: core/helpers/helper-form-templates.php:
|
1971 |
msgid "Sweden"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: core/helpers/helper-form-templates.php:
|
1975 |
msgid "Singapore"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: core/helpers/helper-form-templates.php:
|
1979 |
-
#: core/helpers/helper-form-templates.php:
|
1980 |
msgid "Saint Helena"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: core/helpers/helper-form-templates.php:
|
1984 |
msgid "Slovenia"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: core/helpers/helper-form-templates.php:
|
1988 |
msgid "Svalbard and Jan Mayen"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: core/helpers/helper-form-templates.php:
|
1992 |
msgid "Slovakia"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: core/helpers/helper-form-templates.php:
|
1996 |
msgid "Sierra Leone"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: core/helpers/helper-form-templates.php:
|
2000 |
msgid "San Marino"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: core/helpers/helper-form-templates.php:
|
2004 |
msgid "Senegal"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: core/helpers/helper-form-templates.php:
|
2008 |
msgid "Somalia"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: core/helpers/helper-form-templates.php:
|
2012 |
msgid "Suriname"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: core/helpers/helper-form-templates.php:
|
2016 |
msgid "South Sudan"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: core/helpers/helper-form-templates.php:
|
2020 |
msgid "Sao Tome and Principe"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: core/helpers/helper-form-templates.php:
|
2024 |
msgid "El Salvador"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: core/helpers/helper-form-templates.php:
|
2028 |
msgid "Sint Maarten (Dutch part)"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: core/helpers/helper-form-templates.php:
|
2032 |
msgid "Syrian Arab Republic"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: core/helpers/helper-form-templates.php:
|
2036 |
msgid "Eswatini"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: core/helpers/helper-form-templates.php:
|
2040 |
msgid "Turks and Caicos Islands"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: core/helpers/helper-form-templates.php:
|
2044 |
msgid "Chad"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: core/helpers/helper-form-templates.php:
|
2048 |
msgid "Togo"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: core/helpers/helper-form-templates.php:
|
2052 |
msgid "Thailand"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: core/helpers/helper-form-templates.php:
|
2056 |
msgid "Tajikistan"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: core/helpers/helper-form-templates.php:
|
2060 |
msgid "Tokelau"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: core/helpers/helper-form-templates.php:
|
2064 |
msgid "Timor-Leste"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: core/helpers/helper-form-templates.php:
|
2068 |
msgid "Turkmenistan"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: core/helpers/helper-form-templates.php:
|
2072 |
msgid "Tunisia"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: core/helpers/helper-form-templates.php:
|
2076 |
msgid "Tonga"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: core/helpers/helper-form-templates.php:
|
2080 |
msgid "Turkey"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: core/helpers/helper-form-templates.php:
|
2084 |
msgid "Trinidad and Tobago"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: core/helpers/helper-form-templates.php:
|
2088 |
msgid "Tuvalu"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: core/helpers/helper-form-templates.php:
|
2092 |
msgid "Taiwan"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: core/helpers/helper-form-templates.php:
|
2096 |
msgid "Tanzania, United Republic of"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: core/helpers/helper-form-templates.php:
|
2100 |
msgid "Ukraine"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: core/helpers/helper-form-templates.php:
|
2104 |
msgid "Uganda"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: core/helpers/helper-form-templates.php:
|
2108 |
msgid "United States of America"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: core/helpers/helper-form-templates.php:
|
2112 |
msgid "Uruguay"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: core/helpers/helper-form-templates.php:
|
2116 |
msgid "Uzbekistan"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: core/helpers/helper-form-templates.php:
|
2120 |
msgid "Holy See (Vatican City State)"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: core/helpers/helper-form-templates.php:
|
2124 |
msgid "Saint Vincent and the Grenadines"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: core/helpers/helper-form-templates.php:
|
2128 |
msgid "Venezuela"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: core/helpers/helper-form-templates.php:
|
2132 |
msgid "Virgin Islands, British"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: core/helpers/helper-form-templates.php:
|
2136 |
msgid "Virgin Islands, U.S."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: core/helpers/helper-form-templates.php:
|
2140 |
msgid "Vietnam"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: core/helpers/helper-form-templates.php:
|
2144 |
msgid "Vanuatu"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: core/helpers/helper-form-templates.php:
|
2148 |
msgid "Wallis and Futuna"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: core/helpers/helper-form-templates.php:
|
2152 |
msgid "Samoa"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: core/helpers/helper-form-templates.php:
|
2156 |
msgid "Kosovo"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: core/helpers/helper-form-templates.php:
|
2160 |
msgid "Yemen"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: core/helpers/helper-form-templates.php:
|
2164 |
msgid "Mayotte"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: core/helpers/helper-form-templates.php:
|
2168 |
msgid "South Africa"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: core/helpers/helper-form-templates.php:
|
2172 |
msgid "Zambia"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: core/helpers/helper-form-templates.php:
|
2176 |
msgid "Zimbabwe"
|
2177 |
msgstr ""
|
2178 |
|
@@ -2853,41 +2876,41 @@ msgid "Yoruba"
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
#: core/helpers/helper-misc.php:931
|
2856 |
-
#: core/templates/parts/customize-checkbox.php:
|
2857 |
-
#: core/templates/parts/customize-checkbox.php:
|
2858 |
-
#: core/templates/parts/customize-radio.php:
|
2859 |
msgid "Full"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
#: core/helpers/helper-misc.php:932
|
2863 |
-
#: core/templates/parts/customize-checkbox.php:
|
2864 |
-
#: core/templates/parts/customize-checkbox.php:
|
2865 |
-
#: core/templates/parts/customize-radio.php:
|
2866 |
msgid "Half"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#: core/helpers/helper-misc.php:933
|
2870 |
-
#: core/templates/parts/customize-checkbox.php:
|
2871 |
-
#: core/templates/parts/customize-checkbox.php:
|
2872 |
-
#: core/templates/parts/customize-radio.php:
|
2873 |
msgid "Third"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
#: core/helpers/helper-misc.php:934
|
2877 |
-
#: core/templates/parts/customize-checkbox.php:
|
2878 |
-
#: core/templates/parts/customize-radio.php:
|
2879 |
msgid "Quarter"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
#: core/helpers/helper-misc.php:935
|
2883 |
-
#: core/templates/parts/customize-checkbox.php:
|
2884 |
-
#: core/templates/parts/customize-checkbox.php:
|
2885 |
-
#: core/templates/parts/customize-radio.php:
|
2886 |
msgid "Auto"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
#: core/helpers/helper-misc.php:940
|
2890 |
-
#: core/templates/parts/customize-checkbox.php:
|
2891 |
msgid "Apply to all fields"
|
2892 |
msgstr ""
|
2893 |
|
@@ -2959,9 +2982,9 @@ msgstr ""
|
|
2959 |
|
2960 |
#: core/templates/customize-form-item.php:33
|
2961 |
#: core/templates/customize-form-part-footer.php:3
|
2962 |
-
#: core/templates/parts/customize-checkbox.php:
|
2963 |
-
#: core/templates/parts/customize-radio.php:
|
2964 |
-
#: core/templates/parts/customize-select.php:
|
2965 |
msgid "Delete"
|
2966 |
msgstr ""
|
2967 |
|
@@ -3027,159 +3050,159 @@ msgstr ""
|
|
3027 |
msgid "Close"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: core/templates/parts/customize-checkbox.php:
|
3031 |
-
#: core/templates/parts/customize-checkbox.php:
|
3032 |
-
#: core/templates/parts/customize-radio.php:
|
3033 |
-
#: core/templates/parts/customize-radio.php:
|
3034 |
-
#: core/templates/parts/customize-select.php:
|
3035 |
-
#: core/templates/parts/customize-select.php:
|
3036 |
msgid "Choices"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
-
#: core/templates/parts/customize-checkbox.php:
|
3040 |
-
#: core/templates/parts/customize-radio.php:
|
3041 |
-
#: core/templates/parts/customize-select.php:
|
3042 |
msgid "No choices added yet."
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: core/templates/parts/customize-checkbox.php:
|
3046 |
-
#: core/templates/parts/customize-radio.php:
|
3047 |
-
#: core/templates/parts/customize-select.php:
|
3048 |
msgid "Type or paste your choices here, adding each on a new line."
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: core/templates/parts/customize-checkbox.php:
|
3052 |
-
#: core/templates/parts/customize-radio.php:
|
3053 |
-
#: core/templates/parts/customize-select.php:
|
3054 |
msgid "Add choice"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: core/templates/parts/customize-checkbox.php:
|
3058 |
-
#: core/templates/parts/customize-radio.php:
|
3059 |
-
#: core/templates/parts/customize-select.php:
|
3060 |
msgid "Or, bulk add choices"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#: core/templates/parts/customize-checkbox.php:
|
3064 |
-
#: core/templates/parts/customize-radio.php:
|
3065 |
-
#: core/templates/parts/customize-select.php:
|
3066 |
msgid "Add choices"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: core/templates/parts/customize-checkbox.php:
|
3070 |
-
#: core/templates/parts/customize-radio.php:
|
3071 |
-
#: core/templates/parts/customize-select.php:
|
3072 |
msgid "Cancel"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#: core/templates/parts/customize-checkbox.php:
|
3076 |
-
#: core/templates/parts/customize-email.php:
|
3077 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3078 |
-
#: core/templates/parts/customize-number.php:
|
3079 |
-
#: core/templates/parts/customize-radio.php:
|
3080 |
-
#: core/templates/parts/customize-select.php:
|
3081 |
-
#: core/templates/parts/customize-single-line-text.php:
|
3082 |
msgid "Require an answer"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: core/templates/parts/customize-checkbox.php:
|
3086 |
msgid "Add 'select all' choice"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: core/templates/parts/customize-checkbox.php:
|
3090 |
-
#: core/templates/parts/customize-radio.php:
|
3091 |
msgid "Choices display"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: core/templates/parts/customize-checkbox.php:
|
3095 |
-
#: core/templates/parts/customize-radio.php:
|
3096 |
msgid "Horizontal"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: core/templates/parts/customize-checkbox.php:
|
3100 |
-
#: core/templates/parts/customize-radio.php:
|
3101 |
msgid "Vertical"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: core/templates/parts/customize-checkbox.php:
|
3105 |
-
#: core/templates/parts/customize-radio.php:
|
3106 |
msgid "Choices width"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: core/templates/parts/customize-checkbox.php:
|
3110 |
-
#: core/templates/parts/customize-email.php:
|
3111 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3112 |
-
#: core/templates/parts/customize-number.php:
|
3113 |
-
#: core/templates/parts/customize-radio.php:
|
3114 |
-
#: core/templates/parts/customize-select.php:
|
3115 |
-
#: core/templates/parts/customize-single-line-text.php:
|
3116 |
msgid "CSS classes"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: core/templates/parts/customize-checkbox.php:
|
3120 |
-
#: core/templates/parts/customize-radio.php:
|
3121 |
-
#: core/templates/parts/customize-select.php:
|
3122 |
msgid "Make this choice default"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: core/templates/parts/customize-checkbox.php:
|
3126 |
-
#: core/templates/parts/customize-radio.php:
|
3127 |
-
#: core/templates/parts/customize-select.php:
|
3128 |
msgid "More"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: core/templates/parts/customize-email.php:
|
3132 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3133 |
-
#: core/templates/parts/customize-number.php:
|
3134 |
-
#: core/templates/parts/customize-single-line-text.php:
|
3135 |
msgid "Prefill"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: core/templates/parts/customize-email.php:
|
3139 |
-
#: core/templates/parts/customize-number.php:
|
3140 |
-
#: core/templates/parts/customize-single-line-text.php:
|
3141 |
msgid "Prefix"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: core/templates/parts/customize-email.php:
|
3145 |
-
#: core/templates/parts/customize-number.php:
|
3146 |
-
#: core/templates/parts/customize-single-line-text.php:
|
3147 |
msgid "Suffix"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3151 |
msgid "Limit words/characters"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3155 |
msgid "Limit"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3159 |
msgid "Count"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: core/templates/parts/customize-multi-line-text.php:
|
3163 |
msgid "Rows"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: core/templates/parts/customize-number.php:
|
3167 |
msgid "Min number"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: core/templates/parts/customize-number.php:
|
3171 |
msgid "Max number"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: core/templates/parts/customize-number.php:
|
3175 |
msgid "Use number separators"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: core/templates/parts/customize-number.php:
|
3179 |
msgid "Grouping"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: core/templates/parts/customize-number.php:
|
3183 |
msgid "Decimal"
|
3184 |
msgstr ""
|
3185 |
|
2 |
# This file is distributed under the same license as the Happyforms (free) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Happyforms (free) 1.12.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2021-04-12 11:23:56+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
266 |
msgstr ""
|
267 |
|
268 |
#: core/classes/class-form-messages.php:32
|
269 |
+
#: core/templates/parts/customize-multi-line-text.php:59
|
270 |
msgid "Min words"
|
271 |
msgstr ""
|
272 |
|
273 |
#: core/classes/class-form-messages.php:36
|
274 |
#: core/classes/parts/class-part-multi-line-text.php:74
|
275 |
+
#: core/templates/parts/customize-multi-line-text.php:58
|
276 |
msgid "Max words"
|
277 |
msgstr ""
|
278 |
|
279 |
#: core/classes/class-form-messages.php:40
|
280 |
#: core/classes/parts/class-part-multi-line-text.php:70
|
281 |
+
#: core/templates/parts/customize-multi-line-text.php:61
|
282 |
msgid "Min characters"
|
283 |
msgstr ""
|
284 |
|
285 |
#: core/classes/class-form-messages.php:44
|
286 |
+
#: core/templates/parts/customize-multi-line-text.php:60
|
287 |
msgid "Max characters"
|
288 |
msgstr ""
|
289 |
|
458 |
msgid "Question is optional"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: core/classes/class-form-styles.php:53
|
462 |
msgid "Left-to-right"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: core/classes/class-form-styles.php:54
|
466 |
msgid "Right-to-left"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: core/classes/class-form-styles.php:73 core/classes/class-form-styles.php:147
|
470 |
+
#: core/classes/class-form-styles.php:157
|
471 |
+
#: core/classes/class-form-styles.php:280
|
472 |
+
#: core/classes/class-form-styles.php:290
|
473 |
msgid "Default"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: core/classes/class-form-styles.php:74 core/classes/class-form-styles.php:146
|
477 |
+
#: core/classes/class-form-styles.php:156
|
478 |
+
#: core/classes/class-form-styles.php:289
|
479 |
msgid "Narrow"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: core/classes/class-form-styles.php:75 core/classes/class-form-styles.php:148
|
483 |
+
#: core/classes/class-form-styles.php:158
|
484 |
+
#: core/classes/class-form-styles.php:291
|
485 |
msgid "Wide"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: core/classes/class-form-styles.php:89 core/classes/class-form-styles.php:118
|
489 |
+
#: core/classes/class-form-styles.php:261
|
490 |
+
#: core/templates/parts/customize-checkbox.php:8
|
491 |
+
#: core/templates/parts/customize-email.php:8
|
492 |
+
#: core/templates/parts/customize-multi-line-text.php:8
|
493 |
+
#: core/templates/parts/customize-number.php:8
|
494 |
+
#: core/templates/parts/customize-radio.php:8
|
495 |
+
#: core/templates/parts/customize-select.php:8
|
496 |
+
#: core/templates/parts/customize-single-line-text.php:8
|
497 |
msgid "Show"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: core/classes/class-form-styles.php:90 core/classes/class-form-styles.php:119
|
501 |
+
#: core/classes/class-form-styles.php:262
|
502 |
+
#: core/templates/parts/customize-checkbox.php:15
|
503 |
+
#: core/templates/parts/customize-email.php:15
|
504 |
+
#: core/templates/parts/customize-multi-line-text.php:15
|
505 |
+
#: core/templates/parts/customize-number.php:15
|
506 |
+
#: core/templates/parts/customize-radio.php:15
|
507 |
+
#: core/templates/parts/customize-select.php:15
|
508 |
+
#: core/templates/parts/customize-single-line-text.php:15
|
509 |
msgid "Hide"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: core/classes/class-form-styles.php:98 core/classes/class-form-styles.php:172
|
513 |
+
#: core/classes/class-form-styles.php:203
|
514 |
+
#: core/classes/class-form-styles.php:212
|
515 |
+
#: core/classes/class-form-styles.php:241
|
516 |
+
#: core/classes/class-form-styles.php:318
|
517 |
+
#: core/templates/parts/customize-checkbox.php:10
|
518 |
+
#: core/templates/parts/customize-email.php:10
|
519 |
+
#: core/templates/parts/customize-multi-line-text.php:10
|
520 |
+
#: core/templates/parts/customize-number.php:10
|
521 |
+
#: core/templates/parts/customize-radio.php:10
|
522 |
+
#: core/templates/parts/customize-select.php:10
|
523 |
+
#: core/templates/parts/customize-single-line-text.php:10
|
524 |
+
msgid "Left"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
#: core/classes/class-form-styles.php:99 core/classes/class-form-styles.php:173
|
|
|
528 |
#: core/classes/class-form-styles.php:213
|
529 |
#: core/classes/class-form-styles.php:242
|
530 |
#: core/classes/class-form-styles.php:319
|
531 |
+
msgid "Center"
|
532 |
msgstr ""
|
533 |
|
534 |
#: core/classes/class-form-styles.php:100
|
536 |
#: core/classes/class-form-styles.php:214
|
537 |
#: core/classes/class-form-styles.php:243
|
538 |
#: core/classes/class-form-styles.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Right"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: core/classes/class-form-styles.php:127
|
543 |
msgid "All sides"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: core/classes/class-form-styles.php:128
|
547 |
msgid "Bottom only"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: core/classes/class-form-styles.php:136
|
551 |
+
#: core/classes/class-form-styles.php:270
|
552 |
msgid "Square"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: core/classes/class-form-styles.php:137
|
556 |
+
#: core/classes/class-form-styles.php:271
|
557 |
msgid "Round"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: core/classes/class-form-styles.php:138
|
561 |
+
#: core/classes/class-form-styles.php:272
|
562 |
msgid "Pill"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: core/classes/class-form-styles.php:192
|
566 |
+
#: core/classes/class-form-styles.php:309
|
567 |
msgid "Normal"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: core/classes/class-form-styles.php:193
|
571 |
+
#: core/classes/class-form-styles.php:310
|
572 |
msgid "Bold"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: core/classes/class-form-styles.php:201
|
576 |
msgid "Above"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: core/classes/class-form-styles.php:202
|
580 |
+
#: core/templates/parts/customize-checkbox.php:13
|
581 |
+
#: core/templates/parts/customize-email.php:13
|
582 |
+
#: core/templates/parts/customize-multi-line-text.php:13
|
583 |
+
#: core/templates/parts/customize-number.php:13
|
584 |
+
#: core/templates/parts/customize-radio.php:13
|
585 |
+
#: core/templates/parts/customize-select.php:13
|
586 |
+
#: core/templates/parts/customize-single-line-text.php:13
|
587 |
msgid "Below"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: core/classes/class-form-styles.php:204
|
591 |
msgid "Hidden"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: core/classes/class-form-styles.php:232
|
595 |
msgid "Standard"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: core/classes/class-form-styles.php:233
|
599 |
msgid "Tooltip"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: core/classes/class-form-styles.php:281
|
603 |
msgid "Full width"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: core/classes/class-form-styles.php:532
|
607 |
msgid "Above form"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: core/classes/class-form-styles.php:533
|
611 |
msgid "Below form"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: core/classes/class-form-styles.php:553
|
615 |
msgid "General"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: core/classes/class-form-styles.php:558
|
619 |
+
#: core/classes/class-form-styles.php:878 core/helpers/helper-misc.php:929
|
620 |
+
#: core/templates/parts/customize-checkbox.php:80
|
621 |
msgid "Width"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: core/classes/class-form-styles.php:563
|
625 |
+
#: core/classes/class-form-styles.php:883
|
626 |
msgid "Padding"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: core/classes/class-form-styles.php:568
|
630 |
msgid "Direction"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: core/classes/class-form-styles.php:573
|
634 |
msgid "Message location"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: core/classes/class-form-styles.php:579
|
638 |
+
#: core/classes/class-form-styles.php:664
|
639 |
+
#: core/classes/class-form-styles.php:739
|
640 |
+
#: core/classes/class-form-styles.php:909
|
641 |
msgid "Colors"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: core/classes/class-form-styles.php:583
|
645 |
msgid "Primary"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: core/classes/class-form-styles.php:588
|
649 |
msgid "Success message background"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: core/classes/class-form-styles.php:593
|
653 |
msgid "Success message text"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: core/classes/class-form-styles.php:598
|
657 |
msgid "Validation message text"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: core/classes/class-form-styles.php:603
|
661 |
msgid "Error message background"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: core/classes/class-form-styles.php:608
|
665 |
msgid "Error message text"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: core/classes/class-form-styles.php:613
|
669 |
#: inc/classes/parts/class-part-layout-title-dummy.php:8
|
670 |
#: inc/classes/parts/class-part-title-dummy.php:8
|
671 |
msgid "Title"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: core/classes/class-form-styles.php:618
|
675 |
msgid "Display"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: core/classes/class-form-styles.php:623
|
679 |
+
#: core/classes/class-form-styles.php:898
|
680 |
msgid "Alignment"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: core/classes/class-form-styles.php:628
|
684 |
+
#: core/classes/class-form-styles.php:888
|
685 |
msgid "Font size"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: core/classes/class-form-styles.php:633
|
689 |
msgid "Field borders & spacing"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: core/classes/class-form-styles.php:638
|
693 |
+
#: core/classes/class-form-styles.php:668
|
694 |
+
#: core/classes/class-form-styles.php:868
|
695 |
+
#: core/classes/class-form-styles.php:923
|
696 |
msgid "Border"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: core/classes/class-form-styles.php:643
|
700 |
msgid "Border location"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: core/classes/class-form-styles.php:648
|
704 |
+
#: core/classes/class-form-styles.php:873
|
705 |
msgid "Border radius"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: core/classes/class-form-styles.php:653
|
709 |
msgid "Outer spacing"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: core/classes/class-form-styles.php:658
|
713 |
msgid "Inner spacing"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: core/classes/class-form-styles.php:673
|
717 |
msgid "Border on focus"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: core/classes/class-form-styles.php:678
|
721 |
+
#: core/classes/class-form-styles.php:773
|
722 |
+
#: core/classes/class-form-styles.php:798
|
723 |
+
#: core/classes/class-form-styles.php:913
|
724 |
msgid "Background"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: core/classes/class-form-styles.php:683
|
728 |
+
#: core/classes/class-form-styles.php:783
|
729 |
+
#: core/classes/class-form-styles.php:803
|
730 |
+
#: core/classes/class-form-styles.php:918
|
731 |
msgid "Background on focus"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: core/classes/class-form-styles.php:688
|
735 |
msgid "Field labels & text"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: core/classes/class-form-styles.php:693
|
739 |
msgid "Toggle placeholder on field focus"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: core/classes/class-form-styles.php:698
|
743 |
msgid "Label alignment"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: core/classes/class-form-styles.php:703
|
747 |
msgid "Label font size"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: core/classes/class-form-styles.php:708
|
751 |
msgid "Label font weight"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: core/classes/class-form-styles.php:713
|
|
|
|
|
|
|
|
|
755 |
msgid "Hint alignment"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: core/classes/class-form-styles.php:718
|
759 |
msgid "Hint font size"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: core/classes/class-form-styles.php:723
|
763 |
msgid "Hint display"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: core/classes/class-form-styles.php:728
|
767 |
msgid "Placeholder & value alignment"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: core/classes/class-form-styles.php:733
|
771 |
msgid "Value font size"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: core/classes/class-form-styles.php:743
|
775 |
#: core/templates/parts/customize-checkbox.php:4
|
776 |
+
#: core/templates/parts/customize-checkbox.php:114
|
777 |
#: core/templates/parts/customize-email.php:4
|
778 |
#: core/templates/parts/customize-multi-line-text.php:4
|
779 |
#: core/templates/parts/customize-number.php:4
|
780 |
#: core/templates/parts/customize-radio.php:4
|
781 |
+
#: core/templates/parts/customize-radio.php:97
|
782 |
#: core/templates/parts/customize-select.php:4
|
783 |
+
#: core/templates/parts/customize-select.php:83
|
784 |
#: core/templates/parts/customize-single-line-text.php:4
|
785 |
msgid "Label"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: core/classes/class-form-styles.php:748
|
789 |
msgid "Value"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: core/classes/class-form-styles.php:753
|
793 |
+
#: core/templates/parts/customize-email.php:20
|
794 |
+
#: core/templates/parts/customize-multi-line-text.php:20
|
795 |
+
#: core/templates/parts/customize-number.php:20
|
796 |
+
#: core/templates/parts/customize-select.php:20
|
797 |
+
#: core/templates/parts/customize-single-line-text.php:20
|
798 |
#: inc/classes/parts/class-part-placeholder-dummy.php:8
|
799 |
msgid "Placeholder"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: core/classes/class-form-styles.php:758
|
803 |
+
#: core/templates/parts/customize-checkbox.php:20
|
804 |
+
#: core/templates/parts/customize-email.php:28
|
805 |
+
#: core/templates/parts/customize-multi-line-text.php:28
|
806 |
+
#: core/templates/parts/customize-number.php:28
|
807 |
+
#: core/templates/parts/customize-radio.php:20
|
808 |
+
#: core/templates/parts/customize-select.php:24
|
809 |
+
#: core/templates/parts/customize-single-line-text.php:28
|
810 |
msgid "Hint"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: core/classes/class-form-styles.php:763
|
814 |
msgid "Dropdowns"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: core/classes/class-form-styles.php:769
|
818 |
msgid "Items"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: core/classes/class-form-styles.php:778
|
822 |
+
#: core/classes/class-form-styles.php:928
|
823 |
msgid "Text"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: core/classes/class-form-styles.php:788
|
827 |
msgid "Text focused"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: core/classes/class-form-styles.php:793
|
831 |
msgid "Checkboxes & Radios"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: core/classes/class-form-styles.php:808
|
835 |
msgid "Checkmark"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: core/classes/class-form-styles.php:813
|
839 |
msgid "Rating"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: core/classes/class-form-styles.php:818
|
843 |
msgid "Rating star color"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: core/classes/class-form-styles.php:823
|
847 |
msgid "Rating star color on hover"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: core/classes/class-form-styles.php:828
|
851 |
msgid "Tables"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: core/classes/class-form-styles.php:833
|
855 |
msgid "Odd row primary"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: core/classes/class-form-styles.php:838
|
859 |
msgid "Odd row secondary"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: core/classes/class-form-styles.php:843
|
863 |
msgid "Even row primary"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: core/classes/class-form-styles.php:848
|
867 |
msgid "Even row secondary"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: core/classes/class-form-styles.php:853
|
871 |
msgid "Dividers"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: core/classes/class-form-styles.php:858
|
875 |
msgid "Color"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: core/classes/class-form-styles.php:863
|
879 |
msgid "Submit button"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: core/classes/class-form-styles.php:893
|
883 |
msgid "Font weight"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: core/classes/class-form-styles.php:903
|
887 |
msgid "Make button a field of last input"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: core/classes/class-form-styles.php:933
|
891 |
msgid "Text on focus"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: core/classes/class-form-styles.php:945
|
895 |
msgid "Add your own CSS code here to customize the appearance of your form."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: core/classes/class-form-styles.php:947
|
899 |
msgid ""
|
900 |
"For each rule you add, we'll prepend your form's HTML ID. This makes sure "
|
901 |
"all styles added will only apply to this form. For example %s becomes %s."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: core/classes/class-form-styles.php:955
|
905 |
msgid ""
|
906 |
"The edit field automatically highlights code syntax. You can disable this "
|
907 |
"in your <a href=\"%s\" class=\"%s\" target=\"_blank\">user profile</a> to "
|
908 |
"work in plain text mode."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: core/classes/class-form-styles.php:963
|
912 |
+
#: core/classes/class-form-styles.php:973
|
913 |
msgid "Additional CSS"
|
914 |
msgstr ""
|
915 |
|
1174 |
msgid "Spam protection, skip this field"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: core/helpers/helper-form-templates.php:1010
|
1178 |
msgid "January"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: core/helpers/helper-form-templates.php:1011
|
1182 |
msgid "February"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: core/helpers/helper-form-templates.php:1012
|
1186 |
msgid "March"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: core/helpers/helper-form-templates.php:1013
|
1190 |
msgid "April"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: core/helpers/helper-form-templates.php:1014
|
1194 |
msgid "May"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: core/helpers/helper-form-templates.php:1015
|
1198 |
msgid "June"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: core/helpers/helper-form-templates.php:1016
|
1202 |
msgid "July"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: core/helpers/helper-form-templates.php:1017
|
1206 |
msgid "August"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: core/helpers/helper-form-templates.php:1018
|
1210 |
msgid "September"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: core/helpers/helper-form-templates.php:1019
|
1214 |
msgid "October"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: core/helpers/helper-form-templates.php:1020
|
1218 |
msgid "November"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: core/helpers/helper-form-templates.php:1021
|
1222 |
msgid "December"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: core/helpers/helper-form-templates.php:1062
|
1226 |
msgid "Ascension Island"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: core/helpers/helper-form-templates.php:1063 core/helpers/helper-misc.php:228
|
1230 |
msgid "Andorra"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: core/helpers/helper-form-templates.php:1064 core/helpers/helper-misc.php:446
|
1234 |
msgid "United Arab Emirates"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: core/helpers/helper-form-templates.php:1065 core/helpers/helper-misc.php:224
|
1238 |
msgid "Afghanistan"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: core/helpers/helper-form-templates.php:1066 core/helpers/helper-misc.php:232
|
1242 |
msgid "Antigua and Barbuda"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: core/helpers/helper-form-templates.php:1067 core/helpers/helper-misc.php:230
|
1246 |
msgid "Anguilla"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: core/helpers/helper-form-templates.php:1068 core/helpers/helper-misc.php:225
|
1250 |
msgid "Albania"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: core/helpers/helper-form-templates.php:1069 core/helpers/helper-misc.php:234
|
1254 |
msgid "Armenia"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: core/helpers/helper-form-templates.php:1070 core/helpers/helper-misc.php:229
|
1258 |
msgid "Angola"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: core/helpers/helper-form-templates.php:1071 core/helpers/helper-misc.php:233
|
1262 |
msgid "Argentina"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: core/helpers/helper-form-templates.php:1072 core/helpers/helper-misc.php:227
|
1266 |
msgid "American Samoa"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: core/helpers/helper-form-templates.php:1073 core/helpers/helper-misc.php:237
|
1270 |
msgid "Austria"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: core/helpers/helper-form-templates.php:1074 core/helpers/helper-misc.php:236
|
1274 |
msgid "Australia"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: core/helpers/helper-form-templates.php:1075 core/helpers/helper-misc.php:235
|
1278 |
msgid "Aruba"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: core/helpers/helper-form-templates.php:1076
|
1282 |
msgid "Åland Islands"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: core/helpers/helper-form-templates.php:1077 core/helpers/helper-misc.php:238
|
1286 |
msgid "Azerbaijan"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: core/helpers/helper-form-templates.php:1078
|
1290 |
msgid "Bosnia and Herzegovina"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: core/helpers/helper-form-templates.php:1079 core/helpers/helper-misc.php:242
|
1294 |
msgid "Barbados"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: core/helpers/helper-form-templates.php:1080 core/helpers/helper-misc.php:241
|
1298 |
msgid "Bangladesh"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: core/helpers/helper-form-templates.php:1081 core/helpers/helper-misc.php:244
|
1302 |
msgid "Belgium"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: core/helpers/helper-form-templates.php:1082 core/helpers/helper-misc.php:257
|
1306 |
msgid "Burkina Faso"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: core/helpers/helper-form-templates.php:1083 core/helpers/helper-misc.php:256
|
1310 |
msgid "Bulgaria"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: core/helpers/helper-form-templates.php:1084 core/helpers/helper-misc.php:240
|
1314 |
msgid "Bahrain"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: core/helpers/helper-form-templates.php:1085 core/helpers/helper-misc.php:258
|
1318 |
msgid "Burundi"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: core/helpers/helper-form-templates.php:1086 core/helpers/helper-misc.php:246
|
1322 |
msgid "Benin"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: core/helpers/helper-form-templates.php:1087
|
1326 |
msgid "Saint Barthélemy"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: core/helpers/helper-form-templates.php:1088 core/helpers/helper-misc.php:247
|
1330 |
msgid "Bermuda"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: core/helpers/helper-form-templates.php:1089 core/helpers/helper-misc.php:255
|
1334 |
msgid "Brunei Darussalam"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:249
|
1338 |
msgid "Bolivia"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: core/helpers/helper-form-templates.php:1091
|
1342 |
msgid "Bonaire, Sint Eustatius and Saba"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:253
|
1346 |
msgid "Brazil"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:239
|
1350 |
msgid "Bahamas"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: core/helpers/helper-form-templates.php:1094 core/helpers/helper-misc.php:248
|
1354 |
msgid "Bhutan"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:251
|
1358 |
msgid "Botswana"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:243
|
1362 |
msgid "Belarus"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: core/helpers/helper-form-templates.php:1097 core/helpers/helper-misc.php:245
|
1366 |
msgid "Belize"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: core/helpers/helper-form-templates.php:1098 core/helpers/helper-misc.php:261
|
1370 |
msgid "Canada"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: core/helpers/helper-form-templates.php:1099 core/helpers/helper-misc.php:269
|
1374 |
msgid "Cocos (Keeling) Islands"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:273
|
1378 |
msgid "Congo, the Democratic Republic of the"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:264
|
1382 |
msgid "Central African Republic"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: core/helpers/helper-form-templates.php:1102 core/helpers/helper-misc.php:272
|
1386 |
msgid "Congo"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:429
|
1390 |
msgid "Switzerland"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: core/helpers/helper-form-templates.php:1104
|
1394 |
msgid "Cote D'Ivoire"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:274
|
1398 |
msgid "Cook Islands"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: core/helpers/helper-form-templates.php:1106 core/helpers/helper-misc.php:266
|
1402 |
msgid "Chile"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:260
|
1406 |
msgid "Cameroon"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: core/helpers/helper-form-templates.php:1108 core/helpers/helper-misc.php:267
|
1410 |
msgid "China"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: core/helpers/helper-form-templates.php:1109 core/helpers/helper-misc.php:270
|
1414 |
msgid "Colombia"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:275
|
1418 |
msgid "Costa Rica"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:278
|
1422 |
msgid "Cuba"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: core/helpers/helper-form-templates.php:1112 core/helpers/helper-misc.php:262
|
1426 |
msgid "Cape Verde"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: core/helpers/helper-form-templates.php:1113
|
1430 |
msgid "Curaçao"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:268
|
1434 |
msgid "Christmas Island"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:279
|
1438 |
msgid "Cyprus"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:280
|
1442 |
msgid "Czech Republic"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: core/helpers/helper-form-templates.php:1117 core/helpers/helper-misc.php:305
|
1446 |
msgid "Germany"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: core/helpers/helper-form-templates.php:1118 core/helpers/helper-misc.php:282
|
1450 |
msgid "Djibouti"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: core/helpers/helper-form-templates.php:1119 core/helpers/helper-misc.php:281
|
1454 |
msgid "Denmark"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:283
|
1458 |
msgid "Dominica"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:284
|
1462 |
msgid "Dominican Republic"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: core/helpers/helper-form-templates.php:1122 core/helpers/helper-misc.php:226
|
1466 |
msgid "Algeria"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:286
|
1470 |
msgid "Ecuador"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:291
|
1474 |
msgid "Estonia"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: core/helpers/helper-form-templates.php:1125 core/helpers/helper-misc.php:287
|
1478 |
msgid "Egypt"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:458
|
1482 |
msgid "Western Sahara"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:290
|
1486 |
msgid "Eritrea"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:420
|
1490 |
msgid "Spain"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:292
|
1494 |
msgid "Ethiopia"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: core/helpers/helper-form-templates.php:1130 core/helpers/helper-misc.php:296
|
1498 |
msgid "Finland"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:295
|
1502 |
msgid "Fiji"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:293
|
1506 |
msgid "Falkland Islands (Malvinas)"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:364
|
1510 |
msgid "Micronesia, Federated States of"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: core/helpers/helper-form-templates.php:1134 core/helpers/helper-misc.php:294
|
1514 |
msgid "Faroe Islands"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:297
|
1518 |
msgid "France"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: core/helpers/helper-form-templates.php:1136 core/helpers/helper-misc.php:302
|
1522 |
msgid "Gabon"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:447
|
1526 |
msgid "United Kingdom"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:310
|
1530 |
msgid "Grenada"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: core/helpers/helper-form-templates.php:1139 core/helpers/helper-misc.php:304
|
1534 |
msgid "Georgia"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:299
|
1538 |
msgid "French Guiana"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: core/helpers/helper-form-templates.php:1141
|
1542 |
msgid "Guernsey"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:306
|
1546 |
msgid "Ghana"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:307
|
1550 |
msgid "Gibraltar"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:309
|
1554 |
msgid "Greenland"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:303
|
1558 |
msgid "Gambia"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:314
|
1562 |
msgid "Guinea"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:311
|
1566 |
msgid "Guadeloupe"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:289
|
1570 |
msgid "Equatorial Guinea"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:308
|
1574 |
msgid "Greece"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:313
|
1578 |
msgid "Guatemala"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:312
|
1582 |
msgid "Guam"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:315
|
1586 |
msgid "Guinea-Bissau"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:316
|
1590 |
msgid "Guyana"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:321
|
1594 |
msgid "Hong Kong"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:320
|
1598 |
msgid "Honduras"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: core/helpers/helper-form-templates.php:1156
|
1602 |
msgid "Croatia"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:317
|
1606 |
msgid "Haiti"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:322
|
1610 |
msgid "Hungary"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:325
|
1614 |
msgid "Indonesia"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: core/helpers/helper-form-templates.php:1160 core/helpers/helper-misc.php:328
|
1618 |
msgid "Ireland"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:329
|
1622 |
msgid "Israel"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: core/helpers/helper-form-templates.php:1162
|
1626 |
msgid "Isle of Man"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:324
|
1630 |
msgid "India"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: core/helpers/helper-form-templates.php:1164 core/helpers/helper-misc.php:254
|
1634 |
msgid "British Indian Ocean Territory"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:327
|
1638 |
msgid "Iraq"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: core/helpers/helper-form-templates.php:1166
|
1642 |
msgid "Iran, Islamic Republic of"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:323
|
1646 |
msgid "Iceland"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:330
|
1650 |
msgid "Italy"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: core/helpers/helper-form-templates.php:1169
|
1654 |
msgid "Jersey"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:331
|
1658 |
msgid "Jamaica"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:333
|
1662 |
msgid "Jordan"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: core/helpers/helper-form-templates.php:1172 core/helpers/helper-misc.php:332
|
1666 |
msgid "Japan"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:335
|
1670 |
msgid "Kenya"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:340
|
1674 |
msgid "Kyrgyzstan"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:259
|
1678 |
msgid "Cambodia"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:336
|
1682 |
msgid "Kiribati"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: core/helpers/helper-form-templates.php:1177 core/helpers/helper-misc.php:271
|
1686 |
msgid "Comoros"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:403
|
1690 |
msgid "Saint Kitts and Nevis"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: core/helpers/helper-form-templates.php:1179
|
1694 |
msgid "North Korea"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: core/helpers/helper-form-templates.php:1180
|
1698 |
msgid "South Korea"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:339
|
1702 |
msgid "Kuwait"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:263
|
1706 |
msgid "Cayman Islands"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:334
|
1710 |
msgid "Kazakhstan"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: core/helpers/helper-form-templates.php:1184
|
1714 |
msgid "Lao People's Democratic Republic"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: core/helpers/helper-form-templates.php:1185 core/helpers/helper-misc.php:343
|
1718 |
msgid "Lebanon"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:404
|
1722 |
msgid "Saint Lucia"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:347
|
1726 |
msgid "Liechtenstein"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: core/helpers/helper-form-templates.php:1188 core/helpers/helper-misc.php:421
|
1730 |
msgid "Sri Lanka"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:345
|
1734 |
msgid "Liberia"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:344
|
1738 |
msgid "Lesotho"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:348
|
1742 |
msgid "Lithuania"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:349
|
1746 |
msgid "Luxembourg"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:342
|
1750 |
msgid "Latvia"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: core/helpers/helper-form-templates.php:1194
|
1754 |
msgid "Libya"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: core/helpers/helper-form-templates.php:1195 core/helpers/helper-misc.php:369
|
1758 |
msgid "Morocco"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:366
|
1762 |
msgid "Monaco"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:365
|
1766 |
msgid "Moldova, Republic of"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: core/helpers/helper-form-templates.php:1198
|
1770 |
msgid "Montenegro"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: core/helpers/helper-form-templates.php:1199
|
1774 |
msgid "Saint Martin (French part)"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:352
|
1778 |
msgid "Madagascar"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:358
|
1782 |
msgid "Marshall Islands"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: core/helpers/helper-form-templates.php:1202
|
1786 |
msgid "North Macedonia, Republic of"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:356
|
1790 |
msgid "Mali"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:371
|
1794 |
msgid "Myanmar"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: core/helpers/helper-form-templates.php:1205 core/helpers/helper-misc.php:367
|
1798 |
msgid "Mongolia"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: core/helpers/helper-form-templates.php:1206
|
1802 |
msgid "Macao"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:384
|
1806 |
msgid "Northern Mariana Islands"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:359
|
1810 |
msgid "Martinique"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:360
|
1814 |
msgid "Mauritania"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:368
|
1818 |
msgid "Montserrat"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:357
|
1822 |
msgid "Malta"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:361
|
1826 |
msgid "Mauritius"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:355
|
1830 |
msgid "Maldives"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:353
|
1834 |
msgid "Malawi"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:363
|
1838 |
msgid "Mexico"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:354
|
1842 |
msgid "Malaysia"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:370
|
1846 |
msgid "Mozambique"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:372
|
1850 |
msgid "Namibia"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:377
|
1854 |
msgid "New Caledonia"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: core/helpers/helper-form-templates.php:1220 core/helpers/helper-misc.php:380
|
1858 |
msgid "Niger"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:383
|
1862 |
msgid "Norfolk Island"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:381
|
1866 |
msgid "Nigeria"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: core/helpers/helper-form-templates.php:1223 core/helpers/helper-misc.php:379
|
1870 |
msgid "Nicaragua"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: core/helpers/helper-form-templates.php:1224 core/helpers/helper-misc.php:375
|
1874 |
msgid "Netherlands"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:385
|
1878 |
msgid "Norway"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:374
|
1882 |
msgid "Nepal"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: core/helpers/helper-form-templates.php:1227 core/helpers/helper-misc.php:373
|
1886 |
msgid "Nauru"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:382
|
1890 |
msgid "Niue"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:378
|
1894 |
msgid "New Zealand"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:386
|
1898 |
msgid "Oman"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:389
|
1902 |
msgid "Panama"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: core/helpers/helper-form-templates.php:1232 core/helpers/helper-misc.php:392
|
1906 |
msgid "Peru"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:300
|
1910 |
msgid "French Polynesia"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:390
|
1914 |
msgid "Papua New Guinea"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:393
|
1918 |
msgid "Philippines"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:387
|
1922 |
msgid "Pakistan"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:395
|
1926 |
msgid "Poland"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: core/helpers/helper-form-templates.php:1238
|
1930 |
msgid "Saint Pierre and Miquelon"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: core/helpers/helper-form-templates.php:1239 core/helpers/helper-misc.php:397
|
1934 |
msgid "Puerto Rico"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: core/helpers/helper-form-templates.php:1240
|
1938 |
msgid "Palestinian Territory, Occupied"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:396
|
1942 |
msgid "Portugal"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:388
|
1946 |
msgid "Palau"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:391
|
1950 |
msgid "Paraguay"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:398
|
1954 |
msgid "Qatar"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:399
|
1958 |
msgid "Reunion"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: core/helpers/helper-form-templates.php:1246 core/helpers/helper-misc.php:400
|
1962 |
msgid "Romania"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: core/helpers/helper-form-templates.php:1247
|
1966 |
msgid "Serbia"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: core/helpers/helper-form-templates.php:1248 core/helpers/helper-misc.php:401
|
1970 |
msgid "Russian Federation"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:402
|
1974 |
msgid "Rwanda"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: core/helpers/helper-form-templates.php:1250 core/helpers/helper-misc.php:409
|
1978 |
msgid "Saudi Arabia"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:416
|
1982 |
msgid "Solomon Islands"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:411
|
1986 |
msgid "Seychelles"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:424
|
1990 |
msgid "Sudan"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:428
|
1994 |
msgid "Sweden"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: core/helpers/helper-form-templates.php:1255 core/helpers/helper-misc.php:413
|
1998 |
msgid "Singapore"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: core/helpers/helper-form-templates.php:1256
|
2002 |
+
#: core/helpers/helper-form-templates.php:1271
|
2003 |
msgid "Saint Helena"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: core/helpers/helper-form-templates.php:1257 core/helpers/helper-misc.php:415
|
2007 |
msgid "Slovenia"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: core/helpers/helper-form-templates.php:1258
|
2011 |
msgid "Svalbard and Jan Mayen"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: core/helpers/helper-form-templates.php:1259
|
2015 |
msgid "Slovakia"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:412
|
2019 |
msgid "Sierra Leone"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: core/helpers/helper-form-templates.php:1261 core/helpers/helper-misc.php:407
|
2023 |
msgid "San Marino"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:410
|
2027 |
msgid "Senegal"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:417
|
2031 |
msgid "Somalia"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: core/helpers/helper-form-templates.php:1264 core/helpers/helper-misc.php:425
|
2035 |
msgid "Suriname"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: core/helpers/helper-form-templates.php:1265
|
2039 |
msgid "South Sudan"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: core/helpers/helper-form-templates.php:1266 core/helpers/helper-misc.php:408
|
2043 |
msgid "Sao Tome and Principe"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:288
|
2047 |
msgid "El Salvador"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: core/helpers/helper-form-templates.php:1268
|
2051 |
msgid "Sint Maarten (Dutch part)"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:430
|
2055 |
msgid "Syrian Arab Republic"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: core/helpers/helper-form-templates.php:1270
|
2059 |
msgid "Eswatini"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:442
|
2063 |
msgid "Turks and Caicos Islands"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: core/helpers/helper-form-templates.php:1273 core/helpers/helper-misc.php:265
|
2067 |
msgid "Chad"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:435
|
2071 |
msgid "Togo"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:434
|
2075 |
msgid "Thailand"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:432
|
2079 |
msgid "Tajikistan"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: core/helpers/helper-form-templates.php:1277 core/helpers/helper-misc.php:436
|
2083 |
msgid "Tokelau"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: core/helpers/helper-form-templates.php:1278
|
2087 |
msgid "Timor-Leste"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: core/helpers/helper-form-templates.php:1279 core/helpers/helper-misc.php:441
|
2091 |
msgid "Turkmenistan"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: core/helpers/helper-form-templates.php:1280 core/helpers/helper-misc.php:439
|
2095 |
msgid "Tunisia"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:437
|
2099 |
msgid "Tonga"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: core/helpers/helper-form-templates.php:1282 core/helpers/helper-misc.php:440
|
2103 |
msgid "Turkey"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: core/helpers/helper-form-templates.php:1283 core/helpers/helper-misc.php:438
|
2107 |
msgid "Trinidad and Tobago"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: core/helpers/helper-form-templates.php:1284 core/helpers/helper-misc.php:443
|
2111 |
msgid "Tuvalu"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: core/helpers/helper-form-templates.php:1285
|
2115 |
msgid "Taiwan"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: core/helpers/helper-form-templates.php:1286 core/helpers/helper-misc.php:433
|
2119 |
msgid "Tanzania, United Republic of"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: core/helpers/helper-form-templates.php:1287 core/helpers/helper-misc.php:445
|
2123 |
msgid "Ukraine"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: core/helpers/helper-form-templates.php:1288 core/helpers/helper-misc.php:444
|
2127 |
msgid "Uganda"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: core/helpers/helper-form-templates.php:1289
|
2131 |
msgid "United States of America"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: core/helpers/helper-form-templates.php:1290 core/helpers/helper-misc.php:450
|
2135 |
msgid "Uruguay"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: core/helpers/helper-form-templates.php:1291 core/helpers/helper-misc.php:451
|
2139 |
msgid "Uzbekistan"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: core/helpers/helper-form-templates.php:1292 core/helpers/helper-misc.php:319
|
2143 |
msgid "Holy See (Vatican City State)"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: core/helpers/helper-form-templates.php:1293 core/helpers/helper-misc.php:405
|
2147 |
msgid "Saint Vincent and the Grenadines"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: core/helpers/helper-form-templates.php:1294 core/helpers/helper-misc.php:453
|
2151 |
msgid "Venezuela"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: core/helpers/helper-form-templates.php:1295
|
2155 |
msgid "Virgin Islands, British"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: core/helpers/helper-form-templates.php:1296
|
2159 |
msgid "Virgin Islands, U.S."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: core/helpers/helper-form-templates.php:1297 core/helpers/helper-misc.php:454
|
2163 |
msgid "Vietnam"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: core/helpers/helper-form-templates.php:1298 core/helpers/helper-misc.php:452
|
2167 |
msgid "Vanuatu"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: core/helpers/helper-form-templates.php:1299
|
2171 |
msgid "Wallis and Futuna"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: core/helpers/helper-form-templates.php:1300 core/helpers/helper-misc.php:406
|
2175 |
msgid "Samoa"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: core/helpers/helper-form-templates.php:1301
|
2179 |
msgid "Kosovo"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: core/helpers/helper-form-templates.php:1302 core/helpers/helper-misc.php:459
|
2183 |
msgid "Yemen"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: core/helpers/helper-form-templates.php:1303 core/helpers/helper-misc.php:362
|
2187 |
msgid "Mayotte"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: core/helpers/helper-form-templates.php:1304 core/helpers/helper-misc.php:418
|
2191 |
msgid "South Africa"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: core/helpers/helper-form-templates.php:1305 core/helpers/helper-misc.php:461
|
2195 |
msgid "Zambia"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: core/helpers/helper-form-templates.php:1306 core/helpers/helper-misc.php:462
|
2199 |
msgid "Zimbabwe"
|
2200 |
msgstr ""
|
2201 |
|
2876 |
msgstr ""
|
2877 |
|
2878 |
#: core/helpers/helper-misc.php:931
|
2879 |
+
#: core/templates/parts/customize-checkbox.php:72
|
2880 |
+
#: core/templates/parts/customize-checkbox.php:82
|
2881 |
+
#: core/templates/parts/customize-radio.php:67
|
2882 |
msgid "Full"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
#: core/helpers/helper-misc.php:932
|
2886 |
+
#: core/templates/parts/customize-checkbox.php:73
|
2887 |
+
#: core/templates/parts/customize-checkbox.php:83
|
2888 |
+
#: core/templates/parts/customize-radio.php:68
|
2889 |
msgid "Half"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
#: core/helpers/helper-misc.php:933
|
2893 |
+
#: core/templates/parts/customize-checkbox.php:74
|
2894 |
+
#: core/templates/parts/customize-checkbox.php:84
|
2895 |
+
#: core/templates/parts/customize-radio.php:69
|
2896 |
msgid "Third"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: core/helpers/helper-misc.php:934
|
2900 |
+
#: core/templates/parts/customize-checkbox.php:75
|
2901 |
+
#: core/templates/parts/customize-radio.php:70
|
2902 |
msgid "Quarter"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
#: core/helpers/helper-misc.php:935
|
2906 |
+
#: core/templates/parts/customize-checkbox.php:76
|
2907 |
+
#: core/templates/parts/customize-checkbox.php:85
|
2908 |
+
#: core/templates/parts/customize-radio.php:71
|
2909 |
msgid "Auto"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
#: core/helpers/helper-misc.php:940
|
2913 |
+
#: core/templates/parts/customize-checkbox.php:90
|
2914 |
msgid "Apply to all fields"
|
2915 |
msgstr ""
|
2916 |
|
2982 |
|
2983 |
#: core/templates/customize-form-item.php:33
|
2984 |
#: core/templates/customize-form-part-footer.php:3
|
2985 |
+
#: core/templates/parts/customize-checkbox.php:123
|
2986 |
+
#: core/templates/parts/customize-radio.php:106
|
2987 |
+
#: core/templates/parts/customize-select.php:92
|
2988 |
msgid "Delete"
|
2989 |
msgstr ""
|
2990 |
|
3050 |
msgid "Close"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: core/templates/parts/customize-checkbox.php:28
|
3054 |
+
#: core/templates/parts/customize-checkbox.php:32
|
3055 |
+
#: core/templates/parts/customize-radio.php:28
|
3056 |
+
#: core/templates/parts/customize-radio.php:32
|
3057 |
+
#: core/templates/parts/customize-select.php:32
|
3058 |
+
#: core/templates/parts/customize-select.php:36
|
3059 |
msgid "Choices"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: core/templates/parts/customize-checkbox.php:29
|
3063 |
+
#: core/templates/parts/customize-radio.php:29
|
3064 |
+
#: core/templates/parts/customize-select.php:33
|
3065 |
msgid "No choices added yet."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: core/templates/parts/customize-checkbox.php:33
|
3069 |
+
#: core/templates/parts/customize-radio.php:33
|
3070 |
+
#: core/templates/parts/customize-select.php:37
|
3071 |
msgid "Type or paste your choices here, adding each on a new line."
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: core/templates/parts/customize-checkbox.php:36
|
3075 |
+
#: core/templates/parts/customize-radio.php:36
|
3076 |
+
#: core/templates/parts/customize-select.php:40
|
3077 |
msgid "Add choice"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: core/templates/parts/customize-checkbox.php:38
|
3081 |
+
#: core/templates/parts/customize-radio.php:38
|
3082 |
+
#: core/templates/parts/customize-select.php:42
|
3083 |
msgid "Or, bulk add choices"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: core/templates/parts/customize-checkbox.php:42
|
3087 |
+
#: core/templates/parts/customize-radio.php:42
|
3088 |
+
#: core/templates/parts/customize-select.php:46
|
3089 |
msgid "Add choices"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: core/templates/parts/customize-checkbox.php:44
|
3093 |
+
#: core/templates/parts/customize-radio.php:44
|
3094 |
+
#: core/templates/parts/customize-select.php:48
|
3095 |
msgid "Cancel"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: core/templates/parts/customize-checkbox.php:49
|
3099 |
+
#: core/templates/parts/customize-email.php:36
|
3100 |
+
#: core/templates/parts/customize-multi-line-text.php:36
|
3101 |
+
#: core/templates/parts/customize-number.php:46
|
3102 |
+
#: core/templates/parts/customize-radio.php:49
|
3103 |
+
#: core/templates/parts/customize-select.php:53
|
3104 |
+
#: core/templates/parts/customize-single-line-text.php:36
|
3105 |
msgid "Require an answer"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: core/templates/parts/customize-checkbox.php:59
|
3109 |
msgid "Add 'select all' choice"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: core/templates/parts/customize-checkbox.php:63
|
3113 |
+
#: core/templates/parts/customize-radio.php:58
|
3114 |
msgid "Choices display"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: core/templates/parts/customize-checkbox.php:65
|
3118 |
+
#: core/templates/parts/customize-radio.php:60
|
3119 |
msgid "Horizontal"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: core/templates/parts/customize-checkbox.php:66
|
3123 |
+
#: core/templates/parts/customize-radio.php:61
|
3124 |
msgid "Vertical"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: core/templates/parts/customize-checkbox.php:70
|
3128 |
+
#: core/templates/parts/customize-radio.php:65
|
3129 |
msgid "Choices width"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: core/templates/parts/customize-checkbox.php:97
|
3133 |
+
#: core/templates/parts/customize-email.php:58
|
3134 |
+
#: core/templates/parts/customize-multi-line-text.php:76
|
3135 |
+
#: core/templates/parts/customize-number.php:81
|
3136 |
+
#: core/templates/parts/customize-radio.php:78
|
3137 |
+
#: core/templates/parts/customize-select.php:66
|
3138 |
+
#: core/templates/parts/customize-single-line-text.php:57
|
3139 |
msgid "CSS classes"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: core/templates/parts/customize-checkbox.php:119
|
3143 |
+
#: core/templates/parts/customize-radio.php:102
|
3144 |
+
#: core/templates/parts/customize-select.php:88
|
3145 |
msgid "Make this choice default"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: core/templates/parts/customize-checkbox.php:124
|
3149 |
+
#: core/templates/parts/customize-radio.php:107
|
3150 |
+
#: core/templates/parts/customize-select.php:93
|
3151 |
msgid "More"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: core/templates/parts/customize-email.php:24
|
3155 |
+
#: core/templates/parts/customize-multi-line-text.php:24
|
3156 |
+
#: core/templates/parts/customize-number.php:24
|
3157 |
+
#: core/templates/parts/customize-single-line-text.php:24
|
3158 |
msgid "Prefill"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: core/templates/parts/customize-email.php:45
|
3162 |
+
#: core/templates/parts/customize-number.php:70
|
3163 |
+
#: core/templates/parts/customize-single-line-text.php:44
|
3164 |
msgid "Prefix"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: core/templates/parts/customize-email.php:49
|
3168 |
+
#: core/templates/parts/customize-number.php:74
|
3169 |
+
#: core/templates/parts/customize-single-line-text.php:48
|
3170 |
msgid "Suffix"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: core/templates/parts/customize-multi-line-text.php:46
|
3174 |
msgid "Limit words/characters"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: core/templates/parts/customize-multi-line-text.php:52
|
3178 |
msgid "Limit"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: core/templates/parts/customize-multi-line-text.php:56
|
3182 |
msgid "Count"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: core/templates/parts/customize-multi-line-text.php:67
|
3186 |
msgid "Rows"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: core/templates/parts/customize-number.php:36
|
3190 |
msgid "Min number"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: core/templates/parts/customize-number.php:40
|
3194 |
msgid "Max number"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: core/templates/parts/customize-number.php:56
|
3198 |
msgid "Use number separators"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: core/templates/parts/customize-number.php:61
|
3202 |
msgid "Grouping"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: core/templates/parts/customize-number.php:65
|
3206 |
msgid "Decimal"
|
3207 |
msgstr ""
|
3208 |
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
=== Contact Form to Manage and respond to conversations with customers —
|
2 |
|
3 |
Contributors: happyforms
|
4 |
Tags: contact form, contact form plugin, forms, form builder, custom form, intake form, registration form, survey form, quiz form, payment form, newsletter form, giveaway form, fundraising form, donation form, nomination form, order form, questionnaire form, onboarding form, contract form, estimate form, research form, qualitative form, quantitative form, membership form, mobile form, feedback form, release form, inquiry form, request form, evaluation form, RSVP form, reservation form, sales lead form, popup form, quote form, event form, booking form, application form, agreement form, safety form, compliance form, assessment form, sponsorship form, report form, file upload form, satisfaction form
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.12.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -15,11 +15,11 @@ The WordPress form builder you need to manage and respond to conversations with
|
|
15 |
|
16 |
https://www.youtube.com/watch?v=X1snk2vJbXI
|
17 |
|
18 |
-
[
|
19 |
|
20 |
[Discover all the benefits of upgrading.](https://happyforms.io/upgrade) 🚀
|
21 |
|
22 |
-
=
|
23 |
|
24 |
* 💬 Start more conversations.
|
25 |
* 📫 Reliable message delivery.
|
@@ -27,7 +27,7 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
27 |
* 😍 Free expert support and feedback.
|
28 |
* 🎨 Live preview form builder.
|
29 |
|
30 |
-
= Popular
|
31 |
|
32 |
* Drag and drop form builder (Gutenberg ready).
|
33 |
* Live preview forms as you create them.
|
@@ -43,7 +43,7 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
43 |
* Over 50 styles controls built-in.
|
44 |
* GDPR and 508 compliant forms and secure forms.
|
45 |
|
46 |
-
= Included
|
47 |
|
48 |
* Short Answer — For fields like ‘First Name’ and ‘Last Name’.
|
49 |
* Long Answer — For longer messages and feedback.
|
@@ -53,14 +53,12 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
53 |
* Dropdown — For long lists and single selection.
|
54 |
* Number — For formatted numeric fields, like phone and price.
|
55 |
|
56 |
-
= Upgraded
|
57 |
|
58 |
* Access to all 20+ form fields.
|
59 |
* Manage unlimited responses easily in the dashboard.
|
60 |
* Let folks upload files to your forms.
|
61 |
* Redirect to any webpage after the form is submitted.
|
62 |
-
* Easily open forms in modal / pop-up window.
|
63 |
-
* Password protect forms for private access.
|
64 |
* Multi-page forms with progress bar.
|
65 |
* Show and hide forms using date/time scheduler.
|
66 |
* Limit the number of responses per form.
|
@@ -69,14 +67,13 @@ https://www.youtube.com/watch?v=X1snk2vJbXI
|
|
69 |
* Enable people to save and resume responses.
|
70 |
* Inherit theme styles option.
|
71 |
* Preview values before submission.
|
72 |
-
* Built-in dashboard analytics with no setup.
|
73 |
* Log IP address automatically.
|
74 |
* Poll part with real-time results.
|
75 |
* Randomize form fields and values to avoid biases.
|
76 |
* Advanced filtering of responses.
|
77 |
* Fade submit button until valid.
|
78 |
-
* Get access to our growing Slack community.
|
79 |
* Unlimited personal and client use plans.
|
|
|
80 |
|
81 |
[Discover all the benefits of upgrading.](https://happyforms.io/upgrade) 🚀
|
82 |
|
@@ -94,17 +91,17 @@ Absolutely! Every last word read by your respondent can be translated — just t
|
|
94 |
|
95 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
96 |
|
97 |
-
= Is
|
98 |
|
99 |
Yep! We have a special field for collecting respondents’ consent for things just like this.
|
100 |
|
101 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
102 |
|
103 |
-
= Is my data safe? Is
|
104 |
|
105 |
Our competitors claim to be HIPAA compliant, but that’s misleading. Those dodgy buggers! Why have a compliant form if your site’s server, connected services and chosen inbox aren’t?
|
106 |
|
107 |
-
To keep things simple, we say to disable
|
108 |
|
109 |
It’s easier than it sounds. Promise. Hit us up if you have questions.
|
110 |
|
@@ -114,19 +111,19 @@ Nope. Sorry! We’re for all things WordPress ‘round here.
|
|
114 |
|
115 |
= Do I need to know how to code? =
|
116 |
|
117 |
-
Nope.
|
118 |
|
119 |
-
= Does
|
120 |
|
121 |
Yep! We always recommend building forms on a desktop, but you can fill out a form anywhere — mobile, tablet and desktop.
|
122 |
|
123 |
Sadly no longer compatible with your 90s Tamagotchi.
|
124 |
|
125 |
-
= Can I connect
|
126 |
|
127 |
-
Yep!
|
128 |
|
129 |
-
Through Zapier and Integromat, you can connect with services like Shopify, Kajabi, QuickBooks, Xero, WooCommerce, FreshBooks, Gumroad, Gmail, Slack, Discord, Twilio, Google Drive, Dropbox, Google Docs, Evernote, OneDrive, Airtable, Teachable, GitHub, ClickFunnels, Facebook Pages, Google Calendar, Trello, Calendly, Klaviyo, Asana, Basecamp, HubSpot, Zoho, Acuity Scheduling, Salesforce, Zendesk, Intercom, Wrike, ClickUp, Freshdesk, LiveChat, Drift, Jira, ScheduleOnce, Pipedrive and thousands more.
|
130 |
|
131 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
132 |
|
@@ -138,12 +135,28 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
138 |
|
139 |
= Does it work with my favorite theme and plugins? =
|
140 |
|
141 |
-
Abso-freakin-lutely! We’re always checking to make sure
|
142 |
|
143 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
= 1.12.2 =
|
148 |
* Improvement: All dropdowns become searchable automatically with more than 6 choices.
|
149 |
* Bugfix: "Add Media" button in Email tab wasn't working.
|
@@ -206,7 +219,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
206 |
* Improvement: "Label display" control was made global and moved to Style step.
|
207 |
* Improvement: "Description display" control was made global and moved to Style step.
|
208 |
* Improvement: Empty labels were triggering usability errors on common usability check tools.
|
209 |
-
* Bugfix:
|
210 |
* Bugfix: Email messages were being sent with empty headers in some cases.
|
211 |
* Bugfix: Single Choice "Make this choice default" was misbehaving.
|
212 |
* Bugfix: Archived and trashed forms were being displayed in shortcode/block form selection dropdown.
|
@@ -281,7 +294,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
281 |
|
282 |
= 1.9.7 =
|
283 |
* Improvement: New “Confirm submission” control in Setup step.
|
284 |
-
* Improvement: Various improvements to
|
285 |
* Improvement: Compatibility with WordPress 5.4.
|
286 |
* Bugfix: Form width slider in Style tab → General was not updating value in preview.
|
287 |
|
@@ -309,7 +322,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
309 |
|
310 |
= 1.9.1 =
|
311 |
* New feature: Quarter width setting for parts and part choices.
|
312 |
-
* Improvement: Various improvements to
|
313 |
* Improvement: Improved compatibility of form part styles with some themes.
|
314 |
* Bugfix: Fixed choice parts not saving "Checked by default" setting.
|
315 |
|
@@ -321,10 +334,10 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
321 |
|
322 |
= 1.8.22 =
|
323 |
* Improvement: Improved plugin's text domain for better management of translations.
|
324 |
-
* Improvement: Various improvements to
|
325 |
|
326 |
= 1.8.21 =
|
327 |
-
* New feature: Added Help tab to all
|
328 |
* Improvement: All Forms screen improvements.
|
329 |
|
330 |
= 1.8.20 =
|
@@ -342,7 +355,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
342 |
* New feature: Choices width control to allow for multi-column layouts in Single Choice and Multiple Choice part.
|
343 |
|
344 |
= 1.8.16 =
|
345 |
-
* Improvement:
|
346 |
|
347 |
= 1.8.15 =
|
348 |
* Bugfix: Fix admin notices.
|
@@ -364,7 +377,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
364 |
|
365 |
= 1.8.9 =
|
366 |
* New feature: New 'Google reCAPTCHA theme' setting in Style step.
|
367 |
-
* Improvement: Various improvements to styles in
|
368 |
* Bugfix: Email part with confirmation value didn't work with 'Fade submit until valid' option.
|
369 |
* Bugfix: Date & Time part did not reflect EU date format in preview step and email.
|
370 |
|
@@ -492,7 +505,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
492 |
* Bugfix: Phone country dropdown was not opening after other dropdown part was focused.
|
493 |
|
494 |
= 1.6.18 =
|
495 |
-
* Improvement: Various CSS tweaks to improve responsive behavior, and colors set in
|
496 |
* Bugfix: Number spinners in font size controls were not updating value in preview pane.
|
497 |
* Bugfix: Placeholder part was always showing (optional) label.
|
498 |
* Bugfix: Story part with no inputs was throwing an error.
|
@@ -512,8 +525,8 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
512 |
* Improvement: Updated "tested up to" tag.
|
513 |
|
514 |
= 1.6.14 =
|
515 |
-
* Improvement:
|
516 |
-
* Improvement: Added filter to stop enqueueing of
|
517 |
* Improvement: New filter allows setting custom HTML attributes on a form element.
|
518 |
* Improvement: Responses tracking number is now included in CSV exports.
|
519 |
* Improvement: Better output of multiline and rich text values in CSV exports.
|
@@ -540,14 +553,14 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
540 |
* Bugfix: Various fixes related to styles and form parts preview.
|
541 |
|
542 |
= 1.6.10 =
|
543 |
-
* New feature: Gutenberg block allowing you to add
|
544 |
* New feature: Style control for submit button padding.
|
545 |
* New feature: Checkbox to allow toggling 'Mark as read and reply' link in submission alert emails.
|
546 |
|
547 |
= 1.6.9 =
|
548 |
* New feature: New Text Editor part for formatting text, code blocks, lists and more.
|
549 |
* Improvement: New parts automatically inherit options when "Apply to all parts" is on.
|
550 |
-
* Improvement: Custom
|
551 |
* Bugfix: Form updates weren't getting applied if the preview frame was not fully loaded.
|
552 |
* Bugfix: Submit button appeared unstyled on iOS devices.
|
553 |
* Bugfix: Title font weight style setting couldn't be set to Bold due to wrong default value.
|
@@ -681,7 +694,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
681 |
* Improvement: Various improvements to parts CSS and compatibility with themes.
|
682 |
* Bug fix: Some links in Customize screen sidebar were breaking step-by-step navigation.
|
683 |
* Bug fix: Checkbox part was accepting invalid submission values.
|
684 |
-
* Bug fix:
|
685 |
|
686 |
= 1.5.0 =
|
687 |
* Improvement: Forms are now submitted without page refresh.
|
@@ -706,7 +719,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
706 |
* Improvement: Scale part now has a colored tracker and accepts color settings for labels and value output set in Style step.
|
707 |
* Improvement: Scripts are now loaded only when a form is actually present.
|
708 |
* Improvement: Form and responses admin pages are now clean from any third-party plugin effects.
|
709 |
-
* Bug fix: Add
|
710 |
* Bug fix: Submit button styles were changing to defaults on hover.
|
711 |
* Bug fix: Various fixes related to styles.
|
712 |
|
@@ -716,7 +729,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
716 |
* Improvement: Current user's email address is now pre-filled in Your email address field in Step 2.
|
717 |
* Bug fix: Front end placeholder behavior when "Display as placeholder" title placement is selected.
|
718 |
* Bug fix: Responses screen was showing just the first letter of each submitted part.
|
719 |
-
* Bug fix: PHP notices when
|
720 |
|
721 |
= 1.4.3 =
|
722 |
* Improvement: Date part is renamed to Date & Time and offers a lot more options, including minimum and maximum value for year and hour inputs, and an option to set inputs to current date and time by default.
|
@@ -738,7 +751,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
738 |
* Bug fix: array_column wasn't available on PHP versions prior to 5.5 and was causing a fatal error.
|
739 |
|
740 |
= 1.4.0 =
|
741 |
-
* Bug fix: Powered By
|
742 |
|
743 |
= 1.3.0 =
|
744 |
* New feature: Parts duplication.
|
@@ -758,7 +771,7 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
758 |
* New feature: New form parts - Title, Legal, Scale.
|
759 |
* New feature: Show part description in a tooltip.
|
760 |
* New feature: Button for expanding and collapsing all parts in Form Builder.
|
761 |
-
* New feature: Added “Add
|
762 |
* New feature: Added new fields to Single Choice part to allow for part option descriptions.
|
763 |
* Improved: Better message management.
|
764 |
* Improved: Country part is now Address and supports autocompletion.
|
@@ -775,6 +788,9 @@ Note: you'll need to upgrade to our paid contact form builder plugin to get some
|
|
775 |
|
776 |
== Upgrade Notice ==
|
777 |
|
|
|
|
|
|
|
778 |
= 1.12.2 =
|
779 |
* Searchable dropdowns improvements, bugfixes.
|
780 |
|
1 |
+
=== Contact Form to Manage and respond to conversations with customers — Happyforms ===
|
2 |
|
3 |
Contributors: happyforms
|
4 |
Tags: contact form, contact form plugin, forms, form builder, custom form, intake form, registration form, survey form, quiz form, payment form, newsletter form, giveaway form, fundraising form, donation form, nomination form, order form, questionnaire form, onboarding form, contract form, estimate form, research form, qualitative form, quantitative form, membership form, mobile form, feedback form, release form, inquiry form, request form, evaluation form, RSVP form, reservation form, sales lead form, popup form, quote form, event form, booking form, application form, agreement form, safety form, compliance form, assessment form, sponsorship form, report form, file upload form, satisfaction form
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.12.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
15 |
|
16 |
https://www.youtube.com/watch?v=X1snk2vJbXI
|
17 |
|
18 |
+
[Happyforms](https://happyforms.io/) is the simplest way for you to manage and respond to conversations with your website visitors. With over 10 years of experience here at The Theme Foundry, we’ve heard from nearly 1,000,000 businesses what they need from a contact form builder plugin! We've heard about the wasted time trying to set up tricky forms; the frustration of emails not being delivered; and the let down of not hearing from leads. That’s why we created Happyforms: Your free and friendly drag and drop form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more! Happyforms is optimized to increase conversations with your website visitors. Have peace of mind knowing messages to-and-from are getting delivered without the hassle of spam. You'll be set up and going in 5 minutes or less.
|
19 |
|
20 |
[Discover all the benefits of upgrading.](https://happyforms.io/upgrade) 🚀
|
21 |
|
22 |
+
= Happyforms solves these struggles: =
|
23 |
|
24 |
* 💬 Start more conversations.
|
25 |
* 📫 Reliable message delivery.
|
27 |
* 😍 Free expert support and feedback.
|
28 |
* 🎨 Live preview form builder.
|
29 |
|
30 |
+
= Popular Happyforms Features: =
|
31 |
|
32 |
* Drag and drop form builder (Gutenberg ready).
|
33 |
* Live preview forms as you create them.
|
43 |
* Over 50 styles controls built-in.
|
44 |
* GDPR and 508 compliant forms and secure forms.
|
45 |
|
46 |
+
= Included Happyforms Form Fields: =
|
47 |
|
48 |
* Short Answer — For fields like ‘First Name’ and ‘Last Name’.
|
49 |
* Long Answer — For longer messages and feedback.
|
53 |
* Dropdown — For long lists and single selection.
|
54 |
* Number — For formatted numeric fields, like phone and price.
|
55 |
|
56 |
+
= Upgraded Happyforms Features: =
|
57 |
|
58 |
* Access to all 20+ form fields.
|
59 |
* Manage unlimited responses easily in the dashboard.
|
60 |
* Let folks upload files to your forms.
|
61 |
* Redirect to any webpage after the form is submitted.
|
|
|
|
|
62 |
* Multi-page forms with progress bar.
|
63 |
* Show and hide forms using date/time scheduler.
|
64 |
* Limit the number of responses per form.
|
67 |
* Enable people to save and resume responses.
|
68 |
* Inherit theme styles option.
|
69 |
* Preview values before submission.
|
|
|
70 |
* Log IP address automatically.
|
71 |
* Poll part with real-time results.
|
72 |
* Randomize form fields and values to avoid biases.
|
73 |
* Advanced filtering of responses.
|
74 |
* Fade submit button until valid.
|
|
|
75 |
* Unlimited personal and client use plans.
|
76 |
+
* No-nonsense support team, happy to help over email.
|
77 |
|
78 |
[Discover all the benefits of upgrading.](https://happyforms.io/upgrade) 🚀
|
79 |
|
91 |
|
92 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
93 |
|
94 |
+
= Is Happyforms GDPR and CCPA ready? =
|
95 |
|
96 |
Yep! We have a special field for collecting respondents’ consent for things just like this.
|
97 |
|
98 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
99 |
|
100 |
+
= Is my data safe? Is Happyforms HIPAA compliant? =
|
101 |
|
102 |
Our competitors claim to be HIPAA compliant, but that’s misleading. Those dodgy buggers! Why have a compliant form if your site’s server, connected services and chosen inbox aren’t?
|
103 |
|
104 |
+
To keep things simple, we say to disable Happyforms from saving replies and instead point replies to an email address hosted by an end-to-end encrypted email service like ProtonMail.
|
105 |
|
106 |
It’s easier than it sounds. Promise. Hit us up if you have questions.
|
107 |
|
111 |
|
112 |
= Do I need to know how to code? =
|
113 |
|
114 |
+
Nope. Happyforms has a fancy drag-n-drop builder. But if you find yourself needing to code something, email us. We can help you out with the nerdy stuff.
|
115 |
|
116 |
+
= Does Happyforms work on all devices? =
|
117 |
|
118 |
Yep! We always recommend building forms on a desktop, but you can fill out a form anywhere — mobile, tablet and desktop.
|
119 |
|
120 |
Sadly no longer compatible with your 90s Tamagotchi.
|
121 |
|
122 |
+
= Can I connect Happyforms to my favorite services? =
|
123 |
|
124 |
+
Yep! Happyforms directly connects with reCaptcha, Google Analytics, ActiveCampaign, AWeber, Constant Contact, ConvertKit, Mailchimp, MailerLite, MailPoet, SendFox, SendGrid, Sendinblue, Stripe, PayPal, Zapier, Integrately and Integromat.
|
125 |
|
126 |
+
Through Zapier, Integrately and Integromat, you can connect with services like Shopify, Kajabi, QuickBooks, Xero, WooCommerce, FreshBooks, Gumroad, Gmail, Slack, Discord, Twilio, Google Drive, Dropbox, Google Docs, Evernote, OneDrive, Airtable, Teachable, GitHub, ClickFunnels, Facebook Pages, Google Calendar, Trello, Calendly, Klaviyo, Asana, Basecamp, HubSpot, Zoho, Acuity Scheduling, Salesforce, Zendesk, Intercom, Wrike, ClickUp, Freshdesk, LiveChat, Drift, Jira, ScheduleOnce, Pipedrive and thousands more.
|
127 |
|
128 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
129 |
|
135 |
|
136 |
= Does it work with my favorite theme and plugins? =
|
137 |
|
138 |
+
Abso-freakin-lutely! We’re always checking to make sure Happyforms plays nicely with popular themes like Divi, Astra, Avada, Genesis, GeneratePress, Enfold, Flatsome and OceanWP, and popular plugins like Yoast SEO, Elementor, WooCommerce, Jetpack, Wordfence, UpdraftPlus, MonsterInsights, WP Super Cache, Smush, W3 Total Cache, Loco Translate, SiteOrigin and Popup Maker.
|
139 |
|
140 |
Note: you'll need to upgrade to our paid contact form builder plugin to get some of the best goodies mentioned here.
|
141 |
|
142 |
+
= What are your brand guidelines? =
|
143 |
+
|
144 |
+
Aw, honestly, the thought that you're writing about our contact form builder is making us blush. That's very kind of you! If we can be picky, please stick by these guidelines:
|
145 |
+
|
146 |
+
* Happyforms (correct)
|
147 |
+
* HappyForms (incorrect)
|
148 |
+
* Happyform (incorrect)
|
149 |
+
* Happy Forms (incorrect)
|
150 |
+
* Happy Form (incorrect)
|
151 |
+
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 1.12.3 =
|
155 |
+
* New feature: Labels can now be toggled on a per-field basis.
|
156 |
+
* Improvement: Better support for Elementor popups.
|
157 |
+
* Improvement: Long Answer field now suppports a minimum of 2 rows.
|
158 |
+
* Bugfix: Screen reader styles were causing glitches on some themes.
|
159 |
+
|
160 |
= 1.12.2 =
|
161 |
* Improvement: All dropdowns become searchable automatically with more than 6 choices.
|
162 |
* Bugfix: "Add Media" button in Email tab wasn't working.
|
219 |
* Improvement: "Label display" control was made global and moved to Style step.
|
220 |
* Improvement: "Description display" control was made global and moved to Style step.
|
221 |
* Improvement: Empty labels were triggering usability errors on common usability check tools.
|
222 |
+
* Bugfix: Happyforms block wasn't remembering the selected form.
|
223 |
* Bugfix: Email messages were being sent with empty headers in some cases.
|
224 |
* Bugfix: Single Choice "Make this choice default" was misbehaving.
|
225 |
* Bugfix: Archived and trashed forms were being displayed in shortcode/block form selection dropdown.
|
294 |
|
295 |
= 1.9.7 =
|
296 |
* Improvement: New “Confirm submission” control in Setup step.
|
297 |
+
* Improvement: Various improvements to Happyforms UI.
|
298 |
* Improvement: Compatibility with WordPress 5.4.
|
299 |
* Bugfix: Form width slider in Style tab → General was not updating value in preview.
|
300 |
|
322 |
|
323 |
= 1.9.1 =
|
324 |
* New feature: Quarter width setting for parts and part choices.
|
325 |
+
* Improvement: Various improvements to Happyforms UI styles.
|
326 |
* Improvement: Improved compatibility of form part styles with some themes.
|
327 |
* Bugfix: Fixed choice parts not saving "Checked by default" setting.
|
328 |
|
334 |
|
335 |
= 1.8.22 =
|
336 |
* Improvement: Improved plugin's text domain for better management of translations.
|
337 |
+
* Improvement: Various improvements to Happyforms UI styles and frontend.
|
338 |
|
339 |
= 1.8.21 =
|
340 |
+
* New feature: Added Help tab to all Happyforms screens, providing easy access to help guide and our email support.
|
341 |
* Improvement: All Forms screen improvements.
|
342 |
|
343 |
= 1.8.20 =
|
355 |
* New feature: Choices width control to allow for multi-column layouts in Single Choice and Multiple Choice part.
|
356 |
|
357 |
= 1.8.16 =
|
358 |
+
* Improvement: Happyforms form builder styles update.
|
359 |
|
360 |
= 1.8.15 =
|
361 |
* Bugfix: Fix admin notices.
|
377 |
|
378 |
= 1.8.9 =
|
379 |
* New feature: New 'Google reCAPTCHA theme' setting in Style step.
|
380 |
+
* Improvement: Various improvements to styles in Happyforms UI.
|
381 |
* Bugfix: Email part with confirmation value didn't work with 'Fade submit until valid' option.
|
382 |
* Bugfix: Date & Time part did not reflect EU date format in preview step and email.
|
383 |
|
505 |
* Bugfix: Phone country dropdown was not opening after other dropdown part was focused.
|
506 |
|
507 |
= 1.6.18 =
|
508 |
+
* Improvement: Various CSS tweaks to improve responsive behavior, and colors set in Happyforms style step.
|
509 |
* Bugfix: Number spinners in font size controls were not updating value in preview pane.
|
510 |
* Bugfix: Placeholder part was always showing (optional) label.
|
511 |
* Bugfix: Story part with no inputs was throwing an error.
|
525 |
* Improvement: Updated "tested up to" tag.
|
526 |
|
527 |
= 1.6.14 =
|
528 |
+
* Improvement: Happyforms custom fields are now prefixed and hidden to stop polluting posts custom fields dropdown.
|
529 |
+
* Improvement: Added filter to stop enqueueing of Happyforms defaults style file.
|
530 |
* Improvement: New filter allows setting custom HTML attributes on a form element.
|
531 |
* Improvement: Responses tracking number is now included in CSV exports.
|
532 |
* Improvement: Better output of multiline and rich text values in CSV exports.
|
553 |
* Bugfix: Various fixes related to styles and form parts preview.
|
554 |
|
555 |
= 1.6.10 =
|
556 |
+
* New feature: Gutenberg block allowing you to add Happyforms to your content in Gutenberg editor.
|
557 |
* New feature: Style control for submit button padding.
|
558 |
* New feature: Checkbox to allow toggling 'Mark as read and reply' link in submission alert emails.
|
559 |
|
560 |
= 1.6.9 =
|
561 |
* New feature: New Text Editor part for formatting text, code blocks, lists and more.
|
562 |
* Improvement: New parts automatically inherit options when "Apply to all parts" is on.
|
563 |
+
* Improvement: Custom Happyforms dropdowns refactor with lots of improvements in code.
|
564 |
* Bugfix: Form updates weren't getting applied if the preview frame was not fully loaded.
|
565 |
* Bugfix: Submit button appeared unstyled on iOS devices.
|
566 |
* Bugfix: Title font weight style setting couldn't be set to Bold due to wrong default value.
|
694 |
* Improvement: Various improvements to parts CSS and compatibility with themes.
|
695 |
* Bug fix: Some links in Customize screen sidebar were breaking step-by-step navigation.
|
696 |
* Bug fix: Checkbox part was accepting invalid submission values.
|
697 |
+
* Bug fix: Happyforms link in admin menu bar was returning 404.
|
698 |
|
699 |
= 1.5.0 =
|
700 |
* Improvement: Forms are now submitted without page refresh.
|
719 |
* Improvement: Scale part now has a colored tracker and accepts color settings for labels and value output set in Style step.
|
720 |
* Improvement: Scripts are now loaded only when a form is actually present.
|
721 |
* Improvement: Form and responses admin pages are now clean from any third-party plugin effects.
|
722 |
+
* Bug fix: Add Happyforms overlay was not showing up in some page builders.
|
723 |
* Bug fix: Submit button styles were changing to defaults on hover.
|
724 |
* Bug fix: Various fixes related to styles.
|
725 |
|
729 |
* Improvement: Current user's email address is now pre-filled in Your email address field in Step 2.
|
730 |
* Bug fix: Front end placeholder behavior when "Display as placeholder" title placement is selected.
|
731 |
* Bug fix: Responses screen was showing just the first letter of each submitted part.
|
732 |
+
* Bug fix: PHP notices when Happyforms widget was added to a page in Customizer.
|
733 |
|
734 |
= 1.4.3 =
|
735 |
* Improvement: Date part is renamed to Date & Time and offers a lot more options, including minimum and maximum value for year and hour inputs, and an option to set inputs to current date and time by default.
|
751 |
* Bug fix: array_column wasn't available on PHP versions prior to 5.5 and was causing a fatal error.
|
752 |
|
753 |
= 1.4.0 =
|
754 |
+
* Bug fix: Powered By Happyforms appearance.
|
755 |
|
756 |
= 1.3.0 =
|
757 |
* New feature: Parts duplication.
|
771 |
* New feature: New form parts - Title, Legal, Scale.
|
772 |
* New feature: Show part description in a tooltip.
|
773 |
* New feature: Button for expanding and collapsing all parts in Form Builder.
|
774 |
+
* New feature: Added “Add Happyforms” button above visual editor for easier form embeds in page content.
|
775 |
* New feature: Added new fields to Single Choice part to allow for part option descriptions.
|
776 |
* Improved: Better message management.
|
777 |
* Improved: Country part is now Address and supports autocompletion.
|
788 |
|
789 |
== Upgrade Notice ==
|
790 |
|
791 |
+
= 1.12.3 =
|
792 |
+
* Per-field label toggling, better Elementor popup support, improvements and bugfixes.
|
793 |
+
|
794 |
= 1.12.2 =
|
795 |
* Searchable dropdowns improvements, bugfixes.
|
796 |
|