Formidable Forms – Form Builder for WordPress - Version 5.0.07

Version Description

  • Security: Unsafe HTML will now be stripped from field labels, descriptions, and custom HTML, as well as form titles, descriptions, custom submit text, custom submit HTML, before HTML, after HTML, and success message if the user saving HTML does not have the unfiltered_html permission or if the DISALLOW_UNFILTERED_HTML constant is set.
  • New: Added new frm_akismet_values filter to help improve Akismet integration.
  • Fix: The Akismet API was getting called is Akismet was set up even if the form had Akismet turned off.
  • Fix: Updated the styling when a field option is being dragged and dropped.
Download this release

Release Info

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

Code changes from version 5.0.06 to 5.0.07

classes/controllers/FrmFormActionsController.php CHANGED
@@ -204,7 +204,7 @@ class FrmFormActionsController {
204
  /* translators: %s: Name of form action */
205
  $upgrade_label = sprintf( esc_html__( '%s form actions', 'formidable' ), $action_control->action_options['tooltip'] );
206
 
207
- $default_shown = array( 'wppost', 'register', 'paypal', 'payment', 'mailchimp' );
208
  $default_shown = array_values( array_diff( $default_shown, $allowed ) );
209
  $default_position = array_search( $action_control->id_base, $default_shown );
210
  $allowed_count = count( $allowed );
@@ -225,6 +225,10 @@ class FrmFormActionsController {
225
  $data['data-oneclick'] = json_encode( $upgrading );
226
  }
227
 
 
 
 
 
228
  $requires = self::action_requires( $upgrading );
229
  if ( $requires ) {
230
  $data['data-requires'] = $requires;
204
  /* translators: %s: Name of form action */
205
  $upgrade_label = sprintf( esc_html__( '%s form actions', 'formidable' ), $action_control->action_options['tooltip'] );
206
 
207
+ $default_shown = array( 'wppost', 'register', 'paypal', 'payment', 'hubspot' );
208
  $default_shown = array_values( array_diff( $default_shown, $allowed ) );
209
  $default_position = array_search( $action_control->id_base, $default_shown );
210
  $allowed_count = count( $allowed );
225
  $data['data-oneclick'] = json_encode( $upgrading );
226
  }
227
 
228
+ if ( isset( $action_control->action_options['message'] ) ) {
229
+ $data['data-message'] = $action_control->action_options['message'];
230
+ }
231
+
232
  $requires = self::action_requires( $upgrading );
233
  if ( $requires ) {
234
  $data['data-requires'] = $requires;
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '5.0.06';
15
 
16
  /**
17
  * @since 1.07.02
@@ -651,7 +651,7 @@ class FrmAppHelper {
651
  private static function allowed_html( $allowed ) {
652
  $html = self::safe_html();
653
  $allowed_html = array();
654
- if ( $allowed == 'all' ) {
655
  $allowed_html = $html;
656
  } elseif ( ! empty( $allowed ) ) {
657
  foreach ( (array) $allowed as $a ) {
@@ -754,10 +754,11 @@ class FrmAppHelper {
754
  ),
755
  'section' => $allow_class,
756
  'span' => array(
757
- 'class' => true,
758
- 'id' => true,
759
- 'title' => true,
760
- 'style' => true,
 
761
  ),
762
  'strike' => array(),
763
  'strong' => array(),
@@ -781,6 +782,18 @@ class FrmAppHelper {
781
  'xlink:href' => true,
782
  ),
783
  'ul' => $allow_class,
 
 
 
 
 
 
 
 
 
 
 
 
784
  );
785
  }
786
 
@@ -2942,6 +2955,41 @@ class FrmAppHelper {
2942
  return apply_filters( 'frm_images_dropdown_option_html_attrs', $html_attrs, $args );
2943
  }
2944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2945
  /**
2946
  * @since 4.07
2947
  * @deprecated 4.09.01
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '5.0.07';
15
 
16
  /**
17
  * @since 1.07.02
651
  private static function allowed_html( $allowed ) {
652
  $html = self::safe_html();
653
  $allowed_html = array();
654
+ if ( $allowed === 'all' ) {
655
  $allowed_html = $html;
656
  } elseif ( ! empty( $allowed ) ) {
657
  foreach ( (array) $allowed as $a ) {
754
  ),
755
  'section' => $allow_class,
756
  'span' => array(
757
+ 'class' => true,
758
+ 'id' => true,
759
+ 'title' => true,
760
+ 'style' => true,
761
+ 'aria-hidden' => true,
762
  ),
763
  'strike' => array(),
764
  'strong' => array(),
782
  'xlink:href' => true,
783
  ),
784
  'ul' => $allow_class,
785
+ 'label' => array(
786
+ 'for' => true,
787
+ 'class' => true,
788
+ 'id' => true,
789
+ ),
790
+ 'button' => array(
791
+ 'class' => true,
792
+ 'type' => true,
793
+ ),
794
+ 'legend' => array(
795
+ 'class' => true,
796
+ ),
797
  );
798
  }
799
 
2955
  return apply_filters( 'frm_images_dropdown_option_html_attrs', $html_attrs, $args );
2956
  }
2957
 
2958
+ /**
2959
+ * @since 5.0.07
2960
+ *
2961
+ * @return bool true if the current user is allowed to save unfiltered HTML.
2962
+ */
2963
+ public static function allow_unfiltered_html() {
2964
+ if ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) {
2965
+ return false;
2966
+ }
2967
+ return current_user_can( 'unfiltered_html' );
2968
+ }
2969
+
2970
+ /**
2971
+ * @since 5.0.07
2972
+ *
2973
+ * @param array $values
2974
+ * @param array $keys
2975
+ * @return array
2976
+ */
2977
+ public static function maybe_filter_array( $values, $keys ) {
2978
+ $allow_unfiltered_html = self::allow_unfiltered_html();
2979
+
2980
+ if ( $allow_unfiltered_html ) {
2981
+ return $values;
2982
+ }
2983
+
2984
+ foreach ( $keys as $key ) {
2985
+ if ( isset( $values[ $key ] ) ) {
2986
+ $values[ $key ] = self::kses( $values[ $key ], 'all' );
2987
+ }
2988
+ }
2989
+
2990
+ return $values;
2991
+ }
2992
+
2993
  /**
2994
  * @since 4.07
2995
  * @deprecated 4.09.01
classes/models/FrmEntryValidate.php CHANGED
@@ -255,7 +255,7 @@ class FrmEntryValidate {
255
  $errors['spam'] = __( 'Your entry appears to be spam!', 'formidable' );
256
  } elseif ( self::blacklist_check( $values ) ) {
257
  $errors['spam'] = __( 'Your entry appears to be blocked spam!', 'formidable' );
258
- } elseif ( self::is_akismet_spam( $values ) && self::is_akismet_enabled_for_user( $values['form_id'] ) ) {
259
  $errors['spam'] = __( 'Your entry appears to be spam!', 'formidable' );
260
  }
261
  }
@@ -304,7 +304,7 @@ class FrmEntryValidate {
304
  private static function is_akismet_enabled_for_user( $form_id ) {
305
  $form = FrmForm::getOne( $form_id );
306
 
307
- return ( isset( $form->options['akismet'] ) && ! empty( $form->options['akismet'] ) && ( $form->options['akismet'] !== 'logged' || ! is_user_logged_in() ) );
308
  }
309
 
310
  public static function blacklist_check( $values ) {
@@ -373,6 +373,15 @@ class FrmEntryValidate {
373
  );
374
  self::parse_akismet_array( $datas, $values );
375
 
 
 
 
 
 
 
 
 
 
376
  $query_string = _http_build_query( $datas, '', '&' );
377
  $response = Akismet::http_post( $query_string, 'comment-check' );
378
 
255
  $errors['spam'] = __( 'Your entry appears to be spam!', 'formidable' );
256
  } elseif ( self::blacklist_check( $values ) ) {
257
  $errors['spam'] = __( 'Your entry appears to be blocked spam!', 'formidable' );
258
+ } elseif ( self::is_akismet_enabled_for_user( $values['form_id'] ) && self::is_akismet_spam( $values ) ) {
259
  $errors['spam'] = __( 'Your entry appears to be spam!', 'formidable' );
260
  }
261
  }
304
  private static function is_akismet_enabled_for_user( $form_id ) {
305
  $form = FrmForm::getOne( $form_id );
306
 
307
+ return ( ! empty( $form->options['akismet'] ) && ( $form->options['akismet'] !== 'logged' || ! is_user_logged_in() ) );
308
  }
309
 
310
  public static function blacklist_check( $values ) {
373
  );
374
  self::parse_akismet_array( $datas, $values );
375
 
376
+ /**
377
+ * Allows modifying the values sent to Akismet.
378
+ *
379
+ * @since 5.0.07
380
+ *
381
+ * @param array $datas The array of values being sent to Akismet.
382
+ */
383
+ $datas = apply_filters( 'frm_akismet_values', $datas );
384
+
385
  $query_string = _http_build_query( $datas, '', '&' );
386
  $response = Akismet::http_post( $query_string, 'comment-check' );
387
 
classes/models/FrmField.php CHANGED
@@ -384,7 +384,8 @@ class FrmField {
384
  public static function update( $id, $values ) {
385
  global $wpdb;
386
 
387
- $id = absint( $id );
 
388
 
389
  if ( isset( $values['field_key'] ) ) {
390
  $values['field_key'] = FrmAppHelper::get_unique_key( $values['field_key'], $wpdb->prefix . 'frm_fields', 'field_key', $id );
@@ -399,7 +400,7 @@ class FrmField {
399
  if ( isset( $values['type'] ) ) {
400
  $values = apply_filters( 'frm_clean_' . $values['type'] . '_field_options_before_update', $values );
401
 
402
- if ( $values['type'] == 'hidden' && isset( $values['field_options'] ) && isset( $values['field_options']['clear_on_focus'] ) ) {
403
  // don't keep the old placeholder setting for hidden fields
404
  $values['field_options']['clear_on_focus'] = 0;
405
  }
@@ -408,6 +409,7 @@ class FrmField {
408
  // serialize array values
409
  foreach ( array( 'field_options', 'options' ) as $opt ) {
410
  if ( isset( $values[ $opt ] ) && is_array( $values[ $opt ] ) ) {
 
411
  $values[ $opt ] = serialize( $values[ $opt ] );
412
  }
413
  }
384
  public static function update( $id, $values ) {
385
  global $wpdb;
386
 
387
+ $id = absint( $id );
388
+ $values = FrmAppHelper::maybe_filter_array( $values, array( 'name', 'description' ) );
389
 
390
  if ( isset( $values['field_key'] ) ) {
391
  $values['field_key'] = FrmAppHelper::get_unique_key( $values['field_key'], $wpdb->prefix . 'frm_fields', 'field_key', $id );
400
  if ( isset( $values['type'] ) ) {
401
  $values = apply_filters( 'frm_clean_' . $values['type'] . '_field_options_before_update', $values );
402
 
403
+ if ( $values['type'] === 'hidden' && isset( $values['field_options'] ) && isset( $values['field_options']['clear_on_focus'] ) ) {
404
  // don't keep the old placeholder setting for hidden fields
405
  $values['field_options']['clear_on_focus'] = 0;
406
  }
409
  // serialize array values
410
  foreach ( array( 'field_options', 'options' ) as $opt ) {
411
  if ( isset( $values[ $opt ] ) && is_array( $values[ $opt ] ) ) {
412
+ $values[ $opt ] = FrmAppHelper::maybe_filter_array( $values[ $opt ], array( 'custom_html' ) );
413
  $values[ $opt ] = serialize( $values[ $opt ] );
414
  }
415
  }
classes/models/FrmForm.php CHANGED
@@ -126,6 +126,8 @@ class FrmForm {
126
  public static function update( $id, $values, $create_link = false ) {
127
  global $wpdb;
128
 
 
 
129
  if ( ! isset( $values['status'] ) && ( $create_link || isset( $values['options'] ) || isset( $values['item_meta'] ) || isset( $values['field_options'] ) ) ) {
130
  $values['status'] = 'published';
131
  }
@@ -183,6 +185,7 @@ class FrmForm {
183
  $options['submit_html'] = ( isset( $values['options']['submit_html'] ) && '' !== $values['options']['submit_html'] ) ? $values['options']['submit_html'] : FrmFormsHelper::get_default_html( 'submit' );
184
 
185
  $options = apply_filters( 'frm_form_options_before_update', $options, $values );
 
186
  $new_values['options'] = serialize( $options );
187
 
188
  return $new_values;
126
  public static function update( $id, $values, $create_link = false ) {
127
  global $wpdb;
128
 
129
+ $values = FrmAppHelper::maybe_filter_array( $values, array( 'name', 'description' ) );
130
+
131
  if ( ! isset( $values['status'] ) && ( $create_link || isset( $values['options'] ) || isset( $values['item_meta'] ) || isset( $values['field_options'] ) ) ) {
132
  $values['status'] = 'published';
133
  }
185
  $options['submit_html'] = ( isset( $values['options']['submit_html'] ) && '' !== $values['options']['submit_html'] ) ? $values['options']['submit_html'] : FrmFormsHelper::get_default_html( 'submit' );
186
 
187
  $options = apply_filters( 'frm_form_options_before_update', $options, $values );
188
+ $options = FrmAppHelper::maybe_filter_array( $options, array( 'submit_value', 'success_msg', 'before_html', 'after_html', 'submit_html' ) );
189
  $new_values['options'] = serialize( $options );
190
 
191
  return $new_values;
classes/views/addons/list.php CHANGED
@@ -52,8 +52,12 @@ if ( ! defined( 'ABSPATH' ) ) {
52
  <?php echo esc_html( $addon['title'] ); ?>
53
  </h2>
54
  <p>
55
- <?php echo esc_html( $addon['excerpt'] ); ?>
56
- <?php $show_docs = isset( $addon['docs'] ) && ! empty( $addon['docs'] ) && $addon['installed']; ?>
 
 
 
 
57
  <?php if ( $show_docs ) { ?>
58
  <br/><a href="<?php echo esc_url( $addon['docs'] ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'View Docs', 'formidable' ); ?>">
59
  <?php esc_html_e( 'View Docs', 'formidable' ); ?>
52
  <?php echo esc_html( $addon['title'] ); ?>
53
  </h2>
54
  <p>
55
+ <?php
56
+ // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
57
+ echo FrmAppHelper::kses( $addon['excerpt'], array( 'a' ) );
58
+
59
+ $show_docs = isset( $addon['docs'] ) && ! empty( $addon['docs'] ) && $addon['installed'];
60
+ ?>
61
  <?php if ( $show_docs ) { ?>
62
  <br/><a href="<?php echo esc_url( $addon['docs'] ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'View Docs', 'formidable' ); ?>">
63
  <?php esc_html_e( 'View Docs', 'formidable' ); ?>
classes/views/frm-form-actions/default_actions.php CHANGED
@@ -114,6 +114,13 @@ class FrmDefHubspotAction extends FrmFormAction {
114
  public function __construct() {
115
  $action_ops = FrmFormAction::default_action_opts( 'frm_hubspot_icon frm_show_upgrade' );
116
  $action_ops['color'] = 'var(--orange)';
 
 
 
 
 
 
 
117
  parent::__construct( 'hubspot', 'Hubspot', $action_ops );
118
  }
119
  }
114
  public function __construct() {
115
  $action_ops = FrmFormAction::default_action_opts( 'frm_hubspot_icon frm_show_upgrade' );
116
  $action_ops['color'] = 'var(--orange)';
117
+
118
+ $action_ops['message'] = '';
119
+ if ( ! FrmAppHelper::pro_is_installed() ) {
120
+ $action_ops['message'] .= __( 'The HubSpot integration is not available on your plan. Did you know you can upgrade to unlock more awesome features?', 'formidable' ) . '<br/><br/>';
121
+ }
122
+ $link = FrmAppHelper::admin_upgrade_link( 'add-action', 'knowledgebase/hubspot-forms/' );
123
+ $action_ops['message'] .= '<a href="' . esc_url( $link ) . '" target="_blank" rel="noopener" class="button button-secondary frm-button-secondary">Get Free HubSpot Account</a>';
124
  parent::__construct( 'hubspot', 'Hubspot', $action_ops );
125
  }
126
  }
css/frm_admin.css CHANGED
@@ -3707,7 +3707,7 @@ li.sortable-placeholder {
3707
  }
3708
 
3709
  .frm_single_option.ui-sortable-placeholder {
3710
- box-shadow: 20px -3px 0 1px var(--primary-color);
3711
  }
3712
 
3713
  .frm-is-collapsed + .sortable-placeholder {
3707
  }
3708
 
3709
  .frm_single_option.ui-sortable-placeholder {
3710
+ box-shadow: 0 0 1px 1px var(--primary-color);
3711
  }
3712
 
3713
  .frm-is-collapsed + .sortable-placeholder {
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.06
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.07
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin.js CHANGED
@@ -5725,10 +5725,14 @@ function frmAdminBuildJS() {
5725
  newMessage = link.getAttribute( 'data-message' ),
5726
  button = document.getElementById( 'frm-oneclick-button' ),
5727
  showIt = 'block',
 
5728
  hideIt = 'none';
5729
 
5730
  // If one click upgrade, hide other content.
5731
  if ( oneclickMessage !== null && typeof oneclick !== 'undefined' && oneclick ) {
 
 
 
5732
  showIt = 'none';
5733
  hideIt = 'block';
5734
  oneclick = JSON.parse( oneclick );
@@ -5753,7 +5757,7 @@ function frmAdminBuildJS() {
5753
  document.getElementById( 'frm-addon-status' ).style.display = 'none';
5754
  oneclickMessage.style.display = hideIt;
5755
  button.style.display = hideIt === 'block' ? 'inline-block' : hideIt;
5756
- upgradeMessage.style.display = showIt;
5757
  showLink.style.display = showIt === 'block' ? 'inline-block' : showIt;
5758
  }
5759
 
5725
  newMessage = link.getAttribute( 'data-message' ),
5726
  button = document.getElementById( 'frm-oneclick-button' ),
5727
  showIt = 'block',
5728
+ showMsg = 'block',
5729
  hideIt = 'none';
5730
 
5731
  // If one click upgrade, hide other content.
5732
  if ( oneclickMessage !== null && typeof oneclick !== 'undefined' && oneclick ) {
5733
+ if ( newMessage === null ) {
5734
+ showMsg = 'none';
5735
+ }
5736
  showIt = 'none';
5737
  hideIt = 'block';
5738
  oneclick = JSON.parse( oneclick );
5757
  document.getElementById( 'frm-addon-status' ).style.display = 'none';
5758
  oneclickMessage.style.display = hideIt;
5759
  button.style.display = hideIt === 'block' ? 'inline-block' : hideIt;
5760
+ upgradeMessage.style.display = showMsg;
5761
  showLink.style.display = showIt === 'block' ? 'inline-block' : showIt;
5762
  }
5763
 
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.06\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-09-27T16:06:56+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:2548
156
  msgid "Active"
157
  msgstr ""
158
 
@@ -315,7 +315,7 @@ msgstr ""
315
  msgid "%s form actions"
316
  msgstr ""
317
 
318
- #: classes/controllers/FrmFormActionsController.php:419
319
  #: classes/models/FrmEntryValidate.php:18
320
  #: classes/models/FrmSettings.php:110
321
  msgid "You do not have permission to do that"
@@ -852,7 +852,7 @@ msgid "Install WP Mail SMTP"
852
  msgstr ""
853
 
854
  #: classes/controllers/FrmSMTPController.php:305
855
- #: classes/helpers/FrmAppHelper.php:2547
856
  #: classes/helpers/FrmFormMigratorsHelper.php:131
857
  #: classes/views/shared/upgrade_overlay.php:32
858
  msgid "Install"
@@ -1000,12 +1000,12 @@ msgstr ""
1000
  msgid "There are no entries for that form."
1001
  msgstr ""
1002
 
1003
- #: classes/helpers/FrmAppHelper.php:913
1004
- #: classes/helpers/FrmAppHelper.php:921
1005
  msgid "Add New"
1006
  msgstr ""
1007
 
1008
- #: classes/helpers/FrmAppHelper.php:937
1009
  #: classes/views/frm-entries/list.php:47
1010
  #: classes/views/frm-forms/list.php:27
1011
  #: classes/views/shared/mb_adv_info.php:40
@@ -1013,205 +1013,205 @@ msgstr ""
1013
  msgid "Search"
1014
  msgstr ""
1015
 
1016
- #: classes/helpers/FrmAppHelper.php:1136
1017
  #: classes/views/frm-forms/settings-advanced.php:98
1018
  msgid "Select a Page"
1019
  msgstr ""
1020
 
1021
- #: classes/helpers/FrmAppHelper.php:1237
1022
  msgid "View Forms"
1023
  msgstr ""
1024
 
1025
- #: classes/helpers/FrmAppHelper.php:1238
1026
  msgid "Add and Edit Forms"
1027
  msgstr ""
1028
 
1029
- #: classes/helpers/FrmAppHelper.php:1239
1030
  msgid "Delete Forms"
1031
  msgstr ""
1032
 
1033
- #: classes/helpers/FrmAppHelper.php:1240
1034
  msgid "Access this Settings Page"
1035
  msgstr ""
1036
 
1037
- #: classes/helpers/FrmAppHelper.php:1241
1038
  msgid "View Entries from Admin Area"
1039
  msgstr ""
1040
 
1041
- #: classes/helpers/FrmAppHelper.php:1242
1042
  msgid "Delete Entries from Admin Area"
1043
  msgstr ""
1044
 
1045
- #: classes/helpers/FrmAppHelper.php:1250
1046
  msgid "Add Entries from Admin Area"
1047
  msgstr ""
1048
 
1049
- #: classes/helpers/FrmAppHelper.php:1251
1050
  msgid "Edit Entries from Admin Area"
1051
  msgstr ""
1052
 
1053
- #: classes/helpers/FrmAppHelper.php:1252
1054
  msgid "View Reports"
1055
  msgstr ""
1056
 
1057
- #: classes/helpers/FrmAppHelper.php:1253
1058
  msgid "Add/Edit Views"
1059
  msgstr ""
1060
 
1061
- #: classes/helpers/FrmAppHelper.php:1978
1062
  msgid "at"
1063
  msgstr ""
1064
 
1065
- #: classes/helpers/FrmAppHelper.php:2122
1066
  msgid "year"
1067
  msgstr ""
1068
 
1069
- #: classes/helpers/FrmAppHelper.php:2123
1070
  msgid "years"
1071
  msgstr ""
1072
 
1073
- #: classes/helpers/FrmAppHelper.php:2127
1074
  msgid "month"
1075
  msgstr ""
1076
 
1077
- #: classes/helpers/FrmAppHelper.php:2128
1078
  msgid "months"
1079
  msgstr ""
1080
 
1081
- #: classes/helpers/FrmAppHelper.php:2132
1082
  msgid "week"
1083
  msgstr ""
1084
 
1085
- #: classes/helpers/FrmAppHelper.php:2133
1086
  msgid "weeks"
1087
  msgstr ""
1088
 
1089
- #: classes/helpers/FrmAppHelper.php:2137
1090
  msgid "day"
1091
  msgstr ""
1092
 
1093
- #: classes/helpers/FrmAppHelper.php:2138
1094
  msgid "days"
1095
  msgstr ""
1096
 
1097
- #: classes/helpers/FrmAppHelper.php:2142
1098
  msgid "hour"
1099
  msgstr ""
1100
 
1101
- #: classes/helpers/FrmAppHelper.php:2143
1102
  msgid "hours"
1103
  msgstr ""
1104
 
1105
- #: classes/helpers/FrmAppHelper.php:2147
1106
  msgid "minute"
1107
  msgstr ""
1108
 
1109
- #: classes/helpers/FrmAppHelper.php:2148
1110
  msgid "minutes"
1111
  msgstr ""
1112
 
1113
- #: classes/helpers/FrmAppHelper.php:2152
1114
  msgid "second"
1115
  msgstr ""
1116
 
1117
- #: classes/helpers/FrmAppHelper.php:2153
1118
  msgid "seconds"
1119
  msgstr ""
1120
 
1121
- #: classes/helpers/FrmAppHelper.php:2247
1122
  msgid "Give this action a label for easy reference."
1123
  msgstr ""
1124
 
1125
- #: classes/helpers/FrmAppHelper.php:2248
1126
  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."
1127
  msgstr ""
1128
 
1129
- #: classes/helpers/FrmAppHelper.php:2249
1130
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1131
  msgstr ""
1132
 
1133
- #: classes/helpers/FrmAppHelper.php:2250
1134
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1135
  msgstr ""
1136
 
1137
- #: classes/helpers/FrmAppHelper.php:2251
1138
  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."
1139
  msgstr ""
1140
 
1141
- #: classes/helpers/FrmAppHelper.php:2252
1142
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1143
  msgstr ""
1144
 
1145
  #. translators: %1$s: Form name, %2$s: Date
1146
- #: classes/helpers/FrmAppHelper.php:2254
1147
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1148
  msgstr ""
1149
 
1150
- #: classes/helpers/FrmAppHelper.php:2450
1151
- #: classes/helpers/FrmAppHelper.php:2529
1152
  msgid "Please wait while your site updates."
1153
  msgstr ""
1154
 
1155
- #: classes/helpers/FrmAppHelper.php:2451
1156
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1157
  msgstr ""
1158
 
1159
- #: classes/helpers/FrmAppHelper.php:2454
1160
- #: classes/helpers/FrmAppHelper.php:2483
1161
  msgid "Loading&hellip;"
1162
  msgstr ""
1163
 
1164
- #: classes/helpers/FrmAppHelper.php:2484
1165
  msgid "Remove"
1166
  msgstr ""
1167
 
1168
- #: classes/helpers/FrmAppHelper.php:2487
1169
  #: classes/helpers/FrmCSVExportHelper.php:229
1170
  #: classes/views/shared/mb_adv_info.php:95
1171
  msgid "ID"
1172
  msgstr ""
1173
 
1174
- #: classes/helpers/FrmAppHelper.php:2488
1175
  msgid "No results match"
1176
  msgstr ""
1177
 
1178
- #: classes/helpers/FrmAppHelper.php:2489
1179
  msgid "That file looks like Spam."
1180
  msgstr ""
1181
 
1182
- #: classes/helpers/FrmAppHelper.php:2490
1183
  msgid "There is an error in the calculation in the field with key"
1184
  msgstr ""
1185
 
1186
- #: classes/helpers/FrmAppHelper.php:2491
1187
  msgid "Please complete the preceding required fields before uploading a file."
1188
  msgstr ""
1189
 
1190
- #: classes/helpers/FrmAppHelper.php:2502
1191
  msgid "(Click to add description)"
1192
  msgstr ""
1193
 
1194
- #: classes/helpers/FrmAppHelper.php:2503
1195
  msgid "(Blank)"
1196
  msgstr ""
1197
 
1198
- #: classes/helpers/FrmAppHelper.php:2504
1199
  msgid "(no label)"
1200
  msgstr ""
1201
 
1202
- #: classes/helpers/FrmAppHelper.php:2505
1203
  msgid "Saving"
1204
  msgstr ""
1205
 
1206
- #: classes/helpers/FrmAppHelper.php:2506
1207
  msgid "Saved"
1208
  msgstr ""
1209
 
1210
- #: classes/helpers/FrmAppHelper.php:2507
1211
  msgid "OK"
1212
  msgstr ""
1213
 
1214
- #: classes/helpers/FrmAppHelper.php:2508
1215
  #: classes/views/frm-forms/new-form-overlay.php:33
1216
  #: classes/views/frm-forms/new-form-overlay.php:100
1217
  #: classes/views/frm-forms/new-form-overlay.php:109
@@ -1224,416 +1224,416 @@ msgstr ""
1224
  msgid "Cancel"
1225
  msgstr ""
1226
 
1227
- #: classes/helpers/FrmAppHelper.php:2509
1228
  #: classes/views/frm-fields/back-end/settings.php:280
1229
  msgid "Default"
1230
  msgstr ""
1231
 
1232
- #: classes/helpers/FrmAppHelper.php:2510
1233
  msgid "Clear default value when typing"
1234
  msgstr ""
1235
 
1236
- #: classes/helpers/FrmAppHelper.php:2511
1237
  msgid "Do not clear default value when typing"
1238
  msgstr ""
1239
 
1240
- #: classes/helpers/FrmAppHelper.php:2512
1241
  msgid "Default value will pass form validation"
1242
  msgstr ""
1243
 
1244
- #: classes/helpers/FrmAppHelper.php:2513
1245
  msgid "Default value will NOT pass form validation"
1246
  msgstr ""
1247
 
1248
- #: classes/helpers/FrmAppHelper.php:2514
1249
  #: classes/helpers/FrmListHelper.php:405
1250
  #: js/formidable_admin.js:4072
1251
  msgid "Heads up"
1252
  msgstr ""
1253
 
1254
- #: classes/helpers/FrmAppHelper.php:2515
1255
  #: classes/views/shared/confirm-overlay.php:15
1256
  #: classes/views/shared/info-overlay.php:15
1257
  msgid "Are you sure?"
1258
  msgstr ""
1259
 
1260
- #: classes/helpers/FrmAppHelper.php:2516
1261
  msgid "Are you sure you want to delete this field and all data associated with it?"
1262
  msgstr ""
1263
 
1264
- #: classes/helpers/FrmAppHelper.php:2517
1265
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1266
  msgstr ""
1267
 
1268
- #: classes/helpers/FrmAppHelper.php:2518
1269
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1270
  msgstr ""
1271
 
1272
- #: classes/helpers/FrmAppHelper.php:2520
1273
  #: classes/helpers/FrmFieldsHelper.php:286
1274
  msgid "The entered values do not match"
1275
  msgstr ""
1276
 
1277
- #: classes/helpers/FrmAppHelper.php:2521
1278
  msgid "Enter Email"
1279
  msgstr ""
1280
 
1281
- #: classes/helpers/FrmAppHelper.php:2522
1282
  msgid "Confirm Email"
1283
  msgstr ""
1284
 
1285
- #: classes/helpers/FrmAppHelper.php:2523
1286
  #: classes/views/shared/mb_adv_info.php:166
1287
  msgid "Conditional content here"
1288
  msgstr ""
1289
 
1290
- #: classes/helpers/FrmAppHelper.php:2524
1291
  #: classes/helpers/FrmFieldsHelper.php:458
1292
  #: classes/helpers/FrmFieldsHelper.php:459
1293
  msgid "New Option"
1294
  msgstr ""
1295
 
1296
- #: classes/helpers/FrmAppHelper.php:2525
1297
  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."
1298
  msgstr ""
1299
 
1300
- #: classes/helpers/FrmAppHelper.php:2526
1301
  msgid "Enter Password"
1302
  msgstr ""
1303
 
1304
- #: classes/helpers/FrmAppHelper.php:2527
1305
  msgid "Confirm Password"
1306
  msgstr ""
1307
 
1308
- #: classes/helpers/FrmAppHelper.php:2528
1309
  msgid "Import Complete"
1310
  msgstr ""
1311
 
1312
- #: classes/helpers/FrmAppHelper.php:2530
1313
  msgid "Warning: There is no way to retrieve unsaved entries."
1314
  msgstr ""
1315
 
1316
- #: classes/helpers/FrmAppHelper.php:2531
1317
  msgid "Private"
1318
  msgstr ""
1319
 
1320
- #: classes/helpers/FrmAppHelper.php:2534
1321
  msgid "No new licenses were found"
1322
  msgstr ""
1323
 
1324
- #: classes/helpers/FrmAppHelper.php:2535
1325
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1326
  msgstr ""
1327
 
1328
- #: classes/helpers/FrmAppHelper.php:2536
1329
  msgid "This calculation may have shortcodes that work in Views but not forms."
1330
  msgstr ""
1331
 
1332
- #: classes/helpers/FrmAppHelper.php:2537
1333
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1334
  msgstr ""
1335
 
1336
- #: classes/helpers/FrmAppHelper.php:2538
1337
  msgid "This form action is limited to one per form. Please edit the existing form action."
1338
  msgstr ""
1339
 
1340
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1341
- #: classes/helpers/FrmAppHelper.php:2541
1342
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1343
  msgstr ""
1344
 
1345
  #. 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.
1346
- #: classes/helpers/FrmAppHelper.php:2543
1347
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1348
  msgstr ""
1349
 
1350
- #: classes/helpers/FrmAppHelper.php:2544
1351
  #: classes/helpers/FrmFormsHelper.php:1489
1352
  msgid "See the list of reserved words in WordPress."
1353
  msgstr ""
1354
 
1355
- #: classes/helpers/FrmAppHelper.php:2545
1356
  msgid "Please enter a Repeat Limit that is greater than 1."
1357
  msgstr ""
1358
 
1359
- #: classes/helpers/FrmAppHelper.php:2546
1360
  msgid "Please select a limit between 0 and 200."
1361
  msgstr ""
1362
 
1363
- #: classes/helpers/FrmAppHelper.php:2549
1364
  #: classes/views/shared/mb_adv_info.php:113
1365
  #: classes/views/shared/mb_adv_info.php:127
1366
  msgid "Select a Field"
1367
  msgstr ""
1368
 
1369
- #: classes/helpers/FrmAppHelper.php:2550
1370
  #: classes/helpers/FrmListHelper.php:262
1371
  msgid "No items found."
1372
  msgstr ""
1373
 
1374
- #: classes/helpers/FrmAppHelper.php:2578
1375
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1376
  msgstr ""
1377
 
1378
- #: classes/helpers/FrmAppHelper.php:2605
1379
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1380
  msgstr ""
1381
 
1382
- #: classes/helpers/FrmAppHelper.php:2633
1383
  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+."
1384
  msgstr ""
1385
 
1386
- #: classes/helpers/FrmAppHelper.php:2639
1387
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1388
  msgstr ""
1389
 
1390
- #: classes/helpers/FrmAppHelper.php:2653
1391
  msgid "English"
1392
  msgstr ""
1393
 
1394
- #: classes/helpers/FrmAppHelper.php:2654
1395
  msgid "Afrikaans"
1396
  msgstr ""
1397
 
1398
- #: classes/helpers/FrmAppHelper.php:2655
1399
  msgid "Albanian"
1400
  msgstr ""
1401
 
1402
- #: classes/helpers/FrmAppHelper.php:2656
1403
  msgid "Arabic"
1404
  msgstr ""
1405
 
1406
- #: classes/helpers/FrmAppHelper.php:2657
1407
  msgid "Armenian"
1408
  msgstr ""
1409
 
1410
- #: classes/helpers/FrmAppHelper.php:2658
1411
  msgid "Azerbaijani"
1412
  msgstr ""
1413
 
1414
- #: classes/helpers/FrmAppHelper.php:2659
1415
  msgid "Basque"
1416
  msgstr ""
1417
 
1418
- #: classes/helpers/FrmAppHelper.php:2660
1419
  msgid "Bosnian"
1420
  msgstr ""
1421
 
1422
- #: classes/helpers/FrmAppHelper.php:2661
1423
  msgid "Bulgarian"
1424
  msgstr ""
1425
 
1426
- #: classes/helpers/FrmAppHelper.php:2662
1427
  msgid "Catalan"
1428
  msgstr ""
1429
 
1430
- #: classes/helpers/FrmAppHelper.php:2663
1431
  msgid "Chinese Hong Kong"
1432
  msgstr ""
1433
 
1434
- #: classes/helpers/FrmAppHelper.php:2664
1435
  msgid "Chinese Simplified"
1436
  msgstr ""
1437
 
1438
- #: classes/helpers/FrmAppHelper.php:2665
1439
  msgid "Chinese Traditional"
1440
  msgstr ""
1441
 
1442
- #: classes/helpers/FrmAppHelper.php:2666
1443
  msgid "Croatian"
1444
  msgstr ""
1445
 
1446
- #: classes/helpers/FrmAppHelper.php:2667
1447
  msgid "Czech"
1448
  msgstr ""
1449
 
1450
- #: classes/helpers/FrmAppHelper.php:2668
1451
  msgid "Danish"
1452
  msgstr ""
1453
 
1454
- #: classes/helpers/FrmAppHelper.php:2669
1455
  msgid "Dutch"
1456
  msgstr ""
1457
 
1458
- #: classes/helpers/FrmAppHelper.php:2670
1459
  msgid "English/UK"
1460
  msgstr ""
1461
 
1462
- #: classes/helpers/FrmAppHelper.php:2671
1463
  msgid "Esperanto"
1464
  msgstr ""
1465
 
1466
- #: classes/helpers/FrmAppHelper.php:2672
1467
  msgid "Estonian"
1468
  msgstr ""
1469
 
1470
- #: classes/helpers/FrmAppHelper.php:2673
1471
  msgid "Faroese"
1472
  msgstr ""
1473
 
1474
- #: classes/helpers/FrmAppHelper.php:2674
1475
  msgid "Farsi/Persian"
1476
  msgstr ""
1477
 
1478
- #: classes/helpers/FrmAppHelper.php:2675
1479
  msgid "Filipino"
1480
  msgstr ""
1481
 
1482
- #: classes/helpers/FrmAppHelper.php:2676
1483
  msgid "Finnish"
1484
  msgstr ""
1485
 
1486
- #: classes/helpers/FrmAppHelper.php:2677
1487
  msgid "French"
1488
  msgstr ""
1489
 
1490
- #: classes/helpers/FrmAppHelper.php:2678
1491
  msgid "French/Canadian"
1492
  msgstr ""
1493
 
1494
- #: classes/helpers/FrmAppHelper.php:2679
1495
  msgid "French/Swiss"
1496
  msgstr ""
1497
 
1498
- #: classes/helpers/FrmAppHelper.php:2680
1499
  msgid "German"
1500
  msgstr ""
1501
 
1502
- #: classes/helpers/FrmAppHelper.php:2681
1503
  msgid "German/Austria"
1504
  msgstr ""
1505
 
1506
- #: classes/helpers/FrmAppHelper.php:2682
1507
  msgid "German/Switzerland"
1508
  msgstr ""
1509
 
1510
- #: classes/helpers/FrmAppHelper.php:2683
1511
  msgid "Greek"
1512
  msgstr ""
1513
 
1514
- #: classes/helpers/FrmAppHelper.php:2684
1515
- #: classes/helpers/FrmAppHelper.php:2685
1516
  msgid "Hebrew"
1517
  msgstr ""
1518
 
1519
- #: classes/helpers/FrmAppHelper.php:2686
1520
  msgid "Hindi"
1521
  msgstr ""
1522
 
1523
- #: classes/helpers/FrmAppHelper.php:2687
1524
  msgid "Hungarian"
1525
  msgstr ""
1526
 
1527
- #: classes/helpers/FrmAppHelper.php:2688
1528
  msgid "Icelandic"
1529
  msgstr ""
1530
 
1531
- #: classes/helpers/FrmAppHelper.php:2689
1532
  msgid "Indonesian"
1533
  msgstr ""
1534
 
1535
- #: classes/helpers/FrmAppHelper.php:2690
1536
  msgid "Italian"
1537
  msgstr ""
1538
 
1539
- #: classes/helpers/FrmAppHelper.php:2691
1540
  msgid "Japanese"
1541
  msgstr ""
1542
 
1543
- #: classes/helpers/FrmAppHelper.php:2692
1544
  msgid "Korean"
1545
  msgstr ""
1546
 
1547
- #: classes/helpers/FrmAppHelper.php:2693
1548
  msgid "Latvian"
1549
  msgstr ""
1550
 
1551
- #: classes/helpers/FrmAppHelper.php:2694
1552
  msgid "Lithuanian"
1553
  msgstr ""
1554
 
1555
- #: classes/helpers/FrmAppHelper.php:2695
1556
  msgid "Malaysian"
1557
  msgstr ""
1558
 
1559
- #: classes/helpers/FrmAppHelper.php:2696
1560
  msgid "Norwegian"
1561
  msgstr ""
1562
 
1563
- #: classes/helpers/FrmAppHelper.php:2697
1564
  msgid "Polish"
1565
  msgstr ""
1566
 
1567
- #: classes/helpers/FrmAppHelper.php:2698
1568
  msgid "Portuguese"
1569
  msgstr ""
1570
 
1571
- #: classes/helpers/FrmAppHelper.php:2699
1572
  msgid "Portuguese/Brazilian"
1573
  msgstr ""
1574
 
1575
- #: classes/helpers/FrmAppHelper.php:2700
1576
  msgid "Portuguese/Portugal"
1577
  msgstr ""
1578
 
1579
- #: classes/helpers/FrmAppHelper.php:2701
1580
  msgid "Romanian"
1581
  msgstr ""
1582
 
1583
- #: classes/helpers/FrmAppHelper.php:2702
1584
  msgid "Russian"
1585
  msgstr ""
1586
 
1587
- #: classes/helpers/FrmAppHelper.php:2703
1588
- #: classes/helpers/FrmAppHelper.php:2704
1589
  msgid "Serbian"
1590
  msgstr ""
1591
 
1592
- #: classes/helpers/FrmAppHelper.php:2705
1593
  msgid "Slovak"
1594
  msgstr ""
1595
 
1596
- #: classes/helpers/FrmAppHelper.php:2706
1597
  msgid "Slovenian"
1598
  msgstr ""
1599
 
1600
- #: classes/helpers/FrmAppHelper.php:2707
1601
  msgid "Spanish"
1602
  msgstr ""
1603
 
1604
- #: classes/helpers/FrmAppHelper.php:2708
1605
  msgid "Spanish/Latin America"
1606
  msgstr ""
1607
 
1608
- #: classes/helpers/FrmAppHelper.php:2709
1609
  msgid "Swedish"
1610
  msgstr ""
1611
 
1612
- #: classes/helpers/FrmAppHelper.php:2710
1613
  msgid "Tamil"
1614
  msgstr ""
1615
 
1616
- #: classes/helpers/FrmAppHelper.php:2711
1617
  msgid "Thai"
1618
  msgstr ""
1619
 
1620
- #: classes/helpers/FrmAppHelper.php:2712
1621
  msgid "Turkish"
1622
  msgstr ""
1623
 
1624
- #: classes/helpers/FrmAppHelper.php:2713
1625
  msgid "Ukrainian"
1626
  msgstr ""
1627
 
1628
- #: classes/helpers/FrmAppHelper.php:2714
1629
  msgid "Vietnamese"
1630
  msgstr ""
1631
 
1632
- #: classes/helpers/FrmAppHelper.php:2963
1633
  msgid "Your account has expired"
1634
  msgstr ""
1635
 
1636
- #: classes/helpers/FrmAppHelper.php:2966
1637
  msgid "Renew Now"
1638
  msgstr ""
1639
 
@@ -4334,13 +4334,13 @@ msgstr ""
4334
  msgid "Check now for a recent upgrade or renewal"
4335
  msgstr ""
4336
 
4337
- #: classes/views/addons/list.php:58
4338
- #: classes/views/addons/list.php:59
4339
  msgid "View Docs"
4340
  msgstr ""
4341
 
4342
  #. translators: %s: Status name
4343
- #: classes/views/addons/list.php:75
4344
  msgid "Status: %s"
4345
  msgstr ""
4346
 
@@ -4484,7 +4484,7 @@ msgstr ""
4484
  #: classes/views/frm-fields/back-end/inline-modal.php:7
4485
  #: classes/views/frm-fields/back-end/inline-modal.php:8
4486
  #: classes/views/shared/admin-header.php:19
4487
- #: js/formidable_admin.js:7641
4488
  msgid "Close"
4489
  msgstr ""
4490
 
@@ -4755,7 +4755,11 @@ msgstr ""
4755
  msgid "Twilio SMS"
4756
  msgstr ""
4757
 
4758
- #: classes/views/frm-form-actions/default_actions.php:141
 
 
 
 
4759
  msgid "Send API data"
4760
  msgstr ""
4761
 
@@ -6317,6 +6321,6 @@ msgstr ""
6317
  msgid "Are you sure you want to delete these %1$s selected fields?"
6318
  msgstr ""
6319
 
6320
- #: js/formidable_admin.js:7633
6321
  msgid "Save and Reload"
6322
  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.07\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-05T19:59:18+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:2561
156
  msgid "Active"
157
  msgstr ""
158
 
315
  msgid "%s form actions"
316
  msgstr ""
317
 
318
+ #: classes/controllers/FrmFormActionsController.php:423
319
  #: classes/models/FrmEntryValidate.php:18
320
  #: classes/models/FrmSettings.php:110
321
  msgid "You do not have permission to do that"
852
  msgstr ""
853
 
854
  #: classes/controllers/FrmSMTPController.php:305
855
+ #: classes/helpers/FrmAppHelper.php:2560
856
  #: classes/helpers/FrmFormMigratorsHelper.php:131
857
  #: classes/views/shared/upgrade_overlay.php:32
858
  msgid "Install"
1000
  msgid "There are no entries for that form."
1001
  msgstr ""
1002
 
1003
+ #: classes/helpers/FrmAppHelper.php:926
1004
+ #: classes/helpers/FrmAppHelper.php:934
1005
  msgid "Add New"
1006
  msgstr ""
1007
 
1008
+ #: classes/helpers/FrmAppHelper.php:950
1009
  #: classes/views/frm-entries/list.php:47
1010
  #: classes/views/frm-forms/list.php:27
1011
  #: classes/views/shared/mb_adv_info.php:40
1013
  msgid "Search"
1014
  msgstr ""
1015
 
1016
+ #: classes/helpers/FrmAppHelper.php:1149
1017
  #: classes/views/frm-forms/settings-advanced.php:98
1018
  msgid "Select a Page"
1019
  msgstr ""
1020
 
1021
+ #: classes/helpers/FrmAppHelper.php:1250
1022
  msgid "View Forms"
1023
  msgstr ""
1024
 
1025
+ #: classes/helpers/FrmAppHelper.php:1251
1026
  msgid "Add and Edit Forms"
1027
  msgstr ""
1028
 
1029
+ #: classes/helpers/FrmAppHelper.php:1252
1030
  msgid "Delete Forms"
1031
  msgstr ""
1032
 
1033
+ #: classes/helpers/FrmAppHelper.php:1253
1034
  msgid "Access this Settings Page"
1035
  msgstr ""
1036
 
1037
+ #: classes/helpers/FrmAppHelper.php:1254
1038
  msgid "View Entries from Admin Area"
1039
  msgstr ""
1040
 
1041
+ #: classes/helpers/FrmAppHelper.php:1255
1042
  msgid "Delete Entries from Admin Area"
1043
  msgstr ""
1044
 
1045
+ #: classes/helpers/FrmAppHelper.php:1263
1046
  msgid "Add Entries from Admin Area"
1047
  msgstr ""
1048
 
1049
+ #: classes/helpers/FrmAppHelper.php:1264
1050
  msgid "Edit Entries from Admin Area"
1051
  msgstr ""
1052
 
1053
+ #: classes/helpers/FrmAppHelper.php:1265
1054
  msgid "View Reports"
1055
  msgstr ""
1056
 
1057
+ #: classes/helpers/FrmAppHelper.php:1266
1058
  msgid "Add/Edit Views"
1059
  msgstr ""
1060
 
1061
+ #: classes/helpers/FrmAppHelper.php:1991
1062
  msgid "at"
1063
  msgstr ""
1064
 
1065
+ #: classes/helpers/FrmAppHelper.php:2135
1066
  msgid "year"
1067
  msgstr ""
1068
 
1069
+ #: classes/helpers/FrmAppHelper.php:2136
1070
  msgid "years"
1071
  msgstr ""
1072
 
1073
+ #: classes/helpers/FrmAppHelper.php:2140
1074
  msgid "month"
1075
  msgstr ""
1076
 
1077
+ #: classes/helpers/FrmAppHelper.php:2141
1078
  msgid "months"
1079
  msgstr ""
1080
 
1081
+ #: classes/helpers/FrmAppHelper.php:2145
1082
  msgid "week"
1083
  msgstr ""
1084
 
1085
+ #: classes/helpers/FrmAppHelper.php:2146
1086
  msgid "weeks"
1087
  msgstr ""
1088
 
1089
+ #: classes/helpers/FrmAppHelper.php:2150
1090
  msgid "day"
1091
  msgstr ""
1092
 
1093
+ #: classes/helpers/FrmAppHelper.php:2151
1094
  msgid "days"
1095
  msgstr ""
1096
 
1097
+ #: classes/helpers/FrmAppHelper.php:2155
1098
  msgid "hour"
1099
  msgstr ""
1100
 
1101
+ #: classes/helpers/FrmAppHelper.php:2156
1102
  msgid "hours"
1103
  msgstr ""
1104
 
1105
+ #: classes/helpers/FrmAppHelper.php:2160
1106
  msgid "minute"
1107
  msgstr ""
1108
 
1109
+ #: classes/helpers/FrmAppHelper.php:2161
1110
  msgid "minutes"
1111
  msgstr ""
1112
 
1113
+ #: classes/helpers/FrmAppHelper.php:2165
1114
  msgid "second"
1115
  msgstr ""
1116
 
1117
+ #: classes/helpers/FrmAppHelper.php:2166
1118
  msgid "seconds"
1119
  msgstr ""
1120
 
1121
+ #: classes/helpers/FrmAppHelper.php:2260
1122
  msgid "Give this action a label for easy reference."
1123
  msgstr ""
1124
 
1125
+ #: classes/helpers/FrmAppHelper.php:2261
1126
  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."
1127
  msgstr ""
1128
 
1129
+ #: classes/helpers/FrmAppHelper.php:2262
1130
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1131
  msgstr ""
1132
 
1133
+ #: classes/helpers/FrmAppHelper.php:2263
1134
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
1135
  msgstr ""
1136
 
1137
+ #: classes/helpers/FrmAppHelper.php:2264
1138
  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."
1139
  msgstr ""
1140
 
1141
+ #: classes/helpers/FrmAppHelper.php:2265
1142
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
1143
  msgstr ""
1144
 
1145
  #. translators: %1$s: Form name, %2$s: Date
1146
+ #: classes/helpers/FrmAppHelper.php:2267
1147
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1148
  msgstr ""
1149
 
1150
+ #: classes/helpers/FrmAppHelper.php:2463
1151
+ #: classes/helpers/FrmAppHelper.php:2542
1152
  msgid "Please wait while your site updates."
1153
  msgstr ""
1154
 
1155
+ #: classes/helpers/FrmAppHelper.php:2464
1156
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1157
  msgstr ""
1158
 
1159
+ #: classes/helpers/FrmAppHelper.php:2467
1160
+ #: classes/helpers/FrmAppHelper.php:2496
1161
  msgid "Loading&hellip;"
1162
  msgstr ""
1163
 
1164
+ #: classes/helpers/FrmAppHelper.php:2497
1165
  msgid "Remove"
1166
  msgstr ""
1167
 
1168
+ #: classes/helpers/FrmAppHelper.php:2500
1169
  #: classes/helpers/FrmCSVExportHelper.php:229
1170
  #: classes/views/shared/mb_adv_info.php:95
1171
  msgid "ID"
1172
  msgstr ""
1173
 
1174
+ #: classes/helpers/FrmAppHelper.php:2501
1175
  msgid "No results match"
1176
  msgstr ""
1177
 
1178
+ #: classes/helpers/FrmAppHelper.php:2502
1179
  msgid "That file looks like Spam."
1180
  msgstr ""
1181
 
1182
+ #: classes/helpers/FrmAppHelper.php:2503
1183
  msgid "There is an error in the calculation in the field with key"
1184
  msgstr ""
1185
 
1186
+ #: classes/helpers/FrmAppHelper.php:2504
1187
  msgid "Please complete the preceding required fields before uploading a file."
1188
  msgstr ""
1189
 
1190
+ #: classes/helpers/FrmAppHelper.php:2515
1191
  msgid "(Click to add description)"
1192
  msgstr ""
1193
 
1194
+ #: classes/helpers/FrmAppHelper.php:2516
1195
  msgid "(Blank)"
1196
  msgstr ""
1197
 
1198
+ #: classes/helpers/FrmAppHelper.php:2517
1199
  msgid "(no label)"
1200
  msgstr ""
1201
 
1202
+ #: classes/helpers/FrmAppHelper.php:2518
1203
  msgid "Saving"
1204
  msgstr ""
1205
 
1206
+ #: classes/helpers/FrmAppHelper.php:2519
1207
  msgid "Saved"
1208
  msgstr ""
1209
 
1210
+ #: classes/helpers/FrmAppHelper.php:2520
1211
  msgid "OK"
1212
  msgstr ""
1213
 
1214
+ #: classes/helpers/FrmAppHelper.php:2521
1215
  #: classes/views/frm-forms/new-form-overlay.php:33
1216
  #: classes/views/frm-forms/new-form-overlay.php:100
1217
  #: classes/views/frm-forms/new-form-overlay.php:109
1224
  msgid "Cancel"
1225
  msgstr ""
1226
 
1227
+ #: classes/helpers/FrmAppHelper.php:2522
1228
  #: classes/views/frm-fields/back-end/settings.php:280
1229
  msgid "Default"
1230
  msgstr ""
1231
 
1232
+ #: classes/helpers/FrmAppHelper.php:2523
1233
  msgid "Clear default value when typing"
1234
  msgstr ""
1235
 
1236
+ #: classes/helpers/FrmAppHelper.php:2524
1237
  msgid "Do not clear default value when typing"
1238
  msgstr ""
1239
 
1240
+ #: classes/helpers/FrmAppHelper.php:2525
1241
  msgid "Default value will pass form validation"
1242
  msgstr ""
1243
 
1244
+ #: classes/helpers/FrmAppHelper.php:2526
1245
  msgid "Default value will NOT pass form validation"
1246
  msgstr ""
1247
 
1248
+ #: classes/helpers/FrmAppHelper.php:2527
1249
  #: classes/helpers/FrmListHelper.php:405
1250
  #: js/formidable_admin.js:4072
1251
  msgid "Heads up"
1252
  msgstr ""
1253
 
1254
+ #: classes/helpers/FrmAppHelper.php:2528
1255
  #: classes/views/shared/confirm-overlay.php:15
1256
  #: classes/views/shared/info-overlay.php:15
1257
  msgid "Are you sure?"
1258
  msgstr ""
1259
 
1260
+ #: classes/helpers/FrmAppHelper.php:2529
1261
  msgid "Are you sure you want to delete this field and all data associated with it?"
1262
  msgstr ""
1263
 
1264
+ #: classes/helpers/FrmAppHelper.php:2530
1265
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1266
  msgstr ""
1267
 
1268
+ #: classes/helpers/FrmAppHelper.php:2531
1269
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1270
  msgstr ""
1271
 
1272
+ #: classes/helpers/FrmAppHelper.php:2533
1273
  #: classes/helpers/FrmFieldsHelper.php:286
1274
  msgid "The entered values do not match"
1275
  msgstr ""
1276
 
1277
+ #: classes/helpers/FrmAppHelper.php:2534
1278
  msgid "Enter Email"
1279
  msgstr ""
1280
 
1281
+ #: classes/helpers/FrmAppHelper.php:2535
1282
  msgid "Confirm Email"
1283
  msgstr ""
1284
 
1285
+ #: classes/helpers/FrmAppHelper.php:2536
1286
  #: classes/views/shared/mb_adv_info.php:166
1287
  msgid "Conditional content here"
1288
  msgstr ""
1289
 
1290
+ #: classes/helpers/FrmAppHelper.php:2537
1291
  #: classes/helpers/FrmFieldsHelper.php:458
1292
  #: classes/helpers/FrmFieldsHelper.php:459
1293
  msgid "New Option"
1294
  msgstr ""
1295
 
1296
+ #: classes/helpers/FrmAppHelper.php:2538
1297
  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."
1298
  msgstr ""
1299
 
1300
+ #: classes/helpers/FrmAppHelper.php:2539
1301
  msgid "Enter Password"
1302
  msgstr ""
1303
 
1304
+ #: classes/helpers/FrmAppHelper.php:2540
1305
  msgid "Confirm Password"
1306
  msgstr ""
1307
 
1308
+ #: classes/helpers/FrmAppHelper.php:2541
1309
  msgid "Import Complete"
1310
  msgstr ""
1311
 
1312
+ #: classes/helpers/FrmAppHelper.php:2543
1313
  msgid "Warning: There is no way to retrieve unsaved entries."
1314
  msgstr ""
1315
 
1316
+ #: classes/helpers/FrmAppHelper.php:2544
1317
  msgid "Private"
1318
  msgstr ""
1319
 
1320
+ #: classes/helpers/FrmAppHelper.php:2547
1321
  msgid "No new licenses were found"
1322
  msgstr ""
1323
 
1324
+ #: classes/helpers/FrmAppHelper.php:2548
1325
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1326
  msgstr ""
1327
 
1328
+ #: classes/helpers/FrmAppHelper.php:2549
1329
  msgid "This calculation may have shortcodes that work in Views but not forms."
1330
  msgstr ""
1331
 
1332
+ #: classes/helpers/FrmAppHelper.php:2550
1333
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1334
  msgstr ""
1335
 
1336
+ #: classes/helpers/FrmAppHelper.php:2551
1337
  msgid "This form action is limited to one per form. Please edit the existing form action."
1338
  msgstr ""
1339
 
1340
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1341
+ #: classes/helpers/FrmAppHelper.php:2554
1342
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1343
  msgstr ""
1344
 
1345
  #. 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.
1346
+ #: classes/helpers/FrmAppHelper.php:2556
1347
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1348
  msgstr ""
1349
 
1350
+ #: classes/helpers/FrmAppHelper.php:2557
1351
  #: classes/helpers/FrmFormsHelper.php:1489
1352
  msgid "See the list of reserved words in WordPress."
1353
  msgstr ""
1354
 
1355
+ #: classes/helpers/FrmAppHelper.php:2558
1356
  msgid "Please enter a Repeat Limit that is greater than 1."
1357
  msgstr ""
1358
 
1359
+ #: classes/helpers/FrmAppHelper.php:2559
1360
  msgid "Please select a limit between 0 and 200."
1361
  msgstr ""
1362
 
1363
+ #: classes/helpers/FrmAppHelper.php:2562
1364
  #: classes/views/shared/mb_adv_info.php:113
1365
  #: classes/views/shared/mb_adv_info.php:127
1366
  msgid "Select a Field"
1367
  msgstr ""
1368
 
1369
+ #: classes/helpers/FrmAppHelper.php:2563
1370
  #: classes/helpers/FrmListHelper.php:262
1371
  msgid "No items found."
1372
  msgstr ""
1373
 
1374
+ #: classes/helpers/FrmAppHelper.php:2591
1375
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1376
  msgstr ""
1377
 
1378
+ #: classes/helpers/FrmAppHelper.php:2618
1379
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1380
  msgstr ""
1381
 
1382
+ #: classes/helpers/FrmAppHelper.php:2646
1383
  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+."
1384
  msgstr ""
1385
 
1386
+ #: classes/helpers/FrmAppHelper.php:2652
1387
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1388
  msgstr ""
1389
 
1390
+ #: classes/helpers/FrmAppHelper.php:2666
1391
  msgid "English"
1392
  msgstr ""
1393
 
1394
+ #: classes/helpers/FrmAppHelper.php:2667
1395
  msgid "Afrikaans"
1396
  msgstr ""
1397
 
1398
+ #: classes/helpers/FrmAppHelper.php:2668
1399
  msgid "Albanian"
1400
  msgstr ""
1401
 
1402
+ #: classes/helpers/FrmAppHelper.php:2669
1403
  msgid "Arabic"
1404
  msgstr ""
1405
 
1406
+ #: classes/helpers/FrmAppHelper.php:2670
1407
  msgid "Armenian"
1408
  msgstr ""
1409
 
1410
+ #: classes/helpers/FrmAppHelper.php:2671
1411
  msgid "Azerbaijani"
1412
  msgstr ""
1413
 
1414
+ #: classes/helpers/FrmAppHelper.php:2672
1415
  msgid "Basque"
1416
  msgstr ""
1417
 
1418
+ #: classes/helpers/FrmAppHelper.php:2673
1419
  msgid "Bosnian"
1420
  msgstr ""
1421
 
1422
+ #: classes/helpers/FrmAppHelper.php:2674
1423
  msgid "Bulgarian"
1424
  msgstr ""
1425
 
1426
+ #: classes/helpers/FrmAppHelper.php:2675
1427
  msgid "Catalan"
1428
  msgstr ""
1429
 
1430
+ #: classes/helpers/FrmAppHelper.php:2676
1431
  msgid "Chinese Hong Kong"
1432
  msgstr ""
1433
 
1434
+ #: classes/helpers/FrmAppHelper.php:2677
1435
  msgid "Chinese Simplified"
1436
  msgstr ""
1437
 
1438
+ #: classes/helpers/FrmAppHelper.php:2678
1439
  msgid "Chinese Traditional"
1440
  msgstr ""
1441
 
1442
+ #: classes/helpers/FrmAppHelper.php:2679
1443
  msgid "Croatian"
1444
  msgstr ""
1445
 
1446
+ #: classes/helpers/FrmAppHelper.php:2680
1447
  msgid "Czech"
1448
  msgstr ""
1449
 
1450
+ #: classes/helpers/FrmAppHelper.php:2681
1451
  msgid "Danish"
1452
  msgstr ""
1453
 
1454
+ #: classes/helpers/FrmAppHelper.php:2682
1455
  msgid "Dutch"
1456
  msgstr ""
1457
 
1458
+ #: classes/helpers/FrmAppHelper.php:2683
1459
  msgid "English/UK"
1460
  msgstr ""
1461
 
1462
+ #: classes/helpers/FrmAppHelper.php:2684
1463
  msgid "Esperanto"
1464
  msgstr ""
1465
 
1466
+ #: classes/helpers/FrmAppHelper.php:2685
1467
  msgid "Estonian"
1468
  msgstr ""
1469
 
1470
+ #: classes/helpers/FrmAppHelper.php:2686
1471
  msgid "Faroese"
1472
  msgstr ""
1473
 
1474
+ #: classes/helpers/FrmAppHelper.php:2687
1475
  msgid "Farsi/Persian"
1476
  msgstr ""
1477
 
1478
+ #: classes/helpers/FrmAppHelper.php:2688
1479
  msgid "Filipino"
1480
  msgstr ""
1481
 
1482
+ #: classes/helpers/FrmAppHelper.php:2689
1483
  msgid "Finnish"
1484
  msgstr ""
1485
 
1486
+ #: classes/helpers/FrmAppHelper.php:2690
1487
  msgid "French"
1488
  msgstr ""
1489
 
1490
+ #: classes/helpers/FrmAppHelper.php:2691
1491
  msgid "French/Canadian"
1492
  msgstr ""
1493
 
1494
+ #: classes/helpers/FrmAppHelper.php:2692
1495
  msgid "French/Swiss"
1496
  msgstr ""
1497
 
1498
+ #: classes/helpers/FrmAppHelper.php:2693
1499
  msgid "German"
1500
  msgstr ""
1501
 
1502
+ #: classes/helpers/FrmAppHelper.php:2694
1503
  msgid "German/Austria"
1504
  msgstr ""
1505
 
1506
+ #: classes/helpers/FrmAppHelper.php:2695
1507
  msgid "German/Switzerland"
1508
  msgstr ""
1509
 
1510
+ #: classes/helpers/FrmAppHelper.php:2696
1511
  msgid "Greek"
1512
  msgstr ""
1513
 
1514
+ #: classes/helpers/FrmAppHelper.php:2697
1515
+ #: classes/helpers/FrmAppHelper.php:2698
1516
  msgid "Hebrew"
1517
  msgstr ""
1518
 
1519
+ #: classes/helpers/FrmAppHelper.php:2699
1520
  msgid "Hindi"
1521
  msgstr ""
1522
 
1523
+ #: classes/helpers/FrmAppHelper.php:2700
1524
  msgid "Hungarian"
1525
  msgstr ""
1526
 
1527
+ #: classes/helpers/FrmAppHelper.php:2701
1528
  msgid "Icelandic"
1529
  msgstr ""
1530
 
1531
+ #: classes/helpers/FrmAppHelper.php:2702
1532
  msgid "Indonesian"
1533
  msgstr ""
1534
 
1535
+ #: classes/helpers/FrmAppHelper.php:2703
1536
  msgid "Italian"
1537
  msgstr ""
1538
 
1539
+ #: classes/helpers/FrmAppHelper.php:2704
1540
  msgid "Japanese"
1541
  msgstr ""
1542
 
1543
+ #: classes/helpers/FrmAppHelper.php:2705
1544
  msgid "Korean"
1545
  msgstr ""
1546
 
1547
+ #: classes/helpers/FrmAppHelper.php:2706
1548
  msgid "Latvian"
1549
  msgstr ""
1550
 
1551
+ #: classes/helpers/FrmAppHelper.php:2707
1552
  msgid "Lithuanian"
1553
  msgstr ""
1554
 
1555
+ #: classes/helpers/FrmAppHelper.php:2708
1556
  msgid "Malaysian"
1557
  msgstr ""
1558
 
1559
+ #: classes/helpers/FrmAppHelper.php:2709
1560
  msgid "Norwegian"
1561
  msgstr ""
1562
 
1563
+ #: classes/helpers/FrmAppHelper.php:2710
1564
  msgid "Polish"
1565
  msgstr ""
1566
 
1567
+ #: classes/helpers/FrmAppHelper.php:2711
1568
  msgid "Portuguese"
1569
  msgstr ""
1570
 
1571
+ #: classes/helpers/FrmAppHelper.php:2712
1572
  msgid "Portuguese/Brazilian"
1573
  msgstr ""
1574
 
1575
+ #: classes/helpers/FrmAppHelper.php:2713
1576
  msgid "Portuguese/Portugal"
1577
  msgstr ""
1578
 
1579
+ #: classes/helpers/FrmAppHelper.php:2714
1580
  msgid "Romanian"
1581
  msgstr ""
1582
 
1583
+ #: classes/helpers/FrmAppHelper.php:2715
1584
  msgid "Russian"
1585
  msgstr ""
1586
 
1587
+ #: classes/helpers/FrmAppHelper.php:2716
1588
+ #: classes/helpers/FrmAppHelper.php:2717
1589
  msgid "Serbian"
1590
  msgstr ""
1591
 
1592
+ #: classes/helpers/FrmAppHelper.php:2718
1593
  msgid "Slovak"
1594
  msgstr ""
1595
 
1596
+ #: classes/helpers/FrmAppHelper.php:2719
1597
  msgid "Slovenian"
1598
  msgstr ""
1599
 
1600
+ #: classes/helpers/FrmAppHelper.php:2720
1601
  msgid "Spanish"
1602
  msgstr ""
1603
 
1604
+ #: classes/helpers/FrmAppHelper.php:2721
1605
  msgid "Spanish/Latin America"
1606
  msgstr ""
1607
 
1608
+ #: classes/helpers/FrmAppHelper.php:2722
1609
  msgid "Swedish"
1610
  msgstr ""
1611
 
1612
+ #: classes/helpers/FrmAppHelper.php:2723
1613
  msgid "Tamil"
1614
  msgstr ""
1615
 
1616
+ #: classes/helpers/FrmAppHelper.php:2724
1617
  msgid "Thai"
1618
  msgstr ""
1619
 
1620
+ #: classes/helpers/FrmAppHelper.php:2725
1621
  msgid "Turkish"
1622
  msgstr ""
1623
 
1624
+ #: classes/helpers/FrmAppHelper.php:2726
1625
  msgid "Ukrainian"
1626
  msgstr ""
1627
 
1628
+ #: classes/helpers/FrmAppHelper.php:2727
1629
  msgid "Vietnamese"
1630
  msgstr ""
1631
 
1632
+ #: classes/helpers/FrmAppHelper.php:3011
1633
  msgid "Your account has expired"
1634
  msgstr ""
1635
 
1636
+ #: classes/helpers/FrmAppHelper.php:3014
1637
  msgid "Renew Now"
1638
  msgstr ""
1639
 
4334
  msgid "Check now for a recent upgrade or renewal"
4335
  msgstr ""
4336
 
4337
+ #: classes/views/addons/list.php:62
4338
+ #: classes/views/addons/list.php:63
4339
  msgid "View Docs"
4340
  msgstr ""
4341
 
4342
  #. translators: %s: Status name
4343
+ #: classes/views/addons/list.php:79
4344
  msgid "Status: %s"
4345
  msgstr ""
4346
 
4484
  #: classes/views/frm-fields/back-end/inline-modal.php:7
4485
  #: classes/views/frm-fields/back-end/inline-modal.php:8
4486
  #: classes/views/shared/admin-header.php:19
4487
+ #: js/formidable_admin.js:7645
4488
  msgid "Close"
4489
  msgstr ""
4490
 
4755
  msgid "Twilio SMS"
4756
  msgstr ""
4757
 
4758
+ #: classes/views/frm-form-actions/default_actions.php:120
4759
+ msgid "The HubSpot integration is not available on your plan. Did you know you can upgrade to unlock more awesome features?"
4760
+ msgstr ""
4761
+
4762
+ #: classes/views/frm-form-actions/default_actions.php:148
4763
  msgid "Send API data"
4764
  msgstr ""
4765
 
6321
  msgid "Are you sure you want to delete these %1$s selected fields?"
6322
  msgstr ""
6323
 
6324
+ #: js/formidable_admin.js:7637
6325
  msgid "Save and Reload"
6326
  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.06
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
@@ -440,6 +440,12 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
440
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
441
 
442
  == Changelog ==
 
 
 
 
 
 
443
  = 5.0.06 =
444
  - New: Added new frm_export_csv_headings filter to make it easier to add and remove exported CSV headings.
445
  - New: When clicking an inactive action that requires pro, the required pro license will be properly shown in the popup.
@@ -478,15 +484,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
478
  * Fix: Toggling a page to collapse was not working properly, causing the first page break to collapse the whole page and the other page break fields to do nothing.
479
  * Fix: Added truncation to long form keys during duplication to avoid issues with duplicating when the generated key was too long.
480
 
481
- = 5.0 =
482
- * Increased WP version requirement to 5.0.
483
- * New: Fields can now be dragged beside each other and grid layouts will be automatically applied.
484
- * New: Added the option to quickly set layouts for a full row of fields at once.
485
- * New: Fields can now be multiselected using the command, control, and shift keys. Selected field groups can be merged into rows and deleted in batches.
486
- * New: Added additional formatting to calculations to avoid issues with comparisons getting stripped when spaces are left out.
487
- * New: Permissions are now updated right away when a Formidable license is activated to avoid issues with certain pro features not being available right away.
488
- * Fix: Updated styling rules for repeater button icons to avoid issues with file upload icons getting styled as well.
489
- * Fix: The confirmation pop up title was displaying as inline when trying to delete a section.
490
- * Fix: Updated styling for new fields that are about to be dropped into a form.
491
-
492
  <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.07
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
440
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
441
 
442
  == Changelog ==
443
+ = 5.0.07 =
444
+ - Security: Unsafe HTML will now be stripped from field labels, descriptions, and custom HTML, as well as form titles, descriptions, custom submit text, custom submit HTML, before HTML, after HTML, and success message if the user saving HTML does not have the unfiltered_html permission or if the DISALLOW_UNFILTERED_HTML constant is set.
445
+ - New: Added new frm_akismet_values filter to help improve Akismet integration.
446
+ - Fix: The Akismet API was getting called is Akismet was set up even if the form had Akismet turned off.
447
+ - Fix: Updated the styling when a field option is being dragged and dropped.
448
+
449
  = 5.0.06 =
450
  - New: Added new frm_export_csv_headings filter to make it easier to add and remove exported CSV headings.
451
  - New: When clicking an inactive action that requires pro, the required pro license will be properly shown in the popup.
484
  * Fix: Toggling a page to collapse was not working properly, causing the first page break to collapse the whole page and the other page break fields to do nothing.
485
  * Fix: Added truncation to long form keys during duplication to avoid issues with duplicating when the generated key was too long.
486
 
 
 
 
 
 
 
 
 
 
 
 
487
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>