Formidable Forms – Form Builder for WordPress - Version 5.0.01

Version Description

  • New: Updated styling and icons in the back end builder.
  • New: Added search to form fields in the builder to make finding a specific field easier.
  • Fix: Toggling a page to collapse was not working properly, causing the first page break to collapse the whole page and the other page break fields to do nothing.
  • Fix: Added truncation to long form keys during duplication to avoid issues with duplicating when the generated key was too long.
Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Formidable Forms – Form Builder for WordPress
Version 5.0.01
Comparing to
See all releases

Code changes from version 5.0 to 5.0.01

Files changed (64) hide show
  1. classes/controllers/FrmFormActionsController.php +0 -0
  2. classes/controllers/FrmHooksController.php +0 -0
  3. classes/controllers/FrmStylesController.php +0 -0
  4. classes/helpers/FrmAppHelper.php +22 -3
  5. classes/helpers/FrmEntriesListHelper.php +0 -0
  6. classes/helpers/FrmFieldsHelper.php +1 -1
  7. classes/helpers/FrmFormActionsHelper.php +0 -0
  8. classes/helpers/FrmFormsListHelper.php +0 -0
  9. classes/helpers/FrmStylesHelper.php +0 -0
  10. classes/models/FrmFormAction.php +0 -0
  11. classes/models/FrmStyle.php +0 -0
  12. classes/views/frm-entries/_sidebar-shared-pub.php +0 -0
  13. classes/views/frm-entries/show.php +0 -0
  14. classes/views/frm-entries/sidebar-shared.php +0 -0
  15. classes/views/frm-entries/sidebar-show.php +0 -0
  16. classes/views/frm-fields/show-build.php +0 -0
  17. classes/views/frm-form-actions/_action_inside.php +0 -0
  18. classes/views/frm-form-actions/_email_settings.php +0 -0
  19. classes/views/frm-form-actions/default_actions.php +0 -0
  20. classes/views/frm-form-actions/email_action.php +0 -0
  21. classes/views/frm-form-actions/form_action.php +0 -0
  22. classes/views/frm-forms/_publish_box.php +0 -0
  23. classes/views/frm-forms/add_field_links.php +14 -5
  24. classes/views/frm-forms/shortcode_opts.php +0 -0
  25. classes/views/shared/mb_adv_info.php +0 -0
  26. classes/views/styles/_buttons.php +0 -0
  27. classes/views/styles/_check-box-radio-fields.php +0 -0
  28. classes/views/styles/_field-colors.php +0 -0
  29. classes/views/styles/_field-description.php +0 -0
  30. classes/views/styles/_field-labels.php +0 -0
  31. classes/views/styles/_field-sizes.php +0 -0
  32. classes/views/styles/_form-messages.php +0 -0
  33. classes/views/styles/_general.php +0 -0
  34. classes/views/styles/_sample_form.php +0 -0
  35. classes/views/styles/custom_css.php +0 -0
  36. classes/views/styles/manage.php +0 -0
  37. classes/views/styles/show.php +0 -0
  38. classes/views/xml/posts_xml.php +0 -0
  39. css/_single_theme.css.php +0 -0
  40. css/codemirror.css +0 -0
  41. css/custom_theme.css.php +0 -0
  42. css/font_icons.css +0 -0
  43. css/frm_admin.css +35 -28
  44. formidable.php +1 -1
  45. images/icons.svg +13 -37
  46. js/codemirror/codemirror.js +0 -0
  47. js/codemirror/css.js +0 -0
  48. js/formidable_admin.js +24 -2
  49. js/formidable_admin_global.js +0 -0
  50. languages/formidable-az_AZ.mo +0 -0
  51. languages/formidable-az_AZ.po +0 -0
  52. languages/formidable-hu_HU.mo +0 -0
  53. languages/formidable-hu_HU.po +0 -0
  54. languages/formidable-it_IT.po +0 -0
  55. languages/formidable-ja.mo +0 -0
  56. languages/formidable-ja.po +0 -0
  57. languages/formidable-js-strings.php +59 -0
  58. languages/formidable-nb_NO.mo +0 -0
  59. languages/formidable-nb_NO.po +0 -0
  60. languages/formidable-pl_PL.po +0 -0
  61. languages/formidable-ro_RO.mo +0 -0
  62. languages/formidable-ro_RO.po +0 -0
  63. languages/formidable.pot +156 -152
  64. readme.txt +7 -8
classes/controllers/FrmFormActionsController.php CHANGED
File without changes
classes/controllers/FrmHooksController.php CHANGED
File without changes
classes/controllers/FrmStylesController.php CHANGED
File without changes
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '5.0';
15
 
16
  /**
17
  * @since 1.07.02
@@ -1585,8 +1585,8 @@ class FrmAppHelper {
1585
  * @param string $name
1586
  * @param string $table_name
1587
  * @param string $column
1588
- * @param int $id
1589
- * @param int $num_chars
1590
  */
1591
  public static function get_unique_key( $name, $table_name, $column, $id = 0, $num_chars = 5 ) {
1592
  $key = '';
@@ -1611,6 +1611,7 @@ class FrmAppHelper {
1611
  );
1612
 
1613
  if ( $key_check || is_numeric( $key_check ) ) {
 
1614
  // Create a unique field id if it has already been used.
1615
  $key = $key . substr( md5( microtime() . rand() ), 0, 10 );
1616
  }
@@ -1618,6 +1619,24 @@ class FrmAppHelper {
1618
  return $key;
1619
  }
1620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1621
  /**
1622
  * Possibly reset a key to avoid conflicts with column size limits.
1623
  *
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '5.0.01';
15
 
16
  /**
17
  * @since 1.07.02
1585
  * @param string $name
1586
  * @param string $table_name
1587
  * @param string $column
1588
+ * @param int $id
1589
+ * @param int $num_chars
1590
  */
1591
  public static function get_unique_key( $name, $table_name, $column, $id = 0, $num_chars = 5 ) {
1592
  $key = '';
1611
  );
1612
 
1613
  if ( $key_check || is_numeric( $key_check ) ) {
1614
+ $key = self::maybe_truncate_key_before_appending( $column, $key );
1615
  // Create a unique field id if it has already been used.
1616
  $key = $key . substr( md5( microtime() . rand() ), 0, 10 );
1617
  }
1619
  return $key;
1620
  }
1621
 
1622
+ /**
1623
+ * Avoid trying to append to a really long key,
1624
+ * The database limit is 100 for form and field keys so we want to avoid getting too close.
1625
+ *
1626
+ * @param string $column
1627
+ * @param string $key
1628
+ * @return string
1629
+ */
1630
+ private static function maybe_truncate_key_before_appending( $column, $key ) {
1631
+ if ( in_array( $column, array( 'form_key', 'field_key' ), true ) ) {
1632
+ $max_key_length_before_truncating = 60;
1633
+ if ( strlen( $key ) > $max_key_length_before_truncating ) {
1634
+ $key = substr( $key, 0, $max_key_length_before_truncating );
1635
+ }
1636
+ }
1637
+ return $key;
1638
+ }
1639
+
1640
  /**
1641
  * Possibly reset a key to avoid conflicts with column size limits.
1642
  *
classes/helpers/FrmEntriesListHelper.php CHANGED
File without changes
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -1760,7 +1760,7 @@ class FrmFieldsHelper {
1760
  }
1761
 
1762
  ?>
1763
- <li class="frmbutton <?php echo esc_attr( $args['no_allow_class'] . $single_no_allow . ' frm_t' . str_replace( '|', '-', $field_key ) ); ?>" id="<?php echo esc_attr( $field_key ); ?>" data-upgrade="<?php echo esc_attr( $upgrade_label ); ?>" data-message="<?php echo esc_attr( $upgrade_message ); ?>" data-link="<?php echo esc_attr( $link ); ?>" data-medium="builder" data-oneclick="<?php echo esc_attr( $install_data ); ?>" data-content="<?php echo esc_attr( $field_key ); ?>" data-requires="<?php echo esc_attr( $requires ); ?>">
1764
  <?php
1765
  if ( $run_filter ) {
1766
  $field_label = apply_filters( 'frmpro_field_links', $field_label, $args['id'], $field_key );
1760
  }
1761
 
1762
  ?>
1763
+ <li class="frmbutton frm6 <?php echo esc_attr( $args['no_allow_class'] . $single_no_allow . ' frm_t' . str_replace( '|', '-', $field_key ) ); ?>" id="<?php echo esc_attr( $field_key ); ?>" data-upgrade="<?php echo esc_attr( $upgrade_label ); ?>" data-message="<?php echo esc_attr( $upgrade_message ); ?>" data-link="<?php echo esc_attr( $link ); ?>" data-medium="builder" data-oneclick="<?php echo esc_attr( $install_data ); ?>" data-content="<?php echo esc_attr( $field_key ); ?>" data-requires="<?php echo esc_attr( $requires ); ?>">
1764
  <?php
1765
  if ( $run_filter ) {
1766
  $field_label = apply_filters( 'frmpro_field_links', $field_label, $args['id'], $field_key );
classes/helpers/FrmFormActionsHelper.php CHANGED
File without changes
classes/helpers/FrmFormsListHelper.php CHANGED
File without changes
classes/helpers/FrmStylesHelper.php CHANGED
File without changes
classes/models/FrmFormAction.php CHANGED
File without changes
classes/models/FrmStyle.php CHANGED
File without changes
classes/views/frm-entries/_sidebar-shared-pub.php CHANGED
File without changes
classes/views/frm-entries/show.php CHANGED
File without changes
classes/views/frm-entries/sidebar-shared.php CHANGED
File without changes
classes/views/frm-entries/sidebar-show.php CHANGED
File without changes
classes/views/frm-fields/show-build.php CHANGED
File without changes
classes/views/frm-form-actions/_action_inside.php CHANGED
File without changes
classes/views/frm-form-actions/_email_settings.php CHANGED
File without changes
classes/views/frm-form-actions/default_actions.php CHANGED
File without changes
classes/views/frm-form-actions/email_action.php CHANGED
File without changes
classes/views/frm-form-actions/form_action.php CHANGED
File without changes
classes/views/frm-forms/_publish_box.php CHANGED
File without changes
classes/views/frm-forms/add_field_links.php CHANGED
@@ -20,12 +20,21 @@ if ( ! defined( 'ABSPATH' ) ) {
20
  </ul>
21
 
22
  <div id="frm-insert-fields" class="tabs-panel">
23
- <ul class="field_type_list">
 
 
 
 
 
 
 
 
 
24
  <?php
25
  foreach ( $frm_field_selection as $field_key => $field_type ) {
26
  $field_label = FrmFormsHelper::get_field_link_name( $field_type );
27
  ?>
28
- <li class="frmbutton <?php echo esc_attr( ' frm_t' . $field_key ); ?>" id="<?php echo esc_attr( $field_key ); ?>">
29
  <a href="#" class="frm_add_field frm_animate_bg" title="<?php echo esc_html( $field_label ); ?>">
30
  <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
31
  <span><?php echo esc_html( $field_label ); ?></span>
@@ -41,7 +50,7 @@ if ( ! defined( 'ABSPATH' ) ) {
41
  <h3 class="frm-with-line">
42
  <span><?php esc_html_e( 'Advanced Fields', 'formidable' ); ?></span>
43
  </h3>
44
- <ul class="field_type_list">
45
  <?php
46
 
47
  $no_allow_class = apply_filters( 'frm_noallow_class', 'frm_noallow' );
@@ -70,7 +79,7 @@ foreach ( $pro_fields as $field_key => $field_type ) {
70
  $field_label = $field_type['name'];
71
 
72
  ?>
73
- <li class="frmbutton <?php echo esc_attr( $no_allow_class . ' frm_t' . $field_key ); ?> dropdown" id="<?php echo esc_attr( $field_key ); ?>">
74
  <a href="#" id="frm-<?php echo esc_attr( $field_key ); ?>Drop" class="frm-dropdown-toggle" data-toggle="dropdown" title="<?php echo esc_html( $field_label ); ?>">
75
  <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
76
  <span><?php echo esc_html( $field_label ); ?> <b class="caret"></b></span>
@@ -102,7 +111,7 @@ foreach ( $pro_fields as $field_key => $field_type ) {
102
  <h3 class="frm-with-line">
103
  <span><?php esc_html_e( 'Pricing Fields', 'formidable' ); ?></span>
104
  </h3>
105
- <ul class="field_type_list">
106
  <?php
107
  foreach ( $section_fields as $field_key => $field_type ) {
108
  FrmFieldsHelper::show_add_field_buttons( compact( 'field_key', 'field_type', 'id', 'no_allow_class' ) );
20
  </ul>
21
 
22
  <div id="frm-insert-fields" class="tabs-panel">
23
+ <?php
24
+ FrmAppHelper::show_search_box(
25
+ array(
26
+ 'input_id' => 'field-list',
27
+ 'placeholder' => __( 'Search Fields', 'formidable' ),
28
+ 'tosearch' => 'frmbutton',
29
+ )
30
+ );
31
+ ?>
32
+ <ul class="field_type_list frm_grid_container">
33
  <?php
34
  foreach ( $frm_field_selection as $field_key => $field_type ) {
35
  $field_label = FrmFormsHelper::get_field_link_name( $field_type );
36
  ?>
37
+ <li class="frmbutton frm6 <?php echo esc_attr( ' frm_t' . $field_key ); ?>" id="<?php echo esc_attr( $field_key ); ?>">
38
  <a href="#" class="frm_add_field frm_animate_bg" title="<?php echo esc_html( $field_label ); ?>">
39
  <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
40
  <span><?php echo esc_html( $field_label ); ?></span>
50
  <h3 class="frm-with-line">
51
  <span><?php esc_html_e( 'Advanced Fields', 'formidable' ); ?></span>
52
  </h3>
53
+ <ul class="field_type_list frm_grid_container">
54
  <?php
55
 
56
  $no_allow_class = apply_filters( 'frm_noallow_class', 'frm_noallow' );
79
  $field_label = $field_type['name'];
80
 
81
  ?>
82
+ <li class="frmbutton frm6 <?php echo esc_attr( $no_allow_class . ' frm_t' . $field_key ); ?> dropdown" id="<?php echo esc_attr( $field_key ); ?>">
83
  <a href="#" id="frm-<?php echo esc_attr( $field_key ); ?>Drop" class="frm-dropdown-toggle" data-toggle="dropdown" title="<?php echo esc_html( $field_label ); ?>">
84
  <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
85
  <span><?php echo esc_html( $field_label ); ?> <b class="caret"></b></span>
111
  <h3 class="frm-with-line">
112
  <span><?php esc_html_e( 'Pricing Fields', 'formidable' ); ?></span>
113
  </h3>
114
+ <ul class="field_type_list frm_grid_container">
115
  <?php
116
  foreach ( $section_fields as $field_key => $field_type ) {
117
  FrmFieldsHelper::show_add_field_buttons( compact( 'field_key', 'field_type', 'id', 'no_allow_class' ) );
classes/views/frm-forms/shortcode_opts.php CHANGED
File without changes
classes/views/shared/mb_adv_info.php CHANGED
File without changes
classes/views/styles/_buttons.php CHANGED
File without changes
classes/views/styles/_check-box-radio-fields.php CHANGED
File without changes
classes/views/styles/_field-colors.php CHANGED
File without changes
classes/views/styles/_field-description.php CHANGED
File without changes
classes/views/styles/_field-labels.php CHANGED
File without changes
classes/views/styles/_field-sizes.php CHANGED
File without changes
classes/views/styles/_form-messages.php CHANGED
File without changes
classes/views/styles/_general.php CHANGED
File without changes
classes/views/styles/_sample_form.php CHANGED
File without changes
classes/views/styles/custom_css.php CHANGED
File without changes
classes/views/styles/manage.php CHANGED
File without changes
classes/views/styles/show.php CHANGED
File without changes
classes/views/xml/posts_xml.php CHANGED
File without changes
css/_single_theme.css.php CHANGED
File without changes
css/codemirror.css CHANGED
File without changes
css/custom_theme.css.php CHANGED
File without changes
css/font_icons.css CHANGED
File without changes
css/frm_admin.css CHANGED
@@ -333,6 +333,12 @@ ul.frm_form_nav > li {
333
  box-shadow: none;
334
  }
335
 
 
 
 
 
 
 
336
  .frm_form_nav > li > a:hover {
337
  border-color: var(--primary-hover);
338
  }
@@ -347,6 +353,7 @@ ul.frm_form_nav > li {
347
  color: var(--primary-color);
348
  border-color: var(--primary-color);
349
  background: transparent;
 
350
  }
351
 
352
  .frm-full-close {
@@ -796,7 +803,7 @@ p.frm_has_shortcodes {
796
 
797
  #frm-bulk-modal h2,
798
  .frm-nav-tabs a {
799
- color: var(--grey);
800
  padding: 10px 1px;
801
  margin: 0 9px;
802
  border-bottom: 2px solid transparent;
@@ -808,6 +815,7 @@ p.frm_has_shortcodes {
808
 
809
  .frm-nav-tabs a {
810
  display: block;
 
811
  }
812
 
813
  #frm_adv_info .frm-nav-tabs a {
@@ -2972,8 +2980,10 @@ a.frm_option_icon:hover::before {
2972
 
2973
  .frm-embed-field-placeholder {
2974
  text-align: center;
2975
- position: relative;
2976
  height: 145px;
 
 
 
2977
  }
2978
 
2979
  .frm-fake-field {
@@ -2992,9 +3002,11 @@ a.frm_option_icon:hover::before {
2992
  color: var(--dark-grey);
2993
  padding: 37px 0;
2994
  font-size: 18px;
2995
- width: 50%;
2996
- top: 23px;
2997
- left: 25%
 
 
2998
  }
2999
 
3000
  .frm-summary-message {
@@ -5250,7 +5262,7 @@ a.frm_action_icon:hover {
5250
  overflow: hidden;
5251
  text-overflow: ellipsis;
5252
  white-space: nowrap;
5253
- width: 65px;
5254
  max-width: calc( 100% - 50px );
5255
  position: relative;
5256
  top: 2px;
@@ -5505,7 +5517,6 @@ span.howto {
5505
 
5506
  #frm_builder_page #frm_field_group_controls {
5507
  position: absolute;
5508
- background: rgba(65, 153, 253, 0.07);
5509
  padding: 5px;
5510
  border-radius: 4px 4px 0 0;
5511
  text-align: right;
@@ -5516,6 +5527,17 @@ span.howto {
5516
  z-index: 3; /* section dividers use z-index: 2; position above that to avoid it taking over hover control. */
