Formidable Forms – Form Builder for WordPress - Version 4.10.02

Version Description

  • New: Added support for in-theme previews for more themes including Twenty Twenty, Customizr, and more.
Download this release

Release Info

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

Code changes from version 4.10.01 to 4.10.02

classes/controllers/FrmFormsController.php CHANGED
@@ -314,7 +314,28 @@ class FrmFormsController {
314
  add_action( 'loop_no_results', 'FrmFormsController::show_page_preview' );
315
  add_filter( 'is_active_sidebar', '__return_false' );
316
  FrmStylesController::enqueue_css( 'enqueue', true );
317
- get_template_part( 'page' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  }
319
 
320
  /**
314
  add_action( 'loop_no_results', 'FrmFormsController::show_page_preview' );
315
  add_filter( 'is_active_sidebar', '__return_false' );
316
  FrmStylesController::enqueue_css( 'enqueue', true );
317
+
318
+ if ( false === get_template_part( 'page' ) ) {
319
+ self::fallback_when_page_template_part_is_not_supported_by_theme();
320
+ }
321
+ }
322
+
323
+ /**
324
+ * Not every theme supports get_template_part( 'page' ).
325
+ * When this is not supported, false is returned, and we can handle a fallback.
326
+ */
327
+ private static function fallback_when_page_template_part_is_not_supported_by_theme() {
328
+ if ( have_posts() ) {
329
+ the_post();
330
+ get_header( '' );
331
+ // add some generic class names to the container to add some natural padding to the content.
332
+ // .entry-content catches the WordPress TwentyTwenty theme.
333
+ // .container catches Customizr content.
334
+ echo '<div class="container entry-content">';
335
+ the_content();
336
+ echo '</div>';
337
+ get_footer();
338
+ }
339
  }
340
 
341
  /**
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '4.10.01';
15
 
16
  /**
17
  * @since 1.07.02
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '4.10.02';
15
 
16
  /**
17
  * @since 1.07.02
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: 4.10.01
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: 4.10.02
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 4.10.01\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-04-07T18:02:33+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"
@@ -191,7 +191,7 @@ msgstr ""
191
  #: classes/controllers/FrmAppController.php:165
192
  #: classes/controllers/FrmEntriesController.php:11
193
  #: classes/controllers/FrmEntriesController.php:100
194
- #: classes/controllers/FrmFormsController.php:735
195
  #: classes/controllers/FrmXMLController.php:259
196
  #: classes/views/xml/import_form.php:121
197
  msgid "Entries"
@@ -217,14 +217,14 @@ msgid "Build a Form"
217
  msgstr ""
218
 
219
  #: classes/controllers/FrmEntriesController.php:79
220
- #: classes/controllers/FrmFormsController.php:1241
221
  #: classes/views/frm-entries/form.php:54
222
  #: classes/views/frm-entries/sidebar-shared.php:57
223
  msgid "Entry Key"
224
  msgstr ""
225
 
226
  #: classes/controllers/FrmEntriesController.php:84
227
- #: classes/controllers/FrmFormsController.php:636
228
  #: classes/views/xml/import_form.php:152
229
  #: classes/widgets/FrmShowForm.php:59
230
  msgid "Form"
@@ -314,7 +314,7 @@ msgid "You do not have permission to do that"
314
  msgstr ""
315
 
316
  #: classes/controllers/FrmFormsController.php:9
317
- #: classes/controllers/FrmFormsController.php:745
318
  #: classes/controllers/FrmStylesController.php:51
319
  #: classes/controllers/FrmXMLController.php:258
320
  #: classes/views/frm-forms/list.php:10
@@ -338,7 +338,7 @@ msgid "Settings Successfully Updated"
338
  msgstr ""
339
 
340
  #: classes/controllers/FrmFormsController.php:168
341
- #: classes/controllers/FrmFormsController.php:945
342
  msgid "Form was successfully updated."
343
  msgstr ""
344
 
@@ -360,84 +360,84 @@ msgstr ""
360
  msgid "There was a problem creating the new template."
361
  msgstr ""
362
 
363
- #: classes/controllers/FrmFormsController.php:339
364
  msgid "Form Preview"
365
  msgstr ""
366
 
367
  #. translators: %1$s: Number of forms
368
- #: classes/controllers/FrmFormsController.php:384
369
- #: classes/controllers/FrmFormsController.php:445
370
  msgid "%1$s form restored from the Trash."
371
  msgid_plural "%1$s forms restored from the Trash."
372
  msgstr[0] ""
373
  msgstr[1] ""
374
 
375
  #. translators: %1$s: Number of forms, %2$s: Start link HTML, %3$s: End link HTML
376
- #: classes/controllers/FrmFormsController.php:448
377
- #: classes/controllers/FrmFormsController.php:473
378
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
379
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
380
  msgstr[0] ""
381
  msgstr[1] ""
382
 
383
  #. translators: %1$s: Number of forms
384
- #: classes/controllers/FrmFormsController.php:496
385
  msgid "%1$s Form Permanently Deleted"
386
  msgid_plural "%1$s Forms Permanently Deleted"
387
  msgstr[0] ""
388
  msgstr[1] ""
389
 
390
  #. translators: %1$s: Number of forms
391
- #: classes/controllers/FrmFormsController.php:513
392
- #: classes/controllers/FrmFormsController.php:530
393
  msgid "%1$s form permanently deleted."
394
  msgid_plural "%1$s forms permanently deleted."
395
  msgstr[0] ""
396
  msgstr[1] ""
397
 
398
- #: classes/controllers/FrmFormsController.php:576
399
  msgid "There was an error creating a template."
400
  msgstr ""
401
 
402
- #: classes/controllers/FrmFormsController.php:620
403
  msgid "Add forms and content"
404
  msgstr ""
405
 
406
- #: classes/controllers/FrmFormsController.php:637
407
  #: classes/views/frm-forms/insert_form_popup.php:33
408
  msgid "Insert a Form"
409
  msgstr ""
410
 
411
- #: classes/controllers/FrmFormsController.php:666
412
  msgid "Display form title"
413
  msgstr ""
414
 
415
- #: classes/controllers/FrmFormsController.php:670
416
  msgid "Display form description"
417
  msgstr ""
418
 
419
- #: classes/controllers/FrmFormsController.php:674
420
  msgid "Minimize form HTML"
421
  msgstr ""
422
 
423
- #: classes/controllers/FrmFormsController.php:730
424
  #: classes/views/frm-forms/new-form-overlay.php:46
425
  msgid "Template Name"
426
  msgstr ""
427
 
428
- #: classes/controllers/FrmFormsController.php:731
429
  #: classes/views/xml/import_form.php:120
430
  msgid "Type"
431
  msgstr ""
432
 
433
- #: classes/controllers/FrmFormsController.php:732
434
- #: classes/controllers/FrmFormsController.php:736
435
  #: classes/helpers/FrmCSVExportHelper.php:223
436
  #: classes/views/shared/mb_adv_info.php:98
437
  msgid "Key"
438
  msgstr ""
439
 
440
- #: classes/controllers/FrmFormsController.php:734
441
  #: classes/controllers/FrmStylesController.php:394
442
  #: classes/views/frm-forms/settings-advanced.php:13
443
  #: classes/views/styles/manage.php:39
@@ -446,184 +446,184 @@ msgstr ""
446
  msgid "Form Title"
447
  msgstr ""
448
 
449
- #: classes/controllers/FrmFormsController.php:737
450
  msgid "Shortcodes"
451
  msgstr ""
452
 
453
- #: classes/controllers/FrmFormsController.php:740
454
  #: classes/models/FrmField.php:82
455
  msgid "Date"
456
  msgstr ""
457
 
458
- #: classes/controllers/FrmFormsController.php:860
459
  #: classes/helpers/FrmFormsHelper.php:1269
460
  msgid "My Templates"
461
  msgstr ""
462
 
463
- #: classes/controllers/FrmFormsController.php:919
464
  msgid "You are trying to edit a form that does not exist."
465
  msgstr ""
466
 
467
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
468
- #: classes/controllers/FrmFormsController.php:924
469
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
470
  msgstr ""
471
 
472
- #: classes/controllers/FrmFormsController.php:947
473
  msgid "Template was successfully updated."
474
  msgstr ""
475
 
476
- #: classes/controllers/FrmFormsController.php:1011
477
  #: classes/controllers/FrmStylesController.php:393
478
  msgid "General"
479
  msgstr ""
480
 
481
- #: classes/controllers/FrmFormsController.php:1012
482
  msgid "General Form Settings"
483
  msgstr ""
484
 
485
- #: classes/controllers/FrmFormsController.php:1017
486
  msgid "Actions & Notifications"
487
  msgstr ""
488
 
489
- #: classes/controllers/FrmFormsController.php:1023
490
- #: classes/controllers/FrmFormsController.php:1028
491
  msgid "Form Permissions"
492
  msgstr ""
493
 
494
- #: classes/controllers/FrmFormsController.php:1029
495
  msgid "Allow editing, protect forms and files, limit entries, and save drafts. Upgrade to get form and entry permissions."
496
  msgstr ""
497
 
498
- #: classes/controllers/FrmFormsController.php:1033
499
  msgid "Form Scheduling"
500
  msgstr ""
501
 
502
- #: classes/controllers/FrmFormsController.php:1038
503
  msgid "Form scheduling settings"
504
  msgstr ""
505
 
506
- #: classes/controllers/FrmFormsController.php:1042
507
  msgid "Styling & Buttons"
508
  msgstr ""
509
 
510
- #: classes/controllers/FrmFormsController.php:1048
511
  msgid "Customize HTML"
512
  msgstr ""
513
 
514
- #: classes/controllers/FrmFormsController.php:1157
515
  msgid "Customize field values with the following parameters."
516
  msgstr ""
517
 
518
- #: classes/controllers/FrmFormsController.php:1194
519
  msgid "Separator"
520
  msgstr ""
521
 
522
- #: classes/controllers/FrmFormsController.php:1195
523
  msgid "Use a different separator for checkbox fields"
524
  msgstr ""
525
 
526
- #: classes/controllers/FrmFormsController.php:1198
527
  msgid "Date Format"
528
  msgstr ""
529
 
530
- #: classes/controllers/FrmFormsController.php:1201
531
  #: classes/views/frm-fields/back-end/settings.php:27
532
  msgid "Field Label"
533
  msgstr ""
534
 
535
- #: classes/controllers/FrmFormsController.php:1204
536
  msgid "No Auto P"
537
  msgstr ""
538
 
539
- #: classes/controllers/FrmFormsController.php:1205
540
  msgid "Do not automatically add any paragraphs or line breaks"
541
  msgstr ""
542
 
543
- #: classes/controllers/FrmFormsController.php:1220
544
  #: classes/models/FrmField.php:58
545
  msgid "User ID"
546
  msgstr ""
547
 
548
- #: classes/controllers/FrmFormsController.php:1221
549
  msgid "First Name"
550
  msgstr ""
551
 
552
- #: classes/controllers/FrmFormsController.php:1222
553
  msgid "Last Name"
554
  msgstr ""
555
 
556
- #: classes/controllers/FrmFormsController.php:1223
557
  msgid "Display Name"
558
  msgstr ""
559
 
560
- #: classes/controllers/FrmFormsController.php:1224
561
  msgid "User Login"
562
  msgstr ""
563
 
564
- #: classes/controllers/FrmFormsController.php:1225
565
  #: classes/models/FrmField.php:34
566
  msgid "Email"
567
  msgstr ""
568
 
569
- #: classes/controllers/FrmFormsController.php:1226
570
  msgid "Avatar"
571
  msgstr ""
572
 
573
- #: classes/controllers/FrmFormsController.php:1227
574
  msgid "Author Link"
575
  msgstr ""
576
 
577
- #: classes/controllers/FrmFormsController.php:1240
578
  #: classes/views/frm-entries/sidebar-shared.php:51
579
  msgid "Entry ID"
580
  msgstr ""
581
 
582
- #: classes/controllers/FrmFormsController.php:1242
583
  msgid "Post ID"
584
  msgstr ""
585
 
586
- #: classes/controllers/FrmFormsController.php:1243
587
  msgid "User IP"
588
  msgstr ""
589
 
590
- #: classes/controllers/FrmFormsController.php:1244
591
  msgid "Entry created"
592
  msgstr ""
593
 
594
- #: classes/controllers/FrmFormsController.php:1245
595
  msgid "Entry updated"
596
  msgstr ""
597
 
598
- #: classes/controllers/FrmFormsController.php:1247
599
  msgid "Site URL"
600
  msgstr ""
601
 
602
- #: classes/controllers/FrmFormsController.php:1248
603
  msgid "Site Name"
604
  msgstr ""
605
 
606
- #: classes/controllers/FrmFormsController.php:1256
607
  msgid "Default Msg"
608
  msgstr ""
609
 
610
- #: classes/controllers/FrmFormsController.php:1257
611
  msgid "Default HTML"
612
  msgstr ""
613
 
614
- #: classes/controllers/FrmFormsController.php:1258
615
  msgid "Default Plain"
616
  msgstr ""
617
 
618
- #: classes/controllers/FrmFormsController.php:1347
619
  msgid "No forms were specified"
620
  msgstr ""
621
 
622
- #: classes/controllers/FrmFormsController.php:1459
623
  msgid "Abnormal HTML characters prevented your form from saving correctly"
624
  msgstr ""
625
 
626
- #: classes/controllers/FrmFormsController.php:1574
627
  #: classes/helpers/FrmFormsHelper.php:57
628
  #: classes/helpers/FrmFormsHelper.php:112
629
  #: classes/helpers/FrmFormsHelper.php:166
@@ -635,17 +635,17 @@ msgstr ""
635
  msgid "(no title)"
636
  msgstr ""
637
 
638
- #: classes/controllers/FrmFormsController.php:1620
639
- #: classes/controllers/FrmFormsController.php:1634
640
  msgid "Please select a valid form"
641
  msgstr ""
642
 
643
- #: classes/controllers/FrmFormsController.php:1856
644
  msgid "Please wait while you are redirected."
645
  msgstr ""
646
 
647
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
648
- #: classes/controllers/FrmFormsController.php:1892
649
  msgid "%1$sClick here%2$s if you are not automatically redirected."
650
  msgstr ""
651
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 4.10.02\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-04-28T15:55:24+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"
191
  #: classes/controllers/FrmAppController.php:165
192
  #: classes/controllers/FrmEntriesController.php:11
193
  #: classes/controllers/FrmEntriesController.php:100
194
+ #: classes/controllers/FrmFormsController.php:756
195
  #: classes/controllers/FrmXMLController.php:259
196
  #: classes/views/xml/import_form.php:121
197
  msgid "Entries"
217
  msgstr ""
218
 
219
  #: classes/controllers/FrmEntriesController.php:79
220
+ #: classes/controllers/FrmFormsController.php:1262
221
  #: classes/views/frm-entries/form.php:54
222
  #: classes/views/frm-entries/sidebar-shared.php:57
223
  msgid "Entry Key"
224
  msgstr ""
225
 
226
  #: classes/controllers/FrmEntriesController.php:84
227
+ #: classes/controllers/FrmFormsController.php:657
228
  #: classes/views/xml/import_form.php:152
229
  #: classes/widgets/FrmShowForm.php:59
230
  msgid "Form"
314
  msgstr ""
315
 
316
  #: classes/controllers/FrmFormsController.php:9
317
+ #: classes/controllers/FrmFormsController.php:766
318
  #: classes/controllers/FrmStylesController.php:51
319
  #: classes/controllers/FrmXMLController.php:258
320
  #: classes/views/frm-forms/list.php:10
338
  msgstr ""
339
 
340
  #: classes/controllers/FrmFormsController.php:168
341
+ #: classes/controllers/FrmFormsController.php:966
342
  msgid "Form was successfully updated."
343
  msgstr ""
344
 
360
  msgid "There was a problem creating the new template."
361
  msgstr ""
362
 
363
+ #: classes/controllers/FrmFormsController.php:360
364
  msgid "Form Preview"
365
  msgstr ""
366
 
367
  #. translators: %1$s: Number of forms
368
+ #: classes/controllers/FrmFormsController.php:405
369
+ #: classes/controllers/FrmFormsController.php:466
370
  msgid "%1$s form restored from the Trash."
371
  msgid_plural "%1$s forms restored from the Trash."
372
  msgstr[0] ""
373
  msgstr[1] ""
374
 
375
  #. translators: %1$s: Number of forms, %2$s: Start link HTML, %3$s: End link HTML
376
+ #: classes/controllers/FrmFormsController.php:469
377
+ #: classes/controllers/FrmFormsController.php:494
378
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
379
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
380
  msgstr[0] ""
381
  msgstr[1] ""
382
 
383
  #. translators: %1$s: Number of forms
384
+ #: classes/controllers/FrmFormsController.php:517
385
  msgid "%1$s Form Permanently Deleted"
386
  msgid_plural "%1$s Forms Permanently Deleted"
387
  msgstr[0] ""
388
  msgstr[1] ""
389
 
390
  #. translators: %1$s: Number of forms
391
+ #: classes/controllers/FrmFormsController.php:534
392
+ #: classes/controllers/FrmFormsController.php:551
393
  msgid "%1$s form permanently deleted."
394
  msgid_plural "%1$s forms permanently deleted."
395
  msgstr[0] ""
396
  msgstr[1] ""
397
 
398
+ #: classes/controllers/FrmFormsController.php:597
399
  msgid "There was an error creating a template."
400
  msgstr ""
401
 
402
+ #: classes/controllers/FrmFormsController.php:641
403
  msgid "Add forms and content"
404
  msgstr ""
405
 
406
+ #: classes/controllers/FrmFormsController.php:658
407
  #: classes/views/frm-forms/insert_form_popup.php:33
408
  msgid "Insert a Form"
409
  msgstr ""
410
 
411
+ #: classes/controllers/FrmFormsController.php:687
412
  msgid "Display form title"
413
  msgstr ""
414
 
415
+ #: classes/controllers/FrmFormsController.php:691
416
  msgid "Display form description"
417
  msgstr ""
418
 
419
+ #: classes/controllers/FrmFormsController.php:695
420
  msgid "Minimize form HTML"
421
  msgstr ""
422
 
423
+ #: classes/controllers/FrmFormsController.php:751
424
  #: classes/views/frm-forms/new-form-overlay.php:46
425
  msgid "Template Name"
426
  msgstr ""
427
 
428
+ #: classes/controllers/FrmFormsController.php:752
429
  #: classes/views/xml/import_form.php:120
430
  msgid "Type"
431
  msgstr ""
432
 
433
+ #: classes/controllers/FrmFormsController.php:753
434
+ #: classes/controllers/FrmFormsController.php:757
435
  #: classes/helpers/FrmCSVExportHelper.php:223
436
  #: classes/views/shared/mb_adv_info.php:98
437
  msgid "Key"
438
  msgstr ""
439
 
440
+ #: classes/controllers/FrmFormsController.php:755
441
  #: classes/controllers/FrmStylesController.php:394
442
  #: classes/views/frm-forms/settings-advanced.php:13
443
  #: classes/views/styles/manage.php:39
446
  msgid "Form Title"
447
  msgstr ""
448
 
449
+ #: classes/controllers/FrmFormsController.php:758
450
  msgid "Shortcodes"
451
  msgstr ""
452
 
453
+ #: classes/controllers/FrmFormsController.php:761
454
  #: classes/models/FrmField.php:82
455
  msgid "Date"
456
  msgstr ""
457
 
458
+ #: classes/controllers/FrmFormsController.php:881
459
  #: classes/helpers/FrmFormsHelper.php:1269
460
  msgid "My Templates"
461
  msgstr ""
462
 
463
+ #: classes/controllers/FrmFormsController.php:940
464
  msgid "You are trying to edit a form that does not exist."
465
  msgstr ""
466
 
467
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
468
+ #: classes/controllers/FrmFormsController.php:945
469
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
470
  msgstr ""
471
 
472
+ #: classes/controllers/FrmFormsController.php:968
473
  msgid "Template was successfully updated."
474
  msgstr ""
475
 
476
+ #: classes/controllers/FrmFormsController.php:1032
477
  #: classes/controllers/FrmStylesController.php:393
478
  msgid "General"
479
  msgstr ""
480
 
481
+ #: classes/controllers/FrmFormsController.php:1033
482
  msgid "General Form Settings"
483
  msgstr ""
484
 
485
+ #: classes/controllers/FrmFormsController.php:1038
486
  msgid "Actions & Notifications"
487
  msgstr ""
488
 
489
+ #: classes/controllers/FrmFormsController.php:1044
490
+ #: classes/controllers/FrmFormsController.php:1049
491
  msgid "Form Permissions"
492
  msgstr ""
493
 
494
+ #: classes/controllers/FrmFormsController.php:1050
495
  msgid "Allow editing, protect forms and files, limit entries, and save drafts. Upgrade to get form and entry permissions."
496
  msgstr ""
497
 
498
+ #: classes/controllers/FrmFormsController.php:1054
499
  msgid "Form Scheduling"
500
  msgstr ""
501
 
502
+ #: classes/controllers/FrmFormsController.php:1059
503
  msgid "Form scheduling settings"
504
  msgstr ""
505
 
506
+ #: classes/controllers/FrmFormsController.php:1063
507
  msgid "Styling & Buttons"
508
  msgstr ""
509
 
510
+ #: classes/controllers/FrmFormsController.php:1069
511
  msgid "Customize HTML"
512
  msgstr ""
513
 
514
+ #: classes/controllers/FrmFormsController.php:1178
515
  msgid "Customize field values with the following parameters."
516
  msgstr ""
517
 
518
+ #: classes/controllers/FrmFormsController.php:1215
519
  msgid "Separator"
520
  msgstr ""
521
 
522
+ #: classes/controllers/FrmFormsController.php:1216
523
  msgid "Use a different separator for checkbox fields"
524
  msgstr ""
525
 
526
+ #: classes/controllers/FrmFormsController.php:1219
527
  msgid "Date Format"
528
  msgstr ""
529
 
530
+ #: classes/controllers/FrmFormsController.php:1222
531
  #: classes/views/frm-fields/back-end/settings.php:27
532
  msgid "Field Label"
533
  msgstr ""
534
 
535
+ #: classes/controllers/FrmFormsController.php:1225
536
  msgid "No Auto P"
537
  msgstr ""
538
 
539
+ #: classes/controllers/FrmFormsController.php:1226
540
  msgid "Do not automatically add any paragraphs or line breaks"
541
  msgstr ""
542
 
543
+ #: classes/controllers/FrmFormsController.php:1241
544
  #: classes/models/FrmField.php:58
545
  msgid "User ID"
546
  msgstr ""
547
 
548
+ #: classes/controllers/FrmFormsController.php:1242
549
  msgid "First Name"
550
  msgstr ""
551
 
552
+ #: classes/controllers/FrmFormsController.php:1243
553
  msgid "Last Name"
554
  msgstr ""
555
 
556
+ #: classes/controllers/FrmFormsController.php:1244
557
  msgid "Display Name"
558
  msgstr ""
559
 
560
+ #: classes/controllers/FrmFormsController.php:1245
561
  msgid "User Login"
562
  msgstr ""
563
 
564
+ #: classes/controllers/FrmFormsController.php:1246
565
  #: classes/models/FrmField.php:34
566
  msgid "Email"
567
  msgstr ""
568
 
569
+ #: classes/controllers/FrmFormsController.php:1247
570
  msgid "Avatar"
571
  msgstr ""
572
 
573
+ #: classes/controllers/FrmFormsController.php:1248
574
  msgid "Author Link"
575
  msgstr ""
576
 
577
+ #: classes/controllers/FrmFormsController.php:1261
578
  #: classes/views/frm-entries/sidebar-shared.php:51
579
  msgid "Entry ID"
580
  msgstr ""
581
 
582
+ #: classes/controllers/FrmFormsController.php:1263
583
  msgid "Post ID"
584
  msgstr ""
585
 
586
+ #: classes/controllers/FrmFormsController.php:1264
587
  msgid "User IP"
588
  msgstr ""
589
 
590
+ #: classes/controllers/FrmFormsController.php:1265
591
  msgid "Entry created"
592
  msgstr ""
593
 
594
+ #: classes/controllers/FrmFormsController.php:1266
595
  msgid "Entry updated"
596
  msgstr ""
597
 
598
+ #: classes/controllers/FrmFormsController.php:1268
599
  msgid "Site URL"
600
  msgstr ""
601
 
602
+ #: classes/controllers/FrmFormsController.php:1269
603
  msgid "Site Name"
604
  msgstr ""
605
 
606
+ #: classes/controllers/FrmFormsController.php:1277
607
  msgid "Default Msg"
608
  msgstr ""
609
 
610
+ #: classes/controllers/FrmFormsController.php:1278
611
  msgid "Default HTML"
612
  msgstr ""
613
 
614
+ #: classes/controllers/FrmFormsController.php:1279
615
  msgid "Default Plain"
616
  msgstr ""
617
 
618
+ #: classes/controllers/FrmFormsController.php:1368
619
  msgid "No forms were specified"
620
  msgstr ""
621
 
622
+ #: classes/controllers/FrmFormsController.php:1480
623
  msgid "Abnormal HTML characters prevented your form from saving correctly"
624
  msgstr ""
625
 
626
+ #: classes/controllers/FrmFormsController.php:1595
627
  #: classes/helpers/FrmFormsHelper.php:57
628
  #: classes/helpers/FrmFormsHelper.php:112
629
  #: classes/helpers/FrmFormsHelper.php:166
635
  msgid "(no title)"
636
  msgstr ""
637
 
638
+ #: classes/controllers/FrmFormsController.php:1641
639
+ #: classes/controllers/FrmFormsController.php:1655
640
  msgid "Please select a valid form"
641
  msgstr ""
642
 
643
+ #: classes/controllers/FrmFormsController.php:1877
644
  msgid "Please wait while you are redirected."
645
  msgstr ""
646
 
647
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
648
+ #: classes/controllers/FrmFormsController.php:1913
649
  msgid "%1$sClick here%2$s if you are not automatically redirected."
650
  msgstr ""
651
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: forms, contact form, form builder, survey, form maker, form creator, paypa
5
  Requires at least: 4.7
6
  Tested up to: 5.7.1
7
  Requires PHP: 5.6
8
- Stable tag: 4.10.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
 
@@ -436,6 +436,9 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
436
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
437
 
438
  == Changelog ==
 
 
 
439
  = 4.10.01 =
440
  * New: Include the full email header when an email is sent using the mail function.
441
  * Fix: After opening the popup to add a layout class to a field, the field would no longer be selectable.
@@ -466,8 +469,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
466
  * Fix: Autofill was flagging submissions as spam with Honeypot in some browsers.
467
  * Fix: Important security update that adds better escaping when text is used from attribute data.
468
 
469
- = 4.09.04 =
470
- * Fix: The form builder page wasn't always loading all fields correctly when loaded with ajax.
471
- * New: frm_global_switch_fields and frm_maybe_switch_field_ids hooks for changing field ids in a form action when duplicating.
472
-
473
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
5
  Requires at least: 4.7
6
  Tested up to: 5.7.1
7
  Requires PHP: 5.6
8
+ Stable tag: 4.10.02
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
11
 
436
  See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
437
 
438
  == Changelog ==
439
+ = 4.10.02 =
440
+ * New: Added support for in-theme previews for more themes including Twenty Twenty, Customizr, and more.
441
+
442
  = 4.10.01 =
443
  * New: Include the full email header when an email is sent using the mail function.
444
  * Fix: After opening the popup to add a layout class to a field, the field would no longer be selectable.
469
  * Fix: Autofill was flagging submissions as spam with Honeypot in some browsers.
470
  * Fix: Important security update that adds better escaping when text is used from attribute data.
471
 
 
 
 
 
472
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>