Formidable Forms – Form Builder for WordPress - Version 5.0.09

Version Description

  • The option to check entries for spam using JavaScript is now on by default for all new forms. We recommend turning this on for older forms that may be receiving spam entries, especially forms that include file uploads. After turning this feature on, make sure to also clear any caching plugins to avoid issues with cached pages with missing tokens.
  • New: Pre-determined option data will no longer be sent to Akismet to help reduce the number of false positive results.
  • Fix: Significantly reduced the amount of memory required to load form settings for websites with fewer than 50 pages with a lot of data.
  • Fix: Author email, url, or name are no longer included in comment info when sending data to Akismet so that duplicate information is not sent.
  • Fix: Field groups could not be moved because of a missing class on the drag handle.
Download this release

Release Info

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

Code changes from version 5.0.08 to 5.0.09

classes/controllers/FrmFormsController.php CHANGED
@@ -95,7 +95,7 @@ class FrmFormsController {
95
  *
96
  * @since 2.02.11
97
  *
98
- * @param object $form
99
  */
100
  private static function create_default_email_action( $form ) {
101
  FrmForm::maybe_get_form( $form );
@@ -429,7 +429,7 @@ class FrmFormsController {
429
  /**
430
  * @param string $status
431
  *
432
- * @return int The number of forms changed
433
  */
434
  public static function change_form_status( $status ) {
435
  $available_status = array(
@@ -570,6 +570,9 @@ class FrmFormsController {
570
 
571
  $new_values = self::get_modal_values();
572
  $new_values['form_key'] = $new_values['name'];
 
 
 
573
 
574
  $form_id = FrmForm::create( $new_values );
575
 
95
  *
96
  * @since 2.02.11
97
  *
98
+ * @param object|int $form
99
  */
100
  private static function create_default_email_action( $form ) {
101
  FrmForm::maybe_get_form( $form );
429
  /**
430
  * @param string $status
431
  *
432
+ * @return void
433
  */
434
  public static function change_form_status( $status ) {
435
  $available_status = array(
570
 
571
  $new_values = self::get_modal_values();
572
  $new_values['form_key'] = $new_values['name'];
573
+ $new_values['options'] = array(
574
+ 'antispam' => 1,
575
+ );
576
 
577
  $form_id = FrmForm::create( $new_values );
578
 
classes/controllers/FrmXMLController.php CHANGED
@@ -59,8 +59,8 @@ class FrmXMLController {
59
 
60
  self::set_new_form_name( $xml );
61
 
62
- $imported = FrmXMLHelper::import_xml_now( $xml );
63
- if ( isset( $imported['form_status'] ) && ! empty( $imported['form_status'] ) ) {
64
  // Get the last form id in case there are child forms.
65
  end( $imported['form_status'] );
66
  $form_id = key( $imported['form_status'] );
59
 
60
  self::set_new_form_name( $xml );
61
 
62
+ $imported = FrmXMLHelper::import_xml_now( $xml, true );
63
+ if ( ! empty( $imported['form_status'] ) ) {
64
  // Get the last form id in case there are child forms.
65
  end( $imported['form_status'] );
66
  $form_id = key( $imported['form_status'] );
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '5.0.08';
15
 
16
  /**
17
  * @since 1.07.02
@@ -1012,7 +1012,6 @@ class FrmAppHelper {
1012
  $new_file = new FrmCreateFile( $file_atts );
1013
 
1014
  $files = array(
1015
- self::plugin_path() . '/js/jquery/jquery.placeholder.min.js',
1016
  self::plugin_path() . '/js/formidable.min.js',
1017
  );
1018
  $files = apply_filters( 'frm_combined_js_files', $files );
@@ -1035,6 +1034,7 @@ class FrmAppHelper {
1035
 
1036
  /**
1037
  * Gets all post from a specific post type.
 
1038
  *
1039
  * @since 4.10.01 Add `$post_type` argument.
1040
  *
@@ -1053,6 +1053,28 @@ class FrmAppHelper {
1053
  return get_posts( $query );
1054
  }
1055
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1056
  /**
1057
  * Renders an autocomplete page selection or a regular dropdown depending on
1058
  * the total page count
@@ -1100,7 +1122,7 @@ class FrmAppHelper {
1100
  public static function wp_pages_dropdown( $args = array(), $page_id = '', $truncate = false ) {
1101
  self::prep_page_dropdown_params( $page_id, $truncate, $args );
1102
 
1103
- $pages = self::get_pages( $args['post_type'] );
1104
  $selected = self::get_post_param( $args['field_name'], $args['page_id'], 'absint' );
1105
 
1106
  ?>
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '5.0.09';
15
 
16
  /**
17
  * @since 1.07.02
1012
  $new_file = new FrmCreateFile( $file_atts );
1013
 
1014
  $files = array(
 
1015
  self::plugin_path() . '/js/formidable.min.js',
1016
  );
1017
  $files = apply_filters( 'frm_combined_js_files', $files );
1034
 
1035
  /**
1036
  * Gets all post from a specific post type.
1037
+ * This gets the entire WP_Post object so it can require a lot of memory. When only id and title are needed, consider using FrmAppHelper::get_post_ids_and_titles instead.
1038
  *
1039
  * @since 4.10.01 Add `$post_type` argument.
1040
  *
1053
  return get_posts( $query );
1054
  }
1055
 
1056
+ /**
1057
+ * Gets post ids and titles for a specific post type.
1058
+ *
1059
+ * @since 5.0.09
1060
+ *
1061
+ * @param string $post_type Post type to query. Default is `page`.
1062
+ * @return array
1063
+ */
1064
+ public static function get_post_ids_and_titles( $post_type = 'page' ) {
1065
+ return FrmDb::get_results(
1066
+ 'posts',
1067
+ array(
1068
+ 'post_type' => $post_type,
1069
+ 'post_status' => array( 'publish', 'private' ),
1070
+ ),
1071
+ 'ID, post_title',
1072
+ array(
1073
+ 'order_by' => 'post_title ASC',
1074
+ )
1075
+ );
1076
+ }
1077
+
1078
  /**
1079
  * Renders an autocomplete page selection or a regular dropdown depending on
1080
  * the total page count
1122
  public static function wp_pages_dropdown( $args = array(), $page_id = '', $truncate = false ) {
1123
  self::prep_page_dropdown_params( $page_id, $truncate, $args );
1124
 
1125
+ $pages = self::get_post_ids_and_titles( $args['post_type'] );
1126
  $selected = self::get_post_param( $args['field_name'], $args['page_id'], 'absint' );
1127
 
1128
  ?>
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -1660,8 +1660,8 @@ class FrmFieldsHelper {
1660
  *
1661
  * @since 5.0.04 Add `$include_class` param.
1662
  *
1663
- * @param array $prepop Bulk options.
1664
- * @param array $include_class Include the class in the bulk options.
1665
  */
1666
  public static function get_bulk_prefilled_opts( array &$prepop, $include_class = false ) {
1667
  // Countries.
@@ -2055,11 +2055,11 @@ class FrmFieldsHelper {
2055
  * @deprecated 3.0
2056
  * @codeCoverageIgnore
2057
  *
2058
- * @param string $html
2059
- * @param array $field
2060
- * @param array $errors
2061
- * @param object $form
2062
- * @param array $args
2063
  *
2064
  * @return string
2065
  */
1660
  *
1661
  * @since 5.0.04 Add `$include_class` param.
1662
  *
1663
+ * @param array $prepop Bulk options.
1664
+ * @param array|false $include_class Include the class in the bulk options.
1665
  */
1666
  public static function get_bulk_prefilled_opts( array &$prepop, $include_class = false ) {
1667
  // Countries.
2055
  * @deprecated 3.0
2056
  * @codeCoverageIgnore
2057
  *
2058
+ * @param string $html
2059
+ * @param array $field
2060
+ * @param array $errors
2061
+ * @param object|false $form
2062
+ * @param array $args
2063
  *
2064
  * @return string
2065
  */
classes/helpers/FrmListHelper.php CHANGED
@@ -438,9 +438,9 @@ class FrmListHelper {
438
  return $action;
439
  }
440
 
441
- private static function get_bulk_action( $action_name ) {
442
  $action = false;
443
- $action_param = self::get_param(
444
  array(
445
  'param' => $action_name,
446
  'sanitize' => 'sanitize_text_field',
438
  return $action;
439
  }
440
 
441
+ private function get_bulk_action( $action_name ) {
442
  $action = false;
443
+ $action_param = $this->get_param(
444
  array(
445
  'param' => $action_name,
446
  'sanitize' => 'sanitize_text_field',
classes/helpers/FrmStylesHelper.php CHANGED
@@ -185,10 +185,10 @@ class FrmStylesHelper {
185
 
186
  /**
187
  * @since 2.0
188
- * @return The class for this icon
189
  */
190
  public static function icon_key_to_class( $key, $icon = '+', $type = 'arrow' ) {
191
- if ( 'arrow' == $type && is_numeric( $key ) ) {
192
  //frm_arrowup6_icon
193
  $arrow = array(
194
  '-' => 'down',
185
 
186
  /**
187
  * @since 2.0
188
+ * @return string The class for this icon.
189
  */
190
  public static function icon_key_to_class( $key, $icon = '+', $type = 'arrow' ) {
191
+ if ( 'arrow' === $type && is_numeric( $key ) ) {
192
  //frm_arrowup6_icon
193
  $arrow = array(
194
  '-' => 'down',
classes/helpers/FrmXMLHelper.php CHANGED
@@ -5,6 +5,11 @@ if ( ! defined( 'ABSPATH' ) ) {
5
 
6
  class FrmXMLHelper {
7
 
 
 
 
 
 
8
  public static function get_xml_values( $opt, $padding ) {
9
  if ( is_array( $opt ) ) {
10
  foreach ( $opt as $ok => $ov ) {
@@ -56,14 +61,18 @@ class FrmXMLHelper {
56
  * Add terms, forms (form and field ids), posts (post ids), and entries to db, in that order
57
  *
58
  * @since 3.06
 
 
 
59
  * @return array The number of items imported
60
  */
61
- public static function import_xml_now( $xml ) {
62
  if ( ! defined( 'WP_IMPORTING' ) ) {
63
  define( 'WP_IMPORTING', true );
64
  }
65
 
66
- $imported = self::pre_import_data();
 
67
 
68
  foreach ( array( 'term', 'form', 'view' ) as $item_type ) {
69
  // Grab cats, tags, and terms, or forms or posts.
@@ -236,6 +245,11 @@ class FrmXMLHelper {
236
 
237
  $form['options'] = FrmAppHelper::maybe_json_decode( $form['options'] );
238
 
 
 
 
 
 
239
  return $form;
240
  }
241
 
5
 
6
  class FrmXMLHelper {
7
 
8
+ /**
9
+ * @var bool $installing_template true if importing an XML from API, false if importing an XML file manually.
10
+ */
11
+ private static $installing_template = false;
12
+
13
  public static function get_xml_values( $opt, $padding ) {
14
  if ( is_array( $opt ) ) {
15
  foreach ( $opt as $ok => $ov ) {
61
  * Add terms, forms (form and field ids), posts (post ids), and entries to db, in that order
62
  *
63
  * @since 3.06
64
+ *
65
+ * @param object $xml
66
+ * @param bool $installing_template
67
  * @return array The number of items imported
68
  */
69
+ public static function import_xml_now( $xml, $installing_template = false ) {
70
  if ( ! defined( 'WP_IMPORTING' ) ) {
71
  define( 'WP_IMPORTING', true );
72
  }
73
 
74
+ self::$installing_template = $installing_template;
75
+ $imported = self::pre_import_data();
76
 
77
  foreach ( array( 'term', 'form', 'view' ) as $item_type ) {
78
  // Grab cats, tags, and terms, or forms or posts.
245
 
246
  $form['options'] = FrmAppHelper::maybe_json_decode( $form['options'] );
247
 
248
+ if ( self::$installing_template ) {
249
+ // Templates don't necessarily have antispam on, but we want our templates to all have antispam on by default.
250
+ $form['options']['antispam'] = 1;
251
+ }
252
+
253
  return $form;
254
  }
255
 
classes/models/FrmEntryMeta.php CHANGED
@@ -6,7 +6,10 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  class FrmEntryMeta {
7
 
8
  /**
9
- * @param string $meta_key
 
 
 
10
  */
11
  public static function add_entry_meta( $entry_id, $field_id, $meta_key, $meta_value ) {
12
  global $wpdb;
@@ -164,7 +167,7 @@ class FrmEntryMeta {
164
  public static function duplicate_entry_metas( $old_id, $new_id ) {
165
  $metas = self::get_entry_meta_info( $old_id );
166
  foreach ( $metas as $meta ) {
167
- self::add_entry_meta( $new_id, $meta->field_id, null, $meta->meta_value );
168
  unset( $meta );
169
  }
170
  self::clear_cache();
6
  class FrmEntryMeta {
7
 
8
  /**
9
+ * @param int $entry_id
10
+ * @param int $field_id
11
+ * @param string $meta_key usually set to '' as this parameter is no longer used.
12
+ * @param mixed $meta_value
13
  */
14
  public static function add_entry_meta( $entry_id, $field_id, $meta_key, $meta_value ) {
15
  global $wpdb;
167
  public static function duplicate_entry_metas( $old_id, $new_id ) {
168
  $metas = self::get_entry_meta_info( $old_id );
169
  foreach ( $metas as $meta ) {
170
+ self::add_entry_meta( $new_id, $meta->field_id, '', $meta->meta_value );
171
  unset( $meta );
172
  }
173
  self::clear_cache();
classes/models/FrmEntryValidate.php CHANGED
@@ -362,14 +362,12 @@ class FrmEntryValidate {
362
  * @return boolean true if is spam
363
  */
364
  public static function akismet( $values ) {
365
- $content = FrmEntriesHelper::entry_array_to_string( $values );
366
- if ( empty( $content ) ) {
367
  return false;
368
  }
369
 
370
  $datas = array(
371
- 'comment_type' => 'formidable',
372
- 'comment_content' => $content,
373
  );
374
  self::parse_akismet_array( $datas, $values );
375
 
@@ -395,6 +393,7 @@ class FrmEntryValidate {
395
  self::add_site_info_to_akismet( $datas );
396
  self::add_user_info_to_akismet( $datas, $values );
397
  self::add_server_values_to_akismet( $datas );
 
398
  }
399
 
400
  private static function add_site_info_to_akismet( &$datas ) {
@@ -440,14 +439,19 @@ class FrmEntryValidate {
440
  }
441
 
442
  $values = array_filter( $values );
443
- foreach ( $values as $value ) {
 
 
444
  if ( ! is_array( $value ) ) {
445
  if ( $datas['comment_author_email'] == '' && strpos( $value, '@' ) && is_email( $value ) ) {
446
  $datas['comment_author_email'] = $value;
 
447
  } elseif ( $datas['comment_author_url'] == '' && strpos( $value, 'http' ) === 0 ) {
448
  $datas['comment_author_url'] = $value;
 
449
  } elseif ( $datas['comment_author'] == '' && ! is_numeric( $value ) && strlen( $value ) < 200 ) {
450
  $datas['comment_author'] = $value;
 
451
  }
452
  }
453
  }
@@ -468,6 +472,122 @@ class FrmEntryValidate {
468
  }
469
  }
470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
  /**
472
  * @deprecated 3.0
473
  * @codeCoverageIgnore
362
  * @return boolean true if is spam
363
  */
364
  public static function akismet( $values ) {
365
+ if ( empty( $values['item_meta'] ) ) {
 
366
  return false;
367
  }
368
 
369
  $datas = array(
370
+ 'comment_type' => 'formidable',
 
371
  );
372
  self::parse_akismet_array( $datas, $values );
373
 
393
  self::add_site_info_to_akismet( $datas );
394
  self::add_user_info_to_akismet( $datas, $values );
395
  self::add_server_values_to_akismet( $datas );
396
+ self::add_comment_content_to_akismet( $datas, $values );
397
  }
398
 
399
  private static function add_site_info_to_akismet( &$datas ) {
439
  }
440
 
441
  $values = array_filter( $values );
442
+
443
+ $datas['frm_duplicated'] = array();
444
+ foreach ( $values as $index => $value ) {
445
  if ( ! is_array( $value ) ) {
446
  if ( $datas['comment_author_email'] == '' && strpos( $value, '@' ) && is_email( $value ) ) {
447
  $datas['comment_author_email'] = $value;
448
+ $datas['frm_duplicated'][] = $index;
449
  } elseif ( $datas['comment_author_url'] == '' && strpos( $value, 'http' ) === 0 ) {
450
  $datas['comment_author_url'] = $value;
451
+ $datas['frm_duplicated'][] = $index;
452
  } elseif ( $datas['comment_author'] == '' && ! is_numeric( $value ) && strlen( $value ) < 200 ) {
453
  $datas['comment_author'] = $value;
454
+ $datas['frm_duplicated'][] = $index;
455
  }
456
  }
457
  }
472
  }
473
  }
474
 
475
+ /**
476
+ * Adds comment content to Akismet data.
477
+ *
478
+ * @since 5.0.09
479
+ *
480
+ * @param array $datas The array of values being sent to Akismet.
481
+ * @param array $values Entry values.
482
+ */
483
+ private static function add_comment_content_to_akismet( &$datas, $values ) {
484
+ if ( isset( $datas['frm_duplicated'] ) ) {
485
+ foreach ( $datas['frm_duplicated'] as $index ) {
486
+ if ( isset( $values['item_meta'][ $index ] ) ) {
487
+ unset( $values['item_meta'][ $index ] );
488
+ } else {
489
+ unset( $values[ $index ] );
490
+ }
491
+ }
492
+ unset( $datas['frm_duplicated'] );
493
+ }
494
+
495
+ self::skip_adding_values_to_akismet( $values );
496
+
497
+ $datas['comment_content'] = FrmEntriesHelper::entry_array_to_string( $values );
498
+ }
499
+
500
+ /**
501
+ * Skips adding field values to Akismet.
502
+ *
503
+ * @since 5.0.09
504
+ *
505
+ * @param array $values Entry values.
506
+ */
507
+ private static function skip_adding_values_to_akismet( &$values ) {
508
+ $skipped_field_ids = self::get_akismet_skipped_field_ids( $values );
509
+ foreach ( $skipped_field_ids as $field_id ) {
510
+ if ( isset( $values['item_meta'][ $field_id ] ) ) {
511
+ unset( $values['item_meta'][ $field_id ] );
512
+ }
513
+ }
514
+ }
515
+
516
+ /**
517
+ * Gets field IDs that are skipped from sending to Akismet spam check.
518
+ *
519
+ * @since 5.0.09
520
+ *
521
+ * @param array $values Entry values.
522
+ * @return array
523
+ */
524
+ private static function get_akismet_skipped_field_ids( $values ) {
525
+ $form_ids = self::get_all_form_ids_and_flatten_meta( $values );
526
+ $skipped_types = array( 'divider', 'form', 'hidden', 'user_id', 'file', 'date', 'time', 'scale', 'star', 'range', 'toggle', 'data', 'lookup', 'likert', 'nps' );
527
+ $has_other_types = array( 'radio', 'checkbox', 'select' );
528
+
529
+ $where = array(
530
+ array(
531
+ 'form_id' => $form_ids,
532
+ array(
533
+ array(
534
+ 'field_options not like' => ';s:5:"other";s:1:"1"',
535
+ 'type' => $has_other_types,
536
+ ),
537
+ 'or' => 1,
538
+ 'type' => $skipped_types,
539
+ ),
540
+ ),
541
+ );
542
+
543
+ return FrmDb::get_col( 'frm_fields', $where );
544
+ }
545
+
546
+ /**
547
+ * Gets all form IDs (include child form IDs) and flatten item_meta array. Used for skipping values sent to Akismet.
548
+ * This also removes some unused data from the item_meta.
549
+ *
550
+ * @since 5.0.09
551
+ *
552
+ * @param array $values Entry values.
553
+ * @return array Form IDs.
554
+ */
555
+ private static function get_all_form_ids_and_flatten_meta( &$values ) {
556
+ $form_ids = array( absint( $values['form_id'] ) );
557
+ foreach ( $values['item_meta'] as $field_id => $value ) {
558
+ if ( ! is_numeric( $field_id ) ) { // Maybe `other`.
559
+ continue;
560
+ }
561
+
562
+ if ( ! is_array( $value ) || empty( $value['form'] ) ) {
563
+ continue;
564
+ }
565
+
566
+ $form_ids[] = absint( $value['form'] );
567
+
568
+ foreach ( $value as $subindex => $subvalue ) {
569
+ if ( ! is_numeric( $subindex ) || ! is_array( $subvalue ) ) {
570
+ continue;
571
+ }
572
+
573
+ foreach ( $subvalue as $subsubindex => $subsubvalue ) {
574
+ if ( ! $subsubvalue ) {
575
+ continue;
576
+ }
577
+
578
+ if ( ! isset( $values['item_meta'][ $subsubindex ] ) ) {
579
+ $values['item_meta'][ $subsubindex ] = array();
580
+ }
581
+ $values['item_meta'][ $subsubindex ][] = $subsubvalue;
582
+ }
583
+ }
584
+
585
+ unset( $values['item_meta'][ $field_id ] );
586
+ }
587
+
588
+ return $form_ids;
589
+ }
590
+
591
  /**
592
  * @deprecated 3.0
593
  * @codeCoverageIgnore
classes/models/FrmFieldValue.php CHANGED
@@ -182,7 +182,7 @@ class FrmFieldValue {
182
  *
183
  * @param array $atts
184
  *
185
- * @return mixed
186
  */
187
  protected function generate_displayed_value_for_field_type( $atts ) {
188
  if ( ! FrmAppHelper::is_empty_value( $this->displayed_value, '' ) ) {
182
  *
183
  * @param array $atts
184
  *
185
+ * @return void
186
  */
187
  protected function generate_displayed_value_for_field_type( $atts ) {
188
  if ( ! FrmAppHelper::is_empty_value( $this->displayed_value, '' ) ) {
classes/models/FrmForm.php CHANGED
@@ -518,7 +518,7 @@ class FrmForm {
518
  $trash_forms = FrmDb::get_results( $wpdb->prefix . 'frm_forms', array( 'status' => 'trash' ), 'id, options' );
519
 
520
  if ( ! $trash_forms ) {
521
- return;
522
  }
523
 
524
  if ( empty( $delete_timestamp ) ) {
518
  $trash_forms = FrmDb::get_results( $wpdb->prefix . 'frm_forms', array( 'status' => 'trash' ), 'id, options' );
519
 
520
  if ( ! $trash_forms ) {
521
+ return 0;
522
  }
523
 
524
  if ( empty( $delete_timestamp ) ) {
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.08
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.09
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin.js CHANGED
@@ -1203,6 +1203,7 @@ function frmAdminBuildJS() {
1203
 
1204
  moveOption = document.createElement( 'span' );
1205
  moveOption.innerHTML = '<svg class="frmsvg"><use xlink:href="#frm_thick_move_icon"></use></svg>';
 
1206
  const moveOptionLabel = __( 'Move Field Group', 'formidable' );
1207
  addTooltip( moveOption, moveOptionLabel );
1208
  makeTabbable( moveOption, moveOptionLabel );
1203
 
1204
  moveOption = document.createElement( 'span' );
1205
  moveOption.innerHTML = '<svg class="frmsvg"><use xlink:href="#frm_thick_move_icon"></use></svg>';
1206
+ moveOption.classList.add( 'frm-move' );
1207
  const moveOptionLabel = __( 'Move Field Group', 'formidable' );
1208
  addTooltip( moveOption, moveOptionLabel );
1209
  makeTabbable( moveOption, moveOptionLabel );
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.08\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-10-07T12:48:23+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"
@@ -152,7 +152,7 @@ msgid "Installed"
152
  msgstr ""
153
 
154
  #: classes/controllers/FrmAddonsController.php:620
155
- #: classes/helpers/FrmAppHelper.php:2561
156
  msgid "Active"
157
  msgstr ""
158
 
@@ -198,7 +198,7 @@ msgstr ""
198
  #: classes/controllers/FrmAppController.php:165
199
  #: classes/controllers/FrmEntriesController.php:11
200
  #: classes/controllers/FrmEntriesController.php:100
201
- #: classes/controllers/FrmFormsController.php:760
202
  #: classes/controllers/FrmXMLController.php:259
203
  #: classes/views/xml/import_form.php:121
204
  msgid "Entries"
@@ -224,14 +224,14 @@ msgid "Build a Form"
224
  msgstr ""
225
 
226
  #: classes/controllers/FrmEntriesController.php:79
227
- #: classes/controllers/FrmFormsController.php:1306
228
  #: classes/views/frm-entries/form.php:63
229
  #: classes/views/frm-entries/sidebar-shared.php:57
230
  msgid "Entry Key"
231
  msgstr ""
232
 
233
  #: classes/controllers/FrmEntriesController.php:84
234
- #: classes/controllers/FrmFormsController.php:661
235
  #: classes/views/xml/import_form.php:152
236
  #: classes/widgets/FrmElementorWidget.php:37
237
  #: classes/widgets/FrmShowForm.php:59
@@ -322,7 +322,7 @@ msgid "You do not have permission to do that"
322
  msgstr ""
323
 
324
  #: classes/controllers/FrmFormsController.php:9
325
- #: classes/controllers/FrmFormsController.php:770
326
  #: classes/controllers/FrmStylesController.php:51
327
  #: classes/controllers/FrmXMLController.php:258
328
  #: classes/views/frm-forms/list.php:10
@@ -348,7 +348,7 @@ msgid "Settings Successfully Updated"
348
  msgstr ""
349
 
350
  #: classes/controllers/FrmFormsController.php:187
351
- #: classes/controllers/FrmFormsController.php:979
352
  msgid "Form was successfully updated."
353
  msgstr ""
354
 
@@ -405,49 +405,49 @@ msgid_plural "%1$s forms permanently deleted."
405
  msgstr[0] ""
406
  msgstr[1] ""
407
 
408
- #: classes/controllers/FrmFormsController.php:601
409
  msgid "There was an error creating a template."
410
  msgstr ""
411
 
412
- #: classes/controllers/FrmFormsController.php:645
413
  msgid "Add forms and content"
414
  msgstr ""
415
 
416
- #: classes/controllers/FrmFormsController.php:662
417
  #: classes/views/frm-forms/insert_form_popup.php:33
418
  msgid "Insert a Form"
419
  msgstr ""
420
 
421
- #: classes/controllers/FrmFormsController.php:691
422
  msgid "Display form title"
423
  msgstr ""
424
 
425
- #: classes/controllers/FrmFormsController.php:695
426
  msgid "Display form description"
427
  msgstr ""
428
 
429
- #: classes/controllers/FrmFormsController.php:699
430
  msgid "Minimize form HTML"
431
  msgstr ""
432
 
433
- #: classes/controllers/FrmFormsController.php:755
434
  #: classes/views/frm-forms/new-form-overlay.php:46
435
  msgid "Template Name"
436
  msgstr ""
437
 
438
- #: classes/controllers/FrmFormsController.php:756
439
  #: classes/views/xml/import_form.php:120
440
  msgid "Type"
441
  msgstr ""
442
 
443
- #: classes/controllers/FrmFormsController.php:757
444
- #: classes/controllers/FrmFormsController.php:761
445
  #: classes/helpers/FrmCSVExportHelper.php:230
446
  #: classes/views/shared/mb_adv_info.php:98
447
  msgid "Key"
448
  msgstr ""
449
 
450
- #: classes/controllers/FrmFormsController.php:759
451
  #: classes/controllers/FrmStylesController.php:394
452
  #: classes/views/frm-forms/settings-advanced.php:13
453
  #: classes/views/styles/manage.php:39
@@ -456,184 +456,184 @@ msgstr ""
456
  msgid "Form Title"
457
  msgstr ""
458
 
459
- #: classes/controllers/FrmFormsController.php:762
460
  msgid "Shortcodes"
461
  msgstr ""
462
 
463
- #: classes/controllers/FrmFormsController.php:765
464
  #: classes/models/FrmField.php:87
465
  msgid "Date"
466
  msgstr ""
467
 
468
- #: classes/controllers/FrmFormsController.php:885
469
  #: classes/helpers/FrmFormsHelper.php:1258
470
  msgid "My Templates"
471
  msgstr ""
472
 
473
- #: classes/controllers/FrmFormsController.php:944
474
  msgid "You are trying to edit a form that does not exist."
475
  msgstr ""
476
 
477
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
478
- #: classes/controllers/FrmFormsController.php:949
479
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
480
  msgstr ""
481
 
482
- #: classes/controllers/FrmFormsController.php:981
483
  msgid "Template was successfully updated."
484
  msgstr ""
485
 
486
- #: classes/controllers/FrmFormsController.php:1055
487
  #: classes/controllers/FrmStylesController.php:393
488
  msgid "General"
489
  msgstr ""
490
 
491
- #: classes/controllers/FrmFormsController.php:1056
492
  msgid "General Form Settings"
493
  msgstr ""
494
 
495
- #: classes/controllers/FrmFormsController.php:1061
496
  msgid "Actions & Notifications"
497
  msgstr ""
498
 
499
- #: classes/controllers/FrmFormsController.php:1067
500
- #: classes/controllers/FrmFormsController.php:1072
501
  msgid "Form Permissions"
502
  msgstr ""
503
 
504
- #: classes/controllers/FrmFormsController.php:1073
505
  msgid "Allow editing, protect forms and files, limit entries, and save drafts. Upgrade to get form and entry permissions."
506
  msgstr ""
507
 
508
- #: classes/controllers/FrmFormsController.php:1077
509
  msgid "Form Scheduling"
510
  msgstr ""
511
 
512
- #: classes/controllers/FrmFormsController.php:1082
513
  msgid "Form scheduling settings"
514
  msgstr ""
515
 
516
- #: classes/controllers/FrmFormsController.php:1086
517
  msgid "Styling & Buttons"
518
  msgstr ""
519
 
520
- #: classes/controllers/FrmFormsController.php:1092
521
  msgid "Customize HTML"
522
  msgstr ""
523
 
524
- #: classes/controllers/FrmFormsController.php:1222
525
  msgid "Customize field values with the following parameters."
526
  msgstr ""
527
 
528
- #: classes/controllers/FrmFormsController.php:1259
529
  msgid "Separator"
530
  msgstr ""
531
 
532
- #: classes/controllers/FrmFormsController.php:1260
533
  msgid "Use a different separator for checkbox fields"
534
  msgstr ""
535
 
536
- #: classes/controllers/FrmFormsController.php:1263
537
  msgid "Date Format"
538
  msgstr ""
539
 
540
- #: classes/controllers/FrmFormsController.php:1266
541
  #: classes/views/frm-fields/back-end/settings.php:27
542
  msgid "Field Label"
543
  msgstr ""
544
 
545
- #: classes/controllers/FrmFormsController.php:1269
546
  msgid "No Auto P"
547
  msgstr ""
548
 
549
- #: classes/controllers/FrmFormsController.php:1270
550
  msgid "Do not automatically add any paragraphs or line breaks"
551
  msgstr ""
552
 
553
- #: classes/controllers/FrmFormsController.php:1285
554
  #: classes/models/FrmField.php:62
555
  msgid "User ID"
556
  msgstr ""
557
 
558
- #: classes/controllers/FrmFormsController.php:1286
559
  msgid "First Name"
560
  msgstr ""
561
 
562
- #: classes/controllers/FrmFormsController.php:1287
563
  msgid "Last Name"
564
  msgstr ""
565
 
566
- #: classes/controllers/FrmFormsController.php:1288
567
  msgid "Display Name"
568
  msgstr ""
569
 
570
- #: classes/controllers/FrmFormsController.php:1289
571
  msgid "User Login"
572
  msgstr ""
573
 
574
- #: classes/controllers/FrmFormsController.php:1290
575
  #: classes/models/FrmField.php:34
576
  msgid "Email"
577
  msgstr ""
578
 
579
- #: classes/controllers/FrmFormsController.php:1291
580
  msgid "Avatar"
581
  msgstr ""
582
 
583
- #: classes/controllers/FrmFormsController.php:1292
584
  msgid "Author Link"
585
  msgstr ""
586
 
587
- #: classes/controllers/FrmFormsController.php:1305
588
  #: classes/views/frm-entries/sidebar-shared.php:51
589
  msgid "Entry ID"
590
  msgstr ""
591
 
592
- #: classes/controllers/FrmFormsController.php:1307
593
  msgid "Post ID"
594
  msgstr ""
595
 
596
- #: classes/controllers/FrmFormsController.php:1308
597
  msgid "User IP"
598
  msgstr ""
599
 
600
- #: classes/controllers/FrmFormsController.php:1309
601
  msgid "Entry created"
602
  msgstr ""
603
 
604
- #: classes/controllers/FrmFormsController.php:1310
605
  msgid "Entry updated"
606
  msgstr ""
607
 
608
- #: classes/controllers/FrmFormsController.php:1312
609
  msgid "Site URL"
610
  msgstr ""
611
 
612
- #: classes/controllers/FrmFormsController.php:1313
613
  msgid "Site Name"
614
  msgstr ""
615
 
616
- #: classes/controllers/FrmFormsController.php:1321
617
  msgid "Default Msg"
618
  msgstr ""
619
 
620
- #: classes/controllers/FrmFormsController.php:1322
621
  msgid "Default HTML"
622
  msgstr ""
623
 
624
- #: classes/controllers/FrmFormsController.php:1323
625
  msgid "Default Plain"
626
  msgstr ""
627
 
628
- #: classes/controllers/FrmFormsController.php:1426
629
  msgid "No forms were specified"
630
  msgstr ""
631
 
632
- #: classes/controllers/FrmFormsController.php:1538
633
  msgid "Abnormal HTML characters prevented your form from saving correctly"
634
  msgstr ""
635
 
636
- #: classes/controllers/FrmFormsController.php:1653
637
  #: classes/helpers/FrmFormsHelper.php:57
638
  #: classes/helpers/FrmFormsHelper.php:112
639
  #: classes/helpers/FrmFormsHelper.php:166
@@ -646,17 +646,17 @@ msgstr ""
646
  msgid "(no title)"
647
  msgstr ""
648
 
649
- #: classes/controllers/FrmFormsController.php:1699
650
- #: classes/controllers/FrmFormsController.php:1713
651
  msgid "Please select a valid form"
652
  msgstr ""
653
 
654
- #: classes/controllers/FrmFormsController.php:1935
655
  msgid "Please wait while you are redirected."
656
  msgstr ""
657
 
658
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
659
- #: classes/controllers/FrmFormsController.php:1971
660
  msgid "%1$sClick here%2$s if you are not automatically redirected."
661
  msgstr ""
662
 
@@ -853,7 +853,7 @@ msgid "Install WP Mail SMTP"
853
  msgstr ""
854
 
855
  #: classes/controllers/FrmSMTPController.php:305
856
- #: classes/helpers/FrmAppHelper.php:2560
857
  #: classes/helpers/FrmFormMigratorsHelper.php:131
858
  #: classes/views/shared/upgrade_overlay.php:32
859
  msgid "Install"
@@ -1014,205 +1014,205 @@ msgstr ""
1014
  msgid "Search"
1015
  msgstr ""
1016
 
1017
- #: classes/helpers/FrmAppHelper.php:1149
1018
  #: classes/views/frm-forms/settings-advanced.php:98
1019
  msgid "Select a Page"
1020
  msgstr ""
1021
 
1022
- #: classes/helpers/FrmAppHelper.php:1250
1023
  msgid "View Forms"
1024
  msgstr ""
1025
 
1026
- #: classes/helpers/FrmAppHelper.php:1251
1027
  msgid "Add and Edit Forms"
1028
  msgstr ""
1029
 
1030
- #: classes/helpers/FrmAppHelper.php:1252
1031
  msgid "Delete Forms"
1032
  msgstr ""
1033
 
1034
- #: classes/helpers/FrmAppHelper.php:1253
1035
  msgid "Access this Settings Page"
1036
  msgstr ""
1037
 
1038
- #: classes/helpers/FrmAppHelper.php:1254
1039
  msgid "View Entries from Admin Area"
1040
  msgstr ""
1041
 
1042
- #: classes/helpers/FrmAppHelper.php:1255
1043
  msgid "Delete Entries from Admin Area"
1044
  msgstr ""
1045
 
1046
- #: classes/helpers/FrmAppHelper.php:1263
1047
  msgid "Add Entries from Admin Area"
1048
  msgstr ""
1049
 
1050
- #: classes/helpers/FrmAppHelper.php:1264
1051
  msgid "Edit Entries from Admin Area"
1052
  msgstr ""
1053
 
1054
- #: classes/helpers/FrmAppHelper.php:1265
1055
  msgid "View Reports"
1056
  msgstr ""
1057
 
1058
- #: classes/helpers/FrmAppHelper.php:1266
1059
  msgid "Add/Edit Views"
1060
  msgstr ""
1061
 
1062
- #: classes/helpers/FrmAppHelper.php:1991
1063
  msgid "at"
1064
  msgstr ""
1065
 
1066
- #: classes/helpers/FrmAppHelper.php:2135
1067
  msgid "year"
1068
  msgstr ""
1069
 
1070
- #: classes/helpers/FrmAppHelper.php:2136
1071
  msgid "years"
1072
  msgstr ""
1073
 
1074
- #: classes/helpers/FrmAppHelper.php:2140
1075
  msgid "month"
1076
  msgstr ""
1077
 
1078
- #: classes/helpers/FrmAppHelper.php:2141
1079
  msgid "months"
1080
  msgstr ""
1081
 
1082
- #: classes/helpers/FrmAppHelper.php:2145
1083
  msgid "week"
1084
  msgstr ""
1085
 
1086
- #: classes/helpers/FrmAppHelper.php:2146
1087
  msgid "weeks"
1088
  msgstr ""
1089
 
1090
- #: classes/helpers/FrmAppHelper.php:2150
1091
  msgid "day"
1092
  msgstr ""
1093
 
1094
- #: classes/helpers/FrmAppHelper.php:2151
1095
  msgid "days"
1096
  msgstr ""
1097
 
1098
- #: classes/helpers/FrmAppHelper.php:2155
1099
  msgid "hour"
1100
  msgstr ""
1101
 
1102
- #: classes/helpers/FrmAppHelper.php:2156
1103
  msgid "hours"
1104
  msgstr ""
1105
 
1106
- #: classes/helpers/FrmAppHelper.php:2160
1107
  msgid "minute"
1108
  msgstr ""
1109
 
1110
- #: classes/helpers/FrmAppHelper.php:2161
1111
  msgid "minutes"
1112
  msgstr ""
1113
 
1114
- #: classes/helpers/FrmAppHelper.php:2165
1115
  msgid "second"
1116
  msgstr ""
1117
 
1118
- #: classes/helpers/FrmAppHelper.php:2166
1119
  msgid "seconds"
1120
  msgstr ""
1121
 
1122
- #: classes/helpers/FrmAppHelper.php:2260
1123
  msgid "Give this action a label for easy reference."
1124
  msgstr ""
1125
 
1126
- #: classes/helpers/FrmAppHelper.php:2261
1127
  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."
1128
  msgstr ""
1129
 
1130
- #: classes/helpers/FrmAppHelper.php:2262
1131
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1132
  msgstr ""
1133
 
1134
- #: classes/helpers/FrmAppHelper.php:2263
1135
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1136
  msgstr ""
1137
 
1138
- #: classes/helpers/FrmAppHelper.php:2264
1139
  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."
1140
  msgstr ""
1141
 
1142
- #: classes/helpers/FrmAppHelper.php:2265
1143
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1144
  msgstr ""
1145
 
1146
  #. translators: %1$s: Form name, %2$s: Date
1147
- #: classes/helpers/FrmAppHelper.php:2267
1148
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1149
  msgstr ""
1150
 
1151
- #: classes/helpers/FrmAppHelper.php:2463
1152
- #: classes/helpers/FrmAppHelper.php:2542
1153
  msgid "Please wait while your site updates."
1154
  msgstr ""
1155
 
1156
- #: classes/helpers/FrmAppHelper.php:2464
1157
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1158
  msgstr ""
1159
 
1160
- #: classes/helpers/FrmAppHelper.php:2467
1161
- #: classes/helpers/FrmAppHelper.php:2496
1162
  msgid "Loading&hellip;"
1163
  msgstr ""
1164
 
1165
- #: classes/helpers/FrmAppHelper.php:2497
1166
  msgid "Remove"
1167
  msgstr ""
1168
 
1169
- #: classes/helpers/FrmAppHelper.php:2500
1170
  #: classes/helpers/FrmCSVExportHelper.php:229
1171
  #: classes/views/shared/mb_adv_info.php:95
1172
  msgid "ID"
1173
  msgstr ""
1174
 
1175
- #: classes/helpers/FrmAppHelper.php:2501
1176
  msgid "No results match"
1177
  msgstr ""
1178
 
1179
- #: classes/helpers/FrmAppHelper.php:2502
1180
  msgid "That file looks like Spam."
1181
  msgstr ""
1182
 
1183
- #: classes/helpers/FrmAppHelper.php:2503
1184
  msgid "There is an error in the calculation in the field with key"
1185
  msgstr ""
1186
 
1187
- #: classes/helpers/FrmAppHelper.php:2504
1188
  msgid "Please complete the preceding required fields before uploading a file."
1189
  msgstr ""
1190
 
1191
- #: classes/helpers/FrmAppHelper.php:2515
1192
  msgid "(Click to add description)"
1193
  msgstr ""
1194
 
1195
- #: classes/helpers/FrmAppHelper.php:2516
1196
  msgid "(Blank)"
1197
  msgstr ""
1198
 
1199
- #: classes/helpers/FrmAppHelper.php:2517
1200
  msgid "(no label)"
1201
  msgstr ""
1202
 
1203
- #: classes/helpers/FrmAppHelper.php:2518
1204
  msgid "Saving"
1205
  msgstr ""
1206
 
1207
- #: classes/helpers/FrmAppHelper.php:2519
1208
  msgid "Saved"
1209
  msgstr ""
1210
 
1211
- #: classes/helpers/FrmAppHelper.php:2520
1212
  msgid "OK"
1213
  msgstr ""
1214
 
1215
- #: classes/helpers/FrmAppHelper.php:2521
1216
  #: classes/views/frm-forms/new-form-overlay.php:33
1217
  #: classes/views/frm-forms/new-form-overlay.php:100
1218
  #: classes/views/frm-forms/new-form-overlay.php:109
@@ -1221,420 +1221,420 @@ msgstr ""
1221
  #: classes/views/frm-forms/new-form-overlay.php:139
1222
  #: classes/views/shared/admin-header.php:64
1223
  #: classes/views/shared/confirm-overlay.php:19
1224
- #: js/formidable_admin.js:3676
1225
  msgid "Cancel"
1226
  msgstr ""
1227
 
1228
- #: classes/helpers/FrmAppHelper.php:2522
1229
  #: classes/views/frm-fields/back-end/settings.php:280
1230
  msgid "Default"
1231
  msgstr ""
1232
 
1233
- #: classes/helpers/FrmAppHelper.php:2523
1234
  msgid "Clear default value when typing"
1235
  msgstr ""
1236
 
1237
- #: classes/helpers/FrmAppHelper.php:2524
1238
  msgid "Do not clear default value when typing"
1239
  msgstr ""
1240
 
1241
- #: classes/helpers/FrmAppHelper.php:2525
1242
  msgid "Default value will pass form validation"
1243
  msgstr ""
1244
 
1245
- #: classes/helpers/FrmAppHelper.php:2526
1246
  msgid "Default value will NOT pass form validation"
1247
  msgstr ""
1248
 
1249
- #: classes/helpers/FrmAppHelper.php:2527
1250
  #: classes/helpers/FrmListHelper.php:405
1251
- #: js/formidable_admin.js:4068
1252
  msgid "Heads up"
1253
  msgstr ""
1254
 
1255
- #: classes/helpers/FrmAppHelper.php:2528
1256
  #: classes/views/shared/confirm-overlay.php:15
1257
  #: classes/views/shared/info-overlay.php:15
1258
  msgid "Are you sure?"
1259
  msgstr ""
1260
 
1261
- #: classes/helpers/FrmAppHelper.php:2529
1262
  msgid "Are you sure you want to delete this field and all data associated with it?"
1263
  msgstr ""
1264
 
1265
- #: classes/helpers/FrmAppHelper.php:2530
1266
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1267
  msgstr ""
1268
 
1269
- #: classes/helpers/FrmAppHelper.php:2531
1270
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1271
  msgstr ""
1272
 
1273
- #: classes/helpers/FrmAppHelper.php:2533
1274
  #: classes/helpers/FrmFieldsHelper.php:286
1275
  msgid "The entered values do not match"
1276
  msgstr ""
1277
 
1278
- #: classes/helpers/FrmAppHelper.php:2534
1279
  msgid "Enter Email"
1280
  msgstr ""
1281
 
1282
- #: classes/helpers/FrmAppHelper.php:2535
1283
  msgid "Confirm Email"
1284
  msgstr ""
1285
 
1286
- #: classes/helpers/FrmAppHelper.php:2536
1287
  #: classes/views/shared/mb_adv_info.php:166
1288
  msgid "Conditional content here"
1289
  msgstr ""
1290
 
1291
- #: classes/helpers/FrmAppHelper.php:2537
1292
  #: classes/helpers/FrmFieldsHelper.php:458
1293
  #: classes/helpers/FrmFieldsHelper.php:459
1294
  msgid "New Option"
1295
  msgstr ""
1296
 
1297
- #: classes/helpers/FrmAppHelper.php:2538
1298
  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."
1299
  msgstr ""
1300
 
1301
- #: classes/helpers/FrmAppHelper.php:2539
1302
  msgid "Enter Password"
1303
  msgstr ""
1304
 
1305
- #: classes/helpers/FrmAppHelper.php:2540
1306
  msgid "Confirm Password"
1307
  msgstr ""
1308
 
1309
- #: classes/helpers/FrmAppHelper.php:2541
1310
  msgid "Import Complete"
1311
  msgstr ""
1312
 
1313
- #: classes/helpers/FrmAppHelper.php:2543
1314
  msgid "Warning: There is no way to retrieve unsaved entries."
1315
  msgstr ""
1316
 
1317
- #: classes/helpers/FrmAppHelper.php:2544
1318
  msgid "Private"
1319
  msgstr ""
1320
 
1321
- #: classes/helpers/FrmAppHelper.php:2547
1322
  msgid "No new licenses were found"
1323
  msgstr ""
1324
 
1325
- #: classes/helpers/FrmAppHelper.php:2548
1326
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1327
  msgstr ""
1328
 
1329
- #: classes/helpers/FrmAppHelper.php:2549
1330
  msgid "This calculation may have shortcodes that work in Views but not forms."
1331
  msgstr ""
1332
 
1333
- #: classes/helpers/FrmAppHelper.php:2550
1334
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1335
  msgstr ""
1336
 
1337
- #: classes/helpers/FrmAppHelper.php:2551
1338
  msgid "This form action is limited to one per form. Please edit the existing form action."
1339
  msgstr ""
1340
 
1341
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1342
- #: classes/helpers/FrmAppHelper.php:2554
1343
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1344
  msgstr ""
1345
 
1346
  #. 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.
1347
- #: classes/helpers/FrmAppHelper.php:2556
1348
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1349
  msgstr ""
1350
 
1351
- #: classes/helpers/FrmAppHelper.php:2557
1352
  #: classes/helpers/FrmFormsHelper.php:1489
1353
  msgid "See the list of reserved words in WordPress."
1354
  msgstr ""
1355
 
1356
- #: classes/helpers/FrmAppHelper.php:2558
1357
  msgid "Please enter a Repeat Limit that is greater than 1."
1358
  msgstr ""
1359
 
1360
- #: classes/helpers/FrmAppHelper.php:2559
1361
  msgid "Please select a limit between 0 and 200."
1362
  msgstr ""
1363
 
1364
- #: classes/helpers/FrmAppHelper.php:2562
1365
  #: classes/views/shared/mb_adv_info.php:113
1366
  #: classes/views/shared/mb_adv_info.php:127
1367
  msgid "Select a Field"
1368
  msgstr ""
1369
 
1370
- #: classes/helpers/FrmAppHelper.php:2563
1371
  #: classes/helpers/FrmListHelper.php:262
1372
  msgid "No items found."
1373
  msgstr ""
1374
 
1375
- #: classes/helpers/FrmAppHelper.php:2591
1376
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1377
  msgstr ""
1378
 
1379
- #: classes/helpers/FrmAppHelper.php:2618
1380
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1381
  msgstr ""
1382
 
1383
- #: classes/helpers/FrmAppHelper.php:2646
1384
  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+."
1385
  msgstr ""
1386
 
1387
- #: classes/helpers/FrmAppHelper.php:2652
1388
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1389
  msgstr ""
1390
 
1391
- #: classes/helpers/FrmAppHelper.php:2666
1392
  msgid "English"
1393
  msgstr ""
1394
 
1395
- #: classes/helpers/FrmAppHelper.php:2667
1396
  msgid "Afrikaans"
1397
  msgstr ""
1398
 
1399
- #: classes/helpers/FrmAppHelper.php:2668
1400
  msgid "Albanian"
1401
  msgstr ""
1402
 
1403
- #: classes/helpers/FrmAppHelper.php:2669
1404
  msgid "Arabic"
1405
  msgstr ""
1406
 
1407
- #: classes/helpers/FrmAppHelper.php:2670
1408
  msgid "Armenian"
1409
  msgstr ""
1410
 
1411
- #: classes/helpers/FrmAppHelper.php:2671
1412
  msgid "Azerbaijani"
1413
  msgstr ""
1414
 
1415
- #: classes/helpers/FrmAppHelper.php:2672
1416
  msgid "Basque"
1417
  msgstr ""
1418
 
1419
- #: classes/helpers/FrmAppHelper.php:2673
1420
  msgid "Bosnian"
1421
  msgstr ""
1422
 
1423
- #: classes/helpers/FrmAppHelper.php:2674
1424
  msgid "Bulgarian"
1425
  msgstr ""
1426
 
1427
- #: classes/helpers/FrmAppHelper.php:2675
1428
  msgid "Catalan"
1429
  msgstr ""
1430
 
1431
- #: classes/helpers/FrmAppHelper.php:2676
1432
  msgid "Chinese Hong Kong"
1433
  msgstr ""
1434
 
1435
- #: classes/helpers/FrmAppHelper.php:2677
1436
  msgid "Chinese Simplified"
1437
  msgstr ""
1438
 
1439
- #: classes/helpers/FrmAppHelper.php:2678
1440
  msgid "Chinese Traditional"
1441
  msgstr ""
1442
 
1443
- #: classes/helpers/FrmAppHelper.php:2679
1444
  msgid "Croatian"
1445
  msgstr ""
1446
 
1447
- #: classes/helpers/FrmAppHelper.php:2680
1448
  msgid "Czech"
1449
  msgstr ""
1450
 
1451
- #: classes/helpers/FrmAppHelper.php:2681
1452
  msgid "Danish"
1453
  msgstr ""
1454
 
1455
- #: classes/helpers/FrmAppHelper.php:2682
1456
  msgid "Dutch"
1457
  msgstr ""
1458
 
1459
- #: classes/helpers/FrmAppHelper.php:2683
1460
  msgid "English/UK"
1461
  msgstr ""
1462
 
1463
- #: classes/helpers/FrmAppHelper.php:2684
1464
  msgid "Esperanto"
1465
  msgstr ""
1466
 
1467
- #: classes/helpers/FrmAppHelper.php:2685
1468
  msgid "Estonian"
1469
  msgstr ""
1470
 
1471
- #: classes/helpers/FrmAppHelper.php:2686
1472
  msgid "Faroese"
1473
  msgstr ""
1474
 
1475
- #: classes/helpers/FrmAppHelper.php:2687
1476
  msgid "Farsi/Persian"
1477
  msgstr ""
1478
 
1479
- #: classes/helpers/FrmAppHelper.php:2688
1480
  msgid "Filipino"
1481
  msgstr ""
1482
 
1483
- #: classes/helpers/FrmAppHelper.php:2689
1484
  msgid "Finnish"
1485
  msgstr ""
1486
 
1487
- #: classes/helpers/FrmAppHelper.php:2690
1488
  msgid "French"
1489
  msgstr ""
1490
 
1491
- #: classes/helpers/FrmAppHelper.php:2691
1492
  msgid "French/Canadian"
1493
  msgstr ""
1494
 
1495
- #: classes/helpers/FrmAppHelper.php:2692
1496
  msgid "French/Swiss"
1497
  msgstr ""
1498
 
1499
- #: classes/helpers/FrmAppHelper.php:2693
1500
  msgid "German"
1501
  msgstr ""
1502
 
1503
- #: classes/helpers/FrmAppHelper.php:2694
1504
  msgid "German/Austria"
1505
  msgstr ""
1506
 
1507
- #: classes/helpers/FrmAppHelper.php:2695
1508
  msgid "German/Switzerland"
1509
  msgstr ""
1510
 
1511
- #: classes/helpers/FrmAppHelper.php:2696
1512
  msgid "Greek"
1513
  msgstr ""
1514
 
1515
- #: classes/helpers/FrmAppHelper.php:2697
1516
- #: classes/helpers/FrmAppHelper.php:2698
1517
  msgid "Hebrew"
1518
  msgstr ""
1519
 
1520
- #: classes/helpers/FrmAppHelper.php:2699
1521
  msgid "Hindi"
1522
  msgstr ""
1523
 
1524
- #: classes/helpers/FrmAppHelper.php:2700
1525
  msgid "Hungarian"
1526
  msgstr ""
1527
 
1528
- #: classes/helpers/FrmAppHelper.php:2701
1529
  msgid "Icelandic"
1530
  msgstr ""
1531
 
1532
- #: classes/helpers/FrmAppHelper.php:2702
1533
  msgid "Indonesian"
1534
  msgstr ""
1535
 
1536
- #: classes/helpers/FrmAppHelper.php:2703
1537
  msgid "Italian"
1538
  msgstr ""
1539
 
1540
- #: classes/helpers/FrmAppHelper.php:2704
1541
  msgid "Japanese"
1542
  msgstr ""
1543
 
1544
- #: classes/helpers/FrmAppHelper.php:2705
1545
  msgid "Korean"
1546
  msgstr ""
1547
 
1548
- #: classes/helpers/FrmAppHelper.php:2706
1549
  msgid "Latvian"
1550
  msgstr ""
1551
 
1552
- #: classes/helpers/FrmAppHelper.php:2707
1553
  msgid "Lithuanian"
1554
  msgstr ""
1555
 
1556
- #: classes/helpers/FrmAppHelper.php:2708
1557
  msgid "Malaysian"
1558
  msgstr ""
1559
 
1560
- #: classes/helpers/FrmAppHelper.php:2709
1561
  msgid "Norwegian"
1562
  msgstr ""
1563
 
1564
- #: classes/helpers/FrmAppHelper.php:2710
1565
  msgid "Polish"
1566
  msgstr ""
1567
 
1568
- #: classes/helpers/FrmAppHelper.php:2711
1569
  msgid "Portuguese"
1570
  msgstr ""
1571
 
1572
- #: classes/helpers/FrmAppHelper.php:2712
1573
  msgid "Portuguese/Brazilian"
1574
  msgstr ""
1575
 
1576
- #: classes/helpers/FrmAppHelper.php:2713
1577
  msgid "Portuguese/Portugal"
1578
  msgstr ""
1579
 
1580
- #: classes/helpers/FrmAppHelper.php:2714
1581
  msgid "Romanian"
1582
  msgstr ""
1583
 
1584
- #: classes/helpers/FrmAppHelper.php:2715
1585
  msgid "Russian"
1586
  msgstr ""
1587
 
1588
- #: classes/helpers/FrmAppHelper.php:2716
1589
- #: classes/helpers/FrmAppHelper.php:2717
1590
  msgid "Serbian"
1591
  msgstr ""
1592
 
1593
- #: classes/helpers/FrmAppHelper.php:2718
1594
  msgid "Slovak"
1595
  msgstr ""
1596
 
1597
- #: classes/helpers/FrmAppHelper.php:2719
1598
  msgid "Slovenian"
1599
  msgstr ""
1600
 
1601
- #: classes/helpers/FrmAppHelper.php:2720
1602
  msgid "Spanish"
1603
  msgstr ""
1604
 
1605
- #: classes/helpers/FrmAppHelper.php:2721
1606
  msgid "Spanish/Latin America"
1607
  msgstr ""
1608
 
1609
- #: classes/helpers/FrmAppHelper.php:2722
1610
  msgid "Swedish"
1611
  msgstr ""
1612
 
1613
- #: classes/helpers/FrmAppHelper.php:2723
1614
  msgid "Tamil"
1615
  msgstr ""
1616
 
1617
- #: classes/helpers/FrmAppHelper.php:2724
1618
  msgid "Thai"
1619
  msgstr ""
1620
 
1621
- #: classes/helpers/FrmAppHelper.php:2725
1622
  msgid "Turkish"
1623
  msgstr ""
1624
 
1625
- #: classes/helpers/FrmAppHelper.php:2726
1626
  msgid "Ukrainian"
1627
  msgstr ""
1628
 
1629
- #: classes/helpers/FrmAppHelper.php:2727
1630
  msgid "Vietnamese"
1631
  msgstr ""
1632
 
1633
- #: classes/helpers/FrmAppHelper.php:3011
1634
  msgid "Your account has expired"
1635
  msgstr ""
1636
 
1637
- #: classes/helpers/FrmAppHelper.php:3014
1638
  msgid "Renew Now"
1639
  msgstr ""
1640
 
@@ -1756,7 +1756,7 @@ msgstr ""
1756
  #: classes/helpers/FrmFormsHelper.php:1138
1757
  #: classes/helpers/FrmFormsListHelper.php:133
1758
  #: classes/views/frm-form-actions/form_action.php:25
1759
- #: js/formidable_admin.js:2054
1760
  msgid "Delete"
1761
  msgstr ""
1762
 
@@ -1768,7 +1768,7 @@ msgstr ""
1768
  #. translators: %s: The field name.
1769
  #: classes/helpers/FrmFieldsHelper.php:167
1770
  #: classes/helpers/FrmFieldsHelper.php:296
1771
- #: classes/helpers/FrmXMLHelper.php:1228
1772
  #: classes/models/fields/FrmFieldType.php:583
1773
  msgid "%s is invalid"
1774
  msgstr ""
@@ -3619,34 +3619,34 @@ msgstr ""
3619
  msgid "Collect instant payments, and send leads to MailChimp."
3620
  msgstr ""
3621
 
3622
- #: classes/helpers/FrmXMLHelper.php:31
3623
  msgid "Your server does not have XML enabled"
3624
  msgstr ""
3625
 
3626
- #: classes/helpers/FrmXMLHelper.php:37
3627
- #: classes/helpers/FrmXMLHelper.php:49
3628
  msgid "There was an error when reading this XML file"
3629
  msgstr ""
3630
 
3631
- #: classes/helpers/FrmXMLHelper.php:41
3632
  msgid "Your server is missing the simplexml_import_dom function"
3633
  msgstr ""
3634
 
3635
- #: classes/helpers/FrmXMLHelper.php:1067
3636
  #: classes/views/solutions/_import.php:51
3637
  msgid "Imported"
3638
  msgstr ""
3639
 
3640
- #: classes/helpers/FrmXMLHelper.php:1068
3641
  msgid "Updated"
3642
  msgstr ""
3643
 
3644
- #: classes/helpers/FrmXMLHelper.php:1093
3645
  msgid "Nothing was imported or updated"
3646
  msgstr ""
3647
 
3648
  #. translators: %1$s: Number of items
3649
- #: classes/helpers/FrmXMLHelper.php:1108
3650
  msgid "%1$s Form"
3651
  msgid_plural "%1$s Forms"
3652
  msgstr[0] ""
@@ -3654,7 +3654,7 @@ msgstr[1] ""
3654
 
3655
  #. translators: %1$s: Number of items
3656
  #. translators: %1$s - field type
3657
- #: classes/helpers/FrmXMLHelper.php:1110
3658
  #: classes/models/FrmFormMigrator.php:584
3659
  msgid "%1$s Field"
3660
  msgid_plural "%1$s Fields"
@@ -3662,56 +3662,56 @@ msgstr[0] ""
3662
  msgstr[1] ""
3663
 
3664
  #. translators: %1$s: Number of items
3665
- #: classes/helpers/FrmXMLHelper.php:1112
3666
  msgid "%1$s Entry"
3667
  msgid_plural "%1$s Entries"
3668
  msgstr[0] ""
3669
  msgstr[1] ""
3670
 
3671
  #. translators: %1$s: Number of items
3672
- #: classes/helpers/FrmXMLHelper.php:1114
3673
  msgid "%1$s View"
3674
  msgid_plural "%1$s Views"
3675
  msgstr[0] ""
3676
  msgstr[1] ""
3677
 
3678
  #. translators: %1$s: Number of items
3679
- #: classes/helpers/FrmXMLHelper.php:1116
3680
  msgid "%1$s Post"
3681
  msgid_plural "%1$s Posts"
3682
  msgstr[0] ""
3683
  msgstr[1] ""
3684
 
3685
  #. translators: %1$s: Number of items
3686
- #: classes/helpers/FrmXMLHelper.php:1118
3687
  msgid "%1$s Style"
3688
  msgid_plural "%1$s Styles"
3689
  msgstr[0] ""
3690
  msgstr[1] ""
3691
 
3692
  #. translators: %1$s: Number of items
3693
- #: classes/helpers/FrmXMLHelper.php:1120
3694
  msgid "%1$s Term"
3695
  msgid_plural "%1$s Terms"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
  #. translators: %1$s: Number of items
3700
- #: classes/helpers/FrmXMLHelper.php:1122
3701
  msgid "%1$s Form Action"
3702
  msgid_plural "%1$s Form Actions"
3703
  msgstr[0] ""
3704
  msgstr[1] ""
3705
 
3706
- #: classes/helpers/FrmXMLHelper.php:1146
3707
  msgid "Go to imported form"
3708
  msgstr ""
3709
 
3710
- #: classes/helpers/FrmXMLHelper.php:1347
3711
  msgid "Create Posts"
3712
  msgstr ""
3713
 
3714
- #: classes/helpers/FrmXMLHelper.php:1476
3715
  msgid "Email Notification"
3716
  msgstr ""
3717
 
@@ -4495,7 +4495,7 @@ msgstr ""
4495
  #: classes/views/frm-fields/back-end/inline-modal.php:7
4496
  #: classes/views/frm-fields/back-end/inline-modal.php:8
4497
  #: classes/views/shared/admin-header.php:19
4498
- #: js/formidable_admin.js:7641
4499
  msgid "Close"
4500
  msgstr ""
4501
 
@@ -4783,7 +4783,7 @@ msgid "Conditional emails"
4783
  msgstr ""
4784
 
4785
  #: classes/views/frm-form-actions/form_action.php:21
4786
- #: js/formidable_admin.js:2060
4787
  msgid "Duplicate"
4788
  msgstr ""
4789
 
@@ -4908,9 +4908,9 @@ msgid "Move Field"
4908
  msgstr ""
4909
 
4910
  #: classes/views/frm-forms/add_field.php:29
4911
- #: js/formidable_admin.js:1238
4912
- #: js/formidable_admin.js:1241
4913
- #: js/formidable_admin.js:1998
4914
  msgid "More Options"
4915
  msgstr ""
4916
 
@@ -6291,55 +6291,55 @@ msgstr ""
6291
  msgid "Set Row Layout"
6292
  msgstr ""
6293
 
6294
- #: js/formidable_admin.js:1206
6295
  msgid "Move Field Group"
6296
  msgstr ""
6297
 
6298
- #: js/formidable_admin.js:2026
6299
  msgid "Field settings"
6300
  msgstr ""
6301
 
6302
- #: js/formidable_admin.js:2054
6303
  msgid "Delete Group"
6304
  msgstr ""
6305
 
6306
- #: js/formidable_admin.js:2060
6307
  msgid "Duplicate Group"
6308
  msgstr ""
6309
 
6310
- #: js/formidable_admin.js:3373
6311
  msgid "Custom layout"
6312
  msgstr ""
6313
 
6314
- #: js/formidable_admin.js:3396
6315
  msgid "Break into rows"
6316
  msgstr ""
6317
 
6318
- #: js/formidable_admin.js:3406
6319
  msgid "Row Layout"
6320
  msgstr ""
6321
 
6322
- #: js/formidable_admin.js:3661
6323
  msgid "Enter number of columns for each field"
6324
  msgstr ""
6325
 
6326
- #: js/formidable_admin.js:3665
6327
  msgid "Layouts are based on a 12-column grid system"
6328
  msgstr ""
6329
 
6330
- #: js/formidable_admin.js:3681
6331
  msgid "Save"
6332
  msgstr ""
6333
 
6334
- #: js/formidable_admin.js:3982
6335
  msgid "Merge into row"
6336
  msgstr ""
6337
 
6338
  #. translators: %1$s: Number of fields that are selected to be deleted.
6339
- #: js/formidable_admin.js:4070
6340
  msgid "Are you sure you want to delete these %1$s selected fields?"
6341
  msgstr ""
6342
 
6343
- #: js/formidable_admin.js:7633
6344
  msgid "Save and Reload"
6345
  msgstr ""
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.09\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-10-19T17:05:03+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"
152
  msgstr ""
153
 
154
  #: classes/controllers/FrmAddonsController.php:620
155
+ #: classes/helpers/FrmAppHelper.php:2583
156
  msgid "Active"
157
  msgstr ""
158
 
198
  #: classes/controllers/FrmAppController.php:165
199
  #: classes/controllers/FrmEntriesController.php:11
200
  #: classes/controllers/FrmEntriesController.php:100
201
+ #: classes/controllers/FrmFormsController.php:763
202
  #: classes/controllers/FrmXMLController.php:259
203
  #: classes/views/xml/import_form.php:121
204
  msgid "Entries"
224
  msgstr ""
225
 
226
  #: classes/controllers/FrmEntriesController.php:79
227
+ #: classes/controllers/FrmFormsController.php:1309
228
  #: classes/views/frm-entries/form.php:63
229
  #: classes/views/frm-entries/sidebar-shared.php:57
230
  msgid "Entry Key"
231
  msgstr ""
232
 
233
  #: classes/controllers/FrmEntriesController.php:84
234
+ #: classes/controllers/FrmFormsController.php:664
235
  #: classes/views/xml/import_form.php:152
236
  #: classes/widgets/FrmElementorWidget.php:37
237
  #: classes/widgets/FrmShowForm.php:59
322
  msgstr ""
323
 
324
  #: classes/controllers/FrmFormsController.php:9
325
+ #: classes/controllers/FrmFormsController.php:773
326
  #: classes/controllers/FrmStylesController.php:51
327
  #: classes/controllers/FrmXMLController.php:258
328
  #: classes/views/frm-forms/list.php:10
348
  msgstr ""
349
 
350
  #: classes/controllers/FrmFormsController.php:187
351
+ #: classes/controllers/FrmFormsController.php:982
352
  msgid "Form was successfully updated."
353
  msgstr ""
354
 
405
  msgstr[0] ""
406
  msgstr[1] ""
407
 
408
+ #: classes/controllers/FrmFormsController.php:604
409
  msgid "There was an error creating a template."
410
  msgstr ""
411
 
412
+ #: classes/controllers/FrmFormsController.php:648
413
  msgid "Add forms and content"
414
  msgstr ""
415
 
416
+ #: classes/controllers/FrmFormsController.php:665
417
  #: classes/views/frm-forms/insert_form_popup.php:33
418
  msgid "Insert a Form"
419
  msgstr ""
420
 
421
+ #: classes/controllers/FrmFormsController.php:694
422
  msgid "Display form title"
423
  msgstr ""
424
 
425
+ #: classes/controllers/FrmFormsController.php:698
426
  msgid "Display form description"
427
  msgstr ""
428
 
429
+ #: classes/controllers/FrmFormsController.php:702
430
  msgid "Minimize form HTML"
431
  msgstr ""
432
 
433
+ #: classes/controllers/FrmFormsController.php:758
434
  #: classes/views/frm-forms/new-form-overlay.php:46
435
  msgid "Template Name"
436
  msgstr ""
437
 
438
+ #: classes/controllers/FrmFormsController.php:759
439
  #: classes/views/xml/import_form.php:120
440
  msgid "Type"
441
  msgstr ""
442
 
443
+ #: classes/controllers/FrmFormsController.php:760
444
+ #: classes/controllers/FrmFormsController.php:764
445
  #: classes/helpers/FrmCSVExportHelper.php:230
446
  #: classes/views/shared/mb_adv_info.php:98
447
  msgid "Key"
448
  msgstr ""
449
 
450
+ #: classes/controllers/FrmFormsController.php:762
451
  #: classes/controllers/FrmStylesController.php:394
452
  #: classes/views/frm-forms/settings-advanced.php:13
453
  #: classes/views/styles/manage.php:39
456
  msgid "Form Title"
457
  msgstr ""
458
 
459
+ #: classes/controllers/FrmFormsController.php:765
460
  msgid "Shortcodes"
461
  msgstr ""
462
 
463
+ #: classes/controllers/FrmFormsController.php:768
464
  #: classes/models/FrmField.php:87
465
  msgid "Date"
466
  msgstr ""
467
 
468
+ #: classes/controllers/FrmFormsController.php:888
469
  #: classes/helpers/FrmFormsHelper.php:1258
470
  msgid "My Templates"
471
  msgstr ""
472
 
473
+ #: classes/controllers/FrmFormsController.php:947
474
  msgid "You are trying to edit a form that does not exist."
475
  msgstr ""
476
 
477
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
478
+ #: classes/controllers/FrmFormsController.php:952
479
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
480
  msgstr ""
481
 
482
+ #: classes/controllers/FrmFormsController.php:984
483
  msgid "Template was successfully updated."
484
  msgstr ""
485
 
486
+ #: classes/controllers/FrmFormsController.php:1058
487
  #: classes/controllers/FrmStylesController.php:393
488
  msgid "General"
489
  msgstr ""
490
 
491
+ #: classes/controllers/FrmFormsController.php:1059
492
  msgid "General Form Settings"
493
  msgstr ""
494
 
495
+ #: classes/controllers/FrmFormsController.php:1064
496
  msgid "Actions & Notifications"
497
  msgstr ""
498
 
499
+ #: classes/controllers/FrmFormsController.php:1070
500
+ #: classes/controllers/FrmFormsController.php:1075
501
  msgid "Form Permissions"
502
  msgstr ""
503
 
504
+ #: classes/controllers/FrmFormsController.php:1076
505
  msgid "Allow editing, protect forms and files, limit entries, and save drafts. Upgrade to get form and entry permissions."
506
  msgstr ""
507
 
508
+ #: classes/controllers/FrmFormsController.php:1080
509
  msgid "Form Scheduling"
510
  msgstr ""
511
 
512
+ #: classes/controllers/FrmFormsController.php:1085
513
  msgid "Form scheduling settings"
514
  msgstr ""
515
 
516
+ #: classes/controllers/FrmFormsController.php:1089
517
  msgid "Styling & Buttons"
518
  msgstr ""
519
 
520
+ #: classes/controllers/FrmFormsController.php:1095
521
  msgid "Customize HTML"
522
  msgstr ""
523
 
524
+ #: classes/controllers/FrmFormsController.php:1225
525
  msgid "Customize field values with the following parameters."
526
  msgstr ""
527
 
528
+ #: classes/controllers/FrmFormsController.php:1262
529
  msgid "Separator"
530
  msgstr ""
531
 
532
+ #: classes/controllers/FrmFormsController.php:1263
533
  msgid "Use a different separator for checkbox fields"
534
  msgstr ""
535
 
536
+ #: classes/controllers/FrmFormsController.php:1266
537
  msgid "Date Format"
538
  msgstr ""
539
 
540
+ #: classes/controllers/FrmFormsController.php:1269
541
  #: classes/views/frm-fields/back-end/settings.php:27
542
  msgid "Field Label"
543
  msgstr ""
544
 
545
+ #: classes/controllers/FrmFormsController.php:1272
546
  msgid "No Auto P"
547
  msgstr ""
548
 
549
+ #: classes/controllers/FrmFormsController.php:1273
550
  msgid "Do not automatically add any paragraphs or line breaks"
551
  msgstr ""
552
 
553
+ #: classes/controllers/FrmFormsController.php:1288
554
  #: classes/models/FrmField.php:62
555
  msgid "User ID"
556
  msgstr ""
557
 
558
+ #: classes/controllers/FrmFormsController.php:1289
559
  msgid "First Name"
560
  msgstr ""
561
 
562
+ #: classes/controllers/FrmFormsController.php:1290
563
  msgid "Last Name"
564
  msgstr ""
565
 
566
+ #: classes/controllers/FrmFormsController.php:1291
567
  msgid "Display Name"
568
  msgstr ""
569
 
570
+ #: classes/controllers/FrmFormsController.php:1292
571
  msgid "User Login"
572
  msgstr ""
573
 
574
+ #: classes/controllers/FrmFormsController.php:1293
575
  #: classes/models/FrmField.php:34
576
  msgid "Email"
577
  msgstr ""
578
 
579
+ #: classes/controllers/FrmFormsController.php:1294
580
  msgid "Avatar"
581
  msgstr ""
582
 
583
+ #: classes/controllers/FrmFormsController.php:1295
584
  msgid "Author Link"
585
  msgstr ""
586
 
587
+ #: classes/controllers/FrmFormsController.php:1308
588
  #: classes/views/frm-entries/sidebar-shared.php:51
589
  msgid "Entry ID"
590
  msgstr ""
591
 
592
+ #: classes/controllers/FrmFormsController.php:1310
593
  msgid "Post ID"
594
  msgstr ""
595
 
596
+ #: classes/controllers/FrmFormsController.php:1311
597
  msgid "User IP"
598
  msgstr ""
599
 
600
+ #: classes/controllers/FrmFormsController.php:1312
601
  msgid "Entry created"
602
  msgstr ""
603
 
604
+ #: classes/controllers/FrmFormsController.php:1313
605
  msgid "Entry updated"
606
  msgstr ""
607
 
608
+ #: classes/controllers/FrmFormsController.php:1315
609
  msgid "Site URL"
610
  msgstr ""
611
 
612
+ #: classes/controllers/FrmFormsController.php:1316
613
  msgid "Site Name"
614
  msgstr ""
615
 
616
+ #: classes/controllers/FrmFormsController.php:1324
617
  msgid "Default Msg"
618
  msgstr ""
619
 
620
+ #: classes/controllers/FrmFormsController.php:1325
621
  msgid "Default HTML"
622
  msgstr ""
623
 
624
+ #: classes/controllers/FrmFormsController.php:1326
625
  msgid "Default Plain"
626
  msgstr ""
627
 
628
+ #: classes/controllers/FrmFormsController.php:1429
629
  msgid "No forms were specified"
630
  msgstr ""
631
 
632
+ #: classes/controllers/FrmFormsController.php:1541
633
  msgid "Abnormal HTML characters prevented your form from saving correctly"
634
  msgstr ""
635
 
636
+ #: classes/controllers/FrmFormsController.php:1656
637
  #: classes/helpers/FrmFormsHelper.php:57
638
  #: classes/helpers/FrmFormsHelper.php:112
639
  #: classes/helpers/FrmFormsHelper.php:166
646
  msgid "(no title)"
647
  msgstr ""
648
 
649
+ #: classes/controllers/FrmFormsController.php:1702
650
+ #: classes/controllers/FrmFormsController.php:1716
651
  msgid "Please select a valid form"
652
  msgstr ""
653
 
654
+ #: classes/controllers/FrmFormsController.php:1938
655
  msgid "Please wait while you are redirected."
656
  msgstr ""
657
 
658
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
659
+ #: classes/controllers/FrmFormsController.php:1974
660
  msgid "%1$sClick here%2$s if you are not automatically redirected."
661
  msgstr ""
662
 
853
  msgstr ""
854
 
855
  #: classes/controllers/FrmSMTPController.php:305
856
+ #: classes/helpers/FrmAppHelper.php:2582
857
  #: classes/helpers/FrmFormMigratorsHelper.php:131
858
  #: classes/views/shared/upgrade_overlay.php:32
859
  msgid "Install"
1014
  msgid "Search"
1015
  msgstr ""
1016
 
1017
+ #: classes/helpers/FrmAppHelper.php:1171
1018
  #: classes/views/frm-forms/settings-advanced.php:98
1019
  msgid "Select a Page"
1020
  msgstr ""
1021
 
1022
+ #: classes/helpers/FrmAppHelper.php:1272
1023
  msgid "View Forms"
1024
  msgstr ""
1025
 
1026
+ #: classes/helpers/FrmAppHelper.php:1273
1027
  msgid "Add and Edit Forms"
1028
  msgstr ""
1029
 
1030
+ #: classes/helpers/FrmAppHelper.php:1274
1031
  msgid "Delete Forms"
1032
  msgstr ""
1033
 
1034
+ #: classes/helpers/FrmAppHelper.php:1275
1035
  msgid "Access this Settings Page"
1036
  msgstr ""
1037
 
1038
+ #: classes/helpers/FrmAppHelper.php:1276
1039
  msgid "View Entries from Admin Area"
1040
  msgstr ""
1041
 
1042
+ #: classes/helpers/FrmAppHelper.php:1277
1043
  msgid "Delete Entries from Admin Area"
1044
  msgstr ""
1045
 
1046
+ #: classes/helpers/FrmAppHelper.php:1285
1047
  msgid "Add Entries from Admin Area"
1048
  msgstr ""
1049
 
1050
+ #: classes/helpers/FrmAppHelper.php:1286
1051
  msgid "Edit Entries from Admin Area"
1052
  msgstr ""
1053
 
1054
+ #: classes/helpers/FrmAppHelper.php:1287
1055
  msgid "View Reports"
1056
  msgstr ""
1057
 
1058
+ #: classes/helpers/FrmAppHelper.php:1288
1059
  msgid "Add/Edit Views"
1060
  msgstr ""
1061
 
1062
+ #: classes/helpers/FrmAppHelper.php:2013
1063
  msgid "at"
1064
  msgstr ""
1065
 
1066
+ #: classes/helpers/FrmAppHelper.php:2157
1067
  msgid "year"
1068
  msgstr ""
1069
 
1070
+ #: classes/helpers/FrmAppHelper.php:2158
1071
  msgid "years"
1072
  msgstr ""
1073
 
1074
+ #: classes/helpers/FrmAppHelper.php:2162
1075
  msgid "month"
1076
  msgstr ""
1077
 
1078
+ #: classes/helpers/FrmAppHelper.php:2163
1079
  msgid "months"
1080
  msgstr ""
1081
 
1082
+ #: classes/helpers/FrmAppHelper.php:2167
1083
  msgid "week"
1084
  msgstr ""
1085
 
1086
+ #: classes/helpers/FrmAppHelper.php:2168
1087
  msgid "weeks"
1088
  msgstr ""
1089
 
1090
+ #: classes/helpers/FrmAppHelper.php:2172
1091
  msgid "day"
1092
  msgstr ""
1093
 
1094
+ #: classes/helpers/FrmAppHelper.php:2173
1095
  msgid "days"
1096
  msgstr ""
1097
 
1098
+ #: classes/helpers/FrmAppHelper.php:2177
1099
  msgid "hour"
1100
  msgstr ""
1101
 
1102
+ #: classes/helpers/FrmAppHelper.php:2178
1103
  msgid "hours"
1104
  msgstr ""
1105
 
1106
+ #: classes/helpers/FrmAppHelper.php:2182
1107
  msgid "minute"
1108
  msgstr ""
1109
 
1110
+ #: classes/helpers/FrmAppHelper.php:2183
1111
  msgid "minutes"
1112
  msgstr ""
1113
 
1114
+ #: classes/helpers/FrmAppHelper.php:2187
1115
  msgid "second"
1116
  msgstr ""
1117
 
1118
+ #: classes/helpers/FrmAppHelper.php:2188
1119
  msgid "seconds"
1120
  msgstr ""
1121
 
1122
+ #: classes/helpers/FrmAppHelper.php:2282
1123
  msgid "Give this action a label for easy reference."
1124
  msgstr ""
1125
 
1126
+ #: classes/helpers/FrmAppHelper.php:2283
1127
  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."
1128
  msgstr ""
1129
 
1130
+ #: classes/helpers/FrmAppHelper.php:2284
1131
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1132
  msgstr ""
1133
 
1134
+ #: classes/helpers/FrmAppHelper.php:2285
1135
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1136
  msgstr ""
1137
 
1138
+ #: classes/helpers/FrmAppHelper.php:2286
1139
  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."
1140
  msgstr ""
1141
 
1142
+ #: classes/helpers/FrmAppHelper.php:2287
1143
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1144
  msgstr ""
1145
 
1146
  #. translators: %1$s: Form name, %2$s: Date
1147
+ #: classes/helpers/FrmAppHelper.php:2289
1148
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1149
  msgstr ""
1150
 
1151
+ #: classes/helpers/FrmAppHelper.php:2485
1152
+ #: classes/helpers/FrmAppHelper.php:2564
1153
  msgid "Please wait while your site updates."
1154
  msgstr ""
1155
 
1156
+ #: classes/helpers/FrmAppHelper.php:2486
1157
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1158
  msgstr ""
1159
 
1160
+ #: classes/helpers/FrmAppHelper.php:2489
1161
+ #: classes/helpers/FrmAppHelper.php:2518
1162
  msgid "Loading&hellip;"
1163
  msgstr ""
1164
 
1165
+ #: classes/helpers/FrmAppHelper.php:2519
1166
  msgid "Remove"
1167
  msgstr ""
1168
 
1169
+ #: classes/helpers/FrmAppHelper.php:2522
1170
  #: classes/helpers/FrmCSVExportHelper.php:229
1171
  #: classes/views/shared/mb_adv_info.php:95
1172
  msgid "ID"
1173
  msgstr ""
1174
 
1175
+ #: classes/helpers/FrmAppHelper.php:2523
1176
  msgid "No results match"
1177
  msgstr ""
1178
 
1179
+ #: classes/helpers/FrmAppHelper.php:2524
1180
  msgid "That file looks like Spam."
1181
  msgstr ""
1182
 
1183
+ #: classes/helpers/FrmAppHelper.php:2525
1184
  msgid "There is an error in the calculation in the field with key"
1185
  msgstr ""
1186
 
1187
+ #: classes/helpers/FrmAppHelper.php:2526
1188
  msgid "Please complete the preceding required fields before uploading a file."
1189
  msgstr ""
1190
 
1191
+ #: classes/helpers/FrmAppHelper.php:2537
1192
  msgid "(Click to add description)"
1193
  msgstr ""
1194
 
1195
+ #: classes/helpers/FrmAppHelper.php:2538
1196
  msgid "(Blank)"
1197
  msgstr ""
1198
 
1199
+ #: classes/helpers/FrmAppHelper.php:2539
1200
  msgid "(no label)"
1201
  msgstr ""
1202
 
1203
+ #: classes/helpers/FrmAppHelper.php:2540
1204
  msgid "Saving"
1205
  msgstr ""
1206
 
1207
+ #: classes/helpers/FrmAppHelper.php:2541
1208
  msgid "Saved"
1209
  msgstr ""
1210
 
1211
+ #: classes/helpers/FrmAppHelper.php:2542
1212
  msgid "OK"
1213
  msgstr ""
1214
 
1215
+ #: classes/helpers/FrmAppHelper.php:2543
1216
  #: classes/views/frm-forms/new-form-overlay.php:33
1217
  #: classes/views/frm-forms/new-form-overlay.php:100
1218
  #: classes/views/frm-forms/new-form-overlay.php:109
1221
  #: classes/views/frm-forms/new-form-overlay.php:139
1222
  #: classes/views/shared/admin-header.php:64
1223
  #: classes/views/shared/confirm-overlay.php:19
1224
+ #: js/formidable_admin.js:3677
1225
  msgid "Cancel"
1226
  msgstr ""
1227
 
1228
+ #: classes/helpers/FrmAppHelper.php:2544
1229
  #: classes/views/frm-fields/back-end/settings.php:280
1230
  msgid "Default"
1231
  msgstr ""
1232
 
1233
+ #: classes/helpers/FrmAppHelper.php:2545
1234
  msgid "Clear default value when typing"
1235
  msgstr ""
1236
 
1237
+ #: classes/helpers/FrmAppHelper.php:2546
1238
  msgid "Do not clear default value when typing"
1239
  msgstr ""
1240
 
1241
+ #: classes/helpers/FrmAppHelper.php:2547
1242
  msgid "Default value will pass form validation"
1243
  msgstr ""
1244
 
1245
+ #: classes/helpers/FrmAppHelper.php:2548
1246
  msgid "Default value will NOT pass form validation"
1247
  msgstr ""
1248
 
1249
+ #: classes/helpers/FrmAppHelper.php:2549
1250
  #: classes/helpers/FrmListHelper.php:405
1251
+ #: js/formidable_admin.js:4069
1252
  msgid "Heads up"
1253
  msgstr ""
1254
 
1255
+ #: classes/helpers/FrmAppHelper.php:2550
1256
  #: classes/views/shared/confirm-overlay.php:15
1257
  #: classes/views/shared/info-overlay.php:15
1258
  msgid "Are you sure?"
1259
  msgstr ""
1260
 
1261
+ #: classes/helpers/FrmAppHelper.php:2551
1262
  msgid "Are you sure you want to delete this field and all data associated with it?"
1263
  msgstr ""
1264
 
1265
+ #: classes/helpers/FrmAppHelper.php:2552
1266
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1267
  msgstr ""
1268
 
1269
+ #: classes/helpers/FrmAppHelper.php:2553
1270
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1271
  msgstr ""
1272
 
1273
+ #: classes/helpers/FrmAppHelper.php:2555
1274
  #: classes/helpers/FrmFieldsHelper.php:286
1275
  msgid "The entered values do not match"
1276
  msgstr ""
1277
 
1278
+ #: classes/helpers/FrmAppHelper.php:2556
1279
  msgid "Enter Email"
1280
  msgstr ""
1281
 
1282
+ #: classes/helpers/FrmAppHelper.php:2557
1283
  msgid "Confirm Email"
1284
  msgstr ""
1285
 
1286
+ #: classes/helpers/FrmAppHelper.php:2558
1287
  #: classes/views/shared/mb_adv_info.php:166
1288
  msgid "Conditional content here"
1289
  msgstr ""
1290
 
1291
+ #: classes/helpers/FrmAppHelper.php:2559
1292
  #: classes/helpers/FrmFieldsHelper.php:458
1293
  #: classes/helpers/FrmFieldsHelper.php:459
1294
  msgid "New Option"
1295
  msgstr ""
1296
 
1297
+ #: classes/helpers/FrmAppHelper.php:2560
1298
  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."
1299
  msgstr ""
1300
 
1301
+ #: classes/helpers/FrmAppHelper.php:2561
1302
  msgid "Enter Password"
1303
  msgstr ""
1304
 
1305
+ #: classes/helpers/FrmAppHelper.php:2562
1306
  msgid "Confirm Password"
1307
  msgstr ""
1308
 
1309
+ #: classes/helpers/FrmAppHelper.php:2563
1310
  msgid "Import Complete"
1311
  msgstr ""
1312
 
1313
+ #: classes/helpers/FrmAppHelper.php:2565
1314
  msgid "Warning: There is no way to retrieve unsaved entries."
1315
  msgstr ""
1316
 
1317
+ #: classes/helpers/FrmAppHelper.php:2566
1318
  msgid "Private"
1319
  msgstr ""
1320
 
1321
+ #: classes/helpers/FrmAppHelper.php:2569
1322
  msgid "No new licenses were found"
1323
  msgstr ""
1324
 
1325
+ #: classes/helpers/FrmAppHelper.php:2570
1326
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1327
  msgstr ""
1328
 
1329
+ #: classes/helpers/FrmAppHelper.php:2571
1330
  msgid "This calculation may have shortcodes that work in Views but not forms."
1331
  msgstr ""
1332
 
1333
+ #: classes/helpers/FrmAppHelper.php:2572
1334
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1335
  msgstr ""
1336
 
1337
+ #: classes/helpers/FrmAppHelper.php:2573
1338
  msgid "This form action is limited to one per form. Please edit the existing form action."
1339
  msgstr ""
1340
 
1341
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1342
+ #: classes/helpers/FrmAppHelper.php:2576
1343
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1344
  msgstr ""
1345
 
1346
  #. 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.
1347
+ #: classes/helpers/FrmAppHelper.php:2578
1348
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1349
  msgstr ""
1350
 
1351
+ #: classes/helpers/FrmAppHelper.php:2579
1352
  #: classes/helpers/FrmFormsHelper.php:1489
1353
  msgid "See the list of reserved words in WordPress."
1354
  msgstr ""
1355
 
1356
+ #: classes/helpers/FrmAppHelper.php:2580
1357
  msgid "Please enter a Repeat Limit that is greater than 1."
1358
  msgstr ""
1359
 
1360
+ #: classes/helpers/FrmAppHelper.php:2581
1361
  msgid "Please select a limit between 0 and 200."
1362
  msgstr ""
1363
 
1364
+ #: classes/helpers/FrmAppHelper.php:2584
1365
  #: classes/views/shared/mb_adv_info.php:113
1366
  #: classes/views/shared/mb_adv_info.php:127
1367
  msgid "Select a Field"
1368
  msgstr ""
1369
 
1370
+ #: classes/helpers/FrmAppHelper.php:2585
1371
  #: classes/helpers/FrmListHelper.php:262
1372
  msgid "No items found."
1373
  msgstr ""
1374
 
1375
+ #: classes/helpers/FrmAppHelper.php:2613
1376
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1377
  msgstr ""
1378
 
1379
+ #: classes/helpers/FrmAppHelper.php:2640
1380
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1381
  msgstr ""
1382
 
1383
+ #: classes/helpers/FrmAppHelper.php:2668
1384
  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+."
1385
  msgstr ""
1386
 
1387
+ #: classes/helpers/FrmAppHelper.php:2674
1388
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1389
  msgstr ""
1390
 
1391
+ #: classes/helpers/FrmAppHelper.php:2688
1392
  msgid "English"
1393
  msgstr ""
1394
 
1395
+ #: classes/helpers/FrmAppHelper.php:2689
1396
  msgid "Afrikaans"
1397
  msgstr ""
1398
 
1399
+ #: classes/helpers/FrmAppHelper.php:2690
1400
  msgid "Albanian"
1401
  msgstr ""
1402
 
1403
+ #: classes/helpers/FrmAppHelper.php:2691
1404
  msgid "Arabic"
1405
  msgstr ""
1406
 
1407
+ #: classes/helpers/FrmAppHelper.php:2692
1408
  msgid "Armenian"
1409
  msgstr ""
1410
 
1411
+ #: classes/helpers/FrmAppHelper.php:2693
1412
  msgid "Azerbaijani"
1413
  msgstr ""
1414
 
1415
+ #: classes/helpers/FrmAppHelper.php:2694
1416
  msgid "Basque"
1417
  msgstr ""
1418
 
1419
+ #: classes/helpers/FrmAppHelper.php:2695
1420
  msgid "Bosnian"
1421
  msgstr ""
1422
 
1423
+ #: classes/helpers/FrmAppHelper.php:2696
1424
  msgid "Bulgarian"
1425
  msgstr ""
1426
 
1427
+ #: classes/helpers/FrmAppHelper.php:2697
1428
  msgid "Catalan"
1429
  msgstr ""
1430
 
1431
+ #: classes/helpers/FrmAppHelper.php:2698
1432
  msgid "Chinese Hong Kong"
1433
  msgstr ""
1434
 
1435
+ #: classes/helpers/FrmAppHelper.php:2699
1436
  msgid "Chinese Simplified"
1437
  msgstr ""
1438
 
1439
+ #: classes/helpers/FrmAppHelper.php:2700
1440
  msgid "Chinese Traditional"
1441
  msgstr ""
1442
 
1443
+ #: classes/helpers/FrmAppHelper.php:2701
1444
  msgid "Croatian"
1445
  msgstr ""
1446
 
1447
+ #: classes/helpers/FrmAppHelper.php:2702
1448
  msgid "Czech"
1449
  msgstr ""
1450
 
1451
+ #: classes/helpers/FrmAppHelper.php:2703
1452
  msgid "Danish"
1453
  msgstr ""
1454
 
1455
+ #: classes/helpers/FrmAppHelper.php:2704
1456
  msgid "Dutch"
1457
  msgstr ""
1458
 
1459
+ #: classes/helpers/FrmAppHelper.php:2705
1460
  msgid "English/UK"
1461
  msgstr ""
1462
 
1463
+ #: classes/helpers/FrmAppHelper.php:2706
1464
  msgid "Esperanto"
1465
  msgstr ""
1466
 
1467
+ #: classes/helpers/FrmAppHelper.php:2707
1468
  msgid "Estonian"
1469
  msgstr ""
1470
 
1471
+ #: classes/helpers/FrmAppHelper.php:2708
1472
  msgid "Faroese"
1473
  msgstr ""
1474
 
1475
+ #: classes/helpers/FrmAppHelper.php:2709
1476
  msgid "Farsi/Persian"
1477
  msgstr ""
1478
 
1479
+ #: classes/helpers/FrmAppHelper.php:2710
1480
  msgid "Filipino"
1481
  msgstr ""
1482
 
1483
+ #: classes/helpers/FrmAppHelper.php:2711
1484
  msgid "Finnish"
1485
  msgstr ""
1486
 
1487
+ #: classes/helpers/FrmAppHelper.php:2712
1488
  msgid "French"
1489
  msgstr ""
1490
 
1491
+ #: classes/helpers/FrmAppHelper.php:2713
1492
  msgid "French/Canadian"
1493
  msgstr ""
1494
 
1495
+ #: classes/helpers/FrmAppHelper.php:2714
1496
  msgid "French/Swiss"
1497
  msgstr ""
1498
 
1499
+ #: classes/helpers/FrmAppHelper.php:2715
1500
  msgid "German"
1501
  msgstr ""
1502
 
1503
+ #: classes/helpers/FrmAppHelper.php:2716
1504
  msgid "German/Austria"
1505
  msgstr ""
1506
 
1507
+ #: classes/helpers/FrmAppHelper.php:2717
1508
  msgid "German/Switzerland"
1509
  msgstr ""
1510
 
1511
+ #: classes/helpers/FrmAppHelper.php:2718
1512
  msgid "Greek"
1513
  msgstr ""
1514
 
1515
+ #: classes/helpers/FrmAppHelper.php:2719
1516
+ #: classes/helpers/FrmAppHelper.php:2720
1517
  msgid "Hebrew"
1518
  msgstr ""
1519
 
1520
+ #: classes/helpers/FrmAppHelper.php:2721
1521
  msgid "Hindi"
1522
  msgstr ""
1523
 
1524
+ #: classes/helpers/FrmAppHelper.php:2722
1525
  msgid "Hungarian"
1526
  msgstr ""
1527
 
1528
+ #: classes/helpers/FrmAppHelper.php:2723
1529
  msgid "Icelandic"
1530
  msgstr ""
1531
 
1532
+ #: classes/helpers/FrmAppHelper.php:2724
1533
  msgid "Indonesian"
1534
  msgstr ""
1535
 
1536
+ #: classes/helpers/FrmAppHelper.php:2725
1537
  msgid "Italian"
1538
  msgstr ""
1539
 
1540
+ #: classes/helpers/FrmAppHelper.php:2726
1541
  msgid "Japanese"
1542
  msgstr ""
1543
 
1544
+ #: classes/helpers/FrmAppHelper.php:2727
1545
  msgid "Korean"
1546
  msgstr ""
1547
 
1548
+ #: classes/helpers/FrmAppHelper.php:2728
1549
  msgid "Latvian"
1550
  msgstr ""
1551
 
1552
+ #: classes/helpers/FrmAppHelper.php:2729
1553
  msgid "Lithuanian"
1554
  msgstr ""
1555
 
1556
+ #: classes/helpers/FrmAppHelper.php:2730
1557
  msgid "Malaysian"
1558
  msgstr ""
1559
 
1560
+ #: classes/helpers/FrmAppHelper.php:2731
1561
  msgid "Norwegian"
1562
  msgstr ""
1563
 
1564
+ #: classes/helpers/FrmAppHelper.php:2732
1565
  msgid "Polish"
1566
  msgstr ""
1567
 
1568
+ #: classes/helpers/FrmAppHelper.php:2733
1569
  msgid "Portuguese"
1570
  msgstr ""
1571
 
1572
+ #: classes/helpers/FrmAppHelper.php:2734
1573
  msgid "Portuguese/Brazilian"
1574
  msgstr ""
1575
 
1576
+ #: classes/helpers/FrmAppHelper.php:2735
1577
  msgid "Portuguese/Portugal"
1578
  msgstr ""
1579
 
1580
+ #: classes/helpers/FrmAppHelper.php:2736
1581
  msgid "Romanian"
1582
  msgstr ""
1583
 
1584
+ #: classes/helpers/FrmAppHelper.php:2737
1585
  msgid "Russian"
1586
  msgstr ""
1587
 
1588
+ #: classes/helpers/FrmAppHelper.php:2738
1589
+ #: classes/helpers/FrmAppHelper.php:2739
1590
  msgid "Serbian"
1591
  msgstr ""
1592
 
1593
+ #: classes/helpers/FrmAppHelper.php:2740
1594
  msgid "Slovak"
1595
  msgstr ""
1596
 
1597
+ #: classes/helpers/FrmAppHelper.php:2741
1598
  msgid "Slovenian"
1599
  msgstr ""
1600
 
1601
+ #: classes/helpers/FrmAppHelper.php:2742
1602
  msgid "Spanish"
1603
  msgstr ""
1604
 
1605
+ #: classes/helpers/FrmAppHelper.php:2743
1606
  msgid "Spanish/Latin America"
1607
  msgstr ""
1608
 
1609
+ #: classes/helpers/FrmAppHelper.php:2744
1610
  msgid "Swedish"
1611
  msgstr ""
1612
 
1613
+ #: classes/helpers/FrmAppHelper.php:2745
1614
  msgid "Tamil"
1615
  msgstr ""
1616
 
1617
+ #: classes/helpers/FrmAppHelper.php:2746
1618
  msgid "Thai"
1619
  msgstr ""
1620
 
1621
+ #: classes/helpers/FrmAppHelper.php:2747
1622
  msgid "Turkish"
1623
  msgstr ""
1624
 
1625
+ #: classes/helpers/FrmAppHelper.php:2748
1626
  msgid "Ukrainian"
1627
  msgstr ""
1628
 
1629
+ #: classes/helpers/FrmAppHelper.php:2749
1630
  msgid "Vietnamese"
1631
  msgstr ""
1632
 
1633
+ #: classes/helpers/FrmAppHelper.php:3033
1634
  msgid "Your account has expired"
1635
  msgstr ""
1636
 
1637
+ #: classes/helpers/FrmAppHelper.php:3036
1638
  msgid "Renew Now"
1639
  msgstr ""
1640
 
1756
  #: classes/helpers/FrmFormsHelper.php:1138
1757
  #: classes/helpers/FrmFormsListHelper.php:133
1758
  #: classes/views/frm-form-actions/form_action.php:25
1759
+ #: js/formidable_admin.js:2055
1760
  msgid "Delete"
1761
  msgstr ""
1762
 
1768
  #. translators: %s: The field name.
1769
  #: classes/helpers/FrmFieldsHelper.php:167
1770
  #: classes/helpers/FrmFieldsHelper.php:296
1771
+ #: classes/helpers/FrmXMLHelper.php:1242
1772
  #: classes/models/fields/FrmFieldType.php:583
1773
  msgid "%s is invalid"
1774
  msgstr ""
3619
  msgid "Collect instant payments, and send leads to MailChimp."
3620
  msgstr ""
3621
 
3622
+ #: classes/helpers/FrmXMLHelper.php:36
3623
  msgid "Your server does not have XML enabled"
3624
  msgstr ""
3625
 
3626
+ #: classes/helpers/FrmXMLHelper.php:42
3627
+ #: classes/helpers/FrmXMLHelper.php:54
3628
  msgid "There was an error when reading this XML file"
3629
  msgstr ""
3630
 
3631
+ #: classes/helpers/FrmXMLHelper.php:46
3632
  msgid "Your server is missing the simplexml_import_dom function"
3633
  msgstr ""
3634
 
3635
+ #: classes/helpers/FrmXMLHelper.php:1081
3636
  #: classes/views/solutions/_import.php:51
3637
  msgid "Imported"
3638
  msgstr ""
3639
 
3640
+ #: classes/helpers/FrmXMLHelper.php:1082
3641
  msgid "Updated"
3642
  msgstr ""
3643
 
3644
+ #: classes/helpers/FrmXMLHelper.php:1107
3645
  msgid "Nothing was imported or updated"
3646
  msgstr ""
3647
 
3648
  #. translators: %1$s: Number of items
3649
+ #: classes/helpers/FrmXMLHelper.php:1122
3650
  msgid "%1$s Form"
3651
  msgid_plural "%1$s Forms"
3652
  msgstr[0] ""
3654
 
3655
  #. translators: %1$s: Number of items
3656
  #. translators: %1$s - field type
3657
+ #: classes/helpers/FrmXMLHelper.php:1124
3658
  #: classes/models/FrmFormMigrator.php:584
3659
  msgid "%1$s Field"
3660
  msgid_plural "%1$s Fields"
3662
  msgstr[1] ""
3663
 
3664
  #. translators: %1$s: Number of items
3665
+ #: classes/helpers/FrmXMLHelper.php:1126
3666
  msgid "%1$s Entry"
3667
  msgid_plural "%1$s Entries"
3668
  msgstr[0] ""
3669
  msgstr[1] ""
3670
 
3671
  #. translators: %1$s: Number of items
3672
+ #: classes/helpers/FrmXMLHelper.php:1128
3673
  msgid "%1$s View"
3674
  msgid_plural "%1$s Views"
3675
  msgstr[0] ""
3676
  msgstr[1] ""
3677
 
3678
  #. translators: %1$s: Number of items
3679
+ #: classes/helpers/FrmXMLHelper.php:1130
3680
  msgid "%1$s Post"
3681
  msgid_plural "%1$s Posts"
3682
  msgstr[0] ""
3683
  msgstr[1] ""
3684
 
3685
  #. translators: %1$s: Number of items
3686
+ #: classes/helpers/FrmXMLHelper.php:1132
3687
  msgid "%1$s Style"
3688
  msgid_plural "%1$s Styles"
3689
  msgstr[0] ""
3690
  msgstr[1] ""
3691
 
3692
  #. translators: %1$s: Number of items
3693
+ #: classes/helpers/FrmXMLHelper.php:1134
3694
  msgid "%1$s Term"
3695
  msgid_plural "%1$s Terms"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
  #. translators: %1$s: Number of items
3700
+ #: classes/helpers/FrmXMLHelper.php:1136
3701
  msgid "%1$s Form Action"
3702
  msgid_plural "%1$s Form Actions"
3703
  msgstr[0] ""
3704
  msgstr[1] ""
3705
 
3706
+ #: classes/helpers/FrmXMLHelper.php:1160
3707
  msgid "Go to imported form"
3708
  msgstr ""
3709
 
3710
+ #: classes/helpers/FrmXMLHelper.php:1361
3711
  msgid "Create Posts"
3712
  msgstr ""
3713
 
3714
+ #: classes/helpers/FrmXMLHelper.php:1490
3715
  msgid "Email Notification"
3716
  msgstr ""
3717
 
4495
  #: classes/views/frm-fields/back-end/inline-modal.php:7
4496
  #: classes/views/frm-fields/back-end/inline-modal.php:8
4497
  #: classes/views/shared/admin-header.php:19
4498
+ #: js/formidable_admin.js:7642
4499
  msgid "Close"
4500
  msgstr ""
4501
 
4783
  msgstr ""
4784
 
4785
  #: classes/views/frm-form-actions/form_action.php:21
4786
+ #: js/formidable_admin.js:2061
4787
  msgid "Duplicate"
4788
  msgstr ""
4789
 
4908
  msgstr ""
4909
 
4910
  #: classes/views/frm-forms/add_field.php:29
4911
+ #: js/formidable_admin.js:1239
4912
+ #: js/formidable_admin.js:1242
4913
+ #: js/formidable_admin.js:1999
4914
  msgid "More Options"
4915
  msgstr ""
4916
 
6291
  msgid "Set Row Layout"
6292
  msgstr ""
6293
 
6294
+ #: js/formidable_admin.js:1207
6295
  msgid "Move Field Group"
6296
  msgstr ""
6297
 
6298
+ #: js/formidable_admin.js:2027
6299
  msgid "Field settings"
6300
  msgstr ""
6301
 
6302
+ #: js/formidable_admin.js:2055
6303
  msgid "Delete Group"
6304
  msgstr ""
6305
 
6306
+ #: js/formidable_admin.js:2061
6307
  msgid "Duplicate Group"
6308
  msgstr ""
6309
 
6310
+ #: js/formidable_admin.js:3374
6311
  msgid "Custom layout"
6312
  msgstr ""
6313
 
6314
+ #: js/formidable_admin.js:3397
6315
  msgid "Break into rows"
6316
  msgstr ""
6317
 
6318
+ #: js/formidable_admin.js:3407
6319
  msgid "Row Layout"
6320
  msgstr ""
6321
 
6322
+ #: js/formidable_admin.js:3662
6323
  msgid "Enter number of columns for each field"
6324
  msgstr ""
6325
 
6326
+ #: js/formidable_admin.js:3666
6327
  msgid "Layouts are based on a 12-column grid system"
6328
  msgstr ""
6329
 
6330
+ #: js/formidable_admin.js:3682
6331
  msgid "Save"
6332
  msgstr ""
6333
 
6334
+ #: js/formidable_admin.js:3983
6335
  msgid "Merge into row"
6336
  msgstr ""
6337
 
6338
  #. translators: %1$s: Number of fields that are selected to be deleted.
6339
+ #: js/formidable_admin.js:4071
6340
  msgid "Are you sure you want to delete these %1$s selected fields?"
6341
  msgstr ""
6342
 
6343
+ #: js/formidable_admin.js:7634
6344
  msgid "Save and Reload"
6345
  msgstr ""
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.1
7
  Requires PHP: 5.6
8
- Stable tag: 5.0.08
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
@@ -57,9 +57,9 @@ By default, a single styling template is created. If you want a custom form styl
57
 
58
  == Build Smart Surveys with Beautiful Reports ==
59
 
60
- Formidable comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.
61
 
62
- Our graphs and reports will help you analyze and showcase data. We believe that data alone does no good if you can't analyze it. That’s why we make it easy to analyze data from a survey, quiz, or price calculator.
63
 
64
  You can even showcase data on the front-end of your website. Just embed graphs in your WordPress posts or pages.
65
 
@@ -440,6 +440,13 @@ 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.08 =
444
  - Deprecated: Calls to FrmFormsController::preview will no longer try to load WordPress if it is not already initialized. This could cause issues for users that still use old preview links (see https://formidableforms.com/knowledgebase/php-examples/#kb-use-the-old-preview-links for an example).
445
  - Security: Unsafe HTML will now be stripped from global message defaults, whitelabel settings, and when importing forms and fields with XML if the user saving HTML does not have the unfiltered_html permission or if the DISALLOW_UNFILTERED_HTML constant is set.
@@ -481,7 +488,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
481
  * Fix: The search dropdown was getting cut off on pages with no search results.
482
  * Fix: When legacy views or visual views are active, both versions were appearing active on the add ons page.
483
 
484
- = 5.0.02 =
485
- * New: Field groups can now be duplicated and deleted.
486
-
487
  <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.1
7
  Requires PHP: 5.6
8
+ Stable tag: 5.0.09
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
57
 
58
  == Build Smart Surveys with Beautiful Reports ==
59
 
60
+ Formidable comes with a built-in survey feature (like Survey Monkey, but without the high costs), so you can quickly create powerful surveys with Net Promoter Scores (NPS), Likert fields, star ratings, image radio buttons, and more.
61
 
62
+ Beautiful reports will be waiting, or create your own customized graphs. Our graphs and reports will help you analyze and showcase data. We believe that data alone does no good if you can't analyze it. That’s why we make it easy to analyze data from a survey, quiz, or price calculator.
63
 
64
  You can even showcase data on the front-end of your website. Just embed graphs in your WordPress posts or pages.
65
 
440
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
441
 
442
  == Changelog ==
443
+ = 5.0.09 =
444
+ - The option to check entries for spam using JavaScript is now on by default for all new forms. We recommend turning this on for older forms that may be receiving spam entries, especially forms that include file uploads. After turning this feature on, make sure to also clear any caching plugins to avoid issues with cached pages with missing tokens.
445
+ - New: Pre-determined option data will no longer be sent to Akismet to help reduce the number of false positive results.
446
+ - Fix: Significantly reduced the amount of memory required to load form settings for websites with fewer than 50 pages with a lot of data.
447
+ - Fix: Author email, url, or name are no longer included in comment info when sending data to Akismet so that duplicate information is not sent.
448
+ - Fix: Field groups could not be moved because of a missing class on the drag handle.
449
+
450
  = 5.0.08 =
451
  - Deprecated: Calls to FrmFormsController::preview will no longer try to load WordPress if it is not already initialized. This could cause issues for users that still use old preview links (see https://formidableforms.com/knowledgebase/php-examples/#kb-use-the-old-preview-links for an example).
452
  - Security: Unsafe HTML will now be stripped from global message defaults, whitelabel settings, and when importing forms and fields with XML if the user saving HTML does not have the unfiltered_html permission or if the DISALLOW_UNFILTERED_HTML constant is set.
488
  * Fix: The search dropdown was getting cut off on pages with no search results.
489
  * Fix: When legacy views or visual views are active, both versions were appearing active on the add ons page.
490
 
 
 
 
491
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>