5517
  }
5518
 
 
 
 
 
 
 
 
 
 
 
 
5519
  #frm_builder_page #frm_field_group_controls > span:first-child {
5520
  margin-right: 5px;
5521
  }
@@ -5532,11 +5554,6 @@ span.howto {
5532
  visibility: visible;
5533
  }
5534
 
5535
- .frm-field-group-hover-target,
5536
- .frm-has-open-field-group-popup {
5537
- background: rgba(65, 153, 253, 0.07);
5538
- }
5539
-
5540
  .frm_sorting .no_repeat_section li.ui-state-default.edit_field_type_end_divider {
5541
  display: none !important;
5542
  }
@@ -5545,8 +5562,7 @@ span.howto {
5545
  #postbox-container-1 .ui-state-default,
5546
  .frm_sorting > li.ui-state-default,
5547
  .frm_sorting .no_repeat_section li.ui-state-default.edit_field_type_end_divider:hover {
5548
- border: 2px solid transparent;
5549
- border-radius: 4px;
5550
  font-weight: normal !important;
5551
  background-color: transparent;
5552
  background-image: none;
@@ -6158,6 +6174,7 @@ ul.frm-category-tabs {
6158
  box-shadow: none;
6159
  }
6160
 
 
6161
  .start_divider.frm_sorting li.ui-state-default.frm_not_divider.selected,
6162
  .start_divider.frm_sorting li.ui-state-default.frm_not_divider:hover,
6163
  .frm_sorting li.ui-state-default.frm_not_divider:hover,
@@ -6696,10 +6713,6 @@ ul .frm_col_two {
6696
  color: var(--dark-grey);
6697
  }
6698
 
6699
- .field_type_list > li {
6700
- width: 50%;
6701
- }
6702
-
6703
  .frm_no_p_margin > p {
6704
  margin: 0;
6705
  }
@@ -6810,13 +6823,12 @@ ul .frm_col_two {
6810
  .field_type_list li {
6811
  margin: 0 0 10px;
6812
  padding: 0;
6813
- clear: both;
6814
- float: left;
6815
  }
6816
 
6817
- .field_type_list li:nth-child(2n) {
6818
- float: right;
6819
- clear: none;
 
6820
  }
6821
 
6822
  #frm-insert-fields li,
@@ -8267,11 +8279,6 @@ Responsive Design
8267
  margin-right: 5px;
8268
  }
8269
 
8270
- .frm-selected-field-group {
8271
- background: rgba(65, 153, 253, 0.07);
8272
- position: relative;
8273
- }
8274
-
8275
  #frm_field_multiselect_popup {
8276
  background: white;
8277
  height: 48px;
333
  box-shadow: none;
334
  }
335
 
336
+ .frm_form_nav > li > a {
337
+ font-size: 13px;
338
+ text-transform: uppercase;
339
+ opacity: .8;
340
+ }
341
+
342
  .frm_form_nav > li > a:hover {
343
  border-color: var(--primary-hover);
344
  }
353
  color: var(--primary-color);
354
  border-color: var(--primary-color);
355
  background: transparent;
356
+ opacity: 1;
357
  }
358
 
359
  .frm-full-close {
803
 
804
  #frm-bulk-modal h2,
805
  .frm-nav-tabs a {
806
+ color: var(--dark-grey);
807
  padding: 10px 1px;
808
  margin: 0 9px;
809
  border-bottom: 2px solid transparent;
815
 
816
  .frm-nav-tabs a {
817
  display: block;
818
+ opacity: .9;
819
  }
820
 
821
  #frm_adv_info .frm-nav-tabs a {
2980
 
2981
  .frm-embed-field-placeholder {
2982
  text-align: center;
 
2983
  height: 145px;
2984
+ display: flex;
2985
+ align-items: center;
2986
+ justify-content: center;
2987
  }
2988
 
2989
  .frm-fake-field {
3002
  color: var(--dark-grey);
3003
  padding: 37px 0;
3004
  font-size: 18px;
3005
+ max-width: 200px;
3006
+ min-width: 50%;
3007
+ margin: 0 25px;
3008
+ overflow: hidden;
3009
+ text-overflow: ellipsis;
3010
  }
3011
 
3012
  .frm-summary-message {
5262
  overflow: hidden;
5263
  text-overflow: ellipsis;
5264
  white-space: nowrap;
5265
+ width: 80px;
5266
  max-width: calc( 100% - 50px );
5267
  position: relative;
5268
  top: 2px;
5517
 
5518
  #frm_builder_page #frm_field_group_controls {
5519
  position: absolute;
 
5520
  padding: 5px;
5521
  border-radius: 4px 4px 0 0;
5522
  text-align: right;
5527
  z-index: 3; /* section dividers use z-index: 2; position above that to avoid it taking over hover control. */
5528
  }
5529
 
5530
+ .frm-field-group-hover-target,
5531
+ .frm-has-open-field-group-popup,
5532
+ #frm_builder_page #frm_field_group_controls,
5533
+ .frm-selected-field-group {
5534
+ background: rgba(65, 153, 253, 0.04);
5535
+ }
5536
+
5537
+ .frm-selected-field-group {
5538
+ position: relative;
5539
+ }
5540
+
5541
  #frm_builder_page #frm_field_group_controls > span:first-child {
5542
  margin-right: 5px;
5543
  }
5554
  visibility: visible;
5555
  }
5556
 
 
 
 
 
 
5557
  .frm_sorting .no_repeat_section li.ui-state-default.edit_field_type_end_divider {
5558
  display: none !important;
5559
  }
5562
  #postbox-container-1 .ui-state-default,
5563
  .frm_sorting > li.ui-state-default,
5564
  .frm_sorting .no_repeat_section li.ui-state-default.edit_field_type_end_divider:hover {
5565
+ border: 1px solid transparent;
 
5566
  font-weight: normal !important;
5567
  background-color: transparent;
5568
  background-image: none;
6174
  box-shadow: none;
6175
  }
6176
 
6177
+ .frm-selected-field-group li.ui-state-default,
6178
  .start_divider.frm_sorting li.ui-state-default.frm_not_divider.selected,
6179
  .start_divider.frm_sorting li.ui-state-default.frm_not_divider:hover,
6180
  .frm_sorting li.ui-state-default.frm_not_divider:hover,
6713
  color: var(--dark-grey);
6714
  }
6715
 
 
 
 
 
6716
  .frm_no_p_margin > p {
6717
  margin: 0;
6718
  }
6823
  .field_type_list li {
6824
  margin: 0 0 10px;
6825
  padding: 0;
 
 
6826
  }
6827
 
6828
+ #frm-insert-fields .frm-search {
6829
+ float: none;
6830
+ margin: 15px 20px;
6831
+ width: auto;
6832
  }
6833
 
6834
  #frm-insert-fields li,
8279
  margin-right: 5px;
8280
  }
8281
 
 
 
 
 
 
8282
  #frm_field_multiselect_popup {
8283
  background: white;
8284
  height: 48px;
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 5.0
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 5.0.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
images/icons.svg CHANGED
@@ -236,9 +236,7 @@
236
  <title>upload2</title>
237
  <path d="M15 16.8c0-.4-.3-.7-.7-.7a.7.7 0 1 0 .7.7zm2.9 0c0-.4-.4-.7-.8-.7a.7.7 0 1 0 .8.7zm1.4-2.5v3.6c0 .5-.5 1-1 1H1.7a1 1 0 0 1-1-1v-3.6c0-.6.4-1 1-1h4.8c.3.7 1 1.3 2 1.3h2.8c1 0 1.7-.6 2-1.4h4.8c.6 0 1 .5 1 1zM15.7 7c-.2.2-.4.4-.7.4h-2.9v5c0 .4-.3.7-.7.7H8.6a.7.7 0 0 1-.7-.7v-5H5a.7.7 0 0 1-.7-.4c0-.3 0-.6.2-.8l5-5c.1-.2.3-.2.5-.2l.5.2 5 5c.2.2.3.5.2.8z"/>
238
  </symbol>
239
- <symbol id="frm_upload_icon" viewBox="0 0 20 20">
240
- <title>upload</title>
241
- <path d="M18 13v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-4a1 1 0 0 0-2 0v4a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-4a1 1 0 0 0-2 0zM9 3.4V13a1 1 0 0 0 2 0V3.4l3.3 3.3a1 1 0 1 0 1.4-1.4l-5-5a1 1 0 0 0-1.4 0l-5 5a1 1 0 1 0 1.4 1.4z"/>
242
  </symbol>
243
  <symbol id="frm_download2_icon" viewBox="0 0 20 20">
244
  <title>download2</title>
@@ -260,9 +258,7 @@
260
  <title>signature</title>
261
  <path d="M19.7 2.2A3.5 3.5 0 0 0 14 1.1L1.7 13.4a1 1 0 0 0-.3.4l-1.3 5a.9.9 0 0 0 0 .5 1 1 0 0 0 1 .6l5-1.3c.2 0 .4-.1.5-.3L18.9 6a3.5 3.5 0 0 0 .7-3.8zm-6.8 2.6L15.2 7l-8.6 8.7-2.4-2.4zm-10.7 13l1-3.3L5.4 17zM18 4.2l-.4.5L16.3 6 14 3.7l1.3-1.3A1.7 1.7 0 0 1 18 3.6l-.1.6zM9 17.9h11v1H9v-1z"/>
262
  </symbol>
263
- <symbol id="frm_user_icon" viewBox="0 0 20 20">
264
- <title>user</title>
265
- <path d="M19 19v-2a5 5 0 0 0-5-5H6a5 5 0 0 0-5 5v2a1 1 0 0 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 0 0 2 0zM15 5a5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5zm-2 0a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3z"/>
266
  </symbol>
267
  <symbol id="frm_users_solid_icon" viewBox="0 0 20 16"><path d="M3 7a2 2 0 100-4 2 2 0 000 4zm14 0a2 2 0 100-4 2 2 0 000 4zm1 1h-2a2 2 0 00-1.4.6c1.3.7 2.1 2 2.3 3.4H19c.6 0 1-.4 1-1v-1a2 2 0 00-2-2zm-8 0a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm2.4 1h-.3A5 5 0 018 9h-.3C5.6 9 4 10.6 4 12.6v.9c0 .8.7 1.5 1.5 1.5h9c.8 0 1.5-.7 1.5-1.5v-.9c0-2-1.6-3.6-3.6-3.6zm-7-.4A2 2 0 004 8H2a2 2 0 00-2 2v1c0 .6.4 1 1 1h2c.3-1.5 1.2-2.7 2.4-3.4z" fill="currentColor"/></symbol>
268
  <symbol id="frm_register_icon" viewBox="0 0 23 20">
@@ -305,18 +301,13 @@
305
  <title>caret_square_down</title>
306
  <path d="M4.9 8.1h7.7c.4 0 .6.5.3.8l-3.8 3.9h-.7L4.6 8.9c-.3-.3-.1-.8.3-.8zm12.6-5V17c0 1-.8 1.9-1.9 1.9H2c-1 0-1.9-.9-1.9-2V3.2c0-1 .8-1.9 1.9-1.9h13.7c1 0 1.9.9 1.9 2zm-1.9 13.5V3.4c0-.2 0-.3-.2-.3H2c-.1 0-.2.1-.2.3v13.2c0 .2 0 .3.2.3h13.3c.1 0 .2-.1.2-.3z"/>
307
  </symbol>
308
- <symbol id="frm_check_square_icon" viewBox="0 0 17 20">
309
- <title>check_square</title>
310
- <path d="M15.6 1.3H1.9C1 1.3 0 2 0 3.1v13.6c0 1 .9 2 2 2h13.6c1 0 1.9-1 1.9-2V3.2c0-1-.9-2-2-2zm0 15.5H1.9V3.2h13.7v13.6zm-1-9.7l-1.4-1.4-6.4 6.4-2.5-2.5L2.9 11l3.9 3.9z"/>
311
  </symbol>
312
  <symbol id="frm_radio_unchecked_icon" viewBox="0 0 20 20">
313
  <title>radio_unchecked</title>
314
  <path d="M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/>
315
  </symbol>
