Version Description
- New: Use autocomplete for settings for selecting a WordPress page for faster load time on sites with many pages.
- Fix: When saving conditional logic settings in WP 5.3.1, there was a PHP error message showing on some sites.
- Fix: Custom CSS was being sanitized incorrectly and > was switched to &rt;
Download this release
Release Info
Developer | sswells |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 4.03.06 |
Comparing to | |
See all releases |
Code changes from version 4.03.05 to 4.03.06
- classes/controllers/FrmHooksController.php +1 -0
- classes/controllers/FrmSettingsController.php +36 -0
- classes/helpers/FrmAppHelper.php +70 -15
- classes/helpers/FrmFieldsHelper.php +6 -2
- classes/models/FrmStyle.php +1 -1
- classes/models/fields/FrmFieldUserID.php +10 -4
- classes/views/frm-forms/settings-advanced.php +2 -1
- css/frm_admin.css +30 -1
- formidable.php +1 -1
- js/formidable_admin.js +71 -1
- languages/formidable.pot +433 -431
- readme.txt +46 -46
classes/controllers/FrmHooksController.php
CHANGED
@@ -127,6 +127,7 @@ class FrmHooksController {
|
|
127 |
add_action( 'frm_before_settings', 'FrmSettingsController::license_box' );
|
128 |
add_action( 'frm_after_settings', 'FrmSettingsController::settings_cta' );
|
129 |
add_action( 'wp_ajax_frm_settings_tab', 'FrmSettingsController::load_settings_tab' );
|
|
|
130 |
|
131 |
// Styles Controller.
|
132 |
add_action( 'admin_menu', 'FrmStylesController::menu', 14 );
|
127 |
add_action( 'frm_before_settings', 'FrmSettingsController::license_box' );
|
128 |
add_action( 'frm_after_settings', 'FrmSettingsController::settings_cta' );
|
129 |
add_action( 'wp_ajax_frm_settings_tab', 'FrmSettingsController::load_settings_tab' );
|
130 |
+
add_action( 'wp_ajax_frm_page_search', 'FrmSettingsController::page_search' );
|
131 |
|
132 |
// Styles Controller.
|
133 |
add_action( 'admin_menu', 'FrmStylesController::menu', 14 );
|
classes/controllers/FrmSettingsController.php
CHANGED
@@ -294,4 +294,40 @@ class FrmSettingsController {
|
|
294 |
wp_send_json_success();
|
295 |
}
|
296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
}
|
294 |
wp_send_json_success();
|
295 |
}
|
296 |
|
297 |
+
/**
|
298 |
+
* Autocomplete page admin ajax endpoint
|
299 |
+
*
|
300 |
+
* @since 4.03.06
|
301 |
+
*/
|
302 |
+
public static function page_search() {
|
303 |
+
FrmAppHelper::permission_check( 'frm_edit_forms' );
|
304 |
+
check_ajax_referer( 'frm_ajax', 'nonce' );
|
305 |
+
|
306 |
+
global $wpdb;
|
307 |
+
|
308 |
+
$term = FrmAppHelper::get_param( 'term', '', 'get', 'sanitize_text_field' );
|
309 |
+
|
310 |
+
$where = array(
|
311 |
+
'post_status' => 'publish',
|
312 |
+
'post_type' => 'page',
|
313 |
+
'post_title LIKE' => $term,
|
314 |
+
);
|
315 |
+
|
316 |
+
$atts = array(
|
317 |
+
'limit' => 25,
|
318 |
+
'order_by' => 'post_title',
|
319 |
+
);
|
320 |
+
|
321 |
+
$pages = FrmDb::get_results( $wpdb->posts, $where, 'ID, post_title', $atts );
|
322 |
+
|
323 |
+
$results = array();
|
324 |
+
foreach ( $pages as $page ) {
|
325 |
+
$results[] = array(
|
326 |
+
'value' => $page->ID,
|
327 |
+
'label' => $page->post_title,
|
328 |
+
);
|
329 |
+
}
|
330 |
+
|
331 |
+
wp_send_json( $results );
|
332 |
+
}
|
333 |
}
|
classes/helpers/FrmAppHelper.php
CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
|
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
-
public static $plug_version = '4.03.
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
@@ -1010,12 +1010,70 @@ class FrmAppHelper {
|
|
1010 |
return get_posts( $query );
|
1011 |
}
|
1012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
/**
|
1014 |
* @param array $args
|
1015 |
* @param string $page_id Deprecated.
|
1016 |
* @param boolean $truncate Deprecated.
|
1017 |
*/
|
1018 |
public static function wp_pages_dropdown( $args = array(), $page_id = '', $truncate = false ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
if ( ! is_array( $args ) ) {
|
1020 |
$args = array(
|
1021 |
'field_name' => $args,
|
@@ -1024,27 +1082,23 @@ class FrmAppHelper {
|
|
1024 |
);
|
1025 |
}
|
1026 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
$defaults = array(
|
1028 |
'truncate' => false,
|
1029 |
'placeholder' => ' ',
|
1030 |
'field_name' => '',
|
1031 |
'page_id' => '',
|
1032 |
);
|
1033 |
-
$args = array_merge( $defaults, $args );
|
1034 |
-
|
1035 |
-
$pages = self::get_pages();
|
1036 |
-
$selected = self::get_post_param( $args['field_name'], $args['page_id'], 'absint' );
|
1037 |
|
1038 |
-
|
1039 |
-
<select name="<?php echo esc_attr( $args['field_name'] ); ?>" id="<?php echo esc_attr( $args['field_name'] ); ?>" class="frm-pages-dropdown">
|
1040 |
-
<option value=""><?php echo esc_html( $args['placeholder'] ); ?></option>
|
1041 |
-
<?php foreach ( $pages as $page ) { ?>
|
1042 |
-
<option value="<?php echo esc_attr( $page->ID ); ?>" <?php selected( $selected, $page->ID ); ?>>
|
1043 |
-
<?php echo esc_html( $truncate ? self::truncate( $page->post_title, $args['truncate'] ) : $page->post_title ); ?>
|
1044 |
-
</option>
|
1045 |
-
<?php } ?>
|
1046 |
-
</select>
|
1047 |
-
<?php
|
1048 |
}
|
1049 |
|
1050 |
public static function post_edit_link( $post_id ) {
|
@@ -2208,6 +2262,7 @@ class FrmAppHelper {
|
|
2208 |
'checkbox_limit' => __( 'Please select a limit between 0 and 200.', 'formidable' ),
|
2209 |
'install' => __( 'Install', 'formidable' ),
|
2210 |
'active' => __( 'Active', 'formidable' ),
|
|
|
2211 |
);
|
2212 |
wp_localize_script( 'formidable_admin', 'frm_admin_js', $admin_script_strings );
|
2213 |
}
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
+
public static $plug_version = '4.03.06';
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
1010 |
return get_posts( $query );
|
1011 |
}
|
1012 |
|
1013 |
+
/**
|
1014 |
+
* Renders an autocomplete page selection or a regular dropdown depending on
|
1015 |
+
* the total page count
|
1016 |
+
*
|
1017 |
+
* @since 4.03.06
|
1018 |
+
*/
|
1019 |
+
public static function maybe_autocomplete_pages_options( $args ) {
|
1020 |
+
$args = self::preformat_selection_args( $args );
|
1021 |
+
|
1022 |
+
$pages_count = wp_count_posts( 'page' );
|
1023 |
+
|
1024 |
+
if ( $pages_count->publish <= 50 ) {
|
1025 |
+
self::wp_pages_dropdown( $args );
|
1026 |
+
return;
|
1027 |
+
}
|
1028 |
+
|
1029 |
+
wp_enqueue_script( 'jquery-ui-autocomplete' );
|
1030 |
+
|
1031 |
+
$selected = self::get_post_param( $args['field_name'], $args['page_id'], 'absint' );
|
1032 |
+
$title = '';
|
1033 |
+
|
1034 |
+
if ( $selected ) {
|
1035 |
+
$title = get_the_title( $selected );
|
1036 |
+
}
|
1037 |
+
|
1038 |
+
?>
|
1039 |
+
<input type="text" class="frm-page-search"
|
1040 |
+
placeholder="<?php esc_html_e( 'Select a Page', 'formidable' ); ?>"
|
1041 |
+
value="<?php echo esc_attr( $title ); ?>" />
|
1042 |
+
<input type="hidden" name="<?php echo esc_attr( $args['field_name'] ); ?>"
|
1043 |
+
value="<?php echo esc_attr( $selected ); ?>" />
|
1044 |
+
<?php
|
1045 |
+
}
|
1046 |
+
|
1047 |
/**
|
1048 |
* @param array $args
|
1049 |
* @param string $page_id Deprecated.
|
1050 |
* @param boolean $truncate Deprecated.
|
1051 |
*/
|
1052 |
public static function wp_pages_dropdown( $args = array(), $page_id = '', $truncate = false ) {
|
1053 |
+
self::prep_page_dropdown_params( $page_id, $truncate, $args );
|
1054 |
+
|
1055 |
+
$pages = self::get_pages();
|
1056 |
+
$selected = self::get_post_param( $args['field_name'], $args['page_id'], 'absint' );
|
1057 |
+
|
1058 |
+
?>
|
1059 |
+
<select name="<?php echo esc_attr( $args['field_name'] ); ?>" id="<?php echo esc_attr( $args['field_name'] ); ?>" class="frm-pages-dropdown">
|
1060 |
+
<option value=""><?php echo esc_html( $args['placeholder'] ); ?></option>
|
1061 |
+
<?php foreach ( $pages as $page ) { ?>
|
1062 |
+
<option value="<?php echo esc_attr( $page->ID ); ?>" <?php selected( $selected, $page->ID ); ?>>
|
1063 |
+
<?php echo esc_html( $args['truncate'] ? self::truncate( $page->post_title, $args['truncate'] ) : $page->post_title ); ?>
|
1064 |
+
</option>
|
1065 |
+
<?php } ?>
|
1066 |
+
</select>
|
1067 |
+
<?php
|
1068 |
+
}
|
1069 |
+
|
1070 |
+
/**
|
1071 |
+
* Fill in missing parameters passed to wp_pages_dropdown().
|
1072 |
+
* This is for reverse compatibility with switching 3 params to 1.
|
1073 |
+
*
|
1074 |
+
* @since 4.03.06
|
1075 |
+
*/
|
1076 |
+
private static function prep_page_dropdown_params( $page_id, $truncate, &$args ) {
|
1077 |
if ( ! is_array( $args ) ) {
|
1078 |
$args = array(
|
1079 |
'field_name' => $args,
|
1082 |
);
|
1083 |
}
|
1084 |
|
1085 |
+
$args = self::preformat_selection_args( $args );
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
/**
|
1089 |
+
* Filter to format args for page dropdown or autocomplete
|
1090 |
+
*
|
1091 |
+
* @since 4.03.06
|
1092 |
+
*/
|
1093 |
+
private static function preformat_selection_args( $args ) {
|
1094 |
$defaults = array(
|
1095 |
'truncate' => false,
|
1096 |
'placeholder' => ' ',
|
1097 |
'field_name' => '',
|
1098 |
'page_id' => '',
|
1099 |
);
|
|
|
|
|
|
|
|
|
1100 |
|
1101 |
+
return array_merge( $defaults, $args );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1102 |
}
|
1103 |
|
1104 |
public static function post_edit_link( $post_id ) {
|
2262 |
'checkbox_limit' => __( 'Please select a limit between 0 and 200.', 'formidable' ),
|
2263 |
'install' => __( 'Install', 'formidable' ),
|
2264 |
'active' => __( 'Active', 'formidable' ),
|
2265 |
+
'no_items_found' => __( 'No items found.', 'formidable' ),
|
2266 |
);
|
2267 |
wp_localize_script( 'formidable_admin', 'frm_admin_js', $admin_script_strings );
|
2268 |
}
|
classes/helpers/FrmFieldsHelper.php
CHANGED
@@ -192,7 +192,9 @@ class FrmFieldsHelper {
|
|
192 |
// TODO: Remove stripslashes on output, and use on input only.
|
193 |
$value = sanitize_text_field( $_POST['field_options'][ $setting ] ); // WPCS: sanitization ok.
|
194 |
} else {
|
195 |
-
|
|
|
|
|
196 |
}
|
197 |
}
|
198 |
|
@@ -602,7 +604,9 @@ class FrmFieldsHelper {
|
|
602 |
$value = trim( $value );
|
603 |
}
|
604 |
|
605 |
-
|
|
|
|
|
606 |
}
|
607 |
|
608 |
public static function array_value_condition( $observed_value, $cond, $hide_opt ) {
|
192 |
// TODO: Remove stripslashes on output, and use on input only.
|
193 |
$value = sanitize_text_field( $_POST['field_options'][ $setting ] ); // WPCS: sanitization ok.
|
194 |
} else {
|
195 |
+
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
196 |
+
$value = wp_unslash( $_POST['field_options'][ $setting ] );
|
197 |
+
FrmAppHelper::sanitize_value( 'wp_kses_post', $value );
|
198 |
}
|
199 |
}
|
200 |
|
604 |
$value = trim( $value );
|
605 |
}
|
606 |
|
607 |
+
FrmAppHelper::sanitize_value( 'wp_kses_post', $value );
|
608 |
+
|
609 |
+
return $value;
|
610 |
}
|
611 |
|
612 |
public static function array_value_condition( $observed_value, $cond, $hide_opt ) {
|
classes/models/FrmStyle.php
CHANGED
@@ -69,7 +69,7 @@ class FrmStyle {
|
|
69 |
|
70 |
// Don't wp_unslash yet since it removes backslashes.
|
71 |
$new_instance['post_content'] = isset( $_POST['frm_style_setting']['post_content'] ) ? $_POST['frm_style_setting']['post_content'] : ''; // WPCS: sanitization ok.
|
72 |
-
FrmAppHelper::sanitize_value( '
|
73 |
$new_instance['post_type'] = FrmStylesController::$post_type;
|
74 |
$new_instance['post_status'] = 'publish';
|
75 |
$new_instance['menu_order'] = isset( $_POST['frm_style_setting']['menu_order'] ) ? absint( $_POST['frm_style_setting']['menu_order'] ) : 0;
|
69 |
|
70 |
// Don't wp_unslash yet since it removes backslashes.
|
71 |
$new_instance['post_content'] = isset( $_POST['frm_style_setting']['post_content'] ) ? $_POST['frm_style_setting']['post_content'] : ''; // WPCS: sanitization ok.
|
72 |
+
FrmAppHelper::sanitize_value( 'sanitize_textarea_field', $new_instance['post_content'] );
|
73 |
$new_instance['post_type'] = FrmStylesController::$post_type;
|
74 |
$new_instance['post_status'] = 'publish';
|
75 |
$new_instance['menu_order'] = isset( $_POST['frm_style_setting']['menu_order'] ) ? absint( $_POST['frm_style_setting']['menu_order'] ) : 0;
|
classes/models/fields/FrmFieldUserID.php
CHANGED
@@ -37,16 +37,22 @@ class FrmFieldUserID extends FrmFieldType {
|
|
37 |
}
|
38 |
|
39 |
public function prepare_field_html( $args ) {
|
40 |
-
$args
|
|
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
$user_ID = get_current_user_id();
|
43 |
$user_ID = ( $user_ID ? $user_ID : '' );
|
44 |
$posted_value = ( FrmAppHelper::is_admin() && $_POST && isset( $_POST['item_meta'][ $this->field['id'] ] ) ); // WPCS: CSRF ok.
|
45 |
$action = ( isset( $args['action'] ) ? $args['action'] : ( isset( $args['form_action'] ) ? $args['form_action'] : '' ) );
|
46 |
$updating = $action == 'update';
|
47 |
-
|
48 |
-
|
49 |
-
echo '<input type="hidden" name="' . esc_attr( $args['field_name'] ) . '" id="' . esc_attr( $args['html_id'] ) . '" value="' . esc_attr( $value ) . '" data-frmval="' . esc_attr( $value ) . '"/>' . "\n";
|
50 |
}
|
51 |
|
52 |
public function validate( $args ) {
|
37 |
}
|
38 |
|
39 |
public function prepare_field_html( $args ) {
|
40 |
+
$args = $this->fill_display_field_values( $args );
|
41 |
+
$value = $this->get_field_value( $args );
|
42 |
|
43 |
+
echo '<input type="hidden" name="' . esc_attr( $args['field_name'] ) . '" id="' . esc_attr( $args['html_id'] ) . '" value="' . esc_attr( $value ) . '" data-frmval="' . esc_attr( $value ) . '"/>' . "\n";
|
44 |
+
}
|
45 |
+
|
46 |
+
/**
|
47 |
+
* @since 4.03.06
|
48 |
+
*/
|
49 |
+
protected function get_field_value( $args ) {
|
50 |
$user_ID = get_current_user_id();
|
51 |
$user_ID = ( $user_ID ? $user_ID : '' );
|
52 |
$posted_value = ( FrmAppHelper::is_admin() && $_POST && isset( $_POST['item_meta'][ $this->field['id'] ] ) ); // WPCS: CSRF ok.
|
53 |
$action = ( isset( $args['action'] ) ? $args['action'] : ( isset( $args['form_action'] ) ? $args['form_action'] : '' ) );
|
54 |
$updating = $action == 'update';
|
55 |
+
return ( is_numeric( $this->field['value'] ) || $posted_value || $updating ) ? $this->field['value'] : $user_ID;
|
|
|
|
|
56 |
}
|
57 |
|
58 |
public function validate( $args ) {
|
classes/views/frm-forms/settings-advanced.php
CHANGED
@@ -84,8 +84,9 @@
|
|
84 |
</span>
|
85 |
|
86 |
<span class="success_action_page_box success_action_box<?php echo esc_attr( $values['success_action'] === 'page' ? '' : ' frm_hidden' ); ?>">
|
|
|
87 |
<?php
|
88 |
-
FrmAppHelper::
|
89 |
array(
|
90 |
'field_name' => 'options[success_page_id]',
|
91 |
'page_id' => isset( $values['success_page_id'] ) ? $values['success_page_id'] : '',
|
84 |
</span>
|
85 |
|
86 |
<span class="success_action_page_box success_action_box<?php echo esc_attr( $values['success_action'] === 'page' ? '' : ' frm_hidden' ); ?>">
|
87 |
+
|
88 |
<?php
|
89 |
+
FrmAppHelper::maybe_autocomplete_pages_options(
|
90 |
array(
|
91 |
'field_name' => 'options[success_page_id]',
|
92 |
'page_id' => isset( $values['success_page_id'] ) ? $values['success_page_id'] : '',
|
css/frm_admin.css
CHANGED
@@ -3762,6 +3762,36 @@ h2.frm-h2,
|
|
3762 |
width: 95%;
|
3763 |
}
|
3764 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3765 |
.frm_select_with_label {
|
3766 |
margin: 7px 0 0;
|
3767 |
}
|
@@ -7178,4 +7208,3 @@ Responsive Design
|
|
7178 |
width: 100%;
|
7179 |
}
|
7180 |
}
|
7181 |
-
|
3762 |
width: 95%;
|
3763 |
}
|
3764 |
|
3765 |
+
.frm_wrap .ui-autocomplete {
|
3766 |
+
box-shadow: none;
|
3767 |
+
border: 1px solid var(--grey-border);
|
3768 |
+
border-radius: var(--small-radius);
|
3769 |
+
background: var(--lightest-grey);
|
3770 |
+
position: absolute;
|
3771 |
+
padding: 3px 0;
|
3772 |
+
font-size: 15px;
|
3773 |
+
max-height: 310px;
|
3774 |
+
overflow-y: auto;
|
3775 |
+
overflow-x: hidden;
|
3776 |
+
}
|
3777 |
+
|
3778 |
+
.frm_wrap .ui-widget {
|
3779 |
+
font-family: inherit;
|
3780 |
+
}
|
3781 |
+
|
3782 |
+
.frm_wrap .ui-autocomplete li {
|
3783 |
+
padding: 2px 10px;
|
3784 |
+
background: none;
|
3785 |
+
color: var(--dark-grey);
|
3786 |
+
border: none;
|
3787 |
+
font-weight: normal;
|
3788 |
+
}
|
3789 |
+
|
3790 |
+
.frm_wrap .ui-autocomplete li.ui-state-focus {
|
3791 |
+
background: rgb(65, 153, 253);
|
3792 |
+
color: #fff;
|
3793 |
+
}
|
3794 |
+
|
3795 |
.frm_select_with_label {
|
3796 |
margin: 7px 0 0;
|
3797 |
}
|
7208 |
width: 100%;
|
7209 |
}
|
7210 |
}
|
|
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.03.
|
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.03.06
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
js/formidable_admin.js
CHANGED
@@ -4626,6 +4626,72 @@ function frmAdminBuildJS() {
|
|
4626 |
jQuery( document ).on( 'submit', '#frm-new-template', installTemplate );
|
4627 |
}
|
4628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4629 |
function frmApiPreview( cont, link ) {
|
4630 |
cont.innerHTML = '<div class="frm-wait"></div>';
|
4631 |
jQuery.ajax( {
|
@@ -4915,6 +4981,7 @@ function frmAdminBuildJS() {
|
|
4915 |
} else {
|
4916 |
// New form selection page
|
4917 |
initNewFormModal();
|
|
|
4918 |
|
4919 |
jQuery( '[data-frmprint]' ).click( function() {
|
4920 |
window.print();
|
@@ -5230,6 +5297,9 @@ function frmAdminBuildJS() {
|
|
5230 |
jQuery( '.edit_action_message_box' ).fadeOut( 'slow' );//Hide On Update message box
|
5231 |
}
|
5232 |
} );
|
|
|
|
|
|
|
5233 |
},
|
5234 |
|
5235 |
panelInit: function() {
|
@@ -5649,4 +5719,4 @@ if (!String.prototype.startsWith) {
|
|
5649 |
return this.substring(pos, pos + search.length) === search;
|
5650 |
}
|
5651 |
});
|
5652 |
-
}
|
4626 |
jQuery( document ).on( 'submit', '#frm-new-template', installTemplate );
|
4627 |
}
|
4628 |
|
4629 |
+
function initSelectionAutocomplete() {
|
4630 |
+
if ( jQuery.fn.autocomplete ) {
|
4631 |
+
initAutocomplete( 'page' );
|
4632 |
+
initAutocomplete( 'user' );
|
4633 |
+
}
|
4634 |
+
}
|
4635 |
+
|
4636 |
+
function initAutocomplete( type ) {
|
4637 |
+
if ( jQuery( '.frm-' + type + '-search' ).length < 1 ) {
|
4638 |
+
return;
|
4639 |
+
}
|
4640 |
+
|
4641 |
+
jQuery( '.frm-' + type + '-search' ).autocomplete( {
|
4642 |
+
delay: 100,
|
4643 |
+
minLength: 0,
|
4644 |
+
source: ajaxurl + '?action=frm_' + type + '_search&nonce=' + frmGlobal.nonce,
|
4645 |
+
select: autoCompleteSelectFromResults,
|
4646 |
+
focus: autoCompleteFocus,
|
4647 |
+
position: {
|
4648 |
+
my: 'left top',
|
4649 |
+
at: 'left bottom',
|
4650 |
+
collision: 'flip'
|
4651 |
+
},
|
4652 |
+
response: function( event, ui ) {
|
4653 |
+
if ( !ui.content.length ) {
|
4654 |
+
var noResult = { value: '', label: frm_admin_js.no_items_found };
|
4655 |
+
ui.content.push( noResult );
|
4656 |
+
}
|
4657 |
+
},
|
4658 |
+
create: function( event, ui ) {
|
4659 |
+
var $container = jQuery( this ).parent();
|
4660 |
+
|
4661 |
+
if ( $container.length == 0 ) {
|
4662 |
+
$container = 'body';
|
4663 |
+
}
|
4664 |
+
|
4665 |
+
jQuery( this ).autocomplete( 'option', 'appendTo', $container );
|
4666 |
+
}
|
4667 |
+
} )
|
4668 |
+
.focus( function(){
|
4669 |
+
// Show options on click to make it work more like a dropdown.
|
4670 |
+
if ( this.value === '' || this.nextElementSibling.value < 1 ) {
|
4671 |
+
jQuery( this ).autocomplete( 'search', this.value );
|
4672 |
+
}
|
4673 |
+
} );
|
4674 |
+
}
|
4675 |
+
|
4676 |
+
/**
|
4677 |
+
* Prevent the value from changing when using keyboard to scroll.
|
4678 |
+
*/
|
4679 |
+
function autoCompleteFocus( e, ui ) {
|
4680 |
+
return false;
|
4681 |
+
}
|
4682 |
+
|
4683 |
+
function autoCompleteSelectFromResults( e, ui ) {
|
4684 |
+
e.preventDefault();
|
4685 |
+
|
4686 |
+
if ( ui.item.value === '' ) {
|
4687 |
+
this.value = '';
|
4688 |
+
} else {
|
4689 |
+
this.value = ui.item.label;
|
4690 |
+
}
|
4691 |
+
|
4692 |
+
this.nextElementSibling.value = ui.item.value;
|
4693 |
+
}
|
4694 |
+
|
4695 |
function frmApiPreview( cont, link ) {
|
4696 |
cont.innerHTML = '<div class="frm-wait"></div>';
|
4697 |
jQuery.ajax( {
|
4981 |
} else {
|
4982 |
// New form selection page
|
4983 |
initNewFormModal();
|
4984 |
+
initSelectionAutocomplete();
|
4985 |
|
4986 |
jQuery( '[data-frmprint]' ).click( function() {
|
4987 |
window.print();
|
5297 |
jQuery( '.edit_action_message_box' ).fadeOut( 'slow' );//Hide On Update message box
|
5298 |
}
|
5299 |
} );
|
5300 |
+
|
5301 |
+
// Page Selection Autocomplete
|
5302 |
+
initSelectionAutocomplete();
|
5303 |
},
|
5304 |
|
5305 |
panelInit: function() {
|
5719 |
return this.substring(pos, pos + search.length) === search;
|
5720 |
}
|
5721 |
});
|
5722 |
+
}
|
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.03.
|
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: 2019-12-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.1.0\n"
|
15 |
"X-Domain: formidable\n"
|
@@ -432,7 +432,7 @@ msgid "%s Options"
|
|
432 |
msgstr ""
|
433 |
|
434 |
#: classes/models/fields/FrmFieldType.php:507
|
435 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
436 |
msgid "This field is invalid"
|
437 |
msgstr ""
|
438 |
|
@@ -440,7 +440,7 @@ msgstr ""
|
|
440 |
#. translators: %s: Field name
|
441 |
#: classes/models/fields/FrmFieldType.php:510
|
442 |
#: classes/helpers/FrmFieldsHelper.php:167
|
443 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
444 |
#: classes/helpers/FrmXMLHelper.php:1099
|
445 |
msgid "%s is invalid"
|
446 |
msgstr ""
|
@@ -570,7 +570,7 @@ msgid "Installed"
|
|
570 |
msgstr ""
|
571 |
|
572 |
#: classes/controllers/FrmAddonsController.php:484
|
573 |
-
#: classes/helpers/FrmAppHelper.php:
|
574 |
msgid "Active"
|
575 |
msgstr ""
|
576 |
|
@@ -698,7 +698,7 @@ msgid "Plugin Licenses"
|
|
698 |
msgstr ""
|
699 |
|
700 |
#: classes/controllers/FrmSettingsController.php:92
|
701 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
702 |
msgid "Miscellaneous"
|
703 |
msgstr ""
|
704 |
|
@@ -1294,7 +1294,7 @@ msgstr ""
|
|
1294 |
#: classes/views/frm-forms/new-form-overlay.php:31
|
1295 |
#: classes/views/shared/confirm-overlay.php:14
|
1296 |
#: classes/views/shared/admin-header.php:37
|
1297 |
-
#: classes/helpers/FrmAppHelper.php:
|
1298 |
msgid "Cancel"
|
1299 |
msgstr ""
|
1300 |
|
@@ -1464,7 +1464,7 @@ msgid "Form Settings"
|
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: classes/views/frm-forms/settings-advanced.php:62
|
1467 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1468 |
msgid "On Submit"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1484,63 +1484,64 @@ msgstr ""
|
|
1484 |
msgid "Show Page Content"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
|
|
1488 |
msgid "Select a Page"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1492 |
msgid "Show the form with the confirmation message"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1496 |
msgid "Do not store entries submitted from this form"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1500 |
msgid "Use Akismet to check entries for spam for"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1504 |
msgid "no one"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1508 |
msgid "everyone"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1512 |
msgid "visitors who are not logged in"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1516 |
msgid "AJAX"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1520 |
msgid "Make stuff happen in the background without a page refresh"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1524 |
msgid "Load and save form builder page with AJAX"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1528 |
msgid "Recommended for long forms."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1532 |
msgid "Validate this form with javascript"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1536 |
msgid "Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1540 |
msgid "Messages"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: classes/views/frm-forms/settings-advanced.php:
|
1544 |
msgid "Set up your confirmation messages."
|
1545 |
msgstr ""
|
1546 |
|
@@ -1791,7 +1792,7 @@ msgstr ""
|
|
1791 |
#: classes/views/addons/list.php:74
|
1792 |
#: classes/views/addons/list.php:75
|
1793 |
#: classes/views/shared/upgrade_overlay.php:27
|
1794 |
-
#: classes/helpers/FrmAppHelper.php:
|
1795 |
msgid "Install"
|
1796 |
msgstr ""
|
1797 |
|
@@ -1812,7 +1813,7 @@ msgid "Dismiss this message"
|
|
1812 |
msgstr ""
|
1813 |
|
1814 |
#: classes/views/shared/confirm-overlay.php:10
|
1815 |
-
#: classes/helpers/FrmAppHelper.php:
|
1816 |
msgid "Are you sure?"
|
1817 |
msgstr ""
|
1818 |
|
@@ -1927,7 +1928,7 @@ msgstr ""
|
|
1927 |
|
1928 |
#: classes/views/shared/mb_adv_info.php:90
|
1929 |
#: classes/helpers/FrmCSVExportHelper.php:154
|
1930 |
-
#: classes/helpers/FrmAppHelper.php:
|
1931 |
msgid "ID"
|
1932 |
msgstr ""
|
1933 |
|
@@ -2552,7 +2553,7 @@ msgid "Label Position"
|
|
2552 |
msgstr ""
|
2553 |
|
2554 |
#: classes/views/frm-fields/back-end/settings.php:265
|
2555 |
-
#: classes/helpers/FrmAppHelper.php:
|
2556 |
msgid "Default"
|
2557 |
msgstr ""
|
2558 |
|
@@ -3302,1048 +3303,1048 @@ msgstr ""
|
|
3302 |
msgid "Draft"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3306 |
-
#: classes/helpers/FrmAppHelper.php:
|
3307 |
msgid "The entered values do not match"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#. translators: %s: Field name
|
3311 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3312 |
msgid "%s must be unique"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3316 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3317 |
-
#: classes/helpers/FrmAppHelper.php:
|
3318 |
msgid "New Option"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
#. translators: %1$s: Start HTML link, %2$s: Content type label, %3$s: Content type, %4$s: End HTML link
|
3322 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3323 |
msgid "Options are dynamically created from your %1$s%2$s: %3$s%4$s"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3327 |
msgid "taxonomy"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3331 |
msgid "Categories"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3335 |
msgid "Afghanistan"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3339 |
msgid "Aland Islands"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3343 |
msgid "Albania"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3347 |
msgid "Algeria"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3351 |
msgid "American Samoa"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3355 |
msgid "Andorra"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3359 |
msgid "Angola"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3363 |
msgid "Anguilla"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3367 |
msgid "Antarctica"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3371 |
msgid "Antigua and Barbuda"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3375 |
msgid "Argentina"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3379 |
msgid "Armenia"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3383 |
msgid "Aruba"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3387 |
msgid "Australia"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3391 |
msgid "Austria"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3395 |
msgid "Azerbaijan"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3399 |
msgid "Bahamas"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3403 |
msgid "Bahrain"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3407 |
msgid "Bangladesh"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3411 |
msgid "Barbados"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3415 |
msgid "Belarus"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3419 |
msgid "Belgium"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3423 |
msgid "Belize"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3427 |
msgid "Benin"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3431 |
msgid "Bermuda"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3435 |
msgid "Bhutan"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3439 |
msgid "Bolivia"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3443 |
msgid "Bosnia and Herzegovina"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3447 |
msgid "Botswana"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3451 |
msgid "Bouvet Island"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3455 |
msgid "Brazil"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3459 |
msgid "Brunei"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3463 |
msgid "Bulgaria"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3467 |
msgid "Burkina Faso"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3471 |
msgid "Burundi"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3475 |
msgid "Cambodia"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3479 |
msgid "Cameroon"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3483 |
msgid "Canada"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3487 |
msgid "Cape Verde"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3491 |
msgid "Cayman Islands"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3495 |
msgid "Central African Republic"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3499 |
msgid "Chad"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3503 |
msgid "Chile"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3507 |
msgid "China"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3511 |
msgid "Colombia"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3515 |
msgid "Comoros"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3519 |
msgid "Congo"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3523 |
msgid "Costa Rica"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3527 |
msgid "Côte d'Ivoire"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3531 |
msgid "Croatia"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3535 |
msgid "Cuba"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3539 |
msgid "Curacao"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3543 |
msgid "Cyprus"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3547 |
msgid "Czech Republic"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3551 |
msgid "Denmark"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3555 |
msgid "Djibouti"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3559 |
msgid "Dominica"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3563 |
msgid "Dominican Republic"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3567 |
msgid "East Timor"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3571 |
msgid "Ecuador"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3575 |
msgid "Egypt"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3579 |
msgid "El Salvador"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3583 |
msgid "Equatorial Guinea"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3587 |
msgid "Eritrea"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3591 |
msgid "Estonia"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3595 |
msgid "Ethiopia"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3599 |
msgid "Fiji"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3603 |
msgid "Finland"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3607 |
msgid "France"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3611 |
msgid "French Guiana"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3615 |
msgid "French Polynesia"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3619 |
msgid "Gabon"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3623 |
msgid "Gambia"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3627 |
msgid "Georgia"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3631 |
msgid "Germany"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3635 |
msgid "Ghana"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3639 |
msgid "Gibraltar"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3643 |
msgid "Greece"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3647 |
msgid "Greenland"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3651 |
msgid "Grenada"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3655 |
msgid "Guadeloupe"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3659 |
msgid "Guam"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3663 |
msgid "Guatemala"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3667 |
msgid "Guernsey"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3671 |
msgid "Guinea"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3675 |
msgid "Guinea-Bissau"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3679 |
msgid "Guyana"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3683 |
msgid "Haiti"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3687 |
msgid "Honduras"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3691 |
msgid "Hong Kong"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3695 |
msgid "Hungary"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3699 |
msgid "Iceland"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3703 |
msgid "India"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3707 |
msgid "Indonesia"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3711 |
msgid "Iran"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3715 |
msgid "Iraq"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3719 |
msgid "Ireland"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3723 |
msgid "Israel"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3727 |
msgid "Italy"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3731 |
msgid "Jamaica"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3735 |
msgid "Japan"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3739 |
msgid "Jersey"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3743 |
msgid "Jordan"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3747 |
msgid "Kazakhstan"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3751 |
msgid "Kenya"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3755 |
msgid "Kiribati"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3759 |
msgid "North Korea"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3763 |
msgid "South Korea"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3767 |
msgid "Kosovo"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3771 |
msgid "Kuwait"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3775 |
msgid "Kyrgyzstan"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3779 |
msgid "Laos"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3783 |
msgid "Latvia"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3787 |
msgid "Lebanon"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3791 |
msgid "Lesotho"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3795 |
msgid "Liberia"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3799 |
msgid "Libya"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3803 |
msgid "Liechtenstein"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3807 |
msgid "Lithuania"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3811 |
msgid "Luxembourg"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3815 |
msgid "Macao"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3819 |
msgid "Macedonia"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3823 |
msgid "Madagascar"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3827 |
msgid "Malawi"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3831 |
msgid "Malaysia"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3835 |
msgid "Maldives"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3839 |
msgid "Mali"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3843 |
msgid "Malta"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3847 |
msgid "Marshall Islands"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3851 |
msgid "Martinique"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3855 |
msgid "Mauritania"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3859 |
msgid "Mauritius"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3863 |
msgid "Mayotte"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3867 |
msgid "Mexico"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3871 |
msgid "Micronesia"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3875 |
msgid "Moldova"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3879 |
msgid "Monaco"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3883 |
msgid "Mongolia"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3887 |
msgid "Montenegro"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3891 |
msgid "Montserrat"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3895 |
msgid "Morocco"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3899 |
msgid "Mozambique"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3903 |
msgid "Myanmar"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3907 |
msgid "Namibia"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3911 |
msgid "Nauru"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3915 |
msgid "Nepal"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3919 |
msgid "Netherlands"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3923 |
msgid "New Caledonia"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3927 |
msgid "New Zealand"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3931 |
msgid "Nicaragua"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3935 |
msgid "Niger"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3939 |
msgid "Nigeria"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3943 |
msgid "Norway"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3947 |
msgid "Northern Mariana Islands"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3951 |
msgid "Oman"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3955 |
msgid "Pakistan"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3959 |
msgid "Palau"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3963 |
msgid "Palestine"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3967 |
msgid "Panama"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3971 |
msgid "Papua New Guinea"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3975 |
msgid "Paraguay"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3979 |
msgid "Peru"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3983 |
msgid "Philippines"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3987 |
msgid "Pitcairn"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3991 |
msgid "Poland"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3995 |
msgid "Portugal"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
3999 |
msgid "Puerto Rico"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4003 |
msgid "Qatar"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4007 |
msgid "Romania"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4011 |
msgid "Russia"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4015 |
msgid "Rwanda"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4019 |
msgid "Saint Kitts and Nevis"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4023 |
msgid "Saint Lucia"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4027 |
msgid "Saint Vincent and the Grenadines"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4031 |
msgid "Samoa"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4035 |
msgid "San Marino"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4039 |
msgid "Sao Tome and Principe"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4043 |
msgid "Saudi Arabia"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4047 |
msgid "Senegal"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4051 |
msgid "Serbia and Montenegro"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4055 |
msgid "Seychelles"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4059 |
msgid "Sierra Leone"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4063 |
msgid "Singapore"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4067 |
msgid "Slovakia"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4071 |
msgid "Slovenia"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4075 |
msgid "Solomon Islands"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4079 |
msgid "Somalia"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4083 |
msgid "South Africa"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4087 |
msgid "South Sudan"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4091 |
msgid "Spain"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4095 |
msgid "Sri Lanka"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4099 |
msgid "Sudan"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4103 |
msgid "Suriname"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4107 |
msgid "Swaziland"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4111 |
msgid "Sweden"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4115 |
msgid "Switzerland"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4119 |
msgid "Syria"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4123 |
msgid "Taiwan"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4127 |
msgid "Tajikistan"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4131 |
msgid "Tanzania"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4135 |
msgid "Thailand"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4139 |
msgid "Togo"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4143 |
msgid "Tonga"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4147 |
msgid "Trinidad and Tobago"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4151 |
msgid "Tunisia"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4155 |
msgid "Turkey"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4159 |
msgid "Turkmenistan"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4163 |
msgid "Tuvalu"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4167 |
msgid "Uganda"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4171 |
msgid "Ukraine"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4175 |
msgid "United Arab Emirates"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4179 |
msgid "United Kingdom"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4183 |
msgid "United States"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4187 |
msgid "Uruguay"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4191 |
msgid "Uzbekistan"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4195 |
msgid "Vanuatu"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4199 |
msgid "Vatican City"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4203 |
msgid "Venezuela"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4207 |
msgid "Vietnam"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4211 |
msgid "Virgin Islands, British"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4215 |
msgid "Virgin Islands, U.S."
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4219 |
msgid "Yemen"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4223 |
msgid "Zambia"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4227 |
msgid "Zimbabwe"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4231 |
msgid "Countries"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4235 |
msgid "U.S. State Abbreviations"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4239 |
msgid "U.S. States"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4243 |
msgid "Age"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4247 |
msgid "Under 18"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4251 |
msgid "18-24"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4255 |
msgid "25-34"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4259 |
msgid "35-44"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4263 |
msgid "45-54"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4267 |
msgid "55-64"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4271 |
msgid "65 or Above"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4275 |
msgid "Prefer Not to Answer"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4279 |
msgid "Satisfaction"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4283 |
msgid "Very Satisfied"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4287 |
msgid "Satisfied"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4291 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4292 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4293 |
msgid "Neutral"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4297 |
msgid "Unsatisfied"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4301 |
msgid "Very Unsatisfied"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4305 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4306 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4307 |
msgid "N/A"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4311 |
msgid "Importance"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4315 |
msgid "Very Important"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4319 |
msgid "Important"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4323 |
msgid "Somewhat Important"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4327 |
msgid "Not at all Important"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4331 |
msgid "Agreement"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4335 |
msgid "Strongly Agree"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4339 |
msgid "Agree"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4343 |
msgid "Disagree"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: classes/helpers/FrmFieldsHelper.php:
|
4347 |
msgid "Strongly Disagree"
|
4348 |
msgstr ""
|
4349 |
|
@@ -4401,6 +4402,7 @@ msgid "Excerpt View"
|
|
4401 |
msgstr ""
|
4402 |
|
4403 |
#: classes/helpers/FrmListHelper.php:257
|
|
|
4404 |
msgid "No items found."
|
4405 |
msgstr ""
|
4406 |
|
@@ -4677,538 +4679,538 @@ msgstr ""
|
|
4677 |
msgid "Parent ID"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: classes/helpers/FrmAppHelper.php:
|
4681 |
msgid "View Forms and Templates"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: classes/helpers/FrmAppHelper.php:
|
4685 |
msgid "Add/Edit Forms and Templates"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: classes/helpers/FrmAppHelper.php:
|
4689 |
msgid "Delete Forms and Templates"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: classes/helpers/FrmAppHelper.php:
|
4693 |
msgid "Access this Settings Page"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: classes/helpers/FrmAppHelper.php:
|
4697 |
msgid "View Entries from Admin Area"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: classes/helpers/FrmAppHelper.php:
|
4701 |
msgid "Delete Entries from Admin Area"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: classes/helpers/FrmAppHelper.php:
|
4705 |
msgid "Add Entries from Admin Area"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: classes/helpers/FrmAppHelper.php:
|
4709 |
msgid "Edit Entries from Admin Area"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: classes/helpers/FrmAppHelper.php:
|
4713 |
msgid "View Reports"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: classes/helpers/FrmAppHelper.php:
|
4717 |
msgid "Add/Edit Views"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
-
#: classes/helpers/FrmAppHelper.php:
|
4721 |
msgid "at"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: classes/helpers/FrmAppHelper.php:
|
4725 |
-
#: classes/helpers/FrmAppHelper.php:
|
4726 |
msgid "seconds"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: classes/helpers/FrmAppHelper.php:
|
4730 |
msgid "year"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: classes/helpers/FrmAppHelper.php:
|
4734 |
msgid "years"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: classes/helpers/FrmAppHelper.php:
|
4738 |
msgid "month"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: classes/helpers/FrmAppHelper.php:
|
4742 |
msgid "months"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: classes/helpers/FrmAppHelper.php:
|
4746 |
msgid "week"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: classes/helpers/FrmAppHelper.php:
|
4750 |
msgid "weeks"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: classes/helpers/FrmAppHelper.php:
|
4754 |
msgid "day"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: classes/helpers/FrmAppHelper.php:
|
4758 |
msgid "days"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: classes/helpers/FrmAppHelper.php:
|
4762 |
msgid "hour"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: classes/helpers/FrmAppHelper.php:
|
4766 |
msgid "hours"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: classes/helpers/FrmAppHelper.php:
|
4770 |
msgid "minute"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: classes/helpers/FrmAppHelper.php:
|
4774 |
msgid "minutes"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: classes/helpers/FrmAppHelper.php:
|
4778 |
msgid "second"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: classes/helpers/FrmAppHelper.php:
|
4782 |
msgid "Give this action a label for easy reference."
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: classes/helpers/FrmAppHelper.php:
|
4786 |
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."
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: classes/helpers/FrmAppHelper.php:
|
4790 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: classes/helpers/FrmAppHelper.php:
|
4794 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: classes/helpers/FrmAppHelper.php:
|
4798 |
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."
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: classes/helpers/FrmAppHelper.php:
|
4802 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
4803 |
msgstr ""
|
4804 |
|
4805 |
#. translators: %1$s: Form name, %2$s: Date
|
4806 |
-
#: classes/helpers/FrmAppHelper.php:
|
4807 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: classes/helpers/FrmAppHelper.php:
|
4811 |
-
#: classes/helpers/FrmAppHelper.php:
|
4812 |
msgid "Please wait while your site updates."
|
4813 |
msgstr ""
|
4814 |
|
4815 |
-
#: classes/helpers/FrmAppHelper.php:
|
4816 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
-
#: classes/helpers/FrmAppHelper.php:
|
4820 |
-
#: classes/helpers/FrmAppHelper.php:
|
4821 |
msgid "Loading…"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: classes/helpers/FrmAppHelper.php:
|
4825 |
msgid "Remove"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: classes/helpers/FrmAppHelper.php:
|
4829 |
msgid "No results match"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: classes/helpers/FrmAppHelper.php:
|
4833 |
msgid "That file looks like Spam."
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: classes/helpers/FrmAppHelper.php:
|
4837 |
msgid "There is an error in the calculation in the field with key"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: classes/helpers/FrmAppHelper.php:
|
4841 |
msgid "Please complete the preceding required fields before uploading a file."
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: classes/helpers/FrmAppHelper.php:
|
4845 |
msgid "(Click to add description)"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: classes/helpers/FrmAppHelper.php:
|
4849 |
msgid "(Blank)"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: classes/helpers/FrmAppHelper.php:
|
4853 |
msgid "(no label)"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: classes/helpers/FrmAppHelper.php:
|
4857 |
msgid "Saving"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: classes/helpers/FrmAppHelper.php:
|
4861 |
msgid "Saved"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: classes/helpers/FrmAppHelper.php:
|
4865 |
msgid "OK"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: classes/helpers/FrmAppHelper.php:
|
4869 |
msgid "Clear default value when typing"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: classes/helpers/FrmAppHelper.php:
|
4873 |
msgid "Do not clear default value when typing"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#: classes/helpers/FrmAppHelper.php:
|
4877 |
msgid "Default value will pass form validation"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: classes/helpers/FrmAppHelper.php:
|
4881 |
msgid "Default value will NOT pass form validation"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: classes/helpers/FrmAppHelper.php:
|
4885 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: classes/helpers/FrmAppHelper.php:
|
4889 |
msgid "WARNING: This will delete all fields inside of the section as well."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: classes/helpers/FrmAppHelper.php:
|
4893 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: classes/helpers/FrmAppHelper.php:
|
4897 |
msgid "Enter Email"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: classes/helpers/FrmAppHelper.php:
|
4901 |
msgid "Confirm Email"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: classes/helpers/FrmAppHelper.php:
|
4905 |
msgid "Conditional content here"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: classes/helpers/FrmAppHelper.php:
|
4909 |
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."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: classes/helpers/FrmAppHelper.php:
|
4913 |
msgid "Enter Password"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: classes/helpers/FrmAppHelper.php:
|
4917 |
msgid "Confirm Password"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: classes/helpers/FrmAppHelper.php:
|
4921 |
msgid "Import Complete"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: classes/helpers/FrmAppHelper.php:
|
4925 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: classes/helpers/FrmAppHelper.php:
|
4929 |
msgid "Private"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: classes/helpers/FrmAppHelper.php:
|
4933 |
msgid "No new licenses were found"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: classes/helpers/FrmAppHelper.php:
|
4937 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: classes/helpers/FrmAppHelper.php:
|
4941 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: classes/helpers/FrmAppHelper.php:
|
4945 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
4946 |
msgstr ""
|
4947 |
|
4948 |
-
#: classes/helpers/FrmAppHelper.php:
|
4949 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: classes/helpers/FrmAppHelper.php:
|
4953 |
msgid "Please select a limit between 0 and 200."
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: classes/helpers/FrmAppHelper.php:
|
4957 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: classes/helpers/FrmAppHelper.php:
|
4961 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: classes/helpers/FrmAppHelper.php:
|
4965 |
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+."
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: classes/helpers/FrmAppHelper.php:
|
4969 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#: classes/helpers/FrmAppHelper.php:
|
4973 |
msgid "English"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
-
#: classes/helpers/FrmAppHelper.php:
|
4977 |
msgid "Afrikaans"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: classes/helpers/FrmAppHelper.php:
|
4981 |
msgid "Albanian"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
-
#: classes/helpers/FrmAppHelper.php:
|
4985 |
msgid "Arabic"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
-
#: classes/helpers/FrmAppHelper.php:
|
4989 |
msgid "Armenian"
|
4990 |
msgstr ""
|
4991 |
|
4992 |
-
#: classes/helpers/FrmAppHelper.php:
|
4993 |
msgid "Azerbaijani"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
-
#: classes/helpers/FrmAppHelper.php:
|
4997 |
msgid "Basque"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: classes/helpers/FrmAppHelper.php:
|
5001 |
msgid "Bosnian"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
-
#: classes/helpers/FrmAppHelper.php:
|
5005 |
msgid "Bulgarian"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#: classes/helpers/FrmAppHelper.php:
|
5009 |
msgid "Catalan"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: classes/helpers/FrmAppHelper.php:
|
5013 |
msgid "Chinese Hong Kong"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: classes/helpers/FrmAppHelper.php:
|
5017 |
msgid "Chinese Simplified"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: classes/helpers/FrmAppHelper.php:
|
5021 |
msgid "Chinese Traditional"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: classes/helpers/FrmAppHelper.php:
|
5025 |
msgid "Croatian"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#: classes/helpers/FrmAppHelper.php:
|
5029 |
msgid "Czech"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: classes/helpers/FrmAppHelper.php:
|
5033 |
msgid "Danish"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: classes/helpers/FrmAppHelper.php:
|
5037 |
msgid "Dutch"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: classes/helpers/FrmAppHelper.php:
|
5041 |
msgid "English/UK"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: classes/helpers/FrmAppHelper.php:
|
5045 |
msgid "Esperanto"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
-
#: classes/helpers/FrmAppHelper.php:
|
5049 |
msgid "Estonian"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
-
#: classes/helpers/FrmAppHelper.php:
|
5053 |
msgid "Faroese"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
-
#: classes/helpers/FrmAppHelper.php:
|
5057 |
msgid "Farsi/Persian"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
-
#: classes/helpers/FrmAppHelper.php:
|
5061 |
msgid "Filipino"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
-
#: classes/helpers/FrmAppHelper.php:
|
5065 |
msgid "Finnish"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
-
#: classes/helpers/FrmAppHelper.php:
|
5069 |
msgid "French"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
-
#: classes/helpers/FrmAppHelper.php:
|
5073 |
msgid "French/Canadian"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
-
#: classes/helpers/FrmAppHelper.php:
|
5077 |
msgid "French/Swiss"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: classes/helpers/FrmAppHelper.php:
|
5081 |
msgid "German"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: classes/helpers/FrmAppHelper.php:
|
5085 |
msgid "German/Austria"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: classes/helpers/FrmAppHelper.php:
|
5089 |
msgid "German/Switzerland"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
-
#: classes/helpers/FrmAppHelper.php:
|
5093 |
msgid "Greek"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
-
#: classes/helpers/FrmAppHelper.php:
|
5097 |
-
#: classes/helpers/FrmAppHelper.php:
|
5098 |
msgid "Hebrew"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: classes/helpers/FrmAppHelper.php:
|
5102 |
msgid "Hindi"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: classes/helpers/FrmAppHelper.php:
|
5106 |
msgid "Hungarian"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: classes/helpers/FrmAppHelper.php:
|
5110 |
msgid "Icelandic"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: classes/helpers/FrmAppHelper.php:
|
5114 |
msgid "Indonesian"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: classes/helpers/FrmAppHelper.php:
|
5118 |
msgid "Italian"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: classes/helpers/FrmAppHelper.php:
|
5122 |
msgid "Japanese"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: classes/helpers/FrmAppHelper.php:
|
5126 |
msgid "Korean"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
-
#: classes/helpers/FrmAppHelper.php:
|
5130 |
msgid "Latvian"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: classes/helpers/FrmAppHelper.php:
|
5134 |
msgid "Lithuanian"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: classes/helpers/FrmAppHelper.php:
|
5138 |
msgid "Malaysian"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#: classes/helpers/FrmAppHelper.php:
|
5142 |
msgid "Norwegian"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: classes/helpers/FrmAppHelper.php:
|
5146 |
msgid "Polish"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
-
#: classes/helpers/FrmAppHelper.php:
|
5150 |
msgid "Portuguese"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
-
#: classes/helpers/FrmAppHelper.php:
|
5154 |
msgid "Portuguese/Brazilian"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: classes/helpers/FrmAppHelper.php:
|
5158 |
msgid "Portuguese/Portugal"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: classes/helpers/FrmAppHelper.php:
|
5162 |
msgid "Romanian"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: classes/helpers/FrmAppHelper.php:
|
5166 |
msgid "Russian"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: classes/helpers/FrmAppHelper.php:
|
5170 |
-
#: classes/helpers/FrmAppHelper.php:
|
5171 |
msgid "Serbian"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: classes/helpers/FrmAppHelper.php:
|
5175 |
msgid "Slovak"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: classes/helpers/FrmAppHelper.php:
|
5179 |
msgid "Slovenian"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: classes/helpers/FrmAppHelper.php:
|
5183 |
msgid "Spanish"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: classes/helpers/FrmAppHelper.php:
|
5187 |
msgid "Spanish/Latin America"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: classes/helpers/FrmAppHelper.php:
|
5191 |
msgid "Swedish"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: classes/helpers/FrmAppHelper.php:
|
5195 |
msgid "Tamil"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: classes/helpers/FrmAppHelper.php:
|
5199 |
msgid "Thai"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: classes/helpers/FrmAppHelper.php:
|
5203 |
-
#: classes/helpers/FrmAppHelper.php:
|
5204 |
msgid "Turkish"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: classes/helpers/FrmAppHelper.php:
|
5208 |
msgid "Ukranian"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: classes/helpers/FrmAppHelper.php:
|
5212 |
msgid "Vietnamese"
|
5213 |
msgstr ""
|
5214 |
|
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.03.06\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2019-12-18T20:07:05+01:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.1.0\n"
|
15 |
"X-Domain: formidable\n"
|
432 |
msgstr ""
|
433 |
|
434 |
#: classes/models/fields/FrmFieldType.php:507
|
435 |
+
#: classes/helpers/FrmFieldsHelper.php:294
|
436 |
msgid "This field is invalid"
|
437 |
msgstr ""
|
438 |
|
440 |
#. translators: %s: Field name
|
441 |
#: classes/models/fields/FrmFieldType.php:510
|
442 |
#: classes/helpers/FrmFieldsHelper.php:167
|
443 |
+
#: classes/helpers/FrmFieldsHelper.php:296
|
444 |
#: classes/helpers/FrmXMLHelper.php:1099
|
445 |
msgid "%s is invalid"
|
446 |
msgstr ""
|
570 |
msgstr ""
|
571 |
|
572 |
#: classes/controllers/FrmAddonsController.php:484
|
573 |
+
#: classes/helpers/FrmAppHelper.php:2264
|
574 |
msgid "Active"
|
575 |
msgstr ""
|
576 |
|
698 |
msgstr ""
|
699 |
|
700 |
#: classes/controllers/FrmSettingsController.php:92
|
701 |
+
#: classes/views/frm-forms/settings-advanced.php:181
|
702 |
msgid "Miscellaneous"
|
703 |
msgstr ""
|
704 |
|
1294 |
#: classes/views/frm-forms/new-form-overlay.php:31
|
1295 |
#: classes/views/shared/confirm-overlay.php:14
|
1296 |
#: classes/views/shared/admin-header.php:37
|
1297 |
+
#: classes/helpers/FrmAppHelper.php:2232
|
1298 |
msgid "Cancel"
|
1299 |
msgstr ""
|
1300 |
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: classes/views/frm-forms/settings-advanced.php:62
|
1467 |
+
#: classes/views/frm-forms/settings-advanced.php:172
|
1468 |
msgid "On Submit"
|
1469 |
msgstr ""
|
1470 |
|
1484 |
msgid "Show Page Content"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: classes/views/frm-forms/settings-advanced.php:93
|
1488 |
+
#: classes/helpers/FrmAppHelper.php:1040
|
1489 |
msgid "Select a Page"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: classes/views/frm-forms/settings-advanced.php:103
|
1493 |
msgid "Show the form with the confirmation message"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: classes/views/frm-forms/settings-advanced.php:112
|
1497 |
msgid "Do not store entries submitted from this form"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: classes/views/frm-forms/settings-advanced.php:118
|
1501 |
msgid "Use Akismet to check entries for spam for"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: classes/views/frm-forms/settings-advanced.php:121
|
1505 |
msgid "no one"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: classes/views/frm-forms/settings-advanced.php:124
|
1509 |
msgid "everyone"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: classes/views/frm-forms/settings-advanced.php:127
|
1513 |
msgid "visitors who are not logged in"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: classes/views/frm-forms/settings-advanced.php:136
|
1517 |
msgid "AJAX"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: classes/views/frm-forms/settings-advanced.php:137
|
1521 |
msgid "Make stuff happen in the background without a page refresh"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: classes/views/frm-forms/settings-advanced.php:144
|
1525 |
msgid "Load and save form builder page with AJAX"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: classes/views/frm-forms/settings-advanced.php:145
|
1529 |
msgid "Recommended for long forms."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: classes/views/frm-forms/settings-advanced.php:154
|
1533 |
msgid "Validate this form with javascript"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: classes/views/frm-forms/settings-advanced.php:155
|
1537 |
msgid "Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: classes/views/frm-forms/settings-advanced.php:166
|
1541 |
msgid "Messages"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: classes/views/frm-forms/settings-advanced.php:167
|
1545 |
msgid "Set up your confirmation messages."
|
1546 |
msgstr ""
|
1547 |
|
1792 |
#: classes/views/addons/list.php:74
|
1793 |
#: classes/views/addons/list.php:75
|
1794 |
#: classes/views/shared/upgrade_overlay.php:27
|
1795 |
+
#: classes/helpers/FrmAppHelper.php:2263
|
1796 |
msgid "Install"
|
1797 |
msgstr ""
|
1798 |
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: classes/views/shared/confirm-overlay.php:10
|
1816 |
+
#: classes/helpers/FrmAppHelper.php:2238
|
1817 |
msgid "Are you sure?"
|
1818 |
msgstr ""
|
1819 |
|
1928 |
|
1929 |
#: classes/views/shared/mb_adv_info.php:90
|
1930 |
#: classes/helpers/FrmCSVExportHelper.php:154
|
1931 |
+
#: classes/helpers/FrmAppHelper.php:2215
|
1932 |
msgid "ID"
|
1933 |
msgstr ""
|
1934 |
|
2553 |
msgstr ""
|
2554 |
|
2555 |
#: classes/views/frm-fields/back-end/settings.php:265
|
2556 |
+
#: classes/helpers/FrmAppHelper.php:2233
|
2557 |
msgid "Default"
|
2558 |
msgstr ""
|
2559 |
|
3303 |
msgid "Draft"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: classes/helpers/FrmFieldsHelper.php:286
|
3307 |
+
#: classes/helpers/FrmAppHelper.php:2243
|
3308 |
msgid "The entered values do not match"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
#. translators: %s: Field name
|
3312 |
+
#: classes/helpers/FrmFieldsHelper.php:291
|
3313 |
msgid "%s must be unique"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: classes/helpers/FrmFieldsHelper.php:456
|
3317 |
+
#: classes/helpers/FrmFieldsHelper.php:457
|
3318 |
+
#: classes/helpers/FrmAppHelper.php:2247
|
3319 |
msgid "New Option"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
#. translators: %1$s: Start HTML link, %2$s: Content type label, %3$s: Content type, %4$s: End HTML link
|
3323 |
+
#: classes/helpers/FrmFieldsHelper.php:552
|
3324 |
msgid "Options are dynamically created from your %1$s%2$s: %3$s%4$s"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: classes/helpers/FrmFieldsHelper.php:554
|
3328 |
msgid "taxonomy"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: classes/helpers/FrmFieldsHelper.php:555
|
3332 |
msgid "Categories"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: classes/helpers/FrmFieldsHelper.php:1366
|
3336 |
msgid "Afghanistan"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: classes/helpers/FrmFieldsHelper.php:1367
|
3340 |
msgid "Aland Islands"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: classes/helpers/FrmFieldsHelper.php:1368
|
3344 |
msgid "Albania"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: classes/helpers/FrmFieldsHelper.php:1369
|
3348 |
msgid "Algeria"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: classes/helpers/FrmFieldsHelper.php:1370
|
3352 |
msgid "American Samoa"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: classes/helpers/FrmFieldsHelper.php:1371
|
3356 |
msgid "Andorra"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: classes/helpers/FrmFieldsHelper.php:1372
|
3360 |
msgid "Angola"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: classes/helpers/FrmFieldsHelper.php:1373
|
3364 |
msgid "Anguilla"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: classes/helpers/FrmFieldsHelper.php:1374
|
3368 |
msgid "Antarctica"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: classes/helpers/FrmFieldsHelper.php:1375
|
3372 |
msgid "Antigua and Barbuda"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: classes/helpers/FrmFieldsHelper.php:1376
|
3376 |
msgid "Argentina"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: classes/helpers/FrmFieldsHelper.php:1377
|
3380 |
msgid "Armenia"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: classes/helpers/FrmFieldsHelper.php:1378
|
3384 |
msgid "Aruba"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: classes/helpers/FrmFieldsHelper.php:1379
|
3388 |
msgid "Australia"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: classes/helpers/FrmFieldsHelper.php:1380
|
3392 |
msgid "Austria"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: classes/helpers/FrmFieldsHelper.php:1381
|
3396 |
msgid "Azerbaijan"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: classes/helpers/FrmFieldsHelper.php:1382
|
3400 |
msgid "Bahamas"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: classes/helpers/FrmFieldsHelper.php:1383
|
3404 |
msgid "Bahrain"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: classes/helpers/FrmFieldsHelper.php:1384
|
3408 |
msgid "Bangladesh"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: classes/helpers/FrmFieldsHelper.php:1385
|
3412 |
msgid "Barbados"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: classes/helpers/FrmFieldsHelper.php:1386
|
3416 |
msgid "Belarus"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: classes/helpers/FrmFieldsHelper.php:1387
|
3420 |
msgid "Belgium"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: classes/helpers/FrmFieldsHelper.php:1388
|
3424 |
msgid "Belize"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: classes/helpers/FrmFieldsHelper.php:1389
|
3428 |
msgid "Benin"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: classes/helpers/FrmFieldsHelper.php:1390
|
3432 |
msgid "Bermuda"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: classes/helpers/FrmFieldsHelper.php:1391
|
3436 |
msgid "Bhutan"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: classes/helpers/FrmFieldsHelper.php:1392
|
3440 |
msgid "Bolivia"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: classes/helpers/FrmFieldsHelper.php:1393
|
3444 |
msgid "Bosnia and Herzegovina"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: classes/helpers/FrmFieldsHelper.php:1394
|
3448 |
msgid "Botswana"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: classes/helpers/FrmFieldsHelper.php:1395
|
3452 |
msgid "Bouvet Island"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: classes/helpers/FrmFieldsHelper.php:1396
|
3456 |
msgid "Brazil"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: classes/helpers/FrmFieldsHelper.php:1397
|
3460 |
msgid "Brunei"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: classes/helpers/FrmFieldsHelper.php:1398
|
3464 |
msgid "Bulgaria"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: classes/helpers/FrmFieldsHelper.php:1399
|
3468 |
msgid "Burkina Faso"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: classes/helpers/FrmFieldsHelper.php:1400
|
3472 |
msgid "Burundi"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: classes/helpers/FrmFieldsHelper.php:1401
|
3476 |
msgid "Cambodia"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: classes/helpers/FrmFieldsHelper.php:1402
|
3480 |
msgid "Cameroon"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: classes/helpers/FrmFieldsHelper.php:1403
|
3484 |
msgid "Canada"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: classes/helpers/FrmFieldsHelper.php:1404
|
3488 |
msgid "Cape Verde"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: classes/helpers/FrmFieldsHelper.php:1405
|
3492 |
msgid "Cayman Islands"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: classes/helpers/FrmFieldsHelper.php:1406
|
3496 |
msgid "Central African Republic"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: classes/helpers/FrmFieldsHelper.php:1407
|
3500 |
msgid "Chad"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: classes/helpers/FrmFieldsHelper.php:1408
|
3504 |
msgid "Chile"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: classes/helpers/FrmFieldsHelper.php:1409
|
3508 |
msgid "China"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: classes/helpers/FrmFieldsHelper.php:1410
|
3512 |
msgid "Colombia"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: classes/helpers/FrmFieldsHelper.php:1411
|
3516 |
msgid "Comoros"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: classes/helpers/FrmFieldsHelper.php:1412
|
3520 |
msgid "Congo"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: classes/helpers/FrmFieldsHelper.php:1413
|
3524 |
msgid "Costa Rica"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: classes/helpers/FrmFieldsHelper.php:1414
|
3528 |
msgid "Côte d'Ivoire"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: classes/helpers/FrmFieldsHelper.php:1415
|
3532 |
msgid "Croatia"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: classes/helpers/FrmFieldsHelper.php:1416
|
3536 |
msgid "Cuba"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: classes/helpers/FrmFieldsHelper.php:1417
|
3540 |
msgid "Curacao"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: classes/helpers/FrmFieldsHelper.php:1418
|
3544 |
msgid "Cyprus"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: classes/helpers/FrmFieldsHelper.php:1419
|
3548 |
msgid "Czech Republic"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: classes/helpers/FrmFieldsHelper.php:1420
|
3552 |
msgid "Denmark"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: classes/helpers/FrmFieldsHelper.php:1421
|
3556 |
msgid "Djibouti"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: classes/helpers/FrmFieldsHelper.php:1422
|
3560 |
msgid "Dominica"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: classes/helpers/FrmFieldsHelper.php:1423
|
3564 |
msgid "Dominican Republic"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: classes/helpers/FrmFieldsHelper.php:1424
|
3568 |
msgid "East Timor"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: classes/helpers/FrmFieldsHelper.php:1425
|
3572 |
msgid "Ecuador"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: classes/helpers/FrmFieldsHelper.php:1426
|
3576 |
msgid "Egypt"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: classes/helpers/FrmFieldsHelper.php:1427
|
3580 |
msgid "El Salvador"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: classes/helpers/FrmFieldsHelper.php:1428
|
3584 |
msgid "Equatorial Guinea"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: classes/helpers/FrmFieldsHelper.php:1429
|
3588 |
msgid "Eritrea"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: classes/helpers/FrmFieldsHelper.php:1430
|
3592 |
msgid "Estonia"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: classes/helpers/FrmFieldsHelper.php:1431
|
3596 |
msgid "Ethiopia"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: classes/helpers/FrmFieldsHelper.php:1432
|
3600 |
msgid "Fiji"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: classes/helpers/FrmFieldsHelper.php:1433
|
3604 |
msgid "Finland"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: classes/helpers/FrmFieldsHelper.php:1434
|
3608 |
msgid "France"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: classes/helpers/FrmFieldsHelper.php:1435
|
3612 |
msgid "French Guiana"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: classes/helpers/FrmFieldsHelper.php:1436
|
3616 |
msgid "French Polynesia"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: classes/helpers/FrmFieldsHelper.php:1437
|
3620 |
msgid "Gabon"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: classes/helpers/FrmFieldsHelper.php:1438
|
3624 |
msgid "Gambia"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: classes/helpers/FrmFieldsHelper.php:1439
|
3628 |
msgid "Georgia"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: classes/helpers/FrmFieldsHelper.php:1440
|
3632 |
msgid "Germany"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: classes/helpers/FrmFieldsHelper.php:1441
|
3636 |
msgid "Ghana"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: classes/helpers/FrmFieldsHelper.php:1442
|
3640 |
msgid "Gibraltar"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: classes/helpers/FrmFieldsHelper.php:1443
|
3644 |
msgid "Greece"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: classes/helpers/FrmFieldsHelper.php:1444
|
3648 |
msgid "Greenland"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: classes/helpers/FrmFieldsHelper.php:1445
|
3652 |
msgid "Grenada"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: classes/helpers/FrmFieldsHelper.php:1446
|
3656 |
msgid "Guadeloupe"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: classes/helpers/FrmFieldsHelper.php:1447
|
3660 |
msgid "Guam"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: classes/helpers/FrmFieldsHelper.php:1448
|
3664 |
msgid "Guatemala"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: classes/helpers/FrmFieldsHelper.php:1449
|
3668 |
msgid "Guernsey"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: classes/helpers/FrmFieldsHelper.php:1450
|
3672 |
msgid "Guinea"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: classes/helpers/FrmFieldsHelper.php:1451
|
3676 |
msgid "Guinea-Bissau"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: classes/helpers/FrmFieldsHelper.php:1452
|
3680 |
msgid "Guyana"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: classes/helpers/FrmFieldsHelper.php:1453
|
3684 |
msgid "Haiti"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: classes/helpers/FrmFieldsHelper.php:1454
|
3688 |
msgid "Honduras"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: classes/helpers/FrmFieldsHelper.php:1455
|
3692 |
msgid "Hong Kong"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: classes/helpers/FrmFieldsHelper.php:1456
|
3696 |
msgid "Hungary"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: classes/helpers/FrmFieldsHelper.php:1457
|
3700 |
msgid "Iceland"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: classes/helpers/FrmFieldsHelper.php:1458
|
3704 |
msgid "India"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: classes/helpers/FrmFieldsHelper.php:1459
|
3708 |
msgid "Indonesia"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: classes/helpers/FrmFieldsHelper.php:1460
|
3712 |
msgid "Iran"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: classes/helpers/FrmFieldsHelper.php:1461
|
3716 |
msgid "Iraq"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: classes/helpers/FrmFieldsHelper.php:1462
|
3720 |
msgid "Ireland"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: classes/helpers/FrmFieldsHelper.php:1463
|
3724 |
msgid "Israel"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: classes/helpers/FrmFieldsHelper.php:1464
|
3728 |
msgid "Italy"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: classes/helpers/FrmFieldsHelper.php:1465
|
3732 |
msgid "Jamaica"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: classes/helpers/FrmFieldsHelper.php:1466
|
3736 |
msgid "Japan"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: classes/helpers/FrmFieldsHelper.php:1467
|
3740 |
msgid "Jersey"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: classes/helpers/FrmFieldsHelper.php:1468
|
3744 |
msgid "Jordan"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: classes/helpers/FrmFieldsHelper.php:1469
|
3748 |
msgid "Kazakhstan"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: classes/helpers/FrmFieldsHelper.php:1470
|
3752 |
msgid "Kenya"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: classes/helpers/FrmFieldsHelper.php:1471
|
3756 |
msgid "Kiribati"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: classes/helpers/FrmFieldsHelper.php:1472
|
3760 |
msgid "North Korea"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: classes/helpers/FrmFieldsHelper.php:1473
|
3764 |
msgid "South Korea"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: classes/helpers/FrmFieldsHelper.php:1474
|
3768 |
msgid "Kosovo"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: classes/helpers/FrmFieldsHelper.php:1475
|
3772 |
msgid "Kuwait"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: classes/helpers/FrmFieldsHelper.php:1476
|
3776 |
msgid "Kyrgyzstan"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: classes/helpers/FrmFieldsHelper.php:1477
|
3780 |
msgid "Laos"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: classes/helpers/FrmFieldsHelper.php:1478
|
3784 |
msgid "Latvia"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: classes/helpers/FrmFieldsHelper.php:1479
|
3788 |
msgid "Lebanon"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: classes/helpers/FrmFieldsHelper.php:1480
|
3792 |
msgid "Lesotho"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: classes/helpers/FrmFieldsHelper.php:1481
|
3796 |
msgid "Liberia"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: classes/helpers/FrmFieldsHelper.php:1482
|
3800 |
msgid "Libya"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: classes/helpers/FrmFieldsHelper.php:1483
|
3804 |
msgid "Liechtenstein"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: classes/helpers/FrmFieldsHelper.php:1484
|
3808 |
msgid "Lithuania"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: classes/helpers/FrmFieldsHelper.php:1485
|
3812 |
msgid "Luxembourg"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: classes/helpers/FrmFieldsHelper.php:1486
|
3816 |
msgid "Macao"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: classes/helpers/FrmFieldsHelper.php:1487
|
3820 |
msgid "Macedonia"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: classes/helpers/FrmFieldsHelper.php:1488
|
3824 |
msgid "Madagascar"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: classes/helpers/FrmFieldsHelper.php:1489
|
3828 |
msgid "Malawi"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: classes/helpers/FrmFieldsHelper.php:1490
|
3832 |
msgid "Malaysia"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: classes/helpers/FrmFieldsHelper.php:1491
|
3836 |
msgid "Maldives"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: classes/helpers/FrmFieldsHelper.php:1492
|
3840 |
msgid "Mali"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: classes/helpers/FrmFieldsHelper.php:1493
|
3844 |
msgid "Malta"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: classes/helpers/FrmFieldsHelper.php:1494
|
3848 |
msgid "Marshall Islands"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: classes/helpers/FrmFieldsHelper.php:1495
|
3852 |
msgid "Martinique"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: classes/helpers/FrmFieldsHelper.php:1496
|
3856 |
msgid "Mauritania"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: classes/helpers/FrmFieldsHelper.php:1497
|
3860 |
msgid "Mauritius"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: classes/helpers/FrmFieldsHelper.php:1498
|
3864 |
msgid "Mayotte"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: classes/helpers/FrmFieldsHelper.php:1499
|
3868 |
msgid "Mexico"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: classes/helpers/FrmFieldsHelper.php:1500
|
3872 |
msgid "Micronesia"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: classes/helpers/FrmFieldsHelper.php:1501
|
3876 |
msgid "Moldova"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: classes/helpers/FrmFieldsHelper.php:1502
|
3880 |
msgid "Monaco"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: classes/helpers/FrmFieldsHelper.php:1503
|
3884 |
msgid "Mongolia"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: classes/helpers/FrmFieldsHelper.php:1504
|
3888 |
msgid "Montenegro"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: classes/helpers/FrmFieldsHelper.php:1505
|
3892 |
msgid "Montserrat"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: classes/helpers/FrmFieldsHelper.php:1506
|
3896 |
msgid "Morocco"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: classes/helpers/FrmFieldsHelper.php:1507
|
3900 |
msgid "Mozambique"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: classes/helpers/FrmFieldsHelper.php:1508
|
3904 |
msgid "Myanmar"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: classes/helpers/FrmFieldsHelper.php:1509
|
3908 |
msgid "Namibia"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: classes/helpers/FrmFieldsHelper.php:1510
|
3912 |
msgid "Nauru"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: classes/helpers/FrmFieldsHelper.php:1511
|
3916 |
msgid "Nepal"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: classes/helpers/FrmFieldsHelper.php:1512
|
3920 |
msgid "Netherlands"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: classes/helpers/FrmFieldsHelper.php:1513
|
3924 |
msgid "New Caledonia"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: classes/helpers/FrmFieldsHelper.php:1514
|
3928 |
msgid "New Zealand"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: classes/helpers/FrmFieldsHelper.php:1515
|
3932 |
msgid "Nicaragua"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: classes/helpers/FrmFieldsHelper.php:1516
|
3936 |
msgid "Niger"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: classes/helpers/FrmFieldsHelper.php:1517
|
3940 |
msgid "Nigeria"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: classes/helpers/FrmFieldsHelper.php:1518
|
3944 |
msgid "Norway"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: classes/helpers/FrmFieldsHelper.php:1519
|
3948 |
msgid "Northern Mariana Islands"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: classes/helpers/FrmFieldsHelper.php:1520
|
3952 |
msgid "Oman"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: classes/helpers/FrmFieldsHelper.php:1521
|
3956 |
msgid "Pakistan"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: classes/helpers/FrmFieldsHelper.php:1522
|
3960 |
msgid "Palau"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: classes/helpers/FrmFieldsHelper.php:1523
|
3964 |
msgid "Palestine"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: classes/helpers/FrmFieldsHelper.php:1524
|
3968 |
msgid "Panama"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: classes/helpers/FrmFieldsHelper.php:1525
|
3972 |
msgid "Papua New Guinea"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: classes/helpers/FrmFieldsHelper.php:1526
|
3976 |
msgid "Paraguay"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: classes/helpers/FrmFieldsHelper.php:1527
|
3980 |
msgid "Peru"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: classes/helpers/FrmFieldsHelper.php:1528
|
3984 |
msgid "Philippines"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: classes/helpers/FrmFieldsHelper.php:1529
|
3988 |
msgid "Pitcairn"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: classes/helpers/FrmFieldsHelper.php:1530
|
3992 |
msgid "Poland"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: classes/helpers/FrmFieldsHelper.php:1531
|
3996 |
msgid "Portugal"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: classes/helpers/FrmFieldsHelper.php:1532
|
4000 |
msgid "Puerto Rico"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: classes/helpers/FrmFieldsHelper.php:1533
|
4004 |
msgid "Qatar"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: classes/helpers/FrmFieldsHelper.php:1534
|
4008 |
msgid "Romania"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: classes/helpers/FrmFieldsHelper.php:1535
|
4012 |
msgid "Russia"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: classes/helpers/FrmFieldsHelper.php:1536
|
4016 |
msgid "Rwanda"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: classes/helpers/FrmFieldsHelper.php:1537
|
4020 |
msgid "Saint Kitts and Nevis"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: classes/helpers/FrmFieldsHelper.php:1538
|
4024 |
msgid "Saint Lucia"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: classes/helpers/FrmFieldsHelper.php:1539
|
4028 |
msgid "Saint Vincent and the Grenadines"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: classes/helpers/FrmFieldsHelper.php:1540
|
4032 |
msgid "Samoa"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: classes/helpers/FrmFieldsHelper.php:1541
|
4036 |
msgid "San Marino"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: classes/helpers/FrmFieldsHelper.php:1542
|
4040 |
msgid "Sao Tome and Principe"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: classes/helpers/FrmFieldsHelper.php:1543
|
4044 |
msgid "Saudi Arabia"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: classes/helpers/FrmFieldsHelper.php:1544
|
4048 |
msgid "Senegal"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: classes/helpers/FrmFieldsHelper.php:1545
|
4052 |
msgid "Serbia and Montenegro"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: classes/helpers/FrmFieldsHelper.php:1546
|
4056 |
msgid "Seychelles"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: classes/helpers/FrmFieldsHelper.php:1547
|
4060 |
msgid "Sierra Leone"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: classes/helpers/FrmFieldsHelper.php:1548
|
4064 |
msgid "Singapore"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: classes/helpers/FrmFieldsHelper.php:1549
|
4068 |
msgid "Slovakia"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: classes/helpers/FrmFieldsHelper.php:1550
|
4072 |
msgid "Slovenia"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: classes/helpers/FrmFieldsHelper.php:1551
|
4076 |
msgid "Solomon Islands"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: classes/helpers/FrmFieldsHelper.php:1552
|
4080 |
msgid "Somalia"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: classes/helpers/FrmFieldsHelper.php:1553
|
4084 |
msgid "South Africa"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: classes/helpers/FrmFieldsHelper.php:1554
|
4088 |
msgid "South Sudan"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: classes/helpers/FrmFieldsHelper.php:1555
|
4092 |
msgid "Spain"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: classes/helpers/FrmFieldsHelper.php:1556
|
4096 |
msgid "Sri Lanka"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: classes/helpers/FrmFieldsHelper.php:1557
|
4100 |
msgid "Sudan"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: classes/helpers/FrmFieldsHelper.php:1558
|
4104 |
msgid "Suriname"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: classes/helpers/FrmFieldsHelper.php:1559
|
4108 |
msgid "Swaziland"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: classes/helpers/FrmFieldsHelper.php:1560
|
4112 |
msgid "Sweden"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: classes/helpers/FrmFieldsHelper.php:1561
|
4116 |
msgid "Switzerland"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: classes/helpers/FrmFieldsHelper.php:1562
|
4120 |
msgid "Syria"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: classes/helpers/FrmFieldsHelper.php:1563
|
4124 |
msgid "Taiwan"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: classes/helpers/FrmFieldsHelper.php:1564
|
4128 |
msgid "Tajikistan"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: classes/helpers/FrmFieldsHelper.php:1565
|
4132 |
msgid "Tanzania"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: classes/helpers/FrmFieldsHelper.php:1566
|
4136 |
msgid "Thailand"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: classes/helpers/FrmFieldsHelper.php:1567
|
4140 |
msgid "Togo"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: classes/helpers/FrmFieldsHelper.php:1568
|
4144 |
msgid "Tonga"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: classes/helpers/FrmFieldsHelper.php:1569
|
4148 |
msgid "Trinidad and Tobago"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: classes/helpers/FrmFieldsHelper.php:1570
|
4152 |
msgid "Tunisia"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: classes/helpers/FrmFieldsHelper.php:1571
|
4156 |
msgid "Turkey"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: classes/helpers/FrmFieldsHelper.php:1572
|
4160 |
msgid "Turkmenistan"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: classes/helpers/FrmFieldsHelper.php:1573
|
4164 |
msgid "Tuvalu"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: classes/helpers/FrmFieldsHelper.php:1574
|
4168 |
msgid "Uganda"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: classes/helpers/FrmFieldsHelper.php:1575
|
4172 |
msgid "Ukraine"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: classes/helpers/FrmFieldsHelper.php:1576
|
4176 |
msgid "United Arab Emirates"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: classes/helpers/FrmFieldsHelper.php:1577
|
4180 |
msgid "United Kingdom"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: classes/helpers/FrmFieldsHelper.php:1578
|
4184 |
msgid "United States"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
+
#: classes/helpers/FrmFieldsHelper.php:1579
|
4188 |
msgid "Uruguay"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: classes/helpers/FrmFieldsHelper.php:1580
|
4192 |
msgid "Uzbekistan"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: classes/helpers/FrmFieldsHelper.php:1581
|
4196 |
msgid "Vanuatu"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: classes/helpers/FrmFieldsHelper.php:1582
|
4200 |
msgid "Vatican City"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: classes/helpers/FrmFieldsHelper.php:1583
|
4204 |
msgid "Venezuela"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: classes/helpers/FrmFieldsHelper.php:1584
|
4208 |
msgid "Vietnam"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: classes/helpers/FrmFieldsHelper.php:1585
|
4212 |
msgid "Virgin Islands, British"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: classes/helpers/FrmFieldsHelper.php:1586
|
4216 |
msgid "Virgin Islands, U.S."
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: classes/helpers/FrmFieldsHelper.php:1587
|
4220 |
msgid "Yemen"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: classes/helpers/FrmFieldsHelper.php:1588
|
4224 |
msgid "Zambia"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: classes/helpers/FrmFieldsHelper.php:1589
|
4228 |
msgid "Zimbabwe"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: classes/helpers/FrmFieldsHelper.php:1596
|
4232 |
msgid "Countries"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: classes/helpers/FrmFieldsHelper.php:1601
|
4236 |
msgid "U.S. State Abbreviations"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: classes/helpers/FrmFieldsHelper.php:1605
|
4240 |
msgid "U.S. States"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: classes/helpers/FrmFieldsHelper.php:1608
|
4244 |
msgid "Age"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: classes/helpers/FrmFieldsHelper.php:1609
|
4248 |
msgid "Under 18"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: classes/helpers/FrmFieldsHelper.php:1610
|
4252 |
msgid "18-24"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: classes/helpers/FrmFieldsHelper.php:1611
|
4256 |
msgid "25-34"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: classes/helpers/FrmFieldsHelper.php:1612
|
4260 |
msgid "35-44"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: classes/helpers/FrmFieldsHelper.php:1613
|
4264 |
msgid "45-54"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: classes/helpers/FrmFieldsHelper.php:1614
|
4268 |
msgid "55-64"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: classes/helpers/FrmFieldsHelper.php:1615
|
4272 |
msgid "65 or Above"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
+
#: classes/helpers/FrmFieldsHelper.php:1616
|
4276 |
msgid "Prefer Not to Answer"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: classes/helpers/FrmFieldsHelper.php:1619
|
4280 |
msgid "Satisfaction"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
+
#: classes/helpers/FrmFieldsHelper.php:1620
|
4284 |
msgid "Very Satisfied"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: classes/helpers/FrmFieldsHelper.php:1621
|
4288 |
msgid "Satisfied"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: classes/helpers/FrmFieldsHelper.php:1622
|
4292 |
+
#: classes/helpers/FrmFieldsHelper.php:1631
|
4293 |
+
#: classes/helpers/FrmFieldsHelper.php:1640
|
4294 |
msgid "Neutral"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: classes/helpers/FrmFieldsHelper.php:1623
|
4298 |
msgid "Unsatisfied"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: classes/helpers/FrmFieldsHelper.php:1624
|
4302 |
msgid "Very Unsatisfied"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: classes/helpers/FrmFieldsHelper.php:1625
|
4306 |
+
#: classes/helpers/FrmFieldsHelper.php:1634
|
4307 |
+
#: classes/helpers/FrmFieldsHelper.php:1643
|
4308 |
msgid "N/A"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: classes/helpers/FrmFieldsHelper.php:1628
|
4312 |
msgid "Importance"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: classes/helpers/FrmFieldsHelper.php:1629
|
4316 |
msgid "Very Important"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: classes/helpers/FrmFieldsHelper.php:1630
|
4320 |
msgid "Important"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: classes/helpers/FrmFieldsHelper.php:1632
|
4324 |
msgid "Somewhat Important"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: classes/helpers/FrmFieldsHelper.php:1633
|
4328 |
msgid "Not at all Important"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: classes/helpers/FrmFieldsHelper.php:1637
|
4332 |
msgid "Agreement"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: classes/helpers/FrmFieldsHelper.php:1638
|
4336 |
msgid "Strongly Agree"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: classes/helpers/FrmFieldsHelper.php:1639
|
4340 |
msgid "Agree"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: classes/helpers/FrmFieldsHelper.php:1641
|
4344 |
msgid "Disagree"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: classes/helpers/FrmFieldsHelper.php:1642
|
4348 |
msgid "Strongly Disagree"
|
4349 |
msgstr ""
|
4350 |
|
4402 |
msgstr ""
|
4403 |
|
4404 |
#: classes/helpers/FrmListHelper.php:257
|
4405 |
+
#: classes/helpers/FrmAppHelper.php:2265
|
4406 |
msgid "No items found."
|
4407 |
msgstr ""
|
4408 |
|
4679 |
msgid "Parent ID"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: classes/helpers/FrmAppHelper.php:1171
|
4683 |
msgid "View Forms and Templates"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: classes/helpers/FrmAppHelper.php:1172
|
4687 |
msgid "Add/Edit Forms and Templates"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: classes/helpers/FrmAppHelper.php:1173
|
4691 |
msgid "Delete Forms and Templates"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: classes/helpers/FrmAppHelper.php:1174
|
4695 |
msgid "Access this Settings Page"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: classes/helpers/FrmAppHelper.php:1175
|
4699 |
msgid "View Entries from Admin Area"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: classes/helpers/FrmAppHelper.php:1176
|
4703 |
msgid "Delete Entries from Admin Area"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: classes/helpers/FrmAppHelper.php:1183
|
4707 |
msgid "Add Entries from Admin Area"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: classes/helpers/FrmAppHelper.php:1184
|
4711 |
msgid "Edit Entries from Admin Area"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: classes/helpers/FrmAppHelper.php:1185
|
4715 |
msgid "View Reports"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: classes/helpers/FrmAppHelper.php:1186
|
4719 |
msgid "Add/Edit Views"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
+
#: classes/helpers/FrmAppHelper.php:1817
|
4723 |
msgid "at"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: classes/helpers/FrmAppHelper.php:1868
|
4727 |
+
#: classes/helpers/FrmAppHelper.php:1887
|
4728 |
msgid "seconds"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: classes/helpers/FrmAppHelper.php:1881
|
4732 |
msgid "year"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
+
#: classes/helpers/FrmAppHelper.php:1881
|
4736 |
msgid "years"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: classes/helpers/FrmAppHelper.php:1882
|
4740 |
msgid "month"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
+
#: classes/helpers/FrmAppHelper.php:1882
|
4744 |
msgid "months"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: classes/helpers/FrmAppHelper.php:1883
|
4748 |
msgid "week"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: classes/helpers/FrmAppHelper.php:1883
|
4752 |
msgid "weeks"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: classes/helpers/FrmAppHelper.php:1884
|
4756 |
msgid "day"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
+
#: classes/helpers/FrmAppHelper.php:1884
|
4760 |
msgid "days"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
+
#: classes/helpers/FrmAppHelper.php:1885
|
4764 |
msgid "hour"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
+
#: classes/helpers/FrmAppHelper.php:1885
|
4768 |
msgid "hours"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
+
#: classes/helpers/FrmAppHelper.php:1886
|
4772 |
msgid "minute"
|
4773 |
msgstr ""
|
4774 |
|
4775 |
+
#: classes/helpers/FrmAppHelper.php:1886
|
4776 |
msgid "minutes"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
+
#: classes/helpers/FrmAppHelper.php:1887
|
4780 |
msgid "second"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: classes/helpers/FrmAppHelper.php:1979
|
4784 |
msgid "Give this action a label for easy reference."
|
4785 |
msgstr ""
|
4786 |
|
4787 |
+
#: classes/helpers/FrmAppHelper.php:1980
|
4788 |
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."
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: classes/helpers/FrmAppHelper.php:1981
|
4792 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: classes/helpers/FrmAppHelper.php:1982
|
4796 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: classes/helpers/FrmAppHelper.php:1983
|
4800 |
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."
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: classes/helpers/FrmAppHelper.php:1984
|
4804 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
4805 |
msgstr ""
|
4806 |
|
4807 |
#. translators: %1$s: Form name, %2$s: Date
|
4808 |
+
#: classes/helpers/FrmAppHelper.php:1986
|
4809 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
+
#: classes/helpers/FrmAppHelper.php:2180
|
4813 |
+
#: classes/helpers/FrmAppHelper.php:2252
|
4814 |
msgid "Please wait while your site updates."
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: classes/helpers/FrmAppHelper.php:2181
|
4818 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: classes/helpers/FrmAppHelper.php:2184
|
4822 |
+
#: classes/helpers/FrmAppHelper.php:2211
|
4823 |
msgid "Loading…"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: classes/helpers/FrmAppHelper.php:2212
|
4827 |
msgid "Remove"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: classes/helpers/FrmAppHelper.php:2216
|
4831 |
msgid "No results match"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: classes/helpers/FrmAppHelper.php:2217
|
4835 |
msgid "That file looks like Spam."
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: classes/helpers/FrmAppHelper.php:2218
|
4839 |
msgid "There is an error in the calculation in the field with key"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: classes/helpers/FrmAppHelper.php:2219
|
4843 |
msgid "Please complete the preceding required fields before uploading a file."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: classes/helpers/FrmAppHelper.php:2226
|
4847 |
msgid "(Click to add description)"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: classes/helpers/FrmAppHelper.php:2227
|
4851 |
msgid "(Blank)"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: classes/helpers/FrmAppHelper.php:2228
|
4855 |
msgid "(no label)"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: classes/helpers/FrmAppHelper.php:2229
|
4859 |
msgid "Saving"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: classes/helpers/FrmAppHelper.php:2230
|
4863 |
msgid "Saved"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: classes/helpers/FrmAppHelper.php:2231
|
4867 |
msgid "OK"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: classes/helpers/FrmAppHelper.php:2234
|
4871 |
msgid "Clear default value when typing"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: classes/helpers/FrmAppHelper.php:2235
|
4875 |
msgid "Do not clear default value when typing"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: classes/helpers/FrmAppHelper.php:2236
|
4879 |
msgid "Default value will pass form validation"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: classes/helpers/FrmAppHelper.php:2237
|
4883 |
msgid "Default value will NOT pass form validation"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: classes/helpers/FrmAppHelper.php:2239
|
4887 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: classes/helpers/FrmAppHelper.php:2240
|
4891 |
msgid "WARNING: This will delete all fields inside of the section as well."
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: classes/helpers/FrmAppHelper.php:2241
|
4895 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: classes/helpers/FrmAppHelper.php:2244
|
4899 |
msgid "Enter Email"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: classes/helpers/FrmAppHelper.php:2245
|
4903 |
msgid "Confirm Email"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: classes/helpers/FrmAppHelper.php:2246
|
4907 |
msgid "Conditional content here"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: classes/helpers/FrmAppHelper.php:2248
|
4911 |
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."
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: classes/helpers/FrmAppHelper.php:2249
|
4915 |
msgid "Enter Password"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
+
#: classes/helpers/FrmAppHelper.php:2250
|
4919 |
msgid "Confirm Password"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
+
#: classes/helpers/FrmAppHelper.php:2251
|
4923 |
msgid "Import Complete"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: classes/helpers/FrmAppHelper.php:2253
|
4927 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: classes/helpers/FrmAppHelper.php:2254
|
4931 |
msgid "Private"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: classes/helpers/FrmAppHelper.php:2257
|
4935 |
msgid "No new licenses were found"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
+
#: classes/helpers/FrmAppHelper.php:2258
|
4939 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: classes/helpers/FrmAppHelper.php:2259
|
4943 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: classes/helpers/FrmAppHelper.php:2260
|
4947 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: classes/helpers/FrmAppHelper.php:2261
|
4951 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
4952 |
msgstr ""
|
4953 |
|
4954 |
+
#: classes/helpers/FrmAppHelper.php:2262
|
4955 |
msgid "Please select a limit between 0 and 200."
|
4956 |
msgstr ""
|
4957 |
|
4958 |
+
#: classes/helpers/FrmAppHelper.php:2288
|
4959 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: classes/helpers/FrmAppHelper.php:2315
|
4963 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
4964 |
msgstr ""
|
4965 |
|
4966 |
+
#: classes/helpers/FrmAppHelper.php:2343
|
4967 |
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+."
|
4968 |
msgstr ""
|
4969 |
|
4970 |
+
#: classes/helpers/FrmAppHelper.php:2349
|
4971 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
4972 |
msgstr ""
|
4973 |
|
4974 |
+
#: classes/helpers/FrmAppHelper.php:2363
|
4975 |
msgid "English"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
+
#: classes/helpers/FrmAppHelper.php:2364
|
4979 |
msgid "Afrikaans"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
+
#: classes/helpers/FrmAppHelper.php:2365
|
4983 |
msgid "Albanian"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
+
#: classes/helpers/FrmAppHelper.php:2366
|
4987 |
msgid "Arabic"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
+
#: classes/helpers/FrmAppHelper.php:2367
|
4991 |
msgid "Armenian"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: classes/helpers/FrmAppHelper.php:2368
|
4995 |
msgid "Azerbaijani"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
+
#: classes/helpers/FrmAppHelper.php:2369
|
4999 |
msgid "Basque"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: classes/helpers/FrmAppHelper.php:2370
|
5003 |
msgid "Bosnian"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: classes/helpers/FrmAppHelper.php:2371
|
5007 |
msgid "Bulgarian"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
+
#: classes/helpers/FrmAppHelper.php:2372
|
5011 |
msgid "Catalan"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: classes/helpers/FrmAppHelper.php:2373
|
5015 |
msgid "Chinese Hong Kong"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: classes/helpers/FrmAppHelper.php:2374
|
5019 |
msgid "Chinese Simplified"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: classes/helpers/FrmAppHelper.php:2375
|
5023 |
msgid "Chinese Traditional"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
+
#: classes/helpers/FrmAppHelper.php:2376
|
5027 |
msgid "Croatian"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: classes/helpers/FrmAppHelper.php:2377
|
5031 |
msgid "Czech"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
+
#: classes/helpers/FrmAppHelper.php:2378
|
5035 |
msgid "Danish"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
+
#: classes/helpers/FrmAppHelper.php:2379
|
5039 |
msgid "Dutch"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: classes/helpers/FrmAppHelper.php:2380
|
5043 |
msgid "English/UK"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: classes/helpers/FrmAppHelper.php:2381
|
5047 |
msgid "Esperanto"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: classes/helpers/FrmAppHelper.php:2382
|
5051 |
msgid "Estonian"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: classes/helpers/FrmAppHelper.php:2383
|
5055 |
msgid "Faroese"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: classes/helpers/FrmAppHelper.php:2384
|
5059 |
msgid "Farsi/Persian"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: classes/helpers/FrmAppHelper.php:2385
|
5063 |
msgid "Filipino"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: classes/helpers/FrmAppHelper.php:2386
|
5067 |
msgid "Finnish"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: classes/helpers/FrmAppHelper.php:2387
|
5071 |
msgid "French"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: classes/helpers/FrmAppHelper.php:2388
|
5075 |
msgid "French/Canadian"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: classes/helpers/FrmAppHelper.php:2389
|
5079 |
msgid "French/Swiss"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: classes/helpers/FrmAppHelper.php:2390
|
5083 |
msgid "German"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: classes/helpers/FrmAppHelper.php:2391
|
5087 |
msgid "German/Austria"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: classes/helpers/FrmAppHelper.php:2392
|
5091 |
msgid "German/Switzerland"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: classes/helpers/FrmAppHelper.php:2393
|
5095 |
msgid "Greek"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: classes/helpers/FrmAppHelper.php:2394
|
5099 |
+
#: classes/helpers/FrmAppHelper.php:2395
|
5100 |
msgid "Hebrew"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: classes/helpers/FrmAppHelper.php:2396
|
5104 |
msgid "Hindi"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: classes/helpers/FrmAppHelper.php:2397
|
5108 |
msgid "Hungarian"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: classes/helpers/FrmAppHelper.php:2398
|
5112 |
msgid "Icelandic"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: classes/helpers/FrmAppHelper.php:2399
|
5116 |
msgid "Indonesian"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: classes/helpers/FrmAppHelper.php:2400
|
5120 |
msgid "Italian"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: classes/helpers/FrmAppHelper.php:2401
|
5124 |
msgid "Japanese"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: classes/helpers/FrmAppHelper.php:2402
|
5128 |
msgid "Korean"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: classes/helpers/FrmAppHelper.php:2403
|
5132 |
msgid "Latvian"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: classes/helpers/FrmAppHelper.php:2404
|
5136 |
msgid "Lithuanian"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: classes/helpers/FrmAppHelper.php:2405
|
5140 |
msgid "Malaysian"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: classes/helpers/FrmAppHelper.php:2406
|
5144 |
msgid "Norwegian"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: classes/helpers/FrmAppHelper.php:2407
|
5148 |
msgid "Polish"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: classes/helpers/FrmAppHelper.php:2408
|
5152 |
msgid "Portuguese"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: classes/helpers/FrmAppHelper.php:2409
|
5156 |
msgid "Portuguese/Brazilian"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: classes/helpers/FrmAppHelper.php:2410
|
5160 |
msgid "Portuguese/Portugal"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: classes/helpers/FrmAppHelper.php:2411
|
5164 |
msgid "Romanian"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: classes/helpers/FrmAppHelper.php:2412
|
5168 |
msgid "Russian"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: classes/helpers/FrmAppHelper.php:2413
|
5172 |
+
#: classes/helpers/FrmAppHelper.php:2414
|
5173 |
msgid "Serbian"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
+
#: classes/helpers/FrmAppHelper.php:2415
|
5177 |
msgid "Slovak"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: classes/helpers/FrmAppHelper.php:2416
|
5181 |
msgid "Slovenian"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: classes/helpers/FrmAppHelper.php:2417
|
5185 |
msgid "Spanish"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: classes/helpers/FrmAppHelper.php:2418
|
5189 |
msgid "Spanish/Latin America"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: classes/helpers/FrmAppHelper.php:2419
|
5193 |
msgid "Swedish"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: classes/helpers/FrmAppHelper.php:2420
|
5197 |
msgid "Tamil"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: classes/helpers/FrmAppHelper.php:2421
|
5201 |
msgid "Thai"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: classes/helpers/FrmAppHelper.php:2422
|
5205 |
+
#: classes/helpers/FrmAppHelper.php:2423
|
5206 |
msgid "Turkish"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: classes/helpers/FrmAppHelper.php:2424
|
5210 |
msgid "Ukranian"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
+
#: classes/helpers/FrmAppHelper.php:2425
|
5214 |
msgid "Vietnamese"
|
5215 |
msgstr ""
|
5216 |
|
readme.txt
CHANGED
@@ -1,37 +1,38 @@
|
|
1 |
-
=== Formidable
|
2 |
-
|
|
|
3 |
Tags: forms, contact form, form builder, survey, form maker, form, form creator
|
4 |
Requires at least: 4.6
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 4.03.
|
8 |
|
9 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
|
10 |
|
11 |
== Description ==
|
12 |
= The Most Powerful WordPress form builder plugin on the market =
|
13 |
-
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 contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, calculator forms, and just about
|
14 |
|
15 |
-
At Formidable, creating the most extendable
|
16 |
|
17 |
Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive so your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
|
18 |
|
19 |
On top of that, we have optimized Formidable for speed and maximum server performance. Whether you use Formidable to build a contact form on your own site or an advanced form for your client, you can confidently say that it's one of the FASTEST WordPress form builders on the market.
|
20 |
|
21 |
> <strong>Formidable Forms Pro</strong><br />
|
22 |
-
> This form builder plugin is the lite version of
|
23 |
|
24 |
You can start with our pre-built templates or create totally custom forms from scratch all with an easy-to-use drag & drop form builder interface.
|
25 |
|
26 |
https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
|
27 |
|
28 |
-
Let's take a look at all the powerful
|
29 |
|
30 |
= Drag & Drop Form Maker and Advanced Form Builder =
|
31 |
|
32 |
The Formidable drag & drop form builder allows you to quickly create unlimited surveys, quizzes, registration forms, and just about any other type of form that you want.
|
33 |
|
34 |
-
Our form
|
35 |
|
36 |
* Single line text (for names, phone numbers, addresses, and more)
|
37 |
* Email
|
@@ -56,7 +57,7 @@ Formidable is a **100% GDPR-friendly** form generator. You can turn off IP track
|
|
56 |
|
57 |
Need to import your leads to another service like MailChimp? No problem. **Export leads to a CSV**, open it in Excel, and import anywhere.
|
58 |
|
59 |
-
You can also configure unlimited
|
60 |
|
61 |
On top of that, you can easily customize the success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.
|
62 |
|
@@ -74,7 +75,7 @@ The best part is that you can do this all within Formidable without any third-pa
|
|
74 |
|
75 |
= Quickly Create Advanced WordPress Registration Forms for Any Use Case =
|
76 |
|
77 |
-
Whether you need to create a youth sports team
|
78 |
|
79 |
Then, our marketing integrations and APIs can send the email form and other form data anywhere you want.
|
80 |
|
@@ -126,7 +127,7 @@ You can even show submitted form values in the WooCommerce purchase receipt emai
|
|
126 |
|
127 |
= Make Powerful Quiz Forms & Calculators =
|
128 |
|
129 |
-
You can also use
|
130 |
|
131 |
More on quiz forms later, but here are some example web calculators you can quickly add to your WordPress site:
|
132 |
|
@@ -140,7 +141,7 @@ More on quiz forms later, but here are some example web calculators you can quic
|
|
140 |
|
141 |
... and our powerful form calculations allow you to build just about any other type of calculator form.
|
142 |
|
143 |
-
If that wasn't enough, you can also use
|
144 |
|
145 |
Our goal is to go beyond simple contact forms and allow you to create form-based solutions without any code :)
|
146 |
|
@@ -148,9 +149,9 @@ Our goal is to go beyond simple contact forms and allow you to create form-based
|
|
148 |
|
149 |
If you run a WordPress membership site, then you need more advanced forms.
|
150 |
|
151 |
-
The Formidable Form builder
|
152 |
|
153 |
-
With our front-end
|
154 |
|
155 |
Our front-end form editing feature is unique to us, and you will not find any other WordPress form plugin offering such a solution with the level of extendability that we do.
|
156 |
|
@@ -164,9 +165,9 @@ You can even showcase form data on the front-end of your website by embedding gr
|
|
164 |
|
165 |
Formidable goes far above and beyond basic forms to offer all the advanced form fields and features you need to grow your business.
|
166 |
|
167 |
-
This includes things like multi-page forms, save and continue
|
168 |
|
169 |
-
We're on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don't have to install 5 plugins alongside your form maker
|
170 |
|
171 |
= Extend and Customize Your Forms - Developer's Dream Come True =
|
172 |
|
@@ -182,14 +183,14 @@ On top of that, our hooks and filters allow you to extend Formidable to meet you
|
|
182 |
|
183 |
= Full Formidable Feature List =
|
184 |
|
185 |
-
Since Formidable is not your average WordPress form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker
|
186 |
|
187 |
* <a href="https://formidableforms.com/features/drag-drop-form-builder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Online drag and drop form builder</a>. Build everything from contact forms and email forms to calculators and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.
|
188 |
-
* <a href="https://formidableforms.com/features/display-form-data-views/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Display form data with Views</a>. Other WordPress form plugins only let you collect data. Formidable lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.
|
189 |
* <a href="https://formidableforms.com/features/dynamically-add-form-fields/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Repeating field groups (repeaters)</a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.
|
190 |
-
* <a href="https://formidableforms.com/features/wordpress-multiple-file-upload-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Drag and drop multiple file upload forms</a>. Easily upload documents, files, photos, and music, with any number of files in job application forms (resumes), WordPress User Profile Forms (avatars),
|
191 |
* <a href="https://formidableforms.com/features/wordpress-multi-step-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Multi-step forms with progress bars</a>. Want to increase conversion rates and collect more leads with smart forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.
|
192 |
-
* <a href="https://formidableforms.com/features/cascading-dropdown-lookup-field/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Cascading lookup fields</a>. Change values in other form fields or drill down through options to reveal a final value. Designed for
|
193 |
* Datepicker fields with advanced <a href="https://formidableforms.com/features/datepicker-options-for-dates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">datepicker options</a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for email forms, basic online booking forms, and event registration forms.
|
194 |
* Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, and sports registration forms to a team.
|
195 |
* Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.
|
@@ -210,7 +211,7 @@ Since Formidable is not your average WordPress form plugin, this feature list is
|
|
210 |
* <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Graphs and charts for data visualization</a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).
|
211 |
* Form permission settings. Limit visibility of specialized forms based on user role.
|
212 |
* Form entry limits. Limit a registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.
|
213 |
-
* <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
|
214 |
* Conditionally redirect to a custom page after a custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.
|
215 |
* We believe that forms should be extendable to 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 still keep the ease and speed of a drag & drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.
|
216 |
* <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 from a form to another service? Check.
|
@@ -219,7 +220,7 @@ Since Formidable is not your average WordPress form plugin, this feature list is
|
|
219 |
* <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>. Don't alienate your audience. Ensure your surveys, quiz forms, calculators, lead capture forms, and other online forms are compliant and available to anyone. Allow those using screenreaders to successfully use and submit your WordPress forms.
|
220 |
* <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 reCAPTCHA, Akismet, and the WordPress comment blacklist.
|
221 |
* <a href="https://formidableforms.com/features/fill-out-forms-automatically/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Fill out forms automatically</a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address.
|
222 |
-
* <a href="https://formidableforms.com/features/white-label-form-builder-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">White label
|
223 |
* <a href="https://formidableforms.com/features/wordpress-user-registration/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress user registration forms</a>. Register WordPress users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow logged in and logged out users to create new subdomains.
|
224 |
* <a href="https://formidableforms.com/features/digital-form-signatures/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Digital signature forms</a>. Eliminate paper forms with a digital signature field in application forms and advanced forms.
|
225 |
* <a href="https://formidableforms.com/features/form-action-automation-scheduling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form action automation</a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a lead form and much more.
|
@@ -244,8 +245,8 @@ In addition to all the features listed above, power up your forms with these int
|
|
244 |
* <a href="https://formidableforms.com/features/entries-to-activecampaign/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">ActiveCampaign Forms</a>. Let your form pull double duty as a payment form, post creation form, email form, user registration form, and an ActiveCampaign integration.
|
245 |
* <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route lead form data from your WordPress forms to HubSpot CRM.
|
246 |
* <a href="https://formidableforms.com/features/twilio-sms-form-notifications/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important payment form is completed, and let your form leads know you received their message.
|
247 |
-
* <a href="https://formidableforms.com/features/wpml-translated-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Multilingual Forms</a>. Translate your WordPress forms into multiple languages using our integrated multilingual forms
|
248 |
-
* <a href="https://formidableforms.com/features/polylang-multilingual-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Multilingual Forms</a>. Get the form creator with Polylang bilingual or multilingual contact forms.
|
249 |
* <a href="https://formidableforms.com/features/form-entry-routing-with-zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.
|
250 |
* <a href="https://formidableforms.com/features/bootstrap-form-styling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a>. Instantly add Bootstrap form styling to survey forms and advanced forms.
|
251 |
* <a href="https://formidableforms.com/features/bootstrap-modal-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a>. Open login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.
|
@@ -256,23 +257,23 @@ Give Formidable Forms a try.
|
|
256 |
|
257 |
Want to unlock the full power? <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Upgrade to our Pro forms</a> to get all the features for smart forms and full web applications.
|
258 |
|
259 |
-
=
|
260 |
This form builder plugin is created by Steve and Steph Wells and the amazing Formidable Team.
|
261 |
|
262 |
-
Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a>
|
263 |
|
264 |
== Installation ==
|
265 |
1. Go to the Plugins -> 'Add New' page in your WP admin area
|
266 |
2. Search for 'Formidable'
|
267 |
3. Click the 'Install Now' button
|
268 |
-
4. Activate
|
269 |
-
5. Go to the Formidable menu
|
270 |
-
6. Click the 'Add New' button to go to the form generator page and create a new email form
|
271 |
7. Insert your newly created quiz, or survey form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` to add it in a page template
|
272 |
|
273 |
== Screenshots ==
|
274 |
1. Build professional WP forms without any code.
|
275 |
-
2. Form builder
|
276 |
3. Field Options and CSS Layout Classes on the form creator page
|
277 |
4. Field Options for checkbox fields in the form maker
|
278 |
5. View, create, edit, and delete entries on the back end from a employment application form, to do list, order form, and more.
|
@@ -280,11 +281,11 @@ Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> a
|
|
280 |
|
281 |
== Frequently Asked Questions ==
|
282 |
= How do I get started with the best WordPress form plugin? =
|
283 |
-
The fastest way to build a contact form is to use the template we built for you. After you activate Formidable
|
284 |
|
285 |
Want to make a new form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template on the form buider and click "Create".
|
286 |
|
287 |
-
Next, edit or create a WordPress contact page. Click the "Formidable" button to open the
|
288 |
|
289 |
Learn more about <a href="https://formidableforms.com/wordpress-contact-form-template-to-unique/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">using the contact form template</a>.
|
290 |
|
@@ -294,16 +295,15 @@ When you do not receive emails, try the following steps:
|
|
294 |
1. Double check that your email address is present and correct in your Email form action on the form settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
|
295 |
2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, form emails will not work either.
|
296 |
3. Check your SPAM box.
|
297 |
-
4. Try a different email address in your form
|
298 |
5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
|
299 |
6. If none of these steps fix the email problem and no other WP emails are going out, please get in touch with your web host.
|
300 |
|
301 |
<a href="https://formidableforms.com/wordpress-not-sending-emails-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Read more about WordPress emails not sending</a> in our blog.
|
302 |
|
303 |
= What types of WordPress forms can I build with Formidable? =
|
304 |
-
The Formidable drag & drop form builder combined with our add-ons is the most powerful form maker
|
305 |
|
306 |
-
* Simple & Advanced Forms
|
307 |
* Custom Contact Forms
|
308 |
* Multi-Page Forms with progress bar
|
309 |
* Dynamic Forms (where fields change based on user’s answers)
|
@@ -330,7 +330,7 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
|
|
330 |
* Video Release Forms
|
331 |
* Partnership Agreements
|
332 |
* PTO Request Form
|
333 |
-
* Online
|
334 |
* Signature Forms
|
335 |
* Custom Signature Forms
|
336 |
* Maintenance Request Form
|
@@ -341,8 +341,8 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
|
|
341 |
* Volunteer Registration Form
|
342 |
* Membership Registration Forms
|
343 |
* Event Registration Forms
|
344 |
-
* Custom
|
345 |
-
*
|
346 |
* Quiz Forms
|
347 |
* Members Only Contact Form
|
348 |
* Mortgage Calculator
|
@@ -350,12 +350,17 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
|
|
350 |
* BMI Calculator
|
351 |
* User Age Calculator
|
352 |
* Online Quote Calculator
|
353 |
-
* Recipe Reviews
|
354 |
|
355 |
-
= I'd like access to all advanced
|
356 |
To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced forms, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
|
357 |
|
358 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
359 |
= 4.03.05 =
|
360 |
* New: Add a center alignment option for section headings.
|
361 |
* Keep the add field & field options links fixed to prevent extra scrolling to add more fields.
|
@@ -363,9 +368,4 @@ To get access to more features, integrations, and support, <a href="https://form
|
|
363 |
* Fix: When only one box was selected for the default value in a checkbox field, it wasn't being checked.
|
364 |
* Fix: Recaptcha labels are included for accessibility.
|
365 |
|
366 |
-
= 4.03.04 =
|
367 |
-
* Better compatibility with WP 5.3.
|
368 |
-
* Switch from using date to gmdate per WP codestyling recommendations.
|
369 |
-
* Fix: Prevent undefined get_plugins error on some sites.
|
370 |
-
|
371 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|
1 |
+
=== Formidable Form Builder - Contact Forms, Surveys & Quiz Forms Plugin for WordPress ===
|
2 |
+
Plugin Name: Formidable Forms - Contact Forms, Surveys & Quiz Forms Plugin for WordPress
|
3 |
+
Contributors: formidableforms, sswells, srwells
|
4 |
Tags: forms, contact form, form builder, survey, form maker, form, form creator
|
5 |
Requires at least: 4.6
|
6 |
+
Tested up to: 5.3.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.03.06
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
|
11 |
|
12 |
== Description ==
|
13 |
= The Most Powerful WordPress form builder plugin on the market =
|
14 |
+
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 contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, calculator forms, and just about anything else you can imagine.
|
15 |
|
16 |
+
At Formidable, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!
|
17 |
|
18 |
Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive so your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
|
19 |
|
20 |
On top of that, we have optimized Formidable for speed and maximum server performance. Whether you use Formidable to build a contact form on your own site or an advanced form for your client, you can confidently say that it's one of the FASTEST WordPress form builders on the market.
|
21 |
|
22 |
> <strong>Formidable Forms Pro</strong><br />
|
23 |
+
> This form builder plugin is the lite version of Formidable Forms Pro that comes with all the features you will ever need. Our premium features include repeater fields, email subscription forms, multi-page forms, file upload forms, smart forms with conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing, powerful Formidable Views to display data in web applications, and far more than just contact forms. <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="Formidable">Click here to purchase the most advanced premium WordPress form builder plugin now!</a>
|
24 |
|
25 |
You can start with our pre-built templates or create totally custom forms from scratch all with an easy-to-use drag & drop form builder interface.
|
26 |
|
27 |
https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
|
28 |
|
29 |
+
Let's take a look at all the powerful features that you get with Formidable for making amazing lead forms, subscription forms, request a quote forms, donation forms, payment order forms, surveys, polls and more.
|
30 |
|
31 |
= Drag & Drop Form Maker and Advanced Form Builder =
|
32 |
|
33 |
The Formidable drag & drop form builder allows you to quickly create unlimited surveys, quizzes, registration forms, and just about any other type of form that you want.
|
34 |
|
35 |
+
Our form builder comes with all the powerful form fields that you need to create a solution-focused form, fast!
|
36 |
|
37 |
* Single line text (for names, phone numbers, addresses, and more)
|
38 |
* Email
|
57 |
|
58 |
Need to import your leads to another service like MailChimp? No problem. **Export leads to a CSV**, open it in Excel, and import anywhere.
|
59 |
|
60 |
+
You can also configure unlimited email notifications and autoresponders triggered by form submissions.
|
61 |
|
62 |
On top of that, you can easily customize the success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.
|
63 |
|
75 |
|
76 |
= Quickly Create Advanced WordPress Registration Forms for Any Use Case =
|
77 |
|
78 |
+
Whether you need to create a youth sports team, event, or church retreat registration form, Formidable has got you covered. Unlike other form plugins, Formidable comes with a repeater field that allows you to create the most powerful registration forms.
|
79 |
|
80 |
Then, our marketing integrations and APIs can send the email form and other form data anywhere you want.
|
81 |
|
127 |
|
128 |
= Make Powerful Quiz Forms & Calculators =
|
129 |
|
130 |
+
You can also use Formidable to create quiz forms and calculator forms.
|
131 |
|
132 |
More on quiz forms later, but here are some example web calculators you can quickly add to your WordPress site:
|
133 |
|
141 |
|
142 |
... and our powerful form calculations allow you to build just about any other type of calculator form.
|
143 |
|
144 |
+
If that wasn't enough, you can also use Formidable to create quizzes, polls, and surveys on your WordPress site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.
|
145 |
|
146 |
Our goal is to go beyond simple contact forms and allow you to create form-based solutions without any code :)
|
147 |
|
149 |
|
150 |
If you run a WordPress membership site, then you need more advanced forms.
|
151 |
|
152 |
+
The Formidable Form builder allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.
|
153 |
|
154 |
+
With our front-end editing, you can also build custom profile forms and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first lead form to the last payment form.
|
155 |
|
156 |
Our front-end form editing feature is unique to us, and you will not find any other WordPress form plugin offering such a solution with the level of extendability that we do.
|
157 |
|
165 |
|
166 |
Formidable goes far above and beyond basic forms to offer all the advanced form fields and features you need to grow your business.
|
167 |
|
168 |
+
This includes things like multi-page forms, save and continue, cascading form fields, powerful conditional logic, partial submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.
|
169 |
|
170 |
+
We're on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don't have to install 5 plugins alongside your form maker to do everything you want.
|
171 |
|
172 |
= Extend and Customize Your Forms - Developer's Dream Come True =
|
173 |
|
183 |
|
184 |
= Full Formidable Feature List =
|
185 |
|
186 |
+
Since Formidable is not your average WordPress form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker, your choice :)
|
187 |
|
188 |
* <a href="https://formidableforms.com/features/drag-drop-form-builder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Online drag and drop form builder</a>. Build everything from contact forms and email forms to calculators and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.
|
189 |
+
* <a href="https://formidableforms.com/features/display-form-data-views/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Display form data with Views</a>. Other WordPress form builder plugins only let you collect data. Formidable lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.
|
190 |
* <a href="https://formidableforms.com/features/dynamically-add-form-fields/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Repeating field groups (repeaters)</a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.
|
191 |
+
* <a href="https://formidableforms.com/features/wordpress-multiple-file-upload-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Drag and drop multiple file upload forms</a>. Easily upload documents, files, photos, and music, with any number of files in job application forms (resumes), WordPress User Profile Forms (avatars), and get a quote forms.
|
192 |
* <a href="https://formidableforms.com/features/wordpress-multi-step-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Multi-step forms with progress bars</a>. Want to increase conversion rates and collect more leads with smart forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.
|
193 |
+
* <a href="https://formidableforms.com/features/cascading-dropdown-lookup-field/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Cascading lookup fields</a>. Change values in other form fields or drill down through options to reveal a final value. Designed for year/make/model fields in auto forms and country/state/city fields. You can even use lookup fields to get a price from a separate product form.
|
194 |
* Datepicker fields with advanced <a href="https://formidableforms.com/features/datepicker-options-for-dates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">datepicker options</a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for email forms, basic online booking forms, and event registration forms.
|
195 |
* Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, and sports registration forms to a team.
|
196 |
* Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.
|
211 |
* <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Graphs and charts for data visualization</a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).
|
212 |
* Form permission settings. Limit visibility of specialized forms based on user role.
|
213 |
* Form entry limits. Limit a registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.
|
214 |
+
* <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 or team size has been reached. Want a form for questions about a planned event that auto closes when the event starts? No problem.
|
215 |
* Conditionally redirect to a custom page after a custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.
|
216 |
* We believe that forms should be extendable to 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 still keep the ease and speed of a drag & drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.
|
217 |
* <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 from a form to another service? Check.
|
220 |
* <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>. Don't alienate your audience. Ensure your surveys, quiz forms, calculators, lead capture forms, and other online forms are compliant and available to anyone. Allow those using screenreaders to successfully use and submit your WordPress forms.
|
221 |
* <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 reCAPTCHA, Akismet, and the WordPress comment blacklist.
|
222 |
* <a href="https://formidableforms.com/features/fill-out-forms-automatically/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Fill out forms automatically</a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address.
|
223 |
+
* <a href="https://formidableforms.com/features/white-label-form-builder-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">White label forms</a>. Replace the Formidable branding with your own in the admin area. Plus, we never show "powered by" links in your free contact forms or online forms.
|
224 |
* <a href="https://formidableforms.com/features/wordpress-user-registration/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress user registration forms</a>. Register WordPress users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow logged in and logged out users to create new subdomains.
|
225 |
* <a href="https://formidableforms.com/features/digital-form-signatures/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Digital signature forms</a>. Eliminate paper forms with a digital signature field in application forms and advanced forms.
|
226 |
* <a href="https://formidableforms.com/features/form-action-automation-scheduling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form action automation</a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a lead form and much more.
|
245 |
* <a href="https://formidableforms.com/features/entries-to-activecampaign/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">ActiveCampaign Forms</a>. Let your form pull double duty as a payment form, post creation form, email form, user registration form, and an ActiveCampaign integration.
|
246 |
* <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route lead form data from your WordPress forms to HubSpot CRM.
|
247 |
* <a href="https://formidableforms.com/features/twilio-sms-form-notifications/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important payment form is completed, and let your form leads know you received their message.
|
248 |
+
* <a href="https://formidableforms.com/features/wpml-translated-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Multilingual Forms</a>. Translate your WordPress forms into multiple languages using our integrated multilingual forms.
|
249 |
+
* <a href="https://formidableforms.com/features/polylang-multilingual-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Multilingual Forms</a>. Get the form creator with Polylang bilingual or multilingual contact forms. Use the form builder to make your form, then translate it without duplicate forms.
|
250 |
* <a href="https://formidableforms.com/features/form-entry-routing-with-zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.
|
251 |
* <a href="https://formidableforms.com/features/bootstrap-form-styling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a>. Instantly add Bootstrap form styling to survey forms and advanced forms.
|
252 |
* <a href="https://formidableforms.com/features/bootstrap-modal-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a>. Open login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.
|
257 |
|
258 |
Want to unlock the full power? <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Upgrade to our Pro forms</a> to get all the features for smart forms and full web applications.
|
259 |
|
260 |
+
= Credits =
|
261 |
This form builder plugin is created by Steve and Steph Wells and the amazing Formidable Team.
|
262 |
|
263 |
+
Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> fund with <a href="https://syedbalkhi.com/">Syed Balkhi</a> as an Advisor to our company.
|
264 |
|
265 |
== Installation ==
|
266 |
1. Go to the Plugins -> 'Add New' page in your WP admin area
|
267 |
2. Search for 'Formidable'
|
268 |
3. Click the 'Install Now' button
|
269 |
+
4. Activate Formidable through the 'Plugins' menu
|
270 |
+
5. Go to the newly added 'Formidable' menu
|
271 |
+
6. Click the 'Add New' button to go to the form generator page and create a new email form or advanced form
|
272 |
7. Insert your newly created quiz, or survey form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` to add it in a page template
|
273 |
|
274 |
== Screenshots ==
|
275 |
1. Build professional WP forms without any code.
|
276 |
+
2. Form builder page for creating a survey, quote form, payment form, calculator form, quiz form, and many more.
|
277 |
3. Field Options and CSS Layout Classes on the form creator page
|
278 |
4. Field Options for checkbox fields in the form maker
|
279 |
5. View, create, edit, and delete entries on the back end from a employment application form, to do list, order form, and more.
|
281 |
|
282 |
== Frequently Asked Questions ==
|
283 |
= How do I get started with the best WordPress form plugin? =
|
284 |
+
The fastest way to build a contact form is to use the template we built for you. After you activate Formidable, insert [formidable id=contact-form] on the WordPress page of your choice. That's it!
|
285 |
|
286 |
Want to make a new form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template on the form buider and click "Create".
|
287 |
|
288 |
+
Next, edit or create a WordPress contact page. Click the "Formidable" button to open the shortcode builder. Choose your contact form and insert it into the WordPress page. Save the contact page for a beautiful WP contact form, ready to collect and store your leads.
|
289 |
|
290 |
Learn more about <a href="https://formidableforms.com/wordpress-contact-form-template-to-unique/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">using the contact form template</a>.
|
291 |
|
295 |
1. Double check that your email address is present and correct in your Email form action on the form settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
|
296 |
2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, form emails will not work either.
|
297 |
3. Check your SPAM box.
|
298 |
+
4. Try a different email address in your settings in the form builder.
|
299 |
5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
|
300 |
6. If none of these steps fix the email problem and no other WP emails are going out, please get in touch with your web host.
|
301 |
|
302 |
<a href="https://formidableforms.com/wordpress-not-sending-emails-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Read more about WordPress emails not sending</a> in our blog.
|
303 |
|
304 |
= What types of WordPress forms can I build with Formidable? =
|
305 |
+
The Formidable drag & drop form builder combined with our add-ons is the most powerful form maker on the market. Here are some types of WordPress forms you can create:
|
306 |
|
|
|
307 |
* Custom Contact Forms
|
308 |
* Multi-Page Forms with progress bar
|
309 |
* Dynamic Forms (where fields change based on user’s answers)
|
330 |
* Video Release Forms
|
331 |
* Partnership Agreements
|
332 |
* PTO Request Form
|
333 |
+
* Online Petitions
|
334 |
* Signature Forms
|
335 |
* Custom Signature Forms
|
336 |
* Maintenance Request Form
|
341 |
* Volunteer Registration Form
|
342 |
* Membership Registration Forms
|
343 |
* Event Registration Forms
|
344 |
+
* Custom Surveys
|
345 |
+
* Polls
|
346 |
* Quiz Forms
|
347 |
* Members Only Contact Form
|
348 |
* Mortgage Calculator
|
350 |
* BMI Calculator
|
351 |
* User Age Calculator
|
352 |
* Online Quote Calculator
|
353 |
+
* Recipe Reviews
|
354 |
|
355 |
+
= I'd like access to all advanced features. How can I get them? =
|
356 |
To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced forms, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
|
357 |
|
358 |
== Changelog ==
|
359 |
+
= 4.03.06 =
|
360 |
+
* New: Use autocomplete for settings for selecting a WordPress page for faster load time on sites with many pages.
|
361 |
+
* Fix: When saving conditional logic settings in WP 5.3.1, there was a PHP error message showing on some sites.
|
362 |
+
* Fix: Custom CSS was being sanitized incorrectly and > was switched to &rt;
|
363 |
+
|
364 |
= 4.03.05 =
|
365 |
* New: Add a center alignment option for section headings.
|
366 |
* Keep the add field & field options links fixed to prevent extra scrolling to add more fields.
|
368 |
* Fix: When only one box was selected for the default value in a checkbox field, it wasn't being checked.
|
369 |
* Fix: Recaptcha labels are included for accessibility.
|
370 |
|
|
|
|
|
|
|
|
|
|
|
371 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|