Formidable Forms – Form Builder for WordPress - Version 5.2.01

Version Description

  • New: Added new checkboxes to toggle form title and description visibility. The form preview page will no longer always show title and description by default, and will use these checkboxes instead.
  • Fix: In-Theme Previews trigger a fatal error in WordPress 5.9.1.
  • Fix: Checkbox fields were appearing as broken vertical lines when using the Enfold theme.
  • Fix: A deprecation message was occasionally logged in PHP8 when trying to decode null values.
Download this release

Release Info

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

Code changes from version 5.2 to 5.2.01

classes/controllers/FrmAddonsController.php CHANGED
@@ -890,10 +890,8 @@ class FrmAddonsController {
890
  * @since 4.08
891
  */
892
  protected static function download_and_activate() {
893
- // Set the current screen to avoid undefined notices.
894
  if ( is_admin() ) {
895
- global $hook_suffix;
896
- set_current_screen();
897
  }
898
 
899
  self::maybe_show_cred_form();
@@ -979,9 +977,7 @@ class FrmAddonsController {
979
 
980
  self::install_addon_permissions();
981
 
982
- // Set the current screen to avoid undefined notices.
983
- global $hook_suffix;
984
- set_current_screen();
985
 
986
  $plugin = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
987
  self::maybe_activate_addon( $plugin );
890
  * @since 4.08
891
  */
892
  protected static function download_and_activate() {
 
893
  if ( is_admin() ) {
894
+ FrmAppHelper::set_current_screen_and_hook_suffix();
 
895
  }
896
 
897
  self::maybe_show_cred_form();
977
 
978
  self::install_addon_permissions();
979
 
980
+ FrmAppHelper::set_current_screen_and_hook_suffix();
 
 
981
 
982
  $plugin = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
983
  self::maybe_activate_addon( $plugin );
classes/controllers/FrmFormsController.php CHANGED
@@ -251,6 +251,9 @@ class FrmFormsController {
251
  }
252
  }
253
 
 
 
 
254
  public static function page_preview() {
255
  $params = FrmForm::list_page_params();
256
  if ( ! $params['form'] ) {
@@ -259,7 +262,7 @@ class FrmFormsController {
259
 
260
  $form = FrmForm::getOne( $params['form'] );
261
  if ( $form ) {
262
- return self::show_form( $form->id, '', true, true );
263
  }
264
  }
265
 
@@ -270,8 +273,12 @@ class FrmFormsController {
270
  echo self::page_preview(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
271
  }
272
 
 
 
 
273
  public static function preview() {
274
  do_action( 'frm_wp' );
 
275
 
276
  global $frm_vars;
277
  $frm_vars['preview'] = true;
@@ -1714,6 +1721,7 @@ class FrmFormsController {
1714
  * The formidable shortcode
1715
  *
1716
  * @param array $atts The params from the shortcode.
 
1717
  */
1718
  public static function get_form_shortcode( $atts ) {
1719
  global $frm_vars;
@@ -1727,8 +1735,8 @@ class FrmFormsController {
1727
  array(
1728
  'id' => '',
1729
  'key' => '',
1730
- 'title' => false,
1731
- 'description' => false,
1732
  'readonly' => false,
1733
  'entry_id' => false,
1734
  'fields' => array(),
@@ -1742,16 +1750,43 @@ class FrmFormsController {
1742
  return self::show_form( $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'], $shortcode_atts['description'], $atts );
1743
  }
1744
 
1745
- public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) {
1746
- if ( empty( $id ) ) {
 
 
 
 
 
 
 
1747
  $id = $key;
1748
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
1749
 
1750
- $form = self::maybe_get_form_to_show( $id );
1751
  if ( ! $form ) {
1752
  return __( 'Please select a valid form', 'formidable' );
1753
  }
1754
 
 
 
 
 
 
 
 
 
1755
  FrmAppController::maybe_update_styles();
1756
 
1757
  add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
@@ -1782,12 +1817,16 @@ class FrmFormsController {
1782
  return $form;
1783
  }
1784
 
 
 
 
 
1785
  private static function maybe_get_form_to_show( $id ) {
1786
  $form = false;
1787
 
1788
- if ( ! empty( $id ) ) { // no form id or key set
1789
  $form = FrmForm::getOne( $id );
1790
- if ( ! $form || $form->parent_form_id || $form->status == 'trash' ) {
1791
  $form = false;
1792
  }
1793
  }
251
  }
252
  }
253
 
254
+ /**
255
+ * @return string
256
+ */
257
  public static function page_preview() {
258
  $params = FrmForm::list_page_params();
259
  if ( ! $params['form'] ) {
262
 
263
  $form = FrmForm::getOne( $params['form'] );
264
  if ( $form ) {
265
+ return self::show_form( $form->id, '', 'auto', 'auto' );
266
  }
267
  }
268
 
273
  echo self::page_preview(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
274
  }
275
 
276
+ /**
277
+ * @return void
278
+ */
279
  public static function preview() {
280
  do_action( 'frm_wp' );
281
+ FrmAppHelper::set_current_screen_and_hook_suffix();
282
 
283
  global $frm_vars;
284
  $frm_vars['preview'] = true;
1721
  * The formidable shortcode
1722
  *
1723
  * @param array $atts The params from the shortcode.
1724
+ * @return string
1725
  */
1726
  public static function get_form_shortcode( $atts ) {
1727
  global $frm_vars;
1735
  array(
1736
  'id' => '',
1737
  'key' => '',
1738
+ 'title' => 'auto',
1739
+ 'description' => 'auto',
1740
  'readonly' => false,
1741
  'entry_id' => false,
1742
  'fields' => array(),
1750
  return self::show_form( $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'], $shortcode_atts['description'], $atts );
1751
  }
1752
 
1753
+ /**
1754
+ * @since 5.2.01
1755
+ *
1756
+ * @param string|int|false $id
1757
+ * @param string|false $key
1758
+ * @return stdClass|false
1759
+ */
1760
+ private static function maybe_get_form_by_id_or_key( $id, $key ) {
1761
+ if ( ! $id ) {
1762
  $id = $key;
1763
  }
1764
+ return self::maybe_get_form_to_show( $id );
1765
+ }
1766
+
1767
+ /**
1768
+ * @param string|int|false $id
1769
+ * @param string|false $key
1770
+ * @param string|int|bool $title may be 'auto', true, false, 'true', 'false', 'yes', '1', 1, '0', 0.
1771
+ * @param string|int|bool $description may be 'auto', true, false, 'true', 'false', 'yes', '1', 1, '0', 0.
1772
+ * @param array $atts
1773
+ * @return string
1774
+ */
1775
+ public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) {
1776
+ $form = self::maybe_get_form_by_id_or_key( $id, $key );
1777
 
 
1778
  if ( ! $form ) {
1779
  return __( 'Please select a valid form', 'formidable' );
1780
  }
1781
 
1782
+ if ( 'auto' === $title ) {
1783
+ $title = ! empty( $form->options['show_title'] );
1784
+ }
1785
+
1786
+ if ( 'auto' === $description ) {
1787
+ $description = ! empty( $form->options['show_description'] );
1788
+ }
1789
+
1790
  FrmAppController::maybe_update_styles();
1791
 
1792
  add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
1817
  return $form;
1818
  }
1819
 
1820
+ /**
1821
+ * @param string|int|false $id
1822
+ * @return stdClass|false
1823
+ */
1824
  private static function maybe_get_form_to_show( $id ) {
1825
  $form = false;
1826
 
1827
+ if ( ! empty( $id ) ) { // form id or key is set
1828
  $form = FrmForm::getOne( $id );
1829
+ if ( ! $form || $form->parent_form_id || $form->status === 'trash' ) {
1830
  $form = false;
1831
  }
1832
  }
classes/controllers/FrmStylesController.php CHANGED
@@ -326,6 +326,9 @@ class FrmStylesController {
326
  include FrmAppHelper::plugin_path() . '/classes/views/styles/custom_css.php';
327
  }
328
 
 
 
 
329
  public static function save_css() {
330
  $frm_style = new FrmStyle();
331
 
@@ -337,7 +340,7 @@ class FrmStylesController {
337
  $message = __( 'Your styling settings have been saved.', 'formidable' );
338
  }
339
 
340
- return self::custom_css( $message );
341
  }
342
 
343
  public static function route() {
326
  include FrmAppHelper::plugin_path() . '/classes/views/styles/custom_css.php';
327
  }
328
 
329
+ /**
330
+ * @return void
331
+ */
332
  public static function save_css() {
333
  $frm_style = new FrmStyle();
334
 
340
  $message = __( 'Your styling settings have been saved.', 'formidable' );
341
  }
342
 
343
+ self::custom_css( $message );
344
  }
345
 
346
  public static function route() {
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '5.2';
15
 
16
  /**
17
  * @since 1.07.02
@@ -2562,9 +2562,13 @@ class FrmAppHelper {
2562
  /**
2563
  * Decode a JSON string.
2564
  * Do not switch shortcodes like [24] to array unless intentional ie XML values.
 
 
 
 
2565
  */
2566
  public static function maybe_json_decode( $string, $single_to_array = true ) {
2567
- if ( is_array( $string ) ) {
2568
  return $string;
2569
  }
2570
 
@@ -3285,7 +3289,7 @@ class FrmAppHelper {
3285
  $params['medium'] = $plugin;
3286
  }
3287
  } else {
3288
- $params['requires'] = FrmFormsHelper::get_plan_required( $link, false );
3289
  }
3290
 
3291
  return $params;
@@ -3307,6 +3311,16 @@ class FrmAppHelper {
3307
  return is_string( $text ) && '' !== $text && ! preg_match( '/[^A-Fa-f0-9]/', $text );
3308
  }
3309
 
 
 
 
 
 
 
 
 
 
 
3310
  /**
3311
  * @since 4.07
3312
  * @deprecated 4.09.01
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '5.2.01';
15
 
16
  /**
17
  * @since 1.07.02
2562
  /**
2563
  * Decode a JSON string.
2564
  * Do not switch shortcodes like [24] to array unless intentional ie XML values.
2565
+ *
2566
+ * @param mixed $string
2567
+ * @param bool $single_to_array
2568
+ * @return mixed
2569
  */
2570
  public static function maybe_json_decode( $string, $single_to_array = true ) {
2571
+ if ( is_array( $string ) || is_null( $string ) ) {
2572
  return $string;
2573
  }
2574
 
3289
  $params['medium'] = $plugin;
3290
  }
3291
  } else {
3292
+ $params['requires'] = FrmFormsHelper::get_plan_required( $link );
3293
  }
3294
 
3295
  return $params;
3311
  return is_string( $text ) && '' !== $text && ! preg_match( '/[^A-Fa-f0-9]/', $text );
3312
  }
3313
 
3314
+ /**
3315
+ * Set the current screen to avoid undefined notices.
3316
+ *
3317
+ * @since 5.2.01
3318
+ */
3319
+ public static function set_current_screen_and_hook_suffix() {
3320
+ global $hook_suffix;
3321
+ set_current_screen();
3322
+ }
3323
+
3324
  /**
3325
  * @since 4.07
3326
  * @deprecated 4.09.01
classes/helpers/FrmFormsHelper.php CHANGED
@@ -356,25 +356,30 @@ class FrmFormsHelper {
356
  return $values;
357
  }
358
 
 
 
 
359
  public static function get_default_opts() {
360
  $frm_settings = FrmAppHelper::get_settings();
361
 
362
  return array(
363
- 'submit_value' => $frm_settings->submit_value,
364
- 'success_action' => 'message',
365
- 'success_msg' => $frm_settings->success_msg,
366
- 'show_form' => 0,
367
- 'akismet' => '',
368
- 'honeypot' => 'basic',
369
- 'antispam' => 0,
370
- 'no_save' => 0,
371
- 'ajax_load' => 0,
372
- 'js_validate' => 0,
373
- 'form_class' => '',
374
- 'custom_style' => 1,
375
- 'before_html' => self::get_default_html( 'before' ),
376
- 'after_html' => '',
377
- 'submit_html' => self::get_default_html( 'submit' ),
 
 
378
  );
379
  }
380
 
356
  return $values;
357
  }
358
 
359
+ /**
360
+ * @return array
361
+ */
362
  public static function get_default_opts() {
363
  $frm_settings = FrmAppHelper::get_settings();
364
 
365
  return array(
366
+ 'submit_value' => $frm_settings->submit_value,
367
+ 'success_action' => 'message',
368
+ 'success_msg' => $frm_settings->success_msg,
369
+ 'show_form' => 0,
370
+ 'akismet' => '',
371
+ 'honeypot' => 'basic',
372
+ 'antispam' => 0,
373
+ 'no_save' => 0,
374
+ 'ajax_load' => 0,
375
+ 'js_validate' => 0,
376
+ 'form_class' => '',
377
+ 'custom_style' => 1,
378
+ 'before_html' => self::get_default_html( 'before' ),
379
+ 'after_html' => '',
380
+ 'submit_html' => self::get_default_html( 'submit' ),
381
+ 'show_title' => 0,
382
+ 'show_description' => 0,
383
  );
384
  }
385
 
classes/helpers/FrmListHelper.php CHANGED
@@ -1148,14 +1148,6 @@ class FrmListHelper {
1148
 
1149
  if ( 'cb' === $column_name ) {
1150
  echo '<th scope="row" class="check-column"></th>';
1151
- } elseif ( method_exists( $this, '_column_' . $column_name ) ) {
1152
- echo call_user_func( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
1153
- array( $this, '_column_' . $column_name ),
1154
- $item,
1155
- $classes,
1156
- $data,
1157
- $primary
1158
- );
1159
  } else {
1160
  echo '<td ';
1161
  FrmAppHelper::array_to_html_params( $params, true );
1148
 
1149
  if ( 'cb' === $column_name ) {
1150
  echo '<th scope="row" class="check-column"></th>';
 
 
 
 
 
 
 
 
1151
  } else {
1152
  echo '<td ';
1153
  FrmAppHelper::array_to_html_params( $params, true );
classes/models/FrmEntryFormatter.php CHANGED
@@ -701,7 +701,7 @@ class FrmEntryFormatter {
701
  *
702
  * @since 2.04
703
  *
704
- * @param FrmProFieldValue $field_value
705
  * @param string $content
706
  */
707
  protected function add_standard_row( $field_value, &$content ) {
701
  *
702
  * @since 2.04
703
  *
704
+ * @param FrmFieldValue $field_value
705
  * @param string $content
706
  */
707
  protected function add_standard_row( $field_value, &$content ) {
classes/models/FrmFormAction.php CHANGED
@@ -403,7 +403,7 @@ class FrmFormAction {
403
  $instance = apply_filters( 'frm_action_update_callback', $instance, $new_instance, $old_instance, $this );
404
 
405
  $instance['post_content'] = apply_filters( 'frm_before_save_action', $instance['post_content'], $instance, $new_instance, $old_instance, $this );
406
- $instance['post_content'] = apply_filters( 'frm_before_save_' . $this->id_base . '_action', $new_instance['post_content'], $instance, $new_instance, $old_instance, $this );
407
 
408
  if ( false !== $instance ) {
409
  $all_instances[ $number ] = $instance;
403
  $instance = apply_filters( 'frm_action_update_callback', $instance, $new_instance, $old_instance, $this );
404
 
405
  $instance['post_content'] = apply_filters( 'frm_before_save_action', $instance['post_content'], $instance, $new_instance, $old_instance, $this );
406
+ $instance['post_content'] = apply_filters( 'frm_before_save_' . $this->id_base . '_action', $instance['post_content'], $instance, $new_instance, $old_instance, $this );
407
 
408
  if ( false !== $instance ) {
409
  $all_instances[ $number ] = $instance;
classes/views/frm-entries/direct.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  <?php FrmFormsController::maybe_load_css( $form, 1, false ); ?>
14
  </head>
15
  <body class="frm_preview_page">
16
- <?php echo FrmFormsController::show_form( $form->id, '', true, true ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
17
  <?php wp_footer(); ?>
18
  </body>
19
  </html>
13
  <?php FrmFormsController::maybe_load_css( $form, 1, false ); ?>
14
  </head>
15
  <body class="frm_preview_page">
16
+ <?php echo FrmFormsController::show_form( $form->id, '', 'auto', 'auto' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
17
  <?php wp_footer(); ?>
18
  </body>
19
  </html>
classes/views/frm-forms/settings-advanced.php CHANGED
@@ -29,6 +29,20 @@ if ( ! defined( 'ABSPATH' ) ) {
29
  <textarea id="frm_form_description" name="description" cols="50" rows="4"><?php echo FrmAppHelper::esc_textarea( $values['description'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></textarea>
30
  </p>
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  <?php if ( ! $values['is_template'] ) { ?>
33
  <?php $first_h3 = ''; ?>
34
 
29
  <textarea id="frm_form_description" name="description" cols="50" rows="4"><?php echo FrmAppHelper::esc_textarea( $values['description'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></textarea>
30
  </p>
31
 
32
+ <p class="frm8 frm_form_field">
33
+ <label for="show_title" class="frm_inline_block">
34
+ <input type="checkbox" name="options[show_title]" id="show_title" value="1" <?php checked( $values['show_title'], 1 ); ?> />
35
+ <?php esc_html_e( 'Show the form title', 'formidable' ); ?>
36
+ </label>
37
+ </p>
38
+
39
+ <p class="frm8 frm_form_field">
40
+ <label for="show_description" class="frm_inline_block">
41
+ <input type="checkbox" name="options[show_description]" id="show_description" value="1" <?php checked( $values['show_description'], 1 ); ?> />
42
+ <?php esc_html_e( 'Show the form description', 'formidable' ); ?>
43
+ </label>
44
+ </p>
45
+
46
  <?php if ( ! $values['is_template'] ) { ?>
47
  <?php $first_h3 = ''; ?>
48
 
css/custom_theme.css.php CHANGED
@@ -791,7 +791,7 @@ a.frm_save_draft{
791
  appearance: none;
792
  background-color: var(--bg-color);
793
  flex: none;
794
- display:inline-block;
795
  margin: 0 5px 0 0;
796
  color: var(--border-color);
797
  width: 18px;
791
  appearance: none;
792
  background-color: var(--bg-color);
793
  flex: none;
794
+ display:inline-block !important;
795
  margin: 0 5px 0 0;
796
  color: var(--border-color);
797
  width: 18px;
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.2
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.2.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
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.2\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: 2022-02-10T13:16:37+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"
@@ -137,7 +137,7 @@ msgstr ""
137
 
138
  #: classes/controllers/FrmAddonsController.php:26
139
  #: classes/controllers/FrmAddonsController.php:27
140
- #: classes/helpers/FrmFormsHelper.php:1343
141
  #: classes/views/frm-fields/back-end/smart-values.php:16
142
  #: classes/views/shared/admin-header.php:33
143
  msgid "Upgrade"
@@ -152,7 +152,7 @@ msgid "Installed"
152
  msgstr ""
153
 
154
  #: classes/controllers/FrmAddonsController.php:630
155
- #: classes/helpers/FrmAppHelper.php:2752
156
  msgid "Active"
157
  msgstr ""
158
 
@@ -160,24 +160,24 @@ msgstr ""
160
  msgid "Not Installed"
161
  msgstr ""
162
 
163
- #: classes/controllers/FrmAddonsController.php:934
164
  msgid "Sorry, your site requires FTP authentication. Please download plugins from FormidableForms.com and install them manually."
165
  msgstr ""
166
 
167
- #: classes/controllers/FrmAddonsController.php:999
168
  msgid "Your plugin has been activated. Would you like to save and reload the page now?"
169
  msgstr ""
170
 
171
- #: classes/controllers/FrmAddonsController.php:1003
172
  msgid "Your plugin has been activated. Please reload the page to see more options."
173
  msgstr ""
174
 
175
- #: classes/controllers/FrmAddonsController.php:1108
176
  msgid "Could not install an upgrade. Please download from formidableforms.com and install manually."
177
  msgstr ""
178
 
179
- #: classes/controllers/FrmAddonsController.php:1193
180
- #: classes/controllers/FrmAddonsController.php:1194
181
  #: classes/controllers/FrmWelcomeController.php:141
182
  #: classes/views/frm-forms/new-form-overlay.php:112
183
  #: classes/views/shared/reports-info.php:24
@@ -198,7 +198,7 @@ msgstr ""
198
  #: classes/controllers/FrmAppController.php:168
199
  #: classes/controllers/FrmEntriesController.php:11
200
  #: classes/controllers/FrmEntriesController.php:100
201
- #: classes/controllers/FrmFormsController.php:789
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:1359
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:666
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:799
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:1008
352
  msgid "Form was successfully updated."
353
  msgstr ""
354
 
@@ -370,85 +370,85 @@ msgstr ""
370
  msgid "There was a problem creating the new template."
371
  msgstr ""
372
 
373
- #: classes/controllers/FrmFormsController.php:364
374
  msgid "Form Preview"
375
  msgstr ""
376
 
377
  #. translators: %1$s: Number of forms
378
- #: classes/controllers/FrmFormsController.php:409
379
- #: classes/controllers/FrmFormsController.php:470
380
  msgid "%1$s form restored from the Trash."
381
  msgid_plural "%1$s forms restored from the Trash."
382
  msgstr[0] ""
383
  msgstr[1] ""
384
 
385
  #. translators: %1$s: Number of forms, %2$s: Start link HTML, %3$s: End link HTML
386
- #: classes/controllers/FrmFormsController.php:473
387
- #: classes/controllers/FrmFormsController.php:498
388
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
389
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
390
  msgstr[0] ""
391
  msgstr[1] ""
392
 
393
  #. translators: %1$s: Number of forms
394
- #: classes/controllers/FrmFormsController.php:521
395
  msgid "%1$s Form Permanently Deleted"
396
  msgid_plural "%1$s Forms Permanently Deleted"
397
  msgstr[0] ""
398
  msgstr[1] ""
399
 
400
  #. translators: %1$s: Number of forms
401
- #: classes/controllers/FrmFormsController.php:538
402
- #: classes/controllers/FrmFormsController.php:555
403
  msgid "%1$s form permanently deleted."
404
  msgid_plural "%1$s forms permanently deleted."
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:667
417
  #: classes/views/frm-forms/insert_form_popup.php:33
418
  msgid "Insert a Form"
419
  msgstr ""
420
 
421
- #: classes/controllers/FrmFormsController.php:720
422
  msgid "Display form title"
423
  msgstr ""
424
 
425
- #: classes/controllers/FrmFormsController.php:724
426
  msgid "Display form description"
427
  msgstr ""
428
 
429
- #: classes/controllers/FrmFormsController.php:728
430
  msgid "Minimize form HTML"
431
  msgstr ""
432
 
433
- #: classes/controllers/FrmFormsController.php:784
434
  #: classes/views/frm-forms/new-form-overlay.php:46
435
  msgid "Template Name"
436
  msgstr ""
437
 
438
- #: classes/controllers/FrmFormsController.php:785
439
  #: classes/views/xml/import_form.php:120
440
  msgid "Type"
441
  msgstr ""
442
 
443
- #: classes/controllers/FrmFormsController.php:786
444
- #: classes/controllers/FrmFormsController.php:790
445
  #: classes/helpers/FrmCSVExportHelper.php:349
446
  #: classes/views/shared/mb_adv_info.php:98
447
  msgid "Key"
448
  msgstr ""
449
 
450
- #: classes/controllers/FrmFormsController.php:788
451
- #: classes/controllers/FrmStylesController.php:398
452
  #: classes/views/frm-forms/settings-advanced.php:13
453
  #: classes/views/styles/manage.php:39
454
  #: classes/views/styles/_sample_form.php:19
@@ -456,201 +456,201 @@ msgstr ""
456
  msgid "Form Title"
457
  msgstr ""
458
 
459
- #: classes/controllers/FrmFormsController.php:791
460
  msgid "Actions"
461
  msgstr ""
462
 
463
- #: classes/controllers/FrmFormsController.php:794
464
  #: classes/models/FrmField.php:87
465
  msgid "Date"
466
  msgstr ""
467
 
468
- #: classes/controllers/FrmFormsController.php:914
469
- #: classes/helpers/FrmFormsHelper.php:1286
470
  msgid "My Templates"
471
  msgstr ""
472
 
473
- #: classes/controllers/FrmFormsController.php:973
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:978
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:1010
483
  msgid "Template was successfully updated."
484
  msgstr ""
485
 
486
- #: classes/controllers/FrmFormsController.php:1084
487
- #: classes/controllers/FrmStylesController.php:397
488
  msgid "General"
489
  msgstr ""
490
 
491
- #: classes/controllers/FrmFormsController.php:1085
492
  msgid "General Form Settings"
493
  msgstr ""
494
 
495
- #: classes/controllers/FrmFormsController.php:1090
496
  msgid "Actions & Notifications"
497
  msgstr ""
498
 
499
- #: classes/controllers/FrmFormsController.php:1096
500
- #: classes/controllers/FrmFormsController.php:1101
501
  msgid "Form Permissions"
502
  msgstr ""
503
 
504
- #: classes/controllers/FrmFormsController.php:1102
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:1106
509
  msgid "Form Scheduling"
510
  msgstr ""
511
 
512
- #: classes/controllers/FrmFormsController.php:1111
513
  msgid "Form scheduling settings"
514
  msgstr ""
515
 
516
- #: classes/controllers/FrmFormsController.php:1115
517
  msgid "Styling & Buttons"
518
  msgstr ""
519
 
520
- #: classes/controllers/FrmFormsController.php:1121
521
  msgid "Form Landing Page"
522
  msgstr ""
523
 
524
- #: classes/controllers/FrmFormsController.php:1127
525
- #: classes/controllers/FrmFormsController.php:1133
526
  msgid "Conversational Forms"
527
  msgstr ""
528
 
529
- #: classes/controllers/FrmFormsController.php:1134
530
  msgid "Ask one question at a time for automated conversations."
531
  msgstr ""
532
 
533
- #: classes/controllers/FrmFormsController.php:1139
534
  msgid "Customize HTML"
535
  msgstr ""
536
 
537
- #: classes/controllers/FrmFormsController.php:1275
538
  msgid "Customize field values with the following parameters."
539
  msgstr ""
540
 
541
- #: classes/controllers/FrmFormsController.php:1312
542
  msgid "Separator"
543
  msgstr ""
544
 
545
- #: classes/controllers/FrmFormsController.php:1313
546
  msgid "Use a different separator for checkbox fields"
547
  msgstr ""
548
 
549
- #: classes/controllers/FrmFormsController.php:1316
550
  msgid "Date Format"
551
  msgstr ""
552
 
553
- #: classes/controllers/FrmFormsController.php:1319
554
  #: classes/views/frm-fields/back-end/settings.php:27
555
  msgid "Field Label"
556
  msgstr ""
557
 
558
- #: classes/controllers/FrmFormsController.php:1322
559
  msgid "No Auto P"
560
  msgstr ""
561
 
562
- #: classes/controllers/FrmFormsController.php:1323
563
  msgid "Do not automatically add any paragraphs or line breaks"
564
  msgstr ""
565
 
566
- #: classes/controllers/FrmFormsController.php:1338
567
  #: classes/models/FrmField.php:62
568
  msgid "User ID"
569
  msgstr ""
570
 
571
- #: classes/controllers/FrmFormsController.php:1339
572
  msgid "First Name"
573
  msgstr ""
574
 
575
- #: classes/controllers/FrmFormsController.php:1340
576
  msgid "Last Name"
577
  msgstr ""
578
 
579
- #: classes/controllers/FrmFormsController.php:1341
580
  msgid "Display Name"
581
  msgstr ""
582
 
583
- #: classes/controllers/FrmFormsController.php:1342
584
  msgid "User Login"
585
  msgstr ""
586
 
587
- #: classes/controllers/FrmFormsController.php:1343
588
  #: classes/models/FrmField.php:34
589
  msgid "Email"
590
  msgstr ""
591
 
592
- #: classes/controllers/FrmFormsController.php:1344
593
  msgid "Avatar"
594
  msgstr ""
595
 
596
- #: classes/controllers/FrmFormsController.php:1345
597
  msgid "Author Link"
598
  msgstr ""
599
 
600
- #: classes/controllers/FrmFormsController.php:1358
601
  #: classes/views/frm-entries/sidebar-shared.php:51
602
  msgid "Entry ID"
603
  msgstr ""
604
 
605
- #: classes/controllers/FrmFormsController.php:1360
606
  msgid "Post ID"
607
  msgstr ""
608
 
609
- #: classes/controllers/FrmFormsController.php:1361
610
  msgid "User IP"
611
  msgstr ""
612
 
613
- #: classes/controllers/FrmFormsController.php:1362
614
  msgid "Entry created"
615
  msgstr ""
616
 
617
- #: classes/controllers/FrmFormsController.php:1363
618
  msgid "Entry updated"
619
  msgstr ""
620
 
621
- #: classes/controllers/FrmFormsController.php:1365
622
  msgid "Site URL"
623
  msgstr ""
624
 
625
- #: classes/controllers/FrmFormsController.php:1366
626
  msgid "Site Name"
627
  msgstr ""
628
 
629
- #: classes/controllers/FrmFormsController.php:1374
630
  msgid "Default Msg"
631
  msgstr ""
632
 
633
- #: classes/controllers/FrmFormsController.php:1375
634
  msgid "Default HTML"
635
  msgstr ""
636
 
637
- #: classes/controllers/FrmFormsController.php:1376
638
  msgid "Default Plain"
639
  msgstr ""
640
 
641
- #: classes/controllers/FrmFormsController.php:1479
642
  msgid "No forms were specified"
643
  msgstr ""
644
 
645
- #: classes/controllers/FrmFormsController.php:1591
646
  msgid "Abnormal HTML characters prevented your form from saving correctly"
647
  msgstr ""
648
 
649
- #: classes/controllers/FrmFormsController.php:1706
650
  #: classes/helpers/FrmFormsHelper.php:57
651
  #: classes/helpers/FrmFormsHelper.php:112
652
  #: classes/helpers/FrmFormsHelper.php:166
653
- #: classes/helpers/FrmFormsHelper.php:1058
654
  #: classes/helpers/FrmFormsListHelper.php:313
655
  #: classes/views/frm-forms/create-template-from-an-existing-form.php:25
656
  #: classes/views/styles/manage.php:59
@@ -659,23 +659,23 @@ msgstr ""
659
  msgid "(no title)"
660
  msgstr ""
661
 
662
- #: classes/controllers/FrmFormsController.php:1752
663
- #: classes/controllers/FrmFormsController.php:1766
664
  msgid "Please select a valid form"
665
  msgstr ""
666
 
667
- #: classes/controllers/FrmFormsController.php:1988
668
  msgid "Please wait while you are redirected."
669
  msgstr ""
670
 
671
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
672
- #: classes/controllers/FrmFormsController.php:2023
673
  msgid "%1$sClick here%2$s if you are not automatically redirected."
674
  msgstr ""
675
 
676
- #: classes/controllers/FrmFormsController.php:2347
677
  #: classes/helpers/FrmAppHelper.php:1341
678
- #: classes/views/frm-forms/settings-advanced.php:79
679
  msgid "Select a Page"
680
  msgstr ""
681
 
@@ -731,7 +731,7 @@ msgid "Plugin Licenses"
731
  msgstr ""
732
 
733
  #: classes/controllers/FrmSettingsController.php:104
734
- #: classes/views/frm-forms/settings-advanced.php:162
735
  msgid "Miscellaneous"
736
  msgstr ""
737
 
@@ -873,7 +873,7 @@ msgid "Install WP Mail SMTP"
873
  msgstr ""
874
 
875
  #: classes/controllers/FrmSMTPController.php:305
876
- #: classes/helpers/FrmAppHelper.php:2751
877
  #: classes/helpers/FrmFormMigratorsHelper.php:131
878
  #: classes/views/shared/upgrade_overlay.php:32
879
  msgid "Install"
@@ -932,7 +932,7 @@ msgid "Edit Style"
932
  msgstr ""
933
 
934
  #: classes/controllers/FrmStylesController.php:229
935
- #: classes/controllers/FrmStylesController.php:337
936
  msgid "Your styling settings have been saved."
937
  msgstr ""
938
 
@@ -940,43 +940,43 @@ msgstr ""
940
  msgid "Your form styles have been saved."
941
  msgstr ""
942
 
943
- #: classes/controllers/FrmStylesController.php:399
944
- #: classes/helpers/FrmFormsHelper.php:517
945
  #: classes/views/frm-forms/new-form-overlay.php:53
946
  #: classes/views/frm-forms/new-form-overlay.php:54
947
  #: classes/views/frm-forms/settings-advanced.php:27
948
  msgid "Form Description"
949
  msgstr ""
950
 
951
- #: classes/controllers/FrmStylesController.php:400
952
  msgid "Field Labels"
953
  msgstr ""
954
 
955
- #: classes/controllers/FrmStylesController.php:401
956
- #: classes/helpers/FrmFormsHelper.php:477
957
  #: classes/views/frm-fields/back-end/field-description.php:8
958
  msgid "Field Description"
959
  msgstr ""
960
 
961
- #: classes/controllers/FrmStylesController.php:402
962
  msgid "Field Colors"
963
  msgstr ""
964
 
965
- #: classes/controllers/FrmStylesController.php:403
966
  msgid "Field Settings"
967
  msgstr ""
968
 
969
- #: classes/controllers/FrmStylesController.php:404
970
  msgid "Check Box & Radio Fields"
971
  msgstr ""
972
 
973
- #: classes/controllers/FrmStylesController.php:405
974
  #: classes/helpers/FrmFieldsHelper.php:1934
975
  #: classes/views/frm-forms/settings-buttons.php:46
976
  msgid "Buttons"
977
  msgstr ""
978
 
979
- #: classes/controllers/FrmStylesController.php:406
980
  msgid "Form Messages"
981
  msgstr ""
982
 
@@ -1167,71 +1167,71 @@ msgstr ""
1167
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1168
  msgstr ""
1169
 
1170
- #: classes/helpers/FrmAppHelper.php:2654
1171
- #: classes/helpers/FrmAppHelper.php:2733
1172
  msgid "Please wait while your site updates."
1173
  msgstr ""
1174
 
1175
- #: classes/helpers/FrmAppHelper.php:2655
1176
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1177
  msgstr ""
1178
 
1179
- #: classes/helpers/FrmAppHelper.php:2658
1180
- #: classes/helpers/FrmAppHelper.php:2687
1181
  msgid "Loading&hellip;"
1182
  msgstr ""
1183
 
1184
- #: classes/helpers/FrmAppHelper.php:2688
1185
  msgid "Remove"
1186
  msgstr ""
1187
 
1188
- #: classes/helpers/FrmAppHelper.php:2691
1189
  #: classes/helpers/FrmCSVExportHelper.php:348
1190
  #: classes/views/shared/mb_adv_info.php:95
1191
  msgid "ID"
1192
  msgstr ""
1193
 
1194
- #: classes/helpers/FrmAppHelper.php:2692
1195
  msgid "No results match"
1196
  msgstr ""
1197
 
1198
- #: classes/helpers/FrmAppHelper.php:2693
1199
  msgid "That file looks like Spam."
1200
  msgstr ""
1201
 
1202
- #: classes/helpers/FrmAppHelper.php:2694
1203
  msgid "There is an error in the calculation in the field with key"
1204
  msgstr ""
1205
 
1206
- #: classes/helpers/FrmAppHelper.php:2695
1207
  msgid "Please complete the preceding required fields before uploading a file."
1208
  msgstr ""
1209
 
1210
- #: classes/helpers/FrmAppHelper.php:2706
1211
  msgid "(Click to add description)"
1212
  msgstr ""
1213
 
1214
- #: classes/helpers/FrmAppHelper.php:2707
1215
  msgid "(Blank)"
1216
  msgstr ""
1217
 
1218
- #: classes/helpers/FrmAppHelper.php:2708
1219
  msgid "(no label)"
1220
  msgstr ""
1221
 
1222
- #: classes/helpers/FrmAppHelper.php:2709
1223
  msgid "Saving"
1224
  msgstr ""
1225
 
1226
- #: classes/helpers/FrmAppHelper.php:2710
1227
  msgid "Saved"
1228
  msgstr ""
1229
 
1230
- #: classes/helpers/FrmAppHelper.php:2711
1231
  msgid "OK"
1232
  msgstr ""
1233
 
1234
- #: classes/helpers/FrmAppHelper.php:2712
1235
  #: classes/views/frm-forms/new-form-overlay.php:33
1236
  #: classes/views/frm-forms/new-form-overlay.php:100
1237
  #: classes/views/frm-forms/new-form-overlay.php:109
@@ -1245,424 +1245,424 @@ msgstr ""
1245
  msgid "Cancel"
1246
  msgstr ""
1247
 
1248
- #: classes/helpers/FrmAppHelper.php:2713
1249
  #: classes/views/frm-fields/back-end/settings.php:280
1250
  msgid "Default"
1251
  msgstr ""
1252
 
1253
- #: classes/helpers/FrmAppHelper.php:2714
1254
  msgid "Clear default value when typing"
1255
  msgstr ""
1256
 
1257
- #: classes/helpers/FrmAppHelper.php:2715
1258
  msgid "Do not clear default value when typing"
1259
  msgstr ""
1260
 
1261
- #: classes/helpers/FrmAppHelper.php:2716
1262
  msgid "Default value will pass form validation"
1263
  msgstr ""
1264
 
1265
- #: classes/helpers/FrmAppHelper.php:2717
1266
  msgid "Default value will NOT pass form validation"
1267
  msgstr ""
1268
 
1269
- #: classes/helpers/FrmAppHelper.php:2718
1270
  #: classes/helpers/FrmListHelper.php:412
1271
  #: js/formidable_admin.js:4079
1272
  msgid "Heads up"
1273
  msgstr ""
1274
 
1275
- #: classes/helpers/FrmAppHelper.php:2719
1276
  #: classes/views/shared/confirm-overlay.php:15
1277
  #: classes/views/shared/info-overlay.php:15
1278
  msgid "Are you sure?"
1279
  msgstr ""
1280
 
1281
- #: classes/helpers/FrmAppHelper.php:2720
1282
  msgid "Are you sure you want to delete this field and all data associated with it?"
1283
  msgstr ""
1284
 
1285
- #: classes/helpers/FrmAppHelper.php:2721
1286
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1287
  msgstr ""
1288
 
1289
- #: classes/helpers/FrmAppHelper.php:2722
1290
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1291
  msgstr ""
1292
 
1293
- #: classes/helpers/FrmAppHelper.php:2724
1294
  #: classes/helpers/FrmFieldsHelper.php:284
1295
  msgid "The entered values do not match"
1296
  msgstr ""
1297
 
1298
- #: classes/helpers/FrmAppHelper.php:2725
1299
  msgid "Enter Email"
1300
  msgstr ""
1301
 
1302
- #: classes/helpers/FrmAppHelper.php:2726
1303
  msgid "Confirm Email"
1304
  msgstr ""
1305
 
1306
- #: classes/helpers/FrmAppHelper.php:2727
1307
  #: classes/views/shared/mb_adv_info.php:166
1308
  msgid "Conditional content here"
1309
  msgstr ""
1310
 
1311
- #: classes/helpers/FrmAppHelper.php:2728
1312
  #: classes/helpers/FrmFieldsHelper.php:456
1313
  #: classes/helpers/FrmFieldsHelper.php:457
1314
  msgid "New Option"
1315
  msgstr ""
1316
 
1317
- #: classes/helpers/FrmAppHelper.php:2729
1318
  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."
1319
  msgstr ""
1320
 
1321
- #: classes/helpers/FrmAppHelper.php:2730
1322
  msgid "Enter Password"
1323
  msgstr ""
1324
 
1325
- #: classes/helpers/FrmAppHelper.php:2731
1326
  msgid "Confirm Password"
1327
  msgstr ""
1328
 
1329
- #: classes/helpers/FrmAppHelper.php:2732
1330
  msgid "Import Complete"
1331
  msgstr ""
1332
 
1333
- #: classes/helpers/FrmAppHelper.php:2734
1334
  msgid "Warning: There is no way to retrieve unsaved entries."
1335
  msgstr ""
1336
 
1337
- #: classes/helpers/FrmAppHelper.php:2735
1338
  msgid "Private"
1339
  msgstr ""
1340
 
1341
- #: classes/helpers/FrmAppHelper.php:2738
1342
  msgid "No new licenses were found"
1343
  msgstr ""
1344
 
1345
- #: classes/helpers/FrmAppHelper.php:2739
1346
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1347
  msgstr ""
1348
 
1349
- #: classes/helpers/FrmAppHelper.php:2740
1350
  msgid "This calculation may have shortcodes that work in Views but not forms."
1351
  msgstr ""
1352
 
1353
- #: classes/helpers/FrmAppHelper.php:2741
1354
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1355
  msgstr ""
1356
 
1357
- #: classes/helpers/FrmAppHelper.php:2742
1358
  msgid "This form action is limited to one per form. Please edit the existing form action."
1359
  msgstr ""
1360
 
1361
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1362
- #: classes/helpers/FrmAppHelper.php:2745
1363
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1364
  msgstr ""
1365
 
1366
  #. 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.
1367
- #: classes/helpers/FrmAppHelper.php:2747
1368
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1369
  msgstr ""
1370
 
1371
- #: classes/helpers/FrmAppHelper.php:2748
1372
- #: classes/helpers/FrmFormsHelper.php:1520
1373
  msgid "See the list of reserved words in WordPress."
1374
  msgstr ""
1375
 
1376
- #: classes/helpers/FrmAppHelper.php:2749
1377
  msgid "Please enter a Repeat Limit that is greater than 1."
1378
  msgstr ""
1379
 
1380
- #: classes/helpers/FrmAppHelper.php:2750
1381
  msgid "Please select a limit between 0 and 200."
1382
  msgstr ""
1383
 
1384
- #: classes/helpers/FrmAppHelper.php:2753
1385
  #: classes/views/shared/mb_adv_info.php:113
1386
  #: classes/views/shared/mb_adv_info.php:127
1387
  msgid "Select a Field"
1388
  msgstr ""
1389
 
1390
- #: classes/helpers/FrmAppHelper.php:2754
1391
  #: classes/helpers/FrmListHelper.php:262
1392
  msgid "No items found."
1393
  msgstr ""
1394
 
1395
- #: classes/helpers/FrmAppHelper.php:2782
1396
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1397
  msgstr ""
1398
 
1399
- #: classes/helpers/FrmAppHelper.php:2809
1400
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1401
  msgstr ""
1402
 
1403
- #: classes/helpers/FrmAppHelper.php:2837
1404
  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+."
1405
  msgstr ""
1406
 
1407
- #: classes/helpers/FrmAppHelper.php:2843
1408
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1409
  msgstr ""
1410
 
1411
- #: classes/helpers/FrmAppHelper.php:2857
1412
  msgid "English"
1413
  msgstr ""
1414
 
1415
- #: classes/helpers/FrmAppHelper.php:2858
1416
  msgid "Afrikaans"
1417
  msgstr ""
1418
 
1419
- #: classes/helpers/FrmAppHelper.php:2859
1420
  msgid "Albanian"
1421
  msgstr ""
1422
 
1423
- #: classes/helpers/FrmAppHelper.php:2860
1424
  msgid "Arabic"
1425
  msgstr ""
1426
 
1427
- #: classes/helpers/FrmAppHelper.php:2861
1428
  msgid "Armenian"
1429
  msgstr ""
1430
 
1431
- #: classes/helpers/FrmAppHelper.php:2862
1432
  msgid "Azerbaijani"
1433
  msgstr ""
1434
 
1435
- #: classes/helpers/FrmAppHelper.php:2863
1436
  msgid "Basque"
1437
  msgstr ""
1438
 
1439
- #: classes/helpers/FrmAppHelper.php:2864
1440
  msgid "Bosnian"
1441
  msgstr ""
1442
 
1443
- #: classes/helpers/FrmAppHelper.php:2865
1444
  msgid "Bulgarian"
1445
  msgstr ""
1446
 
1447
- #: classes/helpers/FrmAppHelper.php:2866
1448
  msgid "Catalan"
1449
  msgstr ""
1450
 
1451
- #: classes/helpers/FrmAppHelper.php:2867
1452
  msgid "Chinese Hong Kong"
1453
  msgstr ""
1454
 
1455
- #: classes/helpers/FrmAppHelper.php:2868
1456
  msgid "Chinese Simplified"
1457
  msgstr ""
1458
 
1459
- #: classes/helpers/FrmAppHelper.php:2869
1460
  msgid "Chinese Traditional"
1461
  msgstr ""
1462
 
1463
- #: classes/helpers/FrmAppHelper.php:2870
1464
  msgid "Croatian"
1465
  msgstr ""
1466
 
1467
- #: classes/helpers/FrmAppHelper.php:2871
1468
  msgid "Czech"
1469
  msgstr ""
1470
 
1471
- #: classes/helpers/FrmAppHelper.php:2872
1472
  msgid "Danish"
1473
  msgstr ""
1474
 
1475
- #: classes/helpers/FrmAppHelper.php:2873
1476
  msgid "Dutch"
1477
  msgstr ""
1478
 
1479
- #: classes/helpers/FrmAppHelper.php:2874
1480
  msgid "English/UK"
1481
  msgstr ""
1482
 
1483
- #: classes/helpers/FrmAppHelper.php:2875
1484
  msgid "Esperanto"
1485
  msgstr ""
1486
 
1487
- #: classes/helpers/FrmAppHelper.php:2876
1488
  msgid "Estonian"
1489
  msgstr ""
1490
 
1491
- #: classes/helpers/FrmAppHelper.php:2877
1492
  msgid "Faroese"
1493
  msgstr ""
1494
 
1495
- #: classes/helpers/FrmAppHelper.php:2878
1496
  msgid "Farsi/Persian"
1497
  msgstr ""
1498
 
1499
- #: classes/helpers/FrmAppHelper.php:2879
1500
  msgid "Filipino"
1501
  msgstr ""
1502
 
1503
- #: classes/helpers/FrmAppHelper.php:2880
1504
  msgid "Finnish"
1505
  msgstr ""
1506
 
1507
- #: classes/helpers/FrmAppHelper.php:2881
1508
  msgid "French"
1509
  msgstr ""
1510
 
1511
- #: classes/helpers/FrmAppHelper.php:2882
1512
  msgid "French/Canadian"
1513
  msgstr ""
1514
 
1515
- #: classes/helpers/FrmAppHelper.php:2883
1516
  msgid "French/Swiss"
1517
  msgstr ""
1518
 
1519
- #: classes/helpers/FrmAppHelper.php:2884
1520
  msgid "German"
1521
  msgstr ""
1522
 
1523
- #: classes/helpers/FrmAppHelper.php:2885
1524
  msgid "German/Austria"
1525
  msgstr ""
1526
 
1527
- #: classes/helpers/FrmAppHelper.php:2886
1528
  msgid "German/Switzerland"
1529
  msgstr ""
1530
 
1531
- #: classes/helpers/FrmAppHelper.php:2887
1532
  msgid "Greek"
1533
  msgstr ""
1534
 
1535
- #: classes/helpers/FrmAppHelper.php:2888
1536
- #: classes/helpers/FrmAppHelper.php:2889
1537
  msgid "Hebrew"
1538
  msgstr ""
1539
 
1540
- #: classes/helpers/FrmAppHelper.php:2890
1541
  msgid "Hindi"
1542
  msgstr ""
1543
 
1544
- #: classes/helpers/FrmAppHelper.php:2891
1545
  msgid "Hungarian"
1546
  msgstr ""
1547
 
1548
- #: classes/helpers/FrmAppHelper.php:2892
1549
  msgid "Icelandic"
1550
  msgstr ""
1551
 
1552
- #: classes/helpers/FrmAppHelper.php:2893
1553
  msgid "Indonesian"
1554
  msgstr ""
1555
 
1556
- #: classes/helpers/FrmAppHelper.php:2894
1557
  msgid "Italian"
1558
  msgstr ""
1559
 
1560
- #: classes/helpers/FrmAppHelper.php:2895
1561
  msgid "Japanese"
1562
  msgstr ""
1563
 
1564
- #: classes/helpers/FrmAppHelper.php:2896
1565
  msgid "Korean"
1566
  msgstr ""
1567
 
1568
- #: classes/helpers/FrmAppHelper.php:2897
1569
  msgid "Latvian"
1570
  msgstr ""
1571
 
1572
- #: classes/helpers/FrmAppHelper.php:2898
1573
  msgid "Lithuanian"
1574
  msgstr ""
1575
 
1576
- #: classes/helpers/FrmAppHelper.php:2899
1577
  msgid "Malaysian"
1578
  msgstr ""
1579
 
1580
- #: classes/helpers/FrmAppHelper.php:2900
1581
  msgid "Norwegian"
1582
  msgstr ""
1583
 
1584
- #: classes/helpers/FrmAppHelper.php:2901
1585
  msgid "Polish"
1586
  msgstr ""
1587
 
1588
- #: classes/helpers/FrmAppHelper.php:2902
1589
  msgid "Portuguese"
1590
  msgstr ""
1591
 
1592
- #: classes/helpers/FrmAppHelper.php:2903
1593
  msgid "Portuguese/Brazilian"
1594
  msgstr ""
1595
 
1596
- #: classes/helpers/FrmAppHelper.php:2904
1597
  msgid "Portuguese/Portugal"
1598
  msgstr ""
1599
 
1600
- #: classes/helpers/FrmAppHelper.php:2905
1601
  msgid "Romanian"
1602
  msgstr ""
1603
 
1604
- #: classes/helpers/FrmAppHelper.php:2906
1605
  msgid "Russian"
1606
  msgstr ""
1607
 
1608
- #: classes/helpers/FrmAppHelper.php:2907
1609
- #: classes/helpers/FrmAppHelper.php:2908
1610
  msgid "Serbian"
1611
  msgstr ""
1612
 
1613
- #: classes/helpers/FrmAppHelper.php:2909
1614
  msgid "Slovak"
1615
  msgstr ""
1616
 
1617
- #: classes/helpers/FrmAppHelper.php:2910
1618
  msgid "Slovenian"
1619
  msgstr ""
1620
 
1621
- #: classes/helpers/FrmAppHelper.php:2911
1622
  msgid "Spanish"
1623
  msgstr ""
1624
 
1625
- #: classes/helpers/FrmAppHelper.php:2912
1626
  msgid "Spanish/Latin America"
1627
  msgstr ""
1628
 
1629
- #: classes/helpers/FrmAppHelper.php:2913
1630
  msgid "Swedish"
1631
  msgstr ""
1632
 
1633
- #: classes/helpers/FrmAppHelper.php:2914
1634
  msgid "Tamil"
1635
  msgstr ""
1636
 
1637
- #: classes/helpers/FrmAppHelper.php:2915
1638
  msgid "Thai"
1639
  msgstr ""
1640
 
1641
- #: classes/helpers/FrmAppHelper.php:2916
1642
  msgid "Turkish"
1643
  msgstr ""
1644
 
1645
- #: classes/helpers/FrmAppHelper.php:2917
1646
  msgid "Ukrainian"
1647
  msgstr ""
1648
 
1649
- #: classes/helpers/FrmAppHelper.php:2918
1650
  msgid "Vietnamese"
1651
  msgstr ""
1652
 
1653
- #: classes/helpers/FrmAppHelper.php:3240
1654
  msgid "Form Landing Pages"
1655
  msgstr ""
1656
 
1657
- #: classes/helpers/FrmAppHelper.php:3241
1658
  msgid "Easily manage a landing page for your form. Upgrade to get form landing pages."
1659
  msgstr ""
1660
 
1661
- #: classes/helpers/FrmAppHelper.php:3328
1662
  msgid "Your account has expired"
1663
  msgstr ""
1664
 
1665
- #: classes/helpers/FrmAppHelper.php:3331
1666
  msgid "Renew Now"
1667
  msgstr ""
1668
 
@@ -1695,7 +1695,7 @@ msgid "Updated By"
1695
  msgstr ""
1696
 
1697
  #: classes/helpers/FrmCSVExportHelper.php:346
1698
- #: classes/helpers/FrmFormsHelper.php:1244
1699
  #: classes/helpers/FrmFormsListHelper.php:340
1700
  msgid "Draft"
1701
  msgstr ""
@@ -1785,7 +1785,7 @@ msgid "Permanently delete this entry?"
1785
  msgstr ""
1786
 
1787
  #: classes/helpers/FrmEntriesListHelper.php:319
1788
- #: classes/helpers/FrmFormsHelper.php:1166
1789
  #: classes/helpers/FrmFormsListHelper.php:133
1790
  #: classes/views/frm-form-actions/form_action.php:25
1791
  #: js/formidable_admin.js:2055
@@ -3051,221 +3051,221 @@ msgstr ""
3051
  msgid "(ID %d)"
3052
  msgstr ""
3053
 
3054
- #: classes/helpers/FrmFormsHelper.php:465
3055
  msgid "Field ID"
3056
  msgstr ""
3057
 
3058
- #: classes/helpers/FrmFormsHelper.php:469
3059
  #: classes/views/frm-fields/back-end/settings.php:304
3060
  msgid "Field Key"
3061
  msgstr ""
3062
 
3063
- #: classes/helpers/FrmFormsHelper.php:473
3064
  msgid "Field Name"
3065
  msgstr ""
3066
 
3067
- #: classes/helpers/FrmFormsHelper.php:481
3068
  #: classes/views/frm-fields/back-end/settings.php:277
3069
  msgid "Label Position"
3070
  msgstr ""
3071
 
3072
- #: classes/helpers/FrmFormsHelper.php:485
3073
  msgid "Required Label"
3074
  msgstr ""
3075
 
3076
- #: classes/helpers/FrmFormsHelper.php:489
3077
  msgid "Input Field"
3078
  msgstr ""
3079
 
3080
- #: classes/helpers/FrmFormsHelper.php:493
3081
  msgid "Single Option"
3082
  msgstr ""
3083
 
3084
- #: classes/helpers/FrmFormsHelper.php:494
3085
  msgid "Show a single radio or checkbox option by replacing 1 with the order of the option"
3086
  msgstr ""
3087
 
3088
- #: classes/helpers/FrmFormsHelper.php:498
3089
  msgid "Hide Option Label"
3090
  msgstr ""
3091
 
3092
- #: classes/helpers/FrmFormsHelper.php:502
3093
  msgid "Required Class"
3094
  msgstr ""
3095
 
3096
- #: classes/helpers/FrmFormsHelper.php:503
3097
  msgid "Add class name if field is required"
3098
  msgstr ""
3099
 
3100
- #: classes/helpers/FrmFormsHelper.php:507
3101
  msgid "Error Class"
3102
  msgstr ""
3103
 
3104
- #: classes/helpers/FrmFormsHelper.php:508
3105
  msgid "Add class name if field has an error on form submit"
3106
  msgstr ""
3107
 
3108
- #: classes/helpers/FrmFormsHelper.php:513
3109
  #: classes/views/frm-forms/new-form-overlay.php:46
3110
  #: classes/views/frm-forms/new-form-overlay.php:47
3111
  msgid "Form Name"
3112
  msgstr ""
3113
 
3114
- #: classes/helpers/FrmFormsHelper.php:521
3115
  #: classes/views/frm-forms/settings-advanced.php:20
3116
  msgid "Form Key"
3117
  msgstr ""
3118
 
3119
- #: classes/helpers/FrmFormsHelper.php:525
3120
  msgid "Delete Entry Link"
3121
  msgstr ""
3122
 
3123
- #: classes/helpers/FrmFormsHelper.php:530
3124
  msgid "Button Label"
3125
  msgstr ""
3126
 
3127
- #: classes/helpers/FrmFormsHelper.php:534
3128
  msgid "Button Hook"
3129
  msgstr ""
3130
 
3131
- #: classes/helpers/FrmFormsHelper.php:1026
3132
  msgid "Create Form from Template"
3133
  msgstr ""
3134
 
3135
- #: classes/helpers/FrmFormsHelper.php:1032
3136
  msgid "Duplicate Form"
3137
  msgstr ""
3138
 
3139
- #: classes/helpers/FrmFormsHelper.php:1153
3140
  msgid "Restore from Trash"
3141
  msgstr ""
3142
 
3143
- #: classes/helpers/FrmFormsHelper.php:1154
3144
  #: classes/helpers/FrmFormsListHelper.php:124
3145
  msgid "Restore"
3146
  msgstr ""
3147
 
3148
- #: classes/helpers/FrmFormsHelper.php:1158
3149
  msgid "Move Form to Trash"
3150
  msgstr ""
3151
 
3152
- #: classes/helpers/FrmFormsHelper.php:1159
3153
- #: classes/helpers/FrmFormsHelper.php:1245
3154
  #: classes/helpers/FrmFormsListHelper.php:158
3155
  msgid "Trash"
3156
  msgstr ""
3157
 
3158
- #: classes/helpers/FrmFormsHelper.php:1162
3159
  msgid "Do you want to move this form to the trash?"
3160
  msgstr ""
3161
 
3162
- #: classes/helpers/FrmFormsHelper.php:1165
3163
  #: classes/helpers/FrmFormsListHelper.php:128
3164
  msgid "Delete Permanently"
3165
  msgstr ""
3166
 
3167
- #: classes/helpers/FrmFormsHelper.php:1168
3168
  msgid "Are you sure you want to delete this form and all its entries?"
3169
  msgstr ""
3170
 
3171
- #: classes/helpers/FrmFormsHelper.php:1170
3172
  msgid "This will permanently delete the form and all its entries. This is irreversible. Are you sure you want to continue?"
3173
  msgstr ""
3174
 
3175
- #: classes/helpers/FrmFormsHelper.php:1181
3176
  #: classes/models/FrmField.php:204
3177
  msgid "Total"
3178
  msgstr ""
3179
 
3180
- #: classes/helpers/FrmFormsHelper.php:1182
3181
  msgid "Add this to a read-only field to display the text in bold without a border or background."
3182
  msgstr ""
3183
 
3184
- #: classes/helpers/FrmFormsHelper.php:1185
3185
  msgid "Big Total"
3186
  msgstr ""
3187
 
3188
- #: classes/helpers/FrmFormsHelper.php:1186
3189
  msgid "Add this to a read-only field to display the text in large, bold text without a border or background."
3190
  msgstr ""
3191
 
3192
- #: classes/helpers/FrmFormsHelper.php:1189
3193
  msgid "Scroll Box"
3194
  msgstr ""
3195
 
3196
- #: classes/helpers/FrmFormsHelper.php:1190
3197
  msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field."
3198
  msgstr ""
3199
 
3200
- #: classes/helpers/FrmFormsHelper.php:1193
3201
  #: classes/models/fields/FrmFieldName.php:36
3202
  msgid "First"
3203
  msgstr ""
3204
 
3205
- #: classes/helpers/FrmFormsHelper.php:1194
3206
  msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
3207
  msgstr ""
3208
 
3209
- #: classes/helpers/FrmFormsHelper.php:1196
3210
  #: classes/helpers/FrmStylesHelper.php:113
3211
  msgid "Right"
3212
  msgstr ""
3213
 
3214
- #: classes/helpers/FrmFormsHelper.php:1197
3215
  msgid "First Grid Row"
3216
  msgstr ""
3217
 
3218
- #: classes/helpers/FrmFormsHelper.php:1198
3219
  msgid "Even Grid Row"
3220
  msgstr ""
3221
 
3222
- #: classes/helpers/FrmFormsHelper.php:1199
3223
  msgid "Odd Grid Row"
3224
  msgstr ""
3225
 
3226
- #: classes/helpers/FrmFormsHelper.php:1201
3227
  msgid "Color Block"
3228
  msgstr ""
3229
 
3230
- #: classes/helpers/FrmFormsHelper.php:1202
3231
  msgid "Add a background color to the field or section."
3232
  msgstr ""
3233
 
3234
- #: classes/helpers/FrmFormsHelper.php:1205
3235
  msgid "Capitalize"
3236
  msgstr ""
3237
 
3238
- #: classes/helpers/FrmFormsHelper.php:1206
3239
  msgid "Automatically capitalize the first letter in each word."
3240
  msgstr ""
3241
 
3242
- #: classes/helpers/FrmFormsHelper.php:1246
3243
  msgid "Published"
3244
  msgstr ""
3245
 
3246
- #: classes/helpers/FrmFormsHelper.php:1330
3247
  msgid "Create Form"
3248
  msgstr ""
3249
 
3250
- #: classes/helpers/FrmFormsHelper.php:1338
3251
  msgid "Renew"
3252
  msgstr ""
3253
 
3254
- #: classes/helpers/FrmFormsHelper.php:1402
3255
  msgid "License plan required:"
3256
  msgstr ""
3257
 
3258
- #: classes/helpers/FrmFormsHelper.php:1519
3259
  msgid "Is this intentional?"
3260
  msgstr ""
3261
 
3262
  #. translators: %s: the name of a single parameter in the redirect URL
3263
- #: classes/helpers/FrmFormsHelper.php:1529
3264
  msgid "The redirect URL is using the parameter \"%s\", which is reserved by WordPress. "
3265
  msgstr ""
3266
 
3267
  #. translators: %s: the names of two or more parameters in the redirect URL, separated by commas
3268
- #: classes/helpers/FrmFormsHelper.php:1535
3269
  msgid "The redirect URL is using the parameters \"%s\", which are reserved by WordPress. "
3270
  msgstr ""
3271
 
@@ -3342,13 +3342,13 @@ msgid "Apply"
3342
  msgstr ""
3343
 
3344
  #: classes/helpers/FrmListHelper.php:491
3345
- #: classes/helpers/FrmListHelper.php:1187
3346
  msgid "Show more details"
3347
  msgstr ""
3348
 
3349
  #. translators: %s: Number of items
3350
  #: classes/helpers/FrmListHelper.php:599
3351
- #: classes/helpers/FrmListHelper.php:1213
3352
  msgid "%s item"
3353
  msgid_plural "%s items"
3354
  msgstr[0] ""
@@ -5265,84 +5265,92 @@ msgstr ""
5265
  msgid "Modify the basic form settings here."
5266
  msgstr ""
5267
 
5268
- #: classes/views/frm-forms/settings-advanced.php:37
 
 
 
 
 
 
 
 
5269
  msgid "Form Settings"
5270
  msgstr ""
5271
 
5272
- #: classes/views/frm-forms/settings-advanced.php:48
5273
- #: classes/views/frm-forms/settings-advanced.php:153
5274
  msgid "On Submit"
5275
  msgstr ""
5276
 
5277
- #: classes/views/frm-forms/settings-advanced.php:49
5278
  msgid "Choose what will happen after the user submits this form."
5279
  msgstr ""
5280
 
5281
- #: classes/views/frm-forms/settings-advanced.php:57
5282
  msgid "Show Message"
5283
  msgstr ""
5284
 
5285
- #: classes/views/frm-forms/settings-advanced.php:60
5286
  msgid "Redirect to URL"
5287
  msgstr ""
5288
 
5289
- #: classes/views/frm-forms/settings-advanced.php:63
5290
  msgid "Show Page Content"
5291
  msgstr ""
5292
 
5293
- #: classes/views/frm-forms/settings-advanced.php:89
5294
  msgid "Show the form with the confirmation message"
5295
  msgstr ""
5296
 
5297
- #: classes/views/frm-forms/settings-advanced.php:96
5298
  msgid "Do not store entries submitted from this form"
5299
  msgstr ""
5300
 
5301
- #: classes/views/frm-forms/settings-advanced.php:106
5302
  msgid "AJAX"
5303
  msgstr ""
5304
 
5305
- #: classes/views/frm-forms/settings-advanced.php:107
5306
  msgid "Make stuff happen in the background without a page refresh"
5307
  msgstr ""
5308
 
5309
- #: classes/views/frm-forms/settings-advanced.php:114
5310
  msgid "Load and save form builder page with AJAX"
5311
  msgstr ""
5312
 
5313
- #: classes/views/frm-forms/settings-advanced.php:115
5314
  msgid "Recommended for long forms."
5315
  msgstr ""
5316
 
5317
- #: classes/views/frm-forms/settings-advanced.php:123
5318
  msgid "AJAX Form Submissions"
5319
  msgstr ""
5320
 
5321
- #: classes/views/frm-forms/settings-advanced.php:123
5322
  msgid "Want to submit forms without reloading the page?"
5323
  msgstr ""
5324
 
5325
- #: classes/views/frm-forms/settings-advanced.php:125
5326
  msgid "Submit this form with AJAX"
5327
  msgstr ""
5328
 
5329
- #: classes/views/frm-forms/settings-advanced.php:126
5330
  msgid "Submit the form without refreshing the page."
5331
  msgstr ""
5332
 
5333
- #: classes/views/frm-forms/settings-advanced.php:135
5334
  msgid "Validate this form with javascript"
5335
  msgstr ""
5336
 
5337
- #: classes/views/frm-forms/settings-advanced.php:136
5338
  msgid "Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields."
5339
  msgstr ""
5340
 
5341
- #: classes/views/frm-forms/settings-advanced.php:147
5342
  msgid "Messages"
5343
  msgstr ""
5344
 
5345
- #: classes/views/frm-forms/settings-advanced.php:148
5346
  msgid "Set up your confirmation messages."
5347
  msgstr ""
5348
 
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.2.01\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-02-22T18:38:01+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"
137
 
138
  #: classes/controllers/FrmAddonsController.php:26
139
  #: classes/controllers/FrmAddonsController.php:27
140
+ #: classes/helpers/FrmFormsHelper.php:1348
141
  #: classes/views/frm-fields/back-end/smart-values.php:16
142
  #: classes/views/shared/admin-header.php:33
143
  msgid "Upgrade"
152
  msgstr ""
153
 
154
  #: classes/controllers/FrmAddonsController.php:630
155
+ #: classes/helpers/FrmAppHelper.php:2756
156
  msgid "Active"
157
  msgstr ""
158
 
160
  msgid "Not Installed"
161
  msgstr ""
162
 
163
+ #: classes/controllers/FrmAddonsController.php:932
164
  msgid "Sorry, your site requires FTP authentication. Please download plugins from FormidableForms.com and install them manually."
165
  msgstr ""
166
 
167
+ #: classes/controllers/FrmAddonsController.php:995
168
  msgid "Your plugin has been activated. Would you like to save and reload the page now?"
169
  msgstr ""
170
 
171
+ #: classes/controllers/FrmAddonsController.php:999
172
  msgid "Your plugin has been activated. Please reload the page to see more options."
173
  msgstr ""
174
 
175
+ #: classes/controllers/FrmAddonsController.php:1104
176
  msgid "Could not install an upgrade. Please download from formidableforms.com and install manually."
177
  msgstr ""
178
 
179
+ #: classes/controllers/FrmAddonsController.php:1189
180
+ #: classes/controllers/FrmAddonsController.php:1190
181
  #: classes/controllers/FrmWelcomeController.php:141
182
  #: classes/views/frm-forms/new-form-overlay.php:112
183
  #: classes/views/shared/reports-info.php:24
198
  #: classes/controllers/FrmAppController.php:168
199
  #: classes/controllers/FrmEntriesController.php:11
200
  #: classes/controllers/FrmEntriesController.php:100
201
+ #: classes/controllers/FrmFormsController.php:796
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:1366
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:673
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:806
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:1015
352
  msgid "Form was successfully updated."
353
  msgstr ""
354
 
370
  msgid "There was a problem creating the new template."
371
  msgstr ""
372
 
373
+ #: classes/controllers/FrmFormsController.php:371
374
  msgid "Form Preview"
375
  msgstr ""
376
 
377
  #. translators: %1$s: Number of forms
378
+ #: classes/controllers/FrmFormsController.php:416
379
+ #: classes/controllers/FrmFormsController.php:477
380
  msgid "%1$s form restored from the Trash."
381
  msgid_plural "%1$s forms restored from the Trash."
382
  msgstr[0] ""
383
  msgstr[1] ""
384
 
385
  #. translators: %1$s: Number of forms, %2$s: Start link HTML, %3$s: End link HTML
386
+ #: classes/controllers/FrmFormsController.php:480
387
+ #: classes/controllers/FrmFormsController.php:505
388
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
389
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
390
  msgstr[0] ""
391
  msgstr[1] ""
392
 
393
  #. translators: %1$s: Number of forms
394
+ #: classes/controllers/FrmFormsController.php:528
395
  msgid "%1$s Form Permanently Deleted"
396
  msgid_plural "%1$s Forms Permanently Deleted"
397
  msgstr[0] ""
398
  msgstr[1] ""
399
 
400
  #. translators: %1$s: Number of forms
401
+ #: classes/controllers/FrmFormsController.php:545
402
+ #: classes/controllers/FrmFormsController.php:562
403
  msgid "%1$s form permanently deleted."
404
  msgid_plural "%1$s forms permanently deleted."
405
  msgstr[0] ""
406
  msgstr[1] ""
407
 
408
+ #: classes/controllers/FrmFormsController.php:611
409
  msgid "There was an error creating a template."
410
  msgstr ""
411
 
412
+ #: classes/controllers/FrmFormsController.php:655
413
  msgid "Add forms and content"
414
  msgstr ""
415
 
416
+ #: classes/controllers/FrmFormsController.php:674
417
  #: classes/views/frm-forms/insert_form_popup.php:33
418
  msgid "Insert a Form"
419
  msgstr ""
420
 
421
+ #: classes/controllers/FrmFormsController.php:727
422
  msgid "Display form title"
423
  msgstr ""
424
 
425
+ #: classes/controllers/FrmFormsController.php:731
426
  msgid "Display form description"
427
  msgstr ""
428
 
429
+ #: classes/controllers/FrmFormsController.php:735
430
  msgid "Minimize form HTML"
431
  msgstr ""
432
 
433
+ #: classes/controllers/FrmFormsController.php:791
434
  #: classes/views/frm-forms/new-form-overlay.php:46
435
  msgid "Template Name"
436
  msgstr ""
437
 
438
+ #: classes/controllers/FrmFormsController.php:792
439
  #: classes/views/xml/import_form.php:120
440
  msgid "Type"
441
  msgstr ""
442
 
443
+ #: classes/controllers/FrmFormsController.php:793
444
+ #: classes/controllers/FrmFormsController.php:797
445
  #: classes/helpers/FrmCSVExportHelper.php:349
446
  #: classes/views/shared/mb_adv_info.php:98
447
  msgid "Key"
448
  msgstr ""
449
 
450
+ #: classes/controllers/FrmFormsController.php:795
451
+ #: classes/controllers/FrmStylesController.php:401
452
  #: classes/views/frm-forms/settings-advanced.php:13
453
  #: classes/views/styles/manage.php:39
454
  #: classes/views/styles/_sample_form.php:19
456
  msgid "Form Title"
457
  msgstr ""
458
 
459
+ #: classes/controllers/FrmFormsController.php:798
460
  msgid "Actions"
461
  msgstr ""
462
 
463
+ #: classes/controllers/FrmFormsController.php:801
464
  #: classes/models/FrmField.php:87
465
  msgid "Date"
466
  msgstr ""
467
 
468
+ #: classes/controllers/FrmFormsController.php:921
469
+ #: classes/helpers/FrmFormsHelper.php:1291
470
  msgid "My Templates"
471
  msgstr ""
472
 
473
+ #: classes/controllers/FrmFormsController.php:980
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:985
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:1017
483
  msgid "Template was successfully updated."
484
  msgstr ""
485
 
486
+ #: classes/controllers/FrmFormsController.php:1091
487
+ #: classes/controllers/FrmStylesController.php:400
488
  msgid "General"
489
  msgstr ""
490
 
491
+ #: classes/controllers/FrmFormsController.php:1092
492
  msgid "General Form Settings"
493
  msgstr ""
494
 
495
+ #: classes/controllers/FrmFormsController.php:1097
496
  msgid "Actions & Notifications"
497
  msgstr ""
498
 
499
+ #: classes/controllers/FrmFormsController.php:1103
500
+ #: classes/controllers/FrmFormsController.php:1108
501
  msgid "Form Permissions"
502
  msgstr ""
503
 
504
+ #: classes/controllers/FrmFormsController.php:1109
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:1113
509
  msgid "Form Scheduling"
510
  msgstr ""
511
 
512
+ #: classes/controllers/FrmFormsController.php:1118
513
  msgid "Form scheduling settings"
514
  msgstr ""
515
 
516
+ #: classes/controllers/FrmFormsController.php:1122
517
  msgid "Styling & Buttons"
518
  msgstr ""
519
 
520
+ #: classes/controllers/FrmFormsController.php:1128
521
  msgid "Form Landing Page"
522
  msgstr ""
523
 
524
+ #: classes/controllers/FrmFormsController.php:1134
525
+ #: classes/controllers/FrmFormsController.php:1140
526
  msgid "Conversational Forms"
527
  msgstr ""
528
 
529
+ #: classes/controllers/FrmFormsController.php:1141
530
  msgid "Ask one question at a time for automated conversations."
531
  msgstr ""
532
 
533
+ #: classes/controllers/FrmFormsController.php:1146
534
  msgid "Customize HTML"
535
  msgstr ""
536
 
537
+ #: classes/controllers/FrmFormsController.php:1282
538
  msgid "Customize field values with the following parameters."
539
  msgstr ""
540
 
541
+ #: classes/controllers/FrmFormsController.php:1319
542
  msgid "Separator"
543
  msgstr ""
544
 
545
+ #: classes/controllers/FrmFormsController.php:1320
546
  msgid "Use a different separator for checkbox fields"
547
  msgstr ""
548
 
549
+ #: classes/controllers/FrmFormsController.php:1323
550
  msgid "Date Format"
551
  msgstr ""
552
 
553
+ #: classes/controllers/FrmFormsController.php:1326
554
  #: classes/views/frm-fields/back-end/settings.php:27
555
  msgid "Field Label"
556
  msgstr ""
557
 
558
+ #: classes/controllers/FrmFormsController.php:1329
559
  msgid "No Auto P"
560
  msgstr ""
561
 
562
+ #: classes/controllers/FrmFormsController.php:1330
563
  msgid "Do not automatically add any paragraphs or line breaks"
564
  msgstr ""
565
 
566
+ #: classes/controllers/FrmFormsController.php:1345
567
  #: classes/models/FrmField.php:62
568
  msgid "User ID"
569
  msgstr ""
570
 
571
+ #: classes/controllers/FrmFormsController.php:1346
572
  msgid "First Name"
573
  msgstr ""
574
 
575
+ #: classes/controllers/FrmFormsController.php:1347
576
  msgid "Last Name"
577
  msgstr ""
578
 
579
+ #: classes/controllers/FrmFormsController.php:1348
580
  msgid "Display Name"
581
  msgstr ""
582
 
583
+ #: classes/controllers/FrmFormsController.php:1349
584
  msgid "User Login"
585
  msgstr ""
586
 
587
+ #: classes/controllers/FrmFormsController.php:1350
588
  #: classes/models/FrmField.php:34
589
  msgid "Email"
590
  msgstr ""
591
 
592
+ #: classes/controllers/FrmFormsController.php:1351
593
  msgid "Avatar"
594
  msgstr ""
595
 
596
+ #: classes/controllers/FrmFormsController.php:1352
597
  msgid "Author Link"
598
  msgstr ""
599
 
600
+ #: classes/controllers/FrmFormsController.php:1365
601
  #: classes/views/frm-entries/sidebar-shared.php:51
602
  msgid "Entry ID"
603
  msgstr ""
604
 
605
+ #: classes/controllers/FrmFormsController.php:1367
606
  msgid "Post ID"
607
  msgstr ""
608
 
609
+ #: classes/controllers/FrmFormsController.php:1368
610
  msgid "User IP"
611
  msgstr ""
612
 
613
+ #: classes/controllers/FrmFormsController.php:1369
614
  msgid "Entry created"
615
  msgstr ""
616
 
617
+ #: classes/controllers/FrmFormsController.php:1370
618
  msgid "Entry updated"
619
  msgstr ""
620
 
621
+ #: classes/controllers/FrmFormsController.php:1372
622
  msgid "Site URL"
623
  msgstr ""
624
 
625
+ #: classes/controllers/FrmFormsController.php:1373
626
  msgid "Site Name"
627
  msgstr ""
628
 
629
+ #: classes/controllers/FrmFormsController.php:1381
630
  msgid "Default Msg"
631
  msgstr ""
632
 
633
+ #: classes/controllers/FrmFormsController.php:1382
634
  msgid "Default HTML"
635
  msgstr ""
636
 
637
+ #: classes/controllers/FrmFormsController.php:1383
638
  msgid "Default Plain"
639
  msgstr ""
640
 
641
+ #: classes/controllers/FrmFormsController.php:1486
642
  msgid "No forms were specified"
643
  msgstr ""
644
 
645
+ #: classes/controllers/FrmFormsController.php:1598
646
  msgid "Abnormal HTML characters prevented your form from saving correctly"
647
  msgstr ""
648
 
649
+ #: classes/controllers/FrmFormsController.php:1713
650
  #: classes/helpers/FrmFormsHelper.php:57
651
  #: classes/helpers/FrmFormsHelper.php:112
652
  #: classes/helpers/FrmFormsHelper.php:166
653
+ #: classes/helpers/FrmFormsHelper.php:1063
654
  #: classes/helpers/FrmFormsListHelper.php:313
655
  #: classes/views/frm-forms/create-template-from-an-existing-form.php:25
656
  #: classes/views/styles/manage.php:59
659
  msgid "(no title)"
660
  msgstr ""
661
 
662
+ #: classes/controllers/FrmFormsController.php:1779
663
+ #: classes/controllers/FrmFormsController.php:1801
664
  msgid "Please select a valid form"
665
  msgstr ""
666
 
667
+ #: classes/controllers/FrmFormsController.php:2027
668
  msgid "Please wait while you are redirected."
669
  msgstr ""
670
 
671
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
672
+ #: classes/controllers/FrmFormsController.php:2062
673
  msgid "%1$sClick here%2$s if you are not automatically redirected."
674
  msgstr ""
675
 
676
+ #: classes/controllers/FrmFormsController.php:2386
677
  #: classes/helpers/FrmAppHelper.php:1341
678
+ #: classes/views/frm-forms/settings-advanced.php:93
679
  msgid "Select a Page"
680
  msgstr ""
681
 
731
  msgstr ""
732
 
733
  #: classes/controllers/FrmSettingsController.php:104
734
+ #: classes/views/frm-forms/settings-advanced.php:176
735
  msgid "Miscellaneous"
736
  msgstr ""
737
 
873
  msgstr ""
874
 
875
  #: classes/controllers/FrmSMTPController.php:305
876
+ #: classes/helpers/FrmAppHelper.php:2755
877
  #: classes/helpers/FrmFormMigratorsHelper.php:131
878
  #: classes/views/shared/upgrade_overlay.php:32
879
  msgid "Install"
932
  msgstr ""
933
 
934
  #: classes/controllers/FrmStylesController.php:229
935
+ #: classes/controllers/FrmStylesController.php:340
936
  msgid "Your styling settings have been saved."
937
  msgstr ""
938
 
940
  msgid "Your form styles have been saved."
941
  msgstr ""
942
 
943
+ #: classes/controllers/FrmStylesController.php:402
944
+ #: classes/helpers/FrmFormsHelper.php:522
945
  #: classes/views/frm-forms/new-form-overlay.php:53
946
  #: classes/views/frm-forms/new-form-overlay.php:54
947
  #: classes/views/frm-forms/settings-advanced.php:27
948
  msgid "Form Description"
949
  msgstr ""
950
 
951
+ #: classes/controllers/FrmStylesController.php:403
952
  msgid "Field Labels"
953
  msgstr ""
954
 
955
+ #: classes/controllers/FrmStylesController.php:404
956
+ #: classes/helpers/FrmFormsHelper.php:482
957
  #: classes/views/frm-fields/back-end/field-description.php:8
958
  msgid "Field Description"
959
  msgstr ""
960
 
961
+ #: classes/controllers/FrmStylesController.php:405
962
  msgid "Field Colors"
963
  msgstr ""
964
 
965
+ #: classes/controllers/FrmStylesController.php:406
966
  msgid "Field Settings"
967
  msgstr ""
968
 
969
+ #: classes/controllers/FrmStylesController.php:407
970
  msgid "Check Box & Radio Fields"
971
  msgstr ""
972
 
973
+ #: classes/controllers/FrmStylesController.php:408
974
  #: classes/helpers/FrmFieldsHelper.php:1934
975
  #: classes/views/frm-forms/settings-buttons.php:46
976
  msgid "Buttons"
977
  msgstr ""
978
 
979
+ #: classes/controllers/FrmStylesController.php:409
980
  msgid "Form Messages"
981
  msgstr ""
982
 
1167
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
1168
  msgstr ""
1169
 
1170
+ #: classes/helpers/FrmAppHelper.php:2658
1171
+ #: classes/helpers/FrmAppHelper.php:2737
1172
  msgid "Please wait while your site updates."
1173
  msgstr ""
1174
 
1175
+ #: classes/helpers/FrmAppHelper.php:2659
1176
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
1177
  msgstr ""
1178
 
1179
+ #: classes/helpers/FrmAppHelper.php:2662
1180
+ #: classes/helpers/FrmAppHelper.php:2691
1181
  msgid "Loading&hellip;"
1182
  msgstr ""
1183
 
1184
+ #: classes/helpers/FrmAppHelper.php:2692
1185
  msgid "Remove"
1186
  msgstr ""
1187
 
1188
+ #: classes/helpers/FrmAppHelper.php:2695
1189
  #: classes/helpers/FrmCSVExportHelper.php:348
1190
  #: classes/views/shared/mb_adv_info.php:95
1191
  msgid "ID"
1192
  msgstr ""
1193
 
1194
+ #: classes/helpers/FrmAppHelper.php:2696
1195
  msgid "No results match"
1196
  msgstr ""
1197
 
1198
+ #: classes/helpers/FrmAppHelper.php:2697
1199
  msgid "That file looks like Spam."
1200
  msgstr ""
1201
 
1202
+ #: classes/helpers/FrmAppHelper.php:2698
1203
  msgid "There is an error in the calculation in the field with key"
1204
  msgstr ""
1205
 
1206
+ #: classes/helpers/FrmAppHelper.php:2699
1207
  msgid "Please complete the preceding required fields before uploading a file."
1208
  msgstr ""
1209
 
1210
+ #: classes/helpers/FrmAppHelper.php:2710
1211
  msgid "(Click to add description)"
1212
  msgstr ""
1213
 
1214
+ #: classes/helpers/FrmAppHelper.php:2711
1215
  msgid "(Blank)"
1216
  msgstr ""
1217
 
1218
+ #: classes/helpers/FrmAppHelper.php:2712
1219
  msgid "(no label)"
1220
  msgstr ""
1221
 
1222
+ #: classes/helpers/FrmAppHelper.php:2713
1223
  msgid "Saving"
1224
  msgstr ""
1225
 
1226
+ #: classes/helpers/FrmAppHelper.php:2714
1227
  msgid "Saved"
1228
  msgstr ""
1229
 
1230
+ #: classes/helpers/FrmAppHelper.php:2715
1231
  msgid "OK"
1232
  msgstr ""
1233
 
1234
+ #: classes/helpers/FrmAppHelper.php:2716
1235
  #: classes/views/frm-forms/new-form-overlay.php:33
1236
  #: classes/views/frm-forms/new-form-overlay.php:100
1237
  #: classes/views/frm-forms/new-form-overlay.php:109
1245
  msgid "Cancel"
1246
  msgstr ""
1247
 
1248
+ #: classes/helpers/FrmAppHelper.php:2717
1249
  #: classes/views/frm-fields/back-end/settings.php:280
1250
  msgid "Default"
1251
  msgstr ""
1252
 
1253
+ #: classes/helpers/FrmAppHelper.php:2718
1254
  msgid "Clear default value when typing"
1255
  msgstr ""
1256
 
1257
+ #: classes/helpers/FrmAppHelper.php:2719
1258
  msgid "Do not clear default value when typing"
1259
  msgstr ""
1260
 
1261
+ #: classes/helpers/FrmAppHelper.php:2720
1262
  msgid "Default value will pass form validation"
1263
  msgstr ""
1264
 
1265
+ #: classes/helpers/FrmAppHelper.php:2721
1266
  msgid "Default value will NOT pass form validation"
1267
  msgstr ""
1268
 
1269
+ #: classes/helpers/FrmAppHelper.php:2722
1270
  #: classes/helpers/FrmListHelper.php:412
1271
  #: js/formidable_admin.js:4079
1272
  msgid "Heads up"
1273
  msgstr ""
1274
 
1275
+ #: classes/helpers/FrmAppHelper.php:2723
1276
  #: classes/views/shared/confirm-overlay.php:15
1277
  #: classes/views/shared/info-overlay.php:15
1278
  msgid "Are you sure?"
1279
  msgstr ""
1280
 
1281
+ #: classes/helpers/FrmAppHelper.php:2724
1282
  msgid "Are you sure you want to delete this field and all data associated with it?"
1283
  msgstr ""
1284
 
1285
+ #: classes/helpers/FrmAppHelper.php:2725
1286
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
1287
  msgstr ""
1288
 
1289
+ #: classes/helpers/FrmAppHelper.php:2726
1290
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
1291
  msgstr ""
1292
 
1293
+ #: classes/helpers/FrmAppHelper.php:2728
1294
  #: classes/helpers/FrmFieldsHelper.php:284
1295
  msgid "The entered values do not match"
1296
  msgstr ""
1297
 
1298
+ #: classes/helpers/FrmAppHelper.php:2729
1299
  msgid "Enter Email"
1300
  msgstr ""
1301
 
1302
+ #: classes/helpers/FrmAppHelper.php:2730
1303
  msgid "Confirm Email"
1304
  msgstr ""
1305
 
1306
+ #: classes/helpers/FrmAppHelper.php:2731
1307
  #: classes/views/shared/mb_adv_info.php:166
1308
  msgid "Conditional content here"
1309
  msgstr ""
1310
 
1311
+ #: classes/helpers/FrmAppHelper.php:2732
1312
  #: classes/helpers/FrmFieldsHelper.php:456
1313
  #: classes/helpers/FrmFieldsHelper.php:457
1314
  msgid "New Option"
1315
  msgstr ""
1316
 
1317
+ #: classes/helpers/FrmAppHelper.php:2733
1318
  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."
1319
  msgstr ""
1320
 
1321
+ #: classes/helpers/FrmAppHelper.php:2734
1322
  msgid "Enter Password"
1323
  msgstr ""
1324
 
1325
+ #: classes/helpers/FrmAppHelper.php:2735
1326
  msgid "Confirm Password"
1327
  msgstr ""
1328
 
1329
+ #: classes/helpers/FrmAppHelper.php:2736
1330
  msgid "Import Complete"
1331
  msgstr ""
1332
 
1333
+ #: classes/helpers/FrmAppHelper.php:2738
1334
  msgid "Warning: There is no way to retrieve unsaved entries."
1335
  msgstr ""
1336
 
1337
+ #: classes/helpers/FrmAppHelper.php:2739
1338
  msgid "Private"
1339
  msgstr ""
1340
 
1341
+ #: classes/helpers/FrmAppHelper.php:2742
1342
  msgid "No new licenses were found"
1343
  msgstr ""
1344
 
1345
+ #: classes/helpers/FrmAppHelper.php:2743
1346
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1347
  msgstr ""
1348
 
1349
+ #: classes/helpers/FrmAppHelper.php:2744
1350
  msgid "This calculation may have shortcodes that work in Views but not forms."
1351
  msgstr ""
1352
 
1353
+ #: classes/helpers/FrmAppHelper.php:2745
1354
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1355
  msgstr ""
1356
 
1357
+ #: classes/helpers/FrmAppHelper.php:2746
1358
  msgid "This form action is limited to one per form. Please edit the existing form action."
1359
  msgstr ""
1360
 
1361
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
1362
+ #: classes/helpers/FrmAppHelper.php:2749
1363
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
1364
  msgstr ""
1365
 
1366
  #. 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.
1367
+ #: classes/helpers/FrmAppHelper.php:2751
1368
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
1369
  msgstr ""
1370
 
1371
+ #: classes/helpers/FrmAppHelper.php:2752
1372
+ #: classes/helpers/FrmFormsHelper.php:1525
1373
  msgid "See the list of reserved words in WordPress."
1374
  msgstr ""
1375
 
1376
+ #: classes/helpers/FrmAppHelper.php:2753
1377
  msgid "Please enter a Repeat Limit that is greater than 1."
1378
  msgstr ""
1379
 
1380
+ #: classes/helpers/FrmAppHelper.php:2754
1381
  msgid "Please select a limit between 0 and 200."
1382
  msgstr ""
1383
 
1384
+ #: classes/helpers/FrmAppHelper.php:2757
1385
  #: classes/views/shared/mb_adv_info.php:113
1386
  #: classes/views/shared/mb_adv_info.php:127
1387
  msgid "Select a Field"
1388
  msgstr ""
1389
 
1390
+ #: classes/helpers/FrmAppHelper.php:2758
1391
  #: classes/helpers/FrmListHelper.php:262
1392
  msgid "No items found."
1393
  msgstr ""
1394
 
1395
+ #: classes/helpers/FrmAppHelper.php:2786
1396
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1397
  msgstr ""
1398
 
1399
+ #: classes/helpers/FrmAppHelper.php:2813
1400
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
1401
  msgstr ""
1402
 
1403
+ #: classes/helpers/FrmAppHelper.php:2841
1404
  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+."
1405
  msgstr ""
1406
 
1407
+ #: classes/helpers/FrmAppHelper.php:2847
1408
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
1409
  msgstr ""
1410
 
1411
+ #: classes/helpers/FrmAppHelper.php:2861
1412
  msgid "English"
1413
  msgstr ""
1414
 
1415
+ #: classes/helpers/FrmAppHelper.php:2862
1416
  msgid "Afrikaans"
1417
  msgstr ""
1418
 
1419
+ #: classes/helpers/FrmAppHelper.php:2863
1420
  msgid "Albanian"
1421
  msgstr ""
1422
 
1423
+ #: classes/helpers/FrmAppHelper.php:2864
1424
  msgid "Arabic"
1425
  msgstr ""
1426
 
1427
+ #: classes/helpers/FrmAppHelper.php:2865
1428
  msgid "Armenian"
1429
  msgstr ""
1430
 
1431
+ #: classes/helpers/FrmAppHelper.php:2866
1432
  msgid "Azerbaijani"
1433
  msgstr ""
1434
 
1435
+ #: classes/helpers/FrmAppHelper.php:2867
1436
  msgid "Basque"
1437
  msgstr ""
1438
 
1439
+ #: classes/helpers/FrmAppHelper.php:2868
1440
  msgid "Bosnian"
1441
  msgstr ""
1442
 
1443
+ #: classes/helpers/FrmAppHelper.php:2869
1444
  msgid "Bulgarian"
1445
  msgstr ""
1446
 
1447
+ #: classes/helpers/FrmAppHelper.php:2870
1448
  msgid "Catalan"
1449
  msgstr ""
1450
 
1451
+ #: classes/helpers/FrmAppHelper.php:2871
1452
  msgid "Chinese Hong Kong"
1453
  msgstr ""
1454
 
1455
+ #: classes/helpers/FrmAppHelper.php:2872
1456
  msgid "Chinese Simplified"
1457
  msgstr ""
1458
 
1459
+ #: classes/helpers/FrmAppHelper.php:2873
1460
  msgid "Chinese Traditional"
1461
  msgstr ""
1462
 
1463
+ #: classes/helpers/FrmAppHelper.php:2874
1464
  msgid "Croatian"
1465
  msgstr ""
1466
 
1467
+ #: classes/helpers/FrmAppHelper.php:2875
1468
  msgid "Czech"
1469
  msgstr ""
1470
 
1471
+ #: classes/helpers/FrmAppHelper.php:2876
1472
  msgid "Danish"
1473
  msgstr ""
1474
 
1475
+ #: classes/helpers/FrmAppHelper.php:2877
1476
  msgid "Dutch"
1477
  msgstr ""
1478
 
1479
+ #: classes/helpers/FrmAppHelper.php:2878
1480
  msgid "English/UK"
1481
  msgstr ""
1482
 
1483
+ #: classes/helpers/FrmAppHelper.php:2879
1484
  msgid "Esperanto"
1485
  msgstr ""
1486
 
1487
+ #: classes/helpers/FrmAppHelper.php:2880
1488
  msgid "Estonian"
1489
  msgstr ""
1490
 
1491
+ #: classes/helpers/FrmAppHelper.php:2881
1492
  msgid "Faroese"
1493
  msgstr ""
1494
 
1495
+ #: classes/helpers/FrmAppHelper.php:2882
1496
  msgid "Farsi/Persian"
1497
  msgstr ""
1498
 
1499
+ #: classes/helpers/FrmAppHelper.php:2883
1500
  msgid "Filipino"
1501
  msgstr ""
1502
 
1503
+ #: classes/helpers/FrmAppHelper.php:2884
1504
  msgid "Finnish"
1505
  msgstr ""
1506
 
1507
+ #: classes/helpers/FrmAppHelper.php:2885
1508
  msgid "French"
1509
  msgstr ""
1510
 
1511
+ #: classes/helpers/FrmAppHelper.php:2886
1512
  msgid "French/Canadian"
1513
  msgstr ""
1514
 
1515
+ #: classes/helpers/FrmAppHelper.php:2887
1516
  msgid "French/Swiss"
1517
  msgstr ""
1518
 
1519
+ #: classes/helpers/FrmAppHelper.php:2888
1520
  msgid "German"
1521
  msgstr ""
1522
 
1523
+ #: classes/helpers/FrmAppHelper.php:2889
1524
  msgid "German/Austria"
1525
  msgstr ""
1526
 
1527
+ #: classes/helpers/FrmAppHelper.php:2890
1528
  msgid "German/Switzerland"
1529
  msgstr ""
1530
 
1531
+ #: classes/helpers/FrmAppHelper.php:2891
1532
  msgid "Greek"
1533
  msgstr ""
1534
 
1535
+ #: classes/helpers/FrmAppHelper.php:2892
1536
+ #: classes/helpers/FrmAppHelper.php:2893
1537
  msgid "Hebrew"
1538
  msgstr ""
1539
 
1540
+ #: classes/helpers/FrmAppHelper.php:2894
1541
  msgid "Hindi"
1542
  msgstr ""
1543
 
1544
+ #: classes/helpers/FrmAppHelper.php:2895
1545
  msgid "Hungarian"
1546
  msgstr ""
1547
 
1548
+ #: classes/helpers/FrmAppHelper.php:2896
1549
  msgid "Icelandic"
1550
  msgstr ""
1551
 
1552
+ #: classes/helpers/FrmAppHelper.php:2897
1553
  msgid "Indonesian"
1554
  msgstr ""
1555
 
1556
+ #: classes/helpers/FrmAppHelper.php:2898
1557
  msgid "Italian"
1558
  msgstr ""
1559
 
1560
+ #: classes/helpers/FrmAppHelper.php:2899
1561
  msgid "Japanese"
1562
  msgstr ""
1563
 
1564
+ #: classes/helpers/FrmAppHelper.php:2900
1565
  msgid "Korean"
1566
  msgstr ""
1567
 
1568
+ #: classes/helpers/FrmAppHelper.php:2901
1569
  msgid "Latvian"
1570
  msgstr ""
1571
 
1572
+ #: classes/helpers/FrmAppHelper.php:2902
1573
  msgid "Lithuanian"
1574
  msgstr ""
1575
 
1576
+ #: classes/helpers/FrmAppHelper.php:2903
1577
  msgid "Malaysian"
1578
  msgstr ""
1579
 
1580
+ #: classes/helpers/FrmAppHelper.php:2904
1581
  msgid "Norwegian"
1582
  msgstr ""
1583
 
1584
+ #: classes/helpers/FrmAppHelper.php:2905
1585
  msgid "Polish"
1586
  msgstr ""
1587
 
1588
+ #: classes/helpers/FrmAppHelper.php:2906
1589
  msgid "Portuguese"
1590
  msgstr ""
1591
 
1592
+ #: classes/helpers/FrmAppHelper.php:2907
1593
  msgid "Portuguese/Brazilian"
1594
  msgstr ""
1595
 
1596
+ #: classes/helpers/FrmAppHelper.php:2908
1597
  msgid "Portuguese/Portugal"
1598
  msgstr ""
1599
 
1600
+ #: classes/helpers/FrmAppHelper.php:2909
1601
  msgid "Romanian"
1602
  msgstr ""
1603
 
1604
+ #: classes/helpers/FrmAppHelper.php:2910
1605
  msgid "Russian"
1606
  msgstr ""
1607
 
1608
+ #: classes/helpers/FrmAppHelper.php:2911
1609
+ #: classes/helpers/FrmAppHelper.php:2912
1610
  msgid "Serbian"
1611
  msgstr ""
1612
 
1613
+ #: classes/helpers/FrmAppHelper.php:2913
1614
  msgid "Slovak"
1615
  msgstr ""
1616
 
1617
+ #: classes/helpers/FrmAppHelper.php:2914
1618
  msgid "Slovenian"
1619
  msgstr ""
1620
 
1621
+ #: classes/helpers/FrmAppHelper.php:2915
1622
  msgid "Spanish"
1623
  msgstr ""
1624
 
1625
+ #: classes/helpers/FrmAppHelper.php:2916
1626
  msgid "Spanish/Latin America"
1627
  msgstr ""
1628
 
1629
+ #: classes/helpers/FrmAppHelper.php:2917
1630
  msgid "Swedish"
1631
  msgstr ""
1632
 
1633
+ #: classes/helpers/FrmAppHelper.php:2918
1634
  msgid "Tamil"
1635
  msgstr ""
1636
 
1637
+ #: classes/helpers/FrmAppHelper.php:2919
1638
  msgid "Thai"
1639
  msgstr ""
1640
 
1641
+ #: classes/helpers/FrmAppHelper.php:2920
1642
  msgid "Turkish"
1643
  msgstr ""
1644
 
1645
+ #: classes/helpers/FrmAppHelper.php:2921
1646
  msgid "Ukrainian"
1647
  msgstr ""
1648
 
1649
+ #: classes/helpers/FrmAppHelper.php:2922
1650
  msgid "Vietnamese"
1651
  msgstr ""
1652
 
1653
+ #: classes/helpers/FrmAppHelper.php:3244
1654
  msgid "Form Landing Pages"
1655
  msgstr ""
1656
 
1657
+ #: classes/helpers/FrmAppHelper.php:3245
1658
  msgid "Easily manage a landing page for your form. Upgrade to get form landing pages."
1659
  msgstr ""
1660
 
1661
+ #: classes/helpers/FrmAppHelper.php:3342
1662
  msgid "Your account has expired"
1663
  msgstr ""
1664
 
1665
+ #: classes/helpers/FrmAppHelper.php:3345
1666
  msgid "Renew Now"
1667
  msgstr ""
1668
 
1695
  msgstr ""
1696
 
1697
  #: classes/helpers/FrmCSVExportHelper.php:346
1698
+ #: classes/helpers/FrmFormsHelper.php:1249
1699
  #: classes/helpers/FrmFormsListHelper.php:340
1700
  msgid "Draft"
1701
  msgstr ""
1785
  msgstr ""
1786
 
1787
  #: classes/helpers/FrmEntriesListHelper.php:319
1788
+ #: classes/helpers/FrmFormsHelper.php:1171
1789
  #: classes/helpers/FrmFormsListHelper.php:133
1790
  #: classes/views/frm-form-actions/form_action.php:25
1791
  #: js/formidable_admin.js:2055
3051
  msgid "(ID %d)"
3052
  msgstr ""
3053
 
3054
+ #: classes/helpers/FrmFormsHelper.php:470
3055
  msgid "Field ID"
3056
  msgstr ""
3057
 
3058
+ #: classes/helpers/FrmFormsHelper.php:474
3059
  #: classes/views/frm-fields/back-end/settings.php:304
3060
  msgid "Field Key"
3061
  msgstr ""
3062
 
3063
+ #: classes/helpers/FrmFormsHelper.php:478
3064
  msgid "Field Name"
3065
  msgstr ""
3066
 
3067
+ #: classes/helpers/FrmFormsHelper.php:486
3068
  #: classes/views/frm-fields/back-end/settings.php:277
3069
  msgid "Label Position"
3070
  msgstr ""
3071
 
3072
+ #: classes/helpers/FrmFormsHelper.php:490
3073
  msgid "Required Label"
3074
  msgstr ""
3075
 
3076
+ #: classes/helpers/FrmFormsHelper.php:494
3077
  msgid "Input Field"
3078
  msgstr ""
3079
 
3080
+ #: classes/helpers/FrmFormsHelper.php:498
3081
  msgid "Single Option"
3082
  msgstr ""
3083
 
3084
+ #: classes/helpers/FrmFormsHelper.php:499
3085
  msgid "Show a single radio or checkbox option by replacing 1 with the order of the option"
3086
  msgstr ""
3087
 
3088
+ #: classes/helpers/FrmFormsHelper.php:503
3089
  msgid "Hide Option Label"
3090
  msgstr ""
3091
 
3092
+ #: classes/helpers/FrmFormsHelper.php:507
3093
  msgid "Required Class"
3094
  msgstr ""
3095
 
3096
+ #: classes/helpers/FrmFormsHelper.php:508
3097
  msgid "Add class name if field is required"
3098
  msgstr ""
3099
 
3100
+ #: classes/helpers/FrmFormsHelper.php:512
3101
  msgid "Error Class"
3102
  msgstr ""
3103
 
3104
+ #: classes/helpers/FrmFormsHelper.php:513
3105
  msgid "Add class name if field has an error on form submit"
3106
  msgstr ""
3107
 
3108
+ #: classes/helpers/FrmFormsHelper.php:518
3109
  #: classes/views/frm-forms/new-form-overlay.php:46
3110
  #: classes/views/frm-forms/new-form-overlay.php:47
3111
  msgid "Form Name"
3112
  msgstr ""
3113
 
3114
+ #: classes/helpers/FrmFormsHelper.php:526
3115
  #: classes/views/frm-forms/settings-advanced.php:20
3116
  msgid "Form Key"
3117
  msgstr ""
3118
 
3119
+ #: classes/helpers/FrmFormsHelper.php:530
3120
  msgid "Delete Entry Link"
3121
  msgstr ""
3122
 
3123
+ #: classes/helpers/FrmFormsHelper.php:535
3124
  msgid "Button Label"
3125
  msgstr ""
3126
 
3127
+ #: classes/helpers/FrmFormsHelper.php:539
3128
  msgid "Button Hook"
3129
  msgstr ""
3130
 
3131
+ #: classes/helpers/FrmFormsHelper.php:1031
3132
  msgid "Create Form from Template"
3133
  msgstr ""
3134
 
3135
+ #: classes/helpers/FrmFormsHelper.php:1037
3136
  msgid "Duplicate Form"
3137
  msgstr ""
3138
 
3139
+ #: classes/helpers/FrmFormsHelper.php:1158
3140
  msgid "Restore from Trash"
3141
  msgstr ""
3142
 
3143
+ #: classes/helpers/FrmFormsHelper.php:1159
3144
  #: classes/helpers/FrmFormsListHelper.php:124
3145
  msgid "Restore"
3146
  msgstr ""
3147
 
3148
+ #: classes/helpers/FrmFormsHelper.php:1163
3149
  msgid "Move Form to Trash"
3150
  msgstr ""
3151
 
3152
+ #: classes/helpers/FrmFormsHelper.php:1164
3153
+ #: classes/helpers/FrmFormsHelper.php:1250
3154
  #: classes/helpers/FrmFormsListHelper.php:158
3155
  msgid "Trash"
3156
  msgstr ""
3157
 
3158
+ #: classes/helpers/FrmFormsHelper.php:1167
3159
  msgid "Do you want to move this form to the trash?"
3160
  msgstr ""
3161
 
3162
+ #: classes/helpers/FrmFormsHelper.php:1170
3163
  #: classes/helpers/FrmFormsListHelper.php:128
3164
  msgid "Delete Permanently"
3165
  msgstr ""
3166
 
3167
+ #: classes/helpers/FrmFormsHelper.php:1173
3168
  msgid "Are you sure you want to delete this form and all its entries?"
3169
  msgstr ""
3170
 
3171
+ #: classes/helpers/FrmFormsHelper.php:1175
3172
  msgid "This will permanently delete the form and all its entries. This is irreversible. Are you sure you want to continue?"
3173
  msgstr ""
3174
 
3175
+ #: classes/helpers/FrmFormsHelper.php:1186
3176
  #: classes/models/FrmField.php:204
3177
  msgid "Total"
3178
  msgstr ""
3179
 
3180
+ #: classes/helpers/FrmFormsHelper.php:1187
3181
  msgid "Add this to a read-only field to display the text in bold without a border or background."
3182
  msgstr ""
3183
 
3184
+ #: classes/helpers/FrmFormsHelper.php:1190
3185
  msgid "Big Total"
3186
  msgstr ""
3187
 
3188
+ #: classes/helpers/FrmFormsHelper.php:1191
3189
  msgid "Add this to a read-only field to display the text in large, bold text without a border or background."
3190
  msgstr ""
3191
 
3192
+ #: classes/helpers/FrmFormsHelper.php:1194
3193
  msgid "Scroll Box"
3194
  msgstr ""
3195
 
3196
+ #: classes/helpers/FrmFormsHelper.php:1195
3197
  msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field."
3198
  msgstr ""
3199
 
3200
+ #: classes/helpers/FrmFormsHelper.php:1198
3201
  #: classes/models/fields/FrmFieldName.php:36
3202
  msgid "First"
3203
  msgstr ""
3204
 
3205
+ #: classes/helpers/FrmFormsHelper.php:1199
3206
  msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
3207
  msgstr ""
3208
 
3209
+ #: classes/helpers/FrmFormsHelper.php:1201
3210
  #: classes/helpers/FrmStylesHelper.php:113
3211
  msgid "Right"
3212
  msgstr ""
3213
 
3214
+ #: classes/helpers/FrmFormsHelper.php:1202
3215
  msgid "First Grid Row"
3216
  msgstr ""
3217
 
3218
+ #: classes/helpers/FrmFormsHelper.php:1203
3219
  msgid "Even Grid Row"
3220
  msgstr ""
3221
 
3222
+ #: classes/helpers/FrmFormsHelper.php:1204
3223
  msgid "Odd Grid Row"
3224
  msgstr ""
3225
 
3226
+ #: classes/helpers/FrmFormsHelper.php:1206
3227
  msgid "Color Block"
3228
  msgstr ""
3229
 
3230
+ #: classes/helpers/FrmFormsHelper.php:1207
3231
  msgid "Add a background color to the field or section."
3232
  msgstr ""
3233
 
3234
+ #: classes/helpers/FrmFormsHelper.php:1210
3235
  msgid "Capitalize"
3236
  msgstr ""
3237
 
3238
+ #: classes/helpers/FrmFormsHelper.php:1211
3239
  msgid "Automatically capitalize the first letter in each word."
3240
  msgstr ""
3241
 
3242
+ #: classes/helpers/FrmFormsHelper.php:1251
3243
  msgid "Published"
3244
  msgstr ""
3245
 
3246
+ #: classes/helpers/FrmFormsHelper.php:1335
3247
  msgid "Create Form"
3248
  msgstr ""
3249
 
3250
+ #: classes/helpers/FrmFormsHelper.php:1343
3251
  msgid "Renew"
3252
  msgstr ""
3253
 
3254
+ #: classes/helpers/FrmFormsHelper.php:1407
3255
  msgid "License plan required:"
3256
  msgstr ""
3257
 
3258
+ #: classes/helpers/FrmFormsHelper.php:1524
3259
  msgid "Is this intentional?"
3260
  msgstr ""
3261
 
3262
  #. translators: %s: the name of a single parameter in the redirect URL
3263
+ #: classes/helpers/FrmFormsHelper.php:1534
3264
  msgid "The redirect URL is using the parameter \"%s\", which is reserved by WordPress. "
3265
  msgstr ""
3266
 
3267
  #. translators: %s: the names of two or more parameters in the redirect URL, separated by commas
3268
+ #: classes/helpers/FrmFormsHelper.php:1540
3269
  msgid "The redirect URL is using the parameters \"%s\", which are reserved by WordPress. "
3270
  msgstr ""
3271
 
3342
  msgstr ""
3343
 
3344
  #: classes/helpers/FrmListHelper.php:491
3345
+ #: classes/helpers/FrmListHelper.php:1179
3346
  msgid "Show more details"
3347
  msgstr ""
3348
 
3349
  #. translators: %s: Number of items
3350
  #: classes/helpers/FrmListHelper.php:599
3351
+ #: classes/helpers/FrmListHelper.php:1205
3352
  msgid "%s item"
3353
  msgid_plural "%s items"
3354
  msgstr[0] ""
5265
  msgid "Modify the basic form settings here."
5266
  msgstr ""
5267
 
5268
+ #: classes/views/frm-forms/settings-advanced.php:35
5269
+ msgid "Show the form title"
5270
+ msgstr ""
5271
+
5272
+ #: classes/views/frm-forms/settings-advanced.php:42
5273
+ msgid "Show the form description"
5274
+ msgstr ""
5275
+
5276
+ #: classes/views/frm-forms/settings-advanced.php:51
5277
  msgid "Form Settings"
5278
  msgstr ""
5279
 
5280
+ #: classes/views/frm-forms/settings-advanced.php:62
5281
+ #: classes/views/frm-forms/settings-advanced.php:167
5282
  msgid "On Submit"
5283
  msgstr ""
5284
 
5285
+ #: classes/views/frm-forms/settings-advanced.php:63
5286
  msgid "Choose what will happen after the user submits this form."
5287
  msgstr ""
5288
 
5289
+ #: classes/views/frm-forms/settings-advanced.php:71
5290
  msgid "Show Message"
5291
  msgstr ""
5292
 
5293
+ #: classes/views/frm-forms/settings-advanced.php:74
5294
  msgid "Redirect to URL"
5295
  msgstr ""
5296
 
5297
+ #: classes/views/frm-forms/settings-advanced.php:77
5298
  msgid "Show Page Content"
5299
  msgstr ""
5300
 
5301
+ #: classes/views/frm-forms/settings-advanced.php:103
5302
  msgid "Show the form with the confirmation message"
5303
  msgstr ""
5304
 
5305
+ #: classes/views/frm-forms/settings-advanced.php:110
5306
  msgid "Do not store entries submitted from this form"
5307
  msgstr ""
5308
 
5309
+ #: classes/views/frm-forms/settings-advanced.php:120
5310
  msgid "AJAX"
5311
  msgstr ""
5312
 
5313
+ #: classes/views/frm-forms/settings-advanced.php:121
5314
  msgid "Make stuff happen in the background without a page refresh"
5315
  msgstr ""
5316
 
5317
+ #: classes/views/frm-forms/settings-advanced.php:128
5318
  msgid "Load and save form builder page with AJAX"
5319
  msgstr ""
5320
 
5321
+ #: classes/views/frm-forms/settings-advanced.php:129
5322
  msgid "Recommended for long forms."
5323
  msgstr ""
5324
 
5325
+ #: classes/views/frm-forms/settings-advanced.php:137
5326
  msgid "AJAX Form Submissions"
5327
  msgstr ""
5328
 
5329
+ #: classes/views/frm-forms/settings-advanced.php:137
5330
  msgid "Want to submit forms without reloading the page?"
5331
  msgstr ""
5332
 
5333
+ #: classes/views/frm-forms/settings-advanced.php:139
5334
  msgid "Submit this form with AJAX"
5335
  msgstr ""
5336
 
5337
+ #: classes/views/frm-forms/settings-advanced.php:140
5338
  msgid "Submit the form without refreshing the page."
5339
  msgstr ""
5340
 
5341
+ #: classes/views/frm-forms/settings-advanced.php:149
5342
  msgid "Validate this form with javascript"
5343
  msgstr ""
5344
 
5345
+ #: classes/views/frm-forms/settings-advanced.php:150
5346
  msgid "Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields."
5347
  msgstr ""
5348
 
5349
+ #: classes/views/frm-forms/settings-advanced.php:161
5350
  msgid "Messages"
5351
  msgstr ""
5352
 
5353
+ #: classes/views/frm-forms/settings-advanced.php:162
5354
  msgid "Set up your confirmation messages."
5355
  msgstr ""
5356
 
readme.txt CHANGED
@@ -3,9 +3,9 @@ Plugin Name: Formidable Forms - Contact Form, Survey & Quiz Forms Plugin for Wor
3
  Contributors: formidableforms, sswells, srwells
4
  Tags: forms, contact form, form builder, survey, free, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator, price calculator, quote form, contact button, form manager, Akismet, payment form, survey form, donation form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form
5
  Requires at least: 5.2
6
- Tested up to: 5.9
7
  Requires PHP: 5.6
8
- Stable tag: 5.2
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
@@ -230,7 +230,7 @@ Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> f
230
  4. Activate Formidable through the 'Plugins' menu
231
  5. Go to the newly added 'Formidable' menu
232
  6. Click the 'Add New' button to go to the form generator page and create a new email form
233
- 7. Insert your newly created user registration form, quiz, or survey form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` to add it in a page template
234
 
235
  == Screenshots ==
236
  1. Build professional WP forms without any code.
@@ -438,6 +438,12 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
438
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
439
 
440
  == Changelog ==
 
 
 
 
 
 
441
  = 5.2 =
442
  * Increased WP version requirement to 5.2.
443
  * New: Added a new Embed Form modal and a new Embed button that appears in the form builder and form settings pages beside Preview and Update. Now a form can be embedded into a new page or an existing page with just a few clicks.
@@ -452,10 +458,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
452
  * New: Form errors will now always include the role="alert" attribute for more accessible errors. New fields will now also include role="alert" in custom field HTML.
453
  * New: Added a new frm_entries_column_value filter hook.
454
 
455
- = 5.0.17 =
456
- * The embedded CodeMirror code for compatibility with versions of WordPress before 4.9 has been removed.
457
- * New: The ctype PHP extension is no longer a requirement.
458
- * Fix: The custom CSS page would appear without any textarea on some configurations where CodeMirror may be disabled.
459
- * Fix: Removed padding styles from radio buttons because of a conflict with the Sensational theme.
460
-
461
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
3
  Contributors: formidableforms, sswells, srwells
4
  Tags: forms, contact form, form builder, survey, free, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator, price calculator, quote form, contact button, form manager, Akismet, payment form, survey form, donation form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form
5
  Requires at least: 5.2
6
+ Tested up to: 5.9.1
7
  Requires PHP: 5.6
8
+ Stable tag: 5.2.01
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
230
  4. Activate Formidable through the 'Plugins' menu
231
  5. Go to the newly added 'Formidable' menu
232
  6. Click the 'Add New' button to go to the form generator page and create a new email form
233
+ 7. Insert your newly created user registration form, quiz, or survey form on a page or post using the Embed Form pop up. Or insert it manually or into a widget using a shortcode [formidable id=x]. Alternatively use `<?php echo FrmFormsController::show_form(2); ?>` to add it in a page template.
234
 
235
  == Screenshots ==
236
  1. Build professional WP forms without any code.
438
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
439
 
440
  == Changelog ==
441
+ = 5.2.01 =
442
+ * New: Added new checkboxes to toggle form title and description visibility. The form preview page will no longer always show title and description by default, and will use these checkboxes instead.
443
+ * Fix: In-Theme Previews trigger a fatal error in WordPress 5.9.1.
444
+ * Fix: Checkbox fields were appearing as broken vertical lines when using the Enfold theme.
445
+ * Fix: A deprecation message was occasionally logged in PHP8 when trying to decode null values.
446
+
447
  = 5.2 =
448
  * Increased WP version requirement to 5.2.
449
  * New: Added a new Embed Form modal and a new Embed button that appears in the form builder and form settings pages beside Preview and Update. Now a form can be embedded into a new page or an existing page with just a few clicks.
458
  * New: Form errors will now always include the role="alert" attribute for more accessible errors. New fields will now also include role="alert" in custom field HTML.
459
  * New: Added a new frm_entries_column_value filter hook.
460
 
 
 
 
 
 
 
461
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>