Version Description
- New: Updated how unique field and form keys are generated for shorter unique keys.
- New: Added a new frm_unique_field_key_separator filter for unique field keys.
- New: Added a new frm_saved_errors filter for extending custom form validation.
- Fix: Fixed a conflict with All in One SEO that was causing multiselect dropdowns to appear larger than expected.
Download this release
Release Info
Developer | formidableforms |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 5.2.03 |
Comparing to | |
See all releases |
Code changes from version 5.2.02.01 to 5.2.03
- classes/controllers/FrmFormsController.php +9 -1
- classes/helpers/FrmAppHelper.php +27 -7
- css/frm_admin.css +5 -1
- formidable.php +1 -1
- languages/formidable.pot +151 -151
- readme.txt +8 -8
classes/controllers/FrmFormsController.php
CHANGED
@@ -1903,7 +1903,15 @@ class FrmFormsController {
|
|
1903 |
$errors = array();
|
1904 |
}
|
1905 |
|
1906 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1907 |
}
|
1908 |
|
1909 |
/**
|
1903 |
$errors = array();
|
1904 |
}
|
1905 |
|
1906 |
+
/**
|
1907 |
+
* Allows modifying the generated errors if the form was processed earlier.
|
1908 |
+
*
|
1909 |
+
* @since 5.2.03
|
1910 |
+
*
|
1911 |
+
* @param array $errors Errors data. Is empty array if no errors found.
|
1912 |
+
* @param array $params Form params. See {@see FrmForm::get_params()}.
|
1913 |
+
*/
|
1914 |
+
return apply_filters( 'frm_saved_errors', $errors, $params );
|
1915 |
}
|
1916 |
|
1917 |
/**
|
classes/helpers/FrmAppHelper.php
CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
|
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
-
public static $plug_version = '5.2.
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
@@ -1805,19 +1805,36 @@ class FrmAppHelper {
|
|
1805 |
|
1806 |
$key = self::prevent_numeric_and_reserved_keys( $key );
|
1807 |
|
1808 |
-
$
|
1809 |
$table_name,
|
1810 |
array(
|
1811 |
-
$column => $key,
|
1812 |
-
'ID !'
|
1813 |
),
|
1814 |
$column
|
1815 |
);
|
1816 |
|
1817 |
-
|
|
|
1818 |
$key = self::maybe_truncate_key_before_appending( $column, $key );
|
1819 |
-
|
1820 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1821 |
}
|
1822 |
|
1823 |
return $key;
|
@@ -1836,6 +1853,9 @@ class FrmAppHelper {
|
|
1836 |
$max_key_length_before_truncating = 60;
|
1837 |
if ( strlen( $key ) > $max_key_length_before_truncating ) {
|
1838 |
$key = substr( $key, 0, $max_key_length_before_truncating );
|
|
|
|
|
|
|
1839 |
}
|
1840 |
}
|
1841 |
return $key;
|
11 |
/**
|
12 |
* @since 2.0
|
13 |
*/
|
14 |
+
public static $plug_version = '5.2.03';
|
15 |
|
16 |
/**
|
17 |
* @since 1.07.02
|
1805 |
|
1806 |
$key = self::prevent_numeric_and_reserved_keys( $key );
|
1807 |
|
1808 |
+
$similar_keys = FrmDb::get_col(
|
1809 |
$table_name,
|
1810 |
array(
|
1811 |
+
$column . ' like%' => $key,
|
1812 |
+
'ID !' => $id,
|
1813 |
),
|
1814 |
$column
|
1815 |
);
|
1816 |
|
1817 |
+
// Create a unique field id if it has already been used.
|
1818 |
+
if ( in_array( $key, $similar_keys, true ) ) {
|
1819 |
$key = self::maybe_truncate_key_before_appending( $column, $key );
|
1820 |
+
|
1821 |
+
/**
|
1822 |
+
* Allow for a custom separator between the attempted key and the generated suffix.
|
1823 |
+
*
|
1824 |
+
* @since 5.2.03
|
1825 |
+
*
|
1826 |
+
* @param string $separator. Default empty.
|
1827 |
+
* @param string $key the key without the added suffix.
|
1828 |
+
*/
|
1829 |
+
$separator = apply_filters( 'frm_unique_' . $column . '_separator', '', $key );
|
1830 |
+
|
1831 |
+
$suffix = 2;
|
1832 |
+
do {
|
1833 |
+
$key_check = $key . $separator . $suffix;
|
1834 |
+
++$suffix;
|
1835 |
+
} while ( in_array( $key_check, $similar_keys, true ) );
|
1836 |
+
|
1837 |
+
$key = $key_check;
|
1838 |
}
|
1839 |
|
1840 |
return $key;
|
1853 |
$max_key_length_before_truncating = 60;
|
1854 |
if ( strlen( $key ) > $max_key_length_before_truncating ) {
|
1855 |
$key = substr( $key, 0, $max_key_length_before_truncating );
|
1856 |
+
if ( is_numeric( $key ) ) {
|
1857 |
+
$key .= 'a';
|
1858 |
+
}
|
1859 |
}
|
1860 |
}
|
1861 |
return $key;
|
css/frm_admin.css
CHANGED
@@ -3004,6 +3004,11 @@ a.frm_option_icon:hover::before {
|
|
3004 |
min-width: 40px;
|
3005 |
}
|
3006 |
|
|
|
|
|
|
|
|
|
|
|
3007 |
.accordion-container .frm-dropdown-menu:before,
|
3008 |
.accordion-container .multiselect.dropdown-toggle:before {
|
3009 |
font-family: "s11-fp" !important;
|
@@ -3042,7 +3047,6 @@ a.frm_option_icon:hover::before {
|
|
3042 |
|
3043 |
.frm-btn-group.btn-group, .frm-btn-group.btn-group-vertical {
|
3044 |
display: block;
|
3045 |
-
vertical-align: middle;
|
3046 |
}
|
3047 |
|
3048 |
.frm_scale {
|
3004 |
min-width: 40px;
|
3005 |
}
|
3006 |
|
3007 |
+
.frm-btn-group .multiselect.dropdown-toggle {
|
3008 |
+
box-sizing: border-box;
|
3009 |
+
min-height: unset;
|
3010 |
+
}
|
3011 |
+
|
3012 |
.accordion-container .frm-dropdown-menu:before,
|
3013 |
.accordion-container .multiselect.dropdown-toggle:before {
|
3014 |
font-family: "s11-fp" !important;
|
3047 |
|
3048 |
.frm-btn-group.btn-group, .frm-btn-group.btn-group-vertical {
|
3049 |
display: block;
|
|
|
3050 |
}
|
3051 |
|
3052 |
.frm_scale {
|
formidable.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
-
Version: 5.2.
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
+
Version: 5.2.03
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
languages/formidable.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Formidable Forms plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Formidable Forms 5.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-03-
|
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"
|
@@ -152,7 +152,7 @@ msgid "Installed"
|
|
152 |
msgstr ""
|
153 |
|
154 |
#: classes/controllers/FrmAddonsController.php:635
|
155 |
-
#: classes/helpers/FrmAppHelper.php:
|
156 |
msgid "Active"
|
157 |
msgstr ""
|
158 |
|
@@ -658,16 +658,16 @@ msgstr ""
|
|
658 |
msgid "Please select a valid form"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: classes/controllers/FrmFormsController.php:
|
662 |
msgid "Please wait while you are redirected."
|
663 |
msgstr ""
|
664 |
|
665 |
#. translators: %1$s: Start link HTML, %2$s: End link HTML
|
666 |
-
#: classes/controllers/FrmFormsController.php:
|
667 |
msgid "%1$sClick here%2$s if you are not automatically redirected."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/controllers/FrmFormsController.php:
|
671 |
#: classes/helpers/FrmAppHelper.php:1341
|
672 |
#: classes/views/frm-forms/settings-advanced.php:93
|
673 |
msgid "Select a Page"
|
@@ -867,7 +867,7 @@ msgid "Install WP Mail SMTP"
|
|
867 |
msgstr ""
|
868 |
|
869 |
#: classes/controllers/FrmSMTPController.php:305
|
870 |
-
#: classes/helpers/FrmAppHelper.php:
|
871 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
872 |
#: classes/views/shared/upgrade_overlay.php:32
|
873 |
msgid "Install"
|
@@ -1072,160 +1072,160 @@ msgstr ""
|
|
1072 |
msgid "Add/Edit Views"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: classes/helpers/FrmAppHelper.php:
|
1076 |
msgid "at"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: classes/helpers/FrmAppHelper.php:
|
1080 |
msgid "year"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: classes/helpers/FrmAppHelper.php:
|
1084 |
msgid "years"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: classes/helpers/FrmAppHelper.php:
|
1088 |
msgid "month"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: classes/helpers/FrmAppHelper.php:
|
1092 |
msgid "months"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: classes/helpers/FrmAppHelper.php:
|
1096 |
msgid "week"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: classes/helpers/FrmAppHelper.php:
|
1100 |
msgid "weeks"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: classes/helpers/FrmAppHelper.php:
|
1104 |
msgid "day"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: classes/helpers/FrmAppHelper.php:
|
1108 |
msgid "days"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: classes/helpers/FrmAppHelper.php:
|
1112 |
msgid "hour"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: classes/helpers/FrmAppHelper.php:
|
1116 |
msgid "hours"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: classes/helpers/FrmAppHelper.php:
|
1120 |
msgid "minute"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: classes/helpers/FrmAppHelper.php:
|
1124 |
msgid "minutes"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: classes/helpers/FrmAppHelper.php:
|
1128 |
msgid "second"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: classes/helpers/FrmAppHelper.php:
|
1132 |
msgid "seconds"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: classes/helpers/FrmAppHelper.php:
|
1136 |
msgid "Give this action a label for easy reference."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: classes/helpers/FrmAppHelper.php:
|
1140 |
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."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: classes/helpers/FrmAppHelper.php:
|
1144 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: classes/helpers/FrmAppHelper.php:
|
1148 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: classes/helpers/FrmAppHelper.php:
|
1152 |
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."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: classes/helpers/FrmAppHelper.php:
|
1156 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#. translators: %1$s: Form name, %2$s: Date
|
1160 |
-
#: classes/helpers/FrmAppHelper.php:
|
1161 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: classes/helpers/FrmAppHelper.php:
|
1165 |
-
#: classes/helpers/FrmAppHelper.php:
|
1166 |
msgid "Please wait while your site updates."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/helpers/FrmAppHelper.php:
|
1170 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/helpers/FrmAppHelper.php:
|
1174 |
-
#: classes/helpers/FrmAppHelper.php:
|
1175 |
msgid "Loading…"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: classes/helpers/FrmAppHelper.php:
|
1179 |
msgid "Remove"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: classes/helpers/FrmAppHelper.php:
|
1183 |
#: classes/helpers/FrmCSVExportHelper.php:348
|
1184 |
#: classes/views/shared/mb_adv_info.php:95
|
1185 |
msgid "ID"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: classes/helpers/FrmAppHelper.php:
|
1189 |
msgid "No results match"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: classes/helpers/FrmAppHelper.php:
|
1193 |
msgid "That file looks like Spam."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: classes/helpers/FrmAppHelper.php:
|
1197 |
msgid "There is an error in the calculation in the field with key"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: classes/helpers/FrmAppHelper.php:
|
1201 |
msgid "Please complete the preceding required fields before uploading a file."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: classes/helpers/FrmAppHelper.php:
|
1205 |
msgid "(Click to add description)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: classes/helpers/FrmAppHelper.php:
|
1209 |
msgid "(Blank)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: classes/helpers/FrmAppHelper.php:
|
1213 |
msgid "(no label)"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: classes/helpers/FrmAppHelper.php:
|
1217 |
msgid "Saving"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: classes/helpers/FrmAppHelper.php:
|
1221 |
msgid "Saved"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: classes/helpers/FrmAppHelper.php:
|
1225 |
msgid "OK"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: classes/helpers/FrmAppHelper.php:
|
1229 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1230 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1231 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
@@ -1239,428 +1239,428 @@ msgstr ""
|
|
1239 |
msgid "Cancel"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: classes/helpers/FrmAppHelper.php:
|
1243 |
#: classes/views/frm-fields/back-end/settings.php:280
|
1244 |
msgid "Default"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: classes/helpers/FrmAppHelper.php:
|
1248 |
msgid "Clear default value when typing"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: classes/helpers/FrmAppHelper.php:
|
1252 |
msgid "Do not clear default value when typing"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: classes/helpers/FrmAppHelper.php:
|
1256 |
msgid "Default value will pass form validation"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: classes/helpers/FrmAppHelper.php:
|
1260 |
msgid "Default value will NOT pass form validation"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: classes/helpers/FrmAppHelper.php:
|
1264 |
#: classes/helpers/FrmListHelper.php:412
|
1265 |
#: js/formidable_admin.js:4079
|
1266 |
msgid "Heads up"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: classes/helpers/FrmAppHelper.php:
|
1270 |
#: classes/views/shared/confirm-overlay.php:15
|
1271 |
#: classes/views/shared/info-overlay.php:15
|
1272 |
msgid "Are you sure?"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: classes/helpers/FrmAppHelper.php:
|
1276 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: classes/helpers/FrmAppHelper.php:
|
1280 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: classes/helpers/FrmAppHelper.php:
|
1284 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: classes/helpers/FrmAppHelper.php:
|
1288 |
#: classes/helpers/FrmFieldsHelper.php:284
|
1289 |
msgid "The entered values do not match"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: classes/helpers/FrmAppHelper.php:
|
1293 |
msgid "Enter Email"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: classes/helpers/FrmAppHelper.php:
|
1297 |
msgid "Confirm Email"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: classes/helpers/FrmAppHelper.php:
|
1301 |
#: classes/views/shared/mb_adv_info.php:166
|
1302 |
msgid "Conditional content here"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: classes/helpers/FrmAppHelper.php:
|
1306 |
#: classes/helpers/FrmFieldsHelper.php:456
|
1307 |
#: classes/helpers/FrmFieldsHelper.php:457
|
1308 |
msgid "New Option"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: classes/helpers/FrmAppHelper.php:
|
1312 |
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."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: classes/helpers/FrmAppHelper.php:
|
1316 |
msgid "Enter Password"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: classes/helpers/FrmAppHelper.php:
|
1320 |
msgid "Confirm Password"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: classes/helpers/FrmAppHelper.php:
|
1324 |
msgid "Import Complete"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: classes/helpers/FrmAppHelper.php:
|
1328 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: classes/helpers/FrmAppHelper.php:
|
1332 |
msgid "Private"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: classes/helpers/FrmAppHelper.php:
|
1336 |
msgid "No new licenses were found"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: classes/helpers/FrmAppHelper.php:
|
1340 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: classes/helpers/FrmAppHelper.php:
|
1344 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: classes/helpers/FrmAppHelper.php:
|
1348 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: classes/helpers/FrmAppHelper.php:
|
1352 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1356 |
-
#: classes/helpers/FrmAppHelper.php:
|
1357 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
#. 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.
|
1361 |
-
#: classes/helpers/FrmAppHelper.php:
|
1362 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: classes/helpers/FrmAppHelper.php:
|
1366 |
#: classes/helpers/FrmFormsHelper.php:1526
|
1367 |
msgid "See the list of reserved words in WordPress."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: classes/helpers/FrmAppHelper.php:
|
1371 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: classes/helpers/FrmAppHelper.php:
|
1375 |
msgid "Please select a limit between 0 and 200."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: classes/helpers/FrmAppHelper.php:
|
1379 |
#: classes/views/shared/mb_adv_info.php:113
|
1380 |
#: classes/views/shared/mb_adv_info.php:127
|
1381 |
msgid "Select a Field"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: classes/helpers/FrmAppHelper.php:
|
1385 |
#: classes/helpers/FrmListHelper.php:262
|
1386 |
msgid "No items found."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: classes/helpers/FrmAppHelper.php:
|
1390 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: classes/helpers/FrmAppHelper.php:
|
1394 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: classes/helpers/FrmAppHelper.php:
|
1398 |
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+."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: classes/helpers/FrmAppHelper.php:
|
1402 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: classes/helpers/FrmAppHelper.php:
|
1406 |
msgid "English"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: classes/helpers/FrmAppHelper.php:
|
1410 |
msgid "Afrikaans"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: classes/helpers/FrmAppHelper.php:
|
1414 |
msgid "Albanian"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: classes/helpers/FrmAppHelper.php:
|
1418 |
msgid "Arabic"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: classes/helpers/FrmAppHelper.php:
|
1422 |
msgid "Armenian"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: classes/helpers/FrmAppHelper.php:
|
1426 |
msgid "Azerbaijani"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: classes/helpers/FrmAppHelper.php:
|
1430 |
msgid "Basque"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: classes/helpers/FrmAppHelper.php:
|
1434 |
msgid "Bosnian"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: classes/helpers/FrmAppHelper.php:
|
1438 |
msgid "Bulgarian"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: classes/helpers/FrmAppHelper.php:
|
1442 |
msgid "Catalan"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: classes/helpers/FrmAppHelper.php:
|
1446 |
msgid "Chinese Hong Kong"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: classes/helpers/FrmAppHelper.php:
|
1450 |
msgid "Chinese Simplified"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: classes/helpers/FrmAppHelper.php:
|
1454 |
msgid "Chinese Traditional"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: classes/helpers/FrmAppHelper.php:
|
1458 |
msgid "Croatian"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: classes/helpers/FrmAppHelper.php:
|
1462 |
msgid "Czech"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: classes/helpers/FrmAppHelper.php:
|
1466 |
msgid "Danish"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: classes/helpers/FrmAppHelper.php:
|
1470 |
msgid "Dutch"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: classes/helpers/FrmAppHelper.php:
|
1474 |
msgid "English/UK"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: classes/helpers/FrmAppHelper.php:
|
1478 |
msgid "Esperanto"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: classes/helpers/FrmAppHelper.php:
|
1482 |
msgid "Estonian"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: classes/helpers/FrmAppHelper.php:
|
1486 |
msgid "Faroese"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: classes/helpers/FrmAppHelper.php:
|
1490 |
msgid "Farsi/Persian"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: classes/helpers/FrmAppHelper.php:
|
1494 |
msgid "Filipino"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: classes/helpers/FrmAppHelper.php:
|
1498 |
msgid "Finnish"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: classes/helpers/FrmAppHelper.php:
|
1502 |
msgid "French"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: classes/helpers/FrmAppHelper.php:
|
1506 |
msgid "French/Canadian"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: classes/helpers/FrmAppHelper.php:
|
1510 |
msgid "French/Swiss"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: classes/helpers/FrmAppHelper.php:
|
1514 |
msgid "German"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: classes/helpers/FrmAppHelper.php:
|
1518 |
msgid "German/Austria"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: classes/helpers/FrmAppHelper.php:
|
1522 |
msgid "German/Switzerland"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: classes/helpers/FrmAppHelper.php:
|
1526 |
msgid "Greek"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: classes/helpers/FrmAppHelper.php:
|
1530 |
-
#: classes/helpers/FrmAppHelper.php:
|
1531 |
msgid "Hebrew"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: classes/helpers/FrmAppHelper.php:
|
1535 |
msgid "Hindi"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: classes/helpers/FrmAppHelper.php:
|
1539 |
msgid "Hungarian"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: classes/helpers/FrmAppHelper.php:
|
1543 |
msgid "Icelandic"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: classes/helpers/FrmAppHelper.php:
|
1547 |
msgid "Indonesian"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: classes/helpers/FrmAppHelper.php:
|
1551 |
msgid "Italian"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: classes/helpers/FrmAppHelper.php:
|
1555 |
msgid "Japanese"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: classes/helpers/FrmAppHelper.php:
|
1559 |
msgid "Korean"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: classes/helpers/FrmAppHelper.php:
|
1563 |
msgid "Latvian"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: classes/helpers/FrmAppHelper.php:
|
1567 |
msgid "Lithuanian"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: classes/helpers/FrmAppHelper.php:
|
1571 |
msgid "Malaysian"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: classes/helpers/FrmAppHelper.php:
|
1575 |
msgid "Norwegian"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: classes/helpers/FrmAppHelper.php:
|
1579 |
msgid "Polish"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: classes/helpers/FrmAppHelper.php:
|
1583 |
msgid "Portuguese"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: classes/helpers/FrmAppHelper.php:
|
1587 |
msgid "Portuguese/Brazilian"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: classes/helpers/FrmAppHelper.php:
|
1591 |
msgid "Portuguese/Portugal"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: classes/helpers/FrmAppHelper.php:
|
1595 |
msgid "Romanian"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: classes/helpers/FrmAppHelper.php:
|
1599 |
msgid "Russian"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: classes/helpers/FrmAppHelper.php:
|
1603 |
-
#: classes/helpers/FrmAppHelper.php:
|
1604 |
msgid "Serbian"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: classes/helpers/FrmAppHelper.php:
|
1608 |
msgid "Slovak"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: classes/helpers/FrmAppHelper.php:
|
1612 |
msgid "Slovenian"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: classes/helpers/FrmAppHelper.php:
|
1616 |
msgid "Spanish"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: classes/helpers/FrmAppHelper.php:
|
1620 |
msgid "Spanish/Latin America"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: classes/helpers/FrmAppHelper.php:
|
1624 |
msgid "Swedish"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: classes/helpers/FrmAppHelper.php:
|
1628 |
msgid "Tamil"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: classes/helpers/FrmAppHelper.php:
|
1632 |
msgid "Thai"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: classes/helpers/FrmAppHelper.php:
|
1636 |
msgid "Turkish"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: classes/helpers/FrmAppHelper.php:
|
1640 |
msgid "Ukrainian"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: classes/helpers/FrmAppHelper.php:
|
1644 |
msgid "Vietnamese"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: classes/helpers/FrmAppHelper.php:
|
1648 |
msgid "Form Landing Pages"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: classes/helpers/FrmAppHelper.php:
|
1652 |
msgid "Easily manage a landing page for your form. Upgrade to get form landing pages."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: classes/helpers/FrmAppHelper.php:
|
1656 |
msgid "Your account has expired"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: classes/helpers/FrmAppHelper.php:
|
1660 |
msgid "Renew Now"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: classes/helpers/FrmAppHelper.php:
|
1664 |
msgid "NEW"
|
1665 |
msgstr ""
|
1666 |
|
2 |
# This file is distributed under the same license as the Formidable Forms plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Formidable Forms 5.2.03\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-03-24T14:09:22+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"
|
152 |
msgstr ""
|
153 |
|
154 |
#: classes/controllers/FrmAddonsController.php:635
|
155 |
+
#: classes/helpers/FrmAppHelper.php:2776
|
156 |
msgid "Active"
|
157 |
msgstr ""
|
158 |
|
658 |
msgid "Please select a valid form"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: classes/controllers/FrmFormsController.php:2026
|
662 |
msgid "Please wait while you are redirected."
|
663 |
msgstr ""
|
664 |
|
665 |
#. translators: %1$s: Start link HTML, %2$s: End link HTML
|
666 |
+
#: classes/controllers/FrmFormsController.php:2061
|
667 |
msgid "%1$sClick here%2$s if you are not automatically redirected."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: classes/controllers/FrmFormsController.php:2385
|
671 |
#: classes/helpers/FrmAppHelper.php:1341
|
672 |
#: classes/views/frm-forms/settings-advanced.php:93
|
673 |
msgid "Select a Page"
|
867 |
msgstr ""
|
868 |
|
869 |
#: classes/controllers/FrmSMTPController.php:305
|
870 |
+
#: classes/helpers/FrmAppHelper.php:2775
|
871 |
#: classes/helpers/FrmFormMigratorsHelper.php:131
|
872 |
#: classes/views/shared/upgrade_overlay.php:32
|
873 |
msgid "Install"
|
1072 |
msgid "Add/Edit Views"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: classes/helpers/FrmAppHelper.php:2202
|
1076 |
msgid "at"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: classes/helpers/FrmAppHelper.php:2346
|
1080 |
msgid "year"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: classes/helpers/FrmAppHelper.php:2347
|
1084 |
msgid "years"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: classes/helpers/FrmAppHelper.php:2351
|
1088 |
msgid "month"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: classes/helpers/FrmAppHelper.php:2352
|
1092 |
msgid "months"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: classes/helpers/FrmAppHelper.php:2356
|
1096 |
msgid "week"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: classes/helpers/FrmAppHelper.php:2357
|
1100 |
msgid "weeks"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: classes/helpers/FrmAppHelper.php:2361
|
1104 |
msgid "day"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: classes/helpers/FrmAppHelper.php:2362
|
1108 |
msgid "days"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: classes/helpers/FrmAppHelper.php:2366
|
1112 |
msgid "hour"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: classes/helpers/FrmAppHelper.php:2367
|
1116 |
msgid "hours"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: classes/helpers/FrmAppHelper.php:2371
|
1120 |
msgid "minute"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: classes/helpers/FrmAppHelper.php:2372
|
1124 |
msgid "minutes"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: classes/helpers/FrmAppHelper.php:2376
|
1128 |
msgid "second"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: classes/helpers/FrmAppHelper.php:2377
|
1132 |
msgid "seconds"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/helpers/FrmAppHelper.php:2471
|
1136 |
msgid "Give this action a label for easy reference."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: classes/helpers/FrmAppHelper.php:2472
|
1140 |
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."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/helpers/FrmAppHelper.php:2473
|
1144 |
msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/helpers/FrmAppHelper.php:2474
|
1148 |
msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/helpers/FrmAppHelper.php:2475
|
1152 |
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."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/helpers/FrmAppHelper.php:2476
|
1156 |
msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#. translators: %1$s: Form name, %2$s: Date
|
1160 |
+
#: classes/helpers/FrmAppHelper.php:2478
|
1161 |
msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: classes/helpers/FrmAppHelper.php:2678
|
1165 |
+
#: classes/helpers/FrmAppHelper.php:2757
|
1166 |
msgid "Please wait while your site updates."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: classes/helpers/FrmAppHelper.php:2679
|
1170 |
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: classes/helpers/FrmAppHelper.php:2682
|
1174 |
+
#: classes/helpers/FrmAppHelper.php:2711
|
1175 |
msgid "Loading…"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: classes/helpers/FrmAppHelper.php:2712
|
1179 |
msgid "Remove"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: classes/helpers/FrmAppHelper.php:2715
|
1183 |
#: classes/helpers/FrmCSVExportHelper.php:348
|
1184 |
#: classes/views/shared/mb_adv_info.php:95
|
1185 |
msgid "ID"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: classes/helpers/FrmAppHelper.php:2716
|
1189 |
msgid "No results match"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: classes/helpers/FrmAppHelper.php:2717
|
1193 |
msgid "That file looks like Spam."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: classes/helpers/FrmAppHelper.php:2718
|
1197 |
msgid "There is an error in the calculation in the field with key"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: classes/helpers/FrmAppHelper.php:2719
|
1201 |
msgid "Please complete the preceding required fields before uploading a file."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: classes/helpers/FrmAppHelper.php:2730
|
1205 |
msgid "(Click to add description)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: classes/helpers/FrmAppHelper.php:2731
|
1209 |
msgid "(Blank)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: classes/helpers/FrmAppHelper.php:2732
|
1213 |
msgid "(no label)"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: classes/helpers/FrmAppHelper.php:2733
|
1217 |
msgid "Saving"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: classes/helpers/FrmAppHelper.php:2734
|
1221 |
msgid "Saved"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: classes/helpers/FrmAppHelper.php:2735
|
1225 |
msgid "OK"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: classes/helpers/FrmAppHelper.php:2736
|
1229 |
#: classes/views/frm-forms/new-form-overlay.php:33
|
1230 |
#: classes/views/frm-forms/new-form-overlay.php:100
|
1231 |
#: classes/views/frm-forms/new-form-overlay.php:109
|
1239 |
msgid "Cancel"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: classes/helpers/FrmAppHelper.php:2737
|
1243 |
#: classes/views/frm-fields/back-end/settings.php:280
|
1244 |
msgid "Default"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/helpers/FrmAppHelper.php:2738
|
1248 |
msgid "Clear default value when typing"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: classes/helpers/FrmAppHelper.php:2739
|
1252 |
msgid "Do not clear default value when typing"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: classes/helpers/FrmAppHelper.php:2740
|
1256 |
msgid "Default value will pass form validation"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: classes/helpers/FrmAppHelper.php:2741
|
1260 |
msgid "Default value will NOT pass form validation"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: classes/helpers/FrmAppHelper.php:2742
|
1264 |
#: classes/helpers/FrmListHelper.php:412
|
1265 |
#: js/formidable_admin.js:4079
|
1266 |
msgid "Heads up"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: classes/helpers/FrmAppHelper.php:2743
|
1270 |
#: classes/views/shared/confirm-overlay.php:15
|
1271 |
#: classes/views/shared/info-overlay.php:15
|
1272 |
msgid "Are you sure?"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: classes/helpers/FrmAppHelper.php:2744
|
1276 |
msgid "Are you sure you want to delete this field and all data associated with it?"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: classes/helpers/FrmAppHelper.php:2745
|
1280 |
msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: classes/helpers/FrmAppHelper.php:2746
|
1284 |
msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: classes/helpers/FrmAppHelper.php:2748
|
1288 |
#: classes/helpers/FrmFieldsHelper.php:284
|
1289 |
msgid "The entered values do not match"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: classes/helpers/FrmAppHelper.php:2749
|
1293 |
msgid "Enter Email"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: classes/helpers/FrmAppHelper.php:2750
|
1297 |
msgid "Confirm Email"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: classes/helpers/FrmAppHelper.php:2751
|
1301 |
#: classes/views/shared/mb_adv_info.php:166
|
1302 |
msgid "Conditional content here"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: classes/helpers/FrmAppHelper.php:2752
|
1306 |
#: classes/helpers/FrmFieldsHelper.php:456
|
1307 |
#: classes/helpers/FrmFieldsHelper.php:457
|
1308 |
msgid "New Option"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: classes/helpers/FrmAppHelper.php:2753
|
1312 |
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."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: classes/helpers/FrmAppHelper.php:2754
|
1316 |
msgid "Enter Password"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: classes/helpers/FrmAppHelper.php:2755
|
1320 |
msgid "Confirm Password"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: classes/helpers/FrmAppHelper.php:2756
|
1324 |
msgid "Import Complete"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: classes/helpers/FrmAppHelper.php:2758
|
1328 |
msgid "Warning: There is no way to retrieve unsaved entries."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: classes/helpers/FrmAppHelper.php:2759
|
1332 |
msgid "Private"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: classes/helpers/FrmAppHelper.php:2762
|
1336 |
msgid "No new licenses were found"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: classes/helpers/FrmAppHelper.php:2763
|
1340 |
msgid "This calculation has at least one unmatched ( ) { } [ ]."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: classes/helpers/FrmAppHelper.php:2764
|
1344 |
msgid "This calculation may have shortcodes that work in Views but not forms."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/helpers/FrmAppHelper.php:2765
|
1348 |
msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: classes/helpers/FrmAppHelper.php:2766
|
1352 |
msgid "This form action is limited to one per form. Please edit the existing form action."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#. Translators: %s is the name of a Detail Page Slug that is a reserved word.
|
1356 |
+
#: classes/helpers/FrmAppHelper.php:2769
|
1357 |
msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
#. 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.
|
1361 |
+
#: classes/helpers/FrmAppHelper.php:2771
|
1362 |
msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: classes/helpers/FrmAppHelper.php:2772
|
1366 |
#: classes/helpers/FrmFormsHelper.php:1526
|
1367 |
msgid "See the list of reserved words in WordPress."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: classes/helpers/FrmAppHelper.php:2773
|
1371 |
msgid "Please enter a Repeat Limit that is greater than 1."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: classes/helpers/FrmAppHelper.php:2774
|
1375 |
msgid "Please select a limit between 0 and 200."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: classes/helpers/FrmAppHelper.php:2777
|
1379 |
#: classes/views/shared/mb_adv_info.php:113
|
1380 |
#: classes/views/shared/mb_adv_info.php:127
|
1381 |
msgid "Select a Field"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: classes/helpers/FrmAppHelper.php:2778
|
1385 |
#: classes/helpers/FrmListHelper.php:262
|
1386 |
msgid "No items found."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: classes/helpers/FrmAppHelper.php:2806
|
1390 |
msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: classes/helpers/FrmAppHelper.php:2833
|
1394 |
msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: classes/helpers/FrmAppHelper.php:2861
|
1398 |
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+."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: classes/helpers/FrmAppHelper.php:2867
|
1402 |
msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: classes/helpers/FrmAppHelper.php:2881
|
1406 |
msgid "English"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: classes/helpers/FrmAppHelper.php:2882
|
1410 |
msgid "Afrikaans"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: classes/helpers/FrmAppHelper.php:2883
|
1414 |
msgid "Albanian"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: classes/helpers/FrmAppHelper.php:2884
|
1418 |
msgid "Arabic"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: classes/helpers/FrmAppHelper.php:2885
|
1422 |
msgid "Armenian"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: classes/helpers/FrmAppHelper.php:2886
|
1426 |
msgid "Azerbaijani"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: classes/helpers/FrmAppHelper.php:2887
|
1430 |
msgid "Basque"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: classes/helpers/FrmAppHelper.php:2888
|
1434 |
msgid "Bosnian"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: classes/helpers/FrmAppHelper.php:2889
|
1438 |
msgid "Bulgarian"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: classes/helpers/FrmAppHelper.php:2890
|
1442 |
msgid "Catalan"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: classes/helpers/FrmAppHelper.php:2891
|
1446 |
msgid "Chinese Hong Kong"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: classes/helpers/FrmAppHelper.php:2892
|
1450 |
msgid "Chinese Simplified"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: classes/helpers/FrmAppHelper.php:2893
|
1454 |
msgid "Chinese Traditional"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: classes/helpers/FrmAppHelper.php:2894
|
1458 |
msgid "Croatian"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: classes/helpers/FrmAppHelper.php:2895
|
1462 |
msgid "Czech"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: classes/helpers/FrmAppHelper.php:2896
|
1466 |
msgid "Danish"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: classes/helpers/FrmAppHelper.php:2897
|
1470 |
msgid "Dutch"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: classes/helpers/FrmAppHelper.php:2898
|
1474 |
msgid "English/UK"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: classes/helpers/FrmAppHelper.php:2899
|
1478 |
msgid "Esperanto"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: classes/helpers/FrmAppHelper.php:2900
|
1482 |
msgid "Estonian"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: classes/helpers/FrmAppHelper.php:2901
|
1486 |
msgid "Faroese"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: classes/helpers/FrmAppHelper.php:2902
|
1490 |
msgid "Farsi/Persian"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: classes/helpers/FrmAppHelper.php:2903
|
1494 |
msgid "Filipino"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: classes/helpers/FrmAppHelper.php:2904
|
1498 |
msgid "Finnish"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: classes/helpers/FrmAppHelper.php:2905
|
1502 |
msgid "French"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: classes/helpers/FrmAppHelper.php:2906
|
1506 |
msgid "French/Canadian"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: classes/helpers/FrmAppHelper.php:2907
|
1510 |
msgid "French/Swiss"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: classes/helpers/FrmAppHelper.php:2908
|
1514 |
msgid "German"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: classes/helpers/FrmAppHelper.php:2909
|
1518 |
msgid "German/Austria"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: classes/helpers/FrmAppHelper.php:2910
|
1522 |
msgid "German/Switzerland"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: classes/helpers/FrmAppHelper.php:2911
|
1526 |
msgid "Greek"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/helpers/FrmAppHelper.php:2912
|
1530 |
+
#: classes/helpers/FrmAppHelper.php:2913
|
1531 |
msgid "Hebrew"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: classes/helpers/FrmAppHelper.php:2914
|
1535 |
msgid "Hindi"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: classes/helpers/FrmAppHelper.php:2915
|
1539 |
msgid "Hungarian"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: classes/helpers/FrmAppHelper.php:2916
|
1543 |
msgid "Icelandic"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: classes/helpers/FrmAppHelper.php:2917
|
1547 |
msgid "Indonesian"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: classes/helpers/FrmAppHelper.php:2918
|
1551 |
msgid "Italian"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: classes/helpers/FrmAppHelper.php:2919
|
1555 |
msgid "Japanese"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: classes/helpers/FrmAppHelper.php:2920
|
1559 |
msgid "Korean"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: classes/helpers/FrmAppHelper.php:2921
|
1563 |
msgid "Latvian"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: classes/helpers/FrmAppHelper.php:2922
|
1567 |
msgid "Lithuanian"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: classes/helpers/FrmAppHelper.php:2923
|
1571 |
msgid "Malaysian"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: classes/helpers/FrmAppHelper.php:2924
|
1575 |
msgid "Norwegian"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: classes/helpers/FrmAppHelper.php:2925
|
1579 |
msgid "Polish"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: classes/helpers/FrmAppHelper.php:2926
|
1583 |
msgid "Portuguese"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: classes/helpers/FrmAppHelper.php:2927
|
1587 |
msgid "Portuguese/Brazilian"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: classes/helpers/FrmAppHelper.php:2928
|
1591 |
msgid "Portuguese/Portugal"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: classes/helpers/FrmAppHelper.php:2929
|
1595 |
msgid "Romanian"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: classes/helpers/FrmAppHelper.php:2930
|
1599 |
msgid "Russian"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: classes/helpers/FrmAppHelper.php:2931
|
1603 |
+
#: classes/helpers/FrmAppHelper.php:2932
|
1604 |
msgid "Serbian"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: classes/helpers/FrmAppHelper.php:2933
|
1608 |
msgid "Slovak"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: classes/helpers/FrmAppHelper.php:2934
|
1612 |
msgid "Slovenian"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: classes/helpers/FrmAppHelper.php:2935
|
1616 |
msgid "Spanish"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: classes/helpers/FrmAppHelper.php:2936
|
1620 |
msgid "Spanish/Latin America"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: classes/helpers/FrmAppHelper.php:2937
|
1624 |
msgid "Swedish"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: classes/helpers/FrmAppHelper.php:2938
|
1628 |
msgid "Tamil"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: classes/helpers/FrmAppHelper.php:2939
|
1632 |
msgid "Thai"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: classes/helpers/FrmAppHelper.php:2940
|
1636 |
msgid "Turkish"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: classes/helpers/FrmAppHelper.php:2941
|
1640 |
msgid "Ukrainian"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: classes/helpers/FrmAppHelper.php:2942
|
1644 |
msgid "Vietnamese"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: classes/helpers/FrmAppHelper.php:3264
|
1648 |
msgid "Form Landing Pages"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: classes/helpers/FrmAppHelper.php:3265
|
1652 |
msgid "Easily manage a landing page for your form. Upgrade to get form landing pages."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: classes/helpers/FrmAppHelper.php:3366
|
1656 |
msgid "Your account has expired"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: classes/helpers/FrmAppHelper.php:3369
|
1660 |
msgid "Renew Now"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: classes/helpers/FrmAppHelper.php:3385
|
1664 |
msgid "NEW"
|
1665 |
msgstr ""
|
1666 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Plugin Name: Formidable Forms - Contact Form, Survey & Quiz Forms Plugin for Wor
|
|
3 |
Contributors: formidableforms, sswells, srwells
|
4 |
Tags: forms, contact form, form builder, survey, free, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator, price calculator, quote form, contact button, form manager, Akismet, payment form, survey form, donation form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form
|
5 |
Requires at least: 5.2
|
6 |
-
Tested up to: 5.9.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 5.2.
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
|
11 |
|
@@ -438,6 +438,12 @@ Using our Zapier integration, you can easily connect Formidable with over 1000+
|
|
438 |
See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
|
439 |
|
440 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
= 5.2.02.01 =
|
442 |
* Fix: Fixed a conflict with Duplicator Pro that was causing dropdowns to break after updating to Bootstrap 4.
|
443 |
* Fix: Bottom margins were removed from credit card and address fields with last release and have been added back.
|
@@ -452,10 +458,4 @@ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zap
|
|
452 |
* Fix: Prevent a PHP 8.1 deprecation message where null was being passed to substr.
|
453 |
* Fix: Name fields with no descriptions were still displaying bottom margins.
|
454 |
|
455 |
-
= 5.2.01 =
|
456 |
-
* New: Added new checkboxes to toggle form title and description visibility. The form preview page will no longer always show title and description by default, and will use these checkboxes instead.
|
457 |
-
* Fix: In-Theme Previews trigger a fatal error in WordPress 5.9.1.
|
458 |
-
* Fix: Checkbox fields were appearing as broken vertical lines when using the Enfold theme.
|
459 |
-
* Fix: A deprecation message was occasionally logged in PHP8 when trying to decode null values.
|
460 |
-
|
461 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|
3 |
Contributors: formidableforms, sswells, srwells
|
4 |
Tags: forms, contact form, form builder, survey, free, form maker, form creator, paypal form, paypal, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator, price calculator, quote form, contact button, form manager, Akismet, payment form, survey form, donation form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor, quiz builder, quiz, feedback form, mailchimp form
|
5 |
Requires at least: 5.2
|
6 |
+
Tested up to: 5.9.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 5.2.03
|
9 |
|
10 |
The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quizzes, and more.
|
11 |
|
438 |
See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
|
439 |
|
440 |
== Changelog ==
|
441 |
+
= 5.2.03 =
|
442 |
+
* New: Updated how unique field and form keys are generated for shorter unique keys.
|
443 |
+
* New: Added a new frm_unique_field_key_separator filter for unique field keys.
|
444 |
+
* New: Added a new frm_saved_errors filter for extending custom form validation.
|
445 |
+
* Fix: Fixed a conflict with All in One SEO that was causing multiselect dropdowns to appear larger than expected.
|
446 |
+
|
447 |
= 5.2.02.01 =
|
448 |
* Fix: Fixed a conflict with Duplicator Pro that was causing dropdowns to break after updating to Bootstrap 4.
|
449 |
* Fix: Bottom margins were removed from credit card and address fields with last release and have been added back.
|
458 |
* Fix: Prevent a PHP 8.1 deprecation message where null was being passed to substr.
|
459 |
* Fix: Name fields with no descriptions were still displaying bottom margins.
|
460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
<a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
|