Version Description
- Fix: Duplicated form fields would occasionally generate long field keys that were preventing fields from being created.
- Fix: Fields for controlling radio options in the form builder were not using unique id attribute values.
Download this release
Release Info
Developer | formidableforms |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 4.09.07 |
Comparing to | |
See all releases |
Code changes from version 4.09.06 to 4.09.07
- classes/helpers/FrmAppHelper.php +54 -20
- classes/helpers/FrmFormsHelper.php +1 -1
- classes/models/FrmInbox.php +6 -1
- classes/views/frm-fields/single-option.php +1 -1
- formidable.php +1 -1
- js/formidable_admin.js +1 -1
- languages/formidable.pot +145 -145
- readme.txt +6 -7
classes/helpers/FrmAppHelper.php
CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
|
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
-
public static $plug_version = '4.09.
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
@@ -1554,30 +1554,16 @@ class FrmAppHelper {
|
|
1554 |
*/
|
1555 |
public static function get_unique_key( $name, $table_name, $column, $id = 0, $num_chars = 5 ) {
|
1556 |
$key = '';
|
1557 |
-
|
1558 |
-
if ( ! empty( $name ) ) {
|
1559 |
$key = sanitize_key( $name );
|
|
|
1560 |
}
|
1561 |
|
1562 |
-
if (
|
1563 |
-
$
|
1564 |
-
$min_slug_value = 37; // we want to have at least 2 characters in the slug
|
1565 |
-
$key = base_convert( rand( $min_slug_value, $max_slug_value ), 10, 36 );
|
1566 |
}
|
1567 |
|
1568 |
-
$
|
1569 |
-
'id',
|
1570 |
-
'key',
|
1571 |
-
'created-at',
|
1572 |
-
'detaillink',
|
1573 |
-
'editlink',
|
1574 |
-
'siteurl',
|
1575 |
-
'evenodd',
|
1576 |
-
);
|
1577 |
-
|
1578 |
-
if ( is_numeric( $key ) || in_array( $key, $not_allowed ) ) {
|
1579 |
-
$key = $key . 'a';
|
1580 |
-
}
|
1581 |
|
1582 |
$key_check = FrmDb::get_var(
|
1583 |
$table_name,
|
@@ -1596,6 +1582,54 @@ class FrmAppHelper {
|
|
1596 |
return $key;
|
1597 |
}
|
1598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1599 |
/**
|
1600 |
* Editing a Form or Entry
|
1601 |
*
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
+
public static $plug_version = '4.09.07';
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
1554 |
*/
|
1555 |
public static function get_unique_key( $name, $table_name, $column, $id = 0, $num_chars = 5 ) {
|
1556 |
$key = '';
|
1557 |
+
if ( $name ) {
|
|
|
1558 |
$key = sanitize_key( $name );
|
1559 |
+
$key = self::maybe_clear_long_key( $key, $column );
|
1560 |
}
|
1561 |
|
1562 |
+
if ( ! $key ) {
|
1563 |
+
$key = self::generate_new_key( $num_chars );
|
|
|
|
|
1564 |
}
|
1565 |
|
1566 |
+
$key = self::prevent_numeric_and_reserved_keys( $key );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1567 |
|
1568 |
$key_check = FrmDb::get_var(
|
1569 |
$table_name,
|
1582 |
return $key;
|
1583 |
}
|
1584 |
|
1585 |
+
/**
|
1586 |
+
* Possibly reset a key to avoid conflicts with column size limits.
|
1587 |
+
*
|
1588 |
+
* @param string $key
|
1589 |
+
* @param string $column
|
1590 |
+
* @return string either the original key value, or an empty string if the key was too long.
|
1591 |
+
*/
|
1592 |
+
private static function maybe_clear_long_key( $key, $column ) {
|
1593 |
+
if ( 'field_key' === $column && strlen( $key ) >= 70 ) {
|
1594 |
+
$key = '';
|
1595 |
+
}
|
1596 |
+
return $key;
|
1597 |
+
}
|
1598 |
+
|
1599 |
+
/**
|
1600 |
+
* @param int $num_chars
|
1601 |
+
* @return string
|
1602 |
+
*/
|
1603 |
+
private static function generate_new_key( $num_chars ) {
|
1604 |
+
$max_slug_value = pow( 36, $num_chars );
|
1605 |
+
$min_slug_value = 37; // we want to have at least 2 characters in the slug
|
1606 |
+
return base_convert( rand( $min_slug_value, $max_slug_value ), 10, 36 );
|
1607 |
+
}
|
1608 |
+
|
1609 |
+
/**
|
1610 |
+
* @param string $key
|
1611 |
+
* @return string
|
1612 |
+
*/
|
1613 |
+
private static function prevent_numeric_and_reserved_keys( $key ) {
|
1614 |
+
if ( is_numeric( $key ) ) {
|
1615 |
+
$key .= 'a';
|
1616 |
+
} else {
|
1617 |
+
$not_allowed = array(
|
1618 |
+
'id',
|
1619 |
+
'key',
|
1620 |
+
'created-at',
|
1621 |
+
'detaillink',
|
1622 |
+
'editlink',
|
1623 |
+
'siteurl',
|
1624 |
+
'evenodd',
|
1625 |
+
);
|
1626 |
+
if ( in_array( $key, $not_allowed, true ) ) {
|
1627 |
+
$key .= 'a';
|
1628 |
+
}
|
1629 |
+
}
|
1630 |
+
return $key;
|
1631 |
+
}
|
1632 |
+
|
1633 |
/**
|
1634 |
* Editing a Form or Entry
|
1635 |
*
|
classes/helpers/FrmFormsHelper.php
CHANGED
@@ -864,7 +864,7 @@ BEFORE_HTML;
|
|
864 |
*/
|
865 |
public static function get_form_style( $form ) {
|
866 |
$style = 1;
|
867 |
-
if ( empty( $form ) || 'default'
|
868 |
return $style;
|
869 |
} elseif ( is_object( $form ) && $form->parent_form_id ) {
|
870 |
// get the parent form if this is a child
|
864 |
*/
|
865 |
public static function get_form_style( $form ) {
|
866 |
$style = 1;
|
867 |
+
if ( empty( $form ) || 'default' === $form ) {
|
868 |
return $style;
|
869 |
} elseif ( is_object( $form ) && $form->parent_form_id ) {
|
870 |
// get the parent form if this is a child
|
classes/models/FrmInbox.php
CHANGED
@@ -76,9 +76,14 @@ class FrmInbox extends FrmFormApi {
|
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
-
* @param array $message
|
80 |
*/
|
81 |
public function add_message( $message ) {
|
|
|
|
|
|
|
|
|
|
|
82 |
if ( isset( $this->messages[ $message['key'] ] ) && ! isset( $message['force'] ) ) {
|
83 |
// Don't replace messages unless required.
|
84 |
return;
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
+
* @param array|string $message
|
80 |
*/
|
81 |
public function add_message( $message ) {
|
82 |
+
if ( ! is_array( $message ) ) {
|
83 |
+
// if the API response is invalid, $message may not be an array.
|
84 |
+
return;
|
85 |
+
}
|
86 |
+
|
87 |
if ( isset( $this->messages[ $message['key'] ] ) && ! isset( $message['force'] ) ) {
|
88 |
// Don't replace messages unless required.
|
89 |
return;
|
classes/views/frm-fields/single-option.php
CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
7 |
<?php FrmAppHelper::icon_by_class( 'frmfont frm_drag_icon frm-drag' ); ?>
|
8 |
<input type="<?php echo esc_attr( $default_type ); ?>" name="<?php echo esc_attr( $field_name ); ?>" <?php echo ( isset( $checked ) && $checked ? 'checked="checked"' : '' ); ?> value="<?php echo esc_attr( $field_val ); ?>"/>
|
9 |
|
10 |
-
<input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][label]" value="<?php echo esc_attr( $opt ); ?>" class="field_<?php echo esc_attr( $field['id'] ); ?>_option <?php echo esc_attr( $field['separate_value'] ? 'frm_with_key' : '' ); ?>" id="<?php echo esc_attr( $html_id . '-' . $opt_key ); ?>" data-frmchange="trim,updateOption" />
|
11 |
|
12 |
<a href="javascript:void(0)" class="frm_icon_font frm_remove_tag" data-fid="<?php echo esc_attr( $field['id'] ); ?>" data-removeid="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-removemore="#frm_<?php echo esc_attr( $default_type . '_' . $field['id'] . '-' . $opt_key ); ?>" data-showlast="#frm_add_opt_<?php echo esc_attr( $field['id'] ); ?>"></a>
|
13 |
|
7 |
<?php FrmAppHelper::icon_by_class( 'frmfont frm_drag_icon frm-drag' ); ?>
|
8 |
<input type="<?php echo esc_attr( $default_type ); ?>" name="<?php echo esc_attr( $field_name ); ?>" <?php echo ( isset( $checked ) && $checked ? 'checked="checked"' : '' ); ?> value="<?php echo esc_attr( $field_val ); ?>"/>
|
9 |
|
10 |
+
<input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][label]" value="<?php echo esc_attr( $opt ); ?>" class="field_<?php echo esc_attr( $field['id'] ); ?>_option <?php echo esc_attr( $field['separate_value'] ? 'frm_with_key' : '' ); ?>" id="<?php echo esc_attr( $html_id . '-' . $opt_key . '-label' ); ?>" data-frmchange="trim,updateOption" />
|
11 |
|
12 |
<a href="javascript:void(0)" class="frm_icon_font frm_remove_tag" data-fid="<?php echo esc_attr( $field['id'] ); ?>" data-removeid="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-removemore="#frm_<?php echo esc_attr( $default_type . '_' . $field['id'] . '-' . $opt_key ); ?>" data-showlast="#frm_add_opt_<?php echo esc_attr( $field['id'] ); ?>"></a>
|
13 |
|
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.09.
|
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.09.07
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
js/formidable_admin.js
CHANGED
@@ -6558,7 +6558,7 @@ function frmAdminBuildJS() {
|
|
6558 |
jQuery( document ).on( 'focusin click', '.frm-auto-search', stopPropagation );
|
6559 |
var autoSearch = jQuery( '.frm-auto-search' );
|
6560 |
if ( autoSearch.val() !== '' ) {
|
6561 |
-
autoSearch.keyup
|
6562 |
}
|
6563 |
|
6564 |
// Initialize Formidable Connection.
|
6558 |
jQuery( document ).on( 'focusin click', '.frm-auto-search', stopPropagation );
|
6559 |
var autoSearch = jQuery( '.frm-auto-search' );
|
6560 |
if ( autoSearch.val() !== '' ) {
|
6561 |
+
autoSearch.trigger( 'keyup' );
|
6562 |
}
|
6563 |
|
6564 |
// Initialize Formidable Connection.
|
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.09.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: formidable\n"
|
@@ -145,7 +145,7 @@ msgid "Installed"
|
|
145 |
msgstr ""
|
146 |
|
147 |
#: classes/controllers/FrmAddonsController.php:596
|
148 |
-
#: classes/helpers/FrmAppHelper.php:
|
149 |
msgid "Active"
|
150 |
msgstr ""
|
151 |
|
@@ -838,7 +838,7 @@ msgid "Install WP Mail SMTP"
|
|
838 |
msgstr ""
|
839 |
|
840 |
#: classes/controllers/FrmSMTPController.php:305
|
841 |
-
#: classes/helpers/FrmAppHelper.php:
|
842 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
843 |
#: classes/views/shared/upgrade_overlay.php:32
|
844 |
msgid "Install"
|
@@ -1042,160 +1042,160 @@ msgstr ""
|
|
1042 |
msgid "Add/Edit Views"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: classes/helpers/FrmAppHelper.php:
|
1046 |
msgid "at"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: classes/helpers/FrmAppHelper.php:
|
1050 |
msgid "year"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: classes/helpers/FrmAppHelper.php:
|
1054 |
msgid "years"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: classes/helpers/FrmAppHelper.php:
|
1058 |
msgid "month"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: classes/helpers/FrmAppHelper.php:
|
1062 |
msgid "months"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: classes/helpers/FrmAppHelper.php:
|
1066 |
msgid "week"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: classes/helpers/FrmAppHelper.php:
|
1070 |
msgid "weeks"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: classes/helpers/FrmAppHelper.php:
|
1074 |
msgid "day"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: classes/helpers/FrmAppHelper.php:
|
1078 |
msgid "days"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: classes/helpers/FrmAppHelper.php:
|
1082 |
msgid "hour"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: classes/helpers/FrmAppHelper.php:
|
1086 |
msgid "hours"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: classes/helpers/FrmAppHelper.php:
|
1090 |
msgid "minute"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: classes/helpers/FrmAppHelper.php:
|
1094 |
msgid "minutes"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: classes/helpers/FrmAppHelper.php:
|
1098 |
msgid "second"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: classes/helpers/FrmAppHelper.php:
|
1102 |
msgid "seconds"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: classes/helpers/FrmAppHelper.php:
|
1106 |
msgid "Give this action a label for easy reference."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: classes/helpers/FrmAppHelper.php:
|
1110 |
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."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: classes/helpers/FrmAppHelper.php:
|
1114 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: classes/helpers/FrmAppHelper.php:
|
1118 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: classes/helpers/FrmAppHelper.php:
|
1122 |
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."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: classes/helpers/FrmAppHelper.php:
|
1126 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
#. translators: %1$s: Form name, %2$s: Date
|
1130 |
-
#: classes/helpers/FrmAppHelper.php:
|
1131 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: classes/helpers/FrmAppHelper.php:
|
1135 |
-
#: classes/helpers/FrmAppHelper.php:
|
1136 |
msgid "Please wait while your site updates."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: classes/helpers/FrmAppHelper.php:
|
1140 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: classes/helpers/FrmAppHelper.php:
|
1144 |
-
#: classes/helpers/FrmAppHelper.php:
|
1145 |
msgid "Loading…"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: classes/helpers/FrmAppHelper.php:
|
1149 |
msgid "Remove"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: classes/helpers/FrmAppHelper.php:
|
1153 |
#: classes/helpers/FrmCSVExportHelper.php:222
|
1154 |
#: classes/views/shared/mb_adv_info.php:95
|
1155 |
msgid "ID"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: classes/helpers/FrmAppHelper.php:
|
1159 |
msgid "No results match"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: classes/helpers/FrmAppHelper.php:
|
1163 |
msgid "That file looks like Spam."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: classes/helpers/FrmAppHelper.php:
|
1167 |
msgid "There is an error in the calculation in the field with key"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: classes/helpers/FrmAppHelper.php:
|
1171 |
msgid "Please complete the preceding required fields before uploading a file."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: classes/helpers/FrmAppHelper.php:
|
1175 |
msgid "(Click to add description)"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: classes/helpers/FrmAppHelper.php:
|
1179 |
msgid "(Blank)"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: classes/helpers/FrmAppHelper.php:
|
1183 |
msgid "(no label)"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: classes/helpers/FrmAppHelper.php:
|
1187 |
msgid "Saving"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: classes/helpers/FrmAppHelper.php:
|
1191 |
msgid "Saved"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: classes/helpers/FrmAppHelper.php:
|
1195 |
msgid "OK"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: classes/helpers/FrmAppHelper.php:
|
1199 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1200 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1201 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
@@ -1207,414 +1207,414 @@ msgstr ""
|
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: classes/helpers/FrmAppHelper.php:
|
1211 |
#: classes/views/frm-fields/back-end/settings.php:270
|
1212 |
msgid "Default"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: classes/helpers/FrmAppHelper.php:
|
1216 |
msgid "Clear default value when typing"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: classes/helpers/FrmAppHelper.php:
|
1220 |
msgid "Do not clear default value when typing"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: classes/helpers/FrmAppHelper.php:
|
1224 |
msgid "Default value will pass form validation"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: classes/helpers/FrmAppHelper.php:
|
1228 |
msgid "Default value will NOT pass form validation"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: classes/helpers/FrmAppHelper.php:
|
1232 |
#: classes/helpers/FrmListHelper.php:405
|
1233 |
msgid "Heads up"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: classes/helpers/FrmAppHelper.php:
|
1237 |
#: classes/views/shared/confirm-overlay.php:15
|
1238 |
#: classes/views/shared/info-overlay.php:15
|
1239 |
msgid "Are you sure?"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: classes/helpers/FrmAppHelper.php:
|
1243 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: classes/helpers/FrmAppHelper.php:
|
1247 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: classes/helpers/FrmAppHelper.php:
|
1251 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: classes/helpers/FrmAppHelper.php:
|
1255 |
#: classes/helpers/FrmFieldsHelper.php:286
|
1256 |
msgid "The entered values do not match"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: classes/helpers/FrmAppHelper.php:
|
1260 |
msgid "Enter Email"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: classes/helpers/FrmAppHelper.php:
|
1264 |
msgid "Confirm Email"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: classes/helpers/FrmAppHelper.php:
|
1268 |
msgid "Conditional content here"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: classes/helpers/FrmAppHelper.php:
|
1272 |
#: classes/helpers/FrmFieldsHelper.php:456
|
1273 |
#: classes/helpers/FrmFieldsHelper.php:457
|
1274 |
msgid "New Option"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: classes/helpers/FrmAppHelper.php:
|
1278 |
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."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: classes/helpers/FrmAppHelper.php:
|
1282 |
msgid "Enter Password"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: classes/helpers/FrmAppHelper.php:
|
1286 |
msgid "Confirm Password"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: classes/helpers/FrmAppHelper.php:
|
1290 |
msgid "Import Complete"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: classes/helpers/FrmAppHelper.php:
|
1294 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: classes/helpers/FrmAppHelper.php:
|
1298 |
msgid "Private"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: classes/helpers/FrmAppHelper.php:
|
1302 |
msgid "No new licenses were found"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: classes/helpers/FrmAppHelper.php:
|
1306 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: classes/helpers/FrmAppHelper.php:
|
1310 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: classes/helpers/FrmAppHelper.php:
|
1314 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: classes/helpers/FrmAppHelper.php:
|
1318 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1322 |
-
#: classes/helpers/FrmAppHelper.php:
|
1323 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
|
1327 |
-
#: classes/helpers/FrmAppHelper.php:
|
1328 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: classes/helpers/FrmAppHelper.php:
|
1332 |
#: classes/helpers/FrmFormsHelper.php:1500
|
1333 |
msgid "See the list of reserved words in WordPress."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: classes/helpers/FrmAppHelper.php:
|
1337 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: classes/helpers/FrmAppHelper.php:
|
1341 |
msgid "Please select a limit between 0 and 200."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: classes/helpers/FrmAppHelper.php:
|
1345 |
#: classes/views/shared/mb_adv_info.php:113
|
1346 |
#: classes/views/shared/mb_adv_info.php:127
|
1347 |
msgid "Select a Field"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: classes/helpers/FrmAppHelper.php:
|
1351 |
#: classes/helpers/FrmListHelper.php:262
|
1352 |
msgid "No items found."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: classes/helpers/FrmAppHelper.php:
|
1356 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: classes/helpers/FrmAppHelper.php:
|
1360 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: classes/helpers/FrmAppHelper.php:
|
1364 |
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+."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: classes/helpers/FrmAppHelper.php:
|
1368 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: classes/helpers/FrmAppHelper.php:
|
1372 |
msgid "English"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: classes/helpers/FrmAppHelper.php:
|
1376 |
msgid "Afrikaans"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: classes/helpers/FrmAppHelper.php:
|
1380 |
msgid "Albanian"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: classes/helpers/FrmAppHelper.php:
|
1384 |
msgid "Arabic"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: classes/helpers/FrmAppHelper.php:
|
1388 |
msgid "Armenian"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: classes/helpers/FrmAppHelper.php:
|
1392 |
msgid "Azerbaijani"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: classes/helpers/FrmAppHelper.php:
|
1396 |
msgid "Basque"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: classes/helpers/FrmAppHelper.php:
|
1400 |
msgid "Bosnian"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: classes/helpers/FrmAppHelper.php:
|
1404 |
msgid "Bulgarian"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: classes/helpers/FrmAppHelper.php:
|
1408 |
msgid "Catalan"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: classes/helpers/FrmAppHelper.php:
|
1412 |
msgid "Chinese Hong Kong"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: classes/helpers/FrmAppHelper.php:
|
1416 |
msgid "Chinese Simplified"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: classes/helpers/FrmAppHelper.php:
|
1420 |
msgid "Chinese Traditional"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: classes/helpers/FrmAppHelper.php:
|
1424 |
msgid "Croatian"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: classes/helpers/FrmAppHelper.php:
|
1428 |
msgid "Czech"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: classes/helpers/FrmAppHelper.php:
|
1432 |
msgid "Danish"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: classes/helpers/FrmAppHelper.php:
|
1436 |
msgid "Dutch"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: classes/helpers/FrmAppHelper.php:
|
1440 |
msgid "English/UK"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: classes/helpers/FrmAppHelper.php:
|
1444 |
msgid "Esperanto"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: classes/helpers/FrmAppHelper.php:
|
1448 |
msgid "Estonian"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: classes/helpers/FrmAppHelper.php:
|
1452 |
msgid "Faroese"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: classes/helpers/FrmAppHelper.php:
|
1456 |
msgid "Farsi/Persian"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: classes/helpers/FrmAppHelper.php:
|
1460 |
msgid "Filipino"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: classes/helpers/FrmAppHelper.php:
|
1464 |
msgid "Finnish"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: classes/helpers/FrmAppHelper.php:
|
1468 |
msgid "French"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: classes/helpers/FrmAppHelper.php:
|
1472 |
msgid "French/Canadian"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: classes/helpers/FrmAppHelper.php:
|
1476 |
msgid "French/Swiss"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: classes/helpers/FrmAppHelper.php:
|
1480 |
msgid "German"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: classes/helpers/FrmAppHelper.php:
|
1484 |
msgid "German/Austria"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: classes/helpers/FrmAppHelper.php:
|
1488 |
msgid "German/Switzerland"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: classes/helpers/FrmAppHelper.php:
|
1492 |
msgid "Greek"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: classes/helpers/FrmAppHelper.php:
|
1496 |
-
#: classes/helpers/FrmAppHelper.php:
|
1497 |
msgid "Hebrew"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: classes/helpers/FrmAppHelper.php:
|
1501 |
msgid "Hindi"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: classes/helpers/FrmAppHelper.php:
|
1505 |
msgid "Hungarian"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: classes/helpers/FrmAppHelper.php:
|
1509 |
msgid "Icelandic"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: classes/helpers/FrmAppHelper.php:
|
1513 |
msgid "Indonesian"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: classes/helpers/FrmAppHelper.php:
|
1517 |
msgid "Italian"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: classes/helpers/FrmAppHelper.php:
|
1521 |
msgid "Japanese"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: classes/helpers/FrmAppHelper.php:
|
1525 |
msgid "Korean"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: classes/helpers/FrmAppHelper.php:
|
1529 |
msgid "Latvian"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: classes/helpers/FrmAppHelper.php:
|
1533 |
msgid "Lithuanian"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: classes/helpers/FrmAppHelper.php:
|
1537 |
msgid "Malaysian"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: classes/helpers/FrmAppHelper.php:
|
1541 |
msgid "Norwegian"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: classes/helpers/FrmAppHelper.php:
|
1545 |
msgid "Polish"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: classes/helpers/FrmAppHelper.php:
|
1549 |
msgid "Portuguese"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: classes/helpers/FrmAppHelper.php:
|
1553 |
msgid "Portuguese/Brazilian"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: classes/helpers/FrmAppHelper.php:
|
1557 |
msgid "Portuguese/Portugal"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: classes/helpers/FrmAppHelper.php:
|
1561 |
msgid "Romanian"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: classes/helpers/FrmAppHelper.php:
|
1565 |
msgid "Russian"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: classes/helpers/FrmAppHelper.php:
|
1569 |
-
#: classes/helpers/FrmAppHelper.php:
|
1570 |
msgid "Serbian"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: classes/helpers/FrmAppHelper.php:
|
1574 |
msgid "Slovak"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: classes/helpers/FrmAppHelper.php:
|
1578 |
msgid "Slovenian"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: classes/helpers/FrmAppHelper.php:
|
1582 |
msgid "Spanish"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: classes/helpers/FrmAppHelper.php:
|
1586 |
msgid "Spanish/Latin America"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: classes/helpers/FrmAppHelper.php:
|
1590 |
msgid "Swedish"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: classes/helpers/FrmAppHelper.php:
|
1594 |
msgid "Tamil"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: classes/helpers/FrmAppHelper.php:
|
1598 |
msgid "Thai"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: classes/helpers/FrmAppHelper.php:
|
1602 |
msgid "Turkish"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: classes/helpers/FrmAppHelper.php:
|
1606 |
msgid "Ukranian"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: classes/helpers/FrmAppHelper.php:
|
1610 |
msgid "Vietnamese"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: classes/helpers/FrmAppHelper.php:
|
1614 |
msgid "Your account has expired"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: classes/helpers/FrmAppHelper.php:
|
1618 |
msgid "Renew Now"
|
1619 |
msgstr ""
|
1620 |
|
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.09.07\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2021-03-04T14:51:13+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: formidable\n"
|
145 |
msgstr ""
|
146 |
|
147 |
#: classes/controllers/FrmAddonsController.php:596
|
148 |
+
#: classes/helpers/FrmAppHelper.php:2493
|
149 |
msgid "Active"
|
150 |
msgstr ""
|
151 |
|
838 |
msgstr ""
|
839 |
|
840 |
#: classes/controllers/FrmSMTPController.php:305
|
841 |
+
#: classes/helpers/FrmAppHelper.php:2492
|
842 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
843 |
#: classes/views/shared/upgrade_overlay.php:32
|
844 |
msgid "Install"
|
1042 |
msgid "Add/Edit Views"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: classes/helpers/FrmAppHelper.php:1923
|
1046 |
msgid "at"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: classes/helpers/FrmAppHelper.php:2067
|
1050 |
msgid "year"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: classes/helpers/FrmAppHelper.php:2068
|
1054 |
msgid "years"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: classes/helpers/FrmAppHelper.php:2072
|
1058 |
msgid "month"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: classes/helpers/FrmAppHelper.php:2073
|
1062 |
msgid "months"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: classes/helpers/FrmAppHelper.php:2077
|
1066 |
msgid "week"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: classes/helpers/FrmAppHelper.php:2078
|
1070 |
msgid "weeks"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: classes/helpers/FrmAppHelper.php:2082
|
1074 |
msgid "day"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: classes/helpers/FrmAppHelper.php:2083
|
1078 |
msgid "days"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: classes/helpers/FrmAppHelper.php:2087
|
1082 |
msgid "hour"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: classes/helpers/FrmAppHelper.php:2088
|
1086 |
msgid "hours"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: classes/helpers/FrmAppHelper.php:2092
|
1090 |
msgid "minute"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: classes/helpers/FrmAppHelper.php:2093
|
1094 |
msgid "minutes"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: classes/helpers/FrmAppHelper.php:2097
|
1098 |
msgid "second"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: classes/helpers/FrmAppHelper.php:2098
|
1102 |
msgid "seconds"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: classes/helpers/FrmAppHelper.php:2192
|
1106 |
msgid "Give this action a label for easy reference."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: classes/helpers/FrmAppHelper.php:2193
|
1110 |
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."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: classes/helpers/FrmAppHelper.php:2194
|
1114 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: classes/helpers/FrmAppHelper.php:2195
|
1118 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: classes/helpers/FrmAppHelper.php:2196
|
1122 |
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."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: classes/helpers/FrmAppHelper.php:2197
|
1126 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
#. translators: %1$s: Form name, %2$s: Date
|
1130 |
+
#: classes/helpers/FrmAppHelper.php:2199
|
1131 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: classes/helpers/FrmAppHelper.php:2395
|
1135 |
+
#: classes/helpers/FrmAppHelper.php:2474
|
1136 |
msgid "Please wait while your site updates."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: classes/helpers/FrmAppHelper.php:2396
|
1140 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/helpers/FrmAppHelper.php:2399
|
1144 |
+
#: classes/helpers/FrmAppHelper.php:2428
|
1145 |
msgid "Loading…"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: classes/helpers/FrmAppHelper.php:2429
|
1149 |
msgid "Remove"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: classes/helpers/FrmAppHelper.php:2432
|
1153 |
#: classes/helpers/FrmCSVExportHelper.php:222
|
1154 |
#: classes/views/shared/mb_adv_info.php:95
|
1155 |
msgid "ID"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: classes/helpers/FrmAppHelper.php:2433
|
1159 |
msgid "No results match"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: classes/helpers/FrmAppHelper.php:2434
|
1163 |
msgid "That file looks like Spam."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: classes/helpers/FrmAppHelper.php:2435
|
1167 |
msgid "There is an error in the calculation in the field with key"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: classes/helpers/FrmAppHelper.php:2436
|
1171 |
msgid "Please complete the preceding required fields before uploading a file."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: classes/helpers/FrmAppHelper.php:2447
|
1175 |
msgid "(Click to add description)"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: classes/helpers/FrmAppHelper.php:2448
|
1179 |
msgid "(Blank)"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: classes/helpers/FrmAppHelper.php:2449
|
1183 |
msgid "(no label)"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: classes/helpers/FrmAppHelper.php:2450
|
1187 |
msgid "Saving"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: classes/helpers/FrmAppHelper.php:2451
|
1191 |
msgid "Saved"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: classes/helpers/FrmAppHelper.php:2452
|
1195 |
msgid "OK"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: classes/helpers/FrmAppHelper.php:2453
|
1199 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1200 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1201 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: classes/helpers/FrmAppHelper.php:2454
|
1211 |
#: classes/views/frm-fields/back-end/settings.php:270
|
1212 |
msgid "Default"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: classes/helpers/FrmAppHelper.php:2455
|
1216 |
msgid "Clear default value when typing"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: classes/helpers/FrmAppHelper.php:2456
|
1220 |
msgid "Do not clear default value when typing"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: classes/helpers/FrmAppHelper.php:2457
|
1224 |
msgid "Default value will pass form validation"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: classes/helpers/FrmAppHelper.php:2458
|
1228 |
msgid "Default value will NOT pass form validation"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/helpers/FrmAppHelper.php:2459
|
1232 |
#: classes/helpers/FrmListHelper.php:405
|
1233 |
msgid "Heads up"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: classes/helpers/FrmAppHelper.php:2460
|
1237 |
#: classes/views/shared/confirm-overlay.php:15
|
1238 |
#: classes/views/shared/info-overlay.php:15
|
1239 |
msgid "Are you sure?"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: classes/helpers/FrmAppHelper.php:2461
|
1243 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: classes/helpers/FrmAppHelper.php:2462
|
1247 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: classes/helpers/FrmAppHelper.php:2463
|
1251 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: classes/helpers/FrmAppHelper.php:2465
|
1255 |
#: classes/helpers/FrmFieldsHelper.php:286
|
1256 |
msgid "The entered values do not match"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: classes/helpers/FrmAppHelper.php:2466
|
1260 |
msgid "Enter Email"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: classes/helpers/FrmAppHelper.php:2467
|
1264 |
msgid "Confirm Email"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: classes/helpers/FrmAppHelper.php:2468
|
1268 |
msgid "Conditional content here"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: classes/helpers/FrmAppHelper.php:2469
|
1272 |
#: classes/helpers/FrmFieldsHelper.php:456
|
1273 |
#: classes/helpers/FrmFieldsHelper.php:457
|
1274 |
msgid "New Option"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: classes/helpers/FrmAppHelper.php:2470
|
1278 |
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."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: classes/helpers/FrmAppHelper.php:2471
|
1282 |
msgid "Enter Password"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: classes/helpers/FrmAppHelper.php:2472
|
1286 |
msgid "Confirm Password"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: classes/helpers/FrmAppHelper.php:2473
|
1290 |
msgid "Import Complete"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: classes/helpers/FrmAppHelper.php:2475
|
1294 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: classes/helpers/FrmAppHelper.php:2476
|
1298 |
msgid "Private"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: classes/helpers/FrmAppHelper.php:2479
|
1302 |
msgid "No new licenses were found"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: classes/helpers/FrmAppHelper.php:2480
|
1306 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: classes/helpers/FrmAppHelper.php:2481
|
1310 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: classes/helpers/FrmAppHelper.php:2482
|
1314 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: classes/helpers/FrmAppHelper.php:2483
|
1318 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1322 |
+
#: classes/helpers/FrmAppHelper.php:2486
|
1323 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
|
1327 |
+
#: classes/helpers/FrmAppHelper.php:2488
|
1328 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: classes/helpers/FrmAppHelper.php:2489
|
1332 |
#: classes/helpers/FrmFormsHelper.php:1500
|
1333 |
msgid "See the list of reserved words in WordPress."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: classes/helpers/FrmAppHelper.php:2490
|
1337 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: classes/helpers/FrmAppHelper.php:2491
|
1341 |
msgid "Please select a limit between 0 and 200."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: classes/helpers/FrmAppHelper.php:2494
|
1345 |
#: classes/views/shared/mb_adv_info.php:113
|
1346 |
#: classes/views/shared/mb_adv_info.php:127
|
1347 |
msgid "Select a Field"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: classes/helpers/FrmAppHelper.php:2495
|
1351 |
#: classes/helpers/FrmListHelper.php:262
|
1352 |
msgid "No items found."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: classes/helpers/FrmAppHelper.php:2523
|
1356 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: classes/helpers/FrmAppHelper.php:2550
|
1360 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: classes/helpers/FrmAppHelper.php:2578
|
1364 |
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+."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: classes/helpers/FrmAppHelper.php:2584
|
1368 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: classes/helpers/FrmAppHelper.php:2598
|
1372 |
msgid "English"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: classes/helpers/FrmAppHelper.php:2599
|
1376 |
msgid "Afrikaans"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: classes/helpers/FrmAppHelper.php:2600
|
1380 |
msgid "Albanian"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: classes/helpers/FrmAppHelper.php:2601
|
1384 |
msgid "Arabic"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: classes/helpers/FrmAppHelper.php:2602
|
1388 |
msgid "Armenian"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: classes/helpers/FrmAppHelper.php:2603
|
1392 |
msgid "Azerbaijani"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: classes/helpers/FrmAppHelper.php:2604
|
1396 |
msgid "Basque"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: classes/helpers/FrmAppHelper.php:2605
|
1400 |
msgid "Bosnian"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: classes/helpers/FrmAppHelper.php:2606
|
1404 |
msgid "Bulgarian"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: classes/helpers/FrmAppHelper.php:2607
|
1408 |
msgid "Catalan"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: classes/helpers/FrmAppHelper.php:2608
|
1412 |
msgid "Chinese Hong Kong"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: classes/helpers/FrmAppHelper.php:2609
|
1416 |
msgid "Chinese Simplified"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: classes/helpers/FrmAppHelper.php:2610
|
1420 |
msgid "Chinese Traditional"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: classes/helpers/FrmAppHelper.php:2611
|
1424 |
msgid "Croatian"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: classes/helpers/FrmAppHelper.php:2612
|
1428 |
msgid "Czech"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: classes/helpers/FrmAppHelper.php:2613
|
1432 |
msgid "Danish"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: classes/helpers/FrmAppHelper.php:2614
|
1436 |
msgid "Dutch"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: classes/helpers/FrmAppHelper.php:2615
|
1440 |
msgid "English/UK"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: classes/helpers/FrmAppHelper.php:2616
|
1444 |
msgid "Esperanto"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: classes/helpers/FrmAppHelper.php:2617
|
1448 |
msgid "Estonian"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: classes/helpers/FrmAppHelper.php:2618
|
1452 |
msgid "Faroese"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: classes/helpers/FrmAppHelper.php:2619
|
1456 |
msgid "Farsi/Persian"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: classes/helpers/FrmAppHelper.php:2620
|
1460 |
msgid "Filipino"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: classes/helpers/FrmAppHelper.php:2621
|
1464 |
msgid "Finnish"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: classes/helpers/FrmAppHelper.php:2622
|
1468 |
msgid "French"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: classes/helpers/FrmAppHelper.php:2623
|
1472 |
msgid "French/Canadian"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: classes/helpers/FrmAppHelper.php:2624
|
1476 |
msgid "French/Swiss"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: classes/helpers/FrmAppHelper.php:2625
|
1480 |
msgid "German"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: classes/helpers/FrmAppHelper.php:2626
|
1484 |
msgid "German/Austria"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: classes/helpers/FrmAppHelper.php:2627
|
1488 |
msgid "German/Switzerland"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: classes/helpers/FrmAppHelper.php:2628
|
1492 |
msgid "Greek"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: classes/helpers/FrmAppHelper.php:2629
|
1496 |
+
#: classes/helpers/FrmAppHelper.php:2630
|
1497 |
msgid "Hebrew"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: classes/helpers/FrmAppHelper.php:2631
|
1501 |
msgid "Hindi"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: classes/helpers/FrmAppHelper.php:2632
|
1505 |
msgid "Hungarian"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: classes/helpers/FrmAppHelper.php:2633
|
1509 |
msgid "Icelandic"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: classes/helpers/FrmAppHelper.php:2634
|
1513 |
msgid "Indonesian"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: classes/helpers/FrmAppHelper.php:2635
|
1517 |
msgid "Italian"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: classes/helpers/FrmAppHelper.php:2636
|
1521 |
msgid "Japanese"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: classes/helpers/FrmAppHelper.php:2637
|
1525 |
msgid "Korean"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: classes/helpers/FrmAppHelper.php:2638
|
1529 |
msgid "Latvian"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: classes/helpers/FrmAppHelper.php:2639
|
1533 |
msgid "Lithuanian"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: classes/helpers/FrmAppHelper.php:2640
|
1537 |
msgid "Malaysian"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: classes/helpers/FrmAppHelper.php:2641
|
1541 |
msgid "Norwegian"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: classes/helpers/FrmAppHelper.php:2642
|
1545 |
msgid "Polish"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: classes/helpers/FrmAppHelper.php:2643
|
1549 |
msgid "Portuguese"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: classes/helpers/FrmAppHelper.php:2644
|
1553 |
msgid "Portuguese/Brazilian"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: classes/helpers/FrmAppHelper.php:2645
|
1557 |
msgid "Portuguese/Portugal"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: classes/helpers/FrmAppHelper.php:2646
|
1561 |
msgid "Romanian"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: classes/helpers/FrmAppHelper.php:2647
|
1565 |
msgid "Russian"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: classes/helpers/FrmAppHelper.php:2648
|
1569 |
+
#: classes/helpers/FrmAppHelper.php:2649
|
1570 |
msgid "Serbian"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: classes/helpers/FrmAppHelper.php:2650
|
1574 |
msgid "Slovak"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: classes/helpers/FrmAppHelper.php:2651
|
1578 |
msgid "Slovenian"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: classes/helpers/FrmAppHelper.php:2652
|
1582 |
msgid "Spanish"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: classes/helpers/FrmAppHelper.php:2653
|
1586 |
msgid "Spanish/Latin America"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: classes/helpers/FrmAppHelper.php:2654
|
1590 |
msgid "Swedish"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: classes/helpers/FrmAppHelper.php:2655
|
1594 |
msgid "Tamil"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: classes/helpers/FrmAppHelper.php:2656
|
1598 |
msgid "Thai"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: classes/helpers/FrmAppHelper.php:2657
|
1602 |
msgid "Turkish"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: classes/helpers/FrmAppHelper.php:2658
|
1606 |
msgid "Ukranian"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: classes/helpers/FrmAppHelper.php:2659
|
1610 |
msgid "Vietnamese"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: classes/helpers/FrmAppHelper.php:2701
|
1614 |
msgid "Your account has expired"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: classes/helpers/FrmAppHelper.php:2704
|
1618 |
msgid "Renew Now"
|
1619 |
msgstr ""
|
1620 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Plugin Name: Formidable Forms - Contact Form, Survey & Quiz Forms Plugin for Wor
|
|
3 |
Contributors: formidableforms, sswells, srwells
|
4 |
Tags: forms, contact form, form builder, survey, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator form, calculator, price calculator, quote form, contact button, form manager, forms creator, Akismet, web form, payment form, survey form, donation form, email submit form, message form, email subscription, contact form widget, user registration form, registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form, custom form
|
5 |
Requires at least: 4.7
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.09.
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
|
11 |
|
@@ -435,6 +435,10 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
|
|
435 |
See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
|
436 |
|
437 |
== Changelog ==
|
|
|
|
|
|
|
|
|
438 |
= 4.09.06 =
|
439 |
* New: Added a new welcome screen to introduce new users to Formidable.
|
440 |
* Fix: Make sure that Site Health exists when upgrading.
|
@@ -464,9 +468,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
|
|
464 |
= 4.09.01 =
|
465 |
* Don't include a link in the entries list to the form page when the user doesn't have permission to see anything there.
|
466 |
|
467 |
-
= 4.09 =
|
468 |
-
* New: Updated the UX for creating a new blank form or from a template.
|
469 |
-
* Fix: Duplicating a closed form action didn't copy correctly.
|
470 |
-
* Fix: PHP warnings showed on the add-ons page on some sites.
|
471 |
-
|
472 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|
3 |
Contributors: formidableforms, sswells, srwells
|
4 |
Tags: forms, contact form, form builder, survey, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator form, calculator, price calculator, quote form, contact button, form manager, forms creator, Akismet, web form, payment form, survey form, donation form, email submit form, message form, email subscription, contact form widget, user registration form, registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form, custom form
|
5 |
Requires at least: 4.7
|
6 |
+
Tested up to: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.09.07
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
|
11 |
|
435 |
See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
|
436 |
|
437 |
== Changelog ==
|
438 |
+
= 4.09.07 =
|
439 |
+
* Fix: Duplicated form fields would occasionally generate long field keys that were preventing fields from being created.
|
440 |
+
* Fix: Fields for controlling radio options in the form builder were not using unique id attribute values.
|
441 |
+
|
442 |
= 4.09.06 =
|
443 |
* New: Added a new welcome screen to introduce new users to Formidable.
|
444 |
* Fix: Make sure that Site Health exists when upgrading.
|
468 |
= 4.09.01 =
|
469 |
* Don't include a link in the entries list to the form page when the user doesn't have permission to see anything there.
|
470 |
|
|
|
|
|
|
|
|
|
|
|
471 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|