Version Description
- New: Added a new frm_duplicate_check_val filter for customizing the duplicate entry check. This can be used to remove IP to help prevent duplicate entries for longer periods of time when using frm_time_to_check_duplicates filter. For an example see https://formidableforms.com/knowledgebase/frm_duplicate_check_val/.
- New: Added visibility option to the Name field.
- Fix: The honeypot setting would still appear as on after it was turned off.
Download this release
Release Info
Developer | sswells |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 4.11.01 |
Comparing to | |
See all releases |
Code changes from version 4.11 to 4.11.01
- classes/helpers/FrmAppHelper.php +9 -3
- classes/helpers/FrmXMLHelper.php +30 -1
- classes/models/FrmEntry.php +3 -2
- classes/models/fields/FrmFieldCombo.php +5 -0
- classes/views/frm-forms/spam-settings/honeypot.php +1 -1
- classes/views/shared/views-info.php +13 -5
- classes/views/xml/posts_xml.php +12 -0
- css/frm_admin.css +11 -0
- css/frm_grids.css +2 -2
- formidable.php +1 -1
- images/views.svg +0 -1
- languages/formidable.pot +176 -180
- readme.txt +20 -21
classes/helpers/FrmAppHelper.php
CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
|
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
-
public static $plug_version = '4.11';
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
@@ -88,8 +88,10 @@ class FrmAppHelper {
|
|
88 |
|
89 |
$anchor = '';
|
90 |
if ( is_array( $args ) ) {
|
91 |
-
$medium
|
92 |
-
|
|
|
|
|
93 |
if ( isset( $args['anchor'] ) ) {
|
94 |
$anchor = '#' . $args['anchor'];
|
95 |
}
|
@@ -111,6 +113,10 @@ class FrmAppHelper {
|
|
111 |
$query_args['f'] = $args['param'];
|
112 |
}
|
113 |
|
|
|
|
|
|
|
|
|
114 |
$link = add_query_arg( $query_args, $page ) . $anchor;
|
115 |
return self::make_affiliate_url( $link );
|
116 |
}
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
+
public static $plug_version = '4.11.01';
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
88 |
|
89 |
$anchor = '';
|
90 |
if ( is_array( $args ) ) {
|
91 |
+
$medium = $args['medium'];
|
92 |
+
if ( isset( $args['content'] ) ) {
|
93 |
+
$content = $args['content'];
|
94 |
+
}
|
95 |
if ( isset( $args['anchor'] ) ) {
|
96 |
$anchor = '#' . $args['anchor'];
|
97 |
}
|
113 |
$query_args['f'] = $args['param'];
|
114 |
}
|
115 |
|
116 |
+
if ( is_array( $args ) && ! empty( $args['plan'] ) ) {
|
117 |
+
$query_args['plan'] = $args['plan'];
|
118 |
+
}
|
119 |
+
|
120 |
$link = add_query_arg( $query_args, $page ) . $anchor;
|
121 |
return self::make_affiliate_url( $link );
|
122 |
}
|
classes/helpers/FrmXMLHelper.php
CHANGED
@@ -752,6 +752,7 @@ class FrmXMLHelper {
|
|
752 |
'post_date_gmt' => (string) $item->post_date_gmt,
|
753 |
'ping_status' => (string) $item->ping_status,
|
754 |
'postmeta' => array(),
|
|
|
755 |
'tax_input' => array(),
|
756 |
);
|
757 |
|
@@ -786,6 +787,7 @@ class FrmXMLHelper {
|
|
786 |
}
|
787 |
|
788 |
self::update_postmeta( $post, $post_id );
|
|
|
789 |
|
790 |
$this_type = 'posts';
|
791 |
if ( isset( $post_types[ $post['post_type'] ] ) ) {
|
@@ -830,6 +832,11 @@ class FrmXMLHelper {
|
|
830 |
unset( $meta );
|
831 |
}
|
832 |
|
|
|
|
|
|
|
|
|
|
|
833 |
self::populate_taxonomies( $post, $item );
|
834 |
|
835 |
self::maybe_editing_post( $post );
|
@@ -893,6 +900,10 @@ class FrmXMLHelper {
|
|
893 |
$post['postmeta'][ (string) $meta->meta_key ] = $m['value'];
|
894 |
}
|
895 |
|
|
|
|
|
|
|
|
|
896 |
/**
|
897 |
* Add terms to post
|
898 |
*
|
@@ -967,6 +978,20 @@ class FrmXMLHelper {
|
|
967 |
}
|
968 |
}
|
969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
/**
|
971 |
* If a template includes custom css, let's include it.
|
972 |
* The custom css is included on the default style.
|
@@ -1237,7 +1262,11 @@ class FrmXMLHelper {
|
|
1237 |
public static function cdata( $str ) {
|
1238 |
FrmAppHelper::unserialize_or_decode( $str );
|
1239 |
if ( is_array( $str ) ) {
|
1240 |
-
$str
|
|
|
|
|
|
|
|
|
1241 |
} elseif ( seems_utf8( $str ) == false ) {
|
1242 |
$str = utf8_encode( $str );
|
1243 |
}
|
752 |
'post_date_gmt' => (string) $item->post_date_gmt,
|
753 |
'ping_status' => (string) $item->ping_status,
|
754 |
'postmeta' => array(),
|
755 |
+
'layout' => array(),
|
756 |
'tax_input' => array(),
|
757 |
);
|
758 |
|
787 |
}
|
788 |
|
789 |
self::update_postmeta( $post, $post_id );
|
790 |
+
self::update_layout( $post, $post_id );
|
791 |
|
792 |
$this_type = 'posts';
|
793 |
if ( isset( $post_types[ $post['post_type'] ] ) ) {
|
832 |
unset( $meta );
|
833 |
}
|
834 |
|
835 |
+
foreach ( $item->layout as $layout ) {
|
836 |
+
self::populate_layout( $post, $layout );
|
837 |
+
unset( $layout );
|
838 |
+
}
|
839 |
+
|
840 |
self::populate_taxonomies( $post, $item );
|
841 |
|
842 |
self::maybe_editing_post( $post );
|
900 |
$post['postmeta'][ (string) $meta->meta_key ] = $m['value'];
|
901 |
}
|
902 |
|
903 |
+
private static function populate_layout( &$post, $layout ) {
|
904 |
+
$post['layout'][ (string) $layout->type ] = (string) $layout->data;
|
905 |
+
}
|
906 |
+
|
907 |
/**
|
908 |
* Add terms to post
|
909 |
*
|
978 |
}
|
979 |
}
|
980 |
|
981 |
+
/**
|
982 |
+
* @param array $post
|
983 |
+
* @param int $post_id
|
984 |
+
*/
|
985 |
+
private static function update_layout( &$post, $post_id ) {
|
986 |
+
if ( is_callable( 'FrmViewsLayout::maybe_create_layouts_for_view' ) ) {
|
987 |
+
$listing_layout = ! empty( $post['layout']['listing'] ) ? json_decode( $post['layout']['listing'], true ) : array();
|
988 |
+
$detail_layout = ! empty( $post['layout']['detail'] ) ? json_decode( $post['layout']['detail'], true ) : array();
|
989 |
+
if ( $listing_layout || $detail_layout ) {
|
990 |
+
FrmViewsLayout::maybe_create_layouts_for_view( $post_id, $listing_layout, $detail_layout );
|
991 |
+
}
|
992 |
+
}
|
993 |
+
}
|
994 |
+
|
995 |
/**
|
996 |
* If a template includes custom css, let's include it.
|
997 |
* The custom css is included on the default style.
|
1262 |
public static function cdata( $str ) {
|
1263 |
FrmAppHelper::unserialize_or_decode( $str );
|
1264 |
if ( is_array( $str ) ) {
|
1265 |
+
if ( isset( $str[0] ) && isset( $str[0]['box'] ) ) {
|
1266 |
+
$str = maybe_serialize( $str );
|
1267 |
+
} else {
|
1268 |
+
$str = json_encode( $str );
|
1269 |
+
}
|
1270 |
} elseif ( seems_utf8( $str ) == false ) {
|
1271 |
$str = utf8_encode( $str );
|
1272 |
}
|
classes/models/FrmEntry.php
CHANGED
@@ -54,13 +54,14 @@ class FrmEntry {
|
|
54 |
$check_val = $new_values;
|
55 |
$check_val['created_at >'] = gmdate( 'Y-m-d H:i:s', ( strtotime( $new_values['created_at'] ) - absint( $duplicate_entry_time ) ) );
|
56 |
|
57 |
-
unset( $check_val['created_at'], $check_val['updated_at'] );
|
58 |
-
unset( $check_val['is_draft'], $check_val['id'], $check_val['item_key'] );
|
59 |
|
60 |
if ( $new_values['item_key'] == $new_values['name'] ) {
|
61 |
unset( $check_val['name'] );
|
62 |
}
|
63 |
|
|
|
|
|
64 |
global $wpdb;
|
65 |
$entry_exists = FrmDb::get_col( $wpdb->prefix . 'frm_items', $check_val, 'id', array( 'order_by' => 'created_at DESC' ) );
|
66 |
|
54 |
$check_val = $new_values;
|
55 |
$check_val['created_at >'] = gmdate( 'Y-m-d H:i:s', ( strtotime( $new_values['created_at'] ) - absint( $duplicate_entry_time ) ) );
|
56 |
|
57 |
+
unset( $check_val['created_at'], $check_val['updated_at'], $check_val['is_draft'], $check_val['id'], $check_val['item_key'] );
|
|
|
58 |
|
59 |
if ( $new_values['item_key'] == $new_values['name'] ) {
|
60 |
unset( $check_val['name'] );
|
61 |
}
|
62 |
|
63 |
+
$check_val = apply_filters( 'frm_duplicate_check_val', $check_val );
|
64 |
+
|
65 |
global $wpdb;
|
66 |
$entry_exists = FrmDb::get_col( $wpdb->prefix . 'frm_items', $check_val, 'id', array( 'order_by' => 'created_at DESC' ) );
|
67 |
|
classes/models/fields/FrmFieldCombo.php
CHANGED
@@ -204,6 +204,7 @@ class FrmFieldCombo extends FrmFieldType {
|
|
204 |
'default' => false,
|
205 |
'clear_on_focus' => false, // Don't use the regular placeholder option.
|
206 |
'logic' => true,
|
|
|
207 |
);
|
208 |
|
209 |
return $settings;
|
@@ -389,6 +390,10 @@ class FrmFieldCombo extends FrmFieldType {
|
|
389 |
return $errors;
|
390 |
}
|
391 |
|
|
|
|
|
|
|
|
|
392 |
$blank_msg = FrmFieldsHelper::get_error_msg( $this->field, 'blank' );
|
393 |
|
394 |
$sub_fields = $this->get_processed_sub_fields();
|
204 |
'default' => false,
|
205 |
'clear_on_focus' => false, // Don't use the regular placeholder option.
|
206 |
'logic' => true,
|
207 |
+
'visibility' => true,
|
208 |
);
|
209 |
|
210 |
return $settings;
|
390 |
return $errors;
|
391 |
}
|
392 |
|
393 |
+
if ( class_exists( 'FrmProFieldsHelper' ) && ! FrmProFieldsHelper::is_field_visible_to_user( $this->field ) ) {
|
394 |
+
return $errors;
|
395 |
+
}
|
396 |
+
|
397 |
$blank_msg = FrmFieldsHelper::get_error_msg( $this->field, 'blank' );
|
398 |
|
399 |
$sub_fields = $this->get_processed_sub_fields();
|
classes/views/frm-forms/spam-settings/honeypot.php
CHANGED
@@ -8,7 +8,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
8 |
<label for="honeypot"><?php esc_html_e( 'Use Honeypot to check entries for spam', 'formidable' ); ?></label>
|
9 |
<select id="honeypot" name="options[honeypot]">
|
10 |
<option value="off" <?php selected( $values['honeypot'], 'off' ); ?>><?php esc_html_e( 'Off', 'formidable' ); ?></option>
|
11 |
-
<option value="basic" <?php selected(
|
12 |
<option value="strict" <?php selected( $values['honeypot'], 'strict' ); ?>><?php esc_html_e( 'Strict', 'formidable' ); ?></option>
|
13 |
</select>
|
14 |
</td>
|
8 |
<label for="honeypot"><?php esc_html_e( 'Use Honeypot to check entries for spam', 'formidable' ); ?></label>
|
9 |
<select id="honeypot" name="options[honeypot]">
|
10 |
<option value="off" <?php selected( $values['honeypot'], 'off' ); ?>><?php esc_html_e( 'Off', 'formidable' ); ?></option>
|
11 |
+
<option value="basic" <?php selected( $values['honeypot'], 'basic' ); ?>><?php esc_html_e( 'Basic', 'formidable' ); ?></option>
|
12 |
<option value="strict" <?php selected( $values['honeypot'], 'strict' ); ?>><?php esc_html_e( 'Strict', 'formidable' ); ?></option>
|
13 |
</select>
|
14 |
</td>
|
classes/views/shared/views-info.php
CHANGED
@@ -8,19 +8,27 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
8 |
<?php
|
9 |
FrmAppHelper::get_admin_header(
|
10 |
array(
|
11 |
-
'label'
|
12 |
-
'form'
|
13 |
-
'close'
|
14 |
)
|
15 |
);
|
16 |
?>
|
17 |
<div class="frmcenter" style="margin-top:10vh">
|
18 |
-
<
|
|
|
|
|
19 |
<h2><?php esc_html_e( 'Show and Edit Entries with Views', 'formidable' ); ?></h2>
|
20 |
<p style="max-width:400px;margin:20px auto">
|
21 |
<?php esc_html_e( 'Bring entries to the front-end of your site for full-featured applications or just to show the content.', 'formidable' ); ?>
|
22 |
</p>
|
23 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
</div>
|
25 |
</div>
|
26 |
</div>
|
8 |
<?php
|
9 |
FrmAppHelper::get_admin_header(
|
10 |
array(
|
11 |
+
'label' => __( 'Views', 'formidable' ),
|
12 |
+
'form' => $form,
|
13 |
+
'close' => $form ? admin_url( 'admin.php?page=formidable&frm_action=views&form=' . $form->id ) : '',
|
14 |
)
|
15 |
);
|
16 |
?>
|
17 |
<div class="frmcenter" style="margin-top:10vh">
|
18 |
+
<div class="frm-video-wrapper">
|
19 |
+
<iframe width="843" height="474" src="https://www.youtube.com/embed/3T-WMIvYadg" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
20 |
+
</div>
|
21 |
<h2><?php esc_html_e( 'Show and Edit Entries with Views', 'formidable' ); ?></h2>
|
22 |
<p style="max-width:400px;margin:20px auto">
|
23 |
<?php esc_html_e( 'Bring entries to the front-end of your site for full-featured applications or just to show the content.', 'formidable' ); ?>
|
24 |
</p>
|
25 |
+
<?php
|
26 |
+
$upgrade_link_args = array(
|
27 |
+
'medium' => 'views-info',
|
28 |
+
'plan' => 'view',
|
29 |
+
);
|
30 |
+
FrmAddonsController::conditional_action_button( 'views', $upgrade_link_args );
|
31 |
+
?>
|
32 |
</div>
|
33 |
</div>
|
34 |
</div>
|
classes/views/xml/posts_xml.php
CHANGED
@@ -72,6 +72,18 @@ while ( $next_posts = array_splice( $item_ids, 0, 20 ) ) {
|
|
72 |
<?php
|
73 |
}
|
74 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
?>
|
76 |
</view>
|
77 |
<?php
|
72 |
<?php
|
73 |
}
|
74 |
}
|
75 |
+
|
76 |
+
if ( is_callable( 'FrmViewsLayout::get_layouts_for_view' ) ) {
|
77 |
+
$layouts = FrmViewsLayout::get_layouts_for_view( $post->ID );
|
78 |
+
foreach ( $layouts as $layout ) {
|
79 |
+
?>
|
80 |
+
<layout>
|
81 |
+
<type><?php echo esc_html( $layout->type ); ?></type>
|
82 |
+
<data><?php echo FrmXMLHelper::cdata( $layout->data ); // WPCS: XSS ok. ?></data>
|
83 |
+
</layout>
|
84 |
+
<?php
|
85 |
+
}
|
86 |
+
}
|
87 |
?>
|
88 |
</view>
|
89 |
<?php
|
css/frm_admin.css
CHANGED
@@ -1323,6 +1323,7 @@ a.frm_hidden,
|
|
1323 |
|
1324 |
.post-type-frm_display .wrap > #posts-filter,
|
1325 |
.post-type-frm_display .wrap > .subsubsub,
|
|
|
1326 |
.frm_form_settings > p {
|
1327 |
margin: 6px 40px;
|
1328 |
padding: 0;
|
@@ -8041,3 +8042,13 @@ Responsive Design
|
|
8041 |
.edit_form_item .frm_combo_inputs_container[data-name-layout="last_first"] .frm_form_subfield-first {
|
8042 |
order: 2;
|
8043 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1323 |
|
1324 |
.post-type-frm_display .wrap > #posts-filter,
|
1325 |
.post-type-frm_display .wrap > .subsubsub,
|
1326 |
+
.post-type-frm_display .wrap > .icl_subsubsub,
|
1327 |
.frm_form_settings > p {
|
1328 |
margin: 6px 40px;
|
1329 |
padding: 0;
|
8042 |
.edit_form_item .frm_combo_inputs_container[data-name-layout="last_first"] .frm_form_subfield-first {
|
8043 |
order: 2;
|
8044 |
}
|
8045 |
+
|
8046 |
+
.frm-video-wrapper {
|
8047 |
+
padding: 0 20px;
|
8048 |
+
}
|
8049 |
+
|
8050 |
+
.frm-video-wrapper iframe {
|
8051 |
+
width: 100%;
|
8052 |
+
max-width: 843px;
|
8053 |
+
border-radius: 10px;
|
8054 |
+
}
|
css/frm_grids.css
CHANGED
@@ -347,8 +347,8 @@
|
|
347 |
}
|
348 |
|
349 |
@media only screen and (max-width: 750px) {
|
350 |
-
.frm_grid_container.frm_no_grid_750{
|
351 |
-
|
352 |
}
|
353 |
}
|
354 |
|
347 |
}
|
348 |
|
349 |
@media only screen and (max-width: 750px) {
|
350 |
+
.frm_grid_container.frm_no_grid_750 > div{
|
351 |
+
grid-column: span 12/span 12;
|
352 |
}
|
353 |
}
|
354 |
|
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.11
|
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.11.01
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
images/views.svg
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
<svg width="403" height="243" viewBox="0 0 403 243" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d)"><rect x="52" y="27" width="290" height="175" rx="15.3" fill="#fff"/><mask id="a" maskUnits="userSpaceOnUse" x="52" y="27" width="290" height="175"><rect x="52" y="27" width="290" height="175" rx="15.3" fill="#fff"/></mask><g mask="url(#a)"><path fill="#F6F7FB" d="M52 27h290v38H52z"/><rect x="74" y="44" width="24" height="9" rx="4.5" fill="#9AA6B5" fill-opacity=".5"/><rect x="74" y="71" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="88" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="105" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="123" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="141" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="159" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="177" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="74" y="195" width="24" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="44" width="53" height="9" rx="4.5" fill="#9AA6B5" fill-opacity=".5"/><rect x="120" y="71" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="88" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="105" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="123" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="141" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="159" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="177" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="120" y="195" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="44" width="54" height="9" rx="4.5" fill="#9AA6B5" fill-opacity=".5"/><rect x="193" y="71" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="88" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="105" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="123" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="141" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="159" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="177" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="193" y="195" width="54" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="44" width="53" height="9" rx="4.5" fill="#9AA6B5" fill-opacity=".5"/><rect x="267" y="71" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="88" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="105" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="123" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="141" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="159" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="177" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><rect x="267" y="195" width="53" height="4" rx="2" fill="#9AA6B5" fill-opacity=".3"/><path fill="#9AA6B5" fill-opacity=".2" d="M108 27h1v175h-1z"/><path fill="#9AA6B5" fill-opacity=".2" d="M51 81v-1h292v1zM51 99v-1h292v1zM51 117v-1h292v1zM51 135v-1h292v1zM51 153v-1h292v1zM51 171v-1h292v1zM51 189v-1h292v1z"/><path fill="#9AA6B5" fill-opacity=".2" d="M182 27h1v175h-1zM256 27h1v175h-1z"/></g></g><g filter="url(#filter1_d)"><g filter="url(#filter2_d)"><rect x="17" y="150" width="168" height="62" rx="3.8" fill="#fff"/></g><circle cx="46" cy="181.3" r="17" fill="#BCC4CE"/><rect x="84.8" y="167.5" width="59.7" height="9" rx="4.5" fill="#9EA9B8" fill-opacity=".7"/><rect x="85" y="181" width="73" height="5" rx="2.5" fill="#9AA6B5" fill-opacity=".3"/><rect x="85" y="191" width="73" height="5" rx="2.5" fill="#9AA6B5" fill-opacity=".3"/></g><g filter="url(#filter3_d)"><rect x="253" y="102" width="132.8" height="115" rx="1.5" fill="#fff"/><rect x="287" y="111" width="46" height="5" rx="2.5" fill="#9EA9B8" fill-opacity=".7"/><rect x="336" y="111" width="18" height="5" rx="2.5" fill="#9EA9B8" fill-opacity=".7"/><path d="M376 113.6l-.1-.2-2.3-2.2a.3.3 0 00-.4 0v.3l2 2.1-2 2v.5h.4l2.3-2.3v-.2zM265.7 113.6v.2l2.4 2.3h.4c.1-.1.1-.3 0-.4l-2-2 2-2.2v-.3a.3.3 0 00-.4 0l-2.3 2.2-.1.2z" fill="#6B6C7E"/><circle cx="372.2" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="354.8" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="337.4" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="319.9" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="302.5" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="285.1" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="267.7" cy="202.7" r="4" fill="#E1E4E9"/><circle cx="372" cy="188" r="5.8" fill="#9CA4AF"/><circle cx="354.8" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="337.4" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="319.9" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="302.5" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="285.1" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="267.7" cy="188.2" r="4" fill="#E1E4E9"/><circle cx="372.2" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="354.8" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="337.4" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="319.9" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="302.5" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="285.1" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="267.7" cy="173.7" r="4" fill="#E1E4E9"/><circle cx="372.2" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="354.8" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="337.4" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="319.9" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="302.5" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="285.1" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="267.7" cy="159.2" r="4" fill="#E1E4E9"/><circle cx="372.2" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="354.8" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="337.4" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="319.9" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="302.5" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="285.1" cy="144.6" r="4" fill="#E1E4E9"/><circle cx="267.7" cy="144.6" r="4" fill="#E1E4E9"/><path d="M373.2 130.2c0 .4-.2.6-.4.8-.2.2-.5.3-1 .3l-1-.2v-.6a2.7 2.7 0 001 .3c.3 0 .5 0 .6-.2l.2-.3c0-.2 0-.3-.2-.4l-.6-.3c-.3-.1-.6-.3-.7-.5a1 1 0 01-.2-.6c0-.3 0-.5.3-.7.2-.2.5-.3.9-.3.3 0 .7.1 1 .3l-.2.5-.8-.3c-.2 0-.4 0-.5.2l-.1.3v.2l.2.2.5.3c.3 0 .5.2.6.3l.3.3v.4zM355.8 130.2c0 .4-.2.6-.4.8-.2.2-.6.3-1 .3l-1-.2v-.6a2.7 2.7 0 001 .3c.3 0 .5 0 .6-.2l.2-.3c0-.2 0-.3-.2-.4l-.6-.3c-.4-.1-.6-.3-.7-.5a1 1 0 01-.2-.6c0-.3 0-.5.3-.7.2-.2.5-.3.9-.3.3 0 .7.1 1 .3l-.2.5-.9-.3c-.1 0-.3 0-.4.2l-.1.3v.2l.2.2.5.3c.3 0 .5.2.6.3l.3.3v.4zM336.9 131.2h-.6v-3.6h2v.5H337v1.1h1.3v.5H337v1.5zM320 131.2h-.5v-3.1h-1.1v-.5h2.7v.5h-1v3.1zM303.8 131.2h-.7l-.6-2.1a8.2 8.2 0 01-.2-.8 6.1 6.1 0 01-.1.8l-.6 2.1h-.7l-.5-1.8-.4-1.8h.6l.5 2.1.2.9a6.2 6.2 0 01.1-.9l.6-2.1h.6l.6 2.1.2.9c0-.2 0-.5.2-.9l.5-2.1h.6l-1 3.6zM285.2 131.2h-.6v-3.1h-1v-.5h2.7v.5h-1v3.1zM267.2 131.2l-1-3v3h-.6v-3.6h.9l1 2.9 1-3h.9v3.7h-.6v-1.8a26.7 26.7 0 010-1.2l-1 3h-.6z" fill="#596069"/></g><defs><filter id="filter0_d" x="20" y="0" width="354" height="239" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="5"/><feGaussianBlur stdDeviation="16"/><feColorMatrix values="0 0 0 0 0.247059 0 0 0 0 0.294118 0 0 0 0 0.356863 0 0 0 0.15 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="filter1_d" x=".2" y="141.6" width="201.7" height="95.7" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="8.4"/><feGaussianBlur stdDeviation="8.4"/><feColorMatrix values="0 0 0 0 0.247059 0 0 0 0 0.294118 0 0 0 0 0.356863 0 0 0 0.15 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="filter2_d" x="13.2" y="147" width="175.5" height="69.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy=".8"/><feGaussianBlur stdDeviation="1.9"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="filter3_d" x="236.2" y="93.6" width="166.5" height="148.7" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="8.4"/><feGaussianBlur stdDeviation="8.4"/><feColorMatrix values="0 0 0 0 0.247059 0 0 0 0 0.294118 0 0 0 0 0.356863 0 0 0 0.15 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter></defs></svg>
|
|
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.11\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-
|
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"
|
@@ -145,7 +145,7 @@ msgid "Installed"
|
|
145 |
msgstr ""
|
146 |
|
147 |
#: classes/controllers/FrmAddonsController.php:596
|
148 |
-
#: classes/helpers/FrmAppHelper.php:
|
149 |
msgid "Active"
|
150 |
msgstr ""
|
151 |
|
@@ -842,7 +842,7 @@ msgid "Install WP Mail SMTP"
|
|
842 |
msgstr ""
|
843 |
|
844 |
#: classes/controllers/FrmSMTPController.php:305
|
845 |
-
#: classes/helpers/FrmAppHelper.php:
|
846 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
847 |
#: classes/views/shared/upgrade_overlay.php:32
|
848 |
msgid "Install"
|
@@ -988,12 +988,12 @@ msgstr ""
|
|
988 |
msgid "There are no entries for that form."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/helpers/FrmAppHelper.php:
|
992 |
-
#: classes/helpers/FrmAppHelper.php:
|
993 |
msgid "Add New"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: classes/helpers/FrmAppHelper.php:
|
997 |
#: classes/views/frm-entries/list.php:47
|
998 |
#: classes/views/frm-forms/list.php:27
|
999 |
#: classes/views/shared/mb_adv_info.php:40
|
@@ -1001,205 +1001,205 @@ msgstr ""
|
|
1001 |
msgid "Search"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: classes/helpers/FrmAppHelper.php:
|
1005 |
#: classes/views/frm-forms/settings-advanced.php:98
|
1006 |
msgid "Select a Page"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: classes/helpers/FrmAppHelper.php:
|
1010 |
msgid "View Forms"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: classes/helpers/FrmAppHelper.php:
|
1014 |
msgid "Add and Edit Forms"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: classes/helpers/FrmAppHelper.php:
|
1018 |
msgid "Delete Forms"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: classes/helpers/FrmAppHelper.php:
|
1022 |
msgid "Access this Settings Page"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: classes/helpers/FrmAppHelper.php:
|
1026 |
msgid "View Entries from Admin Area"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: classes/helpers/FrmAppHelper.php:
|
1030 |
msgid "Delete Entries from Admin Area"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: classes/helpers/FrmAppHelper.php:
|
1034 |
msgid "Add Entries from Admin Area"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: classes/helpers/FrmAppHelper.php:
|
1038 |
msgid "Edit Entries from Admin Area"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: classes/helpers/FrmAppHelper.php:
|
1042 |
msgid "View Reports"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: classes/helpers/FrmAppHelper.php:
|
1046 |
msgid "Add/Edit Views"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: classes/helpers/FrmAppHelper.php:
|
1050 |
msgid "at"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: classes/helpers/FrmAppHelper.php:
|
1054 |
msgid "year"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: classes/helpers/FrmAppHelper.php:
|
1058 |
msgid "years"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: classes/helpers/FrmAppHelper.php:
|
1062 |
msgid "month"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: classes/helpers/FrmAppHelper.php:
|
1066 |
msgid "months"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: classes/helpers/FrmAppHelper.php:
|
1070 |
msgid "week"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: classes/helpers/FrmAppHelper.php:
|
1074 |
msgid "weeks"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: classes/helpers/FrmAppHelper.php:
|
1078 |
msgid "day"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: classes/helpers/FrmAppHelper.php:
|
1082 |
msgid "days"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: classes/helpers/FrmAppHelper.php:
|
1086 |
msgid "hour"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: classes/helpers/FrmAppHelper.php:
|
1090 |
msgid "hours"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: classes/helpers/FrmAppHelper.php:
|
1094 |
msgid "minute"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: classes/helpers/FrmAppHelper.php:
|
1098 |
msgid "minutes"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: classes/helpers/FrmAppHelper.php:
|
1102 |
msgid "second"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: classes/helpers/FrmAppHelper.php:
|
1106 |
msgid "seconds"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: classes/helpers/FrmAppHelper.php:
|
1110 |
msgid "Give this action a label for easy reference."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: classes/helpers/FrmAppHelper.php:
|
1114 |
msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: classes/helpers/FrmAppHelper.php:
|
1118 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: classes/helpers/FrmAppHelper.php:
|
1122 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: classes/helpers/FrmAppHelper.php:
|
1126 |
msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: classes/helpers/FrmAppHelper.php:
|
1130 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
#. translators: %1$s: Form name, %2$s: Date
|
1134 |
-
#: classes/helpers/FrmAppHelper.php:
|
1135 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: classes/helpers/FrmAppHelper.php:
|
1139 |
-
#: classes/helpers/FrmAppHelper.php:
|
1140 |
msgid "Please wait while your site updates."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: classes/helpers/FrmAppHelper.php:
|
1144 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: classes/helpers/FrmAppHelper.php:
|
1148 |
-
#: classes/helpers/FrmAppHelper.php:
|
1149 |
msgid "Loading…"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: classes/helpers/FrmAppHelper.php:
|
1153 |
msgid "Remove"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: classes/helpers/FrmAppHelper.php:
|
1157 |
#: classes/helpers/FrmCSVExportHelper.php:229
|
1158 |
#: classes/views/shared/mb_adv_info.php:95
|
1159 |
msgid "ID"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: classes/helpers/FrmAppHelper.php:
|
1163 |
msgid "No results match"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: classes/helpers/FrmAppHelper.php:
|
1167 |
msgid "That file looks like Spam."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: classes/helpers/FrmAppHelper.php:
|
1171 |
msgid "There is an error in the calculation in the field with key"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: classes/helpers/FrmAppHelper.php:
|
1175 |
msgid "Please complete the preceding required fields before uploading a file."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: classes/helpers/FrmAppHelper.php:
|
1179 |
msgid "(Click to add description)"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: classes/helpers/FrmAppHelper.php:
|
1183 |
msgid "(Blank)"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: classes/helpers/FrmAppHelper.php:
|
1187 |
msgid "(no label)"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: classes/helpers/FrmAppHelper.php:
|
1191 |
msgid "Saving"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: classes/helpers/FrmAppHelper.php:
|
1195 |
msgid "Saved"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: classes/helpers/FrmAppHelper.php:
|
1199 |
msgid "OK"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: classes/helpers/FrmAppHelper.php:
|
1203 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1204 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1205 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
@@ -1211,414 +1211,414 @@ msgstr ""
|
|
1211 |
msgid "Cancel"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: classes/helpers/FrmAppHelper.php:
|
1215 |
#: classes/views/frm-fields/back-end/settings.php:270
|
1216 |
msgid "Default"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: classes/helpers/FrmAppHelper.php:
|
1220 |
msgid "Clear default value when typing"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: classes/helpers/FrmAppHelper.php:
|
1224 |
msgid "Do not clear default value when typing"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: classes/helpers/FrmAppHelper.php:
|
1228 |
msgid "Default value will pass form validation"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: classes/helpers/FrmAppHelper.php:
|
1232 |
msgid "Default value will NOT pass form validation"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: classes/helpers/FrmAppHelper.php:
|
1236 |
#: classes/helpers/FrmListHelper.php:405
|
1237 |
msgid "Heads up"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: classes/helpers/FrmAppHelper.php:
|
1241 |
#: classes/views/shared/confirm-overlay.php:15
|
1242 |
#: classes/views/shared/info-overlay.php:15
|
1243 |
msgid "Are you sure?"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: classes/helpers/FrmAppHelper.php:
|
1247 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: classes/helpers/FrmAppHelper.php:
|
1251 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: classes/helpers/FrmAppHelper.php:
|
1255 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: classes/helpers/FrmAppHelper.php:
|
1259 |
#: classes/helpers/FrmFieldsHelper.php:286
|
1260 |
msgid "The entered values do not match"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: classes/helpers/FrmAppHelper.php:
|
1264 |
msgid "Enter Email"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: classes/helpers/FrmAppHelper.php:
|
1268 |
msgid "Confirm Email"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: classes/helpers/FrmAppHelper.php:
|
1272 |
msgid "Conditional content here"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: classes/helpers/FrmAppHelper.php:
|
1276 |
#: classes/helpers/FrmFieldsHelper.php:458
|
1277 |
#: classes/helpers/FrmFieldsHelper.php:459
|
1278 |
msgid "New Option"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: classes/helpers/FrmAppHelper.php:
|
1282 |
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."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: classes/helpers/FrmAppHelper.php:
|
1286 |
msgid "Enter Password"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: classes/helpers/FrmAppHelper.php:
|
1290 |
msgid "Confirm Password"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: classes/helpers/FrmAppHelper.php:
|
1294 |
msgid "Import Complete"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: classes/helpers/FrmAppHelper.php:
|
1298 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: classes/helpers/FrmAppHelper.php:
|
1302 |
msgid "Private"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: classes/helpers/FrmAppHelper.php:
|
1306 |
msgid "No new licenses were found"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: classes/helpers/FrmAppHelper.php:
|
1310 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: classes/helpers/FrmAppHelper.php:
|
1314 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: classes/helpers/FrmAppHelper.php:
|
1318 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: classes/helpers/FrmAppHelper.php:
|
1322 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1326 |
-
#: classes/helpers/FrmAppHelper.php:
|
1327 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#. 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.
|
1331 |
-
#: classes/helpers/FrmAppHelper.php:
|
1332 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: classes/helpers/FrmAppHelper.php:
|
1336 |
#: classes/helpers/FrmFormsHelper.php:1502
|
1337 |
msgid "See the list of reserved words in WordPress."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: classes/helpers/FrmAppHelper.php:
|
1341 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: classes/helpers/FrmAppHelper.php:
|
1345 |
msgid "Please select a limit between 0 and 200."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: classes/helpers/FrmAppHelper.php:
|
1349 |
#: classes/views/shared/mb_adv_info.php:113
|
1350 |
#: classes/views/shared/mb_adv_info.php:127
|
1351 |
msgid "Select a Field"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: classes/helpers/FrmAppHelper.php:
|
1355 |
#: classes/helpers/FrmListHelper.php:262
|
1356 |
msgid "No items found."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: classes/helpers/FrmAppHelper.php:
|
1360 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: classes/helpers/FrmAppHelper.php:
|
1364 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: classes/helpers/FrmAppHelper.php:
|
1368 |
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+."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: classes/helpers/FrmAppHelper.php:
|
1372 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: classes/helpers/FrmAppHelper.php:
|
1376 |
msgid "English"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: classes/helpers/FrmAppHelper.php:
|
1380 |
msgid "Afrikaans"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: classes/helpers/FrmAppHelper.php:
|
1384 |
msgid "Albanian"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: classes/helpers/FrmAppHelper.php:
|
1388 |
msgid "Arabic"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: classes/helpers/FrmAppHelper.php:
|
1392 |
msgid "Armenian"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: classes/helpers/FrmAppHelper.php:
|
1396 |
msgid "Azerbaijani"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: classes/helpers/FrmAppHelper.php:
|
1400 |
msgid "Basque"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: classes/helpers/FrmAppHelper.php:
|
1404 |
msgid "Bosnian"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: classes/helpers/FrmAppHelper.php:
|
1408 |
msgid "Bulgarian"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: classes/helpers/FrmAppHelper.php:
|
1412 |
msgid "Catalan"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: classes/helpers/FrmAppHelper.php:
|
1416 |
msgid "Chinese Hong Kong"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: classes/helpers/FrmAppHelper.php:
|
1420 |
msgid "Chinese Simplified"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: classes/helpers/FrmAppHelper.php:
|
1424 |
msgid "Chinese Traditional"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: classes/helpers/FrmAppHelper.php:
|
1428 |
msgid "Croatian"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: classes/helpers/FrmAppHelper.php:
|
1432 |
msgid "Czech"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: classes/helpers/FrmAppHelper.php:
|
1436 |
msgid "Danish"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: classes/helpers/FrmAppHelper.php:
|
1440 |
msgid "Dutch"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: classes/helpers/FrmAppHelper.php:
|
1444 |
msgid "English/UK"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: classes/helpers/FrmAppHelper.php:
|
1448 |
msgid "Esperanto"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: classes/helpers/FrmAppHelper.php:
|
1452 |
msgid "Estonian"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: classes/helpers/FrmAppHelper.php:
|
1456 |
msgid "Faroese"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: classes/helpers/FrmAppHelper.php:
|
1460 |
msgid "Farsi/Persian"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: classes/helpers/FrmAppHelper.php:
|
1464 |
msgid "Filipino"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: classes/helpers/FrmAppHelper.php:
|
1468 |
msgid "Finnish"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: classes/helpers/FrmAppHelper.php:
|
1472 |
msgid "French"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: classes/helpers/FrmAppHelper.php:
|
1476 |
msgid "French/Canadian"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: classes/helpers/FrmAppHelper.php:
|
1480 |
msgid "French/Swiss"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: classes/helpers/FrmAppHelper.php:
|
1484 |
msgid "German"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: classes/helpers/FrmAppHelper.php:
|
1488 |
msgid "German/Austria"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: classes/helpers/FrmAppHelper.php:
|
1492 |
msgid "German/Switzerland"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: classes/helpers/FrmAppHelper.php:
|
1496 |
msgid "Greek"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: classes/helpers/FrmAppHelper.php:
|
1500 |
-
#: classes/helpers/FrmAppHelper.php:
|
1501 |
msgid "Hebrew"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: classes/helpers/FrmAppHelper.php:
|
1505 |
msgid "Hindi"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: classes/helpers/FrmAppHelper.php:
|
1509 |
msgid "Hungarian"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: classes/helpers/FrmAppHelper.php:
|
1513 |
msgid "Icelandic"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: classes/helpers/FrmAppHelper.php:
|
1517 |
msgid "Indonesian"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: classes/helpers/FrmAppHelper.php:
|
1521 |
msgid "Italian"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: classes/helpers/FrmAppHelper.php:
|
1525 |
msgid "Japanese"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: classes/helpers/FrmAppHelper.php:
|
1529 |
msgid "Korean"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: classes/helpers/FrmAppHelper.php:
|
1533 |
msgid "Latvian"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: classes/helpers/FrmAppHelper.php:
|
1537 |
msgid "Lithuanian"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: classes/helpers/FrmAppHelper.php:
|
1541 |
msgid "Malaysian"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: classes/helpers/FrmAppHelper.php:
|
1545 |
msgid "Norwegian"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: classes/helpers/FrmAppHelper.php:
|
1549 |
msgid "Polish"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: classes/helpers/FrmAppHelper.php:
|
1553 |
msgid "Portuguese"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: classes/helpers/FrmAppHelper.php:
|
1557 |
msgid "Portuguese/Brazilian"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: classes/helpers/FrmAppHelper.php:
|
1561 |
msgid "Portuguese/Portugal"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: classes/helpers/FrmAppHelper.php:
|
1565 |
msgid "Romanian"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: classes/helpers/FrmAppHelper.php:
|
1569 |
msgid "Russian"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: classes/helpers/FrmAppHelper.php:
|
1573 |
-
#: classes/helpers/FrmAppHelper.php:
|
1574 |
msgid "Serbian"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: classes/helpers/FrmAppHelper.php:
|
1578 |
msgid "Slovak"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: classes/helpers/FrmAppHelper.php:
|
1582 |
msgid "Slovenian"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: classes/helpers/FrmAppHelper.php:
|
1586 |
msgid "Spanish"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: classes/helpers/FrmAppHelper.php:
|
1590 |
msgid "Spanish/Latin America"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: classes/helpers/FrmAppHelper.php:
|
1594 |
msgid "Swedish"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: classes/helpers/FrmAppHelper.php:
|
1598 |
msgid "Tamil"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: classes/helpers/FrmAppHelper.php:
|
1602 |
msgid "Thai"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: classes/helpers/FrmAppHelper.php:
|
1606 |
msgid "Turkish"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: classes/helpers/FrmAppHelper.php:
|
1610 |
msgid "Ukranian"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: classes/helpers/FrmAppHelper.php:
|
1614 |
msgid "Vietnamese"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: classes/helpers/FrmAppHelper.php:
|
1618 |
msgid "Your account has expired"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: classes/helpers/FrmAppHelper.php:
|
1622 |
msgid "Renew Now"
|
1623 |
msgstr ""
|
1624 |
|
@@ -1751,7 +1751,7 @@ msgstr ""
|
|
1751 |
#. translators: %s: The field name.
|
1752 |
#: classes/helpers/FrmFieldsHelper.php:167
|
1753 |
#: classes/helpers/FrmFieldsHelper.php:296
|
1754 |
-
#: classes/helpers/FrmXMLHelper.php:
|
1755 |
#: classes/models/fields/FrmFieldType.php:583
|
1756 |
msgid "%s is invalid"
|
1757 |
msgstr ""
|
@@ -3565,21 +3565,21 @@ msgstr ""
|
|
3565 |
msgid "Your server is missing the simplexml_import_dom function"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3569 |
#: classes/views/solutions/_import.php:51
|
3570 |
msgid "Imported"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3574 |
msgid "Updated"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3578 |
msgid "Nothing was imported or updated"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
#. translators: %1$s: Number of items
|
3582 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3583 |
msgid "%1$s Form"
|
3584 |
msgid_plural "%1$s Forms"
|
3585 |
msgstr[0] ""
|
@@ -3587,7 +3587,7 @@ msgstr[1] ""
|
|
3587 |
|
3588 |
#. translators: %1$s: Number of items
|
3589 |
#. translators: %1$s - field type
|
3590 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3591 |
#: classes/models/FrmFormMigrator.php:584
|
3592 |
msgid "%1$s Field"
|
3593 |
msgid_plural "%1$s Fields"
|
@@ -3595,56 +3595,56 @@ msgstr[0] ""
|
|
3595 |
msgstr[1] ""
|
3596 |
|
3597 |
#. translators: %1$s: Number of items
|
3598 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3599 |
msgid "%1$s Entry"
|
3600 |
msgid_plural "%1$s Entries"
|
3601 |
msgstr[0] ""
|
3602 |
msgstr[1] ""
|
3603 |
|
3604 |
#. translators: %1$s: Number of items
|
3605 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3606 |
msgid "%1$s View"
|
3607 |
msgid_plural "%1$s Views"
|
3608 |
msgstr[0] ""
|
3609 |
msgstr[1] ""
|
3610 |
|
3611 |
#. translators: %1$s: Number of items
|
3612 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3613 |
msgid "%1$s Post"
|
3614 |
msgid_plural "%1$s Posts"
|
3615 |
msgstr[0] ""
|
3616 |
msgstr[1] ""
|
3617 |
|
3618 |
#. translators: %1$s: Number of items
|
3619 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3620 |
msgid "%1$s Style"
|
3621 |
msgid_plural "%1$s Styles"
|
3622 |
msgstr[0] ""
|
3623 |
msgstr[1] ""
|
3624 |
|
3625 |
#. translators: %1$s: Number of items
|
3626 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3627 |
msgid "%1$s Term"
|
3628 |
msgid_plural "%1$s Terms"
|
3629 |
msgstr[0] ""
|
3630 |
msgstr[1] ""
|
3631 |
|
3632 |
#. translators: %1$s: Number of items
|
3633 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3634 |
msgid "%1$s Form Action"
|
3635 |
msgid_plural "%1$s Form Actions"
|
3636 |
msgstr[0] ""
|
3637 |
msgstr[1] ""
|
3638 |
|
3639 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3640 |
msgid "Go to imported form"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3644 |
msgid "Create Posts"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: classes/helpers/FrmXMLHelper.php:
|
3648 |
msgid "Email Notification"
|
3649 |
msgstr ""
|
3650 |
|
@@ -5647,15 +5647,11 @@ msgstr ""
|
|
5647 |
msgid "Upgrade to %s"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: classes/views/shared/views-info.php:
|
5651 |
-
msgid "Create a View"
|
5652 |
-
msgstr ""
|
5653 |
-
|
5654 |
-
#: classes/views/shared/views-info.php:19
|
5655 |
msgid "Show and Edit Entries with Views"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: classes/views/shared/views-info.php:
|
5659 |
msgid "Bring entries to the front-end of your site for full-featured applications or just to show the content."
|
5660 |
msgstr ""
|
5661 |
|
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.11.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-06-02T14:16:07+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"
|
145 |
msgstr ""
|
146 |
|
147 |
#: classes/controllers/FrmAddonsController.php:596
|
148 |
+
#: classes/helpers/FrmAppHelper.php:2515
|
149 |
msgid "Active"
|
150 |
msgstr ""
|
151 |
|
842 |
msgstr ""
|
843 |
|
844 |
#: classes/controllers/FrmSMTPController.php:305
|
845 |
+
#: classes/helpers/FrmAppHelper.php:2514
|
846 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
847 |
#: classes/views/shared/upgrade_overlay.php:32
|
848 |
msgid "Install"
|
988 |
msgid "There are no entries for that form."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: classes/helpers/FrmAppHelper.php:913
|
992 |
+
#: classes/helpers/FrmAppHelper.php:921
|
993 |
msgid "Add New"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: classes/helpers/FrmAppHelper.php:937
|
997 |
#: classes/views/frm-entries/list.php:47
|
998 |
#: classes/views/frm-forms/list.php:27
|
999 |
#: classes/views/shared/mb_adv_info.php:40
|
1001 |
msgid "Search"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: classes/helpers/FrmAppHelper.php:1136
|
1005 |
#: classes/views/frm-forms/settings-advanced.php:98
|
1006 |
msgid "Select a Page"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/helpers/FrmAppHelper.php:1229
|
1010 |
msgid "View Forms"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: classes/helpers/FrmAppHelper.php:1230
|
1014 |
msgid "Add and Edit Forms"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: classes/helpers/FrmAppHelper.php:1231
|
1018 |
msgid "Delete Forms"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: classes/helpers/FrmAppHelper.php:1232
|
1022 |
msgid "Access this Settings Page"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: classes/helpers/FrmAppHelper.php:1233
|
1026 |
msgid "View Entries from Admin Area"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: classes/helpers/FrmAppHelper.php:1234
|
1030 |
msgid "Delete Entries from Admin Area"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/helpers/FrmAppHelper.php:1241
|
1034 |
msgid "Add Entries from Admin Area"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: classes/helpers/FrmAppHelper.php:1242
|
1038 |
msgid "Edit Entries from Admin Area"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: classes/helpers/FrmAppHelper.php:1243
|
1042 |
msgid "View Reports"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: classes/helpers/FrmAppHelper.php:1244
|
1046 |
msgid "Add/Edit Views"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: classes/helpers/FrmAppHelper.php:1945
|
1050 |
msgid "at"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: classes/helpers/FrmAppHelper.php:2089
|
1054 |
msgid "year"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: classes/helpers/FrmAppHelper.php:2090
|
1058 |
msgid "years"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: classes/helpers/FrmAppHelper.php:2094
|
1062 |
msgid "month"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: classes/helpers/FrmAppHelper.php:2095
|
1066 |
msgid "months"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: classes/helpers/FrmAppHelper.php:2099
|
1070 |
msgid "week"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: classes/helpers/FrmAppHelper.php:2100
|
1074 |
msgid "weeks"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: classes/helpers/FrmAppHelper.php:2104
|
1078 |
msgid "day"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: classes/helpers/FrmAppHelper.php:2105
|
1082 |
msgid "days"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: classes/helpers/FrmAppHelper.php:2109
|
1086 |
msgid "hour"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: classes/helpers/FrmAppHelper.php:2110
|
1090 |
msgid "hours"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: classes/helpers/FrmAppHelper.php:2114
|
1094 |
msgid "minute"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: classes/helpers/FrmAppHelper.php:2115
|
1098 |
msgid "minutes"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: classes/helpers/FrmAppHelper.php:2119
|
1102 |
msgid "second"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: classes/helpers/FrmAppHelper.php:2120
|
1106 |
msgid "seconds"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: classes/helpers/FrmAppHelper.php:2214
|
1110 |
msgid "Give this action a label for easy reference."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: classes/helpers/FrmAppHelper.php:2215
|
1114 |
msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: classes/helpers/FrmAppHelper.php:2216
|
1118 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: classes/helpers/FrmAppHelper.php:2217
|
1122 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: classes/helpers/FrmAppHelper.php:2218
|
1126 |
msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: classes/helpers/FrmAppHelper.php:2219
|
1130 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
#. translators: %1$s: Form name, %2$s: Date
|
1134 |
+
#: classes/helpers/FrmAppHelper.php:2221
|
1135 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: classes/helpers/FrmAppHelper.php:2417
|
1139 |
+
#: classes/helpers/FrmAppHelper.php:2496
|
1140 |
msgid "Please wait while your site updates."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/helpers/FrmAppHelper.php:2418
|
1144 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/helpers/FrmAppHelper.php:2421
|
1148 |
+
#: classes/helpers/FrmAppHelper.php:2450
|
1149 |
msgid "Loading…"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: classes/helpers/FrmAppHelper.php:2451
|
1153 |
msgid "Remove"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: classes/helpers/FrmAppHelper.php:2454
|
1157 |
#: classes/helpers/FrmCSVExportHelper.php:229
|
1158 |
#: classes/views/shared/mb_adv_info.php:95
|
1159 |
msgid "ID"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: classes/helpers/FrmAppHelper.php:2455
|
1163 |
msgid "No results match"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: classes/helpers/FrmAppHelper.php:2456
|
1167 |
msgid "That file looks like Spam."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: classes/helpers/FrmAppHelper.php:2457
|
1171 |
msgid "There is an error in the calculation in the field with key"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: classes/helpers/FrmAppHelper.php:2458
|
1175 |
msgid "Please complete the preceding required fields before uploading a file."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: classes/helpers/FrmAppHelper.php:2469
|
1179 |
msgid "(Click to add description)"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: classes/helpers/FrmAppHelper.php:2470
|
1183 |
msgid "(Blank)"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: classes/helpers/FrmAppHelper.php:2471
|
1187 |
msgid "(no label)"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: classes/helpers/FrmAppHelper.php:2472
|
1191 |
msgid "Saving"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: classes/helpers/FrmAppHelper.php:2473
|
1195 |
msgid "Saved"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: classes/helpers/FrmAppHelper.php:2474
|
1199 |
msgid "OK"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: classes/helpers/FrmAppHelper.php:2475
|
1203 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1204 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1205 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
1211 |
msgid "Cancel"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: classes/helpers/FrmAppHelper.php:2476
|
1215 |
#: classes/views/frm-fields/back-end/settings.php:270
|
1216 |
msgid "Default"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: classes/helpers/FrmAppHelper.php:2477
|
1220 |
msgid "Clear default value when typing"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: classes/helpers/FrmAppHelper.php:2478
|
1224 |
msgid "Do not clear default value when typing"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: classes/helpers/FrmAppHelper.php:2479
|
1228 |
msgid "Default value will pass form validation"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/helpers/FrmAppHelper.php:2480
|
1232 |
msgid "Default value will NOT pass form validation"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/helpers/FrmAppHelper.php:2481
|
1236 |
#: classes/helpers/FrmListHelper.php:405
|
1237 |
msgid "Heads up"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: classes/helpers/FrmAppHelper.php:2482
|
1241 |
#: classes/views/shared/confirm-overlay.php:15
|
1242 |
#: classes/views/shared/info-overlay.php:15
|
1243 |
msgid "Are you sure?"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: classes/helpers/FrmAppHelper.php:2483
|
1247 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: classes/helpers/FrmAppHelper.php:2484
|
1251 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: classes/helpers/FrmAppHelper.php:2485
|
1255 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: classes/helpers/FrmAppHelper.php:2487
|
1259 |
#: classes/helpers/FrmFieldsHelper.php:286
|
1260 |
msgid "The entered values do not match"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: classes/helpers/FrmAppHelper.php:2488
|
1264 |
msgid "Enter Email"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: classes/helpers/FrmAppHelper.php:2489
|
1268 |
msgid "Confirm Email"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: classes/helpers/FrmAppHelper.php:2490
|
1272 |
msgid "Conditional content here"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: classes/helpers/FrmAppHelper.php:2491
|
1276 |
#: classes/helpers/FrmFieldsHelper.php:458
|
1277 |
#: classes/helpers/FrmFieldsHelper.php:459
|
1278 |
msgid "New Option"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: classes/helpers/FrmAppHelper.php:2492
|
1282 |
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."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: classes/helpers/FrmAppHelper.php:2493
|
1286 |
msgid "Enter Password"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: classes/helpers/FrmAppHelper.php:2494
|
1290 |
msgid "Confirm Password"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: classes/helpers/FrmAppHelper.php:2495
|
1294 |
msgid "Import Complete"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: classes/helpers/FrmAppHelper.php:2497
|
1298 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: classes/helpers/FrmAppHelper.php:2498
|
1302 |
msgid "Private"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: classes/helpers/FrmAppHelper.php:2501
|
1306 |
msgid "No new licenses were found"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: classes/helpers/FrmAppHelper.php:2502
|
1310 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: classes/helpers/FrmAppHelper.php:2503
|
1314 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: classes/helpers/FrmAppHelper.php:2504
|
1318 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: classes/helpers/FrmAppHelper.php:2505
|
1322 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1326 |
+
#: classes/helpers/FrmAppHelper.php:2508
|
1327 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#. 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.
|
1331 |
+
#: classes/helpers/FrmAppHelper.php:2510
|
1332 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: classes/helpers/FrmAppHelper.php:2511
|
1336 |
#: classes/helpers/FrmFormsHelper.php:1502
|
1337 |
msgid "See the list of reserved words in WordPress."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: classes/helpers/FrmAppHelper.php:2512
|
1341 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: classes/helpers/FrmAppHelper.php:2513
|
1345 |
msgid "Please select a limit between 0 and 200."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: classes/helpers/FrmAppHelper.php:2516
|
1349 |
#: classes/views/shared/mb_adv_info.php:113
|
1350 |
#: classes/views/shared/mb_adv_info.php:127
|
1351 |
msgid "Select a Field"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: classes/helpers/FrmAppHelper.php:2517
|
1355 |
#: classes/helpers/FrmListHelper.php:262
|
1356 |
msgid "No items found."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: classes/helpers/FrmAppHelper.php:2545
|
1360 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: classes/helpers/FrmAppHelper.php:2572
|
1364 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: classes/helpers/FrmAppHelper.php:2600
|
1368 |
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+."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: classes/helpers/FrmAppHelper.php:2606
|
1372 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: classes/helpers/FrmAppHelper.php:2620
|
1376 |
msgid "English"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: classes/helpers/FrmAppHelper.php:2621
|
1380 |
msgid "Afrikaans"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: classes/helpers/FrmAppHelper.php:2622
|
1384 |
msgid "Albanian"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: classes/helpers/FrmAppHelper.php:2623
|
1388 |
msgid "Arabic"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: classes/helpers/FrmAppHelper.php:2624
|
1392 |
msgid "Armenian"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: classes/helpers/FrmAppHelper.php:2625
|
1396 |
msgid "Azerbaijani"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: classes/helpers/FrmAppHelper.php:2626
|
1400 |
msgid "Basque"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: classes/helpers/FrmAppHelper.php:2627
|
1404 |
msgid "Bosnian"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: classes/helpers/FrmAppHelper.php:2628
|
1408 |
msgid "Bulgarian"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: classes/helpers/FrmAppHelper.php:2629
|
1412 |
msgid "Catalan"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: classes/helpers/FrmAppHelper.php:2630
|
1416 |
msgid "Chinese Hong Kong"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: classes/helpers/FrmAppHelper.php:2631
|
1420 |
msgid "Chinese Simplified"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: classes/helpers/FrmAppHelper.php:2632
|
1424 |
msgid "Chinese Traditional"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: classes/helpers/FrmAppHelper.php:2633
|
1428 |
msgid "Croatian"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: classes/helpers/FrmAppHelper.php:2634
|
1432 |
msgid "Czech"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: classes/helpers/FrmAppHelper.php:2635
|
1436 |
msgid "Danish"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: classes/helpers/FrmAppHelper.php:2636
|
1440 |
msgid "Dutch"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: classes/helpers/FrmAppHelper.php:2637
|
1444 |
msgid "English/UK"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: classes/helpers/FrmAppHelper.php:2638
|
1448 |
msgid "Esperanto"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: classes/helpers/FrmAppHelper.php:2639
|
1452 |
msgid "Estonian"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: classes/helpers/FrmAppHelper.php:2640
|
1456 |
msgid "Faroese"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: classes/helpers/FrmAppHelper.php:2641
|
1460 |
msgid "Farsi/Persian"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: classes/helpers/FrmAppHelper.php:2642
|
1464 |
msgid "Filipino"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: classes/helpers/FrmAppHelper.php:2643
|
1468 |
msgid "Finnish"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: classes/helpers/FrmAppHelper.php:2644
|
1472 |
msgid "French"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: classes/helpers/FrmAppHelper.php:2645
|
1476 |
msgid "French/Canadian"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: classes/helpers/FrmAppHelper.php:2646
|
1480 |
msgid "French/Swiss"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: classes/helpers/FrmAppHelper.php:2647
|
1484 |
msgid "German"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: classes/helpers/FrmAppHelper.php:2648
|
1488 |
msgid "German/Austria"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: classes/helpers/FrmAppHelper.php:2649
|
1492 |
msgid "German/Switzerland"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: classes/helpers/FrmAppHelper.php:2650
|
1496 |
msgid "Greek"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: classes/helpers/FrmAppHelper.php:2651
|
1500 |
+
#: classes/helpers/FrmAppHelper.php:2652
|
1501 |
msgid "Hebrew"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: classes/helpers/FrmAppHelper.php:2653
|
1505 |
msgid "Hindi"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: classes/helpers/FrmAppHelper.php:2654
|
1509 |
msgid "Hungarian"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: classes/helpers/FrmAppHelper.php:2655
|
1513 |
msgid "Icelandic"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: classes/helpers/FrmAppHelper.php:2656
|
1517 |
msgid "Indonesian"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: classes/helpers/FrmAppHelper.php:2657
|
1521 |
msgid "Italian"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: classes/helpers/FrmAppHelper.php:2658
|
1525 |
msgid "Japanese"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: classes/helpers/FrmAppHelper.php:2659
|
1529 |
msgid "Korean"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: classes/helpers/FrmAppHelper.php:2660
|
1533 |
msgid "Latvian"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: classes/helpers/FrmAppHelper.php:2661
|
1537 |
msgid "Lithuanian"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: classes/helpers/FrmAppHelper.php:2662
|
1541 |
msgid "Malaysian"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: classes/helpers/FrmAppHelper.php:2663
|
1545 |
msgid "Norwegian"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: classes/helpers/FrmAppHelper.php:2664
|
1549 |
msgid "Polish"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: classes/helpers/FrmAppHelper.php:2665
|
1553 |
msgid "Portuguese"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: classes/helpers/FrmAppHelper.php:2666
|
1557 |
msgid "Portuguese/Brazilian"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: classes/helpers/FrmAppHelper.php:2667
|
1561 |
msgid "Portuguese/Portugal"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: classes/helpers/FrmAppHelper.php:2668
|
1565 |
msgid "Romanian"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: classes/helpers/FrmAppHelper.php:2669
|
1569 |
msgid "Russian"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: classes/helpers/FrmAppHelper.php:2670
|
1573 |
+
#: classes/helpers/FrmAppHelper.php:2671
|
1574 |
msgid "Serbian"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: classes/helpers/FrmAppHelper.php:2672
|
1578 |
msgid "Slovak"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: classes/helpers/FrmAppHelper.php:2673
|
1582 |
msgid "Slovenian"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: classes/helpers/FrmAppHelper.php:2674
|
1586 |
msgid "Spanish"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: classes/helpers/FrmAppHelper.php:2675
|
1590 |
msgid "Spanish/Latin America"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: classes/helpers/FrmAppHelper.php:2676
|
1594 |
msgid "Swedish"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: classes/helpers/FrmAppHelper.php:2677
|
1598 |
msgid "Tamil"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: classes/helpers/FrmAppHelper.php:2678
|
1602 |
msgid "Thai"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: classes/helpers/FrmAppHelper.php:2679
|
1606 |
msgid "Turkish"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: classes/helpers/FrmAppHelper.php:2680
|
1610 |
msgid "Ukranian"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: classes/helpers/FrmAppHelper.php:2681
|
1614 |
msgid "Vietnamese"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: classes/helpers/FrmAppHelper.php:2723
|
1618 |
msgid "Your account has expired"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: classes/helpers/FrmAppHelper.php:2726
|
1622 |
msgid "Renew Now"
|
1623 |
msgstr ""
|
1624 |
|
1751 |
#. translators: %s: The field name.
|
1752 |
#: classes/helpers/FrmFieldsHelper.php:167
|
1753 |
#: classes/helpers/FrmFieldsHelper.php:296
|
1754 |
+
#: classes/helpers/FrmXMLHelper.php:1204
|
1755 |
#: classes/models/fields/FrmFieldType.php:583
|
1756 |
msgid "%s is invalid"
|
1757 |
msgstr ""
|
3565 |
msgid "Your server is missing the simplexml_import_dom function"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: classes/helpers/FrmXMLHelper.php:1043
|
3569 |
#: classes/views/solutions/_import.php:51
|
3570 |
msgid "Imported"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: classes/helpers/FrmXMLHelper.php:1044
|
3574 |
msgid "Updated"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: classes/helpers/FrmXMLHelper.php:1069
|
3578 |
msgid "Nothing was imported or updated"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
#. translators: %1$s: Number of items
|
3582 |
+
#: classes/helpers/FrmXMLHelper.php:1084
|
3583 |
msgid "%1$s Form"
|
3584 |
msgid_plural "%1$s Forms"
|
3585 |
msgstr[0] ""
|
3587 |
|
3588 |
#. translators: %1$s: Number of items
|
3589 |
#. translators: %1$s - field type
|
3590 |
+
#: classes/helpers/FrmXMLHelper.php:1086
|
3591 |
#: classes/models/FrmFormMigrator.php:584
|
3592 |
msgid "%1$s Field"
|
3593 |
msgid_plural "%1$s Fields"
|
3595 |
msgstr[1] ""
|
3596 |
|
3597 |
#. translators: %1$s: Number of items
|
3598 |
+
#: classes/helpers/FrmXMLHelper.php:1088
|
3599 |
msgid "%1$s Entry"
|
3600 |
msgid_plural "%1$s Entries"
|
3601 |
msgstr[0] ""
|
3602 |
msgstr[1] ""
|
3603 |
|
3604 |
#. translators: %1$s: Number of items
|
3605 |
+
#: classes/helpers/FrmXMLHelper.php:1090
|
3606 |
msgid "%1$s View"
|
3607 |
msgid_plural "%1$s Views"
|
3608 |
msgstr[0] ""
|
3609 |
msgstr[1] ""
|
3610 |
|
3611 |
#. translators: %1$s: Number of items
|
3612 |
+
#: classes/helpers/FrmXMLHelper.php:1092
|
3613 |
msgid "%1$s Post"
|
3614 |
msgid_plural "%1$s Posts"
|
3615 |
msgstr[0] ""
|
3616 |
msgstr[1] ""
|
3617 |
|
3618 |
#. translators: %1$s: Number of items
|
3619 |
+
#: classes/helpers/FrmXMLHelper.php:1094
|
3620 |
msgid "%1$s Style"
|
3621 |
msgid_plural "%1$s Styles"
|
3622 |
msgstr[0] ""
|
3623 |
msgstr[1] ""
|
3624 |
|
3625 |
#. translators: %1$s: Number of items
|
3626 |
+
#: classes/helpers/FrmXMLHelper.php:1096
|
3627 |
msgid "%1$s Term"
|
3628 |
msgid_plural "%1$s Terms"
|
3629 |
msgstr[0] ""
|
3630 |
msgstr[1] ""
|
3631 |
|
3632 |
#. translators: %1$s: Number of items
|
3633 |
+
#: classes/helpers/FrmXMLHelper.php:1098
|
3634 |
msgid "%1$s Form Action"
|
3635 |
msgid_plural "%1$s Form Actions"
|
3636 |
msgstr[0] ""
|
3637 |
msgstr[1] ""
|
3638 |
|
3639 |
+
#: classes/helpers/FrmXMLHelper.php:1122
|
3640 |
msgid "Go to imported form"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: classes/helpers/FrmXMLHelper.php:1327
|
3644 |
msgid "Create Posts"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: classes/helpers/FrmXMLHelper.php:1456
|
3648 |
msgid "Email Notification"
|
3649 |
msgstr ""
|
3650 |
|
5647 |
msgid "Upgrade to %s"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: classes/views/shared/views-info.php:21
|
|
|
|
|
|
|
|
|
5651 |
msgid "Show and Edit Entries with Views"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: classes/views/shared/views-info.php:23
|
5655 |
msgid "Bring entries to the front-end of your site for full-featured applications or just to show the content."
|
5656 |
msgstr ""
|
5657 |
|
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.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.11
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
|
11 |
|
@@ -14,7 +14,7 @@ The most advanced WordPress forms plugin. Go beyond contact forms with our drag
|
|
14 |
== The Most Powerful WordPress form builder plugin on the market ==
|
15 |
We built <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms</a> to offer the "first-ever" solutions-focused WordPress form plugin on the market. You can use our drag & drop WordPress form builder plugin to create a contact form, survey, quiz, registration form, payment form, email marketing, or calculator form. Build just about anything you can imagine.
|
16 |
|
17 |
-
At Formidable, creating the most extendable online form
|
18 |
|
19 |
Before we explore the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive. Your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
|
20 |
|
@@ -29,7 +29,7 @@ You can start with our pre-built templates or create totally custom forms from s
|
|
29 |
|
30 |
https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
|
31 |
|
32 |
-
Let’s take a look at all the powerful features for making an amazing lead form, survey form, poll, subscription form, request a quote form, donation form, user registration form,
|
33 |
|
34 |
== Drag & Drop Form Maker and Advanced Form Builder ==
|
35 |
|
@@ -39,7 +39,7 @@ Our form maker comes with all the powerful fields that you need to create a solu
|
|
39 |
|
40 |
== Complete Entry Management for Forms and Surveys ==
|
41 |
|
42 |
-
Formidable allows you to view all your quiz and survey entries right from your WordPress dashboard. When a user submits a
|
43 |
|
44 |
Formidable is a **100% GDPR-friendly** form generator. You can turn off IP tracking or stop saving submissions entirely. Or add a GDPR checkbox field to your lead forms and payment forms to collect consent.
|
45 |
|
@@ -47,11 +47,11 @@ Need to import your leads to an external service like MailChimp? No problem. **E
|
|
47 |
|
48 |
You can also configure unlimited email notifications and autoresponders triggered by form submissions.
|
49 |
|
50 |
-
On top of that, you can easily customize the success message after a
|
51 |
|
52 |
== The Only Form Maker Plugin with an Advanced Form Styler ==
|
53 |
|
54 |
-
With our built-in styler, you can instantly customize the look and feel of your
|
55 |
|
56 |
By default, a single styling template is added to your WordPress forms. If you want a custom form style for each footer and sidebar form, check out the premium version of Formidable.
|
57 |
|
@@ -89,7 +89,7 @@ As you can see, Formidable is not your average contact form plugin. It's a true
|
|
89 |
|
90 |
== Increase Sales with WooCommerce Product Order Forms ==
|
91 |
|
92 |
-
Formidable is the only WordPress form
|
93 |
|
94 |
Our goal is to empower you to build powerful WooCommerce product order forms, so you can increase your store sales.
|
95 |
|
@@ -105,9 +105,8 @@ More on quizzes later, but here are some example online calculators that you can
|
|
105 |
* <a href="https://formidableforms.com/form-templates/simple-mortgage-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Basic Mortgage Calculator</a>
|
106 |
* <a href="https://formidableforms.com/form-templates/automobile-payment-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Car Payment Calculator</a>
|
107 |
* <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey</a>
|
108 |
-
* <a href="https://formidableforms.com/form-templates/bmi-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">BMI Calculator</a> and
|
109 |
* <a href="https://formidableforms.com/form-templates/age-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User Age Calculator</a>
|
110 |
-
* Online Quote Calculator
|
111 |
* Finance Calculator
|
112 |
* Booking Cost Calculator
|
113 |
* Price Calculator
|
@@ -136,7 +135,7 @@ We're on a mission to offer an all-in-one solution-focused WordPress form plugin
|
|
136 |
|
137 |
Formidable is the WordPress form plugin of choice for smart developers, freelancers, and agencies. It helps you build complex solutions and simple forms quickly to defy the limits imposed by time and knowledge.
|
138 |
|
139 |
-
Our goal is to help you build complex websites with low overhead. That's why we made Formidable the most extendable WordPress form
|
140 |
|
141 |
A Formidable View allows you to display form data anywhere, so you can quickly create data-driven web applications.
|
142 |
|
@@ -161,10 +160,10 @@ Since Formidable is not your average WordPress form plugin, this feature list is
|
|
161 |
* <a href="https://formidableforms.com/features/email-autoresponders-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Send email notifications & autoresponders</a>. Let clients know you received their message. Then create customized email notifications for multiple recipients and get info from an email form to those who need it.
|
162 |
* Email routing. Conditionally send multiple autoresponder emails and notifications based on values in email forms, user registration forms, and payment forms.
|
163 |
* Pricing fields for easy eCommerce forms with automatic price calculations. Drop in a product field, quantity, and total and you're good to go.
|
164 |
-
* <a href="https://formidableforms.com/wordpress-calculator-plugin/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Calculator forms</a>. Create complex calculations and combine text from multiple fields. This is great for a mortgage calculator, auto loan calculator, and more. Price calculations give site visitors easy quotes and price estimates.
|
165 |
-
* <a href="https://formidableforms.com/features/wordpress-visual-form-styler/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Visual style creator</a>. Having trouble styling your WordPress forms? Our form creator allows you to custom brand
|
166 |
* <a href="https://formidableforms.com/features/flexible-layouts-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Flexible form layout design</a>. Build mobile responsive forms and advanced layouts with multiple fields in a row with our CSS layout classes.
|
167 |
-
* <a href="https://formidableforms.com/features/wordpress-mobile-friendly-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Mobile-friendly, responsive forms</a>. All of our forms are sized for any screen size. Ensure that everyone can use your surveys,
|
168 |
* <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User submitted front-end posts and pages</a>. Create and edit WordPress posts, pages, and custom post types from front-end online forms. Send user-generated content quickly from a post creation form to a page.
|
169 |
* <a href="https://formidableforms.com/features/form-entry-management-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Simple entry management</a>. Flexibly display, edit, and delete form entries. Let logged-in users can manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and more.
|
170 |
* <a href="https://formidableforms.com/features/front-end-editing-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress front-end editing</a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.
|
@@ -174,9 +173,9 @@ Since Formidable is not your average WordPress form plugin, this feature list is
|
|
174 |
* Entry limits. Limit surveys, registration forms, bookings, quizzes, or directory submissions to only allow one entry per user, IP, or cookie.
|
175 |
* <a href="https://formidableforms.com/features/wordpress-schedule-forms-limit-responses/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form scheduling</a>. Open and close event registration and signup forms on a specific date. Or close registration forms when the seat limit has been reached.
|
176 |
* Conditionally redirect after a custom search form, payment form, feedback form, support ticket form, quiz, or other online form is submitted. Help clients find the answers they need and show a tailored result based on their selections or calculated fields.
|
177 |
-
* We believe that forms should meet your needs. So we give you access to <a href="https://formidableforms.com/features/customize-form-html-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">customize the form HTML</a> (like Contact Form 7). But you keep the ease and speed of a drag & drop form
|
178 |
* <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Import and export forms, form submissions, styles, and views</a>. Quickly move forms, entries, views and styles to another site. Need to export leads to another service? Done.
|
179 |
-
* <a href="https://formidableforms.com/features/wordpress-form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form templates for instant form building</a>. Get started quickly with the most advanced form creator that includes form templates and style templates. Our WordPress form generator makes it FAST to build job application forms
|
180 |
* Import our <a href="https://formidableforms.com/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">pre-built form templates</a> as a shortcut to a final product. Our growing form template library includes payment forms, a WooCommerce product creator, and more.
|
181 |
* <a href="https://formidableforms.com/features/wcag-accessible-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WCAG accessible forms with A11Y and ADA compliance</a>. Ensure your survey, lead capture form, quizzes, and other online forms are compliant and available to everyone. Allow those using screenreaders to successfully use your WordPress forms.
|
182 |
* <a href="https://formidableforms.com/features/invisible-spam-protection/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Invisible SPAM protection</a>. Don't waste time sorting through SPAM. Get instant and powerful anti-spam features from honeypot, invisible Google reCAPTCHA, Akismet, and the WordPress comment blacklist.
|
@@ -315,7 +314,6 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
|
|
315 |
* Mortgage Calculator
|
316 |
* Car Payment Calculator
|
317 |
* BMI Calculator
|
318 |
-
* User Age Calculator
|
319 |
* Online Quote Calculator
|
320 |
* Recipe Reviews
|
321 |
* Personality Quiz
|
@@ -436,6 +434,11 @@ 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.11 =
|
440 |
* New: Added a quick and easy Name field with options for First, Middle, and Last names.
|
441 |
* New: Added a more powerful spam protection using JavaScript. This can be turned on in the settings for each form.
|
@@ -461,15 +464,11 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
|
|
461 |
= 4.10 =
|
462 |
* Fix: Some fields, including signatures, were not properly detecting duplicate entries.
|
463 |
* Fix: Zeros were not appearing when used as a placeholder value.
|
464 |
-
* Fix: Prevent a warning when previewing a
|
465 |
|
466 |
= 4.09.08 =
|
467 |
* New: If you add or remove an action and try to leave the page without saving, there will be a warning.
|
468 |
* Fix: The style editor save button was hidden in WordPress 5.7.
|
469 |
* Fix: There were a couple of words misspelled on the welcome page.
|
470 |
|
471 |
-
= 4.09.07 =
|
472 |
-
* Fix: Duplicated fields would occasionally generate long field keys that were preventing fields from being created.
|
473 |
-
* Fix: Fields for controlling radio options in the form builder were not using unique id attribute values.
|
474 |
-
|
475 |
<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.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.11.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 |
|
14 |
== The Most Powerful WordPress form builder plugin on the market ==
|
15 |
We built <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms</a> to offer the "first-ever" solutions-focused WordPress form plugin on the market. You can use our drag & drop WordPress form builder plugin to create a contact form, survey, quiz, registration form, payment form, email marketing, or calculator form. Build just about anything you can imagine.
|
16 |
|
17 |
+
At Formidable, creating the most extendable online form plugin is our #1 priority. Unlike other WordPress form maker plugins, we believe in pushing the limits. We want to give you the tools to save time and create complex forms quickly!
|
18 |
|
19 |
Before we explore the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive. Your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
|
20 |
|
29 |
|
30 |
https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
|
31 |
|
32 |
+
Let’s take a look at all the powerful features for making an amazing lead form, survey form, poll, subscription form, request a quote form, donation form, user registration form, or payment form.
|
33 |
|
34 |
== Drag & Drop Form Maker and Advanced Form Builder ==
|
35 |
|
39 |
|
40 |
== Complete Entry Management for Forms and Surveys ==
|
41 |
|
42 |
+
Formidable allows you to view all your quiz and survey entries right from your WordPress dashboard. When a user submits a form, it's stored in your WordPress database so you won’t lose any leads.
|
43 |
|
44 |
Formidable is a **100% GDPR-friendly** form generator. You can turn off IP tracking or stop saving submissions entirely. Or add a GDPR checkbox field to your lead forms and payment forms to collect consent.
|
45 |
|
47 |
|
48 |
You can also configure unlimited email notifications and autoresponders triggered by form submissions.
|
49 |
|
50 |
+
On top of that, you can easily customize the success message after a form is submitted, or redirect visitors to another page.
|
51 |
|
52 |
== The Only Form Maker Plugin with an Advanced Form Styler ==
|
53 |
|
54 |
+
With our built-in styler, you can instantly customize the look and feel of your form. With just a few clicks, your email form can be transformed to match your website design.
|
55 |
|
56 |
By default, a single styling template is added to your WordPress forms. If you want a custom form style for each footer and sidebar form, check out the premium version of Formidable.
|
57 |
|
89 |
|
90 |
== Increase Sales with WooCommerce Product Order Forms ==
|
91 |
|
92 |
+
Formidable is the only WordPress form plugin that offers extensive integration with WooCommerce orders.
|
93 |
|
94 |
Our goal is to empower you to build powerful WooCommerce product order forms, so you can increase your store sales.
|
95 |
|
105 |
* <a href="https://formidableforms.com/form-templates/simple-mortgage-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Basic Mortgage Calculator</a>
|
106 |
* <a href="https://formidableforms.com/form-templates/automobile-payment-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Car Payment Calculator</a>
|
107 |
* <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey</a>
|
108 |
+
* <a href="https://formidableforms.com/form-templates/bmi-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">BMI Calculator</a> and others for Health and Fitness
|
109 |
* <a href="https://formidableforms.com/form-templates/age-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User Age Calculator</a>
|
|
|
110 |
* Finance Calculator
|
111 |
* Booking Cost Calculator
|
112 |
* Price Calculator
|
135 |
|
136 |
Formidable is the WordPress form plugin of choice for smart developers, freelancers, and agencies. It helps you build complex solutions and simple forms quickly to defy the limits imposed by time and knowledge.
|
137 |
|
138 |
+
Our goal is to help you build complex websites with low overhead. That's why we made Formidable the most extendable WordPress form plugin on the market. We want to make it possible for anyone to defy gravity and build anything.
|
139 |
|
140 |
A Formidable View allows you to display form data anywhere, so you can quickly create data-driven web applications.
|
141 |
|
160 |
* <a href="https://formidableforms.com/features/email-autoresponders-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Send email notifications & autoresponders</a>. Let clients know you received their message. Then create customized email notifications for multiple recipients and get info from an email form to those who need it.
|
161 |
* Email routing. Conditionally send multiple autoresponder emails and notifications based on values in email forms, user registration forms, and payment forms.
|
162 |
* Pricing fields for easy eCommerce forms with automatic price calculations. Drop in a product field, quantity, and total and you're good to go.
|
163 |
+
* <a href="https://formidableforms.com/wordpress-calculator-plugin/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Calculator forms</a>. Create complex calculations and combine text from multiple fields. This is great for a mortgage calculator, auto loan calculator, and more. Price calculations give site visitors easy quotes and price estimates. Your clients will love the range sliders too.
|
164 |
+
* <a href="https://formidableforms.com/features/wordpress-visual-form-styler/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Visual style creator</a>. Having trouble styling your WordPress forms? Our form creator allows you to custom brand email forms, quiz forms, and other WP forms to match your site. Change colors, borders, font sizes, and more without any code.
|
165 |
* <a href="https://formidableforms.com/features/flexible-layouts-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Flexible form layout design</a>. Build mobile responsive forms and advanced layouts with multiple fields in a row with our CSS layout classes.
|
166 |
+
* <a href="https://formidableforms.com/features/wordpress-mobile-friendly-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Mobile-friendly, responsive forms</a>. All of our forms are sized for any screen size. Ensure that everyone can use your surveys, Stripe forms, and web forms on any device.
|
167 |
* <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User submitted front-end posts and pages</a>. Create and edit WordPress posts, pages, and custom post types from front-end online forms. Send user-generated content quickly from a post creation form to a page.
|
168 |
* <a href="https://formidableforms.com/features/form-entry-management-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Simple entry management</a>. Flexibly display, edit, and delete form entries. Let logged-in users can manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and more.
|
169 |
* <a href="https://formidableforms.com/features/front-end-editing-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress front-end editing</a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.
|
173 |
* Entry limits. Limit surveys, registration forms, bookings, quizzes, or directory submissions to only allow one entry per user, IP, or cookie.
|
174 |
* <a href="https://formidableforms.com/features/wordpress-schedule-forms-limit-responses/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form scheduling</a>. Open and close event registration and signup forms on a specific date. Or close registration forms when the seat limit has been reached.
|
175 |
* Conditionally redirect after a custom search form, payment form, feedback form, support ticket form, quiz, or other online form is submitted. Help clients find the answers they need and show a tailored result based on their selections or calculated fields.
|
176 |
+
* We believe that forms should meet your needs. So we give you access to <a href="https://formidableforms.com/features/customize-form-html-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">customize the form HTML</a> (like Contact Form 7). But you keep the ease and speed of a drag & drop form plugin. Our team labors for simplicity without sacrificing flexibility.
|
177 |
* <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Import and export forms, form submissions, styles, and views</a>. Quickly move forms, entries, views and styles to another site. Need to export leads to another service? Done.
|
178 |
+
* <a href="https://formidableforms.com/features/wordpress-form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form templates for instant form building</a>. Get started quickly with the most advanced form creator that includes form templates and style templates. Our WordPress form generator makes it FAST to build job application forms and other types of online forms.
|
179 |
* Import our <a href="https://formidableforms.com/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">pre-built form templates</a> as a shortcut to a final product. Our growing form template library includes payment forms, a WooCommerce product creator, and more.
|
180 |
* <a href="https://formidableforms.com/features/wcag-accessible-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WCAG accessible forms with A11Y and ADA compliance</a>. Ensure your survey, lead capture form, quizzes, and other online forms are compliant and available to everyone. Allow those using screenreaders to successfully use your WordPress forms.
|
181 |
* <a href="https://formidableforms.com/features/invisible-spam-protection/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Invisible SPAM protection</a>. Don't waste time sorting through SPAM. Get instant and powerful anti-spam features from honeypot, invisible Google reCAPTCHA, Akismet, and the WordPress comment blacklist.
|
314 |
* Mortgage Calculator
|
315 |
* Car Payment Calculator
|
316 |
* BMI Calculator
|
|
|
317 |
* Online Quote Calculator
|
318 |
* Recipe Reviews
|
319 |
* Personality Quiz
|
434 |
See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
|
435 |
|
436 |
== Changelog ==
|
437 |
+
= 4.11.01 =
|
438 |
+
* New: Added a new frm_duplicate_check_val filter for customizing the duplicate entry check. This can be used to remove IP to help prevent duplicate entries for longer periods of time when using frm_time_to_check_duplicates filter. For an example see https://formidableforms.com/knowledgebase/frm_duplicate_check_val/.
|
439 |
+
* New: Added visibility option to the Name field.
|
440 |
+
* Fix: The honeypot setting would still appear as on after it was turned off.
|
441 |
+
|
442 |
= 4.11 =
|
443 |
* New: Added a quick and easy Name field with options for First, Middle, and Last names.
|
444 |
* New: Added a more powerful spam protection using JavaScript. This can be turned on in the settings for each form.
|
464 |
= 4.10 =
|
465 |
* Fix: Some fields, including signatures, were not properly detecting duplicate entries.
|
466 |
* Fix: Zeros were not appearing when used as a placeholder value.
|
467 |
+
* Fix: Prevent a warning when previewing a form with no fields.
|
468 |
|
469 |
= 4.09.08 =
|
470 |
* New: If you add or remove an action and try to leave the page without saving, there will be a warning.
|
471 |
* Fix: The style editor save button was hidden in WordPress 5.7.
|
472 |
* Fix: There were a couple of words misspelled on the welcome page.
|
473 |
|
|
|
|
|
|
|
|
|
474 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|