316
- <symbol id="frm_radio_checked_icon" viewBox="0 0 20 20">
317
- <title>radio_checked</title>
318
- <path d="M10 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm0-5a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/>
319
- </symbol>
320
  <symbol id="frm_scrubber_icon" viewBox="0 0 26 20">
321
  <title>scrubber</title>
322
  <path d="M13 1.4a8.6 8.6 0 1 0 0 17.2 8.6 8.6 0 0 0 0-17.2zm0 10.8a2.2 2.2 0 1 1 0-4.4 2.2 2.2 0 0 1 0 4.4z"/>
@@ -353,13 +344,8 @@
353
  <title>clock_solid</title>
354
  <path d="M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm4.2 14.2L9 11V5h1.5v5.2l4.5 2.7-.8 1.3z"/>
355
  </symbol>
356
- <symbol id="frm_link_icon" viewBox="0 0 20 20">
357
- <title>link</title>
358
- <path d="M7.63 11.54a5.27 5.27 0 0 0 7.95.1l2.47-2.77a5.26 5.26 0 0 0-7.84-7l-1.43 1.6a.87.87 0 1 0 1.3 1.16l1.41-1.58a3.5 3.5 0 0 1 4.87-.28 3.5 3.5 0 0 1 .38 4.93l-2.47 2.79c-.1.1-.22.23-.36.34a3.46 3.46 0 0 1-2.55.81 3.52 3.52 0 0 1-2.38-1.23c-.31-.37-.86-.42-1.24-.1s-.42.86-.11 1.23zm4.74-3.08a5.27 5.27 0 0 0-7.95-.1l-2.47 2.77a5.26 5.26 0 0 0 7.84 7l1.42-1.6a.87.87 0 1 0-1.3-1.15l-1.4 1.57a3.5 3.5 0 0 1-4.87.28 3.5 3.5 0 0 1-.38-4.93l2.47-2.78a3.46 3.46 0 0 1 2.91-1.16 3.52 3.52 0 0 1 2.38 1.23c.32.38.87.42 1.24.1s.42-.86.11-1.23z"/><path d="M5.92 20a5.48 5.48 0 0 1-3.53-1.3A5.34 5.34 0 0 1 .5 14.97 5.35 5.35 0 0 1 1.82 11L4.3 8.24a5.34 5.34 0 0 1 2.42-1.57 5.45 5.45 0 0 1 5.8 1.67l.5.58-.27-.11c.02.1.02.2.01.3a1.06 1.06 0 0 1-1.86.6 3.3 3.3 0 0 0-3.55-1.03 3.29 3.29 0 0 0-1.46.95L3.4 12.41a3.23 3.23 0 0 0-.78 2.4 3.32 3.32 0 0 0 5.76 2l1.4-1.56a1.05 1.05 0 0 1 1.49-.09 1.05 1.05 0 0 1 .08 1.5l-1.42 1.6a5.42 5.42 0 0 1-4 1.74zM8.34 6.77a4.97 4.97 0 0 0-3.79 1.7L2.1 11.26a5.14 5.14 0 0 0-1.22 3.7A5.07 5.07 0 0 0 9.67 18l1.41-1.59a.68.68 0 0 0 .17-.5.7.7 0 0 0-1.21-.42l-1.4 1.57a3.59 3.59 0 0 1-2.48 1.18 3.7 3.7 0 0 1-3.52-2.01 3.72 3.72 0 0 1 .48-4.05L5.6 9.39a3.72 3.72 0 0 1 3.06-1.22 3.68 3.68 0 0 1 2.5 1.3.7.7 0 0 0 1.23-.4.7.7 0 0 0-.16-.5l-.06-.07a5.02 5.02 0 0 0-3.83-1.73zm3.32 6.82a5.68 5.68 0 0 1-2.51-.6 5.42 5.42 0 0 1-1.66-1.33l-.47-.56.25.1a1.06 1.06 0 0 1 1.84-.9 3.29 3.29 0 0 0 2.26 1.17 3.3 3.3 0 0 0 2.76-1.1L16.6 7.6a3.23 3.23 0 0 0 .78-2.4 3.32 3.32 0 0 0-5.76-2l-1.4 1.57a1.06 1.06 0 0 1-1.58-1.41l1.43-1.6a5.45 5.45 0 0 1 8.85 1.23 5.38 5.38 0 0 1 .3 4.16c-.21.67-.57 1.3-1.04 1.85l-2.47 2.77a5.34 5.34 0 0 1-4.05 1.83zm-3.83-2.1a5.04 5.04 0 0 0 5.36 1.5 4.99 4.99 0 0 0 2.26-1.47l2.46-2.77a5.14 5.14 0 0 0 1.22-3.7A5.07 5.07 0 0 0 10.33 2L8.93 3.6a.7.7 0 0 0 1.04.93l1.4-1.58a3.7 3.7 0 0 1 6 .83 3.72 3.72 0 0 1-.48 4.05l-2.48 2.8a3.72 3.72 0 0 1-3.06 1.21 3.68 3.68 0 0 1-2.5-1.3.7.7 0 1 0-1.06.9l.05.07z"/>
359
- </symbol>
360
- <symbol id="frm_email_icon" viewBox="0 0 20 20">
361
- <title>email</title>
362
- <path d="M20 4a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2V4zm-2 0l-8 5-8-5h16zm0 12H2V6l8 5 8-5v10z"/>
363
  </symbol>
364
  <symbol id="frm_email_solid_icon" viewBox="0 0 20 20">
365
  <title>email_solid</title>
@@ -369,13 +355,9 @@
369
  <title>mail_bulk</title>
370
  <path d="M4.4 1.9h11.2v1.9h1.9v-2c0-1-.8-1.8-1.9-1.8H4.4c-1 0-1.9.8-1.9 1.9v5.6h1.9V1.9zM13 8.7H2c-1 0-1.9.9-1.9 2V18c0 1 .8 1.9 1.9 1.9H13c1 0 1.9-.8 1.9-1.9v-7.5c0-1-.8-1.8-1.9-1.8zm0 9.4H2v-4.7c.5.5 3.1 2.3 3.1 2.3.6.4 1.5 1.2 2.5 1.2s2-.8 2.5-1.2c0 0 2.6-1.8 3.1-2.3v4.7zm0-7A976.4 976.4 0 0 1 7.5 15c-.4 0-.9-.4-1.2-.7-.2 0-4.3-3.2-4.4-3.3v-.4H13v.5zM20.6 5H9.4c-1 0-1.9.8-1.9 1.9v.6h1.9v-.6h11.2v7.5h-4.4v1.8h4.4c1 0 1.9-.8 1.9-1.8V6.9c0-1-.8-1.9-1.9-1.9zM17 8.1v2.5h2.5V8.1h-2.5z"/>
371
  </symbol>
372
- <symbol id="frm_phone_icon" viewBox="0 0 20 20">
373
- <title>phone</title>
374
- <path d="M20 14.5a2.7 2.7 0 0 0-2.3-2.8c-.8 0-1.6-.3-2.4-.6a2.8 2.8 0 0 0-2.9.7l-.6.6c-1.7-1-3.1-2.4-4.2-4.2l.6-.6a2.8 2.8 0 0 0 .7-3c-.3-.6-.5-1.4-.6-2.3A2.8 2.8 0 0 0 6.5.1l-1-.1H2.8h-.2A2.7 2.7 0 0 0 0 3a18.7 18.7 0 0 0 8.7 14 18.7 18.7 0 0 0 8.5 3 2.8 2.8 0 0 0 2.7-2.8zm-1.8 0v2.7a1 1 0 0 1-.6.9.9.9 0 0 1-.4 0c-2.8-.3-5.3-1.2-7.4-2.6-2.2-1.4-4-3.2-5.2-5.2a17 17 0 0 1-2.7-7.9 1 1 0 0 1 .9-.6h2.7a1 1 0 0 1 .7.2 1 1 0 0 1 .3.6 12.3 12.3 0 0 0 .7 3 1 1 0 0 1-.3.7L5.8 7.4a1 1 0 0 0-.2 1.1c1.5 2.6 3.5 4.6 5.9 5.9.3.2.8 0 1-.2l1.2-1.1a.9.9 0 0 1 .6-.3h.4c1 .4 1.9.6 2.7.7a.9.9 0 0 1 .6.4 1 1 0 0 1 .2.6z"/>
375
  </symbol>
376
- <symbol id="frm_calendar_icon" viewBox="0 0 20 20">
377
- <title>calendar</title>
378
- <path d="M1 4c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4zm2 2v12h14V6H3zm2-6h2v2H5V0zm8 0h2v2h-2V0zM5 9h2v2H5V9zm0 4h2v2H5v-2zm4-4h2v2H9V9zm0 4h2v2H9v-2zm4-4h2v2h-2V9zm0 4h2v2h-2v-2z"/>
379
  </symbol>
380
  <symbol id="frm_code_icon" viewBox="0 0 23 20">
381
  <title>code</title>
@@ -465,9 +447,7 @@
465
  <title>eye_solid</title>
466
  <path d="M10 3.2C5.5 3.2 1.6 6 0 10a10.8 10.8 0 0 0 20 0c-1.6-4-5.5-6.8-10-6.8zm0 11.3a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9zm0-7.2a2.7 2.7 0 1 0 0 5.4 2.7 2.7 0 0 0 0-5.4z"/>
467
  </symbol>
468
- <symbol id="frm_eye_slash_icon" viewBox="0 0 20 20">
469
- <title>eye_slash</title>
470
- <path d="M10 4.5c3.4 0 6.5 2 8 5-.5 1.2-1.3 2.1-2.2 2.9l1.3 1.3c1.3-1.2 2.3-2.6 2.9-4.2A10.8 10.8 0 0 0 6.7 3.2l1.5 1.5 1.8-.2zm-1 1l2 2c.4.2.8.6 1 1.1l2 2v-1a4 4 0 0 0-5-4zM1 2.7L3.3 5A10.7 10.7 0 0 0 0 9.5a10.8 10.8 0 0 0 14 6.1l3 3.1 1.3-1.3-16.1-16L.9 2.5zm6.7 6.8l2.4 2.4H10c-1.3 0-2.3-1-2.3-2.3zm-3-3l1.5 1.5C6 8.4 6 9 6 9.5a4.1 4.1 0 0 0 5.7 3.8l.9.9c-.8.2-1.6.3-2.5.3-3.4 0-6.5-1.9-8-5a9 9 0 0 1 2.6-3.2z"/>
471
  </symbol>
472
  <symbol id="frm_eye_slash_solid_icon" viewBox="0 0 20 20">
473
  <title>eye_slash_solid</title>
@@ -505,9 +485,7 @@
505
  <title>repeater</title>
506
  <path d="M10 5C4.5 5 0 7.2 0 10c0 2.2 3 4.1 7 4.8V18l4-4-4-4v2.7c-3.1-.5-5-1.9-5-2.7 0-1 3-3 8-3s8 2 8 3c0 .7-1.5 1.9-4 2.5v2c3.5-.7 6-2.5 6-4.5 0-2.8-4.5-5-10-5z"/>
507
  </symbol>
508
- <symbol id="frm_hashtag_icon" viewBox="0 0 20 20">
509
- <title>hashtag</title>
510
- <path d="M12 8.2l-.4 3.6H8l.4-3.6zm.7-6.4l-.5 4.6H8.6L9.1 2a.9.9 0 1 0-1.8-.2l-.5 4.6h-4a.9.9 0 0 0 0 1.8h3.8l-.4 3.6H2.8a.9.9 0 0 0 0 1.8H6L5.5 18a.9.9 0 0 0 1.8.2l.5-4.6h3.6l-.5 4.4a.9.9 0 0 0 1.8.2l.5-4.6h4a.9.9 0 0 0 0-1.8h-3.8l.4-3.6h3.4a.9.9 0 0 0 0-1.8H14l.5-4.4a.9.9 0 0 0-1.8-.2z"/>
511
  </symbol>
512
  <symbol id="frm_save_icon" viewBox="0 0 20 20">
513
  <title>save</title>
@@ -729,10 +707,7 @@
729
  <title>text</title>
730
  <path d="M7.2 13.5h5.6l1.1 3H16l-5-13H9l-5 13h2l1.2-3zM10 6l2 5.5H8L10 6zm8-6H2a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 18H2V2h16v16z"/>
731
  </symbol>
732
- <symbol id="frm_text2_icon" viewBox="0 0 20 20">
733
- <title>text2</title>
734
- <path d="M8.8 6.2l-1.9 5 3.3.1h.7l-2-5zm-8 12.4v-1c1-.2 2.1 0 2.6-1.2L6 9.5l3.2-8h1.4l.1.2L13 7l2.5 6 1.4 3.5c0 .1.2.5.4.6.4.3 1.4.3 2 .5v1l-4.3-.2-4.4.2v-1l1.5-.2c.3 0 1-.2 1-.6 0-.4-1.5-3.7-1.7-4.2h-5a30 30 0 0 0-1.4 4c0 .9 1.6 1 2.3 1a12.5 12.5 0 0 1 0 1l-4-.3-.5.1-2 .2z"/>
735
- </symbol>
736
  <symbol id="frm_text3_icon" viewBox="0 0 20 20">
737
  <title>text3</title>
738
  <path d="M2.3 1.8V5h6v13.1h3.3V5.2h6.1V1.8z"/>
@@ -937,7 +912,8 @@
937
  <symbol id="frm_break_field_group_icon" viewBox="0 0 20 20" fill="none"><path d="M16.667 3.5h-13.5c-.92 0-1.667.746-1.667 1.667v1.5c0 .92.746 1.666 1.667 1.666h13.5c.92 0 1.666-.746 1.666-1.666v-1.5c0-.92-.746-1.667-1.666-1.667zM16.667 11.5h-13.5c-.92 0-1.667.746-1.667 1.667v1.5c0 .92.746 1.666 1.667 1.666h13.5c.92 0 1.666-.746 1.666-1.666v-1.5c0-.92-.746-1.667-1.666-1.667z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
938
  <symbol id="frm_gear_icon" viewBox="0 0 20 20" fill="none"><path d="M10 12.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.167 12.5a1.375 1.375 0 00.275 1.516l.05.05a1.666 1.666 0 01-1.179 2.847 1.666 1.666 0 01-1.179-.488l-.05-.05a1.375 1.375 0 00-1.517-.275 1.374 1.374 0 00-.833 1.258v.142a1.667 1.667 0 01-3.333 0v-.075a1.375 1.375 0 00-.9-1.259 1.375 1.375 0 00-1.517.275l-.05.05a1.666 1.666 0 11-2.358-2.358l.05-.05a1.375 1.375 0 00.275-1.517 1.376 1.376 0 00-1.259-.833h-.141a1.667 1.667 0 010-3.333h.075a1.375 1.375 0 001.258-.9 1.375 1.375 0 00-.275-1.517l-.05-.05a1.667 1.667 0 112.358-2.358l.05.05a1.375 1.375 0 001.517.275h.067a1.375 1.375 0 00.833-1.259V2.5a1.667 1.667 0 013.333 0v.075a1.375 1.375 0 00.834 1.258 1.375 1.375 0 001.516-.275l.05-.05a1.667 1.667 0 112.359 2.358l-.05.05a1.376 1.376 0 00-.275 1.517V7.5a1.375 1.375 0 001.258.833h.142a1.667 1.667 0 110 3.333h-.075a1.376 1.376 0 00-1.259.834v0z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
