Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms - Version 1.9.23

Version Description

  • Improvement: "Label display" control was made global and moved to Style step.
  • Improvement: "Description display" control was made global and moved to Style step.
  • Improvement: Empty labels were triggering usability errors on common usability check tools.
  • Bugfix: HappyForms block wasn't remembering the selected form.
  • Bugfix: Email messages were being sent with empty headers in some cases.
  • Bugfix: Single Choice "Make this choice default" was misbehaving.
  • Bugfix: Archived and trashed forms were being displayed in shortcode/block form selection dropdown.
  • Bugfix: Output buffering was causing errors in Oxygen Builder.
Download this release

Release Info

Developer thethemefoundry
Plugin Icon 128x128 Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms
Version 1.9.23
Comparing to
See all releases

Code changes from version 1.9.22 to 1.9.23

core/classes/class-block.php CHANGED
@@ -37,7 +37,7 @@ class HappyForms_Block {
37
  private function get_attributes() {
38
  $attributes = array(
39
  'id' => array(
40
- 'type' => 'integer',
41
  )
42
  );
43
 
@@ -80,6 +80,7 @@ class HappyForms_Block {
80
  $user_id = get_current_user_id();
81
  $admin_notices = happyforms_get_admin_notices();
82
  $forms = happyforms_get_form_controller()->get();
 
83
  $forms = wp_list_pluck( $forms, 'post_title', 'ID' );
84
 
85
  $upgrade_notice_nonces = array();
37
  private function get_attributes() {
38
  $attributes = array(
39
  'id' => array(
40
+ 'type' => 'string',
41
  )
42
  );
43
 
80
  $user_id = get_current_user_id();
81
  $admin_notices = happyforms_get_admin_notices();
82
  $forms = happyforms_get_form_controller()->get();
83
+ $forms = array_values( wp_list_filter( $forms, array( 'post_status' => 'publish' ) ) );
84
  $forms = wp_list_pluck( $forms, 'post_title', 'ID' );
85
 
86
  $upgrade_notice_nonces = array();
core/classes/class-email-message.php CHANGED
@@ -158,8 +158,9 @@ class HappyForms_Email_Message {
158
  * @return array
159
  */
160
  $ccs = apply_filters( 'happyforms_email_ccs', $ccs, $this->message );
 
161
 
162
- $this->ccs = array_map( 'trim', $ccs );
163
  }
164
 
165
  public function get_ccs() {
@@ -182,8 +183,9 @@ class HappyForms_Email_Message {
182
  * @return array
183
  */
184
  $bccs = apply_filters( 'happyforms_email_bccs', $bccs, $this->message );
 
185
 
186
- $this->bccs = array_map( 'trim', $bccs );
187
  }
188
 
189
  public function get_bccs() {
@@ -206,8 +208,9 @@ class HappyForms_Email_Message {
206
  * @return array
207
  */
208
  $reply_to = apply_filters( 'happyforms_email_reply_to', $reply_to, $this->message );
209
-
210
- $this->reply_to = array_map( 'trim', $reply_to );
 
211
  }
212
 
213
  public function get_reply_to() {
158
  * @return array
159
  */
160
  $ccs = apply_filters( 'happyforms_email_ccs', $ccs, $this->message );
161
+ $ccs = array_values( array_filter( array_map( 'trim', $ccs ) ) );
162
 
163
+ $this->ccs = $ccs;
164
  }
165
 
166
  public function get_ccs() {
183
  * @return array
184
  */
185
  $bccs = apply_filters( 'happyforms_email_bccs', $bccs, $this->message );
186
+ $bccs = array_values( array_filter( array_map( 'trim', $bccs ) ) );
187
 
188
+ $this->bccs = $bccs;
189
  }
190
 
191
  public function get_bccs() {
208
  * @return array
209
  */
210
  $reply_to = apply_filters( 'happyforms_email_reply_to', $reply_to, $this->message );
211
+ $reply_to = array_values( array_filter( array_map( 'trim', $reply_to ) ) );
212
+
213
+ $this->reply_to = $reply_to;
214
  }
215
 
216
  public function get_reply_to() {
core/classes/class-form-controller.php CHANGED
@@ -780,9 +780,9 @@ class HappyForms_Form_Controller {
780
  return $form_markup;
781
  }
782
 
783
- ob_start();
784
-
785
  if ( 'publish' === $form['post_status'] || happyforms_is_preview() ) {
 
 
786
  if ( $render_styles ) {
787
  happyforms_the_form_styles( $form );
788
  }
780
  return $form_markup;
781
  }
782
 
 
 
783
  if ( 'publish' === $form['post_status'] || happyforms_is_preview() ) {
784
+ ob_start();
785
+
786
  if ( $render_styles ) {
787
  happyforms_the_form_styles( $form );
788
  }
core/classes/class-form-part-library.php CHANGED
@@ -245,7 +245,9 @@ class HappyForms_Form_Part_Library {
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'] ) ) {
245
  }
246
 
247
  if ( isset( $part_data['label_placement'] ) ) {
248
+ $label_placement = empty( $part_data['label_placement'] ) ? $form_data['part_title_label_placement'] : $part_data['label_placement'];
249
+
250
+ $class[] = 'happyforms-part--label-' . esc_attr( $label_placement );
251
  }
252
 
253
  if ( isset( $part_data['css_class'] ) && ! empty( $part_data['css_class'] ) ) {
core/classes/class-form-styles.php CHANGED
@@ -38,7 +38,10 @@ class HappyForms_Form_Styles {
38
  public function hook() {
39
  add_filter( 'happyforms_meta_fields', array( $this, 'meta_fields' ) );
40
  add_filter( 'happyforms_form_class', array( $this, 'form_html_class' ), 10, 2 );
 
 
41
  add_action( 'happyforms_do_style_control', array( $this, 'do_control' ), 10, 3 );
 
42
  }
43
 
44
  public function get_fields() {
@@ -193,6 +196,17 @@ class HappyForms_Form_Styles {
193
  'target' => 'form_class',
194
  'sanitize' => 'sanitize_text_field'
195
  ),
 
 
 
 
 
 
 
 
 
 
 
196
  'part_description_alignment' => array(
197
  'default' => '',
198
  'options' => array(
@@ -213,6 +227,15 @@ class HappyForms_Form_Styles {
213
  'variable' => '--happyforms-part-description-font-size',
214
  'sanitize' => 'sanitize_text_field'
215
  ),
 
 
 
 
 
 
 
 
 
216
  'part_value_alignment' => array(
217
  'default' => '',
218
  'options' => array(
@@ -673,19 +696,24 @@ class HappyForms_Form_Styles {
673
  ),
674
  2700 => array(
675
  'type' => 'buttonset',
676
- 'label' => __( 'Title alignment', 'happyforms' ),
677
  'field' => 'part_title_alignment'
678
  ),
679
  2800 => array(
680
  'type' => 'range',
681
- 'label' => __( 'Title font size', 'happyforms' ),
682
  'field' => 'part_title_font_size',
683
  ),
684
  2900 => array(
685
  'type' => 'buttonset',
686
- 'label' => __( 'Title font weight', 'happyforms' ),
687
  'field' => 'part_title_font_weight',
688
  ),
 
 
 
 
 
689
  3000 => array(
690
  'type' => 'buttonset',
691
  'label' => __( 'Description alignment', 'happyforms' ),
@@ -696,6 +724,11 @@ class HappyForms_Form_Styles {
696
  'label' => __( 'Description font size', 'happyforms' ),
697
  'field' => 'part_description_font_size',
698
  ),
 
 
 
 
 
699
  3200 => array(
700
  'type' => 'buttonset',
701
  'label' => __( 'Placeholder & value alignment', 'happyforms' ),
@@ -713,7 +746,7 @@ class HappyForms_Form_Styles {
713
  ),
714
  3500 => array(
715
  'type' => 'color',
716
- 'label' => __( 'Title', 'happyforms' ),
717
  'field' => 'color_part_title',
718
  ),
719
  3600 => array(
@@ -953,6 +986,22 @@ class HappyForms_Form_Styles {
953
  return $controls;
954
  }
955
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
  public function do_control( $control, $field, $index ) {
957
  $type = $control['type'];
958
  $path = happyforms_get_core_folder() . '/templates/customize-controls/style';
@@ -965,6 +1014,7 @@ class HappyForms_Form_Styles {
965
  case 'color':
966
  case 'text':
967
  case 'select':
 
968
  case 'heading':
969
  case 'code':
970
  require( "{$path}/{$type}.php" );
@@ -974,6 +1024,18 @@ class HappyForms_Form_Styles {
974
  }
975
  }
976
 
 
 
 
 
 
 
 
 
 
 
 
 
977
  public function is_class_field( $field ) {
978
  return 'form_class' === $field['target'];
979
  }
38
  public function hook() {
39
  add_filter( 'happyforms_meta_fields', array( $this, 'meta_fields' ) );
40
  add_filter( 'happyforms_form_class', array( $this, 'form_html_class' ), 10, 2 );
41
+ add_filter( 'happyforms_get_form_data', array( $this, 'control_global_label_settings') );
42
+ add_filter( 'happyforms_get_form_data', array( $this, 'control_global_description_settings') );
43
  add_action( 'happyforms_do_style_control', array( $this, 'do_control' ), 10, 3 );
44
+
45
  }
46
 
47
  public function get_fields() {
196
  'target' => 'form_class',
197
  'sanitize' => 'sanitize_text_field'
198
  ),
199
+ 'part_title_label_placement' => array (
200
+ 'default' => '',
201
+ 'options' => array(
202
+ 'above' => __( 'Above', 'happyforms' ),
203
+ 'below' => __( 'Below', 'happyforms' ),
204
+ 'left' => __( 'Left', 'happyforms' ),
205
+ 'hidden' => __( 'Hidden', 'happyforms' ),
206
+ ),
207
+ 'target' => 'form_class',
208
+ 'sanitize' => 'sanitize_text_field'
209
+ ),
210
  'part_description_alignment' => array(
211
  'default' => '',
212
  'options' => array(
227
  'variable' => '--happyforms-part-description-font-size',
228
  'sanitize' => 'sanitize_text_field'
229
  ),
230
+ 'part_description_mode' => array (
231
+ 'default' => '',
232
+ 'options' => array(
233
+ 'standard' => __( 'Standard', 'happyforms' ),
234
+ 'tooltip' => __( 'Tooltip', 'happyforms' ),
235
+ ),
236
+ 'target' => 'form_class',
237
+ 'sanitize' => 'sanitize_text_field'
238
+ ),
239
  'part_value_alignment' => array(
240
  'default' => '',
241
  'options' => array(
696
  ),
697
  2700 => array(
698
  'type' => 'buttonset',
699
+ 'label' => __( 'Label alignment', 'happyforms' ),
700
  'field' => 'part_title_alignment'
701
  ),
702
  2800 => array(
703
  'type' => 'range',
704
+ 'label' => __( 'Label font size', 'happyforms' ),
705
  'field' => 'part_title_font_size',
706
  ),
707
  2900 => array(
708
  'type' => 'buttonset',
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' => __( 'Description alignment', 'happyforms' ),
724
  'label' => __( 'Description font size', 'happyforms' ),
725
  'field' => 'part_description_font_size',
726
  ),
727
+ 3101 => array(
728
+ 'type' => 'custom-select',
729
+ 'label' => __( 'Description display', 'happyforms' ),
730
+ 'field' => 'part_description_mode',
731
+ ),
732
  3200 => array(
733
  'type' => 'buttonset',
734
  'label' => __( 'Placeholder & value alignment', 'happyforms' ),
746
  ),
747
  3500 => array(
748
  'type' => 'color',
749
+ 'label' => __( 'Label', 'happyforms' ),
750
  'field' => 'color_part_title',
751
  ),
752
  3600 => array(
986
  return $controls;
987
  }
988
 
989
+ public function control_global_description_settings( $form ) {
990
+ if( empty( $form['part_description_mode'] ) ) {
991
+ return $form;
992
+ }
993
+
994
+ foreach( $form['parts'] as $p => $part ) {
995
+ if( empty($form['parts'][$p]['description']) ){
996
+ continue;
997
+ }
998
+
999
+ $form['parts'][$p]['description_mode'] = $form['part_description_mode'];
1000
+ }
1001
+
1002
+ return $form;
1003
+ }
1004
+
1005
  public function do_control( $control, $field, $index ) {
1006
  $type = $control['type'];
1007
  $path = happyforms_get_core_folder() . '/templates/customize-controls/style';
1014
  case 'color':
1015
  case 'text':
1016
  case 'select':
1017
+ case 'custom-select':
1018
  case 'heading':
1019
  case 'code':
1020
  require( "{$path}/{$type}.php" );
1024
  }
1025
  }
1026
 
1027
+ public function control_global_label_settings( $form ) {
1028
+ if( empty( $form['part_title_label_placement'] ) ) {
1029
+ return $form;
1030
+ }
1031
+
1032
+ foreach( $form['parts'] as $p => $part ) {
1033
+ $form['parts'][$p]['label_placement'] = $form['part_title_label_placement'];
1034
+ }
1035
+
1036
+ return $form;
1037
+ }
1038
+
1039
  public function is_class_field( $field ) {
1040
  return 'form_class' === $field['target'];
1041
  }
core/classes/class-happyforms-core.php CHANGED
@@ -327,6 +327,7 @@ class HappyForms_Core {
327
  */
328
  private function get_form_data_array() {
329
  $forms = happyforms_get_form_controller()->get();
 
330
  $form_data = array();
331
 
332
  foreach ( $forms as $form ) {
327
  */
328
  private function get_form_data_array() {
329
  $forms = happyforms_get_form_controller()->get();
330
+ $forms = array_values( wp_list_filter( $forms, array( 'post_status' => 'publish' ) ) );
331
  $form_data = array();
332
 
333
  foreach ( $forms as $form ) {
core/classes/class-validation-messages.php CHANGED
@@ -65,7 +65,7 @@ class HappyForms_Validation_Messages {
65
  'field_invalid' => __( 'This is invalid', 'happyforms' ),
66
  'values_mismatch' => __( 'This doesn\'t match', 'happyforms' ),
67
  'select_more_choices' => __( 'Please select more choices', 'happyforms' ),
68
- 'select_less_choices' => __( 'Please select less choices', 'happyforms' ),
69
  'message_too_long' => __( 'This message is too long', 'happyforms' ),
70
  'message_too_short' => __( 'This message is too short', 'happyforms' ),
71
  );
65
  'field_invalid' => __( 'This is invalid', 'happyforms' ),
66
  'values_mismatch' => __( 'This doesn\'t match', 'happyforms' ),
67
  'select_more_choices' => __( 'Please select more choices', 'happyforms' ),
68
+ 'select_less_choices' => __( 'Please select fewer choices', 'happyforms' ),
69
  'message_too_long' => __( 'This message is too long', 'happyforms' ),
70
  'message_too_short' => __( 'This message is too short', 'happyforms' ),
71
  );
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' => 'above',
44
  'sanitize' => 'sanitize_text_field'
45
  ),
46
  'description' => array(
40
  'sanitize' => 'sanitize_text_field',
41
  ),
42
  'label_placement' => array(
43
+ 'default' => '',
44
  'sanitize' => 'sanitize_text_field'
45
  ),
46
  'description' => array(
core/classes/parts/class-part-email.php CHANGED
@@ -34,7 +34,7 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
34
  'sanitize' => 'sanitize_text_field',
35
  ),
36
  'label_placement' => array(
37
- 'default' => 'above',
38
  'sanitize' => 'sanitize_text_field'
39
  ),
40
  'description' => array(
34
  'sanitize' => 'sanitize_text_field',
35
  ),
36
  'label_placement' => array(
37
+ 'default' => '',
38
  'sanitize' => 'sanitize_text_field'
39
  ),
40
  'description' => array(
core/classes/parts/class-part-multi-line-text.php CHANGED
@@ -35,7 +35,7 @@ class HappyForms_Part_MultiLineText extends HappyForms_Form_Part {
35
  'sanitize' => 'sanitize_text_field',
36
  ),
37
  'label_placement' => array(
38
- 'default' => 'above',
39
  'sanitize' => 'sanitize_text_field'
40
  ),
41
  'description' => array(
35
  'sanitize' => 'sanitize_text_field',
36
  ),
37
  'label_placement' => array(
38
+ 'default' => '',
39
  'sanitize' => 'sanitize_text_field'
40
  ),
41
  'description' => array(
core/classes/parts/class-part-number.php CHANGED
@@ -33,7 +33,7 @@ class HappyForms_Part_Number extends HappyForms_Form_Part {
33
  'sanitize' => 'sanitize_text_field',
34
  ),
35
  'label_placement' => array(
36
- 'default' => 'above',
37
  'sanitize' => 'sanitize_text_field'
38
  ),
39
  'description' => array(
33
  'sanitize' => 'sanitize_text_field',
34
  ),
35
  'label_placement' => array(
36
+ 'default' => '',
37
  'sanitize' => 'sanitize_text_field'
38
  ),
39
  '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' => 'above',
45
  'sanitize' => 'sanitize_text_field'
46
  ),
47
  'description' => array(
41
  'sanitize' => 'sanitize_text_field',
42
  ),
43
  'label_placement' => array(
44
+ 'default' => '',
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' => 'above',
40
  'sanitize' => 'sanitize_text_field'
41
  ),
42
  'description' => array(
36
  'sanitize' => 'sanitize_text_field',
37
  ),
38
  'label_placement' => array(
39
+ 'default' => '',
40
  'sanitize' => 'sanitize_text_field'
41
  ),
42
  'description' => array(
core/classes/parts/class-part-single-line-text.php CHANGED
@@ -31,7 +31,7 @@ class HappyForms_Part_SingleLineText extends HappyForms_Form_Part {
31
  'sanitize' => 'sanitize_text_field',
32
  ),
33
  'label_placement' => array(
34
- 'default' => 'above',
35
  'sanitize' => 'sanitize_text_field'
36
  ),
37
  'description' => array(
31
  'sanitize' => 'sanitize_text_field',
32
  ),
33
  'label_placement' => array(
34
+ 'default' => '',
35
  'sanitize' => 'sanitize_text_field'
36
  ),
37
  'description' => array(
core/helpers/helper-form-templates.php CHANGED
@@ -193,6 +193,10 @@ if ( ! function_exists( 'happyforms_print_part_description' ) ):
193
  * @return void
194
  */
195
  function happyforms_print_part_description( $part_data ) {
 
 
 
 
196
  if ( happyforms_part_has_tooltip( $part_data ) || is_customize_preview() ) : ?>
197
  <a href="#" title="<?php echo esc_html( $part_data['description'] ); ?>" class="happyforms-tooltip__trigger"<?php if ( is_customize_preview() && ! happyforms_part_has_tooltip( $part_data ) ) : ?> style="display: none"<?php endif; ?>>
198
  <svg enable-background="new 0 0 15 15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg"><path d="m-1.5-1.5h18v18h-18z" fill="none"/><path d="m6.8 12h1.5v-1.5h-1.5zm.7-12c-4.1 0-7.5 3.4-7.5 7.5s3.4 7.5 7.5 7.5 7.5-3.4 7.5-7.5-3.4-7.5-7.5-7.5zm0 13.5c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6zm0-10.5c-1.7 0-3 1.3-3 3h1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 1.5-2.2 1.3-2.2 3.8h1.5c0-1.7 2.2-1.9 2.2-3.8 0-1.7-1.3-3-3-3z" fill="currentColor"/></svg>
@@ -972,6 +976,7 @@ if ( ! function_exists( 'happyforms_the_part_label' ) ) :
972
  function happyforms_the_part_label( $part, $form ) {
973
  ?>
974
  <div class="happyforms-part__label-container">
 
975
  <label for="<?php happyforms_the_part_id( $part, $form ); ?>" class="happyforms-part__label">
976
  <span class="label"><?php echo esc_html( $part['label'] ); ?></span>
977
  <?php $is_required = isset( $part['required'] ) && 1 === intval( $part['required'] ); ?>
@@ -982,6 +987,7 @@ function happyforms_the_part_label( $part, $form ) {
982
  <?php happyforms_print_part_description( $part ); ?>
983
  <?php endif; ?>
984
  </label>
 
985
  </div>
986
  <?php
987
  }
@@ -1079,23 +1085,24 @@ if ( ! function_exists( 'happyforms_get_phone_countries' ) ) :
1079
 
1080
  function happyforms_get_phone_countries() {
1081
  $countries = array(
 
1082
  'AD' => array( 'name' => __( 'Andorra', 'happyforms' ), 'code' => '376', 'flag' => '🇦🇩' ),
1083
  'AE' => array( 'name' => __( 'United Arab Emirates', 'happyforms' ), 'code' => '971', 'flag' => '🇦🇪' ),
1084
  'AF' => array( 'name' => __( 'Afghanistan', 'happyforms' ), 'code' => '93', 'flag' => '🇦🇫' ),
1085
- 'AG' => array( 'name' => __( 'Antigua and Barbuda', 'happyforms' ), 'code' => '1268', 'flag' => '🇦🇬' ),
1086
- 'AI' => array( 'name' => __( 'Anguilla', 'happyforms' ), 'code' => '1264', 'flag' => '🇦🇮' ),
1087
  'AL' => array( 'name' => __( 'Albania', 'happyforms' ), 'code' => '355', 'flag' => '🇦🇱' ),
1088
  'AM' => array( 'name' => __( 'Armenia', 'happyforms' ), 'code' => '374', 'flag' => '🇦🇲' ),
1089
  'AO' => array( 'name' => __( 'Angola', 'happyforms' ), 'code' => '244', 'flag' => '🇦🇴' ),
1090
- 'AQ' => array( 'name' => __( 'Antarctica', 'happyforms' ), 'code' => '672', 'flag' => '🇦🇶' ),
1091
  'AR' => array( 'name' => __( 'Argentina', 'happyforms' ), 'code' => '54', 'flag' => '🇦🇷' ),
1092
- 'AS' => array( 'name' => __( 'American Samoa', 'happyforms' ), 'code' => '1684', 'flag' => '🇦🇸' ),
1093
  'AT' => array( 'name' => __( 'Austria', 'happyforms' ), 'code' => '43', 'flag' => '🇦🇹' ),
1094
  'AU' => array( 'name' => __( 'Australia', 'happyforms' ), 'code' => '61', 'flag' => '🇦🇺' ),
1095
  'AW' => array( 'name' => __( 'Aruba', 'happyforms' ), 'code' => '297', 'flag' => '🇦🇼' ),
 
1096
  'AZ' => array( 'name' => __( 'Azerbaijan', 'happyforms' ), 'code' => '994', 'flag' => '🇦🇿' ),
1097
  'BA' => array( 'name' => __( 'Bosnia and Herzegovina', 'happyforms' ), 'code' => '387', 'flag' => '🇧🇦' ),
1098
- 'BB' => array( 'name' => __( 'Barbados', 'happyforms' ), 'code' => '1246', 'flag' => '🇧🇧' ),
1099
  'BD' => array( 'name' => __( 'Bangladesh', 'happyforms' ), 'code' => '880', 'flag' => '🇧🇩' ),
1100
  'BE' => array( 'name' => __( 'Belgium', 'happyforms' ), 'code' => '32', 'flag' => '🇧🇪' ),
1101
  'BF' => array( 'name' => __( 'Burkina Faso', 'happyforms' ), 'code' => '226', 'flag' => '🇧🇫' ),
@@ -1103,21 +1110,24 @@ function happyforms_get_phone_countries() {
1103
  'BH' => array( 'name' => __( 'Bahrain', 'happyforms' ), 'code' => '973', 'flag' => '🇧🇭' ),
1104
  'BI' => array( 'name' => __( 'Burundi', 'happyforms' ), 'code' => '257', 'flag' => '🇧🇮' ),
1105
  'BJ' => array( 'name' => __( 'Benin', 'happyforms' ), 'code' => '229', 'flag' => '🇧🇯' ),
1106
- 'BL' => array( 'name' => __( 'Saint Barthelemy', 'happyforms' ), 'code' => '590', 'flag' => '🇧🇱' ),
1107
- 'BM' => array( 'name' => __( 'Bermuda', 'happyforms' ), 'code' => '1441', 'flag' => '🇧🇲' ),
1108
  'BN' => array( 'name' => __( 'Brunei Darussalam', 'happyforms' ), 'code' => '673', 'flag' => '🇧🇳' ),
1109
  'BO' => array( 'name' => __( 'Bolivia', 'happyforms' ), 'code' => '591', 'flag' => '🇧🇴' ),
 
1110
  'BR' => array( 'name' => __( 'Brazil', 'happyforms' ), 'code' => '55', 'flag' => '🇧🇷' ),
1111
- 'BS' => array( 'name' => __( 'Bahamas', 'happyforms' ), 'code' => '1242', 'flag' => '🇧🇸' ),
1112
  'BT' => array( 'name' => __( 'Bhutan', 'happyforms' ), 'code' => '975', 'flag' => '🇧🇹' ),
1113
  'BW' => array( 'name' => __( 'Botswana', 'happyforms' ), 'code' => '267', 'flag' => '🇧🇼' ),
1114
  'BY' => array( 'name' => __( 'Belarus', 'happyforms' ), 'code' => '375', 'flag' => '🇧🇾' ),
1115
  'BZ' => array( 'name' => __( 'Belize', 'happyforms' ), 'code' => '501', 'flag' => '🇧🇿' ),
1116
  'CA' => array( 'name' => __( 'Canada', 'happyforms' ), 'code' => '1', 'flag' => '🇨🇦' ),
1117
- 'CD' => array( 'name' => __( 'Congo, The Democratic Republic of the', 'happyforms' ), 'code' => '243', 'flag' => '🇨🇩' ),
 
1118
  'CF' => array( 'name' => __( 'Central African Republic', 'happyforms' ), 'code' => '236', 'flag' => '🇨🇫' ),
1119
  'CG' => array( 'name' => __( 'Congo', 'happyforms' ), 'code' => '242', 'flag' => '🇨🇬' ),
1120
  'CH' => array( 'name' => __( 'Switzerland', 'happyforms' ), 'code' => '41', 'flag' => '🇨🇭' ),
 
1121
  'CK' => array( 'name' => __( 'Cook Islands', 'happyforms' ), 'code' => '682', 'flag' => '🇨🇰' ),
1122
  'CL' => array( 'name' => __( 'Chile', 'happyforms' ), 'code' => '56', 'flag' => '🇨🇱' ),
1123
  'CM' => array( 'name' => __( 'Cameroon', 'happyforms' ), 'code' => '237', 'flag' => '🇨🇲' ),
@@ -1126,17 +1136,20 @@ function happyforms_get_phone_countries() {
1126
  'CR' => array( 'name' => __( 'Costa Rica', 'happyforms' ), 'code' => '506', 'flag' => '🇨🇷' ),
1127
  'CU' => array( 'name' => __( 'Cuba', 'happyforms' ), 'code' => '53', 'flag' => '🇨🇺' ),
1128
  'CV' => array( 'name' => __( 'Cape Verde', 'happyforms' ), 'code' => '238', 'flag' => '🇨🇻' ),
 
 
1129
  'CY' => array( 'name' => __( 'Cyprus', 'happyforms' ), 'code' => '357', 'flag' => '🇨🇾' ),
1130
  'CZ' => array( 'name' => __( 'Czech Republic', 'happyforms' ), 'code' => '420', 'flag' => '🇨🇿' ),
1131
  'DE' => array( 'name' => __( 'Germany', 'happyforms' ), 'code' => '49', 'flag' => '🇩🇪' ),
1132
  'DJ' => array( 'name' => __( 'Djibouti', 'happyforms' ), 'code' => '253', 'flag' => '🇩🇯' ),
1133
  'DK' => array( 'name' => __( 'Denmark', 'happyforms' ), 'code' => '45', 'flag' => '🇩🇰' ),
1134
- 'DM' => array( 'name' => __( 'Dominica', 'happyforms' ), 'code' => '1767', 'flag' => '🇩🇲' ),
1135
- 'DO' => array( 'name' => __( 'Dominican Republic', 'happyforms' ), 'code' => '1809', 'flag' => '🇩🇴' ),
1136
  'DZ' => array( 'name' => __( 'Algeria', 'happyforms' ), 'code' => '213', 'flag' => '🇩🇿' ),
1137
  'EC' => array( 'name' => __( 'Ecuador', 'happyforms' ), 'code' => '593', 'flag' => '🇪🇨' ),
1138
  'EE' => array( 'name' => __( 'Estonia', 'happyforms' ), 'code' => '372', 'flag' => '🇪🇪' ),
1139
  'EG' => array( 'name' => __( 'Egypt', 'happyforms' ), 'code' => '20', 'flag' => '🇪🇬' ),
 
1140
  'ER' => array( 'name' => __( 'Eritrea', 'happyforms' ), 'code' => '291', 'flag' => '🇪🇷' ),
1141
  'ES' => array( 'name' => __( 'Spain', 'happyforms' ), 'code' => '34', 'flag' => '🇪🇸' ),
1142
  'ET' => array( 'name' => __( 'Ethiopia', 'happyforms' ), 'code' => '251', 'flag' => '🇪🇹' ),
@@ -1147,17 +1160,22 @@ function happyforms_get_phone_countries() {
1147
  'FO' => array( 'name' => __( 'Faroe Islands', 'happyforms' ), 'code' => '298', 'flag' => '🇫🇴' ),
1148
  'FR' => array( 'name' => __( 'France', 'happyforms' ), 'code' => '33', 'flag' => '🇫🇷' ),
1149
  'GA' => array( 'name' => __( 'Gabon', 'happyforms' ), 'code' => '241', 'flag' => '🇬🇦' ),
1150
- 'GD' => array( 'name' => __( 'Grenada', 'happyforms' ), 'code' => '1473', 'flag' => '🇬🇩' ),
 
1151
  'GE' => array( 'name' => __( 'Georgia', 'happyforms' ), 'code' => '995', 'flag' => '🇬🇪' ),
 
 
1152
  'GH' => array( 'name' => __( 'Ghana', 'happyforms' ), 'code' => '233', 'flag' => '🇬🇭' ),
1153
  'GI' => array( 'name' => __( 'Gibraltar', 'happyforms' ), 'code' => '350', 'flag' => '🇬🇮' ),
1154
  'GL' => array( 'name' => __( 'Greenland', 'happyforms' ), 'code' => '299', 'flag' => '🇬🇱' ),
1155
  'GM' => array( 'name' => __( 'Gambia', 'happyforms' ), 'code' => '220', 'flag' => '🇬🇲' ),
1156
  'GN' => array( 'name' => __( 'Guinea', 'happyforms' ), 'code' => '224', 'flag' => '🇬🇳' ),
 
 
1157
  'GR' => array( 'name' => __( 'Greece', 'happyforms' ), 'code' => '30', 'flag' => '🇬🇷' ),
1158
  'GT' => array( 'name' => __( 'Guatemala', 'happyforms' ), 'code' => '502', 'flag' => '🇬🇹' ),
1159
- 'GU' => array( 'name' => __( 'Guam', 'happyforms' ), 'code' => '1671', 'flag' => '🇬🇺' ),
1160
- 'GW' => array( 'name' => __( 'Guinea-bissau', 'happyforms' ), 'code' => '245', 'flag' => '🇬🇼' ),
1161
  'GY' => array( 'name' => __( 'Guyana', 'happyforms' ), 'code' => '592', 'flag' => '🇬🇾' ),
1162
  'HK' => array( 'name' => __( 'Hong Kong', 'happyforms' ), 'code' => '852', 'flag' => '🇭🇰' ),
1163
  'HN' => array( 'name' => __( 'Honduras', 'happyforms' ), 'code' => '504', 'flag' => '🇭🇳' ),
@@ -1167,12 +1185,15 @@ function happyforms_get_phone_countries() {
1167
  'ID' => array( 'name' => __( 'Indonesia', 'happyforms' ), 'code' => '62', 'flag' => '🇮🇩' ),
1168
  'IE' => array( 'name' => __( 'Ireland', 'happyforms' ), 'code' => '353', 'flag' => '🇮🇪' ),
1169
  'IL' => array( 'name' => __( 'Israel', 'happyforms' ), 'code' => '972', 'flag' => '🇮🇱' ),
 
1170
  'IN' => array( 'name' => __( 'India', 'happyforms' ), 'code' => '91', 'flag' => '🇮🇳' ),
 
1171
  'IQ' => array( 'name' => __( 'Iraq', 'happyforms' ), 'code' => '964', 'flag' => '🇮🇶' ),
1172
  'IR' => array( 'name' => __( 'Iran, Islamic Republic of', 'happyforms' ), 'code' => '98', 'flag' => '🇮🇷' ),
1173
  'IS' => array( 'name' => __( 'Iceland', 'happyforms' ), 'code' => '354', 'flag' => '🇮🇸' ),
1174
  'IT' => array( 'name' => __( 'Italy', 'happyforms' ), 'code' => '39', 'flag' => '🇮🇹' ),
1175
- 'JM' => array( 'name' => __( 'Jamaica', 'happyforms' ), 'code' => '1876', 'flag' => '🇯🇲' ),
 
1176
  'JO' => array( 'name' => __( 'Jordan', 'happyforms' ), 'code' => '962', 'flag' => '🇯🇴' ),
1177
  'JP' => array( 'name' => __( 'Japan', 'happyforms' ), 'code' => '81', 'flag' => '🇯🇵' ),
1178
  'KE' => array( 'name' => __( 'Kenya', 'happyforms' ), 'code' => '254', 'flag' => '🇰🇪' ),
@@ -1180,14 +1201,15 @@ function happyforms_get_phone_countries() {
1180
  'KH' => array( 'name' => __( 'Cambodia', 'happyforms' ), 'code' => '855', 'flag' => '🇰🇭' ),
1181
  'KI' => array( 'name' => __( 'Kiribati', 'happyforms' ), 'code' => '686', 'flag' => '🇰🇮' ),
1182
  'KM' => array( 'name' => __( 'Comoros', 'happyforms' ), 'code' => '269', 'flag' => '🇰🇲' ),
1183
- 'KN' => array( 'name' => __( 'Saint Kitts and Nevis', 'happyforms' ), 'code' => '1869', 'flag' => '🇰🇳' ),
1184
- 'KP' => array( 'name' => __( 'Korea Democratic Peoples Republic of', 'happyforms' ), 'code' => '850', 'flag' => '🇰🇵' ),
1185
- 'KR' => array( 'name' => __( 'Korea Republic of', 'happyforms' ), 'code' => '82', 'flag' => '🇰🇷' ),
1186
  'KW' => array( 'name' => __( 'Kuwait', 'happyforms' ), 'code' => '965', 'flag' => '🇰🇼' ),
1187
- 'KY' => array( 'name' => __( 'Cayman Islands', 'happyforms' ), 'code' => '1345', 'flag' => '🇰🇾' ),
1188
- 'LA' => array( 'name' => __( 'Lao Peoples Democratic Republic', 'happyforms' ), 'code' => '856', 'flag' => '🇱🇦' ),
 
1189
  'LB' => array( 'name' => __( 'Lebanon', 'happyforms' ), 'code' => '961', 'flag' => '🇱🇧' ),
1190
- 'LC' => array( 'name' => __( 'Saint Lucia', 'happyforms' ), 'code' => '1758', 'flag' => '🇱🇨' ),
1191
  'LI' => array( 'name' => __( 'Liechtenstein', 'happyforms' ), 'code' => '423', 'flag' => '🇱🇮' ),
1192
  'LK' => array( 'name' => __( 'Sri Lanka', 'happyforms' ), 'code' => '94', 'flag' => '🇱🇰' ),
1193
  'LR' => array( 'name' => __( 'Liberia', 'happyforms' ), 'code' => '231', 'flag' => '🇱🇷' ),
@@ -1195,21 +1217,23 @@ function happyforms_get_phone_countries() {
1195
  'LT' => array( 'name' => __( 'Lithuania', 'happyforms' ), 'code' => '370', 'flag' => '🇱🇹' ),
1196
  'LU' => array( 'name' => __( 'Luxembourg', 'happyforms' ), 'code' => '352', 'flag' => '🇱🇺' ),
1197
  'LV' => array( 'name' => __( 'Latvia', 'happyforms' ), 'code' => '371', 'flag' => '🇱🇻' ),
1198
- 'LY' => array( 'name' => __( 'Libyan Arab Jamahiriya', 'happyforms' ), 'code' => '218', 'flag' => '🇱🇾' ),
1199
  'MA' => array( 'name' => __( 'Morocco', 'happyforms' ), 'code' => '212', 'flag' => '🇲🇦' ),
1200
  'MC' => array( 'name' => __( 'Monaco', 'happyforms' ), 'code' => '377', 'flag' => '🇲🇨' ),
1201
  'MD' => array( 'name' => __( 'Moldova, Republic of', 'happyforms' ), 'code' => '373', 'flag' => '🇲🇩' ),
1202
  'ME' => array( 'name' => __( 'Montenegro', 'happyforms' ), 'code' => '382', 'flag' => '🇲🇪' ),
 
1203
  'MG' => array( 'name' => __( 'Madagascar', 'happyforms' ), 'code' => '261', 'flag' => '🇲🇬' ),
1204
  'MH' => array( 'name' => __( 'Marshall Islands', 'happyforms' ), 'code' => '692', 'flag' => '🇲🇭' ),
1205
- 'MK' => array( 'name' => __( 'Macedonia, The Former Yugoslav Republic of', 'happyforms' ), 'code' => '389', 'flag' => '🇲🇰' ),
1206
  'ML' => array( 'name' => __( 'Mali', 'happyforms' ), 'code' => '223', 'flag' => '🇲🇱' ),
1207
  'MM' => array( 'name' => __( 'Myanmar', 'happyforms' ), 'code' => '95', 'flag' => '🇲🇲' ),
1208
  'MN' => array( 'name' => __( 'Mongolia', 'happyforms' ), 'code' => '976', 'flag' => '🇲🇳' ),
1209
- 'MO' => array( 'name' => __( 'Macau', 'happyforms' ), 'code' => '853', 'flag' => '🇲🇴' ),
1210
- 'MP' => array( 'name' => __( 'Northern Mariana Islands', 'happyforms' ), 'code' => '1670', 'flag' => '🇲🇵' ),
1211
- 'MR' => array( 'name' => __( 'Mauritania', 'happyforms' ), 'code' => '222', 'flag' => '🇲🇺' ),
1212
- 'MS' => array( 'name' => __( 'Montserrat', 'happyforms' ), 'code' => '1664', 'flag' => '🇲🇸' ),
 
1213
  'MT' => array( 'name' => __( 'Malta', 'happyforms' ), 'code' => '356', 'flag' => '🇲🇹' ),
1214
  'MU' => array( 'name' => __( 'Mauritius', 'happyforms' ), 'code' => '230', 'flag' => '🇲🇺' ),
1215
  'MV' => array( 'name' => __( 'Maldives', 'happyforms' ), 'code' => '960', 'flag' => '🇲🇻' ),
@@ -1220,6 +1244,7 @@ function happyforms_get_phone_countries() {
1220
  'NA' => array( 'name' => __( 'Namibia', 'happyforms' ), 'code' => '264', 'flag' => '🇳🇦' ),
1221
  'NC' => array( 'name' => __( 'New Caledonia', 'happyforms' ), 'code' => '687', 'flag' => '🇳🇨' ),
1222
  'NE' => array( 'name' => __( 'Niger', 'happyforms' ), 'code' => '227', 'flag' => '🇳🇪' ),
 
1223
  'NG' => array( 'name' => __( 'Nigeria', 'happyforms' ), 'code' => '234', 'flag' => '🇳🇬' ),
1224
  'NI' => array( 'name' => __( 'Nicaragua', 'happyforms' ), 'code' => '505', 'flag' => '🇳🇮' ),
1225
  'NL' => array( 'name' => __( 'Netherlands', 'happyforms' ), 'code' => '31', 'flag' => '🇳🇱' ),
@@ -1237,11 +1262,13 @@ function happyforms_get_phone_countries() {
1237
  'PK' => array( 'name' => __( 'Pakistan', 'happyforms' ), 'code' => '92', 'flag' => '🇵🇰' ),
1238
  'PL' => array( 'name' => __( 'Poland', 'happyforms' ), 'code' => '48', 'flag' => '🇵🇱' ),
1239
  'PM' => array( 'name' => __( 'Saint Pierre and Miquelon', 'happyforms' ), 'code' => '508', 'flag' => '🇵🇲' ),
1240
- 'PN' => array( 'name' => __( 'Pitcairn', 'happyforms' ), 'code' => '870', 'flag' => '🇵🇳' ),
 
1241
  'PT' => array( 'name' => __( 'Portugal', 'happyforms' ), 'code' => '351', 'flag' => '🇵🇹' ),
1242
  'PW' => array( 'name' => __( 'Palau', 'happyforms' ), 'code' => '680', 'flag' => '🇵🇼' ),
1243
  'PY' => array( 'name' => __( 'Paraguay', 'happyforms' ), 'code' => '595', 'flag' => '🇵🇾' ),
1244
  'QA' => array( 'name' => __( 'Qatar', 'happyforms' ), 'code' => '974', 'flag' => '🇶🇦' ),
 
1245
  'RO' => array( 'name' => __( 'Romania', 'happyforms' ), 'code' => '40', 'flag' => '🇷🇴' ),
1246
  'RS' => array( 'name' => __( 'Serbia', 'happyforms' ), 'code' => '381', 'flag' => '🇷🇸' ),
1247
  'RU' => array( 'name' => __( 'Russian Federation', 'happyforms' ), 'code' => '7', 'flag' => '🇷🇺' ),
@@ -1254,45 +1281,50 @@ function happyforms_get_phone_countries() {
1254
  'SG' => array( 'name' => __( 'Singapore', 'happyforms' ), 'code' => '65', 'flag' => '🇸🇬' ),
1255
  'SH' => array( 'name' => __( 'Saint Helena', 'happyforms' ), 'code' => '290', 'flag' => '🇸🇭' ),
1256
  'SI' => array( 'name' => __( 'Slovenia', 'happyforms' ), 'code' => '386', 'flag' => '🇸🇮' ),
 
1257
  'SK' => array( 'name' => __( 'Slovakia', 'happyforms' ), 'code' => '421', 'flag' => '🇸🇰' ),
1258
  'SL' => array( 'name' => __( 'Sierra Leone', 'happyforms' ), 'code' => '232', 'flag' => '🇸🇱' ),
1259
  'SM' => array( 'name' => __( 'San Marino', 'happyforms' ), 'code' => '378', 'flag' => '🇸🇲' ),
1260
  'SN' => array( 'name' => __( 'Senegal', 'happyforms' ), 'code' => '221', 'flag' => '🇸🇳' ),
1261
  'SO' => array( 'name' => __( 'Somalia', 'happyforms' ), 'code' => '252', 'flag' => '🇸🇴' ),
1262
  'SR' => array( 'name' => __( 'Suriname', 'happyforms' ), 'code' => '597', 'flag' => '🇸🇷' ),
 
1263
  'ST' => array( 'name' => __( 'Sao Tome and Principe', 'happyforms' ), 'code' => '239', 'flag' => '🇸🇹' ),
1264
  'SV' => array( 'name' => __( 'El Salvador', 'happyforms' ), 'code' => '503', 'flag' => '🇸🇻' ),
 
1265
  'SY' => array( 'name' => __( 'Syrian Arab Republic', 'happyforms' ), 'code' => '963', 'flag' => '🇸🇾' ),
1266
- 'SZ' => array( 'name' => __( 'Swaziland', 'happyforms' ), 'code' => '268', 'flag' => '🇸🇿' ),
1267
- 'TC' => array( 'name' => __( 'Turks and Caicos Islands', 'happyforms' ), 'code' => '1649', 'flag' => '🇹🇨' ),
 
1268
  'TD' => array( 'name' => __( 'Chad', 'happyforms' ), 'code' => '235', 'flag' => '🇹🇩' ),
1269
  'TG' => array( 'name' => __( 'Togo', 'happyforms' ), 'code' => '228', 'flag' => '🇹🇬' ),
1270
  'TH' => array( 'name' => __( 'Thailand', 'happyforms' ), 'code' => '66', 'flag' => '🇹🇭' ),
1271
  'TJ' => array( 'name' => __( 'Tajikistan', 'happyforms' ), 'code' => '992', 'flag' => '🇹🇯' ),
1272
  'TK' => array( 'name' => __( 'Tokelau', 'happyforms' ), 'code' => '690', 'flag' => '🇹🇰' ),
1273
- 'TL' => array( 'name' => __( 'Timor-leste', 'happyforms' ), 'code' => '670', 'flag' => '🇹🇱' ),
1274
  'TM' => array( 'name' => __( 'Turkmenistan', 'happyforms' ), 'code' => '993', 'flag' => '🇹🇲' ),
1275
  'TN' => array( 'name' => __( 'Tunisia', 'happyforms' ), 'code' => '216', 'flag' => '🇹🇳' ),
1276
  'TO' => array( 'name' => __( 'Tonga', 'happyforms' ), 'code' => '676', 'flag' => '🇹🇴' ),
1277
  'TR' => array( 'name' => __( 'Turkey', 'happyforms' ), 'code' => '90', 'flag' => '🇹🇷' ),
1278
- 'TT' => array( 'name' => __( 'Trinidad and Tobago', 'happyforms' ), 'code' => '1868', 'flag' => '🇹🇹' ),
1279
  'TV' => array( 'name' => __( 'Tuvalu', 'happyforms' ), 'code' => '688', 'flag' => '🇹🇻' ),
1280
- 'TW' => array( 'name' => __( 'Taiwan, Province of China', 'happyforms' ), 'code' => '886', 'flag' => '🇹🇼' ),
1281
  'TZ' => array( 'name' => __( 'Tanzania, United Republic of', 'happyforms' ), 'code' => '255', 'flag' => '🇹🇿' ),
1282
  'UA' => array( 'name' => __( 'Ukraine', 'happyforms' ), 'code' => '380', 'flag' => '🇺🇦' ),
1283
  'UG' => array( 'name' => __( 'Uganda', 'happyforms' ), 'code' => '256', 'flag' => '🇺🇬' ),
1284
- 'GB' => array( 'name' => __( 'United Kingdom', 'happyforms' ), 'code' => '44', 'flag' => '🇬🇧' ),
1285
- 'US' => array( 'name' => __( 'United States', 'happyforms' ), 'code' => '1', 'flag' => '🇺🇸' ),
1286
  'UY' => array( 'name' => __( 'Uruguay', 'happyforms' ), 'code' => '598', 'flag' => '🇺🇾' ),
1287
  'UZ' => array( 'name' => __( 'Uzbekistan', 'happyforms' ), 'code' => '998', 'flag' => '🇺🇿' ),
1288
- 'VC' => array( 'name' => __( 'Saint Vincent and the Grenadines', 'happyforms' ), 'code' => '1784', 'flag' => '🇻🇨' ),
 
1289
  'VE' => array( 'name' => __( 'Venezuela', 'happyforms' ), 'code' => '58', 'flag' => '🇻🇪' ),
1290
- 'VG' => array( 'name' => __( 'Virgin Islands, British', 'happyforms' ), 'code' => '1284', 'flag' => '🇻🇬' ),
1291
- 'VI' => array( 'name' => __( 'Virgin Islands, U.S.', 'happyforms' ), 'code' => '1340', 'flag' => '🇻🇮' ),
1292
  'VN' => array( 'name' => __( 'Vietnam', 'happyforms' ), 'code' => '84', 'flag' => '🇻🇳' ),
1293
  'VU' => array( 'name' => __( 'Vanuatu', 'happyforms' ), 'code' => '678', 'flag' => '🇻🇺' ),
1294
  'WF' => array( 'name' => __( 'Wallis and Futuna', 'happyforms' ), 'code' => '681', 'flag' => '🇼🇫' ),
1295
  'WS' => array( 'name' => __( 'Samoa', 'happyforms' ), 'code' => '685', 'flag' => '🇼🇸' ),
 
1296
  'YE' => array( 'name' => __( 'Yemen', 'happyforms' ), 'code' => '967', 'flag' => '🇾🇪' ),
1297
  'YT' => array( 'name' => __( 'Mayotte', 'happyforms' ), 'code' => '262', 'flag' => '🇾🇹' ),
1298
  'ZA' => array( 'name' => __( 'South Africa', 'happyforms' ), 'code' => '27', 'flag' => '🇿🇦' ),
@@ -1300,6 +1332,8 @@ function happyforms_get_phone_countries() {
1300
  'ZW' => array( 'name' => __( 'Zimbabwe', 'happyforms' ), 'code' => '263', 'flag' => '🇿🇼' ),
1301
  );
1302
 
 
 
1303
  return $countries;
1304
  }
1305
 
193
  * @return void
194
  */
195
  function happyforms_print_part_description( $part_data ) {
196
+ if ( empty( $part_data['description'] ) ) {
197
+ return;
198
+ }
199
+
200
  if ( happyforms_part_has_tooltip( $part_data ) || is_customize_preview() ) : ?>
201
  <a href="#" title="<?php echo esc_html( $part_data['description'] ); ?>" class="happyforms-tooltip__trigger"<?php if ( is_customize_preview() && ! happyforms_part_has_tooltip( $part_data ) ) : ?> style="display: none"<?php endif; ?>>
202
  <svg enable-background="new 0 0 15 15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg"><path d="m-1.5-1.5h18v18h-18z" fill="none"/><path d="m6.8 12h1.5v-1.5h-1.5zm.7-12c-4.1 0-7.5 3.4-7.5 7.5s3.4 7.5 7.5 7.5 7.5-3.4 7.5-7.5-3.4-7.5-7.5-7.5zm0 13.5c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6zm0-10.5c-1.7 0-3 1.3-3 3h1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 1.5-2.2 1.3-2.2 3.8h1.5c0-1.7 2.2-1.9 2.2-3.8 0-1.7-1.3-3-3-3z" fill="currentColor"/></svg>
976
  function happyforms_the_part_label( $part, $form ) {
977
  ?>
978
  <div class="happyforms-part__label-container">
979
+ <?php if ( 'hidden' !== $part['label_placement'] ) : ?>
980
  <label for="<?php happyforms_the_part_id( $part, $form ); ?>" class="happyforms-part__label">
981
  <span class="label"><?php echo esc_html( $part['label'] ); ?></span>
982
  <?php $is_required = isset( $part['required'] ) && 1 === intval( $part['required'] ); ?>
987
  <?php happyforms_print_part_description( $part ); ?>
988
  <?php endif; ?>
989
  </label>
990
+ <?php endif; ?>
991
  </div>
992
  <?php
993
  }
1085
 
1086
  function happyforms_get_phone_countries() {
1087
  $countries = array(
1088
+ 'AC' => array( 'name' => __( 'Ascension Island', 'happyforms' ), 'code' => '247', 'flag' => '🇦🇨' ),
1089
  'AD' => array( 'name' => __( 'Andorra', 'happyforms' ), 'code' => '376', 'flag' => '🇦🇩' ),
1090
  'AE' => array( 'name' => __( 'United Arab Emirates', 'happyforms' ), 'code' => '971', 'flag' => '🇦🇪' ),
1091
  'AF' => array( 'name' => __( 'Afghanistan', 'happyforms' ), 'code' => '93', 'flag' => '🇦🇫' ),
1092
+ 'AG' => array( 'name' => __( 'Antigua and Barbuda', 'happyforms' ), 'code' => '1', 'flag' => '🇦🇬' ),
1093
+ 'AI' => array( 'name' => __( 'Anguilla', 'happyforms' ), 'code' => '1', 'flag' => '🇦🇮' ),
1094
  'AL' => array( 'name' => __( 'Albania', 'happyforms' ), 'code' => '355', 'flag' => '🇦🇱' ),
1095
  'AM' => array( 'name' => __( 'Armenia', 'happyforms' ), 'code' => '374', 'flag' => '🇦🇲' ),
1096
  'AO' => array( 'name' => __( 'Angola', 'happyforms' ), 'code' => '244', 'flag' => '🇦🇴' ),
 
1097
  'AR' => array( 'name' => __( 'Argentina', 'happyforms' ), 'code' => '54', 'flag' => '🇦🇷' ),
1098
+ 'AS' => array( 'name' => __( 'American Samoa', 'happyforms' ), 'code' => '1', 'flag' => '🇦🇸' ),
1099
  'AT' => array( 'name' => __( 'Austria', 'happyforms' ), 'code' => '43', 'flag' => '🇦🇹' ),
1100
  'AU' => array( 'name' => __( 'Australia', 'happyforms' ), 'code' => '61', 'flag' => '🇦🇺' ),
1101
  'AW' => array( 'name' => __( 'Aruba', 'happyforms' ), 'code' => '297', 'flag' => '🇦🇼' ),
1102
+ 'AX' => array( 'name' => __( 'Åland Islands', 'happyforms' ), 'code' => '358', 'flag' => '🇦🇽' ),
1103
  'AZ' => array( 'name' => __( 'Azerbaijan', 'happyforms' ), 'code' => '994', 'flag' => '🇦🇿' ),
1104
  'BA' => array( 'name' => __( 'Bosnia and Herzegovina', 'happyforms' ), 'code' => '387', 'flag' => '🇧🇦' ),
1105
+ 'BB' => array( 'name' => __( 'Barbados', 'happyforms' ), 'code' => '1', 'flag' => '🇧🇧' ),
1106
  'BD' => array( 'name' => __( 'Bangladesh', 'happyforms' ), 'code' => '880', 'flag' => '🇧🇩' ),
1107
  'BE' => array( 'name' => __( 'Belgium', 'happyforms' ), 'code' => '32', 'flag' => '🇧🇪' ),
1108
  'BF' => array( 'name' => __( 'Burkina Faso', 'happyforms' ), 'code' => '226', 'flag' => '🇧🇫' ),
1110
  'BH' => array( 'name' => __( 'Bahrain', 'happyforms' ), 'code' => '973', 'flag' => '🇧🇭' ),
1111
  'BI' => array( 'name' => __( 'Burundi', 'happyforms' ), 'code' => '257', 'flag' => '🇧🇮' ),
1112
  'BJ' => array( 'name' => __( 'Benin', 'happyforms' ), 'code' => '229', 'flag' => '🇧🇯' ),
1113
+ 'BL' => array( 'name' => __( 'Saint Barthélemy', 'happyforms' ), 'code' => '590', 'flag' => '🇧🇱' ),
1114
+ 'BM' => array( 'name' => __( 'Bermuda', 'happyforms' ), 'code' => '1', 'flag' => '🇧🇲' ),
1115
  'BN' => array( 'name' => __( 'Brunei Darussalam', 'happyforms' ), 'code' => '673', 'flag' => '🇧🇳' ),
1116
  'BO' => array( 'name' => __( 'Bolivia', 'happyforms' ), 'code' => '591', 'flag' => '🇧🇴' ),
1117
+ 'BQ' => array( 'name' => __( 'Bonaire, Sint Eustatius and Saba', 'happyforms' ), 'code' => '599', 'flag' => '🇧🇶' ),
1118
  'BR' => array( 'name' => __( 'Brazil', 'happyforms' ), 'code' => '55', 'flag' => '🇧🇷' ),
1119
+ 'BS' => array( 'name' => __( 'Bahamas', 'happyforms' ), 'code' => '1', 'flag' => '🇧🇸' ),
1120
  'BT' => array( 'name' => __( 'Bhutan', 'happyforms' ), 'code' => '975', 'flag' => '🇧🇹' ),
1121
  'BW' => array( 'name' => __( 'Botswana', 'happyforms' ), 'code' => '267', 'flag' => '🇧🇼' ),
1122
  'BY' => array( 'name' => __( 'Belarus', 'happyforms' ), 'code' => '375', 'flag' => '🇧🇾' ),
1123
  'BZ' => array( 'name' => __( 'Belize', 'happyforms' ), 'code' => '501', 'flag' => '🇧🇿' ),
1124
  'CA' => array( 'name' => __( 'Canada', 'happyforms' ), 'code' => '1', 'flag' => '🇨🇦' ),
1125
+ 'CC' => array( 'name' => __( 'Cocos (Keeling) Islands', 'happyforms' ), 'code' => '61', 'flag' => '🇨🇨' ),
1126
+ 'CD' => array( 'name' => __( 'Congo, the Democratic Republic of the', 'happyforms' ), 'code' => '243', 'flag' => '🇨🇩' ),
1127
  'CF' => array( 'name' => __( 'Central African Republic', 'happyforms' ), 'code' => '236', 'flag' => '🇨🇫' ),
1128
  'CG' => array( 'name' => __( 'Congo', 'happyforms' ), 'code' => '242', 'flag' => '🇨🇬' ),
1129
  'CH' => array( 'name' => __( 'Switzerland', 'happyforms' ), 'code' => '41', 'flag' => '🇨🇭' ),
1130
+ 'CI' => array( 'name' => __( 'Cote D\'Ivoire', 'happyforms' ), 'code' => '225', 'flag' => '🇨🇮' ),
1131
  'CK' => array( 'name' => __( 'Cook Islands', 'happyforms' ), 'code' => '682', 'flag' => '🇨🇰' ),
1132
  'CL' => array( 'name' => __( 'Chile', 'happyforms' ), 'code' => '56', 'flag' => '🇨🇱' ),
1133
  'CM' => array( 'name' => __( 'Cameroon', 'happyforms' ), 'code' => '237', 'flag' => '🇨🇲' ),
1136
  'CR' => array( 'name' => __( 'Costa Rica', 'happyforms' ), 'code' => '506', 'flag' => '🇨🇷' ),
1137
  'CU' => array( 'name' => __( 'Cuba', 'happyforms' ), 'code' => '53', 'flag' => '🇨🇺' ),
1138
  'CV' => array( 'name' => __( 'Cape Verde', 'happyforms' ), 'code' => '238', 'flag' => '🇨🇻' ),
1139
+ 'CW' => array( 'name' => __( 'Curaçao', 'happyforms' ), 'code' => '599', 'flag' => '🇨🇼' ),
1140
+ 'CX' => array( 'name' => __( 'Christmas Island', 'happyforms' ), 'code' => '61', 'flag' => '🇨🇽' ),
1141
  'CY' => array( 'name' => __( 'Cyprus', 'happyforms' ), 'code' => '357', 'flag' => '🇨🇾' ),
1142
  'CZ' => array( 'name' => __( 'Czech Republic', 'happyforms' ), 'code' => '420', 'flag' => '🇨🇿' ),
1143
  'DE' => array( 'name' => __( 'Germany', 'happyforms' ), 'code' => '49', 'flag' => '🇩🇪' ),
1144
  'DJ' => array( 'name' => __( 'Djibouti', 'happyforms' ), 'code' => '253', 'flag' => '🇩🇯' ),
1145
  'DK' => array( 'name' => __( 'Denmark', 'happyforms' ), 'code' => '45', 'flag' => '🇩🇰' ),
1146
+ 'DM' => array( 'name' => __( 'Dominica', 'happyforms' ), 'code' => '1', 'flag' => '🇩🇲' ),
1147
+ 'DO' => array( 'name' => __( 'Dominican Republic', 'happyforms' ), 'code' => '1', 'flag' => '🇩🇴' ),
1148
  'DZ' => array( 'name' => __( 'Algeria', 'happyforms' ), 'code' => '213', 'flag' => '🇩🇿' ),
1149
  'EC' => array( 'name' => __( 'Ecuador', 'happyforms' ), 'code' => '593', 'flag' => '🇪🇨' ),
1150
  'EE' => array( 'name' => __( 'Estonia', 'happyforms' ), 'code' => '372', 'flag' => '🇪🇪' ),
1151
  'EG' => array( 'name' => __( 'Egypt', 'happyforms' ), 'code' => '20', 'flag' => '🇪🇬' ),
1152
+ 'EH' => array( 'name' => __( 'Western Sahara', 'happyforms' ), 'code' => '212', 'flag' => '🇪🇭' ),
1153
  'ER' => array( 'name' => __( 'Eritrea', 'happyforms' ), 'code' => '291', 'flag' => '🇪🇷' ),
1154
  'ES' => array( 'name' => __( 'Spain', 'happyforms' ), 'code' => '34', 'flag' => '🇪🇸' ),
1155
  'ET' => array( 'name' => __( 'Ethiopia', 'happyforms' ), 'code' => '251', 'flag' => '🇪🇹' ),
1160
  'FO' => array( 'name' => __( 'Faroe Islands', 'happyforms' ), 'code' => '298', 'flag' => '🇫🇴' ),
1161
  'FR' => array( 'name' => __( 'France', 'happyforms' ), 'code' => '33', 'flag' => '🇫🇷' ),
1162
  'GA' => array( 'name' => __( 'Gabon', 'happyforms' ), 'code' => '241', 'flag' => '🇬🇦' ),
1163
+ 'GB' => array( 'name' => __( 'United Kingdom', 'happyforms' ), 'code' => '44', 'flag' => '🇬🇧' ),
1164
+ 'GD' => array( 'name' => __( 'Grenada', 'happyforms' ), 'code' => '1', 'flag' => '🇬🇩' ),
1165
  'GE' => array( 'name' => __( 'Georgia', 'happyforms' ), 'code' => '995', 'flag' => '🇬🇪' ),
1166
+ 'GF' => array( 'name' => __( 'French Guiana', 'happyforms' ), 'code' => '594', 'flag' => '🇬🇫' ),
1167
+ 'GG' => array( 'name' => __( 'Guernsey', 'happyforms' ), 'code' => '44', 'flag' => '🇬🇬' ),
1168
  'GH' => array( 'name' => __( 'Ghana', 'happyforms' ), 'code' => '233', 'flag' => '🇬🇭' ),
1169
  'GI' => array( 'name' => __( 'Gibraltar', 'happyforms' ), 'code' => '350', 'flag' => '🇬🇮' ),
1170
  'GL' => array( 'name' => __( 'Greenland', 'happyforms' ), 'code' => '299', 'flag' => '🇬🇱' ),
1171
  'GM' => array( 'name' => __( 'Gambia', 'happyforms' ), 'code' => '220', 'flag' => '🇬🇲' ),
1172
  'GN' => array( 'name' => __( 'Guinea', 'happyforms' ), 'code' => '224', 'flag' => '🇬🇳' ),
1173
+ 'GP' => array( 'name' => __( 'Guadeloupe', 'happyforms' ), 'code' => '590', 'flag' => '🇬🇵' ),
1174
+ 'GQ' => array( 'name' => __( 'Equatorial Guinea', 'happyforms' ), 'code' => '240', 'flag' => '🇬🇶' ),
1175
  'GR' => array( 'name' => __( 'Greece', 'happyforms' ), 'code' => '30', 'flag' => '🇬🇷' ),
1176
  'GT' => array( 'name' => __( 'Guatemala', 'happyforms' ), 'code' => '502', 'flag' => '🇬🇹' ),
1177
+ 'GU' => array( 'name' => __( 'Guam', 'happyforms' ), 'code' => '1', 'flag' => '🇬🇺' ),
1178
+ 'GW' => array( 'name' => __( 'Guinea-Bissau', 'happyforms' ), 'code' => '245', 'flag' => '🇬🇼' ),
1179
  'GY' => array( 'name' => __( 'Guyana', 'happyforms' ), 'code' => '592', 'flag' => '🇬🇾' ),
1180
  'HK' => array( 'name' => __( 'Hong Kong', 'happyforms' ), 'code' => '852', 'flag' => '🇭🇰' ),
1181
  'HN' => array( 'name' => __( 'Honduras', 'happyforms' ), 'code' => '504', 'flag' => '🇭🇳' ),
1185
  'ID' => array( 'name' => __( 'Indonesia', 'happyforms' ), 'code' => '62', 'flag' => '🇮🇩' ),
1186
  'IE' => array( 'name' => __( 'Ireland', 'happyforms' ), 'code' => '353', 'flag' => '🇮🇪' ),
1187
  'IL' => array( 'name' => __( 'Israel', 'happyforms' ), 'code' => '972', 'flag' => '🇮🇱' ),
1188
+ 'IM' => array( 'name' => __( 'Isle of Man', 'happyforms' ), 'code' => '44', 'flag' => '🇮🇲' ),
1189
  'IN' => array( 'name' => __( 'India', 'happyforms' ), 'code' => '91', 'flag' => '🇮🇳' ),
1190
+ 'IO' => array( 'name' => __( 'British Indian Ocean Territory', 'happyforms' ), 'code' => '246', 'flag' => '🇮🇴' ),
1191
  'IQ' => array( 'name' => __( 'Iraq', 'happyforms' ), 'code' => '964', 'flag' => '🇮🇶' ),
1192
  'IR' => array( 'name' => __( 'Iran, Islamic Republic of', 'happyforms' ), 'code' => '98', 'flag' => '🇮🇷' ),
1193
  'IS' => array( 'name' => __( 'Iceland', 'happyforms' ), 'code' => '354', 'flag' => '🇮🇸' ),
1194
  'IT' => array( 'name' => __( 'Italy', 'happyforms' ), 'code' => '39', 'flag' => '🇮🇹' ),
1195
+ 'JE' => array( 'name' => __( 'Jersey', 'happyforms' ), 'code' => '44', 'flag' => '🇯🇪' ),
1196
+ 'JM' => array( 'name' => __( 'Jamaica', 'happyforms' ), 'code' => '1', 'flag' => '🇯🇲' ),
1197
  'JO' => array( 'name' => __( 'Jordan', 'happyforms' ), 'code' => '962', 'flag' => '🇯🇴' ),
1198
  'JP' => array( 'name' => __( 'Japan', 'happyforms' ), 'code' => '81', 'flag' => '🇯🇵' ),
1199
  'KE' => array( 'name' => __( 'Kenya', 'happyforms' ), 'code' => '254', 'flag' => '🇰🇪' ),
1201
  'KH' => array( 'name' => __( 'Cambodia', 'happyforms' ), 'code' => '855', 'flag' => '🇰🇭' ),
1202
  'KI' => array( 'name' => __( 'Kiribati', 'happyforms' ), 'code' => '686', 'flag' => '🇰🇮' ),
1203
  'KM' => array( 'name' => __( 'Comoros', 'happyforms' ), 'code' => '269', 'flag' => '🇰🇲' ),
1204
+ 'KN' => array( 'name' => __( 'Saint Kitts and Nevis', 'happyforms' ), 'code' => '1', 'flag' => '🇰🇳' ),
1205
+ 'KP' => array( 'name' => __( 'North Korea', 'happyforms' ), 'code' => '850', 'flag' => '🇰🇵' ),
1206
+ 'KR' => array( 'name' => __( 'South Korea', 'happyforms' ), 'code' => '82', 'flag' => '🇰🇷' ),
1207
  'KW' => array( 'name' => __( 'Kuwait', 'happyforms' ), 'code' => '965', 'flag' => '🇰🇼' ),
1208
+ 'KY' => array( 'name' => __( 'Cayman Islands', 'happyforms' ), 'code' => '1', 'flag' => '🇰🇾' ),
1209
+ 'KZ' => array( 'name' => __( 'Kazakhstan', 'happyforms' ), 'code' => '7', 'flag' => '🇰🇿' ),
1210
+ 'LA' => array( 'name' => __( 'Lao People\'s Democratic Republic', 'happyforms' ), 'code' => '856', 'flag' => '🇱🇦' ),
1211
  'LB' => array( 'name' => __( 'Lebanon', 'happyforms' ), 'code' => '961', 'flag' => '🇱🇧' ),
1212
+ 'LC' => array( 'name' => __( 'Saint Lucia', 'happyforms' ), 'code' => '1', 'flag' => '🇱🇨' ),
1213
  'LI' => array( 'name' => __( 'Liechtenstein', 'happyforms' ), 'code' => '423', 'flag' => '🇱🇮' ),
1214
  'LK' => array( 'name' => __( 'Sri Lanka', 'happyforms' ), 'code' => '94', 'flag' => '🇱🇰' ),
1215
  'LR' => array( 'name' => __( 'Liberia', 'happyforms' ), 'code' => '231', 'flag' => '🇱🇷' ),
1217
  'LT' => array( 'name' => __( 'Lithuania', 'happyforms' ), 'code' => '370', 'flag' => '🇱🇹' ),
1218
  'LU' => array( 'name' => __( 'Luxembourg', 'happyforms' ), 'code' => '352', 'flag' => '🇱🇺' ),
1219
  'LV' => array( 'name' => __( 'Latvia', 'happyforms' ), 'code' => '371', 'flag' => '🇱🇻' ),
1220
+ 'LY' => array( 'name' => __( 'Libya', 'happyforms' ), 'code' => '218', 'flag' => '🇱🇾' ),
1221
  'MA' => array( 'name' => __( 'Morocco', 'happyforms' ), 'code' => '212', 'flag' => '🇲🇦' ),
1222
  'MC' => array( 'name' => __( 'Monaco', 'happyforms' ), 'code' => '377', 'flag' => '🇲🇨' ),
1223
  'MD' => array( 'name' => __( 'Moldova, Republic of', 'happyforms' ), 'code' => '373', 'flag' => '🇲🇩' ),
1224
  'ME' => array( 'name' => __( 'Montenegro', 'happyforms' ), 'code' => '382', 'flag' => '🇲🇪' ),
1225
+ 'MF' => array( 'name' => __( 'Saint Martin (French part)', 'happyforms' ), 'code' => '590', 'flag' => '🇲🇫' ),
1226
  'MG' => array( 'name' => __( 'Madagascar', 'happyforms' ), 'code' => '261', 'flag' => '🇲🇬' ),
1227
  'MH' => array( 'name' => __( 'Marshall Islands', 'happyforms' ), 'code' => '692', 'flag' => '🇲🇭' ),
1228
+ 'MK' => array( 'name' => __( 'North Macedonia, Republic of', 'happyforms' ), 'code' => '389', 'flag' => '🇲🇰' ),
1229
  'ML' => array( 'name' => __( 'Mali', 'happyforms' ), 'code' => '223', 'flag' => '🇲🇱' ),
1230
  'MM' => array( 'name' => __( 'Myanmar', 'happyforms' ), 'code' => '95', 'flag' => '🇲🇲' ),
1231
  'MN' => array( 'name' => __( 'Mongolia', 'happyforms' ), 'code' => '976', 'flag' => '🇲🇳' ),
1232
+ 'MO' => array( 'name' => __( 'Macao', 'happyforms' ), 'code' => '853', 'flag' => '🇲🇴' ),
1233
+ 'MP' => array( 'name' => __( 'Northern Mariana Islands', 'happyforms' ), 'code' => '1', 'flag' => '🇲🇵' ),
1234
+ 'MQ' => array( 'name' => __( 'Martinique', 'happyforms' ), 'code' => '596', 'flag' => '🇲🇶' ),
1235
+ 'MR' => array( 'name' => __( 'Mauritania', 'happyforms' ), 'code' => '222', 'flag' => '🇲🇷' ),
1236
+ 'MS' => array( 'name' => __( 'Montserrat', 'happyforms' ), 'code' => '1', 'flag' => '🇲🇸' ),
1237
  'MT' => array( 'name' => __( 'Malta', 'happyforms' ), 'code' => '356', 'flag' => '🇲🇹' ),
1238
  'MU' => array( 'name' => __( 'Mauritius', 'happyforms' ), 'code' => '230', 'flag' => '🇲🇺' ),
1239
  'MV' => array( 'name' => __( 'Maldives', 'happyforms' ), 'code' => '960', 'flag' => '🇲🇻' ),
1244
  'NA' => array( 'name' => __( 'Namibia', 'happyforms' ), 'code' => '264', 'flag' => '🇳🇦' ),
1245
  'NC' => array( 'name' => __( 'New Caledonia', 'happyforms' ), 'code' => '687', 'flag' => '🇳🇨' ),
1246
  'NE' => array( 'name' => __( 'Niger', 'happyforms' ), 'code' => '227', 'flag' => '🇳🇪' ),
1247
+ 'NF' => array( 'name' => __( 'Norfolk Island', 'happyforms' ), 'code' => '672', 'flag' => '🇳🇫' ),
1248
  'NG' => array( 'name' => __( 'Nigeria', 'happyforms' ), 'code' => '234', 'flag' => '🇳🇬' ),
1249
  'NI' => array( 'name' => __( 'Nicaragua', 'happyforms' ), 'code' => '505', 'flag' => '🇳🇮' ),
1250
  'NL' => array( 'name' => __( 'Netherlands', 'happyforms' ), 'code' => '31', 'flag' => '🇳🇱' ),
1262
  'PK' => array( 'name' => __( 'Pakistan', 'happyforms' ), 'code' => '92', 'flag' => '🇵🇰' ),
1263
  'PL' => array( 'name' => __( 'Poland', 'happyforms' ), 'code' => '48', 'flag' => '🇵🇱' ),
1264
  'PM' => array( 'name' => __( 'Saint Pierre and Miquelon', 'happyforms' ), 'code' => '508', 'flag' => '🇵🇲' ),
1265
+ 'PR' => array( 'name' => __( 'Puerto Rico', 'happyforms' ), 'code' => '1', 'flag' => '🇵🇷' ),
1266
+ 'PS' => array( 'name' => __( 'Palestinian Territory, Occupied', 'happyforms' ), 'code' => '970', 'flag' => '🇵🇸' ),
1267
  'PT' => array( 'name' => __( 'Portugal', 'happyforms' ), 'code' => '351', 'flag' => '🇵🇹' ),
1268
  'PW' => array( 'name' => __( 'Palau', 'happyforms' ), 'code' => '680', 'flag' => '🇵🇼' ),
1269
  'PY' => array( 'name' => __( 'Paraguay', 'happyforms' ), 'code' => '595', 'flag' => '🇵🇾' ),
1270
  'QA' => array( 'name' => __( 'Qatar', 'happyforms' ), 'code' => '974', 'flag' => '🇶🇦' ),
1271
+ 'RE' => array( 'name' => __( 'Reunion', 'happyforms' ), 'code' => '262', 'flag' => '🇷🇪' ),
1272
  'RO' => array( 'name' => __( 'Romania', 'happyforms' ), 'code' => '40', 'flag' => '🇷🇴' ),
1273
  'RS' => array( 'name' => __( 'Serbia', 'happyforms' ), 'code' => '381', 'flag' => '🇷🇸' ),
1274
  'RU' => array( 'name' => __( 'Russian Federation', 'happyforms' ), 'code' => '7', 'flag' => '🇷🇺' ),
1281
  'SG' => array( 'name' => __( 'Singapore', 'happyforms' ), 'code' => '65', 'flag' => '🇸🇬' ),
1282
  'SH' => array( 'name' => __( 'Saint Helena', 'happyforms' ), 'code' => '290', 'flag' => '🇸🇭' ),
1283
  'SI' => array( 'name' => __( 'Slovenia', 'happyforms' ), 'code' => '386', 'flag' => '🇸🇮' ),
1284
+ 'SJ' => array( 'name' => __( 'Svalbard and Jan Mayen', 'happyforms' ), 'code' => '47', 'flag' => '🇸🇯' ),
1285
  'SK' => array( 'name' => __( 'Slovakia', 'happyforms' ), 'code' => '421', 'flag' => '🇸🇰' ),
1286
  'SL' => array( 'name' => __( 'Sierra Leone', 'happyforms' ), 'code' => '232', 'flag' => '🇸🇱' ),
1287
  'SM' => array( 'name' => __( 'San Marino', 'happyforms' ), 'code' => '378', 'flag' => '🇸🇲' ),
1288
  'SN' => array( 'name' => __( 'Senegal', 'happyforms' ), 'code' => '221', 'flag' => '🇸🇳' ),
1289
  'SO' => array( 'name' => __( 'Somalia', 'happyforms' ), 'code' => '252', 'flag' => '🇸🇴' ),
1290
  'SR' => array( 'name' => __( 'Suriname', 'happyforms' ), 'code' => '597', 'flag' => '🇸🇷' ),
1291
+ 'SS' => array( 'name' => __( 'South Sudan', 'happyforms' ), 'code' => '211', 'flag' => '🇸🇸' ),
1292
  'ST' => array( 'name' => __( 'Sao Tome and Principe', 'happyforms' ), 'code' => '239', 'flag' => '🇸🇹' ),
1293
  'SV' => array( 'name' => __( 'El Salvador', 'happyforms' ), 'code' => '503', 'flag' => '🇸🇻' ),
1294
+ 'SX' => array( 'name' => __( 'Sint Maarten (Dutch part)', 'happyforms' ), 'code' => '1', 'flag' => '🇸🇽' ),
1295
  'SY' => array( 'name' => __( 'Syrian Arab Republic', 'happyforms' ), 'code' => '963', 'flag' => '🇸🇾' ),
1296
+ 'SZ' => array( 'name' => __( 'Eswatini', 'happyforms' ), 'code' => '268', 'flag' => '🇸🇿' ),
1297
+ 'TA' => array( 'name' => __( 'Saint Helena', 'happyforms' ), 'code' => '290', 'flag' => '🇹🇦' ),
1298
+ 'TC' => array( 'name' => __( 'Turks and Caicos Islands', 'happyforms' ), 'code' => '1', 'flag' => '🇹🇨' ),
1299
  'TD' => array( 'name' => __( 'Chad', 'happyforms' ), 'code' => '235', 'flag' => '🇹🇩' ),
1300
  'TG' => array( 'name' => __( 'Togo', 'happyforms' ), 'code' => '228', 'flag' => '🇹🇬' ),
1301
  'TH' => array( 'name' => __( 'Thailand', 'happyforms' ), 'code' => '66', 'flag' => '🇹🇭' ),
1302
  'TJ' => array( 'name' => __( 'Tajikistan', 'happyforms' ), 'code' => '992', 'flag' => '🇹🇯' ),
1303
  'TK' => array( 'name' => __( 'Tokelau', 'happyforms' ), 'code' => '690', 'flag' => '🇹🇰' ),
1304
+ 'TL' => array( 'name' => __( 'Timor-Leste', 'happyforms' ), 'code' => '670', 'flag' => '🇹🇱' ),
1305
  'TM' => array( 'name' => __( 'Turkmenistan', 'happyforms' ), 'code' => '993', 'flag' => '🇹🇲' ),
1306
  'TN' => array( 'name' => __( 'Tunisia', 'happyforms' ), 'code' => '216', 'flag' => '🇹🇳' ),
1307
  'TO' => array( 'name' => __( 'Tonga', 'happyforms' ), 'code' => '676', 'flag' => '🇹🇴' ),
1308
  'TR' => array( 'name' => __( 'Turkey', 'happyforms' ), 'code' => '90', 'flag' => '🇹🇷' ),
1309
+ 'TT' => array( 'name' => __( 'Trinidad and Tobago', 'happyforms' ), 'code' => '1', 'flag' => '🇹🇹' ),
1310
  'TV' => array( 'name' => __( 'Tuvalu', 'happyforms' ), 'code' => '688', 'flag' => '🇹🇻' ),
1311
+ 'TW' => array( 'name' => __( 'Taiwan', 'happyforms' ), 'code' => '886', 'flag' => '🇹🇼' ),
1312
  'TZ' => array( 'name' => __( 'Tanzania, United Republic of', 'happyforms' ), 'code' => '255', 'flag' => '🇹🇿' ),
1313
  'UA' => array( 'name' => __( 'Ukraine', 'happyforms' ), 'code' => '380', 'flag' => '🇺🇦' ),
1314
  'UG' => array( 'name' => __( 'Uganda', 'happyforms' ), 'code' => '256', 'flag' => '🇺🇬' ),
1315
+ 'US' => array( 'name' => __( 'United States of America', 'happyforms' ), 'code' => '1', 'flag' => '🇺🇸' ),
 
1316
  'UY' => array( 'name' => __( 'Uruguay', 'happyforms' ), 'code' => '598', 'flag' => '🇺🇾' ),
1317
  'UZ' => array( 'name' => __( 'Uzbekistan', 'happyforms' ), 'code' => '998', 'flag' => '🇺🇿' ),
1318
+ 'VA' => array( 'name' => __( 'Holy See (Vatican City State)', 'happyforms' ), 'code' => '39', 'flag' => '🇻🇦' ),
1319
+ 'VC' => array( 'name' => __( 'Saint Vincent and the Grenadines', 'happyforms' ), 'code' => '1', 'flag' => '🇻🇨' ),
1320
  'VE' => array( 'name' => __( 'Venezuela', 'happyforms' ), 'code' => '58', 'flag' => '🇻🇪' ),
1321
+ 'VG' => array( 'name' => __( 'Virgin Islands, British', 'happyforms' ), 'code' => '1', 'flag' => '🇻🇬' ),
1322
+ 'VI' => array( 'name' => __( 'Virgin Islands, U.S.', 'happyforms' ), 'code' => '1', 'flag' => '🇻🇮' ),
1323
  'VN' => array( 'name' => __( 'Vietnam', 'happyforms' ), 'code' => '84', 'flag' => '🇻🇳' ),
1324
  'VU' => array( 'name' => __( 'Vanuatu', 'happyforms' ), 'code' => '678', 'flag' => '🇻🇺' ),
1325
  'WF' => array( 'name' => __( 'Wallis and Futuna', 'happyforms' ), 'code' => '681', 'flag' => '🇼🇫' ),
1326
  'WS' => array( 'name' => __( 'Samoa', 'happyforms' ), 'code' => '685', 'flag' => '🇼🇸' ),
1327
+ 'XK' => array( 'name' => __( 'Kosovo', 'happyforms' ), 'code' => '383', 'flag' => '🇽🇰' ),
1328
  'YE' => array( 'name' => __( 'Yemen', 'happyforms' ), 'code' => '967', 'flag' => '🇾🇪' ),
1329
  'YT' => array( 'name' => __( 'Mayotte', 'happyforms' ), 'code' => '262', 'flag' => '🇾🇹' ),
1330
  'ZA' => array( 'name' => __( 'South Africa', 'happyforms' ), 'code' => '27', 'flag' => '🇿🇦' ),
1332
  'ZW' => array( 'name' => __( 'Zimbabwe', 'happyforms' ), 'code' => '263', 'flag' => '🇿🇼' ),
1333
  );
1334
 
1335
+ $countries = apply_filters( 'happyforms_phone_countries', $countries );
1336
+
1337
  return $countries;
1338
  }
1339
 
core/templates/customize-controls/style/custom-select.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <li class="customize-control <?php echo esc_attr( 'happyforms-' . $control['type'] . '-control' ); ?>" data-target="<?php echo esc_attr( $field['target'] ); ?>" id="customize-control-<?php echo $control['field']; ?>">
2
+ <label class="customize-control-title" for="<?php echo $control['field']; ?>"><?php echo $control['label']; ?></label>
3
+ <div class="customize-control-content">
4
+ <select name="<?php echo $control['field']; ?>" id="<?php echo $control['field']; ?>" data-attribute="<?php echo $control['field']; ?>" class="widefat">
5
+ <% if ( ID !== 0 && <?php echo $control['field']; ?> === '' ) { %>
6
+ <option value="" selected></option>
7
+ <% } %>
8
+ <?php
9
+ foreach ( $field['options'] as $option_key => $option ) :
10
+ ?>
11
+ <option value="<?php echo esc_attr( $option_key ); ?>" <% if (<?php echo $control['field']; ?> === '<?php echo esc_attr( $option_key ); ?>') {%><%= 'selected' %><% } %>><?php echo esc_attr( $option ); ?></option>
12
+ <?php endforeach; ?>
13
+ </select>
14
+ </div>
15
+ </li>
core/templates/parts/customize-checkbox.php CHANGED
@@ -4,26 +4,10 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
14
- </select>
15
- </p>
16
  <p>
17
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
18
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
19
  </p>
20
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
21
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
22
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
23
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
24
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
25
- </select>
26
- </p>
27
 
28
  <?php do_action( 'happyforms_part_customize_checkbox_before_options' ); ?>
29
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
 
 
 
 
 
 
 
 
 
7
  <p>
8
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
9
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
10
  </p>
 
 
 
 
 
 
 
11
 
12
  <?php do_action( 'happyforms_part_customize_checkbox_before_options' ); ?>
13
 
core/templates/parts/customize-email.php CHANGED
@@ -4,16 +4,6 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="inside"<%= (instance.label_placement == 'inside') ? ' selected' : '' %>><?php _e( 'Inside', 'happyforms' ); ?></option>
14
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
15
- </select>
16
- </p>
17
  <p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
18
  <label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
19
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
@@ -22,14 +12,6 @@
22
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
23
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
24
  </p>
25
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
26
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
27
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
28
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
29
- <option value="focus-reveal"<%= (instance.description_mode == 'focus-reveal') ? ' selected' : '' %>><?php _e( 'Reveal on focus', 'happyforms' ); ?></option>
30
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
31
- </select>
32
- </p>
33
 
34
  <?php do_action( 'happyforms_part_customize_email_before_options' ); ?>
35
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
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>
9
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
12
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
13
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
14
  </p>
 
 
 
 
 
 
 
 
15
 
16
  <?php do_action( 'happyforms_part_customize_email_before_options' ); ?>
17
 
core/templates/parts/customize-multi-line-text.php CHANGED
@@ -4,16 +4,6 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="inside"<%= (instance.label_placement == 'inside') ? ' selected' : '' %>><?php _e( 'Inside', 'happyforms' ); ?></option>
14
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
15
- </select>
16
- </p>
17
  <p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
18
  <label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
19
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
@@ -22,14 +12,6 @@
22
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
23
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
24
  </p>
25
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
26
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
27
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
28
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
29
- <option value="focus-reveal"<%= (instance.description_mode == 'focus-reveal') ? ' selected' : '' %>><?php _e( 'Reveal on focus', 'happyforms' ); ?></option>
30
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
31
- </select>
32
- </p>
33
 
34
  <?php do_action( 'happyforms_part_customize_multi_line_text_before_options' ); ?>
35
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
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>
9
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
12
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
13
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
14
  </p>
 
 
 
 
 
 
 
 
15
 
16
  <?php do_action( 'happyforms_part_customize_multi_line_text_before_options' ); ?>
17
 
core/templates/parts/customize-number.php CHANGED
@@ -4,16 +4,6 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="inside"<%= (instance.label_placement == 'inside') ? ' selected' : '' %>><?php _e( 'Inside', 'happyforms' ); ?></option>
14
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
15
- </select>
16
- </p>
17
  <p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
18
  <label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
19
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
@@ -22,14 +12,6 @@
22
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
23
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
24
  </p>
25
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
26
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
27
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
28
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
29
- <option value="focus-reveal"<%= (instance.description_mode == 'focus-reveal') ? ' selected' : '' %>><?php _e( 'Reveal on focus', 'happyforms' ); ?></option>
30
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
31
- </select>
32
- </p>
33
 
34
  <?php do_action( 'happyforms_part_customize_number_before_options' ); ?>
35
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
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>
9
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
12
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
13
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
14
  </p>
 
 
 
 
 
 
 
 
15
 
16
  <?php do_action( 'happyforms_part_customize_number_before_options' ); ?>
17
 
core/templates/parts/customize-radio.php CHANGED
@@ -4,26 +4,10 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
14
- </select>
15
- </p>
16
  <p>
17
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
18
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
19
  </p>
20
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
21
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
22
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
23
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
24
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
25
- </select>
26
- </p>
27
 
28
  <?php do_action( 'happyforms_part_customize_radio_before_options' ); ?>
29
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
 
 
 
 
 
 
 
 
 
7
  <p>
8
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
9
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
10
  </p>
 
 
 
 
 
 
 
11
 
12
  <?php do_action( 'happyforms_part_customize_radio_before_options' ); ?>
13
 
core/templates/parts/customize-select.php CHANGED
@@ -4,15 +4,6 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
14
- </select>
15
- </p>
16
  <p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
17
  <label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
18
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
@@ -21,13 +12,6 @@
21
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
22
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
23
  </p>
24
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
25
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
26
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
27
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
28
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
29
- </select>
30
- </p>
31
 
32
  <?php do_action( 'happyforms_part_customize_select_before_options' ); ?>
33
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
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>
9
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
12
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
13
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
14
  </p>
 
 
 
 
 
 
 
15
 
16
  <?php do_action( 'happyforms_part_customize_select_before_options' ); ?>
17
 
core/templates/parts/customize-single-line-text.php CHANGED
@@ -4,16 +4,6 @@
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
6
  </p>
7
- <p>
8
- <label for="<%= instance.id %>_label_placement"><?php _e( 'Label display', 'happyforms' ); ?></label>
9
- <select id="<%= instance.id %>_label_placement" data-bind="label_placement">
10
- <option value="above"<%= (instance.label_placement == 'above') ? ' selected' : '' %>><?php _e( 'Above', 'happyforms' ); ?></option>
11
- <option value="below"<%= (instance.label_placement == 'below') ? ' selected' : '' %>><?php _e( 'Below', 'happyforms' ); ?></option>
12
- <option value="left"<%= (instance.label_placement == 'left') ? ' selected' : '' %>><?php _e( 'Left', 'happyforms' ); ?></option>
13
- <option value="inside"<%= (instance.label_placement == 'inside') ? ' selected' : '' %>><?php _e( 'Inside', 'happyforms' ); ?></option>
14
- <option value="hidden"<%= (instance.label_placement == 'hidden') ? ' selected' : '' %>><?php _e( 'Hidden', 'happyforms' ); ?></option>
15
- </select>
16
- </p>
17
  <p class="happyforms-placeholder-option" style="display: <%= ( 'as_placeholder' !== instance.label_placement ) ? 'block' : 'none' %>">
18
  <label for="<%= instance.id %>_placeholder"><?php _e( 'Placeholder', 'happyforms' ); ?></label>
19
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
@@ -22,14 +12,6 @@
22
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
23
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
24
  </p>
25
- <p class="happyforms-description-options" style="display: <%= (instance.description != '') ? 'block' : 'none' %>">
26
- <label for="<%= instance.id %>_description_mode"><?php _e( 'Description display', 'happyforms' ); ?></label>
27
- <select id="<%= instance.id %>_description_mode" data-bind="description_mode">
28
- <option value=""><?php _e( 'Standard', 'happyforms' ); ?></option>
29
- <option value="focus-reveal"<%= (instance.description_mode == 'focus-reveal') ? ' selected' : '' %>><?php _e( 'Reveal on focus', 'happyforms' ); ?></option>
30
- <option value="tooltip"<%= (instance.description_mode == 'tooltip' || instance.tooltip_description ) ? ' selected' : '' %>><?php _e( 'Tooltip', 'happyforms' ); ?></option>
31
- </select>
32
- </p>
33
 
34
  <?php do_action( 'happyforms_part_customize_single_line_text_before_options' ); ?>
35
 
4
  <label for="<%= instance.id %>_title"><?php _e( 'Label', 'happyforms' ); ?></label>
5
  <input type="text" id="<%= instance.id %>_title" class="widefat title" value="<%= instance.label %>" data-bind="label" />
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>
9
  <input type="text" id="<%= instance.id %>_placeholder" class="widefat title" value="<%= instance.placeholder %>" data-bind="placeholder" />
12
  <label for="<%= instance.id %>_description"><?php _e( 'Description', 'happyforms' ); ?></label>
13
  <textarea id="<%= instance.id %>_description" data-bind="description"><%= instance.description %></textarea>
14
  </p>
 
 
 
 
 
 
 
 
15
 
16
  <?php do_action( 'happyforms_part_customize_single_line_text_before_options' ); ?>
17
 
core/templates/parts/frontend-radio.php CHANGED
@@ -14,10 +14,10 @@
14
  $checked = false;
15
 
16
  if ( is_string( $value ) ) {
17
- $checked = ! empty( $option['label'] ) ? checked( $value, $o, false ) : '';
18
  }
19
 
20
- if ( ! $checked ) {
21
  $checked = checked( 1, $option['is_default'], false );
22
  }
23
  ?>
14
  $checked = false;
15
 
16
  if ( is_string( $value ) ) {
17
+ $checked = ! empty( $option['label'] ) ? checked( $value, $o, false ) : false;
18
  }
19
 
20
+ if ( false === $checked ) {
21
  $checked = checked( 1, $option['is_default'], false );
22
  }
23
  ?>
happyforms.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://happyforms.me
6
  * Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
7
  * Author: HappyForms
8
- * Version: 1.9.22
9
  * Author URI: https://happyforms.me
10
  * Upgrade URI: https://happyforms.me/upgrade
11
  */
@@ -13,7 +13,7 @@
13
  /**
14
  * The current version of the plugin.
15
  */
16
- define( 'HAPPYFORMS_VERSION', '1.9.22' );
17
 
18
  if ( ! function_exists( 'happyforms_plugin_file' ) ):
19
  /**
5
  * Plugin URI: https://happyforms.me
6
  * Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
7
  * Author: HappyForms
8
+ * Version: 1.9.23
9
  * Author URI: https://happyforms.me
10
  * Upgrade URI: https://happyforms.me/upgrade
11
  */
13
  /**
14
  * The current version of the plugin.
15
  */
16
+ define( 'HAPPYFORMS_VERSION', '1.9.23' );
17
 
18
  if ( ! function_exists( 'happyforms_plugin_file' ) ):
19
  /**
inc/assets/js/customize.js CHANGED
@@ -188,6 +188,14 @@
188
 
189
  Backbone.history.start();
190
  api.previewer.previewUrl( this.form.getPreviewUrl() );
 
 
 
 
 
 
 
 
191
  },
192
 
193
  flushBuffer: function() {
@@ -651,6 +659,9 @@
651
 
652
  this.drawer.close();
653
 
 
 
 
654
  this.model.get( 'parts' ).add( partModel, options );
655
  this.model.trigger( 'change', this.model );
656
 
@@ -968,7 +979,7 @@
968
  this.listenTo( this.model, 'change:required', this.onRequiredCheckboxChange );
969
  this.listenTo( this.model, 'change:placeholder', this.onPlaceholderChange );
970
  this.listenTo( this.model, 'change:description', this.onDescriptionChange );
971
- this.listenTo( this.model, 'change:description_mode', this.onDescriptionModeChange );
972
  this.listenTo( this.model, 'change:label_placement', this.onLabelPlacementChange );
973
  this.listenTo( this.model, 'change:css_class', this.onCSSClassChange );
974
  this.listenTo( this.model, 'change:focus_reveal_description', this.onFocusRevealDescriptionChange );
@@ -1203,7 +1214,7 @@
1203
  onDescriptionChange: function( model, value ) {
1204
  var data = {
1205
  id: this.model.id,
1206
- callback: 'onDescriptionChangeCallback',
1207
  };
1208
 
1209
  if ( value ) {
@@ -1213,7 +1224,15 @@
1213
  this.hideDescriptionOptions();
1214
  }
1215
 
1216
- happyForms.previewSend( 'happyforms-part-dom-update', data );
 
 
 
 
 
 
 
 
1217
  },
1218
 
1219
  /**
@@ -1643,6 +1662,8 @@
1643
  'change [data-target="form_class"] input[type="checkbox"]': 'onFormClassCheckboxChange',
1644
  'change [data-target="css_var"] input[type=radio]': 'onRadioChange',
1645
  'keyup [data-target="attribute"] input[type=text]': 'onAttributeChange',
 
 
1646
  'navigate-to-group': 'navigateToGroup',
1647
  } ),
1648
 
@@ -1724,6 +1745,41 @@
1724
  happyForms.previewSend( 'happyforms-form-class-update', data );
1725
  },
1726
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1727
  onFormClassCheckboxChange: function( e ) {
1728
  e.preventDefault();
1729
 
188
 
189
  Backbone.history.start();
190
  api.previewer.previewUrl( this.form.getPreviewUrl() );
191
+
192
+ this.initilizeGlobalControls();
193
+ },
194
+
195
+ initilizeGlobalControls: function() {
196
+ if( this.form.attributes.ID == 0 ) {
197
+ this.form.attributes.part_title_label_placement = 'above';
198
+ }
199
  },
200
 
201
  flushBuffer: function() {
659
 
660
  this.drawer.close();
661
 
662
+ partModel.set( 'description_mode', happyForms.form.get( 'part_description_mode' ) );
663
+ partModel.set( 'label_placement', happyForms.form.get( 'part_title_label_placement' ) );
664
+
665
  this.model.get( 'parts' ).add( partModel, options );
666
  this.model.trigger( 'change', this.model );
667
 
979
  this.listenTo( this.model, 'change:required', this.onRequiredCheckboxChange );
980
  this.listenTo( this.model, 'change:placeholder', this.onPlaceholderChange );
981
  this.listenTo( this.model, 'change:description', this.onDescriptionChange );
982
+ //this.listenTo( this.model, 'change:description_mode', this.onDescriptionModeChange );
983
  this.listenTo( this.model, 'change:label_placement', this.onLabelPlacementChange );
984
  this.listenTo( this.model, 'change:css_class', this.onCSSClassChange );
985
  this.listenTo( this.model, 'change:focus_reveal_description', this.onFocusRevealDescriptionChange );
1214
  onDescriptionChange: function( model, value ) {
1215
  var data = {
1216
  id: this.model.id,
1217
+ // callback: 'onDescriptionChangeCallback',
1218
  };
1219
 
1220
  if ( value ) {
1224
  this.hideDescriptionOptions();
1225
  }
1226
 
1227
+ model.set( 'description_mode', happyForms.form.get( 'part_description_mode' ) );
1228
+ model.fetchHtml( function( response ) {
1229
+ var data = {
1230
+ id: model.get( 'id' ),
1231
+ html: response,
1232
+ };
1233
+
1234
+ happyForms.previewSend( 'happyforms-form-part-refresh', data );
1235
+ } );
1236
  },
1237
 
1238
  /**
1662
  'change [data-target="form_class"] input[type="checkbox"]': 'onFormClassCheckboxChange',
1663
  'change [data-target="css_var"] input[type=radio]': 'onRadioChange',
1664
  'keyup [data-target="attribute"] input[type=text]': 'onAttributeChange',
1665
+ 'change [data-attribute="part_description_mode"]': 'onChangeGlobalControls',
1666
+ 'change [data-attribute="part_title_label_placement"]': 'onChangeGlobalControls',
1667
  'navigate-to-group': 'navigateToGroup',
1668
  } ),
1669
 
1745
  happyForms.previewSend( 'happyforms-form-class-update', data );
1746
  },
1747
 
1748
+ onChangeGlobalControls: function ( e ) {
1749
+ e.preventDefault();
1750
+
1751
+ var $target = $( e.target );
1752
+ var attribute = $target.data( 'attribute' );
1753
+ var value = $target.val();
1754
+
1755
+ happyForms.form.set( attribute, value );
1756
+
1757
+ var partAttribute = '';
1758
+
1759
+ switch ( attribute ) {
1760
+ case 'part_description_mode':
1761
+ partAttribute = 'description_mode';
1762
+ break;
1763
+ case 'part_title_label_placement':
1764
+ partAttribute = 'label_placement';
1765
+ break;
1766
+ default:
1767
+ break;
1768
+ }
1769
+
1770
+ happyForms.form.get( 'parts' ).forEach( function ( $partModel ) {
1771
+ $partModel.set( partAttribute, value );
1772
+ $partModel.fetchHtml( function( response ) {
1773
+ var data = {
1774
+ id: $partModel.get( 'id' ),
1775
+ html: response,
1776
+ };
1777
+
1778
+ happyForms.previewSend( 'happyforms-form-part-refresh', data );
1779
+ } );
1780
+ });
1781
+ },
1782
+
1783
  onFormClassCheckboxChange: function( e ) {
1784
  e.preventDefault();
1785
 
languages/happyforms.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the HappyForms package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: HappyForms 1.9.22\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
- "POT-Creation-Date: 2020-10-06 15:07:48+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,27 +21,27 @@ msgstr ""
21
  msgid "Contact form to manage and respond to conversations with customers."
22
  msgstr ""
23
 
24
- #: core/classes/class-block.php:101
25
  msgid "Do you want access to HappyForms’ most powerful features?"
26
  msgstr ""
27
 
28
- #: core/classes/class-block.php:102
29
  msgid "Discover HappyForms Upgrade"
30
  msgstr ""
31
 
32
- #: core/classes/class-block.php:107 core/classes/parts/class-part-select.php:51
33
  msgid "Choose"
34
  msgstr ""
35
 
36
- #: core/classes/class-block.php:108
37
  msgid "Which form would you like to add here?"
38
  msgstr ""
39
 
40
- #: core/classes/class-block.php:109
41
  msgid "HappyForms Settings"
42
  msgstr ""
43
 
44
- #: core/classes/class-block.php:110
45
  msgid "Edit Form"
46
  msgstr ""
47
 
@@ -429,399 +429,436 @@ msgstr ""
429
  msgid "Form HTML ID"
430
  msgstr ""
431
 
432
- #: core/classes/class-form-styles.php:49
433
  msgid "Left-to-right"
434
  msgstr ""
435
 
436
- #: core/classes/class-form-styles.php:50
437
  msgid "Right-to-left"
438
  msgstr ""
439
 
440
- #: core/classes/class-form-styles.php:71 core/classes/class-form-styles.php:145
441
- #: core/classes/class-form-styles.php:155
442
- #: core/classes/class-form-styles.php:258
443
- #: core/classes/class-form-styles.php:268
444
  msgid "Default"
445
  msgstr ""
446
 
447
- #: core/classes/class-form-styles.php:72 core/classes/class-form-styles.php:144
448
- #: core/classes/class-form-styles.php:154
449
- #: core/classes/class-form-styles.php:267
450
  msgid "Narrow"
451
  msgstr ""
452
 
453
- #: core/classes/class-form-styles.php:73 core/classes/class-form-styles.php:146
454
- #: core/classes/class-form-styles.php:156
455
- #: core/classes/class-form-styles.php:269
456
  msgid "Wide"
457
  msgstr ""
458
 
459
- #: core/classes/class-form-styles.php:87 core/classes/class-form-styles.php:116
460
- #: core/classes/class-form-styles.php:239
461
  msgid "Show"
462
  msgstr ""
463
 
464
- #: core/classes/class-form-styles.php:88 core/classes/class-form-styles.php:117
465
- #: core/classes/class-form-styles.php:240
466
  msgid "Hide"
467
  msgstr ""
468
 
469
- #: core/classes/class-form-styles.php:96 core/classes/class-form-styles.php:170
470
- #: core/classes/class-form-styles.php:199
471
- #: core/classes/class-form-styles.php:219
472
- #: core/classes/class-form-styles.php:296
473
- #: core/templates/parts/customize-checkbox.php:12
474
- #: core/templates/parts/customize-email.php:12
475
- #: core/templates/parts/customize-multi-line-text.php:12
476
- #: core/templates/parts/customize-number.php:12
477
- #: core/templates/parts/customize-radio.php:12
478
- #: core/templates/parts/customize-select.php:12
479
- #: core/templates/parts/customize-single-line-text.php:12
480
  msgid "Left"
481
  msgstr ""
482
 
483
- #: core/classes/class-form-styles.php:97 core/classes/class-form-styles.php:171
484
- #: core/classes/class-form-styles.php:200
485
- #: core/classes/class-form-styles.php:220
486
- #: core/classes/class-form-styles.php:297
 
487
  msgid "Center"
488
  msgstr ""
489
 
490
- #: core/classes/class-form-styles.php:98 core/classes/class-form-styles.php:172
491
- #: core/classes/class-form-styles.php:201
492
- #: core/classes/class-form-styles.php:221
493
- #: core/classes/class-form-styles.php:298
 
494
  msgid "Right"
495
  msgstr ""
496
 
497
- #: core/classes/class-form-styles.php:125
498
  msgid "All sides"
499
  msgstr ""
500
 
501
- #: core/classes/class-form-styles.php:126
502
  msgid "Bottom only"
503
  msgstr ""
504
 
505
- #: core/classes/class-form-styles.php:134
506
- #: core/classes/class-form-styles.php:248
507
  msgid "Square"
508
  msgstr ""
509
 
510
- #: core/classes/class-form-styles.php:135
511
- #: core/classes/class-form-styles.php:249
512
  msgid "Round"
513
  msgstr ""
514
 
515
- #: core/classes/class-form-styles.php:136
516
- #: core/classes/class-form-styles.php:250
517
  msgid "Pill"
518
  msgstr ""
519
 
520
- #: core/classes/class-form-styles.php:190
521
- #: core/classes/class-form-styles.php:287
522
  msgid "Normal"
523
  msgstr ""
524
 
525
- #: core/classes/class-form-styles.php:191
526
- #: core/classes/class-form-styles.php:288
527
  msgid "Bold"
528
  msgstr ""
529
 
530
- #: core/classes/class-form-styles.php:259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
  msgid "Full width"
532
  msgstr ""
533
 
534
- #: core/classes/class-form-styles.php:510
535
  msgid "Above form"
536
  msgstr ""
537
 
538
- #: core/classes/class-form-styles.php:511
539
  msgid "Below form"
540
  msgstr ""
541
 
542
- #: core/classes/class-form-styles.php:531
543
  msgid "General"
544
  msgstr ""
545
 
546
- #: core/classes/class-form-styles.php:536
547
- #: core/classes/class-form-styles.php:851 core/helpers/helper-misc.php:929
548
- #: core/templates/parts/customize-checkbox.php:85
549
  msgid "Width"
550
  msgstr ""
551
 
552
- #: core/classes/class-form-styles.php:541
553
- #: core/classes/class-form-styles.php:856
554
  msgid "Padding"
555
  msgstr ""
556
 
557
- #: core/classes/class-form-styles.php:546
558
  msgid "Direction"
559
  msgstr ""
560
 
561
- #: core/classes/class-form-styles.php:551
562
  msgid "Message location"
563
  msgstr ""
564
 
565
- #: core/classes/class-form-styles.php:557
566
- #: core/classes/class-form-styles.php:642
567
- #: core/classes/class-form-styles.php:712
568
- #: core/classes/class-form-styles.php:882
569
  msgid "Colors"
570
  msgstr ""
571
 
572
- #: core/classes/class-form-styles.php:561
573
  msgid "Primary"
574
  msgstr ""
575
 
576
- #: core/classes/class-form-styles.php:566
577
  msgid "Success message background"
578
  msgstr ""
579
 
580
- #: core/classes/class-form-styles.php:571
581
  msgid "Success message text"
582
  msgstr ""
583
 
584
- #: core/classes/class-form-styles.php:576
585
  msgid "Validation message text"
586
  msgstr ""
587
 
588
- #: core/classes/class-form-styles.php:581
589
  msgid "Error message background"
590
  msgstr ""
591
 
592
- #: core/classes/class-form-styles.php:586
593
  msgid "Error message text"
594
  msgstr ""
595
 
596
- #: core/classes/class-form-styles.php:591
597
- #: core/classes/class-form-styles.php:716
598
  #: core/templates/customize-form-build.php:4
599
  #: inc/classes/parts/class-part-layout-title-dummy.php:8
600
  #: inc/classes/parts/class-part-title-dummy.php:8
601
  msgid "Title"
602
  msgstr ""
603
 
604
- #: core/classes/class-form-styles.php:596
605
  msgid "Display"
606
  msgstr ""
607
 
608
- #: core/classes/class-form-styles.php:601
609
- #: core/classes/class-form-styles.php:871
610
  msgid "Alignment"
611
  msgstr ""
612
 
613
- #: core/classes/class-form-styles.php:606
614
- #: core/classes/class-form-styles.php:861
615
  msgid "Font size"
616
  msgstr ""
617
 
618
- #: core/classes/class-form-styles.php:611
619
  msgid "Field borders & spacing"
620
  msgstr ""
621
 
622
- #: core/classes/class-form-styles.php:616
623
- #: core/classes/class-form-styles.php:646
624
- #: core/classes/class-form-styles.php:841
625
- #: core/classes/class-form-styles.php:896
626
  msgid "Border"
627
  msgstr ""
628
 
629
- #: core/classes/class-form-styles.php:621
630
  msgid "Border location"
631
  msgstr ""
632
 
633
- #: core/classes/class-form-styles.php:626
634
- #: core/classes/class-form-styles.php:846
635
  msgid "Border radius"
636
  msgstr ""
637
 
638
- #: core/classes/class-form-styles.php:631
639
  msgid "Outer spacing"
640
  msgstr ""
641
 
642
- #: core/classes/class-form-styles.php:636
643
  msgid "Inner spacing"
644
  msgstr ""
645
 
646
- #: core/classes/class-form-styles.php:651
647
  msgid "Border on focus"
648
  msgstr ""
649
 
650
- #: core/classes/class-form-styles.php:656
651
- #: core/classes/class-form-styles.php:746
652
- #: core/classes/class-form-styles.php:771
653
- #: core/classes/class-form-styles.php:886
654
  msgid "Background"
655
  msgstr ""
656
 
657
- #: core/classes/class-form-styles.php:661
658
- #: core/classes/class-form-styles.php:756
659
- #: core/classes/class-form-styles.php:776
660
- #: core/classes/class-form-styles.php:891
661
  msgid "Background on focus"
662
  msgstr ""
663
 
664
- #: core/classes/class-form-styles.php:666
665
  msgid "Field labels & text"
666
  msgstr ""
667
 
668
- #: core/classes/class-form-styles.php:671
669
  msgid "Toggle placeholder on field focus"
670
  msgstr ""
671
 
672
- #: core/classes/class-form-styles.php:676
673
- msgid "Title alignment"
674
  msgstr ""
675
 
676
- #: core/classes/class-form-styles.php:681
677
- msgid "Title font size"
678
  msgstr ""
679
 
680
- #: core/classes/class-form-styles.php:686
681
- msgid "Title font weight"
 
 
 
 
682
  msgstr ""
683
 
684
- #: core/classes/class-form-styles.php:691
685
  msgid "Description alignment"
686
  msgstr ""
687
 
688
- #: core/classes/class-form-styles.php:696
689
  msgid "Description font size"
690
  msgstr ""
691
 
692
- #: core/classes/class-form-styles.php:701
 
 
 
 
693
  msgid "Placeholder &amp; value alignment"
694
  msgstr ""
695
 
696
- #: core/classes/class-form-styles.php:706
697
  msgid "Value font size"
698
  msgstr ""
699
 
700
- #: core/classes/class-form-styles.php:721
 
 
 
 
 
 
 
 
 
 
 
 
 
 
701
  msgid "Value"
702
  msgstr ""
703
 
704
- #: core/classes/class-form-styles.php:726
705
- #: core/templates/parts/customize-email.php:18
706
- #: core/templates/parts/customize-multi-line-text.php:18
707
- #: core/templates/parts/customize-number.php:18
708
- #: core/templates/parts/customize-select.php:17
709
- #: core/templates/parts/customize-single-line-text.php:18
710
  #: inc/classes/parts/class-part-placeholder-dummy.php:8
711
  msgid "Placeholder"
712
  msgstr ""
713
 
714
- #: core/classes/class-form-styles.php:731
715
- #: core/templates/parts/customize-checkbox.php:17
716
- #: core/templates/parts/customize-email.php:22
717
- #: core/templates/parts/customize-multi-line-text.php:22
718
- #: core/templates/parts/customize-number.php:22
719
- #: core/templates/parts/customize-radio.php:17
720
- #: core/templates/parts/customize-select.php:21
721
- #: core/templates/parts/customize-single-line-text.php:22
722
  msgid "Description"
723
  msgstr ""
724
 
725
- #: core/classes/class-form-styles.php:736
726
  msgid "Dropdowns"
727
  msgstr ""
728
 
729
- #: core/classes/class-form-styles.php:742
730
  msgid "Items"
731
  msgstr ""
732
 
733
- #: core/classes/class-form-styles.php:751
734
- #: core/classes/class-form-styles.php:901
735
  msgid "Text"
736
  msgstr ""
737
 
738
- #: core/classes/class-form-styles.php:761
739
  msgid "Text focused"
740
  msgstr ""
741
 
742
- #: core/classes/class-form-styles.php:766
743
  msgid "Checkboxes & Radios"
744
  msgstr ""
745
 
746
- #: core/classes/class-form-styles.php:781
747
  msgid "Checkmark"
748
  msgstr ""
749
 
750
- #: core/classes/class-form-styles.php:786
751
  msgid "Rating"
752
  msgstr ""
753
 
754
- #: core/classes/class-form-styles.php:791
755
  msgid "Rating star color"
756
  msgstr ""
757
 
758
- #: core/classes/class-form-styles.php:796
759
  msgid "Rating star color on hover"
760
  msgstr ""
761
 
762
- #: core/classes/class-form-styles.php:801
763
  msgid "Tables"
764
  msgstr ""
765
 
766
- #: core/classes/class-form-styles.php:806
767
  msgid "Odd row primary"
768
  msgstr ""
769
 
770
- #: core/classes/class-form-styles.php:811
771
  msgid "Odd row secondary"
772
  msgstr ""
773
 
774
- #: core/classes/class-form-styles.php:816
775
  msgid "Even row primary"
776
  msgstr ""
777
 
778
- #: core/classes/class-form-styles.php:821
779
  msgid "Even row secondary"
780
  msgstr ""
781
 
782
- #: core/classes/class-form-styles.php:826
783
  msgid "Dividers"
784
  msgstr ""
785
 
786
- #: core/classes/class-form-styles.php:831
787
  msgid "Color"
788
  msgstr ""
789
 
790
- #: core/classes/class-form-styles.php:836
791
  msgid "Submit button"
792
  msgstr ""
793
 
794
- #: core/classes/class-form-styles.php:866
795
  msgid "Font weight"
796
  msgstr ""
797
 
798
- #: core/classes/class-form-styles.php:876
799
  msgid "Make button a field of last input"
800
  msgstr ""
801
 
802
- #: core/classes/class-form-styles.php:906
803
  msgid "Text on focus"
804
  msgstr ""
805
 
806
- #: core/classes/class-form-styles.php:918
807
  msgid "Add your own CSS code here to customize the appearance of your form."
808
  msgstr ""
809
 
810
- #: core/classes/class-form-styles.php:920
811
  msgid ""
812
  "For each rule you add, we'll prepend your form's HTML ID. This makes sure "
813
  "all styles added will only apply to this form. For example %s becomes %s."
814
  msgstr ""
815
 
816
- #: core/classes/class-form-styles.php:928
817
  msgid ""
818
  "The edit field automatically highlights code syntax. You can disable this "
819
  "in your <a href=\"%s\" class=\"%s\" target=\"_blank\">user profile</a> to "
820
  "work in plain text mode."
821
  msgstr ""
822
 
823
- #: core/classes/class-form-styles.php:936
824
- #: core/classes/class-form-styles.php:946
825
  msgid "Additional CSS"
826
  msgstr ""
827
 
@@ -849,34 +886,34 @@ msgstr ""
849
  msgid "Welcome"
850
  msgstr ""
851
 
852
- #: core/classes/class-happyforms-core.php:455
853
  msgid "Insert HappyForm"
854
  msgstr ""
855
 
856
- #: core/classes/class-happyforms-core.php:455
857
  msgid "Add HappyForms"
858
  msgstr ""
859
 
860
- #: core/classes/class-happyforms-core.php:690
861
  msgid "Overview"
862
  msgstr ""
863
 
864
- #: core/classes/class-happyforms-core.php:700
865
  msgid "Hey 👋 Welcome to your HappyForms Dashboard!"
866
  msgstr ""
867
 
868
- #: core/classes/class-happyforms-core.php:703
869
  msgid ""
870
  "Are you looking for help? Well, we’ve swept the nacho crumbs from our "
871
  "keyboards, refilled our ginger beers and are ready to reply with answers! "
872
  "So, go on, email %s."
873
  msgstr ""
874
 
875
- #: core/classes/class-happyforms-core.php:712
876
  msgid "For more help"
877
  msgstr ""
878
 
879
- #: core/classes/class-happyforms-core.php:714
880
  msgid "Help guide"
881
  msgstr ""
882
 
@@ -939,7 +976,7 @@ msgid "Please select more choices"
939
  msgstr ""
940
 
941
  #: core/classes/class-validation-messages.php:68
942
- msgid "Please select less choices"
943
  msgstr ""
944
 
945
  #: core/classes/class-validation-messages.php:69
@@ -1050,12 +1087,12 @@ msgid "For paragraph text fields."
1050
  msgstr ""
1051
 
1052
  #: core/classes/parts/class-part-multi-line-text.php:69
1053
- #: core/templates/parts/customize-multi-line-text.php:64
1054
  msgid "Min characters"
1055
  msgstr ""
1056
 
1057
  #: core/classes/parts/class-part-multi-line-text.php:73
1058
- #: core/templates/parts/customize-multi-line-text.php:61
1059
  msgid "Max words"
1060
  msgstr ""
1061
 
@@ -1135,927 +1172,1028 @@ msgstr ""
1135
  msgid "Spam protection, skip this field"
1136
  msgstr ""
1137
 
1138
- #: core/helpers/helper-form-templates.php:1030
1139
  msgid "January"
1140
  msgstr ""
1141
 
1142
- #: core/helpers/helper-form-templates.php:1031
1143
  msgid "February"
1144
  msgstr ""
1145
 
1146
- #: core/helpers/helper-form-templates.php:1032
1147
  msgid "March"
1148
  msgstr ""
1149
 
1150
- #: core/helpers/helper-form-templates.php:1033
1151
  msgid "April"
1152
  msgstr ""
1153
 
1154
- #: core/helpers/helper-form-templates.php:1034
1155
  msgid "May"
1156
  msgstr ""
1157
 
1158
- #: core/helpers/helper-form-templates.php:1035
1159
  msgid "June"
1160
  msgstr ""
1161
 
1162
- #: core/helpers/helper-form-templates.php:1036
1163
  msgid "July"
1164
  msgstr ""
1165
 
1166
- #: core/helpers/helper-form-templates.php:1037
1167
  msgid "August"
1168
  msgstr ""
1169
 
1170
- #: core/helpers/helper-form-templates.php:1038
1171
  msgid "September"
1172
  msgstr ""
1173
 
1174
- #: core/helpers/helper-form-templates.php:1039
1175
  msgid "October"
1176
  msgstr ""
1177
 
1178
- #: core/helpers/helper-form-templates.php:1040
1179
  msgid "November"
1180
  msgstr ""
1181
 
1182
- #: core/helpers/helper-form-templates.php:1041
1183
  msgid "December"
1184
  msgstr ""
1185
 
1186
- #: core/helpers/helper-form-templates.php:1082 core/helpers/helper-misc.php:228
 
 
 
 
1187
  msgid "Andorra"
1188
  msgstr ""
1189
 
1190
- #: core/helpers/helper-form-templates.php:1083 core/helpers/helper-misc.php:446
1191
  msgid "United Arab Emirates"
1192
  msgstr ""
1193
 
1194
- #: core/helpers/helper-form-templates.php:1084 core/helpers/helper-misc.php:224
1195
  msgid "Afghanistan"
1196
  msgstr ""
1197
 
1198
- #: core/helpers/helper-form-templates.php:1085 core/helpers/helper-misc.php:232
1199
  msgid "Antigua and Barbuda"
1200
  msgstr ""
1201
 
1202
- #: core/helpers/helper-form-templates.php:1086 core/helpers/helper-misc.php:230
1203
  msgid "Anguilla"
1204
  msgstr ""
1205
 
1206
- #: core/helpers/helper-form-templates.php:1087 core/helpers/helper-misc.php:225
1207
  msgid "Albania"
1208
  msgstr ""
1209
 
1210
- #: core/helpers/helper-form-templates.php:1088 core/helpers/helper-misc.php:234
1211
  msgid "Armenia"
1212
  msgstr ""
1213
 
1214
- #: core/helpers/helper-form-templates.php:1089 core/helpers/helper-misc.php:229
1215
  msgid "Angola"
1216
  msgstr ""
1217
 
1218
- #: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:231
1219
- msgid "Antarctica"
1220
- msgstr ""
1221
-
1222
- #: core/helpers/helper-form-templates.php:1091 core/helpers/helper-misc.php:233
1223
  msgid "Argentina"
1224
  msgstr ""
1225
 
1226
- #: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:227
1227
  msgid "American Samoa"
1228
  msgstr ""
1229
 
1230
- #: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:237
1231
  msgid "Austria"
1232
  msgstr ""
1233
 
1234
- #: core/helpers/helper-form-templates.php:1094 core/helpers/helper-misc.php:236
1235
  msgid "Australia"
1236
  msgstr ""
1237
 
1238
- #: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:235
1239
  msgid "Aruba"
1240
  msgstr ""
1241
 
1242
- #: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:238
 
 
 
 
1243
  msgid "Azerbaijan"
1244
  msgstr ""
1245
 
1246
- #: core/helpers/helper-form-templates.php:1097
1247
  msgid "Bosnia and Herzegovina"
1248
  msgstr ""
1249
 
1250
- #: core/helpers/helper-form-templates.php:1098 core/helpers/helper-misc.php:242
1251
  msgid "Barbados"
1252
  msgstr ""
1253
 
1254
- #: core/helpers/helper-form-templates.php:1099 core/helpers/helper-misc.php:241
1255
  msgid "Bangladesh"
1256
  msgstr ""
1257
 
1258
- #: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:244
1259
  msgid "Belgium"
1260
  msgstr ""
1261
 
1262
- #: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:257
1263
  msgid "Burkina Faso"
1264
  msgstr ""
1265
 
1266
- #: core/helpers/helper-form-templates.php:1102 core/helpers/helper-misc.php:256
1267
  msgid "Bulgaria"
1268
  msgstr ""
1269
 
1270
- #: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:240
1271
  msgid "Bahrain"
1272
  msgstr ""
1273
 
1274
- #: core/helpers/helper-form-templates.php:1104 core/helpers/helper-misc.php:258
1275
  msgid "Burundi"
1276
  msgstr ""
1277
 
1278
- #: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:246
1279
  msgid "Benin"
1280
  msgstr ""
1281
 
1282
- #: core/helpers/helper-form-templates.php:1106
1283
- msgid "Saint Barthelemy"
1284
  msgstr ""
1285
 
1286
- #: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:247
1287
  msgid "Bermuda"
1288
  msgstr ""
1289
 
1290
- #: core/helpers/helper-form-templates.php:1108 core/helpers/helper-misc.php:255
1291
  msgid "Brunei Darussalam"
1292
  msgstr ""
1293
 
1294
- #: core/helpers/helper-form-templates.php:1109 core/helpers/helper-misc.php:249
1295
  msgid "Bolivia"
1296
  msgstr ""
1297
 
1298
- #: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:253
 
 
 
 
1299
  msgid "Brazil"
1300
  msgstr ""
1301
 
1302
- #: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:239
1303
  msgid "Bahamas"
1304
  msgstr ""
1305
 
1306
- #: core/helpers/helper-form-templates.php:1112 core/helpers/helper-misc.php:248
1307
  msgid "Bhutan"
1308
  msgstr ""
1309
 
1310
- #: core/helpers/helper-form-templates.php:1113 core/helpers/helper-misc.php:251
1311
  msgid "Botswana"
1312
  msgstr ""
1313
 
1314
- #: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:243
1315
  msgid "Belarus"
1316
  msgstr ""
1317
 
1318
- #: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:245
1319
  msgid "Belize"
1320
  msgstr ""
1321
 
1322
- #: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:261
1323
  msgid "Canada"
1324
  msgstr ""
1325
 
1326
- #: core/helpers/helper-form-templates.php:1117
1327
- msgid "Congo, The Democratic Republic of the"
1328
  msgstr ""
1329
 
1330
- #: core/helpers/helper-form-templates.php:1118 core/helpers/helper-misc.php:264
 
 
 
 
1331
  msgid "Central African Republic"
1332
  msgstr ""
1333
 
1334
- #: core/helpers/helper-form-templates.php:1119 core/helpers/helper-misc.php:272
1335
  msgid "Congo"
1336
  msgstr ""
1337
 
1338
- #: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:429
1339
  msgid "Switzerland"
1340
  msgstr ""
1341
 
1342
- #: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:274
 
 
 
 
1343
  msgid "Cook Islands"
1344
  msgstr ""
1345
 
1346
- #: core/helpers/helper-form-templates.php:1122 core/helpers/helper-misc.php:266
1347
  msgid "Chile"
1348
  msgstr ""
1349
 
1350
- #: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:260
1351
  msgid "Cameroon"
1352
  msgstr ""
1353
 
1354
- #: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:267
1355
  msgid "China"
1356
  msgstr ""
1357
 
1358
- #: core/helpers/helper-form-templates.php:1125 core/helpers/helper-misc.php:270
1359
  msgid "Colombia"
1360
  msgstr ""
1361
 
1362
- #: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:275
1363
  msgid "Costa Rica"
1364
  msgstr ""
1365
 
1366
- #: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:278
1367
  msgid "Cuba"
1368
  msgstr ""
1369
 
1370
- #: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:262
1371
  msgid "Cape Verde"
1372
  msgstr ""
1373
 
1374
- #: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:279
 
 
 
 
 
 
 
 
1375
  msgid "Cyprus"
1376
  msgstr ""
1377
 
1378
- #: core/helpers/helper-form-templates.php:1130 core/helpers/helper-misc.php:280
1379
  msgid "Czech Republic"
1380
  msgstr ""
1381
 
1382
- #: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:305
1383
  msgid "Germany"
1384
  msgstr ""
1385
 
1386
- #: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:282
1387
  msgid "Djibouti"
1388
  msgstr ""
1389
 
1390
- #: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:281
1391
  msgid "Denmark"
1392
  msgstr ""
1393
 
1394
- #: core/helpers/helper-form-templates.php:1134 core/helpers/helper-misc.php:283
1395
  msgid "Dominica"
1396
  msgstr ""
1397
 
1398
- #: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:284
1399
  msgid "Dominican Republic"
1400
  msgstr ""
1401
 
1402
- #: core/helpers/helper-form-templates.php:1136 core/helpers/helper-misc.php:226
1403
  msgid "Algeria"
1404
  msgstr ""
1405
 
1406
- #: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:286
1407
  msgid "Ecuador"
1408
  msgstr ""
1409
 
1410
- #: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:291
1411
  msgid "Estonia"
1412
  msgstr ""
1413
 
1414
- #: core/helpers/helper-form-templates.php:1139 core/helpers/helper-misc.php:287
1415
  msgid "Egypt"
1416
  msgstr ""
1417
 
1418
- #: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:290
 
 
 
 
1419
  msgid "Eritrea"
1420
  msgstr ""
1421
 
1422
- #: core/helpers/helper-form-templates.php:1141 core/helpers/helper-misc.php:420
1423
  msgid "Spain"
1424
  msgstr ""
1425
 
1426
- #: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:292
1427
  msgid "Ethiopia"
1428
  msgstr ""
1429
 
1430
- #: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:296
1431
  msgid "Finland"
1432
  msgstr ""
1433
 
1434
- #: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:295
1435
  msgid "Fiji"
1436
  msgstr ""
1437
 
1438
- #: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:293
1439
  msgid "Falkland Islands (Malvinas)"
1440
  msgstr ""
1441
 
1442
- #: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:364
1443
  msgid "Micronesia, Federated States of"
1444
  msgstr ""
1445
 
1446
- #: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:294
1447
  msgid "Faroe Islands"
1448
  msgstr ""
1449
 
1450
- #: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:297
1451
  msgid "France"
1452
  msgstr ""
1453
 
1454
- #: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:302
1455
  msgid "Gabon"
1456
  msgstr ""
1457
 
1458
- #: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:310
 
 
 
 
1459
  msgid "Grenada"
1460
  msgstr ""
1461
 
1462
- #: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:304
1463
  msgid "Georgia"
1464
  msgstr ""
1465
 
1466
- #: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:306
 
 
 
 
 
 
 
 
1467
  msgid "Ghana"
1468
  msgstr ""
1469
 
1470
- #: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:307
1471
  msgid "Gibraltar"
1472
  msgstr ""
1473
 
1474
- #: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:309
1475
  msgid "Greenland"
1476
  msgstr ""
1477
 
1478
- #: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:303
1479
  msgid "Gambia"
1480
  msgstr ""
1481
 
1482
- #: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:314
1483
  msgid "Guinea"
1484
  msgstr ""
1485
 
1486
- #: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:308
 
 
 
 
 
 
 
 
1487
  msgid "Greece"
1488
  msgstr ""
1489
 
1490
- #: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:313
1491
  msgid "Guatemala"
1492
  msgstr ""
1493
 
1494
- #: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:312
1495
  msgid "Guam"
1496
  msgstr ""
1497
 
1498
- #: core/helpers/helper-form-templates.php:1160
1499
- msgid "Guinea-bissau"
1500
  msgstr ""
1501
 
1502
- #: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:316
1503
  msgid "Guyana"
1504
  msgstr ""
1505
 
1506
- #: core/helpers/helper-form-templates.php:1162 core/helpers/helper-misc.php:321
1507
  msgid "Hong Kong"
1508
  msgstr ""
1509
 
1510
- #: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:320
1511
  msgid "Honduras"
1512
  msgstr ""
1513
 
1514
- #: core/helpers/helper-form-templates.php:1164
1515
  msgid "Croatia"
1516
  msgstr ""
1517
 
1518
- #: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:317
1519
  msgid "Haiti"
1520
  msgstr ""
1521
 
1522
- #: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:322
1523
  msgid "Hungary"
1524
  msgstr ""
1525
 
1526
- #: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:325
1527
  msgid "Indonesia"
1528
  msgstr ""
1529
 
1530
- #: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:328
1531
  msgid "Ireland"
1532
  msgstr ""
1533
 
1534
- #: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:329
1535
  msgid "Israel"
1536
  msgstr ""
1537
 
1538
- #: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:324
 
 
 
 
1539
  msgid "India"
1540
  msgstr ""
1541
 
1542
- #: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:327
 
 
 
 
1543
  msgid "Iraq"
1544
  msgstr ""
1545
 
1546
- #: core/helpers/helper-form-templates.php:1172
1547
  msgid "Iran, Islamic Republic of"
1548
  msgstr ""
1549
 
1550
- #: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:323
1551
  msgid "Iceland"
1552
  msgstr ""
1553
 
1554
- #: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:330
1555
  msgid "Italy"
1556
  msgstr ""
1557
 
1558
- #: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:331
 
 
 
 
1559
  msgid "Jamaica"
1560
  msgstr ""
1561
 
1562
- #: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:333
1563
  msgid "Jordan"
1564
  msgstr ""
1565
 
1566
- #: core/helpers/helper-form-templates.php:1177 core/helpers/helper-misc.php:332
1567
  msgid "Japan"
1568
  msgstr ""
1569
 
1570
- #: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:335
1571
  msgid "Kenya"
1572
  msgstr ""
1573
 
1574
- #: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:340
1575
  msgid "Kyrgyzstan"
1576
  msgstr ""
1577
 
1578
- #: core/helpers/helper-form-templates.php:1180 core/helpers/helper-misc.php:259
1579
  msgid "Cambodia"
1580
  msgstr ""
1581
 
1582
- #: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:336
1583
  msgid "Kiribati"
1584
  msgstr ""
1585
 
1586
- #: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:271
1587
  msgid "Comoros"
1588
  msgstr ""
1589
 
1590
- #: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:403
1591
  msgid "Saint Kitts and Nevis"
1592
  msgstr ""
1593
 
1594
- #: core/helpers/helper-form-templates.php:1184
1595
- msgid "Korea Democratic Peoples Republic of"
1596
  msgstr ""
1597
 
1598
- #: core/helpers/helper-form-templates.php:1185
1599
- msgid "Korea Republic of"
1600
  msgstr ""
1601
 
1602
- #: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:339
1603
  msgid "Kuwait"
1604
  msgstr ""
1605
 
1606
- #: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:263
1607
  msgid "Cayman Islands"
1608
  msgstr ""
1609
 
1610
- #: core/helpers/helper-form-templates.php:1188
1611
- msgid "Lao Peoples Democratic Republic"
 
 
 
 
1612
  msgstr ""
1613
 
1614
- #: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:343
1615
  msgid "Lebanon"
1616
  msgstr ""
1617
 
1618
- #: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:404
1619
  msgid "Saint Lucia"
1620
  msgstr ""
1621
 
1622
- #: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:347
1623
  msgid "Liechtenstein"
1624
  msgstr ""
1625
 
1626
- #: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:421
1627
  msgid "Sri Lanka"
1628
  msgstr ""
1629
 
1630
- #: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:345
1631
  msgid "Liberia"
1632
  msgstr ""
1633
 
1634
- #: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:344
1635
  msgid "Lesotho"
1636
  msgstr ""
1637
 
1638
- #: core/helpers/helper-form-templates.php:1195 core/helpers/helper-misc.php:348
1639
  msgid "Lithuania"
1640
  msgstr ""
1641
 
1642
- #: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:349
1643
  msgid "Luxembourg"
1644
  msgstr ""
1645
 
1646
- #: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:342
1647
  msgid "Latvia"
1648
  msgstr ""
1649
 
1650
- #: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:346
1651
- msgid "Libyan Arab Jamahiriya"
1652
  msgstr ""
1653
 
1654
- #: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:369
1655
  msgid "Morocco"
1656
  msgstr ""
1657
 
1658
- #: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:366
1659
  msgid "Monaco"
1660
  msgstr ""
1661
 
1662
- #: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:365
1663
  msgid "Moldova, Republic of"
1664
  msgstr ""
1665
 
1666
- #: core/helpers/helper-form-templates.php:1202
1667
  msgid "Montenegro"
1668
  msgstr ""
1669
 
1670
- #: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:352
 
 
 
 
1671
  msgid "Madagascar"
1672
  msgstr ""
1673
 
1674
- #: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:358
1675
  msgid "Marshall Islands"
1676
  msgstr ""
1677
 
1678
- #: core/helpers/helper-form-templates.php:1205 core/helpers/helper-misc.php:351
1679
- msgid "Macedonia, The Former Yugoslav Republic of"
1680
  msgstr ""
1681
 
1682
- #: core/helpers/helper-form-templates.php:1206 core/helpers/helper-misc.php:356
1683
  msgid "Mali"
1684
  msgstr ""
1685
 
1686
- #: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:371
1687
  msgid "Myanmar"
1688
  msgstr ""
1689
 
1690
- #: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:367
1691
  msgid "Mongolia"
1692
  msgstr ""
1693
 
1694
- #: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:350
1695
- msgid "Macau"
1696
  msgstr ""
1697
 
1698
- #: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:384
1699
  msgid "Northern Mariana Islands"
1700
  msgstr ""
1701
 
1702
- #: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:360
 
 
 
 
1703
  msgid "Mauritania"
1704
  msgstr ""
1705
 
1706
- #: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:368
1707
  msgid "Montserrat"
1708
  msgstr ""
1709
 
1710
- #: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:357
1711
  msgid "Malta"
1712
  msgstr ""
1713
 
1714
- #: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:361
1715
  msgid "Mauritius"
1716
  msgstr ""
1717
 
1718
- #: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:355
1719
  msgid "Maldives"
1720
  msgstr ""
1721
 
1722
- #: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:353
1723
  msgid "Malawi"
1724
  msgstr ""
1725
 
1726
- #: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:363
1727
  msgid "Mexico"
1728
  msgstr ""
1729
 
1730
- #: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:354
1731
  msgid "Malaysia"
1732
  msgstr ""
1733
 
1734
- #: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:370
1735
  msgid "Mozambique"
1736
  msgstr ""
1737
 
1738
- #: core/helpers/helper-form-templates.php:1220 core/helpers/helper-misc.php:372
1739
  msgid "Namibia"
1740
  msgstr ""
1741
 
1742
- #: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:377
1743
  msgid "New Caledonia"
1744
  msgstr ""
1745
 
1746
- #: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:380
1747
  msgid "Niger"
1748
  msgstr ""
1749
 
1750
- #: core/helpers/helper-form-templates.php:1223 core/helpers/helper-misc.php:381
 
 
 
 
1751
  msgid "Nigeria"
1752
  msgstr ""
1753
 
1754
- #: core/helpers/helper-form-templates.php:1224 core/helpers/helper-misc.php:379
1755
  msgid "Nicaragua"
1756
  msgstr ""
1757
 
1758
- #: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:375
1759
  msgid "Netherlands"
1760
  msgstr ""
1761
 
1762
- #: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:385
1763
  msgid "Norway"
1764
  msgstr ""
1765
 
1766
- #: core/helpers/helper-form-templates.php:1227 core/helpers/helper-misc.php:374
1767
  msgid "Nepal"
1768
  msgstr ""
1769
 
1770
- #: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:373
1771
  msgid "Nauru"
1772
  msgstr ""
1773
 
1774
- #: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:382
1775
  msgid "Niue"
1776
  msgstr ""
1777
 
1778
- #: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:378
1779
  msgid "New Zealand"
1780
  msgstr ""
1781
 
1782
- #: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:386
1783
  msgid "Oman"
1784
  msgstr ""
1785
 
1786
- #: core/helpers/helper-form-templates.php:1232 core/helpers/helper-misc.php:389
1787
  msgid "Panama"
1788
  msgstr ""
1789
 
1790
- #: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:392
1791
  msgid "Peru"
1792
  msgstr ""
1793
 
1794
- #: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:300
1795
  msgid "French Polynesia"
1796
  msgstr ""
1797
 
1798
- #: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:390
1799
  msgid "Papua New Guinea"
1800
  msgstr ""
1801
 
1802
- #: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:393
1803
  msgid "Philippines"
1804
  msgstr ""
1805
 
1806
- #: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:387
1807
  msgid "Pakistan"
1808
  msgstr ""
1809
 
1810
- #: core/helpers/helper-form-templates.php:1238 core/helpers/helper-misc.php:395
1811
  msgid "Poland"
1812
  msgstr ""
1813
 
1814
- #: core/helpers/helper-form-templates.php:1239
1815
  msgid "Saint Pierre and Miquelon"
1816
  msgstr ""
1817
 
1818
- #: core/helpers/helper-form-templates.php:1240 core/helpers/helper-misc.php:394
1819
- msgid "Pitcairn"
1820
  msgstr ""
1821
 
1822
- #: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:396
 
 
 
 
1823
  msgid "Portugal"
1824
  msgstr ""
1825
 
1826
- #: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:388
1827
  msgid "Palau"
1828
  msgstr ""
1829
 
1830
- #: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:391
1831
  msgid "Paraguay"
1832
  msgstr ""
1833
 
1834
- #: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:398
1835
  msgid "Qatar"
1836
  msgstr ""
1837
 
1838
- #: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:400
 
 
 
 
1839
  msgid "Romania"
1840
  msgstr ""
1841
 
1842
- #: core/helpers/helper-form-templates.php:1246
1843
  msgid "Serbia"
1844
  msgstr ""
1845
 
1846
- #: core/helpers/helper-form-templates.php:1247 core/helpers/helper-misc.php:401
1847
  msgid "Russian Federation"
1848
  msgstr ""
1849
 
1850
- #: core/helpers/helper-form-templates.php:1248 core/helpers/helper-misc.php:402
1851
  msgid "Rwanda"
1852
  msgstr ""
1853
 
1854
- #: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:409
1855
  msgid "Saudi Arabia"
1856
  msgstr ""
1857
 
1858
- #: core/helpers/helper-form-templates.php:1250 core/helpers/helper-misc.php:416
1859
  msgid "Solomon Islands"
1860
  msgstr ""
1861
 
1862
- #: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:411
1863
  msgid "Seychelles"
1864
  msgstr ""
1865
 
1866
- #: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:424
1867
  msgid "Sudan"
1868
  msgstr ""
1869
 
1870
- #: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:428
1871
  msgid "Sweden"
1872
  msgstr ""
1873
 
1874
- #: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:413
1875
  msgid "Singapore"
1876
  msgstr ""
1877
 
1878
- #: core/helpers/helper-form-templates.php:1255
 
1879
  msgid "Saint Helena"
1880
  msgstr ""
1881
 
1882
- #: core/helpers/helper-form-templates.php:1256 core/helpers/helper-misc.php:415
1883
  msgid "Slovenia"
1884
  msgstr ""
1885
 
1886
- #: core/helpers/helper-form-templates.php:1257
 
 
 
 
1887
  msgid "Slovakia"
1888
  msgstr ""
1889
 
1890
- #: core/helpers/helper-form-templates.php:1258 core/helpers/helper-misc.php:412
1891
  msgid "Sierra Leone"
1892
  msgstr ""
1893
 
1894
- #: core/helpers/helper-form-templates.php:1259 core/helpers/helper-misc.php:407
1895
  msgid "San Marino"
1896
  msgstr ""
1897
 
1898
- #: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:410
1899
  msgid "Senegal"
1900
  msgstr ""
1901
 
1902
- #: core/helpers/helper-form-templates.php:1261 core/helpers/helper-misc.php:417
1903
  msgid "Somalia"
1904
  msgstr ""
1905
 
1906
- #: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:425
1907
  msgid "Suriname"
1908
  msgstr ""
1909
 
1910
- #: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:408
 
 
 
 
1911
  msgid "Sao Tome and Principe"
1912
  msgstr ""
1913
 
1914
- #: core/helpers/helper-form-templates.php:1264 core/helpers/helper-misc.php:288
1915
  msgid "El Salvador"
1916
  msgstr ""
1917
 
1918
- #: core/helpers/helper-form-templates.php:1265 core/helpers/helper-misc.php:430
 
 
 
 
1919
  msgid "Syrian Arab Republic"
1920
  msgstr ""
1921
 
1922
- #: core/helpers/helper-form-templates.php:1266 core/helpers/helper-misc.php:427
1923
- msgid "Swaziland"
1924
  msgstr ""
1925
 
1926
- #: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:442
1927
  msgid "Turks and Caicos Islands"
1928
  msgstr ""
1929
 
1930
- #: core/helpers/helper-form-templates.php:1268 core/helpers/helper-misc.php:265
1931
  msgid "Chad"
1932
  msgstr ""
1933
 
1934
- #: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:435
1935
  msgid "Togo"
1936
  msgstr ""
1937
 
1938
- #: core/helpers/helper-form-templates.php:1270 core/helpers/helper-misc.php:434
1939
  msgid "Thailand"
1940
  msgstr ""
1941
 
1942
- #: core/helpers/helper-form-templates.php:1271 core/helpers/helper-misc.php:432
1943
  msgid "Tajikistan"
1944
  msgstr ""
1945
 
1946
- #: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:436
1947
  msgid "Tokelau"
1948
  msgstr ""
1949
 
1950
- #: core/helpers/helper-form-templates.php:1273
1951
- msgid "Timor-leste"
1952
  msgstr ""
1953
 
1954
- #: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:441
1955
  msgid "Turkmenistan"
1956
  msgstr ""
1957
 
1958
- #: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:439
1959
  msgid "Tunisia"
1960
  msgstr ""
1961
 
1962
- #: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:437
1963
  msgid "Tonga"
1964
  msgstr ""
1965
 
1966
- #: core/helpers/helper-form-templates.php:1277 core/helpers/helper-misc.php:440
1967
  msgid "Turkey"
1968
  msgstr ""
1969
 
1970
- #: core/helpers/helper-form-templates.php:1278 core/helpers/helper-misc.php:438
1971
  msgid "Trinidad and Tobago"
1972
  msgstr ""
1973
 
1974
- #: core/helpers/helper-form-templates.php:1279 core/helpers/helper-misc.php:443
1975
  msgid "Tuvalu"
1976
  msgstr ""
1977
 
1978
- #: core/helpers/helper-form-templates.php:1280 core/helpers/helper-misc.php:431
1979
- msgid "Taiwan, Province of China"
1980
  msgstr ""
1981
 
1982
- #: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:433
1983
  msgid "Tanzania, United Republic of"
1984
  msgstr ""
1985
 
1986
- #: core/helpers/helper-form-templates.php:1282 core/helpers/helper-misc.php:445
1987
  msgid "Ukraine"
1988
  msgstr ""
1989
 
1990
- #: core/helpers/helper-form-templates.php:1283 core/helpers/helper-misc.php:444
1991
  msgid "Uganda"
1992
  msgstr ""
1993
 
1994
- #: core/helpers/helper-form-templates.php:1284 core/helpers/helper-misc.php:447
1995
- msgid "United Kingdom"
1996
- msgstr ""
1997
-
1998
- #: core/helpers/helper-form-templates.php:1285 core/helpers/helper-misc.php:448
1999
- msgid "United States"
2000
  msgstr ""
2001
 
2002
- #: core/helpers/helper-form-templates.php:1286 core/helpers/helper-misc.php:450
2003
  msgid "Uruguay"
2004
  msgstr ""
2005
 
2006
- #: core/helpers/helper-form-templates.php:1287 core/helpers/helper-misc.php:451
2007
  msgid "Uzbekistan"
2008
  msgstr ""
2009
 
2010
- #: core/helpers/helper-form-templates.php:1288 core/helpers/helper-misc.php:405
 
 
 
 
2011
  msgid "Saint Vincent and the Grenadines"
2012
  msgstr ""
2013
 
2014
- #: core/helpers/helper-form-templates.php:1289 core/helpers/helper-misc.php:453
2015
  msgid "Venezuela"
2016
  msgstr ""
2017
 
2018
- #: core/helpers/helper-form-templates.php:1290
2019
  msgid "Virgin Islands, British"
2020
  msgstr ""
2021
 
2022
- #: core/helpers/helper-form-templates.php:1291
2023
  msgid "Virgin Islands, U.S."
2024
  msgstr ""
2025
 
2026
- #: core/helpers/helper-form-templates.php:1292 core/helpers/helper-misc.php:454
2027
  msgid "Vietnam"
2028
  msgstr ""
2029
 
2030
- #: core/helpers/helper-form-templates.php:1293 core/helpers/helper-misc.php:452
2031
  msgid "Vanuatu"
2032
  msgstr ""
2033
 
2034
- #: core/helpers/helper-form-templates.php:1294
2035
  msgid "Wallis and Futuna"
2036
  msgstr ""
2037
 
2038
- #: core/helpers/helper-form-templates.php:1295 core/helpers/helper-misc.php:406
2039
  msgid "Samoa"
2040
  msgstr ""
2041
 
2042
- #: core/helpers/helper-form-templates.php:1296 core/helpers/helper-misc.php:459
 
 
 
 
2043
  msgid "Yemen"
2044
  msgstr ""
2045
 
2046
- #: core/helpers/helper-form-templates.php:1297 core/helpers/helper-misc.php:362
2047
  msgid "Mayotte"
2048
  msgstr ""
2049
 
2050
- #: core/helpers/helper-form-templates.php:1298 core/helpers/helper-misc.php:418
2051
  msgid "South Africa"
2052
  msgstr ""
2053
 
2054
- #: core/helpers/helper-form-templates.php:1299 core/helpers/helper-misc.php:461
2055
  msgid "Zambia"
2056
  msgstr ""
2057
 
2058
- #: core/helpers/helper-form-templates.php:1300 core/helpers/helper-misc.php:462
2059
  msgid "Zimbabwe"
2060
  msgstr ""
2061
 
@@ -2063,6 +2201,10 @@ msgstr ""
2063
  msgid "Thank you for creating with"
2064
  msgstr ""
2065
 
 
 
 
 
2066
  #: core/helpers/helper-misc.php:250
2067
  msgid "Bosnia and Herzegowina"
2068
  msgstr ""
@@ -2071,22 +2213,6 @@ msgstr ""
2071
  msgid "Bouvet Island"
2072
  msgstr ""
2073
 
2074
- #: core/helpers/helper-misc.php:254
2075
- msgid "British Indian Ocean Territory"
2076
- msgstr ""
2077
-
2078
- #: core/helpers/helper-misc.php:268
2079
- msgid "Christmas Island"
2080
- msgstr ""
2081
-
2082
- #: core/helpers/helper-misc.php:269
2083
- msgid "Cocos (Keeling) Islands"
2084
- msgstr ""
2085
-
2086
- #: core/helpers/helper-misc.php:273
2087
- msgid "Congo, the Democratic Republic of the"
2088
- msgstr ""
2089
-
2090
  #: core/helpers/helper-misc.php:276
2091
  msgid "Ivory Coast"
2092
  msgstr ""
@@ -2099,46 +2225,22 @@ msgstr ""
2099
  msgid "East Timor"
2100
  msgstr ""
2101
 
2102
- #: core/helpers/helper-misc.php:289
2103
- msgid "Equatorial Guinea"
2104
- msgstr ""
2105
-
2106
  #: core/helpers/helper-misc.php:298
2107
  msgid "France Metropolitan"
2108
  msgstr ""
2109
 
2110
- #: core/helpers/helper-misc.php:299
2111
- msgid "French Guiana"
2112
- msgstr ""
2113
-
2114
  #: core/helpers/helper-misc.php:301
2115
  msgid "French Southern Territories"
2116
  msgstr ""
2117
 
2118
- #: core/helpers/helper-misc.php:311
2119
- msgid "Guadeloupe"
2120
- msgstr ""
2121
-
2122
- #: core/helpers/helper-misc.php:315
2123
- msgid "Guinea-Bissau"
2124
- msgstr ""
2125
-
2126
  #: core/helpers/helper-misc.php:318
2127
  msgid "Heard and Mc Donald Islands"
2128
  msgstr ""
2129
 
2130
- #: core/helpers/helper-misc.php:319
2131
- msgid "Holy See (Vatican City State)"
2132
- msgstr ""
2133
-
2134
  #: core/helpers/helper-misc.php:326
2135
  msgid "Iran (Islamic Republic of)"
2136
  msgstr ""
2137
 
2138
- #: core/helpers/helper-misc.php:334
2139
- msgid "Kazakhstan"
2140
- msgstr ""
2141
-
2142
  #: core/helpers/helper-misc.php:337
2143
  msgid "Korea, Democratic People's Republic of"
2144
  msgstr ""
@@ -2151,24 +2253,24 @@ msgstr ""
2151
  msgid "Lao, People's Democratic Republic"
2152
  msgstr ""
2153
 
2154
- #: core/helpers/helper-misc.php:359
2155
- msgid "Martinique"
2156
  msgstr ""
2157
 
2158
- #: core/helpers/helper-misc.php:376
2159
- msgid "Netherlands Antilles"
2160
  msgstr ""
2161
 
2162
- #: core/helpers/helper-misc.php:383
2163
- msgid "Norfolk Island"
2164
  msgstr ""
2165
 
2166
- #: core/helpers/helper-misc.php:397
2167
- msgid "Puerto Rico"
2168
  msgstr ""
2169
 
2170
- #: core/helpers/helper-misc.php:399
2171
- msgid "Reunion"
2172
  msgstr ""
2173
 
2174
  #: core/helpers/helper-misc.php:414
@@ -2191,6 +2293,18 @@ msgstr ""
2191
  msgid "Svalbard and Jan Mayen Islands"
2192
  msgstr ""
2193
 
 
 
 
 
 
 
 
 
 
 
 
 
2194
  #: core/helpers/helper-misc.php:449
2195
  msgid "United States Minor Outlying Islands"
2196
  msgstr ""
@@ -2207,10 +2321,6 @@ msgstr ""
2207
  msgid "Wallis and Futuna Islands"
2208
  msgstr ""
2209
 
2210
- #: core/helpers/helper-misc.php:458
2211
- msgid "Western Sahara"
2212
- msgstr ""
2213
-
2214
  #: core/helpers/helper-misc.php:460
2215
  msgid "Yugoslavia"
2216
  msgstr ""
@@ -2764,41 +2874,41 @@ msgid "Yoruba"
2764
  msgstr ""
2765
 
2766
  #: core/helpers/helper-misc.php:931
2767
- #: core/templates/parts/customize-checkbox.php:77
2768
- #: core/templates/parts/customize-checkbox.php:87
2769
- #: core/templates/parts/customize-radio.php:72
2770
  msgid "Full"
2771
  msgstr ""
2772
 
2773
  #: core/helpers/helper-misc.php:932
2774
- #: core/templates/parts/customize-checkbox.php:78
2775
- #: core/templates/parts/customize-checkbox.php:88
2776
- #: core/templates/parts/customize-radio.php:73
2777
  msgid "Half"
2778
  msgstr ""
2779
 
2780
  #: core/helpers/helper-misc.php:933
2781
- #: core/templates/parts/customize-checkbox.php:79
2782
- #: core/templates/parts/customize-checkbox.php:89
2783
- #: core/templates/parts/customize-radio.php:74
2784
  msgid "Third"
2785
  msgstr ""
2786
 
2787
  #: core/helpers/helper-misc.php:934
2788
- #: core/templates/parts/customize-checkbox.php:80
2789
- #: core/templates/parts/customize-radio.php:75
2790
  msgid "Quarter"
2791
  msgstr ""
2792
 
2793
  #: core/helpers/helper-misc.php:935
2794
- #: core/templates/parts/customize-checkbox.php:81
2795
- #: core/templates/parts/customize-checkbox.php:90
2796
- #: core/templates/parts/customize-radio.php:76
2797
  msgid "Auto"
2798
  msgstr ""
2799
 
2800
  #: core/helpers/helper-misc.php:940
2801
- #: core/templates/parts/customize-checkbox.php:95
2802
  msgid "Apply to all fields"
2803
  msgstr ""
2804
 
@@ -2872,9 +2982,9 @@ msgstr ""
2872
 
2873
  #: core/templates/customize-form-item.php:33
2874
  #: core/templates/customize-form-part-footer.php:3
2875
- #: core/templates/parts/customize-checkbox.php:129
2876
- #: core/templates/parts/customize-radio.php:112
2877
- #: core/templates/parts/customize-select.php:110
2878
  msgid "Delete"
2879
  msgstr ""
2880
 
@@ -2883,9 +2993,9 @@ msgid "Preview"
2883
  msgstr ""
2884
 
2885
  #: core/templates/customize-form-part-footer.php:5
2886
- #: core/templates/parts/customize-checkbox.php:130
2887
- #: core/templates/parts/customize-radio.php:113
2888
- #: core/templates/parts/customize-select.php:111
2889
  msgid "More"
2890
  msgstr ""
2891
 
@@ -2943,285 +3053,188 @@ msgstr ""
2943
  msgid "Close"
2944
  msgstr ""
2945
 
2946
- #: core/templates/parts/customize-checkbox.php:4
2947
- #: core/templates/parts/customize-checkbox.php:120
2948
- #: core/templates/parts/customize-email.php:4
2949
- #: core/templates/parts/customize-multi-line-text.php:4
2950
- #: core/templates/parts/customize-number.php:4
2951
- #: core/templates/parts/customize-radio.php:4
2952
- #: core/templates/parts/customize-radio.php:103
2953
- #: core/templates/parts/customize-select.php:4
2954
- #: core/templates/parts/customize-select.php:101
2955
- #: core/templates/parts/customize-single-line-text.php:4
2956
- msgid "Label"
2957
- msgstr ""
2958
-
2959
- #: core/templates/parts/customize-checkbox.php:8
2960
- #: core/templates/parts/customize-email.php:8
2961
- #: core/templates/parts/customize-multi-line-text.php:8
2962
- #: core/templates/parts/customize-number.php:8
2963
- #: core/templates/parts/customize-radio.php:8
2964
- #: core/templates/parts/customize-select.php:8
2965
- #: core/templates/parts/customize-single-line-text.php:8
2966
- msgid "Label display"
2967
- msgstr ""
2968
-
2969
- #: core/templates/parts/customize-checkbox.php:10
2970
- #: core/templates/parts/customize-email.php:10
2971
- #: core/templates/parts/customize-multi-line-text.php:10
2972
- #: core/templates/parts/customize-number.php:10
2973
- #: core/templates/parts/customize-radio.php:10
2974
- #: core/templates/parts/customize-select.php:10
2975
- #: core/templates/parts/customize-single-line-text.php:10
2976
- msgid "Above"
2977
- msgstr ""
2978
-
2979
- #: core/templates/parts/customize-checkbox.php:11
2980
- #: core/templates/parts/customize-email.php:11
2981
- #: core/templates/parts/customize-multi-line-text.php:11
2982
- #: core/templates/parts/customize-number.php:11
2983
- #: core/templates/parts/customize-radio.php:11
2984
- #: core/templates/parts/customize-select.php:11
2985
- #: core/templates/parts/customize-single-line-text.php:11
2986
- msgid "Below"
2987
  msgstr ""
2988
 
2989
- #: core/templates/parts/customize-checkbox.php:13
2990
- #: core/templates/parts/customize-email.php:14
2991
- #: core/templates/parts/customize-multi-line-text.php:14
2992
- #: core/templates/parts/customize-number.php:14
2993
- #: core/templates/parts/customize-radio.php:13
2994
- #: core/templates/parts/customize-select.php:13
2995
- #: core/templates/parts/customize-single-line-text.php:14
2996
- msgid "Hidden"
2997
  msgstr ""
2998
 
2999
  #: core/templates/parts/customize-checkbox.php:21
3000
- #: core/templates/parts/customize-email.php:26
3001
- #: core/templates/parts/customize-multi-line-text.php:26
3002
- #: core/templates/parts/customize-number.php:26
3003
  #: core/templates/parts/customize-radio.php:21
3004
  #: core/templates/parts/customize-select.php:25
3005
- #: core/templates/parts/customize-single-line-text.php:26
3006
- msgid "Description display"
3007
- msgstr ""
3008
-
3009
- #: core/templates/parts/customize-checkbox.php:23
3010
- #: core/templates/parts/customize-email.php:28
3011
- #: core/templates/parts/customize-multi-line-text.php:28
3012
- #: core/templates/parts/customize-number.php:28
3013
- #: core/templates/parts/customize-radio.php:23
3014
- #: core/templates/parts/customize-select.php:27
3015
- #: core/templates/parts/customize-single-line-text.php:28
3016
- msgid "Standard"
3017
  msgstr ""
3018
 
3019
  #: core/templates/parts/customize-checkbox.php:24
3020
- #: core/templates/parts/customize-email.php:30
3021
- #: core/templates/parts/customize-multi-line-text.php:30
3022
- #: core/templates/parts/customize-number.php:30
3023
  #: core/templates/parts/customize-radio.php:24
3024
  #: core/templates/parts/customize-select.php:28
3025
- #: core/templates/parts/customize-single-line-text.php:30
3026
- msgid "Tooltip"
3027
- msgstr ""
3028
-
3029
- #: core/templates/parts/customize-checkbox.php:32
3030
- #: core/templates/parts/customize-checkbox.php:36
3031
- #: core/templates/parts/customize-radio.php:32
3032
- #: core/templates/parts/customize-radio.php:36
3033
- #: core/templates/parts/customize-select.php:36
3034
- #: core/templates/parts/customize-select.php:40
3035
- msgid "Choices"
3036
- msgstr ""
3037
-
3038
- #: core/templates/parts/customize-checkbox.php:33
3039
- #: core/templates/parts/customize-radio.php:33
3040
- #: core/templates/parts/customize-select.php:37
3041
- msgid "No choices added yet. Add one by clicking <i>Add Choice</i> below."
3042
- msgstr ""
3043
-
3044
- #: core/templates/parts/customize-checkbox.php:37
3045
- #: core/templates/parts/customize-radio.php:37
3046
- #: core/templates/parts/customize-select.php:41
3047
- msgid "Type or paste your choices here, adding each on a new line."
3048
- msgstr ""
3049
-
3050
- #: core/templates/parts/customize-checkbox.php:40
3051
- #: core/templates/parts/customize-radio.php:40
3052
- #: core/templates/parts/customize-select.php:44
3053
  msgid "Add choice"
3054
  msgstr ""
3055
 
3056
- #: core/templates/parts/customize-checkbox.php:42
3057
- #: core/templates/parts/customize-radio.php:42
3058
- #: core/templates/parts/customize-select.php:46
3059
  msgid "Or, bulk add choices"
3060
  msgstr ""
3061
 
3062
- #: core/templates/parts/customize-checkbox.php:46
3063
- #: core/templates/parts/customize-radio.php:46
3064
- #: core/templates/parts/customize-select.php:50
3065
  msgid "Add choices"
3066
  msgstr ""
3067
 
3068
- #: core/templates/parts/customize-checkbox.php:48
3069
- #: core/templates/parts/customize-radio.php:48
3070
- #: core/templates/parts/customize-select.php:52
3071
  msgid "Cancel"
3072
  msgstr ""
3073
 
3074
- #: core/templates/parts/customize-checkbox.php:53
3075
- #: core/templates/parts/customize-email.php:38
3076
- #: core/templates/parts/customize-multi-line-text.php:38
3077
- #: core/templates/parts/customize-number.php:48
3078
- #: core/templates/parts/customize-radio.php:53
3079
- #: core/templates/parts/customize-select.php:57
3080
- #: core/templates/parts/customize-single-line-text.php:38
3081
  msgid "This is required"
3082
  msgstr ""
3083
 
3084
- #: core/templates/parts/customize-checkbox.php:64
3085
  msgid "Add 'select all' choice"
3086
  msgstr ""
3087
 
3088
- #: core/templates/parts/customize-checkbox.php:68
3089
- #: core/templates/parts/customize-radio.php:63
3090
  msgid "Choices display"
3091
  msgstr ""
3092
 
3093
- #: core/templates/parts/customize-checkbox.php:70
3094
- #: core/templates/parts/customize-radio.php:65
3095
  msgid "Horizontal"
3096
  msgstr ""
3097
 
3098
- #: core/templates/parts/customize-checkbox.php:71
3099
- #: core/templates/parts/customize-radio.php:66
3100
  msgid "Vertical"
3101
  msgstr ""
3102
 
3103
- #: core/templates/parts/customize-checkbox.php:75
3104
- #: core/templates/parts/customize-radio.php:70
3105
  msgid "Choices width"
3106
  msgstr ""
3107
 
3108
- #: core/templates/parts/customize-checkbox.php:102
3109
- #: core/templates/parts/customize-email.php:78
3110
- #: core/templates/parts/customize-multi-line-text.php:87
3111
- #: core/templates/parts/customize-number.php:99
3112
- #: core/templates/parts/customize-radio.php:83
3113
- #: core/templates/parts/customize-select.php:83
3114
- #: core/templates/parts/customize-single-line-text.php:62
3115
  msgid "CSS classes"
3116
  msgstr ""
3117
 
3118
- #: core/templates/parts/customize-checkbox.php:125
3119
- #: core/templates/parts/customize-radio.php:108
3120
- #: core/templates/parts/customize-select.php:106
3121
  msgid "Make this choice default"
3122
  msgstr ""
3123
 
3124
- #: core/templates/parts/customize-email.php:13
3125
- #: core/templates/parts/customize-multi-line-text.php:13
3126
- #: core/templates/parts/customize-number.php:13
3127
- #: core/templates/parts/customize-single-line-text.php:13
3128
- msgid "Inside"
3129
- msgstr ""
3130
-
3131
- #: core/templates/parts/customize-email.php:29
3132
- #: core/templates/parts/customize-multi-line-text.php:29
3133
- #: core/templates/parts/customize-number.php:29
3134
- #: core/templates/parts/customize-single-line-text.php:29
3135
- msgid "Reveal on focus"
3136
- msgstr ""
3137
-
3138
- #: core/templates/parts/customize-email.php:49
3139
  msgid "Suggest common email domains"
3140
  msgstr ""
3141
 
3142
- #: core/templates/parts/customize-email.php:54
3143
- #: core/templates/parts/customize-number.php:74
3144
  msgid "Require confirmation"
3145
  msgstr ""
3146
 
3147
- #: core/templates/parts/customize-email.php:59
3148
- #: core/templates/parts/customize-number.php:79
3149
  msgid "'Confirmation' label"
3150
  msgstr ""
3151
 
3152
- #: core/templates/parts/customize-email.php:63
3153
- #: core/templates/parts/customize-number.php:83
3154
  msgid "'Confirmation' placeholder"
3155
  msgstr ""
3156
 
3157
- #: core/templates/parts/customize-email.php:69
3158
- #: core/templates/parts/customize-number.php:92
3159
- #: core/templates/parts/customize-single-line-text.php:53
3160
  msgid "Suffix"
3161
  msgstr ""
3162
 
3163
- #: core/templates/parts/customize-multi-line-text.php:49
3164
  msgid "Limit words/characters"
3165
  msgstr ""
3166
 
3167
- #: core/templates/parts/customize-multi-line-text.php:55
3168
  msgid "Limit"
3169
  msgstr ""
3170
 
3171
- #: core/templates/parts/customize-multi-line-text.php:59
3172
  msgid "Count"
3173
  msgstr ""
3174
 
3175
- #: core/templates/parts/customize-multi-line-text.php:62
3176
  msgid "Min words"
3177
  msgstr ""
3178
 
3179
- #: core/templates/parts/customize-multi-line-text.php:63
3180
  msgid "Max characters"
3181
  msgstr ""
3182
 
3183
- #: core/templates/parts/customize-multi-line-text.php:68
3184
  msgid "'Characters' label"
3185
  msgstr ""
3186
 
3187
- #: core/templates/parts/customize-multi-line-text.php:72
3188
  msgid "'Words' label"
3189
  msgstr ""
3190
 
3191
- #: core/templates/parts/customize-multi-line-text.php:78
3192
  msgid "Rows"
3193
  msgstr ""
3194
 
3195
- #: core/templates/parts/customize-number.php:38
3196
  msgid "Min number"
3197
  msgstr ""
3198
 
3199
- #: core/templates/parts/customize-number.php:42
3200
  msgid "Max number"
3201
  msgstr ""
3202
 
3203
- #: core/templates/parts/customize-number.php:59
3204
  msgid "Use number separators"
3205
  msgstr ""
3206
 
3207
- #: core/templates/parts/customize-number.php:64
3208
  msgid "Grouping"
3209
  msgstr ""
3210
 
3211
- #: core/templates/parts/customize-number.php:68
3212
  msgid "Decimal"
3213
  msgstr ""
3214
 
3215
- #: core/templates/parts/customize-number.php:88
3216
- #: core/templates/parts/customize-single-line-text.php:48
3217
  msgid "Prefix"
3218
  msgstr ""
3219
 
3220
- #: core/templates/parts/customize-select.php:68
3221
  msgid "Make searchable"
3222
  msgstr ""
3223
 
3224
- #: core/templates/parts/customize-select.php:73
3225
  msgid "'No results' label"
3226
  msgstr ""
3227
 
2
  # This file is distributed under the same license as the HappyForms package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: HappyForms 1.9.23\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
+ "POT-Creation-Date: 2020-10-15 14:46:37+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
21
  msgid "Contact form to manage and respond to conversations with customers."
22
  msgstr ""
23
 
24
+ #: core/classes/class-block.php:102
25
  msgid "Do you want access to HappyForms’ most powerful features?"
26
  msgstr ""
27
 
28
+ #: core/classes/class-block.php:103
29
  msgid "Discover HappyForms Upgrade"
30
  msgstr ""
31
 
32
+ #: core/classes/class-block.php:108 core/classes/parts/class-part-select.php:51
33
  msgid "Choose"
34
  msgstr ""
35
 
36
+ #: core/classes/class-block.php:109
37
  msgid "Which form would you like to add here?"
38
  msgstr ""
39
 
40
+ #: core/classes/class-block.php:110
41
  msgid "HappyForms Settings"
42
  msgstr ""
43
 
44
+ #: core/classes/class-block.php:111
45
  msgid "Edit Form"
46
  msgstr ""
47
 
429
  msgid "Form HTML ID"
430
  msgstr ""
431
 
432
+ #: core/classes/class-form-styles.php:52
433
  msgid "Left-to-right"
434
  msgstr ""
435
 
436
+ #: core/classes/class-form-styles.php:53
437
  msgid "Right-to-left"
438
  msgstr ""
439
 
440
+ #: core/classes/class-form-styles.php:74 core/classes/class-form-styles.php:148
441
+ #: core/classes/class-form-styles.php:158
442
+ #: core/classes/class-form-styles.php:281
443
+ #: core/classes/class-form-styles.php:291
444
  msgid "Default"
445
  msgstr ""
446
 
447
+ #: core/classes/class-form-styles.php:75 core/classes/class-form-styles.php:147
448
+ #: core/classes/class-form-styles.php:157
449
+ #: core/classes/class-form-styles.php:290
450
  msgid "Narrow"
451
  msgstr ""
452
 
453
+ #: core/classes/class-form-styles.php:76 core/classes/class-form-styles.php:149
454
+ #: core/classes/class-form-styles.php:159
455
+ #: core/classes/class-form-styles.php:292
456
  msgid "Wide"
457
  msgstr ""
458
 
459
+ #: core/classes/class-form-styles.php:90 core/classes/class-form-styles.php:119
460
+ #: core/classes/class-form-styles.php:262
461
  msgid "Show"
462
  msgstr ""
463
 
464
+ #: core/classes/class-form-styles.php:91 core/classes/class-form-styles.php:120
465
+ #: core/classes/class-form-styles.php:263
466
  msgid "Hide"
467
  msgstr ""
468
 
469
+ #: core/classes/class-form-styles.php:99 core/classes/class-form-styles.php:173
470
+ #: core/classes/class-form-styles.php:204
471
+ #: core/classes/class-form-styles.php:213
472
+ #: core/classes/class-form-styles.php:242
473
+ #: core/classes/class-form-styles.php:319
 
 
 
 
 
 
474
  msgid "Left"
475
  msgstr ""
476
 
477
+ #: core/classes/class-form-styles.php:100
478
+ #: core/classes/class-form-styles.php:174
479
+ #: core/classes/class-form-styles.php:214
480
+ #: core/classes/class-form-styles.php:243
481
+ #: core/classes/class-form-styles.php:320
482
  msgid "Center"
483
  msgstr ""
484
 
485
+ #: core/classes/class-form-styles.php:101
486
+ #: core/classes/class-form-styles.php:175
487
+ #: core/classes/class-form-styles.php:215
488
+ #: core/classes/class-form-styles.php:244
489
+ #: core/classes/class-form-styles.php:321
490
  msgid "Right"
491
  msgstr ""
492
 
493
+ #: core/classes/class-form-styles.php:128
494
  msgid "All sides"
495
  msgstr ""
496
 
497
+ #: core/classes/class-form-styles.php:129
498
  msgid "Bottom only"
499
  msgstr ""
500
 
501
+ #: core/classes/class-form-styles.php:137
502
+ #: core/classes/class-form-styles.php:271
503
  msgid "Square"
504
  msgstr ""
505
 
506
+ #: core/classes/class-form-styles.php:138
507
+ #: core/classes/class-form-styles.php:272
508
  msgid "Round"
509
  msgstr ""
510
 
511
+ #: core/classes/class-form-styles.php:139
512
+ #: core/classes/class-form-styles.php:273
513
  msgid "Pill"
514
  msgstr ""
515
 
516
+ #: core/classes/class-form-styles.php:193
517
+ #: core/classes/class-form-styles.php:310
518
  msgid "Normal"
519
  msgstr ""
520
 
521
+ #: core/classes/class-form-styles.php:194
522
+ #: core/classes/class-form-styles.php:311
523
  msgid "Bold"
524
  msgstr ""
525
 
526
+ #: core/classes/class-form-styles.php:202
527
+ msgid "Above"
528
+ msgstr ""
529
+
530
+ #: core/classes/class-form-styles.php:203
531
+ msgid "Below"
532
+ msgstr ""
533
+
534
+ #: core/classes/class-form-styles.php:205
535
+ msgid "Hidden"
536
+ msgstr ""
537
+
538
+ #: core/classes/class-form-styles.php:233
539
+ msgid "Standard"
540
+ msgstr ""
541
+
542
+ #: core/classes/class-form-styles.php:234
543
+ msgid "Tooltip"
544
+ msgstr ""
545
+
546
+ #: core/classes/class-form-styles.php:282
547
  msgid "Full width"
548
  msgstr ""
549
 
550
+ #: core/classes/class-form-styles.php:533
551
  msgid "Above form"
552
  msgstr ""
553
 
554
+ #: core/classes/class-form-styles.php:534
555
  msgid "Below form"
556
  msgstr ""
557
 
558
+ #: core/classes/class-form-styles.php:554
559
  msgid "General"
560
  msgstr ""
561
 
562
+ #: core/classes/class-form-styles.php:559
563
+ #: core/classes/class-form-styles.php:884 core/helpers/helper-misc.php:929
564
+ #: core/templates/parts/customize-checkbox.php:69
565
  msgid "Width"
566
  msgstr ""
567
 
568
+ #: core/classes/class-form-styles.php:564
569
+ #: core/classes/class-form-styles.php:889
570
  msgid "Padding"
571
  msgstr ""
572
 
573
+ #: core/classes/class-form-styles.php:569
574
  msgid "Direction"
575
  msgstr ""
576
 
577
+ #: core/classes/class-form-styles.php:574
578
  msgid "Message location"
579
  msgstr ""
580
 
581
+ #: core/classes/class-form-styles.php:580
582
+ #: core/classes/class-form-styles.php:665
583
+ #: core/classes/class-form-styles.php:745
584
+ #: core/classes/class-form-styles.php:915
585
  msgid "Colors"
586
  msgstr ""
587
 
588
+ #: core/classes/class-form-styles.php:584
589
  msgid "Primary"
590
  msgstr ""
591
 
592
+ #: core/classes/class-form-styles.php:589
593
  msgid "Success message background"
594
  msgstr ""
595
 
596
+ #: core/classes/class-form-styles.php:594
597
  msgid "Success message text"
598
  msgstr ""
599
 
600
+ #: core/classes/class-form-styles.php:599
601
  msgid "Validation message text"
602
  msgstr ""
603
 
604
+ #: core/classes/class-form-styles.php:604
605
  msgid "Error message background"
606
  msgstr ""
607
 
608
+ #: core/classes/class-form-styles.php:609
609
  msgid "Error message text"
610
  msgstr ""
611
 
612
+ #: core/classes/class-form-styles.php:614
 
613
  #: core/templates/customize-form-build.php:4
614
  #: inc/classes/parts/class-part-layout-title-dummy.php:8
615
  #: inc/classes/parts/class-part-title-dummy.php:8
616
  msgid "Title"
617
  msgstr ""
618
 
619
+ #: core/classes/class-form-styles.php:619
620
  msgid "Display"
621
  msgstr ""
622
 
623
+ #: core/classes/class-form-styles.php:624
624
+ #: core/classes/class-form-styles.php:904
625
  msgid "Alignment"
626
  msgstr ""
627
 
628
+ #: core/classes/class-form-styles.php:629
629
+ #: core/classes/class-form-styles.php:894
630
  msgid "Font size"
631
  msgstr ""
632
 
633
+ #: core/classes/class-form-styles.php:634
634
  msgid "Field borders & spacing"
635
  msgstr ""
636
 
637
+ #: core/classes/class-form-styles.php:639
638
+ #: core/classes/class-form-styles.php:669
639
+ #: core/classes/class-form-styles.php:874
640
+ #: core/classes/class-form-styles.php:929
641
  msgid "Border"
642
  msgstr ""
643
 
644
+ #: core/classes/class-form-styles.php:644
645
  msgid "Border location"
646
  msgstr ""
647
 
648
+ #: core/classes/class-form-styles.php:649
649
+ #: core/classes/class-form-styles.php:879
650
  msgid "Border radius"
651
  msgstr ""
652
 
653
+ #: core/classes/class-form-styles.php:654
654
  msgid "Outer spacing"
655
  msgstr ""
656
 
657
+ #: core/classes/class-form-styles.php:659
658
  msgid "Inner spacing"
659
  msgstr ""
660
 
661
+ #: core/classes/class-form-styles.php:674
662
  msgid "Border on focus"
663
  msgstr ""
664
 
665
+ #: core/classes/class-form-styles.php:679
666
+ #: core/classes/class-form-styles.php:779
667
+ #: core/classes/class-form-styles.php:804
668
+ #: core/classes/class-form-styles.php:919
669
  msgid "Background"
670
  msgstr ""
671
 
672
+ #: core/classes/class-form-styles.php:684
673
+ #: core/classes/class-form-styles.php:789
674
+ #: core/classes/class-form-styles.php:809
675
+ #: core/classes/class-form-styles.php:924
676
  msgid "Background on focus"
677
  msgstr ""
678
 
679
+ #: core/classes/class-form-styles.php:689
680
  msgid "Field labels & text"
681
  msgstr ""
682
 
683
+ #: core/classes/class-form-styles.php:694
684
  msgid "Toggle placeholder on field focus"
685
  msgstr ""
686
 
687
+ #: core/classes/class-form-styles.php:699
688
+ msgid "Label alignment"
689
  msgstr ""
690
 
691
+ #: core/classes/class-form-styles.php:704
692
+ msgid "Label font size"
693
  msgstr ""
694
 
695
+ #: core/classes/class-form-styles.php:709
696
+ msgid "Label font weight"
697
+ msgstr ""
698
+
699
+ #: core/classes/class-form-styles.php:714
700
+ msgid "Label display"
701
  msgstr ""
702
 
703
+ #: core/classes/class-form-styles.php:719
704
  msgid "Description alignment"
705
  msgstr ""
706
 
707
+ #: core/classes/class-form-styles.php:724
708
  msgid "Description font size"
709
  msgstr ""
710
 
711
+ #: core/classes/class-form-styles.php:729
712
+ msgid "Description display"
713
+ msgstr ""
714
+
715
+ #: core/classes/class-form-styles.php:734
716
  msgid "Placeholder &amp; value alignment"
717
  msgstr ""
718
 
719
+ #: core/classes/class-form-styles.php:739
720
  msgid "Value font size"
721
  msgstr ""
722
 
723
+ #: core/classes/class-form-styles.php:749
724
+ #: core/templates/parts/customize-checkbox.php:4
725
+ #: core/templates/parts/customize-checkbox.php:104
726
+ #: core/templates/parts/customize-email.php:4
727
+ #: core/templates/parts/customize-multi-line-text.php:4
728
+ #: core/templates/parts/customize-number.php:4
729
+ #: core/templates/parts/customize-radio.php:4
730
+ #: core/templates/parts/customize-radio.php:87
731
+ #: core/templates/parts/customize-select.php:4
732
+ #: core/templates/parts/customize-select.php:85
733
+ #: core/templates/parts/customize-single-line-text.php:4
734
+ msgid "Label"
735
+ msgstr ""
736
+
737
+ #: core/classes/class-form-styles.php:754
738
  msgid "Value"
739
  msgstr ""
740
 
741
+ #: core/classes/class-form-styles.php:759
742
+ #: core/templates/parts/customize-email.php:8
743
+ #: core/templates/parts/customize-multi-line-text.php:8
744
+ #: core/templates/parts/customize-number.php:8
745
+ #: core/templates/parts/customize-select.php:8
746
+ #: core/templates/parts/customize-single-line-text.php:8
747
  #: inc/classes/parts/class-part-placeholder-dummy.php:8
748
  msgid "Placeholder"
749
  msgstr ""
750
 
751
+ #: core/classes/class-form-styles.php:764
752
+ #: core/templates/parts/customize-checkbox.php:8
753
+ #: core/templates/parts/customize-email.php:12
754
+ #: core/templates/parts/customize-multi-line-text.php:12
755
+ #: core/templates/parts/customize-number.php:12
756
+ #: core/templates/parts/customize-radio.php:8
757
+ #: core/templates/parts/customize-select.php:12
758
+ #: core/templates/parts/customize-single-line-text.php:12
759
  msgid "Description"
760
  msgstr ""
761
 
762
+ #: core/classes/class-form-styles.php:769
763
  msgid "Dropdowns"
764
  msgstr ""
765
 
766
+ #: core/classes/class-form-styles.php:775
767
  msgid "Items"
768
  msgstr ""
769
 
770
+ #: core/classes/class-form-styles.php:784
771
+ #: core/classes/class-form-styles.php:934
772
  msgid "Text"
773
  msgstr ""
774
 
775
+ #: core/classes/class-form-styles.php:794
776
  msgid "Text focused"
777
  msgstr ""
778
 
779
+ #: core/classes/class-form-styles.php:799
780
  msgid "Checkboxes & Radios"
781
  msgstr ""
782
 
783
+ #: core/classes/class-form-styles.php:814
784
  msgid "Checkmark"
785
  msgstr ""
786
 
787
+ #: core/classes/class-form-styles.php:819
788
  msgid "Rating"
789
  msgstr ""
790
 
791
+ #: core/classes/class-form-styles.php:824
792
  msgid "Rating star color"
793
  msgstr ""
794
 
795
+ #: core/classes/class-form-styles.php:829
796
  msgid "Rating star color on hover"
797
  msgstr ""
798
 
799
+ #: core/classes/class-form-styles.php:834
800
  msgid "Tables"
801
  msgstr ""
802
 
803
+ #: core/classes/class-form-styles.php:839
804
  msgid "Odd row primary"
805
  msgstr ""
806
 
807
+ #: core/classes/class-form-styles.php:844
808
  msgid "Odd row secondary"
809
  msgstr ""
810
 
811
+ #: core/classes/class-form-styles.php:849
812
  msgid "Even row primary"
813
  msgstr ""
814
 
815
+ #: core/classes/class-form-styles.php:854
816
  msgid "Even row secondary"
817
  msgstr ""
818
 
819
+ #: core/classes/class-form-styles.php:859
820
  msgid "Dividers"
821
  msgstr ""
822
 
823
+ #: core/classes/class-form-styles.php:864
824
  msgid "Color"
825
  msgstr ""
826
 
827
+ #: core/classes/class-form-styles.php:869
828
  msgid "Submit button"
829
  msgstr ""
830
 
831
+ #: core/classes/class-form-styles.php:899
832
  msgid "Font weight"
833
  msgstr ""
834
 
835
+ #: core/classes/class-form-styles.php:909
836
  msgid "Make button a field of last input"
837
  msgstr ""
838
 
839
+ #: core/classes/class-form-styles.php:939
840
  msgid "Text on focus"
841
  msgstr ""
842
 
843
+ #: core/classes/class-form-styles.php:951
844
  msgid "Add your own CSS code here to customize the appearance of your form."
845
  msgstr ""
846
 
847
+ #: core/classes/class-form-styles.php:953
848
  msgid ""
849
  "For each rule you add, we'll prepend your form's HTML ID. This makes sure "
850
  "all styles added will only apply to this form. For example %s becomes %s."
851
  msgstr ""
852
 
853
+ #: core/classes/class-form-styles.php:961
854
  msgid ""
855
  "The edit field automatically highlights code syntax. You can disable this "
856
  "in your <a href=\"%s\" class=\"%s\" target=\"_blank\">user profile</a> to "
857
  "work in plain text mode."
858
  msgstr ""
859
 
860
+ #: core/classes/class-form-styles.php:969
861
+ #: core/classes/class-form-styles.php:979
862
  msgid "Additional CSS"
863
  msgstr ""
864
 
886
  msgid "Welcome"
887
  msgstr ""
888
 
889
+ #: core/classes/class-happyforms-core.php:456
890
  msgid "Insert HappyForm"
891
  msgstr ""
892
 
893
+ #: core/classes/class-happyforms-core.php:456
894
  msgid "Add HappyForms"
895
  msgstr ""
896
 
897
+ #: core/classes/class-happyforms-core.php:691
898
  msgid "Overview"
899
  msgstr ""
900
 
901
+ #: core/classes/class-happyforms-core.php:701
902
  msgid "Hey 👋 Welcome to your HappyForms Dashboard!"
903
  msgstr ""
904
 
905
+ #: core/classes/class-happyforms-core.php:704
906
  msgid ""
907
  "Are you looking for help? Well, we’ve swept the nacho crumbs from our "
908
  "keyboards, refilled our ginger beers and are ready to reply with answers! "
909
  "So, go on, email %s."
910
  msgstr ""
911
 
912
+ #: core/classes/class-happyforms-core.php:713
913
  msgid "For more help"
914
  msgstr ""
915
 
916
+ #: core/classes/class-happyforms-core.php:715
917
  msgid "Help guide"
918
  msgstr ""
919
 
976
  msgstr ""
977
 
978
  #: core/classes/class-validation-messages.php:68
979
+ msgid "Please select fewer choices"
980
  msgstr ""
981
 
982
  #: core/classes/class-validation-messages.php:69
1087
  msgstr ""
1088
 
1089
  #: core/classes/parts/class-part-multi-line-text.php:69
1090
+ #: core/templates/parts/customize-multi-line-text.php:46
1091
  msgid "Min characters"
1092
  msgstr ""
1093
 
1094
  #: core/classes/parts/class-part-multi-line-text.php:73
1095
+ #: core/templates/parts/customize-multi-line-text.php:43
1096
  msgid "Max words"
1097
  msgstr ""
1098
 
1172
  msgid "Spam protection, skip this field"
1173
  msgstr ""
1174
 
1175
+ #: core/helpers/helper-form-templates.php:1036
1176
  msgid "January"
1177
  msgstr ""
1178
 
1179
+ #: core/helpers/helper-form-templates.php:1037
1180
  msgid "February"
1181
  msgstr ""
1182
 
1183
+ #: core/helpers/helper-form-templates.php:1038
1184
  msgid "March"
1185
  msgstr ""
1186
 
1187
+ #: core/helpers/helper-form-templates.php:1039
1188
  msgid "April"
1189
  msgstr ""
1190
 
1191
+ #: core/helpers/helper-form-templates.php:1040
1192
  msgid "May"
1193
  msgstr ""
1194
 
1195
+ #: core/helpers/helper-form-templates.php:1041
1196
  msgid "June"
1197
  msgstr ""
1198
 
1199
+ #: core/helpers/helper-form-templates.php:1042
1200
  msgid "July"
1201
  msgstr ""
1202
 
1203
+ #: core/helpers/helper-form-templates.php:1043
1204
  msgid "August"
1205
  msgstr ""
1206
 
1207
+ #: core/helpers/helper-form-templates.php:1044
1208
  msgid "September"
1209
  msgstr ""
1210
 
1211
+ #: core/helpers/helper-form-templates.php:1045
1212
  msgid "October"
1213
  msgstr ""
1214
 
1215
+ #: core/helpers/helper-form-templates.php:1046
1216
  msgid "November"
1217
  msgstr ""
1218
 
1219
+ #: core/helpers/helper-form-templates.php:1047
1220
  msgid "December"
1221
  msgstr ""
1222
 
1223
+ #: core/helpers/helper-form-templates.php:1088
1224
+ msgid "Ascension Island"
1225
+ msgstr ""
1226
+
1227
+ #: core/helpers/helper-form-templates.php:1089 core/helpers/helper-misc.php:228
1228
  msgid "Andorra"
1229
  msgstr ""
1230
 
1231
+ #: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:446
1232
  msgid "United Arab Emirates"
1233
  msgstr ""
1234
 
1235
+ #: core/helpers/helper-form-templates.php:1091 core/helpers/helper-misc.php:224
1236
  msgid "Afghanistan"
1237
  msgstr ""
1238
 
1239
+ #: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:232
1240
  msgid "Antigua and Barbuda"
1241
  msgstr ""
1242
 
1243
+ #: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:230
1244
  msgid "Anguilla"
1245
  msgstr ""
1246
 
1247
+ #: core/helpers/helper-form-templates.php:1094 core/helpers/helper-misc.php:225
1248
  msgid "Albania"
1249
  msgstr ""
1250
 
1251
+ #: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:234
1252
  msgid "Armenia"
1253
  msgstr ""
1254
 
1255
+ #: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:229
1256
  msgid "Angola"
1257
  msgstr ""
1258
 
1259
+ #: core/helpers/helper-form-templates.php:1097 core/helpers/helper-misc.php:233
 
 
 
 
1260
  msgid "Argentina"
1261
  msgstr ""
1262
 
1263
+ #: core/helpers/helper-form-templates.php:1098 core/helpers/helper-misc.php:227
1264
  msgid "American Samoa"
1265
  msgstr ""
1266
 
1267
+ #: core/helpers/helper-form-templates.php:1099 core/helpers/helper-misc.php:237
1268
  msgid "Austria"
1269
  msgstr ""
1270
 
1271
+ #: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:236
1272
  msgid "Australia"
1273
  msgstr ""
1274
 
1275
+ #: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:235
1276
  msgid "Aruba"
1277
  msgstr ""
1278
 
1279
+ #: core/helpers/helper-form-templates.php:1102
1280
+ msgid "Åland Islands"
1281
+ msgstr ""
1282
+
1283
+ #: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:238
1284
  msgid "Azerbaijan"
1285
  msgstr ""
1286
 
1287
+ #: core/helpers/helper-form-templates.php:1104
1288
  msgid "Bosnia and Herzegovina"
1289
  msgstr ""
1290
 
1291
+ #: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:242
1292
  msgid "Barbados"
1293
  msgstr ""
1294
 
1295
+ #: core/helpers/helper-form-templates.php:1106 core/helpers/helper-misc.php:241
1296
  msgid "Bangladesh"
1297
  msgstr ""
1298
 
1299
+ #: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:244
1300
  msgid "Belgium"
1301
  msgstr ""
1302
 
1303
+ #: core/helpers/helper-form-templates.php:1108 core/helpers/helper-misc.php:257
1304
  msgid "Burkina Faso"
1305
  msgstr ""
1306
 
1307
+ #: core/helpers/helper-form-templates.php:1109 core/helpers/helper-misc.php:256
1308
  msgid "Bulgaria"
1309
  msgstr ""
1310
 
1311
+ #: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:240
1312
  msgid "Bahrain"
1313
  msgstr ""
1314
 
1315
+ #: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:258
1316
  msgid "Burundi"
1317
  msgstr ""
1318
 
1319
+ #: core/helpers/helper-form-templates.php:1112 core/helpers/helper-misc.php:246
1320
  msgid "Benin"
1321
  msgstr ""
1322
 
1323
+ #: core/helpers/helper-form-templates.php:1113
1324
+ msgid "Saint Barthélemy"
1325
  msgstr ""
1326
 
1327
+ #: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:247
1328
  msgid "Bermuda"
1329
  msgstr ""
1330
 
1331
+ #: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:255
1332
  msgid "Brunei Darussalam"
1333
  msgstr ""
1334
 
1335
+ #: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:249
1336
  msgid "Bolivia"
1337
  msgstr ""
1338
 
1339
+ #: core/helpers/helper-form-templates.php:1117
1340
+ msgid "Bonaire, Sint Eustatius and Saba"
1341
+ msgstr ""
1342
+
1343
+ #: core/helpers/helper-form-templates.php:1118 core/helpers/helper-misc.php:253
1344
  msgid "Brazil"
1345
  msgstr ""
1346
 
1347
+ #: core/helpers/helper-form-templates.php:1119 core/helpers/helper-misc.php:239
1348
  msgid "Bahamas"
1349
  msgstr ""
1350
 
1351
+ #: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:248
1352
  msgid "Bhutan"
1353
  msgstr ""
1354
 
1355
+ #: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:251
1356
  msgid "Botswana"
1357
  msgstr ""
1358
 
1359
+ #: core/helpers/helper-form-templates.php:1122 core/helpers/helper-misc.php:243
1360
  msgid "Belarus"
1361
  msgstr ""
1362
 
1363
+ #: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:245
1364
  msgid "Belize"
1365
  msgstr ""
1366
 
1367
+ #: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:261
1368
  msgid "Canada"
1369
  msgstr ""
1370
 
1371
+ #: core/helpers/helper-form-templates.php:1125 core/helpers/helper-misc.php:269
1372
+ msgid "Cocos (Keeling) Islands"
1373
  msgstr ""
1374
 
1375
+ #: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:273
1376
+ msgid "Congo, the Democratic Republic of the"
1377
+ msgstr ""
1378
+
1379
+ #: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:264
1380
  msgid "Central African Republic"
1381
  msgstr ""
1382
 
1383
+ #: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:272
1384
  msgid "Congo"
1385
  msgstr ""
1386
 
1387
+ #: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:429
1388
  msgid "Switzerland"
1389
  msgstr ""
1390
 
1391
+ #: core/helpers/helper-form-templates.php:1130
1392
+ msgid "Cote D'Ivoire"
1393
+ msgstr ""
1394
+
1395
+ #: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:274
1396
  msgid "Cook Islands"
1397
  msgstr ""
1398
 
1399
+ #: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:266
1400
  msgid "Chile"
1401
  msgstr ""
1402
 
1403
+ #: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:260
1404
  msgid "Cameroon"
1405
  msgstr ""
1406
 
1407
+ #: core/helpers/helper-form-templates.php:1134 core/helpers/helper-misc.php:267
1408
  msgid "China"
1409
  msgstr ""
1410
 
1411
+ #: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:270
1412
  msgid "Colombia"
1413
  msgstr ""
1414
 
1415
+ #: core/helpers/helper-form-templates.php:1136 core/helpers/helper-misc.php:275
1416
  msgid "Costa Rica"
1417
  msgstr ""
1418
 
1419
+ #: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:278
1420
  msgid "Cuba"
1421
  msgstr ""
1422
 
1423
+ #: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:262
1424
  msgid "Cape Verde"
1425
  msgstr ""
1426
 
1427
+ #: core/helpers/helper-form-templates.php:1139
1428
+ msgid "Curaçao"
1429
+ msgstr ""
1430
+
1431
+ #: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:268
1432
+ msgid "Christmas Island"
1433
+ msgstr ""
1434
+
1435
+ #: core/helpers/helper-form-templates.php:1141 core/helpers/helper-misc.php:279
1436
  msgid "Cyprus"
1437
  msgstr ""
1438
 
1439
+ #: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:280
1440
  msgid "Czech Republic"
1441
  msgstr ""
1442
 
1443
+ #: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:305
1444
  msgid "Germany"
1445
  msgstr ""
1446
 
1447
+ #: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:282
1448
  msgid "Djibouti"
1449
  msgstr ""
1450
 
1451
+ #: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:281
1452
  msgid "Denmark"
1453
  msgstr ""
1454
 
1455
+ #: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:283
1456
  msgid "Dominica"
1457
  msgstr ""
1458
 
1459
+ #: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:284
1460
  msgid "Dominican Republic"
1461
  msgstr ""
1462
 
1463
+ #: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:226
1464
  msgid "Algeria"
1465
  msgstr ""
1466
 
1467
+ #: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:286
1468
  msgid "Ecuador"
1469
  msgstr ""
1470
 
1471
+ #: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:291
1472
  msgid "Estonia"
1473
  msgstr ""
1474
 
1475
+ #: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:287
1476
  msgid "Egypt"
1477
  msgstr ""
1478
 
1479
+ #: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:458
1480
+ msgid "Western Sahara"
1481
+ msgstr ""
1482
+
1483
+ #: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:290
1484
  msgid "Eritrea"
1485
  msgstr ""
1486
 
1487
+ #: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:420
1488
  msgid "Spain"
1489
  msgstr ""
1490
 
1491
+ #: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:292
1492
  msgid "Ethiopia"
1493
  msgstr ""
1494
 
1495
+ #: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:296
1496
  msgid "Finland"
1497
  msgstr ""
1498
 
1499
+ #: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:295
1500
  msgid "Fiji"
1501
  msgstr ""
1502
 
1503
+ #: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:293
1504
  msgid "Falkland Islands (Malvinas)"
1505
  msgstr ""
1506
 
1507
+ #: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:364
1508
  msgid "Micronesia, Federated States of"
1509
  msgstr ""
1510
 
1511
+ #: core/helpers/helper-form-templates.php:1160 core/helpers/helper-misc.php:294
1512
  msgid "Faroe Islands"
1513
  msgstr ""
1514
 
1515
+ #: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:297
1516
  msgid "France"
1517
  msgstr ""
1518
 
1519
+ #: core/helpers/helper-form-templates.php:1162 core/helpers/helper-misc.php:302
1520
  msgid "Gabon"
1521
  msgstr ""
1522
 
1523
+ #: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:447
1524
+ msgid "United Kingdom"
1525
+ msgstr ""
1526
+
1527
+ #: core/helpers/helper-form-templates.php:1164 core/helpers/helper-misc.php:310
1528
  msgid "Grenada"
1529
  msgstr ""
1530
 
1531
+ #: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:304
1532
  msgid "Georgia"
1533
  msgstr ""
1534
 
1535
+ #: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:299
1536
+ msgid "French Guiana"
1537
+ msgstr ""
1538
+
1539
+ #: core/helpers/helper-form-templates.php:1167
1540
+ msgid "Guernsey"
1541
+ msgstr ""
1542
+
1543
+ #: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:306
1544
  msgid "Ghana"
1545
  msgstr ""
1546
 
1547
+ #: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:307
1548
  msgid "Gibraltar"
1549
  msgstr ""
1550
 
1551
+ #: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:309
1552
  msgid "Greenland"
1553
  msgstr ""
1554
 
1555
+ #: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:303
1556
  msgid "Gambia"
1557
  msgstr ""
1558
 
1559
+ #: core/helpers/helper-form-templates.php:1172 core/helpers/helper-misc.php:314
1560
  msgid "Guinea"
1561
  msgstr ""
1562
 
1563
+ #: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:311
1564
+ msgid "Guadeloupe"
1565
+ msgstr ""
1566
+
1567
+ #: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:289
1568
+ msgid "Equatorial Guinea"
1569
+ msgstr ""
1570
+
1571
+ #: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:308
1572
  msgid "Greece"
1573
  msgstr ""
1574
 
1575
+ #: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:313
1576
  msgid "Guatemala"
1577
  msgstr ""
1578
 
1579
+ #: core/helpers/helper-form-templates.php:1177 core/helpers/helper-misc.php:312
1580
  msgid "Guam"
1581
  msgstr ""
1582
 
1583
+ #: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:315
1584
+ msgid "Guinea-Bissau"
1585
  msgstr ""
1586
 
1587
+ #: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:316
1588
  msgid "Guyana"
1589
  msgstr ""
1590
 
1591
+ #: core/helpers/helper-form-templates.php:1180 core/helpers/helper-misc.php:321
1592
  msgid "Hong Kong"
1593
  msgstr ""
1594
 
1595
+ #: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:320
1596
  msgid "Honduras"
1597
  msgstr ""
1598
 
1599
+ #: core/helpers/helper-form-templates.php:1182
1600
  msgid "Croatia"
1601
  msgstr ""
1602
 
1603
+ #: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:317
1604
  msgid "Haiti"
1605
  msgstr ""
1606
 
1607
+ #: core/helpers/helper-form-templates.php:1184 core/helpers/helper-misc.php:322
1608
  msgid "Hungary"
1609
  msgstr ""
1610
 
1611
+ #: core/helpers/helper-form-templates.php:1185 core/helpers/helper-misc.php:325
1612
  msgid "Indonesia"
1613
  msgstr ""
1614
 
1615
+ #: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:328
1616
  msgid "Ireland"
1617
  msgstr ""
1618
 
1619
+ #: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:329
1620
  msgid "Israel"
1621
  msgstr ""
1622
 
1623
+ #: core/helpers/helper-form-templates.php:1188
1624
+ msgid "Isle of Man"
1625
+ msgstr ""
1626
+
1627
+ #: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:324
1628
  msgid "India"
1629
  msgstr ""
1630
 
1631
+ #: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:254
1632
+ msgid "British Indian Ocean Territory"
1633
+ msgstr ""
1634
+
1635
+ #: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:327
1636
  msgid "Iraq"
1637
  msgstr ""
1638
 
1639
+ #: core/helpers/helper-form-templates.php:1192
1640
  msgid "Iran, Islamic Republic of"
1641
  msgstr ""
1642
 
1643
+ #: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:323
1644
  msgid "Iceland"
1645
  msgstr ""
1646
 
1647
+ #: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:330
1648
  msgid "Italy"
1649
  msgstr ""
1650
 
1651
+ #: core/helpers/helper-form-templates.php:1195
1652
+ msgid "Jersey"
1653
+ msgstr ""
1654
+
1655
+ #: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:331
1656
  msgid "Jamaica"
1657
  msgstr ""
1658
 
1659
+ #: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:333
1660
  msgid "Jordan"
1661
  msgstr ""
1662
 
1663
+ #: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:332
1664
  msgid "Japan"
1665
  msgstr ""
1666
 
1667
+ #: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:335
1668
  msgid "Kenya"
1669
  msgstr ""
1670
 
1671
+ #: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:340
1672
  msgid "Kyrgyzstan"
1673
  msgstr ""
1674
 
1675
+ #: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:259
1676
  msgid "Cambodia"
1677
  msgstr ""
1678
 
1679
+ #: core/helpers/helper-form-templates.php:1202 core/helpers/helper-misc.php:336
1680
  msgid "Kiribati"
1681
  msgstr ""
1682
 
1683
+ #: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:271
1684
  msgid "Comoros"
1685
  msgstr ""
1686
 
1687
+ #: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:403
1688
  msgid "Saint Kitts and Nevis"
1689
  msgstr ""
1690
 
1691
+ #: core/helpers/helper-form-templates.php:1205
1692
+ msgid "North Korea"
1693
  msgstr ""
1694
 
1695
+ #: core/helpers/helper-form-templates.php:1206
1696
+ msgid "South Korea"
1697
  msgstr ""
1698
 
1699
+ #: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:339
1700
  msgid "Kuwait"
1701
  msgstr ""
1702
 
1703
+ #: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:263
1704
  msgid "Cayman Islands"
1705
  msgstr ""
1706
 
1707
+ #: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:334
1708
+ msgid "Kazakhstan"
1709
+ msgstr ""
1710
+
1711
+ #: core/helpers/helper-form-templates.php:1210
1712
+ msgid "Lao People's Democratic Republic"
1713
  msgstr ""
1714
 
1715
+ #: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:343
1716
  msgid "Lebanon"
1717
  msgstr ""
1718
 
1719
+ #: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:404
1720
  msgid "Saint Lucia"
1721
  msgstr ""
1722
 
1723
+ #: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:347
1724
  msgid "Liechtenstein"
1725
  msgstr ""
1726
 
1727
+ #: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:421
1728
  msgid "Sri Lanka"
1729
  msgstr ""
1730
 
1731
+ #: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:345
1732
  msgid "Liberia"
1733
  msgstr ""
1734
 
1735
+ #: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:344
1736
  msgid "Lesotho"
1737
  msgstr ""
1738
 
1739
+ #: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:348
1740
  msgid "Lithuania"
1741
  msgstr ""
1742
 
1743
+ #: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:349
1744
  msgid "Luxembourg"
1745
  msgstr ""
1746
 
1747
+ #: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:342
1748
  msgid "Latvia"
1749
  msgstr ""
1750
 
1751
+ #: core/helpers/helper-form-templates.php:1220
1752
+ msgid "Libya"
1753
  msgstr ""
1754
 
1755
+ #: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:369
1756
  msgid "Morocco"
1757
  msgstr ""
1758
 
1759
+ #: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:366
1760
  msgid "Monaco"
1761
  msgstr ""
1762
 
1763
+ #: core/helpers/helper-form-templates.php:1223 core/helpers/helper-misc.php:365
1764
  msgid "Moldova, Republic of"
1765
  msgstr ""
1766
 
1767
+ #: core/helpers/helper-form-templates.php:1224
1768
  msgid "Montenegro"
1769
  msgstr ""
1770
 
1771
+ #: core/helpers/helper-form-templates.php:1225
1772
+ msgid "Saint Martin (French part)"
1773
+ msgstr ""
1774
+
1775
+ #: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:352
1776
  msgid "Madagascar"
1777
  msgstr ""
1778
 
1779
+ #: core/helpers/helper-form-templates.php:1227 core/helpers/helper-misc.php:358
1780
  msgid "Marshall Islands"
1781
  msgstr ""
1782
 
1783
+ #: core/helpers/helper-form-templates.php:1228
1784
+ msgid "North Macedonia, Republic of"
1785
  msgstr ""
1786
 
1787
+ #: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:356
1788
  msgid "Mali"
1789
  msgstr ""
1790
 
1791
+ #: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:371
1792
  msgid "Myanmar"
1793
  msgstr ""
1794
 
1795
+ #: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:367
1796
  msgid "Mongolia"
1797
  msgstr ""
1798
 
1799
+ #: core/helpers/helper-form-templates.php:1232
1800
+ msgid "Macao"
1801
  msgstr ""
1802
 
1803
+ #: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:384
1804
  msgid "Northern Mariana Islands"
1805
  msgstr ""
1806
 
1807
+ #: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:359
1808
+ msgid "Martinique"
1809
+ msgstr ""
1810
+
1811
+ #: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:360
1812
  msgid "Mauritania"
1813
  msgstr ""
1814
 
1815
+ #: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:368
1816
  msgid "Montserrat"
1817
  msgstr ""
1818
 
1819
+ #: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:357
1820
  msgid "Malta"
1821
  msgstr ""
1822
 
1823
+ #: core/helpers/helper-form-templates.php:1238 core/helpers/helper-misc.php:361
1824
  msgid "Mauritius"
1825
  msgstr ""
1826
 
1827
+ #: core/helpers/helper-form-templates.php:1239 core/helpers/helper-misc.php:355
1828
  msgid "Maldives"
1829
  msgstr ""
1830
 
1831
+ #: core/helpers/helper-form-templates.php:1240 core/helpers/helper-misc.php:353
1832
  msgid "Malawi"
1833
  msgstr ""
1834
 
1835
+ #: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:363
1836
  msgid "Mexico"
1837
  msgstr ""
1838
 
1839
+ #: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:354
1840
  msgid "Malaysia"
1841
  msgstr ""
1842
 
1843
+ #: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:370
1844
  msgid "Mozambique"
1845
  msgstr ""
1846
 
1847
+ #: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:372
1848
  msgid "Namibia"
1849
  msgstr ""
1850
 
1851
+ #: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:377
1852
  msgid "New Caledonia"
1853
  msgstr ""
1854
 
1855
+ #: core/helpers/helper-form-templates.php:1246 core/helpers/helper-misc.php:380
1856
  msgid "Niger"
1857
  msgstr ""
1858
 
1859
+ #: core/helpers/helper-form-templates.php:1247 core/helpers/helper-misc.php:383
1860
+ msgid "Norfolk Island"
1861
+ msgstr ""
1862
+
1863
+ #: core/helpers/helper-form-templates.php:1248 core/helpers/helper-misc.php:381
1864
  msgid "Nigeria"
1865
  msgstr ""
1866
 
1867
+ #: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:379
1868
  msgid "Nicaragua"
1869
  msgstr ""
1870
 
1871
+ #: core/helpers/helper-form-templates.php:1250 core/helpers/helper-misc.php:375
1872
  msgid "Netherlands"
1873
  msgstr ""
1874
 
1875
+ #: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:385
1876
  msgid "Norway"
1877
  msgstr ""
1878
 
1879
+ #: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:374
1880
  msgid "Nepal"
1881
  msgstr ""
1882
 
1883
+ #: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:373
1884
  msgid "Nauru"
1885
  msgstr ""
1886
 
1887
+ #: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:382
1888
  msgid "Niue"
1889
  msgstr ""
1890
 
1891
+ #: core/helpers/helper-form-templates.php:1255 core/helpers/helper-misc.php:378
1892
  msgid "New Zealand"
1893
  msgstr ""
1894
 
1895
+ #: core/helpers/helper-form-templates.php:1256 core/helpers/helper-misc.php:386
1896
  msgid "Oman"
1897
  msgstr ""
1898
 
1899
+ #: core/helpers/helper-form-templates.php:1257 core/helpers/helper-misc.php:389
1900
  msgid "Panama"
1901
  msgstr ""
1902
 
1903
+ #: core/helpers/helper-form-templates.php:1258 core/helpers/helper-misc.php:392
1904
  msgid "Peru"
1905
  msgstr ""
1906
 
1907
+ #: core/helpers/helper-form-templates.php:1259 core/helpers/helper-misc.php:300
1908
  msgid "French Polynesia"
1909
  msgstr ""
1910
 
1911
+ #: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:390
1912
  msgid "Papua New Guinea"
1913
  msgstr ""
1914
 
1915
+ #: core/helpers/helper-form-templates.php:1261 core/helpers/helper-misc.php:393
1916
  msgid "Philippines"
1917
  msgstr ""
1918
 
1919
+ #: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:387
1920
  msgid "Pakistan"
1921
  msgstr ""
1922
 
1923
+ #: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:395
1924
  msgid "Poland"
1925
  msgstr ""
1926
 
1927
+ #: core/helpers/helper-form-templates.php:1264
1928
  msgid "Saint Pierre and Miquelon"
1929
  msgstr ""
1930
 
1931
+ #: core/helpers/helper-form-templates.php:1265 core/helpers/helper-misc.php:397
1932
+ msgid "Puerto Rico"
1933
  msgstr ""
1934
 
1935
+ #: core/helpers/helper-form-templates.php:1266
1936
+ msgid "Palestinian Territory, Occupied"
1937
+ msgstr ""
1938
+
1939
+ #: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:396
1940
  msgid "Portugal"
1941
  msgstr ""
1942
 
1943
+ #: core/helpers/helper-form-templates.php:1268 core/helpers/helper-misc.php:388
1944
  msgid "Palau"
1945
  msgstr ""
1946
 
1947
+ #: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:391
1948
  msgid "Paraguay"
1949
  msgstr ""
1950
 
1951
+ #: core/helpers/helper-form-templates.php:1270 core/helpers/helper-misc.php:398
1952
  msgid "Qatar"
1953
  msgstr ""
1954
 
1955
+ #: core/helpers/helper-form-templates.php:1271 core/helpers/helper-misc.php:399
1956
+ msgid "Reunion"
1957
+ msgstr ""
1958
+
1959
+ #: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:400
1960
  msgid "Romania"
1961
  msgstr ""
1962
 
1963
+ #: core/helpers/helper-form-templates.php:1273
1964
  msgid "Serbia"
1965
  msgstr ""
1966
 
1967
+ #: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:401
1968
  msgid "Russian Federation"
1969
  msgstr ""
1970
 
1971
+ #: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:402
1972
  msgid "Rwanda"
1973
  msgstr ""
1974
 
1975
+ #: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:409
1976
  msgid "Saudi Arabia"
1977
  msgstr ""
1978
 
1979
+ #: core/helpers/helper-form-templates.php:1277 core/helpers/helper-misc.php:416
1980
  msgid "Solomon Islands"
1981
  msgstr ""
1982
 
1983
+ #: core/helpers/helper-form-templates.php:1278 core/helpers/helper-misc.php:411
1984
  msgid "Seychelles"
1985
  msgstr ""
1986
 
1987
+ #: core/helpers/helper-form-templates.php:1279 core/helpers/helper-misc.php:424
1988
  msgid "Sudan"
1989
  msgstr ""
1990
 
1991
+ #: core/helpers/helper-form-templates.php:1280 core/helpers/helper-misc.php:428
1992
  msgid "Sweden"
1993
  msgstr ""
1994
 
1995
+ #: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:413
1996
  msgid "Singapore"
1997
  msgstr ""
1998
 
1999
+ #: core/helpers/helper-form-templates.php:1282
2000
+ #: core/helpers/helper-form-templates.php:1297
2001
  msgid "Saint Helena"
2002
  msgstr ""
2003
 
2004
+ #: core/helpers/helper-form-templates.php:1283 core/helpers/helper-misc.php:415
2005
  msgid "Slovenia"
2006
  msgstr ""
2007
 
2008
+ #: core/helpers/helper-form-templates.php:1284
2009
+ msgid "Svalbard and Jan Mayen"
2010
+ msgstr ""
2011
+
2012
+ #: core/helpers/helper-form-templates.php:1285
2013
  msgid "Slovakia"
2014
  msgstr ""
2015
 
2016
+ #: core/helpers/helper-form-templates.php:1286 core/helpers/helper-misc.php:412
2017
  msgid "Sierra Leone"
2018
  msgstr ""
2019
 
2020
+ #: core/helpers/helper-form-templates.php:1287 core/helpers/helper-misc.php:407
2021
  msgid "San Marino"
2022
  msgstr ""
2023
 
2024
+ #: core/helpers/helper-form-templates.php:1288 core/helpers/helper-misc.php:410
2025
  msgid "Senegal"
2026
  msgstr ""
2027
 
2028
+ #: core/helpers/helper-form-templates.php:1289 core/helpers/helper-misc.php:417
2029
  msgid "Somalia"
2030
  msgstr ""
2031
 
2032
+ #: core/helpers/helper-form-templates.php:1290 core/helpers/helper-misc.php:425
2033
  msgid "Suriname"
2034
  msgstr ""
2035
 
2036
+ #: core/helpers/helper-form-templates.php:1291
2037
+ msgid "South Sudan"
2038
+ msgstr ""
2039
+
2040
+ #: core/helpers/helper-form-templates.php:1292 core/helpers/helper-misc.php:408
2041
  msgid "Sao Tome and Principe"
2042
  msgstr ""
2043
 
2044
+ #: core/helpers/helper-form-templates.php:1293 core/helpers/helper-misc.php:288
2045
  msgid "El Salvador"
2046
  msgstr ""
2047
 
2048
+ #: core/helpers/helper-form-templates.php:1294
2049
+ msgid "Sint Maarten (Dutch part)"
2050
+ msgstr ""
2051
+
2052
+ #: core/helpers/helper-form-templates.php:1295 core/helpers/helper-misc.php:430
2053
  msgid "Syrian Arab Republic"
2054
  msgstr ""
2055
 
2056
+ #: core/helpers/helper-form-templates.php:1296
2057
+ msgid "Eswatini"
2058
  msgstr ""
2059
 
2060
+ #: core/helpers/helper-form-templates.php:1298 core/helpers/helper-misc.php:442
2061
  msgid "Turks and Caicos Islands"
2062
  msgstr ""
2063
 
2064
+ #: core/helpers/helper-form-templates.php:1299 core/helpers/helper-misc.php:265
2065
  msgid "Chad"
2066
  msgstr ""
2067
 
2068
+ #: core/helpers/helper-form-templates.php:1300 core/helpers/helper-misc.php:435
2069
  msgid "Togo"
2070
  msgstr ""
2071
 
2072
+ #: core/helpers/helper-form-templates.php:1301 core/helpers/helper-misc.php:434
2073
  msgid "Thailand"
2074
  msgstr ""
2075
 
2076
+ #: core/helpers/helper-form-templates.php:1302 core/helpers/helper-misc.php:432
2077
  msgid "Tajikistan"
2078
  msgstr ""
2079
 
2080
+ #: core/helpers/helper-form-templates.php:1303 core/helpers/helper-misc.php:436
2081
  msgid "Tokelau"
2082
  msgstr ""
2083
 
2084
+ #: core/helpers/helper-form-templates.php:1304
2085
+ msgid "Timor-Leste"
2086
  msgstr ""
2087
 
2088
+ #: core/helpers/helper-form-templates.php:1305 core/helpers/helper-misc.php:441
2089
  msgid "Turkmenistan"
2090
  msgstr ""
2091
 
2092
+ #: core/helpers/helper-form-templates.php:1306 core/helpers/helper-misc.php:439
2093
  msgid "Tunisia"
2094
  msgstr ""
2095
 
2096
+ #: core/helpers/helper-form-templates.php:1307 core/helpers/helper-misc.php:437
2097
  msgid "Tonga"
2098
  msgstr ""
2099
 
2100
+ #: core/helpers/helper-form-templates.php:1308 core/helpers/helper-misc.php:440
2101
  msgid "Turkey"
2102
  msgstr ""
2103
 
2104
+ #: core/helpers/helper-form-templates.php:1309 core/helpers/helper-misc.php:438
2105
  msgid "Trinidad and Tobago"
2106
  msgstr ""
2107
 
2108
+ #: core/helpers/helper-form-templates.php:1310 core/helpers/helper-misc.php:443
2109
  msgid "Tuvalu"
2110
  msgstr ""
2111
 
2112
+ #: core/helpers/helper-form-templates.php:1311
2113
+ msgid "Taiwan"
2114
  msgstr ""
2115
 
2116
+ #: core/helpers/helper-form-templates.php:1312 core/helpers/helper-misc.php:433
2117
  msgid "Tanzania, United Republic of"
2118
  msgstr ""
2119
 
2120
+ #: core/helpers/helper-form-templates.php:1313 core/helpers/helper-misc.php:445
2121
  msgid "Ukraine"
2122
  msgstr ""
2123
 
2124
+ #: core/helpers/helper-form-templates.php:1314 core/helpers/helper-misc.php:444
2125
  msgid "Uganda"
2126
  msgstr ""
2127
 
2128
+ #: core/helpers/helper-form-templates.php:1315
2129
+ msgid "United States of America"
 
 
 
 
2130
  msgstr ""
2131
 
2132
+ #: core/helpers/helper-form-templates.php:1316 core/helpers/helper-misc.php:450
2133
  msgid "Uruguay"
2134
  msgstr ""
2135
 
2136
+ #: core/helpers/helper-form-templates.php:1317 core/helpers/helper-misc.php:451
2137
  msgid "Uzbekistan"
2138
  msgstr ""
2139
 
2140
+ #: core/helpers/helper-form-templates.php:1318 core/helpers/helper-misc.php:319
2141
+ msgid "Holy See (Vatican City State)"
2142
+ msgstr ""
2143
+
2144
+ #: core/helpers/helper-form-templates.php:1319 core/helpers/helper-misc.php:405
2145
  msgid "Saint Vincent and the Grenadines"
2146
  msgstr ""
2147
 
2148
+ #: core/helpers/helper-form-templates.php:1320 core/helpers/helper-misc.php:453
2149
  msgid "Venezuela"
2150
  msgstr ""
2151
 
2152
+ #: core/helpers/helper-form-templates.php:1321
2153
  msgid "Virgin Islands, British"
2154
  msgstr ""
2155
 
2156
+ #: core/helpers/helper-form-templates.php:1322
2157
  msgid "Virgin Islands, U.S."
2158
  msgstr ""
2159
 
2160
+ #: core/helpers/helper-form-templates.php:1323 core/helpers/helper-misc.php:454
2161
  msgid "Vietnam"
2162
  msgstr ""
2163
 
2164
+ #: core/helpers/helper-form-templates.php:1324 core/helpers/helper-misc.php:452
2165
  msgid "Vanuatu"
2166
  msgstr ""
2167
 
2168
+ #: core/helpers/helper-form-templates.php:1325
2169
  msgid "Wallis and Futuna"
2170
  msgstr ""
2171
 
2172
+ #: core/helpers/helper-form-templates.php:1326 core/helpers/helper-misc.php:406
2173
  msgid "Samoa"
2174
  msgstr ""
2175
 
2176
+ #: core/helpers/helper-form-templates.php:1327
2177
+ msgid "Kosovo"
2178
+ msgstr ""
2179
+
2180
+ #: core/helpers/helper-form-templates.php:1328 core/helpers/helper-misc.php:459
2181
  msgid "Yemen"
2182
  msgstr ""
2183
 
2184
+ #: core/helpers/helper-form-templates.php:1329 core/helpers/helper-misc.php:362
2185
  msgid "Mayotte"
2186
  msgstr ""
2187
 
2188
+ #: core/helpers/helper-form-templates.php:1330 core/helpers/helper-misc.php:418
2189
  msgid "South Africa"
2190
  msgstr ""
2191
 
2192
+ #: core/helpers/helper-form-templates.php:1331 core/helpers/helper-misc.php:461
2193
  msgid "Zambia"
2194
  msgstr ""
2195
 
2196
+ #: core/helpers/helper-form-templates.php:1332 core/helpers/helper-misc.php:462
2197
  msgid "Zimbabwe"
2198
  msgstr ""
2199
 
2201
  msgid "Thank you for creating with"
2202
  msgstr ""
2203
 
2204
+ #: core/helpers/helper-misc.php:231
2205
+ msgid "Antarctica"
2206
+ msgstr ""
2207
+
2208
  #: core/helpers/helper-misc.php:250
2209
  msgid "Bosnia and Herzegowina"
2210
  msgstr ""
2213
  msgid "Bouvet Island"
2214
  msgstr ""
2215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2216
  #: core/helpers/helper-misc.php:276
2217
  msgid "Ivory Coast"
2218
  msgstr ""
2225
  msgid "East Timor"
2226
  msgstr ""
2227
 
 
 
 
 
2228
  #: core/helpers/helper-misc.php:298
2229
  msgid "France Metropolitan"
2230
  msgstr ""
2231
 
 
 
 
 
2232
  #: core/helpers/helper-misc.php:301
2233
  msgid "French Southern Territories"
2234
  msgstr ""
2235
 
 
 
 
 
 
 
 
 
2236
  #: core/helpers/helper-misc.php:318
2237
  msgid "Heard and Mc Donald Islands"
2238
  msgstr ""
2239
 
 
 
 
 
2240
  #: core/helpers/helper-misc.php:326
2241
  msgid "Iran (Islamic Republic of)"
2242
  msgstr ""
2243
 
 
 
 
 
2244
  #: core/helpers/helper-misc.php:337
2245
  msgid "Korea, Democratic People's Republic of"
2246
  msgstr ""
2253
  msgid "Lao, People's Democratic Republic"
2254
  msgstr ""
2255
 
2256
+ #: core/helpers/helper-misc.php:346
2257
+ msgid "Libyan Arab Jamahiriya"
2258
  msgstr ""
2259
 
2260
+ #: core/helpers/helper-misc.php:350
2261
+ msgid "Macau"
2262
  msgstr ""
2263
 
2264
+ #: core/helpers/helper-misc.php:351
2265
+ msgid "Macedonia, The Former Yugoslav Republic of"
2266
  msgstr ""
2267
 
2268
+ #: core/helpers/helper-misc.php:376
2269
+ msgid "Netherlands Antilles"
2270
  msgstr ""
2271
 
2272
+ #: core/helpers/helper-misc.php:394
2273
+ msgid "Pitcairn"
2274
  msgstr ""
2275
 
2276
  #: core/helpers/helper-misc.php:414
2293
  msgid "Svalbard and Jan Mayen Islands"
2294
  msgstr ""
2295
 
2296
+ #: core/helpers/helper-misc.php:427
2297
+ msgid "Swaziland"
2298
+ msgstr ""
2299
+
2300
+ #: core/helpers/helper-misc.php:431
2301
+ msgid "Taiwan, Province of China"
2302
+ msgstr ""
2303
+
2304
+ #: core/helpers/helper-misc.php:448
2305
+ msgid "United States"
2306
+ msgstr ""
2307
+
2308
  #: core/helpers/helper-misc.php:449
2309
  msgid "United States Minor Outlying Islands"
2310
  msgstr ""
2321
  msgid "Wallis and Futuna Islands"
2322
  msgstr ""
2323
 
 
 
 
 
2324
  #: core/helpers/helper-misc.php:460
2325
  msgid "Yugoslavia"
2326
  msgstr ""
2874
  msgstr ""
2875
 
2876
  #: core/helpers/helper-misc.php:931
2877
+ #: core/templates/parts/customize-checkbox.php:61
2878
+ #: core/templates/parts/customize-checkbox.php:71
2879
+ #: core/templates/parts/customize-radio.php:56
2880
  msgid "Full"
2881
  msgstr ""
2882
 
2883
  #: core/helpers/helper-misc.php:932
2884
+ #: core/templates/parts/customize-checkbox.php:62
2885
+ #: core/templates/parts/customize-checkbox.php:72
2886
+ #: core/templates/parts/customize-radio.php:57
2887
  msgid "Half"
2888
  msgstr ""
2889
 
2890
  #: core/helpers/helper-misc.php:933
2891
+ #: core/templates/parts/customize-checkbox.php:63
2892
+ #: core/templates/parts/customize-checkbox.php:73
2893
+ #: core/templates/parts/customize-radio.php:58
2894
  msgid "Third"
2895
  msgstr ""
2896
 
2897
  #: core/helpers/helper-misc.php:934
2898
+ #: core/templates/parts/customize-checkbox.php:64
2899
+ #: core/templates/parts/customize-radio.php:59
2900
  msgid "Quarter"
2901
  msgstr ""
2902
 
2903
  #: core/helpers/helper-misc.php:935
2904
+ #: core/templates/parts/customize-checkbox.php:65
2905
+ #: core/templates/parts/customize-checkbox.php:74
2906
+ #: core/templates/parts/customize-radio.php:60
2907
  msgid "Auto"
2908
  msgstr ""
2909
 
2910
  #: core/helpers/helper-misc.php:940
2911
+ #: core/templates/parts/customize-checkbox.php:79
2912
  msgid "Apply to all fields"
2913
  msgstr ""
2914
 
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:113
2986
+ #: core/templates/parts/customize-radio.php:96
2987
+ #: core/templates/parts/customize-select.php:94
2988
  msgid "Delete"
2989
  msgstr ""
2990
 
2993
  msgstr ""
2994
 
2995
  #: core/templates/customize-form-part-footer.php:5
2996
+ #: core/templates/parts/customize-checkbox.php:114
2997
+ #: core/templates/parts/customize-radio.php:97
2998
+ #: core/templates/parts/customize-select.php:95
2999
  msgid "More"
3000
  msgstr ""
3001
 
3053
  msgid "Close"
3054
  msgstr ""
3055
 
3056
+ #: core/templates/parts/customize-checkbox.php:16
3057
+ #: core/templates/parts/customize-checkbox.php:20
3058
+ #: core/templates/parts/customize-radio.php:16
3059
+ #: core/templates/parts/customize-radio.php:20
3060
+ #: core/templates/parts/customize-select.php:20
3061
+ #: core/templates/parts/customize-select.php:24
3062
+ msgid "Choices"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3063
  msgstr ""
3064
 
3065
+ #: core/templates/parts/customize-checkbox.php:17
3066
+ #: core/templates/parts/customize-radio.php:17
3067
+ #: core/templates/parts/customize-select.php:21
3068
+ msgid "No choices added yet. Add one by clicking <i>Add Choice</i> below."
 
 
 
 
3069
  msgstr ""
3070
 
3071
  #: core/templates/parts/customize-checkbox.php:21
 
 
 
3072
  #: core/templates/parts/customize-radio.php:21
3073
  #: core/templates/parts/customize-select.php:25
3074
+ msgid "Type or paste your choices here, adding each on a new line."
 
 
 
 
 
 
 
 
 
 
 
3075
  msgstr ""
3076
 
3077
  #: core/templates/parts/customize-checkbox.php:24
 
 
 
3078
  #: core/templates/parts/customize-radio.php:24
3079
  #: core/templates/parts/customize-select.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3080
  msgid "Add choice"
3081
  msgstr ""
3082
 
3083
+ #: core/templates/parts/customize-checkbox.php:26
3084
+ #: core/templates/parts/customize-radio.php:26
3085
+ #: core/templates/parts/customize-select.php:30
3086
  msgid "Or, bulk add choices"
3087
  msgstr ""
3088
 
3089
+ #: core/templates/parts/customize-checkbox.php:30
3090
+ #: core/templates/parts/customize-radio.php:30
3091
+ #: core/templates/parts/customize-select.php:34
3092
  msgid "Add choices"
3093
  msgstr ""
3094
 
3095
+ #: core/templates/parts/customize-checkbox.php:32
3096
+ #: core/templates/parts/customize-radio.php:32
3097
+ #: core/templates/parts/customize-select.php:36
3098
  msgid "Cancel"
3099
  msgstr ""
3100
 
3101
+ #: core/templates/parts/customize-checkbox.php:37
3102
+ #: core/templates/parts/customize-email.php:20
3103
+ #: core/templates/parts/customize-multi-line-text.php:20
3104
+ #: core/templates/parts/customize-number.php:30
3105
+ #: core/templates/parts/customize-radio.php:37
3106
+ #: core/templates/parts/customize-select.php:41
3107
+ #: core/templates/parts/customize-single-line-text.php:20
3108
  msgid "This is required"
3109
  msgstr ""
3110
 
3111
+ #: core/templates/parts/customize-checkbox.php:48
3112
  msgid "Add 'select all' choice"
3113
  msgstr ""
3114
 
3115
+ #: core/templates/parts/customize-checkbox.php:52
3116
+ #: core/templates/parts/customize-radio.php:47
3117
  msgid "Choices display"
3118
  msgstr ""
3119
 
3120
+ #: core/templates/parts/customize-checkbox.php:54
3121
+ #: core/templates/parts/customize-radio.php:49
3122
  msgid "Horizontal"
3123
  msgstr ""
3124
 
3125
+ #: core/templates/parts/customize-checkbox.php:55
3126
+ #: core/templates/parts/customize-radio.php:50
3127
  msgid "Vertical"
3128
  msgstr ""
3129
 
3130
+ #: core/templates/parts/customize-checkbox.php:59
3131
+ #: core/templates/parts/customize-radio.php:54
3132
  msgid "Choices width"
3133
  msgstr ""
3134
 
3135
+ #: core/templates/parts/customize-checkbox.php:86
3136
+ #: core/templates/parts/customize-email.php:60
3137
+ #: core/templates/parts/customize-multi-line-text.php:69
3138
+ #: core/templates/parts/customize-number.php:81
3139
+ #: core/templates/parts/customize-radio.php:67
3140
+ #: core/templates/parts/customize-select.php:67
3141
+ #: core/templates/parts/customize-single-line-text.php:44
3142
  msgid "CSS classes"
3143
  msgstr ""
3144
 
3145
+ #: core/templates/parts/customize-checkbox.php:109
3146
+ #: core/templates/parts/customize-radio.php:92
3147
+ #: core/templates/parts/customize-select.php:90
3148
  msgid "Make this choice default"
3149
  msgstr ""
3150
 
3151
+ #: core/templates/parts/customize-email.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3152
  msgid "Suggest common email domains"
3153
  msgstr ""
3154
 
3155
+ #: core/templates/parts/customize-email.php:36
3156
+ #: core/templates/parts/customize-number.php:56
3157
  msgid "Require confirmation"
3158
  msgstr ""
3159
 
3160
+ #: core/templates/parts/customize-email.php:41
3161
+ #: core/templates/parts/customize-number.php:61
3162
  msgid "'Confirmation' label"
3163
  msgstr ""
3164
 
3165
+ #: core/templates/parts/customize-email.php:45
3166
+ #: core/templates/parts/customize-number.php:65
3167
  msgid "'Confirmation' placeholder"
3168
  msgstr ""
3169
 
3170
+ #: core/templates/parts/customize-email.php:51
3171
+ #: core/templates/parts/customize-number.php:74
3172
+ #: core/templates/parts/customize-single-line-text.php:35
3173
  msgid "Suffix"
3174
  msgstr ""
3175
 
3176
+ #: core/templates/parts/customize-multi-line-text.php:31
3177
  msgid "Limit words/characters"
3178
  msgstr ""
3179
 
3180
+ #: core/templates/parts/customize-multi-line-text.php:37
3181
  msgid "Limit"
3182
  msgstr ""
3183
 
3184
+ #: core/templates/parts/customize-multi-line-text.php:41
3185
  msgid "Count"
3186
  msgstr ""
3187
 
3188
+ #: core/templates/parts/customize-multi-line-text.php:44
3189
  msgid "Min words"
3190
  msgstr ""
3191
 
3192
+ #: core/templates/parts/customize-multi-line-text.php:45
3193
  msgid "Max characters"
3194
  msgstr ""
3195
 
3196
+ #: core/templates/parts/customize-multi-line-text.php:50
3197
  msgid "'Characters' label"
3198
  msgstr ""
3199
 
3200
+ #: core/templates/parts/customize-multi-line-text.php:54
3201
  msgid "'Words' label"
3202
  msgstr ""
3203
 
3204
+ #: core/templates/parts/customize-multi-line-text.php:60
3205
  msgid "Rows"
3206
  msgstr ""
3207
 
3208
+ #: core/templates/parts/customize-number.php:20
3209
  msgid "Min number"
3210
  msgstr ""
3211
 
3212
+ #: core/templates/parts/customize-number.php:24
3213
  msgid "Max number"
3214
  msgstr ""
3215
 
3216
+ #: core/templates/parts/customize-number.php:41
3217
  msgid "Use number separators"
3218
  msgstr ""
3219
 
3220
+ #: core/templates/parts/customize-number.php:46
3221
  msgid "Grouping"
3222
  msgstr ""
3223
 
3224
+ #: core/templates/parts/customize-number.php:50
3225
  msgid "Decimal"
3226
  msgstr ""
3227
 
3228
+ #: core/templates/parts/customize-number.php:70
3229
+ #: core/templates/parts/customize-single-line-text.php:30
3230
  msgid "Prefix"
3231
  msgstr ""
3232
 
3233
+ #: core/templates/parts/customize-select.php:52
3234
  msgid "Make searchable"
3235
  msgstr ""
3236
 
3237
+ #: core/templates/parts/customize-select.php:57
3238
  msgid "'No results' label"
3239
  msgstr ""
3240
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
5
  Requires at least: 4.8
6
  Tested up to: 5.5.1
7
  Requires PHP: 5.3
8
- Stable tag: 1.9.22
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -97,6 +97,16 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
97
 
98
  == Changelog ==
99
 
 
 
 
 
 
 
 
 
 
 
100
  = 1.9.22 =
101
  * Bugfix: Rich text editors in field configuration widgets were misbehaving after a drag and drop operation.
102
  * Bugfix: A Block Editor block parameter was triggering errors on WordPress >= 5.5.
@@ -660,6 +670,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
660
 
661
  == Upgrade Notice ==
662
 
 
 
 
663
  = 1.9.22 =
664
  * Minor bugfixes.
665
 
5
  Requires at least: 4.8
6
  Tested up to: 5.5.1
7
  Requires PHP: 5.3
8
+ Stable tag: 1.9.23
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
97
 
98
  == Changelog ==
99
 
100
+ = 1.9.23 =
101
+ * Improvement: "Label display" control was made global and moved to Style step.
102
+ * Improvement: "Description display" control was made global and moved to Style step.
103
+ * Improvement: Empty labels were triggering usability errors on common usability check tools.
104
+ * Bugfix: HappyForms block wasn't remembering the selected form.
105
+ * Bugfix: Email messages were being sent with empty headers in some cases.
106
+ * Bugfix: Single Choice "Make this choice default" was misbehaving.
107
+ * Bugfix: Archived and trashed forms were being displayed in shortcode/block form selection dropdown.
108
+ * Bugfix: Output buffering was causing errors in Oxygen Builder.
109
+
110
  = 1.9.22 =
111
  * Bugfix: Rich text editors in field configuration widgets were misbehaving after a drag and drop operation.
112
  * Bugfix: A Block Editor block parameter was triggering errors on WordPress >= 5.5.
670
 
671
  == Upgrade Notice ==
672
 
673
+ = 1.9.23 =
674
+ * Style controls improvements, miscellaneous bugfixes.
675
+
676
  = 1.9.22 =
677
  * Minor bugfixes.
678