Changeset 3036370
- Timestamp:
- 02/15/2024 02:48:23 PM (22 months ago)
- Location:
- formidable
- Files:
-
- 16 edited
- 1 copied
-
tags/6.8.2 (copied) (copied from formidable/trunk)
-
tags/6.8.2/classes/controllers/FrmAddonsController.php (modified) (1 diff)
-
tags/6.8.2/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
tags/6.8.2/classes/models/FrmAddon.php (modified) (1 diff)
-
tags/6.8.2/classes/models/FrmFormApi.php (modified) (1 diff)
-
tags/6.8.2/formidable.php (modified) (1 diff)
-
tags/6.8.2/js/formidable_admin.js (modified) (2 diffs)
-
tags/6.8.2/languages/formidable.pot (modified) (11 diffs)
-
tags/6.8.2/readme.txt (modified) (2 diffs)
-
trunk/classes/controllers/FrmAddonsController.php (modified) (1 diff)
-
trunk/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
trunk/classes/models/FrmAddon.php (modified) (1 diff)
-
trunk/classes/models/FrmFormApi.php (modified) (1 diff)
-
trunk/formidable.php (modified) (1 diff)
-
trunk/js/formidable_admin.js (modified) (2 diffs)
-
trunk/languages/formidable.pot (modified) (11 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
formidable/tags/6.8.2/classes/controllers/FrmAddonsController.php
r3026901 r3036370 1285 1285 update_option( 'frm_connect_token', $auth, 'no' ); 1286 1286 } 1287 $link = FrmAppHelper::admin_upgrade_link( 'connect', 'api-connect' );1287 $link = 'https://formidableforms.com/api-connect/'; 1288 1288 $args = array( 1289 1289 'v' => 2, -
formidable/tags/6.8.2/classes/helpers/FrmAppHelper.php
r3035860 r3036370 34 34 * @var string 35 35 */ 36 public static $plug_version = '6.8. 1';36 public static $plug_version = '6.8.2'; 37 37 38 38 /** -
formidable/tags/6.8.2/classes/models/FrmAddon.php
r3017166 r3036370 231 231 * @since 3.04.03 232 232 * 233 * @param array $error233 * @param array|string $error 234 234 */ 235 235 public function maybe_clear_license( $error ) { 236 if ( $error['code'] === 'disabled' && $error['license'] === $this->license ) {236 if ( is_array( $error ) && $error['code'] === 'disabled' && $error['license'] === $this->license ) { 237 237 $this->clear_license(); 238 238 } -
formidable/tags/6.8.2/classes/models/FrmFormApi.php
r3017166 r3036370 259 259 $errors = array(); 260 260 if ( isset( $addons['error'] ) ) { 261 $errors[] = $addons['error']['message']; 261 if ( is_string( $addons['error'] ) ) { 262 $errors[] = $addons['error']; 263 } elseif ( ! empty( $addons['error']['message'] ) ) { 264 $errors[] = $addons['error']['message']; 265 } 266 262 267 do_action( 'frm_license_error', $addons['error'] ); 263 268 } -
formidable/tags/6.8.2/formidable.php
r3035860 r3036370 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.8. 15 * Version: 6.8.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/tags/6.8.2/js/formidable_admin.js
r3035860 r3036370 9 9 var el = { 10 10 messageBox: null, 11 btn: null,12 11 reset: null, 13 12 14 13 setElements: function() { 15 14 el.messageBox = document.querySelector( '.frm_pro_license_msg' ); 16 el.btn = document.getElementById( 'frm-settings-connect-btn' );17 15 el.reset = document.getElementById( 'frm_reconnect_link' ); 18 16 } … … 45 43 if ( el.reset !== null ) { 46 44 $( el.reset ).on( 'click', app.reauthorize ); 47 }48 49 $( el.btn ).on( 'click', function( e ) {50 e.preventDefault();51 app.gotoUpgradeUrl();52 });53 54 window.addEventListener( 'message', function( msg ) {55 if ( msg.origin.replace( /\/$/, '' ) !== frmGlobal.app_url.replace( /\/$/, '' ) ) {56 return;57 }58 59 if ( ! msg.data || 'object' !== typeof msg.data ) {60 console.error( 'Messages from "' + frmGlobal.app_url + '" must contain an api key string.' );61 return;62 }63 64 app.updateForm( msg.data );65 });66 },67 68 /**69 * Go to upgrade url.70 *71 * @since 4.0372 */73 gotoUpgradeUrl: function() {74 var w = window.open( frmGlobal.app_url + '/api-connect/', '_blank', 'location=no,width=500,height=730,scrollbars=0' );75 w.focus();76 },77 78 updateForm: function( response ) {79 80 // Start spinner.81 var btn = el.btn;82 btn.classList.add( 'frm_loading_button' );83 84 if ( response.url !== '' ) {85 app.showProgress({86 success: true,87 message: 'Installing...'88 });89 var fallback = setTimeout( function() {90 app.showProgress({91 success: true,92 message: 'Installing is taking longer than expected. <a class="frm-install-addon button button-primary frm-button-primary" rel="' + response.url + '" aria-label="Install">Install Now</a>'93 });94 }, 10000 );95 $.ajax({96 type: 'POST',97 url: ajaxurl,98 dataType: 'json',99 data: {100 action: 'frm_connect',101 plugin: response.url,102 nonce: frmGlobal.nonce103 },104 success: function() {105 clearTimeout( fallback );106 app.activateKey( response );107 },108 error: function( xhr, textStatus, e ) {109 clearTimeout( fallback );110 btn.classList.remove( 'frm_loading_button' );111 app.showMessage({112 success: false,113 message: e114 });115 }116 });117 } else if ( response.key !== '' ) {118 app.activateKey( response );119 }120 },121 122 activateKey: function( response ) {123 var btn = el.btn;124 if ( response.key === '' ) {125 btn.classList.remove( 'frm_loading_button' );126 } else {127 app.showProgress({128 success: true,129 message: 'Activating...'130 });131 $.ajax({132 type: 'POST',133 url: ajaxurl,134 dataType: 'json',135 data: {136 action: 'frm_addon_activate',137 license: response.key,138 plugin: 'formidable_pro',139 wpmu: 0,140 nonce: frmGlobal.nonce141 },142 success: function( msg ) {143 btn.classList.remove( 'frm_loading_button' );144 145 if ( msg.success === true ) {146 app.showAuthorized( true );147 }148 149 app.showMessage( msg );150 },151 error: function( xhr, textStatus, e ) {152 btn.classList.remove( 'frm_loading_button' );153 app.showMessage({154 success: false,155 message: e156 });157 }158 });159 45 } 160 46 }, -
formidable/tags/6.8.2/languages/formidable.pot
r3035860 r3036370 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.8. 1\n"5 "Project-Id-Version: Formidable Forms 6.8.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-02-1 4T18:36:10+00:00\n"12 "POT-Creation-Date: 2024-02-15T14:29:17+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 413 413 #: stripe/controllers/FrmTransLiteSubscriptionsController.php:68 414 414 #: js/admin/style.js:939 415 #: js/formidable_admin.js:4 218415 #: js/formidable_admin.js:4104 416 416 msgid "Cancel" 417 417 msgstr "" … … 1235 1235 #: classes/models/FrmPluginSearch.php:319 1236 1236 #: classes/views/addons/settings.php:31 1237 #: js/formidable_admin.js:6 7391237 #: js/formidable_admin.js:6625 1238 1238 msgid "Activate" 1239 1239 msgstr "" … … 1322 1322 1323 1323 #: classes/controllers/FrmStylesController.php:948 1324 #: js/formidable_admin.js:2 4241324 #: js/formidable_admin.js:2310 1325 1325 msgid "Field Settings" 1326 1326 msgstr "" … … 2459 2459 #: stripe/views/payments/show.php:156 2460 2460 #: stripe/views/subscriptions/show.php:129 2461 #: js/formidable_admin.js:2 4522461 #: js/formidable_admin.js:2338 2462 2462 msgid "Delete" 2463 2463 msgstr "" … … 3931 3931 #: classes/helpers/FrmFormsHelper.php:1758 3932 3932 #: classes/views/form-templates/modals/name-your-form-modal.php:35 3933 #: js/formidable_admin.js:4 2233933 #: js/formidable_admin.js:4109 3934 3934 msgid "Save" 3935 3935 msgstr "" … … 5278 5278 #: classes/views/frm-fields/back-end/inline-modal.php:8 5279 5279 #: classes/views/shared/admin-header.php:71 5280 #: js/formidable_admin.js:8 8195280 #: js/formidable_admin.js:8705 5281 5281 msgid "Close" 5282 5282 msgstr "" … … 5861 5861 #: classes/views/frm-form-actions/form_action.php:32 5862 5862 #: js/admin/style.js:678 5863 #: js/formidable_admin.js:2 4585863 #: js/formidable_admin.js:2344 5864 5864 msgid "Duplicate" 5865 5865 msgstr "" … … 6006 6006 6007 6007 #: classes/views/frm-forms/add_field.php:36 6008 #: js/formidable_admin.js:1 5366009 #: js/formidable_admin.js:1 5416010 #: js/formidable_admin.js:2 3836008 #: js/formidable_admin.js:1422 6009 #: js/formidable_admin.js:1427 6010 #: js/formidable_admin.js:2269 6011 6011 msgid "More Options" 6012 6012 msgstr "" 6013 6013 6014 6014 #: classes/views/frm-forms/add_field.php:38 6015 #: js/formidable_admin.js:1 5286015 #: js/formidable_admin.js:1414 6016 6016 msgid "Toggle More Options Dropdown" 6017 6017 msgstr "" … … 7925 7925 msgstr "" 7926 7926 7927 #: js/formidable_admin.js:1 4877927 #: js/formidable_admin.js:1373 7928 7928 msgid "Set Row Layout" 7929 7929 msgstr "" 7930 7930 7931 #: js/formidable_admin.js:1 4947931 #: js/formidable_admin.js:1380 7932 7932 msgid "Move Field Group" 7933 7933 msgstr "" 7934 7934 7935 #: js/formidable_admin.js:2 4527935 #: js/formidable_admin.js:2338 7936 7936 msgid "Delete Group" 7937 7937 msgstr "" 7938 7938 7939 #: js/formidable_admin.js:2 4587939 #: js/formidable_admin.js:2344 7940 7940 msgid "Duplicate Group" 7941 7941 msgstr "" 7942 7942 7943 7943 #. translators: %1$s: Number of fields that are selected to be deleted. 7944 #: js/formidable_admin.js:3 6787944 #: js/formidable_admin.js:3564 7945 7945 msgid "Are you sure you want to delete these %1$s selected field(s)?" 7946 7946 msgstr "" 7947 7947 7948 #: js/formidable_admin.js:3 9167948 #: js/formidable_admin.js:3802 7949 7949 msgid "Custom layout" 7950 7950 msgstr "" 7951 7951 7952 #: js/formidable_admin.js:3 9397952 #: js/formidable_admin.js:3825 7953 7953 msgid "Break into rows" 7954 7954 msgstr "" 7955 7955 7956 #: js/formidable_admin.js:3 9497956 #: js/formidable_admin.js:3835 7957 7957 msgid "Row Layout" 7958 7958 msgstr "" 7959 7959 7960 #: js/formidable_admin.js:4 2037960 #: js/formidable_admin.js:4089 7961 7961 msgid "Enter number of columns for each field" 7962 7962 msgstr "" 7963 7963 7964 #: js/formidable_admin.js:4 2077964 #: js/formidable_admin.js:4093 7965 7965 msgid "Layouts are based on a 12-column grid system" 7966 7966 msgstr "" 7967 7967 7968 #: js/formidable_admin.js:4 6607968 #: js/formidable_admin.js:4546 7969 7969 msgid "Merge into row" 7970 7970 msgstr "" 7971 7971 7972 #: js/formidable_admin.js:5 9597972 #: js/formidable_admin.js:5845 7973 7973 msgid "Duplicate option value \"%s\" detected" 7974 7974 msgstr "" 7975 7975 7976 #: js/formidable_admin.js:8 8047976 #: js/formidable_admin.js:8690 7977 7977 msgid "Save and Reload" 7978 7978 msgstr "" 7979 7979 7980 #: js/formidable_admin.js:8 9737980 #: js/formidable_admin.js:8859 7981 7981 msgid "Unable to install template" 7982 7982 msgstr "" 7983 7983 7984 #: js/formidable_admin.js:9 6207984 #: js/formidable_admin.js:9506 7985 7985 msgid "Thank you for signing up!" 7986 7986 msgstr "" -
formidable/tags/6.8.2/readme.txt
r3035860 r3036370 6 6 Tested up to: 6.4.3 7 7 Requires PHP: 5.6 8 Stable tag: 6.8. 18 Stable tag: 6.8.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 443 443 444 444 == Changelog == 445 = 6.8.2 = 446 * Fix: The process of connecting an account to formidableforms.com would fail in some web browsers. 447 445 448 = 6.8.1 = 446 449 * Security: A nonce check was missing on an action for dismissing a call to action on the global settings page. -
formidable/trunk/classes/controllers/FrmAddonsController.php
r3026901 r3036370 1285 1285 update_option( 'frm_connect_token', $auth, 'no' ); 1286 1286 } 1287 $link = FrmAppHelper::admin_upgrade_link( 'connect', 'api-connect' );1287 $link = 'https://formidableforms.com/api-connect/'; 1288 1288 $args = array( 1289 1289 'v' => 2, -
formidable/trunk/classes/helpers/FrmAppHelper.php
r3035860 r3036370 34 34 * @var string 35 35 */ 36 public static $plug_version = '6.8. 1';36 public static $plug_version = '6.8.2'; 37 37 38 38 /** -
formidable/trunk/classes/models/FrmAddon.php
r3017166 r3036370 231 231 * @since 3.04.03 232 232 * 233 * @param array $error233 * @param array|string $error 234 234 */ 235 235 public function maybe_clear_license( $error ) { 236 if ( $error['code'] === 'disabled' && $error['license'] === $this->license ) {236 if ( is_array( $error ) && $error['code'] === 'disabled' && $error['license'] === $this->license ) { 237 237 $this->clear_license(); 238 238 } -
formidable/trunk/classes/models/FrmFormApi.php
r3017166 r3036370 259 259 $errors = array(); 260 260 if ( isset( $addons['error'] ) ) { 261 $errors[] = $addons['error']['message']; 261 if ( is_string( $addons['error'] ) ) { 262 $errors[] = $addons['error']; 263 } elseif ( ! empty( $addons['error']['message'] ) ) { 264 $errors[] = $addons['error']['message']; 265 } 266 262 267 do_action( 'frm_license_error', $addons['error'] ); 263 268 } -
formidable/trunk/formidable.php
r3035860 r3036370 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.8. 15 * Version: 6.8.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/trunk/js/formidable_admin.js
r3035860 r3036370 9 9 var el = { 10 10 messageBox: null, 11 btn: null,12 11 reset: null, 13 12 14 13 setElements: function() { 15 14 el.messageBox = document.querySelector( '.frm_pro_license_msg' ); 16 el.btn = document.getElementById( 'frm-settings-connect-btn' );17 15 el.reset = document.getElementById( 'frm_reconnect_link' ); 18 16 } … … 45 43 if ( el.reset !== null ) { 46 44 $( el.reset ).on( 'click', app.reauthorize ); 47 }48 49 $( el.btn ).on( 'click', function( e ) {50 e.preventDefault();51 app.gotoUpgradeUrl();52 });53 54 window.addEventListener( 'message', function( msg ) {55 if ( msg.origin.replace( /\/$/, '' ) !== frmGlobal.app_url.replace( /\/$/, '' ) ) {56 return;57 }58 59 if ( ! msg.data || 'object' !== typeof msg.data ) {60 console.error( 'Messages from "' + frmGlobal.app_url + '" must contain an api key string.' );61 return;62 }63 64 app.updateForm( msg.data );65 });66 },67 68 /**69 * Go to upgrade url.70 *71 * @since 4.0372 */73 gotoUpgradeUrl: function() {74 var w = window.open( frmGlobal.app_url + '/api-connect/', '_blank', 'location=no,width=500,height=730,scrollbars=0' );75 w.focus();76 },77 78 updateForm: function( response ) {79 80 // Start spinner.81 var btn = el.btn;82 btn.classList.add( 'frm_loading_button' );83 84 if ( response.url !== '' ) {85 app.showProgress({86 success: true,87 message: 'Installing...'88 });89 var fallback = setTimeout( function() {90 app.showProgress({91 success: true,92 message: 'Installing is taking longer than expected. <a class="frm-install-addon button button-primary frm-button-primary" rel="' + response.url + '" aria-label="Install">Install Now</a>'93 });94 }, 10000 );95 $.ajax({96 type: 'POST',97 url: ajaxurl,98 dataType: 'json',99 data: {100 action: 'frm_connect',101 plugin: response.url,102 nonce: frmGlobal.nonce103 },104 success: function() {105 clearTimeout( fallback );106 app.activateKey( response );107 },108 error: function( xhr, textStatus, e ) {109 clearTimeout( fallback );110 btn.classList.remove( 'frm_loading_button' );111 app.showMessage({112 success: false,113 message: e114 });115 }116 });117 } else if ( response.key !== '' ) {118 app.activateKey( response );119 }120 },121 122 activateKey: function( response ) {123 var btn = el.btn;124 if ( response.key === '' ) {125 btn.classList.remove( 'frm_loading_button' );126 } else {127 app.showProgress({128 success: true,129 message: 'Activating...'130 });131 $.ajax({132 type: 'POST',133 url: ajaxurl,134 dataType: 'json',135 data: {136 action: 'frm_addon_activate',137 license: response.key,138 plugin: 'formidable_pro',139 wpmu: 0,140 nonce: frmGlobal.nonce141 },142 success: function( msg ) {143 btn.classList.remove( 'frm_loading_button' );144 145 if ( msg.success === true ) {146 app.showAuthorized( true );147 }148 149 app.showMessage( msg );150 },151 error: function( xhr, textStatus, e ) {152 btn.classList.remove( 'frm_loading_button' );153 app.showMessage({154 success: false,155 message: e156 });157 }158 });159 45 } 160 46 }, -
formidable/trunk/languages/formidable.pot
r3035860 r3036370 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.8. 1\n"5 "Project-Id-Version: Formidable Forms 6.8.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-02-1 4T18:36:10+00:00\n"12 "POT-Creation-Date: 2024-02-15T14:29:17+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 413 413 #: stripe/controllers/FrmTransLiteSubscriptionsController.php:68 414 414 #: js/admin/style.js:939 415 #: js/formidable_admin.js:4 218415 #: js/formidable_admin.js:4104 416 416 msgid "Cancel" 417 417 msgstr "" … … 1235 1235 #: classes/models/FrmPluginSearch.php:319 1236 1236 #: classes/views/addons/settings.php:31 1237 #: js/formidable_admin.js:6 7391237 #: js/formidable_admin.js:6625 1238 1238 msgid "Activate" 1239 1239 msgstr "" … … 1322 1322 1323 1323 #: classes/controllers/FrmStylesController.php:948 1324 #: js/formidable_admin.js:2 4241324 #: js/formidable_admin.js:2310 1325 1325 msgid "Field Settings" 1326 1326 msgstr "" … … 2459 2459 #: stripe/views/payments/show.php:156 2460 2460 #: stripe/views/subscriptions/show.php:129 2461 #: js/formidable_admin.js:2 4522461 #: js/formidable_admin.js:2338 2462 2462 msgid "Delete" 2463 2463 msgstr "" … … 3931 3931 #: classes/helpers/FrmFormsHelper.php:1758 3932 3932 #: classes/views/form-templates/modals/name-your-form-modal.php:35 3933 #: js/formidable_admin.js:4 2233933 #: js/formidable_admin.js:4109 3934 3934 msgid "Save" 3935 3935 msgstr "" … … 5278 5278 #: classes/views/frm-fields/back-end/inline-modal.php:8 5279 5279 #: classes/views/shared/admin-header.php:71 5280 #: js/formidable_admin.js:8 8195280 #: js/formidable_admin.js:8705 5281 5281 msgid "Close" 5282 5282 msgstr "" … … 5861 5861 #: classes/views/frm-form-actions/form_action.php:32 5862 5862 #: js/admin/style.js:678 5863 #: js/formidable_admin.js:2 4585863 #: js/formidable_admin.js:2344 5864 5864 msgid "Duplicate" 5865 5865 msgstr "" … … 6006 6006 6007 6007 #: classes/views/frm-forms/add_field.php:36 6008 #: js/formidable_admin.js:1 5366009 #: js/formidable_admin.js:1 5416010 #: js/formidable_admin.js:2 3836008 #: js/formidable_admin.js:1422 6009 #: js/formidable_admin.js:1427 6010 #: js/formidable_admin.js:2269 6011 6011 msgid "More Options" 6012 6012 msgstr "" 6013 6013 6014 6014 #: classes/views/frm-forms/add_field.php:38 6015 #: js/formidable_admin.js:1 5286015 #: js/formidable_admin.js:1414 6016 6016 msgid "Toggle More Options Dropdown" 6017 6017 msgstr "" … … 7925 7925 msgstr "" 7926 7926 7927 #: js/formidable_admin.js:1 4877927 #: js/formidable_admin.js:1373 7928 7928 msgid "Set Row Layout" 7929 7929 msgstr "" 7930 7930 7931 #: js/formidable_admin.js:1 4947931 #: js/formidable_admin.js:1380 7932 7932 msgid "Move Field Group" 7933 7933 msgstr "" 7934 7934 7935 #: js/formidable_admin.js:2 4527935 #: js/formidable_admin.js:2338 7936 7936 msgid "Delete Group" 7937 7937 msgstr "" 7938 7938 7939 #: js/formidable_admin.js:2 4587939 #: js/formidable_admin.js:2344 7940 7940 msgid "Duplicate Group" 7941 7941 msgstr "" 7942 7942 7943 7943 #. translators: %1$s: Number of fields that are selected to be deleted. 7944 #: js/formidable_admin.js:3 6787944 #: js/formidable_admin.js:3564 7945 7945 msgid "Are you sure you want to delete these %1$s selected field(s)?" 7946 7946 msgstr "" 7947 7947 7948 #: js/formidable_admin.js:3 9167948 #: js/formidable_admin.js:3802 7949 7949 msgid "Custom layout" 7950 7950 msgstr "" 7951 7951 7952 #: js/formidable_admin.js:3 9397952 #: js/formidable_admin.js:3825 7953 7953 msgid "Break into rows" 7954 7954 msgstr "" 7955 7955 7956 #: js/formidable_admin.js:3 9497956 #: js/formidable_admin.js:3835 7957 7957 msgid "Row Layout" 7958 7958 msgstr "" 7959 7959 7960 #: js/formidable_admin.js:4 2037960 #: js/formidable_admin.js:4089 7961 7961 msgid "Enter number of columns for each field" 7962 7962 msgstr "" 7963 7963 7964 #: js/formidable_admin.js:4 2077964 #: js/formidable_admin.js:4093 7965 7965 msgid "Layouts are based on a 12-column grid system" 7966 7966 msgstr "" 7967 7967 7968 #: js/formidable_admin.js:4 6607968 #: js/formidable_admin.js:4546 7969 7969 msgid "Merge into row" 7970 7970 msgstr "" 7971 7971 7972 #: js/formidable_admin.js:5 9597972 #: js/formidable_admin.js:5845 7973 7973 msgid "Duplicate option value \"%s\" detected" 7974 7974 msgstr "" 7975 7975 7976 #: js/formidable_admin.js:8 8047976 #: js/formidable_admin.js:8690 7977 7977 msgid "Save and Reload" 7978 7978 msgstr "" 7979 7979 7980 #: js/formidable_admin.js:8 9737980 #: js/formidable_admin.js:8859 7981 7981 msgid "Unable to install template" 7982 7982 msgstr "" 7983 7983 7984 #: js/formidable_admin.js:9 6207984 #: js/formidable_admin.js:9506 7985 7985 msgid "Thank you for signing up!" 7986 7986 msgstr "" -
formidable/trunk/readme.txt
r3035860 r3036370 6 6 Tested up to: 6.4.3 7 7 Requires PHP: 5.6 8 Stable tag: 6.8. 18 Stable tag: 6.8.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 443 443 444 444 == Changelog == 445 = 6.8.2 = 446 * Fix: The process of connecting an account to formidableforms.com would fail in some web browsers. 447 445 448 = 6.8.1 = 446 449 * Security: A nonce check was missing on an action for dismissing a call to action on the global settings page.
Note: See TracChangeset
for help on using the changeset viewer.