939
  <symbol id="frm_trash_icon" viewBox="0 0 20 20" fill="none"><path d="M2.5 5h15M6.667 5V3.334a1.667 1.667 0 011.667-1.667h3.333a1.667 1.667 0 011.667 1.667V5m2.5 0v11.667a1.667 1.667 0 01-1.667 1.667H5.834a1.667 1.667 0 01-1.667-1.667V5h11.667z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
940
- <symbol id="frm_thick_move_icon" viewBox="0 0 20 20"><path d="M4.166 7.5l-2.5 2.5 2.5 2.5M7.5 4.167l2.5-2.5 2.5 2.5M12.5 15.833l-2.5 2.5-2.5-2.5M15.834 7.5l2.5 2.5-2.5 2.5M1.666 10h16.667M10 1.667v16.667" stroke="#9EA9B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol>
 
941
  <symbol id="frm_thick_more_vert_icon" viewBox="0 0 20 20"><path d="M10 10.834a.833.833 0 100-1.667.833.833 0 000 1.667zM10 5a.833.833 0 100-1.667A.833.833 0 0010 5zM10 16.667A.833.833 0 1010 15a.833.833 0 000 1.667z" fill="#9EA9B8" stroke="#9EA9B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol>
942
  </defs>
943
  </svg>
236
  <title>upload2</title>
237
  <path d="M15 16.8c0-.4-.3-.7-.7-.7a.7.7 0 1 0 .7.7zm2.9 0c0-.4-.4-.7-.8-.7a.7.7 0 1 0 .8.7zm1.4-2.5v3.6c0 .5-.5 1-1 1H1.7a1 1 0 0 1-1-1v-3.6c0-.6.4-1 1-1h4.8c.3.7 1 1.3 2 1.3h2.8c1 0 1.7-.6 2-1.4h4.8c.6 0 1 .5 1 1zM15.7 7c-.2.2-.4.4-.7.4h-2.9v5c0 .4-.3.7-.7.7H8.6a.7.7 0 0 1-.7-.7v-5H5a.7.7 0 0 1-.7-.4c0-.3 0-.6.2-.8l5-5c.1-.2.3-.2.5-.2l.5.2 5 5c.2.2.3.5.2.8z"/>
238
  </symbol>
239
+ <symbol id="frm_upload_icon" viewBox="0 0 18 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.2 4v8a.8.8 0 001.5 0V4l2.1 2.2A.7.7 0 1013 5L9.5 1.7a.7.7 0 00-1.1 0L5.1 5.2a.8.8 0 001 1l2.1-2zm7.6 4.3c.4 0 .7.3.7.7v6.8c0 .4-.3.7-.8.7H2.3a.8.8 0 01-.8-.8V9A.8.8 0 013 9v6h12V9c0-.4.3-.8.8-.8z"/>
 
 
240
  </symbol>
241
  <symbol id="frm_download2_icon" viewBox="0 0 20 20">
242
  <title>download2</title>
258
  <title>signature</title>
259
  <path d="M19.7 2.2A3.5 3.5 0 0 0 14 1.1L1.7 13.4a1 1 0 0 0-.3.4l-1.3 5a.9.9 0 0 0 0 .5 1 1 0 0 0 1 .6l5-1.3c.2 0 .4-.1.5-.3L18.9 6a3.5 3.5 0 0 0 .7-3.8zm-6.8 2.6L15.2 7l-8.6 8.7-2.4-2.4zm-10.7 13l1-3.3L5.4 17zM18 4.2l-.4.5L16.3 6 14 3.7l1.3-1.3A1.7 1.7 0 0 1 18 3.6l-.1.6zM9 17.9h11v1H9v-1z"/>
260
  </symbol>
261
+ <symbol id="frm_user_icon" viewBox="0 0 18 19"><path d="M8.6 10.3H10c.7 0 1.1.1 1.6.4.7.3 1.2.9 1.6 1.6v.2l.2.2v.4l.1.1v1.4l.1.8v.8c0 .5-.3.8-.8.8H1.6a.7.7 0 01-.8-.8V14c.1-.7.2-1.2.5-1.6.3-.7.9-1.3 1.6-1.6a4 4 0 011.7-.4h4.1zm6.6.4c.7.3 1.3.9 1.6 1.6l.1.1v.1l.1.2v.2h.1V13.6l.1.3v2.4a.8.8 0 01-1.4.1v-2.5l-.1-.2v-.2-.2h-.1V13h-.1l-.8-1h-.2a.7.7 0 01.7-1.3zm-6.6 1H4.5l-.3.1H4l-.3.1-.1.1a2.3 2.3 0 00-1 1l-.1.2v.4l-.1.1v1.8H12v-2l-.1-.2v-.1l-.1-.1V13a2.3 2.3 0 00-1.1-1l-.2-.1H10.2l-.2-.1H8.6zM7.1 2a3.4 3.4 0 110 6.8 3.4 3.4 0 010-6.8zm5.5.5a3.4 3.4 0 010 5.8.8.8 0 01-.8-1.3 1.9 1.9 0 000-3.2.7.7 0 11.8-1.3zm-5.5 1a1.9 1.9 0 100 3.8 1.9 1.9 0 000-3.8z"/>
 
 
262
  </symbol>
263
  <symbol id="frm_users_solid_icon" viewBox="0 0 20 16"><path d="M3 7a2 2 0 100-4 2 2 0 000 4zm14 0a2 2 0 100-4 2 2 0 000 4zm1 1h-2a2 2 0 00-1.4.6c1.3.7 2.1 2 2.3 3.4H19c.6 0 1-.4 1-1v-1a2 2 0 00-2-2zm-8 0a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm2.4 1h-.3A5 5 0 018 9h-.3C5.6 9 4 10.6 4 12.6v.9c0 .8.7 1.5 1.5 1.5h9c.8 0 1.5-.7 1.5-1.5v-.9c0-2-1.6-3.6-3.6-3.6zm-7-.4A2 2 0 004 8H2a2 2 0 00-2 2v1c0 .6.4 1 1 1h2c.3-1.5 1.2-2.7 2.4-3.4z" fill="currentColor"/></symbol>
264
  <symbol id="frm_register_icon" viewBox="0 0 23 20">
301
  <title>caret_square_down</title>
302
  <path d="M4.9 8.1h7.7c.4 0 .6.5.3.8l-3.8 3.9h-.7L4.6 8.9c-.3-.3-.1-.8.3-.8zm12.6-5V17c0 1-.8 1.9-1.9 1.9H2c-1 0-1.9-.9-1.9-2V3.2c0-1 .8-1.9 1.9-1.9h13.7c1 0 1.9.9 1.9 2zm-1.9 13.5V3.4c0-.2 0-.3-.2-.3H2c-.1 0-.2.1-.2.3v13.2c0 .2 0 .3.2.3h13.3c.1 0 .2-.1.2-.3z"/>
303
  </symbol>
304
+ <symbol id="frm_check_square_icon" viewBox="0 0 18 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.4 3.5c-.2 0-.4.2-.4.4V15c0 .2.2.4.4.4h11.2c.2 0 .4-.2.4-.4V4c0-.2-.2-.4-.4-.4H3.4zm-1.9.4c0-1 .8-1.9 1.9-1.9h11.2c1 0 1.9.8 1.9 1.9V15c0 1-.8 1.9-1.9 1.9H3.4c-1 0-1.9-.8-1.9-1.9V4z"/><path d="M13.2 6.6c.3.3.3.7 0 1l-4.4 4.5a.7.7 0 01-1 0L5.1 9.5a.7.7 0 111-1l2 2 4-4c.2-.2.7-.2 1 0z"/>
 
 
305
  </symbol>
306
  <symbol id="frm_radio_unchecked_icon" viewBox="0 0 20 20">
307
  <title>radio_unchecked</title>
308
  <path d="M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/>
309
  </symbol>
310
+ <symbol id="frm_radio_checked_icon" viewBox="0 0 18 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.4 10.3a7.6 7.6 0 1115.2 0 7.6 7.6 0 01-15.2 0zM9 4a6.1 6.1 0 100 12.3A6.1 6.1 0 009 4z"/><path d="M12 10.3a3 3 0 11-6 0 3 3 0 016 0z"/></symbol>
 
 
 
311
  <symbol id="frm_scrubber_icon" viewBox="0 0 26 20">
312
  <title>scrubber</title>
313
  <path d="M13 1.4a8.6 8.6 0 1 0 0 17.2 8.6 8.6 0 0 0 0-17.2zm0 10.8a2.2 2.2 0 1 1 0-4.4 2.2 2.2 0 0 1 0 4.4z"/>
344
  <title>clock_solid</title>
345
  <path d="M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm4.2 14.2L9 11V5h1.5v5.2l4.5 2.7-.8 1.3z"/>
346
  </symbol>
347
+ <symbol id="frm_link_icon" viewBox="0 0 18 19"><path d="M2.5 3a3.3 3.3 0 000 4.7L5 10.4a.7.7 0 101.1-1L3.5 6.7c-.7-.7-.7-1.9 0-2.6.8-.8 2-.8 2.6 0l3.2 3c.7.8.7 2 0 2.7a.8.8 0 001 1 3.3 3.3 0 000-4.7l-3-3.2a3.3 3.3 0 00-4.8.1z"/><path d="M15.5 16a3.3 3.3 0 01-4.7 0l-3.2-3a.8.8 0 010-.1 3.3 3.3 0 010-4.8.7.7 0 111.1 1.1 1.8 1.8 0 000 2.7l3.2 3.1c.7.7 1.8.7 2.6 0 .7-.8.7-2 0-2.6l-2.7-2.7a.7.7 0 111-1.1l2.8 2.7a3.3 3.3 0 010 4.7z"/></symbol>
348
+ <symbol id="frm_email_icon" viewBox="0 0 18 19"><path d="M16.5 3.1l.3.1.3.2c0 .1 0 0 0 0l.1.5V15c0 .4-.3.8-.7.8h-15a.8.8 0 01-.8-.8V4a.8.8 0 01.8-.8h15zm-.8 2.3L9.4 10c-.2.2-.5.2-.8 0L2.3 5.4v9h13.4v-9zm-12-.8l5.3 4 5.3-4H3.7z"/>
 
 
 
 
 
349
  </symbol>
350
  <symbol id="frm_email_solid_icon" viewBox="0 0 20 20">
351
  <title>email_solid</title>
355
  <title>mail_bulk</title>
356
  <path d="M4.4 1.9h11.2v1.9h1.9v-2c0-1-.8-1.8-1.9-1.8H4.4c-1 0-1.9.8-1.9 1.9v5.6h1.9V1.9zM13 8.7H2c-1 0-1.9.9-1.9 2V18c0 1 .8 1.9 1.9 1.9H13c1 0 1.9-.8 1.9-1.9v-7.5c0-1-.8-1.8-1.9-1.8zm0 9.4H2v-4.7c.5.5 3.1 2.3 3.1 2.3.6.4 1.5 1.2 2.5 1.2s2-.8 2.5-1.2c0 0 2.6-1.8 3.1-2.3v4.7zm0-7A976.4 976.4 0 0 1 7.5 15c-.4 0-.9-.4-1.2-.7-.2 0-4.3-3.2-4.4-3.3v-.4H13v.5zM20.6 5H9.4c-1 0-1.9.8-1.9 1.9v.6h1.9v-.6h11.2v7.5h-4.4v1.8h4.4c1 0 1.9-.8 1.9-1.8V6.9c0-1-.8-1.9-1.9-1.9zM17 8.1v2.5h2.5V8.1h-2.5z"/>
357
  </symbol>
358
+ <symbol id="frm_phone_icon" viewBox="0 0 18 19"><path d="M6.4 2.6h-2a2.1 2.1 0 00-2 2.8 18 18 0 003.9 7 18 18 0 007 3.9c1.3.5 2.8-.6 2.8-2v-2c0-.5-.3-1-.8-1.3l-1.7-1h-.1c-.4-.2-.9-.2-1.3 0l-1.5.8a4.7 4.7 0 01-1.8-1 4.5 4.5 0 01-1-1.5V8l.7-1.5c.3-.5.2-1 0-1.4l-1-1.7c-.2-.5-.7-.8-1.2-.8zm-2 1.5h2l.9 1.7-.9 1.8V8a5.5 5.5 0 002 3.3c.9.6 1.7 1 2.2 1h.5l1.8-1 1.7 1v2c0 .4-.5.7-.9.6-2.6-1-4.9-2.1-6.4-3.6A16.8 16.8 0 013.8 5c-.1-.5.2-.9.7-.9z"/>
 
 
359
  </symbol>
360
+ <symbol id="frm_calendar_icon" viewBox="0 0 18 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.4.8c.4 0 .7.3.7.7v.8H11v-.8a.8.8 0 011.5 0v.8h3.3c.9 0 1.6.6 1.6 1.5v12c0 .8-.7 1.4-1.6 1.4H2.3c-.9 0-1.5-.6-1.5-1.4v-12c0-.9.6-1.5 1.4-1.5h3.4v-.8c0-.4.4-.8.8-.8zm-.8 3H2.3v3h13.4v-3h-3.3v.7a.8.8 0 01-1.5 0v-.8H7v.8a.8.8 0 01-1.5 0v-.8zm10.2 4.5h-3.4v3h3.3v-3zm0 4.4h-3.4v3h3.3v-3zm-5 3v-3H7.2v3H11zm-5.2 0v-3H2.3v3h3.3zm-3.3-4.4h3.3v-3H2.3v3zm4.8-3v3H11v-3H7z"/>
 
 
361
  </symbol>
362
  <symbol id="frm_code_icon" viewBox="0 0 23 20">
363
  <title>code</title>
447
  <title>eye_solid</title>
448
  <path d="M10 3.2C5.5 3.2 1.6 6 0 10a10.8 10.8 0 0 0 20 0c-1.6-4-5.5-6.8-10-6.8zm0 11.3a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9zm0-7.2a2.7 2.7 0 1 0 0 5.4 2.7 2.7 0 0 0 0-5.4z"/>
449
  </symbol>
450
+ <symbol id="frm_eye_slash_icon" viewBox="0 0 18 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.7 2.2c.3-.3.8-.3 1 0l13.6 13.5a.7.7 0 11-1 1l-5-4.9c-.4.2-.8.3-1.3.3a2.6 2.6 0 01-2.3-3.8l-5-5a.8.8 0 010-1zM8 9.4v.1A1.1 1.1 0 009 10.6L7.9 9.4zM9 5.7L7.7 6a.8.8 0 01-.4-1.4A7 7 0 019 4.2c2.3 0 4.4 1.3 5.8 2.5A16.2 16.2 0 0117 9l-.6.5.6.4a7.7 7.7 0 01-.6.8l-1.7 1.6a.7.7 0 11-1-1.1 14.7 14.7 0 001.7-1.7 13.4 13.4 0 00-1.7-1.7 8 8 0 00-4.8-2zm7.5 3.8l.6.4c.2-.2.2-.6 0-.8l-.6.4zM4.3 6.8c.2.3.2.8-.1 1a14.7 14.7 0 00-1.7 1.7 13.8 13.8 0 001.7 1.7c1.3 1 3 2 4.8 2l1.3-.1a.7.7 0 11.4 1.4 7 7 0 01-1.7.3 9.4 9.4 0 01-5.8-2.5A16.2 16.2 0 011 10l.6-.5-.6-.4a5.4 5.4 0 01.2-.3 14.1 14.1 0 012.1-2.1c.3-.3.8-.2 1 0zM1.5 9.5l-.6-.4c-.2.2-.2.6 0 .8l.6-.4z"/>
 
 
451
  </symbol>
452
  <symbol id="frm_eye_slash_solid_icon" viewBox="0 0 20 20">
453
  <title>eye_slash_solid</title>
485
  <title>repeater</title>
486
  <path d="M10 5C4.5 5 0 7.2 0 10c0 2.2 3 4.1 7 4.8V18l4-4-4-4v2.7c-3.1-.5-5-1.9-5-2.7 0-1 3-3 8-3s8 2 8 3c0 .7-1.5 1.9-4 2.5v2c3.5-.7 6-2.5 6-4.5 0-2.8-4.5-5-10-5z"/>
487
  </symbol>
488
+ <symbol id="frm_hashtag_icon" viewBox="0 0 18 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 2c.4 0 .8.3.8.8v3h4.5v-3a.8.8 0 011.4 0v3h3a.8.8 0 010 1.5h-3v4.5h3a.8.8 0 010 1.4h-3v3a.8.8 0 01-1.4 0v-3H6.7v3a.8.8 0 01-1.5 0v-3h-3a.8.8 0 010-1.4h3V7.2h-3a.8.8 0 010-1.5h3v-3c0-.4.4-.7.8-.7zm.8 5.3v4.5h4.5V7.2H6.7z"/>
 
 
489
  </symbol>
490
  <symbol id="frm_save_icon" viewBox="0 0 20 20">
491
  <title>save</title>
707
  <title>text</title>
708
  <path d="M7.2 13.5h5.6l1.1 3H16l-5-13H9l-5 13h2l1.2-3zM10 6l2 5.5H8L10 6zm8-6H2a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 18H2V2h16v16z"/>
709
  </symbol>
710
+ <symbol id="frm_text2_icon" viewBox="0 0 18 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.4 3.5c-.2 0-.4.2-.4.4V15c0 .2.2.4.4.4h11.2c.2 0 .4-.2.4-.4V4c0-.2-.2-.4-.4-.4H3.4zm-1.9.4c0-1 .8-1.9 1.9-1.9h11.2c1 0 1.9.8 1.9 1.9V15c0 1-.8 1.9-1.9 1.9H3.4c-1 0-1.9-.8-1.9-1.9V4zm3.8 2.6c0-.4.3-.8.7-.8h6c.4 0 .8.4.8.8v1.1a.8.8 0 01-1.6 0v-.3H9.8v5.2a.8.8 0 010 1.5H8.2a.8.8 0 010-1.5V7.2H6.8v.4a.8.8 0 01-1.5 0V6.5z" fill="currentColor"/></symbol>
 
 
 
711
  <symbol id="frm_text3_icon" viewBox="0 0 20 20">
712
  <title>text3</title>
713
  <path d="M2.3 1.8V5h6v13.1h3.3V5.2h6.1V1.8z"/>
912
  <symbol id="frm_break_field_group_icon" viewBox="0 0 20 20" fill="none"><path d="M16.667 3.5h-13.5c-.92 0-1.667.746-1.667 1.667v1.5c0 .92.746 1.666 1.667 1.666h13.5c.92 0 1.666-.746 1.666-1.666v-1.5c0-.92-.746-1.667-1.666-1.667zM16.667 11.5h-13.5c-.92 0-1.667.746-1.667 1.667v1.5c0 .92.746 1.666 1.667 1.666h13.5c.92 0 1.666-.746 1.666-1.666v-1.5c0-.92-.746-1.667-1.666-1.667z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
913
  <symbol id="frm_gear_icon" viewBox="0 0 20 20" fill="none"><path d="M10 12.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.167 12.5a1.375 1.375 0 00.275 1.516l.05.05a1.666 1.666 0 01-1.179 2.847 1.666 1.666 0 01-1.179-.488l-.05-.05a1.375 1.375 0 00-1.517-.275 1.374 1.374 0 00-.833 1.258v.142a1.667 1.667 0 01-3.333 0v-.075a1.375 1.375 0 00-.9-1.259 1.375 1.375 0 00-1.517.275l-.05.05a1.666 1.666 0 11-2.358-2.358l.05-.05a1.375 1.375 0 00.275-1.517 1.376 1.376 0 00-1.259-.833h-.141a1.667 1.667 0 010-3.333h.075a1.375 1.375 0 001.258-.9 1.375 1.375 0 00-.275-1.517l-.05-.05a1.667 1.667 0 112.358-2.358l.05.05a1.375 1.375 0 001.517.275h.067a1.375 1.375 0 00.833-1.259V2.5a1.667 1.667 0 013.333 0v.075a1.375 1.375 0 00.834 1.258 1.375 1.375 0 001.516-.275l.05-.05a1.667 1.667 0 112.359 2.358l-.05.05a1.376 1.376 0 00-.275 1.517V7.5a1.375 1.375 0 001.258.833h.142a1.667 1.667 0 110 3.333h-.075a1.376 1.376 0 00-1.259.834v0z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
914
  <symbol id="frm_trash_icon" viewBox="0 0 20 20" fill="none"><path d="M2.5 5h15M6.667 5V3.334a1.667 1.667 0 011.667-1.667h3.333a1.667 1.667 0 011.667 1.667V5m2.5 0v11.667a1.667 1.667 0 01-1.667 1.667H5.834a1.667 1.667 0 01-1.667-1.667V5h11.667z" stroke="#484E54" stroke-linecap="round" stroke-linejoin="round"/></symbol>
915
+ <symbol id="frm_thick_move_icon" viewBox="0 0 20 20"><path d="M4.166 7.5l-2.5 2.5 2.5 2.5M7.5 4.167l2.5-2.5 2.5 2.5M12.5 15.833l-2.5 2.5-2.5-2.5M15.834 7.5l2.5 2.5-2.5 2.5M1.666 10h16.667M10 1.667v16.667" stroke="#9EA9B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
916
+ </symbol>
917
  <symbol id="frm_thick_more_vert_icon" viewBox="0 0 20 20"><path d="M10 10.834a.833.833 0 100-1.667.833.833 0 000 1.667zM10 5a.833.833 0 100-1.667A.833.833 0 0010 5zM10 16.667A.833.833 0 1010 15a.833.833 0 000 1.667z" fill="#9EA9B8" stroke="#9EA9B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol>
918
  </defs>
919
  </svg>
js/codemirror/codemirror.js CHANGED
File without changes
js/codemirror/css.js CHANGED
File without changes
js/formidable_admin.js CHANGED
@@ -4039,14 +4039,14 @@ function frmAdminBuildJS() {
4039
 
4040
  // Find all fields in a page and hide/show them
4041
  function toggleCollapsePage( field ) {
4042
- var toCollapse = field.nextUntil( '.frm_field_box[data-ftype=break]' );
4043
  togglePage( field, toCollapse );
4044
  }
4045
 
4046
  function toggleCollapseFakePage() {
4047
  var topLevel = document.getElementById( 'frm-fake-page' ),
4048
  firstField = document.getElementById( 'frm-show-fields' ).firstElementChild,
4049
- toCollapse = jQuery( firstField ).add( jQuery( firstField ).nextUntil( '.frm_field_box[data-ftype=break]' ) );
4050
 
4051
  if ( firstField.getAttribute( 'data-ftype' ) === 'break' ) {
4052
  // Don't collapse if the first field is a page break.
@@ -4056,6 +4056,28 @@ function frmAdminBuildJS() {
4056
  togglePage( jQuery( topLevel ), toCollapse );
4057
  }
4058
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4059
  function togglePage( field, toCollapse ) {
4060
  var i,
4061
  fieldCount = toCollapse.length,
4039
 
4040
  // Find all fields in a page and hide/show them
4041
  function toggleCollapsePage( field ) {
4042
+ var toCollapse = getAllFieldsForPage( field.get( 0 ).parentNode.closest( 'li.frm_field_box' ).nextElementSibling );
4043
  togglePage( field, toCollapse );
4044
  }
4045
 
4046
  function toggleCollapseFakePage() {
4047
  var topLevel = document.getElementById( 'frm-fake-page' ),
4048
  firstField = document.getElementById( 'frm-show-fields' ).firstElementChild,
4049
+ toCollapse = getAllFieldsForPage( firstField );
4050
 
4051
  if ( firstField.getAttribute( 'data-ftype' ) === 'break' ) {
4052
  // Don't collapse if the first field is a page break.
4056
  togglePage( jQuery( topLevel ), toCollapse );
4057
  }
4058
 
4059
+ function getAllFieldsForPage( firstWrapper ) {
4060
+ var $fieldsForPage, currentWrapper;
4061
+
4062
+ $fieldsForPage = jQuery();
4063
+
4064
+ if ( null === firstWrapper ) {
4065
+ return $fieldsForPage;
4066
+ }
4067
+
4068
+ currentWrapper = firstWrapper;
4069
+
4070
+ do {
4071
+ if ( null !== currentWrapper.querySelector( '.edit_field_type_break' ) ) {
4072
+ break;
4073
+ }
4074
+ $fieldsForPage = $fieldsForPage.add( jQuery( currentWrapper ) );
4075
+ currentWrapper = currentWrapper.nextElementSibling;
4076
+ } while ( null !== currentWrapper );
4077
+
4078
+ return $fieldsForPage;
4079
+ }
4080
+
4081
  function togglePage( field, toCollapse ) {
4082
  var i,
4083
  fieldCount = toCollapse.length,
js/formidable_admin_global.js CHANGED
File without changes
languages/formidable-az_AZ.mo CHANGED
File without changes
languages/formidable-az_AZ.po CHANGED
File without changes
languages/formidable-hu_HU.mo CHANGED
File without changes
languages/formidable-hu_HU.po CHANGED
File without changes
languages/formidable-it_IT.po CHANGED
File without changes
languages/formidable-ja.mo CHANGED
File without changes
languages/formidable-ja.po CHANGED
File without changes
languages/formidable-js-strings.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
+ $generated_i18n_strings = array(
4
+ // Reference: js/src/common/components/itemselect.js:26
5
+ __( 'Select a %s', 'formidable' ),
6
+
7
+ // Reference: js/src/common/components/itemselect.js:47
8
+ __( 'Currently, there are no %s', 'formidable' ),
9
+
10
+ // Reference: js/src/form/block.js:19
11
+ __( 'Display a Form', 'formidable' ),
12
+
13
+ // Reference: js/src/form/block.js:23
14
+ __( 'contact forms', 'formidable' ),
15
+
16
+ // Reference: js/src/form/block.js:35
17
+ // Reference: js/src/form/calculator.js:43
18
+ __( 'This site does not have any forms.', 'formidable' ),
19
+
20
+ // Reference: js/src/form/calculator.js:27
21
+ __( 'Display a Calculator Form', 'formidable' ),
22
+
23
+ // Reference: js/src/form/calculator.js:55
24
+ __( 'This site does not have any calculator forms.', 'formidable' ),
25
+
26
+ // Reference: js/src/form/calculator.js:58
27
+ __( 'Upgrade Formidable Forms.', 'formidable' ),
28
+
29
+ // Reference: js/src/form/calculator.js:61
30
+ __( 'Calculator Form', 'formidable' ),
31
+
32
+ // Reference: js/src/form/formselect.js:23
33
+ __( 'form', 'formidable' ),
34
+
35
+ // Reference: js/src/form/formselect.js:24
36
+ __( 'forms', 'formidable' ),
37
+
38
+ // Reference: js/src/form/inspector.js:43
39
+ __( 'Select Form', 'formidable' ),
40
+
41
+ // Reference: js/src/form/inspector.js:57
42
+ __( 'Go to form', 'formidable' ),
43
+
44
+ // Reference: js/src/form/inspector.js:62
45
+ __( 'Options', 'formidable' ),
46
+
47
+ // Reference: js/src/form/inspector.js:66
48
+ __( 'Show Form Title', 'formidable' ),
49
+
50
+ // Reference: js/src/form/inspector.js:73
51
+ __( 'Show Form Description', 'formidable' ),
52
+
53
+ // Reference: js/src/form/inspector.js:80
54
+ __( 'Minimize HTML', 'formidable' ),
55
+
56
+ // Reference: js/src/form/inspector.js:88
57
+ __( 'Shortcode', 'formidable' )
58
+ );
59
+ /* THIS IS THE END OF THE GENERATED FILE */
languages/formidable-nb_NO.mo CHANGED
File without changes
languages/formidable-nb_NO.po CHANGED
File without changes
languages/formidable-pl_PL.po CHANGED
File without changes
languages/formidable-ro_RO.mo CHANGED
File without changes
languages/formidable-ro_RO.po CHANGED
File without changes
languages/formidable.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Formidable Forms 5.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-08-11T16:40:36+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: formidable\n"
@@ -147,7 +147,7 @@ msgid "Installed"
147
  msgstr ""
148
 
149
  #: classes/controllers/FrmAddonsController.php:595
150
- #: classes/helpers/FrmAppHelper.php:2529
151
  msgid "Active"
152
  msgstr ""
153
 
@@ -717,7 +717,7 @@ msgstr ""
717
 
718
  #: classes/controllers/FrmSettingsController.php:249
719
  #: classes/helpers/FrmStylesHelper.php:73
720
- #: classes/views/frm-forms/add_field_links.php:164
721
  #: classes/views/frm-forms/edit.php:28
722
  #: classes/views/frm-forms/_publish_box.php:13
723
  #: classes/views/styles/header-buttons.php:12
@@ -848,7 +848,7 @@ msgid "Install WP Mail SMTP"
848
  msgstr ""
849
 
850
  #: classes/controllers/FrmSMTPController.php:305
851
- #: classes/helpers/FrmAppHelper.php:2528
852
  #: classes/helpers/FrmFormMigratorsHelper.php:131
853
  #: classes/views/shared/upgrade_overlay.php:32
854
  msgid "Install"
@@ -1053,160 +1053,160 @@ msgstr ""
1053
  msgid "Add/Edit Views"
1054
  msgstr ""
1055
 
1056
- #: classes/helpers/FrmAppHelper.php:1959
1057
  msgid "at"
1058
  msgstr ""
1059
 
1060
- #: classes/helpers/FrmAppHelper.php:2103
1061
  msgid "year"
1062
  msgstr ""
1063
 
1064
- #: classes/helpers/FrmAppHelper.php:2104
1065
  msgid "years"
1066
  msgstr ""
1067
 
1068
- #: classes/helpers/FrmAppHelper.php:2108
1069
  msgid "month"
1070
  msgstr ""
1071
 
1072
- #: classes/helpers/FrmAppHelper.php:2109
1073
  msgid "months"
1074
  msgstr ""
1075
 
1076
- #: classes/helpers/FrmAppHelper.php:2113
1077
  msgid "week"
1078
  msgstr ""
1079
 
1080
- #: classes/helpers/FrmAppHelper.php:2114
1081
  msgid "weeks"
1082
  msgstr ""
1083
 
1084
- #: classes/helpers/FrmAppHelper.php:2118
1085
  msgid "day"
1086
  msgstr ""
1087
 
1088
- #: classes/helpers/FrmAppHelper.php:2119
1089
  msgid "days"
1090
  msgstr ""
1091
 
1092
- #: classes/helpers/FrmAppHelper.php:2123
1093
  msgid "hour"
1094
  msgstr ""
1095
 
1096
- #: classes/helpers/FrmAppHelper.php:2124
1097
  msgid "hours"
1098
  msgstr ""
1099
 
1100
- #: classes/helpers/FrmAppHelper.php:2128
1101
  msgid "minute"
1102
  msgstr ""
1103
 
1104
- #: classes/helpers/FrmAppHelper.php:2129
1105
  msgid "minutes"
1106
  msgstr ""
1107
 
1108
- #: classes/helpers/FrmAppHelper.php:2133
1109
  msgid "second"
1110
  msgstr ""
1111
 
1112
- #: classes/helpers/FrmAppHelper.php:2134
1113
  msgid "seconds"
1114
  msgstr ""
1115
 
1116
- #: classes/helpers/FrmAppHelper.php:2228
1117
  msgid "Give this action a label for easy reference."
1118
  msgstr ""
1119
 
1120
- #: classes/helpers/FrmAppHelper.php:2229
1121
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
1122
  msgstr ""
1123
 
1124
- #: classes/helpers/FrmAppHelper.php:2230
1125
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1126
  msgstr ""
1127
 
1128
- #: classes/helpers/FrmAppHelper.php:2231
1129
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1130
  msgstr ""
1131
 
1132
- #: classes/helpers/FrmAppHelper.php:2232
1133
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
1134
  msgstr ""
1135
 
1136
- #: classes/helpers/FrmAppHelper.php:2233
1137
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1138
  msgstr ""
1139
 
1140
  #. translators: %1$s: Form name, %2$s: Date
1141
- #: classes/helpers/FrmAppHelper.php:2235
1142
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1143
  msgstr ""
1144
 
1145
- #: classes/helpers/FrmAppHelper.php:2431
1146
- #: classes/helpers/FrmAppHelper.php:2510
1147
  msgid "Please wait while your site updates."
1148
  msgstr ""
1149
 
1150
- #: classes/helpers/FrmAppHelper.php:2432
1151
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1152
  msgstr ""
1153
 
1154
- #: classes/helpers/FrmAppHelper.php:2435
1155
- #: classes/helpers/FrmAppHelper.php:2464
1156
  msgid "Loading&hellip;"
1157
  msgstr ""
1158
 
1159
- #: classes/helpers/FrmAppHelper.php:2465
1160
  msgid "Remove"
1161
  msgstr ""
1162
 
1163
- #: classes/helpers/FrmAppHelper.php:2468
1164
  #: classes/helpers/FrmCSVExportHelper.php:229
1165
  #: classes/views/shared/mb_adv_info.php:95
1166
  msgid "ID"
1167
  msgstr ""
1168
 
1169
- #: classes/helpers/FrmAppHelper.php:2469
1170
  msgid "No results match"
1171
  msgstr ""
1172
 
1173
- #: classes/helpers/FrmAppHelper.php:2470
1174
  msgid "That file looks like Spam."
1175
  msgstr ""
1176
 
1177
- #: classes/helpers/FrmAppHelper.php:2471
1178
  msgid "There is an error in the calculation in the field with key"
1179
  msgstr ""
1180
 
1181
- #: classes/helpers/FrmAppHelper.php:2472
1182
  msgid "Please complete the preceding required fields before uploading a file."
1183
  msgstr ""
1184
 
1185
- #: classes/helpers/FrmAppHelper.php:2483
1186
  msgid "(Click to add description)"
1187
  msgstr ""
1188
 
1189
- #: classes/helpers/FrmAppHelper.php:2484
1190
  msgid "(Blank)"
1191
  msgstr ""
1192
 
1193
- #: classes/helpers/FrmAppHelper.php:2485
1194
  msgid "(no label)"
1195
  msgstr ""
1196
 
1197
- #: classes/helpers/FrmAppHelper.php:2486
1198
  msgid "Saving"
1199
  msgstr ""
1200
 
1201
- #: classes/helpers/FrmAppHelper.php:2487
1202
  msgid "Saved"
1203
  msgstr ""
1204
 
1205
- #: classes/helpers/FrmAppHelper.php:2488
1206
  msgid "OK"
1207
  msgstr ""
1208
 
1209
- #: classes/helpers/FrmAppHelper.php:2489
1210
  #: classes/views/frm-forms/new-form-overlay.php:33
1211
  #: classes/views/frm-forms/new-form-overlay.php:100
1212
  #: classes/views/frm-forms/new-form-overlay.php:109
@@ -1219,416 +1219,416 @@ msgstr ""
1219
  msgid "Cancel"
1220
  msgstr ""
1221
 
1222
- #: classes/helpers/FrmAppHelper.php:2490
1223
  #: classes/views/frm-fields/back-end/settings.php:270
1224
  msgid "Default"
1225
  msgstr ""
1226
 
1227
- #: classes/helpers/FrmAppHelper.php:2491
1228
  msgid "Clear default value when typing"
1229
  msgstr ""
1230
 
1231
- #: classes/helpers/FrmAppHelper.php:2492
1232
  msgid "Do not clear default value when typing"
1233
  msgstr ""
1234
 
1235
- #: classes/helpers/FrmAppHelper.php:2493
1236
  msgid "Default value will pass form validation"
1237
  msgstr ""
1238
 
1239
- #: classes/helpers/FrmAppHelper.php:2494
1240
  msgid "Default value will NOT pass form validation"
1241
  msgstr ""
1242
 
1243
- #: classes/helpers/FrmAppHelper.php:2495
1244
  #: classes/helpers/FrmListHelper.php:405
1245
  #: js/formidable_admin.js:3629
1246
  msgid "Heads up"
1247
  msgstr ""
1248
 
1249
- #: classes/helpers/FrmAppHelper.php:2496
1250
  #: classes/views/shared/confirm-overlay.php:15
1251
  #: classes/views/shared/info-overlay.php:15
1252
  msgid "Are you sure?"
1253
  msgstr ""
1254
 
1255
- #: classes/helpers/FrmAppHelper.php:2497
1256
  msgid "Are you sure you want to delete this field and all data associated with it?"
1257
  msgstr ""
1258
 
1259
- #: classes/helpers/FrmAppHelper.php:2498
1260
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1261
  msgstr ""
1262
 
1263
- #: classes/helpers/FrmAppHelper.php:2499
1264
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1265
  msgstr ""
1266
 
1267
- #: classes/helpers/FrmAppHelper.php:2501
1268
  #: classes/helpers/FrmFieldsHelper.php:286
1269
  msgid "The entered values do not match"
1270
  msgstr ""
1271
 
1272
- #: classes/helpers/FrmAppHelper.php:2502
1273
  msgid "Enter Email"
1274
  msgstr ""
1275
 
1276
- #: classes/helpers/FrmAppHelper.php:2503
1277
  msgid "Confirm Email"
1278
  msgstr ""
1279
 
1280
- #: classes/helpers/FrmAppHelper.php:2504
1281
  #: classes/views/shared/mb_adv_info.php:166
1282
  msgid "Conditional content here"
1283
  msgstr ""
1284
 
1285
- #: classes/helpers/FrmAppHelper.php:2505
1286
  #: classes/helpers/FrmFieldsHelper.php:458
1287
  #: classes/helpers/FrmFieldsHelper.php:459
1288
  msgid "New Option"
1289
  msgstr ""
1290
 
1291
- #: classes/helpers/FrmAppHelper.php:2506
1292
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
1293
  msgstr ""
1294
 
1295
- #: classes/helpers/FrmAppHelper.php:2507
1296
  msgid "Enter Password"
1297
  msgstr ""
1298
 
1299
- #: classes/helpers/FrmAppHelper.php:2508
1300
  msgid "Confirm Password"
1301
  msgstr ""
1302
 
1303
- #: classes/helpers/FrmAppHelper.php:2509
1304
  msgid "Import Complete"
1305
  msgstr ""
1306
 
1307
- #: classes/helpers/FrmAppHelper.php:2511
1308
  msgid "Warning: There is no way to retrieve unsaved entries."
1309
  msgstr ""
1310
 
1311
- #: classes/helpers/FrmAppHelper.php:2512
1312
  msgid "Private"
1313
  msgstr ""
1314
 
1315
- #: classes/helpers/FrmAppHelper.php:2515
1316
  msgid "No new licenses were found"
1317
  msgstr ""
1318
 
1319
- #: classes/helpers/FrmAppHelper.php:2516
1320
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1321
  msgstr ""
1322
 
1323
- #: classes/helpers/FrmAppHelper.php:2517
1324
  msgid "This calculation may have shortcodes that work in Views but not forms."
1325
  msgstr ""
1326
 
1327
- #: classes/helpers/FrmAppHelper.php:2518
1328
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1329
  msgstr ""
1330
 
1331
- #: classes/helpers/FrmAppHelper.php:2519
1332
  msgid "This form action is limited to one per form. Please edit the existing form action."
1333
  msgstr ""
1334
 
1335
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1336
- #: classes/helpers/FrmAppHelper.php:2522
1337
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1338
  msgstr ""
1339
 
1340
  #. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
1341
- #: classes/helpers/FrmAppHelper.php:2524
1342
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1343
  msgstr ""
1344
 
1345
- #: classes/helpers/FrmAppHelper.php:2525
1346
  #: classes/helpers/FrmFormsHelper.php:1502
1347
  msgid "See the list of reserved words in WordPress."
1348
  msgstr ""
1349
 
1350
- #: classes/helpers/FrmAppHelper.php:2526
1351
  msgid "Please enter a Repeat Limit that is greater than 1."
1352
  msgstr ""
1353
 
1354
- #: classes/helpers/FrmAppHelper.php:2527
1355
  msgid "Please select a limit between 0 and 200."
1356
  msgstr ""
1357
 
1358
- #: classes/helpers/FrmAppHelper.php:2530
1359
  #: classes/views/shared/mb_adv_info.php:113
1360
  #: classes/views/shared/mb_adv_info.php:127
1361
  msgid "Select a Field"
1362
  msgstr ""
1363
 
1364
- #: classes/helpers/FrmAppHelper.php:2531
1365
  #: classes/helpers/FrmListHelper.php:262
1366
  msgid "No items found."
1367
  msgstr ""
1368
 
1369
- #: classes/helpers/FrmAppHelper.php:2559
1370
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1371
  msgstr ""
1372
 
1373
- #: classes/helpers/FrmAppHelper.php:2586
1374
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1375
  msgstr ""
1376
 
1377
- #: classes/helpers/FrmAppHelper.php:2614
1378
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
1379
  msgstr ""
1380
 
1381
- #: classes/helpers/FrmAppHelper.php:2620
1382
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1383
  msgstr ""
1384
 
1385
- #: classes/helpers/FrmAppHelper.php:2634
1386
  msgid "English"
1387
  msgstr ""
1388
 
1389
- #: classes/helpers/FrmAppHelper.php:2635
1390
  msgid "Afrikaans"
1391
  msgstr ""
1392
 
1393
- #: classes/helpers/FrmAppHelper.php:2636
1394
  msgid "Albanian"
1395
  msgstr ""
1396
 
1397
- #: classes/helpers/FrmAppHelper.php:2637
1398
  msgid "Arabic"
1399
  msgstr ""
1400
 
1401
- #: classes/helpers/FrmAppHelper.php:2638
1402
  msgid "Armenian"
1403
  msgstr ""
1404
 
1405
- #: classes/helpers/FrmAppHelper.php:2639
1406
  msgid "Azerbaijani"
1407
  msgstr ""
1408
 
1409
- #: classes/helpers/FrmAppHelper.php:2640
1410
  msgid "Basque"
1411
  msgstr ""
1412
 
1413
- #: classes/helpers/FrmAppHelper.php:2641
1414
  msgid "Bosnian"
1415
  msgstr ""
1416
 
1417
- #: classes/helpers/FrmAppHelper.php:2642
1418
  msgid "Bulgarian"
1419
  msgstr ""
1420
 
1421
- #: classes/helpers/FrmAppHelper.php:2643
1422
  msgid "Catalan"
1423
  msgstr ""
1424
 
1425
- #: classes/helpers/FrmAppHelper.php:2644
1426
  msgid "Chinese Hong Kong"
1427
  msgstr ""
1428
 
1429
- #: classes/helpers/FrmAppHelper.php:2645
1430
  msgid "Chinese Simplified"
1431
  msgstr ""
1432
 
1433
- #: classes/helpers/FrmAppHelper.php:2646
1434
  msgid "Chinese Traditional"
1435
  msgstr ""
1436
 
1437
- #: classes/helpers/FrmAppHelper.php:2647
1438
  msgid "Croatian"
1439
  msgstr ""
1440
 
1441
- #: classes/helpers/FrmAppHelper.php:2648
1442
  msgid "Czech"
1443
  msgstr ""
1444
 
1445
- #: classes/helpers/FrmAppHelper.php:2649
1446
  msgid "Danish"
1447
  msgstr ""
1448
 
1449
- #: classes/helpers/FrmAppHelper.php:2650
1450
  msgid "Dutch"
1451
  msgstr ""
1452
 
1453
- #: classes/helpers/FrmAppHelper.php:2651
1454
  msgid "English/UK"
1455
  msgstr ""
1456
 
1457
- #: classes/helpers/FrmAppHelper.php:2652
1458
  msgid "Esperanto"
1459
  msgstr ""
1460
 
1461
- #: classes/helpers/FrmAppHelper.php:2653
1462
  msgid "Estonian"
1463
  msgstr ""
1464
 
1465
- #: classes/helpers/FrmAppHelper.php:2654
1466
  msgid "Faroese"
1467
  msgstr ""
1468
 
1469
- #: classes/helpers/FrmAppHelper.php:2655
1470
  msgid "Farsi/Persian"
1471
  msgstr ""
1472
 
1473
- #: classes/helpers/FrmAppHelper.php:2656
1474
  msgid "Filipino"
1475
  msgstr ""
1476
 
1477
- #: classes/helpers/FrmAppHelper.php:2657
1478
  msgid "Finnish"
1479
  msgstr ""
1480
 
1481
- #: classes/helpers/FrmAppHelper.php:2658
1482
  msgid "French"
1483
  msgstr ""
1484
 
1485
- #: classes/helpers/FrmAppHelper.php:2659
1486
  msgid "French/Canadian"
1487
  msgstr ""
1488
 
1489
- #: classes/helpers/FrmAppHelper.php:2660
1490
  msgid "French/Swiss"
1491
  msgstr ""
1492
 
1493
- #: classes/helpers/FrmAppHelper.php:2661
1494
  msgid "German"
1495
  msgstr ""
1496
 
1497
- #: classes/helpers/FrmAppHelper.php:2662
1498
  msgid "German/Austria"
1499
  msgstr ""
1500
 
1501
- #: classes/helpers/FrmAppHelper.php:2663
1502
  msgid "German/Switzerland"
1503
  msgstr ""
1504
 
1505
- #: classes/helpers/FrmAppHelper.php:2664
1506
  msgid "Greek"
1507
  msgstr ""
1508
 
1509
- #: classes/helpers/FrmAppHelper.php:2665
1510
- #: classes/helpers/FrmAppHelper.php:2666
1511
  msgid "Hebrew"
1512
  msgstr ""
1513
 
1514
- #: classes/helpers/FrmAppHelper.php:2667
1515
  msgid "Hindi"
1516
  msgstr ""
1517
 
1518
- #: classes/helpers/FrmAppHelper.php:2668
1519
  msgid "Hungarian"
1520
  msgstr ""
1521
 
1522
- #: classes/helpers/FrmAppHelper.php:2669
1523
  msgid "Icelandic"
1524
  msgstr ""
1525
 
1526
- #: classes/helpers/FrmAppHelper.php:2670
1527
  msgid "Indonesian"
1528
  msgstr ""
1529
 
1530
- #: classes/helpers/FrmAppHelper.php:2671
1531
  msgid "Italian"
1532
  msgstr ""
1533
 
1534
- #: classes/helpers/FrmAppHelper.php:2672
1535
  msgid "Japanese"
1536
  msgstr ""
1537
 
1538
- #: classes/helpers/FrmAppHelper.php:2673
1539
  msgid "Korean"
1540
  msgstr ""
1541
 
1542
- #: classes/helpers/FrmAppHelper.php:2674
1543
  msgid "Latvian"
1544
  msgstr ""
1545
 
1546
- #: classes/helpers/FrmAppHelper.php:2675
1547
  msgid "Lithuanian"
1548
  msgstr ""
1549
 
1550
- #: classes/helpers/FrmAppHelper.php:2676
1551
  msgid "Malaysian"
1552
  msgstr ""
1553
 
1554
- #: classes/helpers/FrmAppHelper.php:2677
1555
  msgid "Norwegian"
1556
  msgstr ""
1557
 
1558
- #: classes/helpers/FrmAppHelper.php:2678
1559
  msgid "Polish"
1560
  msgstr ""
1561
 
1562
- #: classes/helpers/FrmAppHelper.php:2679
1563
  msgid "Portuguese"
1564
  msgstr ""
1565
 
1566
- #: classes/helpers/FrmAppHelper.php:2680
1567
  msgid "Portuguese/Brazilian"
1568
  msgstr ""
1569
 
1570
- #: classes/helpers/FrmAppHelper.php:2681
1571
  msgid "Portuguese/Portugal"
1572
  msgstr ""
1573
 
1574
- #: classes/helpers/FrmAppHelper.php:2682
1575
  msgid "Romanian"
1576
  msgstr ""
1577
 
1578
- #: classes/helpers/FrmAppHelper.php:2683
1579
  msgid "Russian"
1580
  msgstr ""
1581
 
1582
- #: classes/helpers/FrmAppHelper.php:2684
1583
- #: classes/helpers/FrmAppHelper.php:2685
1584
  msgid "Serbian"
1585
  msgstr ""
1586
 
1587
- #: classes/helpers/FrmAppHelper.php:2686
1588
  msgid "Slovak"
1589
  msgstr ""
1590
 
1591
- #: classes/helpers/FrmAppHelper.php:2687
1592
  msgid "Slovenian"
1593
  msgstr ""
1594
 
1595
- #: classes/helpers/FrmAppHelper.php:2688
1596
  msgid "Spanish"
1597
  msgstr ""
1598
 
1599
- #: classes/helpers/FrmAppHelper.php:2689
1600
  msgid "Spanish/Latin America"
1601
  msgstr ""
1602
 
1603
- #: classes/helpers/FrmAppHelper.php:2690
1604
  msgid "Swedish"
1605
  msgstr ""
1606
 
1607
- #: classes/helpers/FrmAppHelper.php:2691
1608
  msgid "Tamil"
1609
  msgstr ""
1610
 
1611
- #: classes/helpers/FrmAppHelper.php:2692
1612
  msgid "Thai"
1613
  msgstr ""
1614
 
1615
- #: classes/helpers/FrmAppHelper.php:2693
1616
  msgid "Turkish"
1617
  msgstr ""
1618
 
1619
- #: classes/helpers/FrmAppHelper.php:2694
1620
  msgid "Ukranian"
1621
  msgstr ""
1622
 
1623
- #: classes/helpers/FrmAppHelper.php:2695
1624
  msgid "Vietnamese"
1625
  msgstr ""
1626
 
1627
- #: classes/helpers/FrmAppHelper.php:2737
1628
  msgid "Your account has expired"
1629
  msgstr ""
1630
 
1631
- #: classes/helpers/FrmAppHelper.php:2740
1632
  msgid "Renew Now"
1633
  msgstr ""
1634
 
@@ -4871,27 +4871,31 @@ msgstr ""
4871
  msgid "Field Options"
4872
  msgstr ""
4873
 
4874
- #: classes/views/frm-forms/add_field_links.php:42
 
 
 
 
4875
  msgid "Advanced Fields"
4876
  msgstr ""
4877
 
4878
- #: classes/views/frm-forms/add_field_links.php:103
4879
  msgid "Pricing Fields"
4880
  msgstr ""
4881
 
4882
- #: classes/views/frm-forms/add_field_links.php:122
4883
  msgid "Select a field to see the options"
4884
  msgstr ""
4885
 
4886
- #: classes/views/frm-forms/add_field_links.php:136
4887
  msgid "Smart Default Values"
4888
  msgstr ""
4889
 
4890
- #: classes/views/frm-forms/add_field_links.php:144
4891
  msgid "Add Layout Classes"
4892
  msgstr ""
4893
 
4894
- #: classes/views/frm-forms/add_field_links.php:152
4895
  msgid "Input Mask Format"
4896
  msgstr ""
4897
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 5.0.01\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-08-16T15:48:39+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: formidable\n"
147
  msgstr ""
148
 
149
  #: classes/controllers/FrmAddonsController.php:595
150
+ #: classes/helpers/FrmAppHelper.php:2548
151
  msgid "Active"
152
  msgstr ""
153
 
717
 
718
  #: classes/controllers/FrmSettingsController.php:249
719
  #: classes/helpers/FrmStylesHelper.php:73
720
+ #: classes/views/frm-forms/add_field_links.php:173
721
  #: classes/views/frm-forms/edit.php:28
722
  #: classes/views/frm-forms/_publish_box.php:13
723
  #: classes/views/styles/header-buttons.php:12
848
  msgstr ""
849
 
850
  #: classes/controllers/FrmSMTPController.php:305
851
+ #: classes/helpers/FrmAppHelper.php:2547
852
  #: classes/helpers/FrmFormMigratorsHelper.php:131
853
  #: classes/views/shared/upgrade_overlay.php:32
854
  msgid "Install"
1053
  msgid "Add/Edit Views"
1054
  msgstr ""
1055
 
1056
+ #: classes/helpers/FrmAppHelper.php:1978
1057
  msgid "at"
1058
  msgstr ""
1059
 
1060
+ #: classes/helpers/FrmAppHelper.php:2122
1061
  msgid "year"
1062
  msgstr ""
1063
 
1064
+ #: classes/helpers/FrmAppHelper.php:2123
1065
  msgid "years"
1066
  msgstr ""
1067
 
1068
+ #: classes/helpers/FrmAppHelper.php:2127
1069
  msgid "month"
1070
  msgstr ""
1071
 
1072
+ #: classes/helpers/FrmAppHelper.php:2128
1073
  msgid "months"
1074
  msgstr ""
1075
 
1076
+ #: classes/helpers/FrmAppHelper.php:2132
1077
  msgid "week"
1078
  msgstr ""
1079
 
1080
+ #: classes/helpers/FrmAppHelper.php:2133
1081
  msgid "weeks"
1082
  msgstr ""
1083
 
1084
+ #: classes/helpers/FrmAppHelper.php:2137
1085
  msgid "day"
1086
  msgstr ""
1087
 
1088
+ #: classes/helpers/FrmAppHelper.php:2138
1089
  msgid "days"
1090
  msgstr ""
1091
 
1092
+ #: classes/helpers/FrmAppHelper.php:2142
1093
  msgid "hour"
1094
  msgstr ""
1095
 
1096
+ #: classes/helpers/FrmAppHelper.php:2143
1097
  msgid "hours"
1098
  msgstr ""
1099
 
1100
+ #: classes/helpers/FrmAppHelper.php:2147
1101
  msgid "minute"
1102
  msgstr ""
1103
 
1104
+ #: classes/helpers/FrmAppHelper.php:2148
1105
  msgid "minutes"
1106
  msgstr ""
1107
 
1108
+ #: classes/helpers/FrmAppHelper.php:2152
1109
  msgid "second"
1110
  msgstr ""
1111
 
1112
+ #: classes/helpers/FrmAppHelper.php:2153
1113
  msgid "seconds"
1114
  msgstr ""
1115
 
1116
+ #: classes/helpers/FrmAppHelper.php:2247
1117
  msgid "Give this action a label for easy reference."
1118
  msgstr ""
1119
 
1120
+ #: classes/helpers/FrmAppHelper.php:2248
1121
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
1122
  msgstr ""
1123
 
1124
+ #: classes/helpers/FrmAppHelper.php:2249
1125
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1126
  msgstr ""
1127
 
1128
+ #: classes/helpers/FrmAppHelper.php:2250
1129
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1130
  msgstr ""
1131
 
1132
+ #: classes/helpers/FrmAppHelper.php:2251
1133
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
1134
  msgstr ""
1135
 
1136
+ #: classes/helpers/FrmAppHelper.php:2252
1137
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1138
  msgstr ""
1139
 
1140
  #. translators: %1$s: Form name, %2$s: Date
1141
+ #: classes/helpers/FrmAppHelper.php:2254
1142
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1143
  msgstr ""
1144
 
1145
+ #: classes/helpers/FrmAppHelper.php:2450
1146
+ #: classes/helpers/FrmAppHelper.php:2529
1147
  msgid "Please wait while your site updates."
1148
  msgstr ""
1149
 
1150
+ #: classes/helpers/FrmAppHelper.php:2451
1151
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1152
  msgstr ""
1153
 
1154
+ #: classes/helpers/FrmAppHelper.php:2454
1155
+ #: classes/helpers/FrmAppHelper.php:2483
1156
  msgid "Loading&hellip;"
1157
  msgstr ""
1158
 
1159
+ #: classes/helpers/FrmAppHelper.php:2484
1160
  msgid "Remove"
1161
  msgstr ""
1162
 
1163
+ #: classes/helpers/FrmAppHelper.php:2487
1164
  #: classes/helpers/FrmCSVExportHelper.php:229
1165
  #: classes/views/shared/mb_adv_info.php:95
1166
  msgid "ID"
1167
  msgstr ""
1168
 
1169
+ #: classes/helpers/FrmAppHelper.php:2488
1170
  msgid "No results match"
1171
  msgstr ""
1172
 
1173
+ #: classes/helpers/FrmAppHelper.php:2489
1174
  msgid "That file looks like Spam."
1175
  msgstr ""
1176
 
1177
+ #: classes/helpers/FrmAppHelper.php:2490
1178
  msgid "There is an error in the calculation in the field with key"
1179
  msgstr ""
1180
 
1181
+ #: classes/helpers/FrmAppHelper.php:2491
1182
  msgid "Please complete the preceding required fields before uploading a file."
1183
  msgstr ""
1184
 
1185
+ #: classes/helpers/FrmAppHelper.php:2502
1186
  msgid "(Click to add description)"
1187
  msgstr ""
1188
 
1189
+ #: classes/helpers/FrmAppHelper.php:2503
1190
  msgid "(Blank)"
1191
  msgstr ""
1192
 
1193
+ #: classes/helpers/FrmAppHelper.php:2504
1194
  msgid "(no label)"
1195
  msgstr ""
1196
 
1197
+ #: classes/helpers/FrmAppHelper.php:2505
1198
  msgid "Saving"
1199
  msgstr ""
1200
 
1201
+ #: classes/helpers/FrmAppHelper.php:2506
1202
  msgid "Saved"
1203
  msgstr ""
1204
 
1205
+ #: classes/helpers/FrmAppHelper.php:2507
1206
  msgid "OK"
1207
  msgstr ""
1208
 
1209
+ #: classes/helpers/FrmAppHelper.php:2508
1210
  #: classes/views/frm-forms/new-form-overlay.php:33
1211
  #: classes/views/frm-forms/new-form-overlay.php:100
1212
  #: classes/views/frm-forms/new-form-overlay.php:109
1219
  msgid "Cancel"
1220
  msgstr ""
1221
 
1222
+ #: classes/helpers/FrmAppHelper.php:2509
1223
  #: classes/views/frm-fields/back-end/settings.php:270
1224
  msgid "Default"
1225
  msgstr ""
1226
 
1227
+ #: classes/helpers/FrmAppHelper.php:2510
1228
  msgid "Clear default value when typing"
1229
  msgstr ""
1230
 
1231
+ #: classes/helpers/FrmAppHelper.php:2511
1232
  msgid "Do not clear default value when typing"
1233
  msgstr ""
1234
 
1235
+ #: classes/helpers/FrmAppHelper.php:2512
1236
  msgid "Default value will pass form validation"
1237
  msgstr ""
1238
 
1239
+ #: classes/helpers/FrmAppHelper.php:2513
1240
  msgid "Default value will NOT pass form validation"
1241
  msgstr ""
1242
 
1243
+ #: classes/helpers/FrmAppHelper.php:2514
1244
  #: classes/helpers/FrmListHelper.php:405
1245
  #: js/formidable_admin.js:3629
1246
  msgid "Heads up"
1247
  msgstr ""
1248
 
1249
+ #: classes/helpers/FrmAppHelper.php:2515
1250
  #: classes/views/shared/confirm-overlay.php:15
1251
  #: classes/views/shared/info-overlay.php:15
1252
  msgid "Are you sure?"
1253
  msgstr ""
1254
 
1255
+ #: classes/helpers/FrmAppHelper.php:2516
1256
  msgid "Are you sure you want to delete this field and all data associated with it?"
1257
  msgstr ""
1258
 
1259
+ #: classes/helpers/FrmAppHelper.php:2517
1260
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1261
  msgstr ""
1262
 
1263
+ #: classes/helpers/FrmAppHelper.php:2518
1264
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1265
  msgstr ""
1266
 
1267
+ #: classes/helpers/FrmAppHelper.php:2520
1268
  #: classes/helpers/FrmFieldsHelper.php:286
1269
  msgid "The entered values do not match"
1270
  msgstr ""
1271
 
1272
+ #: classes/helpers/FrmAppHelper.php:2521
1273
  msgid "Enter Email"
1274
  msgstr ""
1275
 
1276
+ #: classes/helpers/FrmAppHelper.php:2522
1277
  msgid "Confirm Email"
1278
  msgstr ""
1279
 
1280
+ #: classes/helpers/FrmAppHelper.php:2523
1281
  #: classes/views/shared/mb_adv_info.php:166
1282
  msgid "Conditional content here"
1283
  msgstr ""
1284
 
1285
+ #: classes/helpers/FrmAppHelper.php:2524
1286
  #: classes/helpers/FrmFieldsHelper.php:458
1287
  #: classes/helpers/FrmFieldsHelper.php:459
1288
  msgid "New Option"
1289
  msgstr ""
1290
 
1291
+ #: classes/helpers/FrmAppHelper.php:2525
1292
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
1293
  msgstr ""
1294
 
1295
+ #: classes/helpers/FrmAppHelper.php:2526
1296
  msgid "Enter Password"
1297
  msgstr ""
1298
 
1299
+ #: classes/helpers/FrmAppHelper.php:2527
1300
  msgid "Confirm Password"
1301
  msgstr ""
1302
 
1303
+ #: classes/helpers/FrmAppHelper.php:2528
1304
  msgid "Import Complete"
1305
  msgstr ""
1306
 
1307
+ #: classes/helpers/FrmAppHelper.php:2530
1308
  msgid "Warning: There is no way to retrieve unsaved entries."
1309
  msgstr ""
1310
 
1311
+ #: classes/helpers/FrmAppHelper.php:2531
1312
  msgid "Private"
1313
  msgstr ""
1314
 
1315
+ #: classes/helpers/FrmAppHelper.php:2534
1316
  msgid "No new licenses were found"
1317
  msgstr ""
1318
 
1319
+ #: classes/helpers/FrmAppHelper.php:2535
1320
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1321
  msgstr ""
1322
 
1323
+ #: classes/helpers/FrmAppHelper.php:2536
1324
  msgid "This calculation may have shortcodes that work in Views but not forms."
1325
  msgstr ""
1326
 
1327
+ #: classes/helpers/FrmAppHelper.php:2537
1328
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1329
  msgstr ""
1330
 
1331
+ #: classes/helpers/FrmAppHelper.php:2538
1332
  msgid "This form action is limited to one per form. Please edit the existing form action."
1333
  msgstr ""
1334
 
1335
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1336
+ #: classes/helpers/FrmAppHelper.php:2541
1337
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1338
  msgstr ""
1339
 
1340
  #. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
1341
+ #: classes/helpers/FrmAppHelper.php:2543
1342
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1343
  msgstr ""
1344
 
1345
+ #: classes/helpers/FrmAppHelper.php:2544
1346
  #: classes/helpers/FrmFormsHelper.php:1502
1347
  msgid "See the list of reserved words in WordPress."
1348
  msgstr ""
1349
 
1350
+ #: classes/helpers/FrmAppHelper.php:2545
1351
  msgid "Please enter a Repeat Limit that is greater than 1."
1352
  msgstr ""
1353
 
1354
+ #: classes/helpers/FrmAppHelper.php:2546
1355
  msgid "Please select a limit between 0 and 200."
1356
  msgstr ""
1357
 
1358
+ #: classes/helpers/FrmAppHelper.php:2549
1359
  #: classes/views/shared/mb_adv_info.php:113
1360
  #: classes/views/shared/mb_adv_info.php:127
1361
  msgid "Select a Field"
1362
  msgstr ""
1363
 
1364
+ #: classes/helpers/FrmAppHelper.php:2550
1365
  #: classes/helpers/FrmListHelper.php:262
1366
  msgid "No items found."
1367
  msgstr ""
1368
 
1369
+ #: classes/helpers/FrmAppHelper.php:2578
1370
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1371
  msgstr ""
1372
 
1373
+ #: classes/helpers/FrmAppHelper.php:2605
1374
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1375
  msgstr ""
1376
 
1377
+ #: classes/helpers/FrmAppHelper.php:2633
1378
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
1379
  msgstr ""
1380
 
1381
+ #: classes/helpers/FrmAppHelper.php:2639
1382
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1383
  msgstr ""
1384
 
1385
+ #: classes/helpers/FrmAppHelper.php:2653
1386
  msgid "English"
1387
  msgstr ""
1388
 
1389
+ #: classes/helpers/FrmAppHelper.php:2654
1390
  msgid "Afrikaans"
1391
  msgstr ""
1392
 
1393
+ #: classes/helpers/FrmAppHelper.php:2655
1394
  msgid "Albanian"
1395
  msgstr ""
1396
 
1397
+ #: classes/helpers/FrmAppHelper.php:2656
1398
  msgid "Arabic"
1399
  msgstr ""
1400
 
1401
+ #: classes/helpers/FrmAppHelper.php:2657
1402
  msgid "Armenian"
1403
  msgstr ""
1404
 
1405
+ #: classes/helpers/FrmAppHelper.php:2658
1406
  msgid "Azerbaijani"
1407
  msgstr ""
1408
 
1409
+ #: classes/helpers/FrmAppHelper.php:2659
1410
  msgid "Basque"
1411
  msgstr ""
1412
 
1413
+ #: classes/helpers/FrmAppHelper.php:2660
1414
  msgid "Bosnian"
1415
  msgstr ""
1416
 
1417
+ #: classes/helpers/FrmAppHelper.php:2661
1418
  msgid "Bulgarian"
1419
  msgstr ""
1420
 
1421
+ #: classes/helpers/FrmAppHelper.php:2662
1422
  msgid "Catalan"
1423
  msgstr ""
1424
 
1425
+ #: classes/helpers/FrmAppHelper.php:2663
1426
  msgid "Chinese Hong Kong"
1427
  msgstr ""
1428
 
1429
+ #: classes/helpers/FrmAppHelper.php:2664
1430
  msgid "Chinese Simplified"
1431
  msgstr ""
1432
 
1433
+ #: classes/helpers/FrmAppHelper.php:2665
1434
  msgid "Chinese Traditional"
1435
  msgstr ""
1436
 
1437
+ #: classes/helpers/FrmAppHelper.php:2666
1438
  msgid "Croatian"
1439
  msgstr ""
1440
 
1441
+ #: classes/helpers/FrmAppHelper.php:2667
1442
  msgid "Czech"
1443
  msgstr ""
1444
 
1445
+ #: classes/helpers/FrmAppHelper.php:2668
1446
  msgid "Danish"
1447
  msgstr ""
1448
 
1449
+ #: classes/helpers/FrmAppHelper.php:2669
1450
  msgid "Dutch"
1451
  msgstr ""
1452
 
1453
+ #: classes/helpers/FrmAppHelper.php:2670
1454
  msgid "English/UK"
1455
  msgstr ""
1456
 
1457
+ #: classes/helpers/FrmAppHelper.php:2671
1458
  msgid "Esperanto"
1459
  msgstr ""
1460
 
1461
+ #: classes/helpers/FrmAppHelper.php:2672
1462
  msgid "Estonian"
1463
  msgstr ""
1464
 
1465
+ #: classes/helpers/FrmAppHelper.php:2673
1466
  msgid "Faroese"
1467
  msgstr ""
1468
 
1469
+ #: classes/helpers/FrmAppHelper.php:2674
1470
  msgid "Farsi/Persian"
1471
  msgstr ""
1472
 
1473
+ #: classes/helpers/FrmAppHelper.php:2675
1474
  msgid "Filipino"
1475
  msgstr ""
1476
 
1477
+ #: classes/helpers/FrmAppHelper.php:2676
1478
  msgid "Finnish"
1479
  msgstr ""
1480
 
1481
+ #: classes/helpers/FrmAppHelper.php:2677
1482
  msgid "French"
1483
  msgstr ""
1484
 
1485
+ #: classes/helpers/FrmAppHelper.php:2678
1486
  msgid "French/Canadian"
1487
  msgstr ""
1488
 
1489
+ #: classes/helpers/FrmAppHelper.php:2679
1490
  msgid "French/Swiss"
1491
  msgstr ""
1492
 
1493
+ #: classes/helpers/FrmAppHelper.php:2680
1494
  msgid "German"
1495
  msgstr ""
1496
 
1497
+ #: classes/helpers/FrmAppHelper.php:2681
1498
  msgid "German/Austria"
1499
  msgstr ""
1500
 
1501
+ #: classes/helpers/FrmAppHelper.php:2682
1502
  msgid "German/Switzerland"
1503
  msgstr ""
1504
 
1505
+ #: classes/helpers/FrmAppHelper.php:2683
1506
  msgid "Greek"
1507
  msgstr ""
1508
 
1509
+ #: classes/helpers/FrmAppHelper.php:2684
1510
+ #: classes/helpers/FrmAppHelper.php:2685
1511
  msgid "Hebrew"
1512
  msgstr ""
1513
 
1514
+ #: classes/helpers/FrmAppHelper.php:2686
1515
  msgid "Hindi"
1516
  msgstr ""
1517
 
1518
+ #: classes/helpers/FrmAppHelper.php:2687
1519
  msgid "Hungarian"
1520
  msgstr ""
1521
 
1522
+ #: classes/helpers/FrmAppHelper.php:2688
1523
  msgid "Icelandic"
1524
  msgstr ""
1525
 
1526
+ #: classes/helpers/FrmAppHelper.php:2689
1527
  msgid "Indonesian"
1528
  msgstr ""
1529
 
1530
+ #: classes/helpers/FrmAppHelper.php:2690
1531
  msgid "Italian"
1532
  msgstr ""
1533
 
1534
+ #: classes/helpers/FrmAppHelper.php:2691
1535
  msgid "Japanese"
1536
  msgstr ""
1537
 
1538
+ #: classes/helpers/FrmAppHelper.php:2692
1539
  msgid "Korean"
1540
  msgstr ""
1541
 
1542
+ #: classes/helpers/FrmAppHelper.php:2693
1543
  msgid "Latvian"
1544
  msgstr ""
1545
 
1546
+ #: classes/helpers/FrmAppHelper.php:2694
1547
  msgid "Lithuanian"
1548
  msgstr ""
1549
 
1550
+ #: classes/helpers/FrmAppHelper.php:2695
1551
  msgid "Malaysian"
1552
  msgstr ""
1553
 
1554
+ #: classes/helpers/FrmAppHelper.php:2696
1555
  msgid "Norwegian"
1556
  msgstr ""
1557
 
1558
+ #: classes/helpers/FrmAppHelper.php:2697
1559
  msgid "Polish"
1560
  msgstr ""
1561
 
1562
+ #: classes/helpers/FrmAppHelper.php:2698
1563
  msgid "Portuguese"
1564
  msgstr ""
1565
 
1566
+ #: classes/helpers/FrmAppHelper.php:2699
1567
  msgid "Portuguese/Brazilian"
1568
  msgstr ""
1569
 
1570
+ #: classes/helpers/FrmAppHelper.php:2700
1571
  msgid "Portuguese/Portugal"
1572
  msgstr ""
1573
 
1574
+ #: classes/helpers/FrmAppHelper.php:2701
1575
  msgid "Romanian"
1576
  msgstr ""
1577
 
1578
+ #: classes/helpers/FrmAppHelper.php:2702
1579
  msgid "Russian"
1580
  msgstr ""
1581
 
1582
+ #: classes/helpers/FrmAppHelper.php:2703
1583
+ #: classes/helpers/FrmAppHelper.php:2704
1584
  msgid "Serbian"
1585
  msgstr ""
1586
 
1587
+ #: classes/helpers/FrmAppHelper.php:2705
1588
  msgid "Slovak"
1589
  msgstr ""
1590
 
1591
+ #: classes/helpers/FrmAppHelper.php:2706
1592
  msgid "Slovenian"
1593
  msgstr ""
1594
 
1595
+ #: classes/helpers/FrmAppHelper.php:2707
1596
  msgid "Spanish"
1597
  msgstr ""
1598
 
1599
+ #: classes/helpers/FrmAppHelper.php:2708
1600
  msgid "Spanish/Latin America"
1601
  msgstr ""
1602
 
1603
+ #: classes/helpers/FrmAppHelper.php:2709
1604
  msgid "Swedish"
1605
  msgstr ""
1606
 
1607
+ #: classes/helpers/FrmAppHelper.php:2710
1608
  msgid "Tamil"
1609
  msgstr ""
1610
 
1611
+ #: classes/helpers/FrmAppHelper.php:2711
1612
  msgid "Thai"
1613
  msgstr ""
1614
 
1615
+ #: classes/helpers/FrmAppHelper.php:2712
1616
  msgid "Turkish"
1617
  msgstr ""
1618
 
1619
+ #: classes/helpers/FrmAppHelper.php:2713
1620
  msgid "Ukranian"
1621
  msgstr ""
1622
 
1623
+ #: classes/helpers/FrmAppHelper.php:2714
1624
  msgid "Vietnamese"
1625
  msgstr ""
1626
 
1627
+ #: classes/helpers/FrmAppHelper.php:2756
1628
  msgid "Your account has expired"
1629
  msgstr ""
1630
 
1631
+ #: classes/helpers/FrmAppHelper.php:2759
1632
  msgid "Renew Now"
1633
  msgstr ""
1634
 
4871
  msgid "Field Options"
4872
  msgstr ""
4873
 
4874
+ #: classes/views/frm-forms/add_field_links.php:27
4875
+ msgid "Search Fields"
4876
+ msgstr ""
4877
+
4878
+ #: classes/views/frm-forms/add_field_links.php:51
4879
  msgid "Advanced Fields"
4880
  msgstr ""
4881
 
4882
+ #: classes/views/frm-forms/add_field_links.php:112
4883
  msgid "Pricing Fields"
4884
  msgstr ""
4885
 
4886
+ #: classes/views/frm-forms/add_field_links.php:131
4887
  msgid "Select a field to see the options"
4888
  msgstr ""
4889
 
4890
+ #: classes/views/frm-forms/add_field_links.php:145
4891
  msgid "Smart Default Values"
4892
  msgstr ""
4893
 
4894
+ #: classes/views/frm-forms/add_field_links.php:153
4895
  msgid "Add Layout Classes"
4896
  msgstr ""
4897
 
4898
+ #: classes/views/frm-forms/add_field_links.php:161
4899
  msgid "Input Mask Format"
4900
  msgstr ""
4901
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: forms, contact form, form builder, survey, form maker, form creator, paypa
5
  Requires at least: 5.0
6
  Tested up to: 5.8
7
  Requires PHP: 5.6
8
- Stable tag: 5.0
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
@@ -440,6 +440,12 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
440
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
441
 
442
  == Changelog ==
 
 
 
 
 
 
443
  = 5.0 =
444
  * Increased WP version requirement to 5.0.
445
  * New: Fields can now be dragged beside each other and grid layouts will be automatically applied.
@@ -474,11 +480,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
474
  * New: Added visibility option to the Name field.
475
  * Fix: The honeypot setting would still appear as on after it was turned off.
476
 
477
- = 4.11 =
478
- * New: Added a quick and easy Name field with options for First, Middle, and Last names.
479
- * New: Added a more powerful spam protection using JavaScript. This can be turned on in the settings.
480
- * New: Added Honeypot options to settings and changed the default Honeypot behaviour to avoid the false positives some people are seeing on mobile devices.
481
- * New: Added a frm_process_honeypot filter for gracefully handling honeypot spam.
482
- * Fix: A warning was getting logged when exporting as XML.
483
-
484
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
5
  Requires at least: 5.0
6
  Tested up to: 5.8
7
  Requires PHP: 5.6
8
+ Stable tag: 5.0.01
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
440
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
441
 
442
  == Changelog ==
443
+ = 5.0.01 =
444
+ * New: Updated styling and icons in the back end builder.
445
+ * New: Added search to form fields in the builder to make finding a specific field easier.
446
+ * Fix: Toggling a page to collapse was not working properly, causing the first page break to collapse the whole page and the other page break fields to do nothing.
447
+ * Fix: Added truncation to long form keys during duplication to avoid issues with duplicating when the generated key was too long.
448
+
449
  = 5.0 =
450
  * Increased WP version requirement to 5.0.
451
  * New: Fields can now be dragged beside each other and grid layouts will be automatically applied.
480
  * New: Added visibility option to the Name field.
481
  * Fix: The honeypot setting would still appear as on after it was turned off.
482
 
 
 
 
 
 
 
 
483
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>