Calculated Fields Form - Version 1.1.106

Version Description

  • Implements the logarithmic slider.
  • Implements a new attribute in the plugin settings page to disable form revisions.
  • Fixes an issue with pending equations.
Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Calculated Fields Form
Version 1.1.106
Comparing to
See all releases

Code changes from version 1.1.105 to 1.1.106

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://cff.dwbooster.com
4
  Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
5
  Requires at least: 3.0.5
6
  Tested up to: 6.0
7
- Stable tag: 1.1.105
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -965,6 +965,12 @@ A: Please, follow the steps below:
965
 
966
  == Changelog ==
967
 
 
 
 
 
 
 
968
  = 1.1.105 =
969
 
970
  * Implement an experimental control that allows users to record audio and video while filling out the form.
@@ -1011,8 +1017,4 @@ A: Please, follow the steps below:
1011
  = 1.1.97 =
1012
 
1013
  * Reduces the form creation process. It redirects the user to the form settings after creating the form.
1014
- * It is possible to close and open the settings sections to make form editing easier.
1015
-
1016
- = 1.1.96 =
1017
-
1018
- * Fixes a conflict with the latest update of The Events Calendar plugin.
4
  Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
5
  Requires at least: 3.0.5
6
  Tested up to: 6.0
7
+ Stable tag: 1.1.106
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
965
 
966
  == Changelog ==
967
 
968
+ = 1.1.106 =
969
+
970
+ * Implements the logarithmic slider.
971
+ * Implements a new attribute in the plugin settings page to disable form revisions.
972
+ * Fixes an issue with pending equations.
973
+
974
  = 1.1.105 =
975
 
976
  * Implement an experimental control that allows users to record audio and video while filling out the form.
1017
  = 1.1.97 =
1018
 
1019
  * Reduces the form creation process. It redirects the user to the form settings after creating the form.
1020
+ * It is possible to close and open the settings sections to make form editing easier.
 
 
 
 
changelog.txt CHANGED
@@ -1,5 +1,11 @@
1
  == Changelog ==
2
 
 
 
 
 
 
 
3
  = 1.1.105 =
4
 
5
  * Implement an experimental control that allows users to record audio and video while filling out the form.
1
  == Changelog ==
2
 
3
+ = 1.1.106 =
4
+
5
+ * Implements the logarithmic slider.
6
+ * Implements a new attribute in the plugin settings page to disable form revisions.
7
+ * Fixes an issue with pending equations.
8
+
9
  = 1.1.105 =
10
 
11
  * Implement an experimental control that allows users to record audio and video while filling out the form.
config/cpcff_config.cfg.php CHANGED
@@ -8,6 +8,7 @@ define('CP_CFF_PHPVERSION', phpversion());
8
  define('CP_SCHEME', ( is_ssl() ) ? 'https://' : 'http://' );
9
  $GLOBALS['CP_CALCULATEDFIELDSF_DEFAULT_DEFER_SCRIPTS_LOADING'] = (get_option('CP_CFF_LOAD_SCRIPTS',"1") == "1" ? true : false);
10
  define('CP_CALCULATEDFIELDSF_USE_CACHE', 1 );
 
11
  define('CP_CALCULATEDFIELDSF_DEFAULT_vs_use_validation', 'true');
12
  define('CP_CALCULATEDFIELDSF_OPTIMIZATION_PLUGIN', 1);
13
 
8
  define('CP_SCHEME', ( is_ssl() ) ? 'https://' : 'http://' );
9
  $GLOBALS['CP_CALCULATEDFIELDSF_DEFAULT_DEFER_SCRIPTS_LOADING'] = (get_option('CP_CFF_LOAD_SCRIPTS',"1") == "1" ? true : false);
10
  define('CP_CALCULATEDFIELDSF_USE_CACHE', 1 );
11
+ define('CP_CALCULATEDFIELDSF_DISABLE_REVISIONS', 0 );
12
  define('CP_CALCULATEDFIELDSF_DEFAULT_vs_use_validation', 'true');
13
  define('CP_CALCULATEDFIELDSF_OPTIMIZATION_PLUGIN', 1);
14
 
cp_calculatedfieldsf_free.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Calculated Fields Form
4
  Plugin URI: https://cff.dwbooster.com
5
  Description: Create forms with field values calculated based in other form field values.
6
- Version: 1.1.105
7
  Text Domain: calculated-fields-form
8
  Author: CodePeople
9
  Author URI: https://cff.dwbooster.com
@@ -16,7 +16,7 @@ if(!defined('WP_DEBUG') || true != WP_DEBUG)
16
  }
17
 
18
  // Defining main constants
19
- define('CP_CALCULATEDFIELDSF_VERSION', '1.1.105' );
20
  define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
21
  define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
22
  define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
3
  Plugin Name: Calculated Fields Form
4
  Plugin URI: https://cff.dwbooster.com
5
  Description: Create forms with field values calculated based in other form field values.
6
+ Version: 1.1.106
7
  Text Domain: calculated-fields-form
8
  Author: CodePeople
9
  Author URI: https://cff.dwbooster.com
16
  }
17
 
18
  // Defining main constants
19
+ define('CP_CALCULATEDFIELDSF_VERSION', '1.1.106' );
20
  define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
21
  define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
22
  define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
inc/cpcff_admin_int.inc.php CHANGED
@@ -86,20 +86,26 @@ $cpcff_texts_array = CPCFF_AUXILIARY::array_replace_recursive(
86
  <div class="hndle">
87
  <h3 style="padding:5px;display:inline-block;"><span><?php _e( 'Form Builder', 'calculated-fields-form' ); ?></span></h3>
88
  <div class="cff-revisions-container">
89
- <?php _e('Revisions','calculated-fields-form'); ?>
90
- <select name="cff_revision_list">
91
-
92
- <?php
93
- print '<option value="0">'.esc_html(__('Select a revision', 'calculated-fields-form')).'</option>';
94
- $revisions_obj = $form_obj->get_revisions();
95
- $revisions = $revisions_obj->revisions_list();
96
- foreach($revisions as $revision_id => $revision_data)
97
- {
98
- print '<option value="'.esc_attr($revision_id).'">'.esc_html($revision_data['time']).'</option>';
99
- }
100
- ?>
101
- </select>
102
- <input type="button" name="cff_apply_revision" value="<?php print esc_attr('Load Revision', 'calculated-fields-form'); ?>" class="button" style="float:none;" />
 
 
 
 
 
 
103
  <input type="button" name="previewbtn" id="previewbtn2" class="button-primary" value="<?php esc_attr_e( 'Preview', 'calculated-fields-form' ); ?>" onclick="fbuilderjQuery.fbuilder.preview( this );" title="<?php esc_attr_e("Saves the form's structure only, and opens a preview windows", 'calculated-fields-form');?>" />
104
  <input type="button" name="cff_fields_list" class="button-secondary" value="&#9776;" title="<?php esc_attr_e( 'Fields List', 'calculated-fields-form'); ?>" onclick="fbuilderjQuery.fbuilder.printFields();" />
105
  </div>
@@ -244,7 +250,14 @@ $cpcff_texts_array = CPCFF_AUXILIARY::array_replace_recursive(
244
  <p class="submit">
245
  <input type="submit" name="save" id="save2" class="button-primary" value="<?php esc_attr_e( 'Save Changes', 'calculated-fields-form' ); ?>" title="Saves the form's structure and settings and creates a revision" />
246
  <input type="button" name="previewbtn" id="previewbtn" class="button-primary" value="<?php esc_attr_e( 'Preview', 'calculated-fields-form' ); ?>" onclick="fbuilderjQuery.fbuilder.preview( this );" title="Saves the form's structure only, and opens a preview windows" />
247
- | <input type="checkbox" name="cff-revisions-in-preview" <?php if(get_option('CP_CALCULATEDFIELDSF_REVISIONS_IN_PREVIEW', true)) print 'CHECKED'; ?> /><?php _e('Generate revisions in the form preview as well', 'calculated-fields-form'); ?>
 
 
 
 
 
 
 
248
  </p>
249
  <div style="margin-bottom:20px;">
250
  <a href="#metabox_define_texts"><?php _e('Texts definition', 'calculated-fields-form'); ?></a>&nbsp;|&nbsp;
86
  <div class="hndle">
87
  <h3 style="padding:5px;display:inline-block;"><span><?php _e( 'Form Builder', 'calculated-fields-form' ); ?></span></h3>
88
  <div class="cff-revisions-container">
89
+ <?php
90
+ if(get_option('CP_CALCULATEDFIELDSF_DISABLE_REVISIONS', CP_CALCULATEDFIELDSF_DISABLE_REVISIONS) == 0):
91
+ _e('Revisions','calculated-fields-form');
92
+ ?>
93
+ <select name="cff_revision_list">
94
+
95
+ <?php
96
+ print '<option value="0">'.esc_html(__('Select a revision', 'calculated-fields-form')).'</option>';
97
+ $revisions_obj = $form_obj->get_revisions();
98
+ $revisions = $revisions_obj->revisions_list();
99
+ foreach($revisions as $revision_id => $revision_data)
100
+ {
101
+ print '<option value="'.esc_attr($revision_id).'">'.esc_html($revision_data['time']).'</option>';
102
+ }
103
+ ?>
104
+ </select>
105
+ <input type="button" name="cff_apply_revision" value="<?php print esc_attr('Load Revision', 'calculated-fields-form'); ?>" class="button" style="float:none;" />
106
+ <?php
107
+ endif;
108
+ ?>
109
  <input type="button" name="previewbtn" id="previewbtn2" class="button-primary" value="<?php esc_attr_e( 'Preview', 'calculated-fields-form' ); ?>" onclick="fbuilderjQuery.fbuilder.preview( this );" title="<?php esc_attr_e("Saves the form's structure only, and opens a preview windows", 'calculated-fields-form');?>" />
110
  <input type="button" name="cff_fields_list" class="button-secondary" value="&#9776;" title="<?php esc_attr_e( 'Fields List', 'calculated-fields-form'); ?>" onclick="fbuilderjQuery.fbuilder.printFields();" />
111
  </div>
250
  <p class="submit">
251
  <input type="submit" name="save" id="save2" class="button-primary" value="<?php esc_attr_e( 'Save Changes', 'calculated-fields-form' ); ?>" title="Saves the form's structure and settings and creates a revision" />
252
  <input type="button" name="previewbtn" id="previewbtn" class="button-primary" value="<?php esc_attr_e( 'Preview', 'calculated-fields-form' ); ?>" onclick="fbuilderjQuery.fbuilder.preview( this );" title="Saves the form's structure only, and opens a preview windows" />
253
+ <?php
254
+ if(get_option('CP_CALCULATEDFIELDSF_DISABLE_REVISIONS', CP_CALCULATEDFIELDSF_DISABLE_REVISIONS) == 0):
255
+ ?>
256
+ | <input type="checkbox" name="cff-revisions-in-preview" <?php if(get_option('CP_CALCULATEDFIELDSF_REVISIONS_IN_PREVIEW', true)) print 'CHECKED'; ?> />
257
+ <?php
258
+ _e('Generate revisions in the form preview as well', 'calculated-fields-form');
259
+ endif;
260
+ ?>
261
  </p>
262
  <div style="margin-bottom:20px;">
263
  <a href="#metabox_define_texts"><?php _e('Texts definition', 'calculated-fields-form'); ?></a>&nbsp;|&nbsp;
inc/cpcff_admin_int_list.inc.php CHANGED
@@ -91,6 +91,7 @@ else if (!empty($_GET['d']))
91
  {
92
  check_admin_referer( 'cff-update-general-settings', '_cpcff_nonce' );
93
  update_option( 'CP_CFF_LOAD_SCRIPTS', (isset($_GET["scr"]) && $_GET["scr"]=="1"? "0":"1") );
 
94
  update_option( 'CP_CALCULATEDFIELDSF_USE_CACHE', (isset($_GET["jsc"]) && $_GET["jsc"]=="1" ? 1 : 0) );
95
  update_option( 'CP_CALCULATEDFIELDSF_OPTIMIZATION_PLUGIN',(isset($_GET["optm"]) && $_GET["optm"]=="1" ? 1 : 0) );
96
  update_option( 'CP_CALCULATEDFIELDSF_EXCLUDE_CRAWLERS', (isset($_GET["ecr"]) && $_GET["ecr"]=="1" ? 1 : 0) );
@@ -210,13 +211,14 @@ endif;
210
  {
211
  var scr = document.getElementById("ccscriptload").value,
212
  chs = document.getElementById("cccharsets").value,
 
213
  jsc = (document.getElementById("ccjscache").checked) ? 1 : 0,
214
  optm = (document.getElementById("ccoptimizationplugin").checked) ? 1 : 0,
215
  df = (document.getElementById("ccdirectform").checked) ? 1 : 0,
216
  amp = (document.getElementById("ccampform").checked) ? 1 : 0,
217
  ecr = (document.getElementById("ccexcludecrawler").checked) ? 1 : 0;
218
 
219
- document.location = 'admin.php?page=cp_calculated_fields_form&ecr='+ecr+'&ac=st&scr='+scr+'&chs='+chs+'&jsc='+jsc+'&optm='+optm+'&df='+df+'&amp='+amp+'&r='+Math.random()+'&_cpcff_nonce=<?php echo wp_create_nonce( 'cff-update-general-settings' ); ?>';
220
  }
221
  }
222
 
@@ -405,6 +407,8 @@ endif;
405
  ?>
406
  </div>
407
  <br />
 
 
408
  <input type="checkbox" name="ccjscache" id="ccjscache" <?php echo ( get_option( 'CP_CALCULATEDFIELDSF_USE_CACHE', CP_CALCULATEDFIELDSF_USE_CACHE ) ) ? 'CHECKED' : ''; ?> /> <?php _e( 'Activate Javascript Cache', 'calculated-fields-form' ); ?>
409
  <br /><br />
410
  <input type="checkbox" name="ccdirectform" id="ccdirectform" <?php echo ( get_option( 'CP_CALCULATEDFIELDSF_DIRECT_FORM_ACCESS', CP_CALCULATEDFIELDSF_DIRECT_FORM_ACCESS ) ) ? 'CHECKED' : ''; ?> /> <?php _e( 'Allows to access the forms directly', 'calculated-fields-form' ); ?>
91
  {
92
  check_admin_referer( 'cff-update-general-settings', '_cpcff_nonce' );
93
  update_option( 'CP_CFF_LOAD_SCRIPTS', (isset($_GET["scr"]) && $_GET["scr"]=="1"? "0":"1") );
94
+ update_option( 'CP_CALCULATEDFIELDSF_DISABLE_REVISIONS',(isset($_GET["dr"]) && $_GET["dr"]=="1" ? 1 : 0) );
95
  update_option( 'CP_CALCULATEDFIELDSF_USE_CACHE', (isset($_GET["jsc"]) && $_GET["jsc"]=="1" ? 1 : 0) );
96
  update_option( 'CP_CALCULATEDFIELDSF_OPTIMIZATION_PLUGIN',(isset($_GET["optm"]) && $_GET["optm"]=="1" ? 1 : 0) );
97
  update_option( 'CP_CALCULATEDFIELDSF_EXCLUDE_CRAWLERS', (isset($_GET["ecr"]) && $_GET["ecr"]=="1" ? 1 : 0) );
211
  {
212
  var scr = document.getElementById("ccscriptload").value,
213
  chs = document.getElementById("cccharsets").value,
214
+ dr = (document.getElementById("ccdisablerevisions").checked) ? 1 : 0,
215
  jsc = (document.getElementById("ccjscache").checked) ? 1 : 0,
216
  optm = (document.getElementById("ccoptimizationplugin").checked) ? 1 : 0,
217
  df = (document.getElementById("ccdirectform").checked) ? 1 : 0,
218
  amp = (document.getElementById("ccampform").checked) ? 1 : 0,
219
  ecr = (document.getElementById("ccexcludecrawler").checked) ? 1 : 0;
220
 
221
+ document.location = 'admin.php?page=cp_calculated_fields_form&ecr='+ecr+'&ac=st&scr='+scr+'&chs='+chs+'&dr='+dr+'&jsc='+jsc+'&optm='+optm+'&df='+df+'&amp='+amp+'&r='+Math.random()+'&_cpcff_nonce=<?php echo wp_create_nonce( 'cff-update-general-settings' ); ?>';
222
  }
223
  }
224
 
407
  ?>
408
  </div>
409
  <br />
410
+ <input type="checkbox" name="ccdisablerevisions" id="ccdisablerevisions" <?php echo ( get_option( 'CP_CALCULATEDFIELDSF_DISABLE_REVISIONS', CP_CALCULATEDFIELDSF_DISABLE_REVISIONS ) ) ? 'CHECKED' : ''; ?> /> <?php _e( 'Disable Form Revisions', 'calculated-fields-form' ); ?>
411
+ <br /><br />
412
  <input type="checkbox" name="ccjscache" id="ccjscache" <?php echo ( get_option( 'CP_CALCULATEDFIELDSF_USE_CACHE', CP_CALCULATEDFIELDSF_USE_CACHE ) ) ? 'CHECKED' : ''; ?> /> <?php _e( 'Activate Javascript Cache', 'calculated-fields-form' ); ?>
413
  <br /><br />
414
  <input type="checkbox" name="ccdirectform" id="ccdirectform" <?php echo ( get_option( 'CP_CALCULATEDFIELDSF_DIRECT_FORM_ACCESS', CP_CALCULATEDFIELDSF_DIRECT_FORM_ACCESS ) ) ? 'CHECKED' : ''; ?> /> <?php _e( 'Allows to access the forms directly', 'calculated-fields-form' ); ?>
inc/cpcff_form.inc.php CHANGED
@@ -369,7 +369,8 @@ if(!class_exists('CPCFF_FORM'))
369
  (
370
  !isset($params['preview']) ||
371
  get_option('CP_CALCULATEDFIELDSF_REVISIONS_IN_PREVIEW')
372
- )
 
373
  ) $this->_revisions_obj->create_revision();
374
  return $updated_rows;
375
  } // End save_settings
369
  (
370
  !isset($params['preview']) ||
371
  get_option('CP_CALCULATEDFIELDSF_REVISIONS_IN_PREVIEW')
372
+ ) &&
373
+ get_option('CP_CALCULATEDFIELDSF_DISABLE_REVISIONS', CP_CALCULATEDFIELDSF_DISABLE_REVISIONS) == 0
374
  ) $this->_revisions_obj->create_revision();
375
  return $updated_rows;
376
  } // End save_settings
js/fbuilder-pro-public.jquery.js CHANGED
@@ -1,4 +1,4 @@
1
- $.fbuilder['version'] = '1.1.105';
2
  $.fbuilder['controls'] = $.fbuilder['controls'] || {};
3
  $.fbuilder['forms'] = $.fbuilder['forms'] || {};
4
 
1
+ $.fbuilder['version'] = '1.1.106';
2
  $.fbuilder['controls'] = $.fbuilder['controls'] || {};
3
  $.fbuilder['forms'] = $.fbuilder['forms'] || {};
4
 
js/fields-admin/02_fbuilder.fslider.js CHANGED
@@ -26,6 +26,7 @@
26
  max:100,
27
  step:1,
28
  range:false,
 
29
  caption:"{0}",
30
  minCaption:"",
31
  maxCaption:"",
@@ -45,9 +46,14 @@
45
  var v = el.is(':checked');
46
  $( 'div.range' )[ ( v ) ? 'show' : 'hide' ]();
47
  $( 'div.no-range' )[ ( v ) ? 'hide' : 'show' ]();
 
48
  return v;
49
- }
50
- },
 
 
 
 
51
  {s:"#sCaption",e:"change keyup", l:"caption"},
52
  {s:"#sMinCaption",e:"change keyup", l:"minCaption"},
53
  {s:"#sMaxCaption",e:"change keyup", l:"maxCaption"},
@@ -67,6 +73,6 @@
67
  {
68
  return $.fbuilder.showSettings.showExclude(this.exclude) +
69
  $.fbuilder.showSettings.showReadonly(this.readonly) +
70
- '<div><div class="column width30"><label>Min</label><input type="text" name="sMin" id="sMin" value="'+cff_esc_attr(this.min)+'" placeholder="0 by default" class="large"></div><div class="column width30"><label>Max</label><input type="text" name="sMax" id="sMax" value="'+cff_esc_attr(this.max)+'" placeholder="100 by default" class="large"></div><div class="column width30"><label>Step</label><input type="text" name="sStep" id="sStep" value="'+cff_esc_attr(this.step)+'" placeholder="1 by default" class="large"></div><div class="clearer" /></div><div style="margin-bottom:10px;"><i>It is possible to associate other fields in the form with the attributes "min", "max" and "step". Ex: fieldname1</i></div><div><input type="checkbox" name="sRange" id="sRange" '+( ( this.range ) ? 'CHECKED' : '' )+' /> Range slider </div><div><label>Field Caption</label><input class="large" type="text" name="sCaption" id="sCaption" value="'+cff_esc_attr( this.caption )+'"></div><div><label>Min Corner Caption</label><input class="large" type="text" name="sMinCaption" id="sMinCaption" value="'+cff_esc_attr( this.minCaption )+'"></div><div><label>Max Corner Caption</label><input class="large" type="text" name="sMaxCaption" id="sMaxCaption" value="'+cff_esc_attr( this.maxCaption )+'"></div><div><label>Symbol for grouping thousands in the field\'s caption(Ex: 3,000,000)</label><input type="text" name="sThousandSeparator" id="sThousandSeparator" class="large" value="'+cff_esc_attr( this.thousandSeparator )+'" /></div><div><label>Decimals separator symbol (Ex: 25.20)</label><input type="text" name="sCentSeparator" id="sCentSeparator" class="large" value="'+cff_esc_attr( this.centSeparator )+'" /></div>';
71
  }
72
  });
26
  max:100,
27
  step:1,
28
  range:false,
29
+ logarithmic:false,
30
  caption:"{0}",
31
  minCaption:"",
32
  maxCaption:"",
46
  var v = el.is(':checked');
47
  $( 'div.range' )[ ( v ) ? 'show' : 'hide' ]();
48
  $( 'div.no-range' )[ ( v ) ? 'hide' : 'show' ]();
49
+ if(v) $('#sLogarithmic').prop('checked', false).change();
50
  return v;
51
+ }},
52
+ {s:"#sLogarithmic",e:"change", l:"logarithmic", f:function(el){
53
+ var v = el.is(':checked');
54
+ if(v) $('#sRange').prop('checked', false).change();
55
+ return v;
56
+ }},
57
  {s:"#sCaption",e:"change keyup", l:"caption"},
58
  {s:"#sMinCaption",e:"change keyup", l:"minCaption"},
59
  {s:"#sMaxCaption",e:"change keyup", l:"maxCaption"},
73
  {
74
  return $.fbuilder.showSettings.showExclude(this.exclude) +
75
  $.fbuilder.showSettings.showReadonly(this.readonly) +
76
+ '<div><div class="column width30"><label>Min</label><input type="text" name="sMin" id="sMin" value="'+cff_esc_attr(this.min)+'" placeholder="0 by default" class="large"></div><div class="column width30"><label>Max</label><input type="text" name="sMax" id="sMax" value="'+cff_esc_attr(this.max)+'" placeholder="100 by default" class="large"></div><div class="column width30"><label>Step</label><input type="text" name="sStep" id="sStep" value="'+cff_esc_attr(this.step)+'" placeholder="1 by default" class="large"></div><div class="clearer" /></div><div style="margin-bottom:10px;"><i>It is possible to associate other fields in the form with the attributes "min", "max" and "step". Ex: fieldname1</i></div><label><input type="checkbox" name="sRange" id="sRange" '+( ( this.range ) ? 'CHECKED' : '' )+' /> Range slider </label><label class="no-range"><input type="checkbox" name="sLogarithmic" id="sLogarithmic" '+( ( this.logarithmic ) ? 'CHECKED' : '' )+' /> Logarithmic slider </label><div><label>Field Caption</label><input class="large" type="text" name="sCaption" id="sCaption" value="'+cff_esc_attr( this.caption )+'"></div><div><label>Min Corner Caption</label><input class="large" type="text" name="sMinCaption" id="sMinCaption" value="'+cff_esc_attr( this.minCaption )+'"></div><div><label>Max Corner Caption</label><input class="large" type="text" name="sMaxCaption" id="sMaxCaption" value="'+cff_esc_attr( this.maxCaption )+'"></div><div><label>Symbol for grouping thousands in the field\'s caption(Ex: 3,000,000)</label><input type="text" name="sThousandSeparator" id="sThousandSeparator" class="large" value="'+cff_esc_attr( this.thousandSeparator )+'" /></div><div><label>Decimals separator symbol (Ex: 25.20)</label><input type="text" name="sCentSeparator" id="sCentSeparator" class="large" value="'+cff_esc_attr( this.centSeparator )+'" /></div>';
77
  }
78
  });
js/fields-public/02_fbuilder.fslider.js CHANGED
@@ -19,9 +19,37 @@
19
  max:100,
20
  step:1,
21
  range:false,
 
22
  minCaption:"",
23
  maxCaption:"",
24
  caption:"{0}",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  _setThousandsSeparator : function(v)
26
  {
27
  v = $.fbuilder.parseVal(v, this.thousandSeparator, this.centSeparator);
@@ -53,12 +81,12 @@
53
  return v;
54
  }
55
  },
56
- _setFieldValue:function(nochange)
57
  {
58
  var me = this;
59
  if(me.range)
60
  {
61
- var values = $('#'+me.name+'_slider').slider('values'),
62
  vl = values[0], vr = values[1],
63
  vlf = me._setThousandsSeparator(vl),
64
  vrf = me._setThousandsSeparator(vr);
@@ -74,8 +102,9 @@
74
  }
75
  else
76
  {
77
- var v = $('#'+me.name+'_slider').slider('value'),
78
  vf = me._setThousandsSeparator(v);
 
79
  $('#'+me.name).val(v).attr('vt', vf);
80
  $('#'+me.name+'_component_center').val(vf);
81
  $('#'+me.name+'_caption').html(
@@ -144,10 +173,11 @@
144
  if(isNaN(v2)) v2 = 0;
145
  }
146
  $('#'+me.name+'_slider').slider(
147
- ((v != undefined) ? 'value' : 'values'),
148
- ((v != undefined) ? stepRound(v*1) : [stepRound(Math.min(v1*1,v2*1)), stepRound(Math.max(v1*1,v2*1))])
149
- );
150
- me._setFieldValue();}, t);
 
151
  });
152
  return '<div class="slider-type-'+c+'-component"><input aria-label="'+cff_esc_attr(me.title)+'" id="'+me.name+'_component_'+c+'" class="large" type="text" value="'+cff_esc_attr(predefined)+'" '+((me.readonly) ? 'readonly' : '')+' /></div>';
153
  };
@@ -253,9 +283,15 @@
253
  opt['slide'] = opt['stop'] = (function(e){
254
  return function(event, ui)
255
  {
256
- if(typeof ui.value != 'undefined') $(this).slider('value', ui.value);
257
- if(typeof ui.values != 'undefined') $(this).slider('values', ui.values);
258
- e._setFieldValue();
 
 
 
 
 
 
259
  }
260
  })(me);
261
  $('#'+this.name+'_slider').slider(opt);
@@ -276,8 +312,8 @@
276
  try{ v = JSON.parse(v); }catch(err){}
277
  try{
278
  $('[name="'+this.name+'"]').val(v);
279
- $('#'+this.name+'_slider').slider((($.isArray(v)) ? 'values' : 'value'), v);
280
- this._setFieldValue(nochange);
281
  }catch(err){}
282
  }
283
  });
19
  max:100,
20
  step:1,
21
  range:false,
22
+ logarithmic:false,
23
  minCaption:"",
24
  maxCaption:"",
25
  caption:"{0}",
26
+ _expon : function(v)
27
+ {
28
+ if(v == 0) return v;
29
+ var el = $('#'+this.name+'_slider'),
30
+ step = el.slider('option', 'step'),
31
+ min = Math.max(el.slider('option', 'min'), step),
32
+ max = el.slider('option', 'max'),
33
+
34
+ minv = Math.log(Math.max(min, 0.1)),
35
+ maxv = Math.log(max),
36
+ scale = (maxv - minv) / (max - min);
37
+
38
+ return Math.round( Math.exp(minv + scale * (v - min))/step ) * step;
39
+ },
40
+ _inverse : function(v)
41
+ {
42
+ var el = $('#'+this.name+'_slider'),
43
+ min = el.slider('option', 'min'),
44
+ max = el.slider('option', 'max'),
45
+ step = el.slider('option', 'step'),
46
+
47
+ minv = Math.log(Math.max(min, 0.1)),
48
+ maxv = Math.log(max),
49
+ scale = (maxv - minv) / (max - min);
50
+
51
+ return Math.round( ( ( Math.log(v) - minv ) / scale + min ) / step )*step;
52
+ },
53
  _setThousandsSeparator : function(v)
54
  {
55
  v = $.fbuilder.parseVal(v, this.thousandSeparator, this.centSeparator);
81
  return v;
82
  }
83
  },
84
+ _setFieldValue:function(val, nochange)
85
  {
86
  var me = this;
87
  if(me.range)
88
  {
89
+ var values = ( typeof val != 'undefined' && val !== null ) ? val : $('#'+me.name+'_slider').slider('values'),
90
  vl = values[0], vr = values[1],
91
  vlf = me._setThousandsSeparator(vl),
92
  vrf = me._setThousandsSeparator(vr);
102
  }
103
  else
104
  {
105
+ var v = ( typeof val != 'undefined' && val !== null ) ? val : $('#'+me.name+'_slider').slider('value'),
106
  vf = me._setThousandsSeparator(v);
107
+
108
  $('#'+me.name).val(v).attr('vt', vf);
109
  $('#'+me.name+'_component_center').val(vf);
110
  $('#'+me.name+'_caption').html(
173
  if(isNaN(v2)) v2 = 0;
174
  }
175
  $('#'+me.name+'_slider').slider(
176
+ ((v != undefined) ? 'value' : 'values'),
177
+ ((v != undefined) ? (me.logarithmic ? me._inverse(v*1) : stepRound(v*1)) : [stepRound(Math.min(v1*1,v2*1)), stepRound(Math.max(v1*1,v2*1))])
178
+ );
179
+ me._setFieldValue(me.logarithmic ? v : null);
180
+ }, t);
181
  });
182
  return '<div class="slider-type-'+c+'-component"><input aria-label="'+cff_esc_attr(me.title)+'" id="'+me.name+'_component_'+c+'" class="large" type="text" value="'+cff_esc_attr(predefined)+'" '+((me.readonly) ? 'readonly' : '')+' /></div>';
183
  };
283
  opt['slide'] = opt['stop'] = (function(e){
284
  return function(event, ui)
285
  {
286
+ var v = (typeof ui.value != 'undefined') ? ui.value : ui.values;
287
+
288
+ if ( me.logarithmic ) {
289
+ v = me._expon(v);
290
+ e._setFieldValue(v);
291
+ } else {
292
+ $(this).slider( Array.isArray(v) ? 'values' : 'value', v);
293
+ e._setFieldValue();
294
+ }
295
  }
296
  })(me);
297
  $('#'+this.name+'_slider').slider(opt);
312
  try{ v = JSON.parse(v); }catch(err){}
313
  try{
314
  $('[name="'+this.name+'"]').val(v);
315
+ $('#'+this.name+'_slider').slider((($.isArray(v)) ? 'values' : 'value'), (this.logarithmic ? this._inverse(v) : v) );
316
+ this._setFieldValue(v, nochange);
317
  }catch(err){}
318
  }
319
  });
js/fields-public/fbuilder.fcalculated.js CHANGED
@@ -497,12 +497,25 @@
497
  },
498
  processQueue : function(fSec)
499
  {
500
- if(fSec in this.processing_queue && this.processing_queue[fSec]) return;
501
- this.processing_queue[fSec] = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
502
 
503
- if(typeof this.queued_equations[fSec] != 'undefined')
504
  {
505
- var queue = this.queued_equations[fSec], eq_obj;
506
  while(queue.length)
507
  {
508
  eq_obj = queue.shift();
@@ -511,7 +524,7 @@
511
  result = _calculate(eq_obj.equation, eq_obj.identifier, eq_obj.result),
512
  bk = field.data('bk');
513
 
514
- field.val((result !== false) ? this.format(result, eq_obj.resultField.configuration()) : '');
515
  if(bk != field.val())
516
  {
517
  field.trigger('calcualtedfield_changed');
@@ -521,8 +534,8 @@
521
  }
522
  }
523
 
524
- this.processing_queue[fSec] = false;
525
- if(!this.thereIsPending(fSec)) $(document).trigger('equationsQueueEmpty', [fSec]);
526
  },
527
  format : function(value, config)
528
  {
497
  },
498
  processQueue : function(fSec)
499
  {
500
+ var me = this;
501
+ if(fSec in me.processing_queue && me.processing_queue[fSec])
502
+ {
503
+ setTimeout(
504
+ (function ( fSec ) {
505
+ if(fSec in me.processing_queue && me.processing_queue[fSec]) {
506
+ me.processing_queue[fSec] = false;
507
+ me.processQueue(fSec);
508
+ }
509
+ })(fSec),
510
+ (typeof CFF_PROCESS_QUEUE_INTERVAL != 'undefined') ? CFF_PROCESS_QUEUE_INTERVAL : 3000
511
+ );
512
+ return;
513
+ }
514
+ me.processing_queue[fSec] = true;
515
 
516
+ if(typeof me.queued_equations[fSec] != 'undefined')
517
  {
518
+ var queue = me.queued_equations[fSec], eq_obj;
519
  while(queue.length)
520
  {
521
  eq_obj = queue.shift();
524
  result = _calculate(eq_obj.equation, eq_obj.identifier, eq_obj.result),
525
  bk = field.data('bk');
526
 
527
+ field.val((result !== false) ? me.format(result, eq_obj.resultField.configuration()) : '');
528
  if(bk != field.val())
529
  {
530
  field.trigger('calcualtedfield_changed');
534
  }
535
  }
536
 
537
+ me.processing_queue[fSec] = false;
538
+ if(!me.thereIsPending(fSec)) $(document).trigger('equationsQueueEmpty', [fSec]);
539
  },
540
  format : function(value, config)
541
  {
languages/calculated-fields-form-en_US.mo CHANGED
Binary file
languages/calculated-fields-form-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2022-08-10 02:26+0200\n"
5
- "PO-Revision-Date: 2022-08-10 02:26+0200\n"
6
  "Last-Translator: CodePeople\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -41,7 +41,7 @@ msgstr ""
41
  msgid "Settings saved"
42
  msgstr ""
43
 
44
- #: inc/cpcff_admin_int.inc.php:50 inc/cpcff_admin_int_list.inc.php:156
45
  #: inc/cpcff_page_builders.inc.php:185
46
  #: pagebuilders/beaverbuilder/cff/cff/cff.php:9
47
  #: pagebuilders/beaverbuilder/cff/cff/cff.php:11
@@ -64,7 +64,7 @@ msgstr ""
64
  msgid "Back to items list..."
65
  msgstr ""
66
 
67
- #: inc/cpcff_admin_int.inc.php:70 inc/cpcff_admin_int.inc.php:226
68
  msgid "Form Settings"
69
  msgstr ""
70
 
@@ -82,28 +82,28 @@ msgstr ""
82
  msgid "Form Builder"
83
  msgstr ""
84
 
85
- #: inc/cpcff_admin_int.inc.php:89
86
  msgid "Revisions"
87
  msgstr ""
88
 
89
- #: inc/cpcff_admin_int.inc.php:93
90
  msgid "Select a revision"
91
  msgstr ""
92
 
93
- #: inc/cpcff_admin_int.inc.php:103 inc/cpcff_admin_int.inc.php:246
94
- #: inc/cpcff_admin_int.inc.php:641
95
  msgid "Preview"
96
  msgstr ""
97
 
98
- #: inc/cpcff_admin_int.inc.php:103
99
  msgid "Saves the form's structure only, and opens a preview windows"
100
  msgstr ""
101
 
102
- #: inc/cpcff_admin_int.inc.php:104
103
  msgid "Fields List"
104
  msgstr ""
105
 
106
- #: inc/cpcff_admin_int.inc.php:115
107
  msgid ""
108
  "If the form is not loading in the public website, go to the settings page of "
109
  "the plugin through the menu option: \"Settings/Calculated Fields Form\", "
@@ -111,7 +111,7 @@ msgid ""
111
  "press the \"Update\" button."
112
  msgstr ""
113
 
114
- #: inc/cpcff_admin_int.inc.php:115
115
  msgid ""
116
  "If you need also the form to be sent to the server side for processing (for "
117
  "example to deliver emails) then the <a href=\"https://cff.dwbooster.com/"
@@ -119,145 +119,145 @@ msgid ""
119
  "required."
120
  msgstr ""
121
 
122
- #: inc/cpcff_admin_int.inc.php:132
123
  msgid ""
124
  "The action will load the revision selected, the data are not stored will be "
125
  "lose. Do you want continue?"
126
  msgstr ""
127
 
128
- #: inc/cpcff_admin_int.inc.php:189
129
  msgid ""
130
  "These features aren't available in this version. Do you want to open the "
131
  "plugin's page to check other versions?"
132
  msgstr ""
133
 
134
- #: inc/cpcff_admin_int.inc.php:224
135
  msgid "Add a Field"
136
  msgstr ""
137
 
138
- #: inc/cpcff_admin_int.inc.php:225
139
  msgid "Field Settings"
140
  msgstr ""
141
 
142
- #: inc/cpcff_admin_int.inc.php:245 inc/cpcff_admin_int.inc.php:370
143
- #: inc/cpcff_admin_int.inc.php:685
144
  msgid "Save Changes"
145
  msgstr ""
146
 
147
- #: inc/cpcff_admin_int.inc.php:247
148
  msgid "Generate revisions in the form preview as well"
149
  msgstr ""
150
 
151
- #: inc/cpcff_admin_int.inc.php:250
152
  msgid "Texts definition"
153
  msgstr ""
154
 
155
- #: inc/cpcff_admin_int.inc.php:251
156
  msgid "Error texts"
157
  msgstr ""
158
 
159
- #: inc/cpcff_admin_int.inc.php:252
160
  msgid "General payment settings"
161
  msgstr ""
162
 
163
- #: inc/cpcff_admin_int.inc.php:253
164
  msgid "PayPal integration"
165
  msgstr ""
166
 
167
- #: inc/cpcff_admin_int.inc.php:254
168
  msgid "Notification email"
169
  msgstr ""
170
 
171
- #: inc/cpcff_admin_int.inc.php:255
172
  msgid "Email copy to user"
173
  msgstr ""
174
 
175
- #: inc/cpcff_admin_int.inc.php:256
176
  msgid "Captcha settings"
177
  msgstr ""
178
 
179
- #: inc/cpcff_admin_int.inc.php:259
180
  msgid "Define Texts"
181
  msgstr ""
182
 
183
- #: inc/cpcff_admin_int.inc.php:263
184
  msgid "Previous button label (text)"
185
  msgstr ""
186
 
187
- #: inc/cpcff_admin_int.inc.php:267
188
  msgid "Next button label (text)"
189
  msgstr ""
190
 
191
- #: inc/cpcff_admin_int.inc.php:272
192
  msgid ""
193
  "- The styles can be applied into any of the CSS files of your theme or into "
194
  "the CSS file <em>\"calculated-fields-form\\css\\stylepublic.css\"</em>."
195
  msgstr ""
196
 
197
- #: inc/cpcff_admin_int.inc.php:273
198
  msgid ""
199
  "- For general CSS styles modifications to the form and samples <a href="
200
  "\"https://cff.dwbooster.com/faq#q82\" target=\"_blank\">check this FAQ</a>."
201
  msgstr ""
202
 
203
- #: inc/cpcff_admin_int.inc.php:291 inc/cpcff_admin_int.inc.php:355
204
- #: inc/cpcff_admin_int.inc.php:442 inc/cpcff_admin_int.inc.php:516
205
- #: inc/cpcff_admin_int.inc.php:565 inc/cpcff_admin_int.inc.php:607
206
- #: inc/cpcff_admin_int.inc.php:674
207
  msgid "Up to form structure"
208
  msgstr ""
209
 
210
- #: inc/cpcff_admin_int.inc.php:296
211
  msgid "Validation Settings"
212
  msgstr ""
213
 
214
- #: inc/cpcff_admin_int.inc.php:300
215
  msgid "\"is required\" text"
216
  msgstr ""
217
 
218
- #: inc/cpcff_admin_int.inc.php:304
219
  msgid "\"is email\" text"
220
  msgstr ""
221
 
222
- #: inc/cpcff_admin_int.inc.php:308
223
  msgid "\"is valid captcha\" text"
224
  msgstr ""
225
 
226
- #: inc/cpcff_admin_int.inc.php:313
227
  msgid "\"is valid date (mm/dd/yyyy)\" text"
228
  msgstr ""
229
 
230
- #: inc/cpcff_admin_int.inc.php:317
231
  msgid "\"is valid date (dd/mm/yyyy)\" text"
232
  msgstr ""
233
 
234
- #: inc/cpcff_admin_int.inc.php:321
235
  msgid "\"is number\" text"
236
  msgstr ""
237
 
238
- #: inc/cpcff_admin_int.inc.php:325
239
  msgid "\"only digits\" text"
240
  msgstr ""
241
 
242
- #: inc/cpcff_admin_int.inc.php:329
243
  msgid "\"under maximum\" text"
244
  msgstr ""
245
 
246
- #: inc/cpcff_admin_int.inc.php:333
247
  msgid "\"over minimum\" text"
248
  msgstr ""
249
 
250
- #: inc/cpcff_admin_int.inc.php:360
251
  msgid "Note"
252
  msgstr ""
253
 
254
- #: inc/cpcff_admin_int.inc.php:362
255
  msgid ""
256
  "To display the form in a post/page, enter your shortcode in the post/page "
257
  "content:"
258
  msgstr ""
259
 
260
- #: inc/cpcff_admin_int.inc.php:364
261
  msgid ""
262
  "The CFF plugin implements widgets and blocks to allow inserting the form "
263
  "visually with the most popular page builders such as Gutenberg Editor, "
@@ -265,306 +265,306 @@ msgid ""
265
  "Divi, and for the other page builders insert the shortcode directly."
266
  msgstr ""
267
 
268
- #: inc/cpcff_admin_int.inc.php:373 inc/cpcff_admin_int.inc.php:688
269
- #: inc/cpcff_admin_int_list.inc.php:432
270
  msgid "Request Custom Modifications"
271
  msgstr ""
272
 
273
- #: inc/cpcff_admin_int.inc.php:373 inc/cpcff_admin_int.inc.php:688
274
- #: inc/cpcff_admin_int_list.inc.php:432 inc/cpcff_main.inc.php:224
275
  msgid "Help"
276
  msgstr ""
277
 
278
- #: inc/cpcff_admin_int.inc.php:380
279
  msgid ""
280
  "The following features are available in the commercial version of the <a "
281
  "href=\"https://cff.dwbooster.com/download\" target=\"_blank\" style=\"text-"
282
  "decoration:none;\">\"Calculated Fields Form\"</a>"
283
  msgstr ""
284
 
285
- #: inc/cpcff_admin_int.inc.php:381
286
  msgid "Pay only ONCE, use it FOREVER"
287
  msgstr ""
288
 
289
- #: inc/cpcff_admin_int.inc.php:390
290
  msgid "Form Processing and Payment Settings"
291
  msgstr ""
292
 
293
- #: inc/cpcff_admin_int.inc.php:394
294
  msgid "Payment Settings"
295
  msgstr ""
296
 
297
- #: inc/cpcff_admin_int.inc.php:399
298
  msgid "Request cost"
299
  msgstr ""
300
 
301
- #: inc/cpcff_admin_int.inc.php:404
302
  msgid "Currency"
303
  msgstr ""
304
 
305
- #: inc/cpcff_admin_int.inc.php:411
306
  msgid "Base amount"
307
  msgstr ""
308
 
309
- #: inc/cpcff_admin_int.inc.php:412
310
  msgid ""
311
  "Minimum amount to charge. If the final price is lesser than this number, the "
312
  "base amount will be applied."
313
  msgstr ""
314
 
315
- #: inc/cpcff_admin_int.inc.php:417
316
  msgid "Paypal product name"
317
  msgstr ""
318
 
319
- #: inc/cpcff_admin_int.inc.php:422
320
  msgid "Discount Codes"
321
  msgstr ""
322
 
323
- #: inc/cpcff_admin_int.inc.php:424
324
  msgid "This feature isn't available in this version."
325
  msgstr ""
326
 
327
- #: inc/cpcff_admin_int.inc.php:427
328
  msgid "Add new discount code"
329
  msgstr ""
330
 
331
- #: inc/cpcff_admin_int.inc.php:429
332
  msgid "Code"
333
  msgstr ""
334
 
335
- #: inc/cpcff_admin_int.inc.php:430
336
  msgid "Discount"
337
  msgstr ""
338
 
339
- #: inc/cpcff_admin_int.inc.php:431
340
  msgid "Percent"
341
  msgstr ""
342
 
343
- #: inc/cpcff_admin_int.inc.php:432
344
  msgid "Fixed Value"
345
  msgstr ""
346
 
347
- #: inc/cpcff_admin_int.inc.php:435
348
  msgid "Valid until"
349
  msgstr ""
350
 
351
- #: inc/cpcff_admin_int.inc.php:436
352
  msgid "Add"
353
  msgstr ""
354
 
355
- #: inc/cpcff_admin_int.inc.php:438
356
  msgid "Note: Expiration date based in server time. Server time now is"
357
  msgstr ""
358
 
359
- #: inc/cpcff_admin_int.inc.php:447
360
  msgid "Paypal Payment Configuration"
361
  msgstr ""
362
 
363
- #: inc/cpcff_admin_int.inc.php:452
364
  msgid "Enable Paypal Payments?"
365
  msgstr ""
366
 
367
- #: inc/cpcff_admin_int.inc.php:454 inc/cpcff_admin_int.inc.php:542
368
- #: inc/cpcff_admin_int.inc.php:580 inc/cpcff_admin_int.inc.php:621
369
  msgid "No"
370
  msgstr ""
371
 
372
- #: inc/cpcff_admin_int.inc.php:456
373
  msgid ""
374
  "Note: If \"Optional\" is selected, a radiobutton will appear in the form to "
375
  "select if the payment will be made with PayPal or not."
376
  msgstr ""
377
 
378
- #: inc/cpcff_admin_int.inc.php:458
379
  msgid "Label for the \"<strong>Pay with PayPal</strong>\" option"
380
  msgstr ""
381
 
382
- #: inc/cpcff_admin_int.inc.php:464
383
  msgid "Paypal Mode"
384
  msgstr ""
385
 
386
- #: inc/cpcff_admin_int.inc.php:466
387
  msgid "Production - real payments processed"
388
  msgstr ""
389
 
390
- #: inc/cpcff_admin_int.inc.php:467
391
  msgid "SandBox - PayPal testing sandbox area"
392
  msgstr ""
393
 
394
- #: inc/cpcff_admin_int.inc.php:473
395
  msgid "Paypal email"
396
  msgstr ""
397
 
398
- #: inc/cpcff_admin_int.inc.php:478
399
  msgid "A $0 amount to pay means"
400
  msgstr ""
401
 
402
- #: inc/cpcff_admin_int.inc.php:480
403
  msgid "Let the user enter any amount at PayPal (ex: for a donation)"
404
  msgstr ""
405
 
406
- #: inc/cpcff_admin_int.inc.php:481
407
  msgid "Don't require any payment. Form is submitted skiping the PayPal page."
408
  msgstr ""
409
 
410
- #: inc/cpcff_admin_int.inc.php:487
411
  msgid "Paypal language"
412
  msgstr ""
413
 
414
- #: inc/cpcff_admin_int.inc.php:492
415
  msgid "Payment frequency"
416
  msgstr ""
417
 
418
- #: inc/cpcff_admin_int.inc.php:496
419
  msgid "One time payment (default option, user is billed only once)"
420
  msgstr ""
421
 
422
- #: inc/cpcff_admin_int.inc.php:497
423
  msgid "Bill the user every 1 month"
424
  msgstr ""
425
 
426
- #: inc/cpcff_admin_int.inc.php:498
427
  msgid "Bill the user every 3 months"
428
  msgstr ""
429
 
430
- #: inc/cpcff_admin_int.inc.php:499
431
  msgid "Bill the user every 6 months"
432
  msgstr ""
433
 
434
- #: inc/cpcff_admin_int.inc.php:500
435
  msgid "Bill the user every 12 months"
436
  msgstr ""
437
 
438
- #: inc/cpcff_admin_int.inc.php:505
439
  msgid "Paypal prompt buyers for shipping address"
440
  msgstr ""
441
 
442
- #: inc/cpcff_admin_int.inc.php:509
443
  msgid "Do not prompt for an address"
444
  msgstr ""
445
 
446
- #: inc/cpcff_admin_int.inc.php:510
447
  msgid "Prompt for an address, but do not require one"
448
  msgstr ""
449
 
450
- #: inc/cpcff_admin_int.inc.php:511
451
  msgid "Prompt for an address and require one"
452
  msgstr ""
453
 
454
- #: inc/cpcff_admin_int.inc.php:521
455
  msgid "Form Processing / Email Settings"
456
  msgstr ""
457
 
458
- #: inc/cpcff_admin_int.inc.php:525
459
  msgid "\"From\" email"
460
  msgstr ""
461
 
462
- #: inc/cpcff_admin_int.inc.php:526
463
  msgid ""
464
  "This email is required if the \"From fixed email address\" option is "
465
  "selected, or it is enabled the email copy to the user."
466
  msgstr ""
467
 
468
- #: inc/cpcff_admin_int.inc.php:529
469
  msgid "Destination emails (comma separated)"
470
  msgstr ""
471
 
472
- #: inc/cpcff_admin_int.inc.php:533 inc/cpcff_admin_int.inc.php:589
473
  msgid "Email subject"
474
  msgstr ""
475
 
476
- #: inc/cpcff_admin_int.inc.php:537
477
  msgid "Include additional information?"
478
  msgstr ""
479
 
480
- #: inc/cpcff_admin_int.inc.php:541 inc/cpcff_admin_int.inc.php:579
481
- #: inc/cpcff_admin_int.inc.php:620
482
  msgid "Yes"
483
  msgstr ""
484
 
485
- #: inc/cpcff_admin_int.inc.php:543
486
  msgid ""
487
  "If the \"No\" option is selected the plugin won't capture the IP address of "
488
  "users."
489
  msgstr ""
490
 
491
- #: inc/cpcff_admin_int.inc.php:547
492
  msgid "Thank you page (after sending the message)"
493
  msgstr ""
494
 
495
- #: inc/cpcff_admin_int.inc.php:551 inc/cpcff_admin_int.inc.php:593
496
  msgid "Email format?"
497
  msgstr ""
498
 
499
- #: inc/cpcff_admin_int.inc.php:555 inc/cpcff_admin_int.inc.php:597
500
  msgid "Plain Text (default)"
501
  msgstr ""
502
 
503
- #: inc/cpcff_admin_int.inc.php:556 inc/cpcff_admin_int.inc.php:598
504
  msgid "HTML (use html in the textarea below)"
505
  msgstr ""
506
 
507
- #: inc/cpcff_admin_int.inc.php:561 inc/cpcff_admin_int.inc.php:603
508
  msgid "Message"
509
  msgstr ""
510
 
511
- #: inc/cpcff_admin_int.inc.php:571
512
  msgid "Email Copy to User"
513
  msgstr ""
514
 
515
- #: inc/cpcff_admin_int.inc.php:575
516
  msgid "Send confirmation/thank you message to user?"
517
  msgstr ""
518
 
519
- #: inc/cpcff_admin_int.inc.php:585
520
  msgid "Email field on the form"
521
  msgstr ""
522
 
523
- #: inc/cpcff_admin_int.inc.php:612
524
  msgid "Captcha Verification"
525
  msgstr ""
526
 
527
- #: inc/cpcff_admin_int.inc.php:616
528
  msgid "Use Captcha Verification?"
529
  msgstr ""
530
 
531
- #: inc/cpcff_admin_int.inc.php:627
532
  msgid "Width"
533
  msgstr ""
534
 
535
- #: inc/cpcff_admin_int.inc.php:629
536
  msgid "Height"
537
  msgstr ""
538
 
539
- #: inc/cpcff_admin_int.inc.php:631
540
  msgid "Chars"
541
  msgstr ""
542
 
543
- #: inc/cpcff_admin_int.inc.php:636
544
  msgid "Min font size"
545
  msgstr ""
546
 
547
- #: inc/cpcff_admin_int.inc.php:638
548
  msgid "Max font size"
549
  msgstr ""
550
 
551
- #: inc/cpcff_admin_int.inc.php:643
552
  msgid "security code"
553
  msgstr ""
554
 
555
- #: inc/cpcff_admin_int.inc.php:649
556
  msgid "Noise"
557
  msgstr ""
558
 
559
- #: inc/cpcff_admin_int.inc.php:651
560
  msgid "Noise Length"
561
  msgstr ""
562
 
563
- #: inc/cpcff_admin_int.inc.php:656
564
  msgid "Background"
565
  msgstr ""
566
 
567
- #: inc/cpcff_admin_int.inc.php:663
568
  msgid "Font"
569
  msgstr ""
570
 
@@ -592,223 +592,227 @@ msgstr ""
592
  msgid "Duplicate/Clone Error, the form cannot be cloned"
593
  msgstr ""
594
 
595
- #: inc/cpcff_admin_int_list.inc.php:138
596
  msgid "Troubleshoot settings updated"
597
  msgstr ""
598
 
599
- #: inc/cpcff_admin_int_list.inc.php:201
600
  msgid "Are you sure you want to delete this item?"
601
  msgstr ""
602
 
603
- #: inc/cpcff_admin_int_list.inc.php:209
604
  msgid "Are you sure you want to update these settings?"
605
  msgstr ""
606
 
607
- #: inc/cpcff_admin_int_list.inc.php:233
608
  msgid ""
609
  "Are you sure you want to modify existing forms?\\nWe recommend modifying the "
610
  "forms one by one."
611
  msgstr ""
612
 
613
- #: inc/cpcff_admin_int_list.inc.php:242
614
  msgid "Forms and Settings"
615
  msgstr ""
616
 
617
- #: inc/cpcff_admin_int_list.inc.php:243 inc/cpcff_admin_int_list.inc.php:367
618
  msgid "Marketplace"
619
  msgstr ""
620
 
621
- #: inc/cpcff_admin_int_list.inc.php:261
622
  msgid "Form Categories"
623
  msgstr ""
624
 
625
- #: inc/cpcff_admin_int_list.inc.php:263
626
  msgid "All forms"
627
  msgstr ""
628
 
629
- #: inc/cpcff_admin_int_list.inc.php:275
630
  msgid "Form List / Items List"
631
  msgstr ""
632
 
633
- #: inc/cpcff_admin_int_list.inc.php:279
634
  msgid "in"
635
  msgstr ""
636
 
637
- #: inc/cpcff_admin_int_list.inc.php:279
638
  msgid "category"
639
  msgstr ""
640
 
641
- #: inc/cpcff_admin_int_list.inc.php:286
642
  msgid "ID"
643
  msgstr ""
644
 
645
- #: inc/cpcff_admin_int_list.inc.php:287
646
  msgid "Form Name"
647
  msgstr ""
648
 
649
- #: inc/cpcff_admin_int_list.inc.php:288
650
  msgid "Options"
651
  msgstr ""
652
 
653
- #: inc/cpcff_admin_int_list.inc.php:289
654
  msgid "Category/Shortcode"
655
  msgstr ""
656
 
657
- #: inc/cpcff_admin_int_list.inc.php:302 inc/cpcff_admin_int_list.inc.php:361
658
  msgid "Update"
659
  msgstr ""
660
 
661
- #: inc/cpcff_admin_int_list.inc.php:303 inc/cpcff_main.inc.php:222
662
  msgid "Settings"
663
  msgstr ""
664
 
665
- #: inc/cpcff_admin_int_list.inc.php:304
666
  msgid "Messages"
667
  msgstr ""
668
 
669
- #: inc/cpcff_admin_int_list.inc.php:305
670
  msgid "Clone"
671
  msgstr ""
672
 
673
- #: inc/cpcff_admin_int_list.inc.php:306
674
  msgid "Delete"
675
  msgstr ""
676
 
677
- #: inc/cpcff_admin_int_list.inc.php:308
678
  msgid "Category: "
679
  msgstr ""
680
 
681
- #: inc/cpcff_admin_int_list.inc.php:319
682
  msgid "New Form"
683
  msgstr ""
684
 
685
- #: inc/cpcff_admin_int_list.inc.php:322
686
  msgid "Item Name"
687
  msgstr ""
688
 
689
- #: inc/cpcff_admin_int_list.inc.php:324
690
  msgid "Category"
691
  msgstr ""
692
 
693
- #: inc/cpcff_admin_int_list.inc.php:331
694
  msgid "Create Form"
695
  msgstr ""
696
 
697
- #: inc/cpcff_admin_int_list.inc.php:338
698
  msgid "Default Settings"
699
  msgstr ""
700
 
701
- #: inc/cpcff_admin_int_list.inc.php:340
702
  msgid "Applies the default settings to new forms."
703
  msgstr ""
704
 
705
- #: inc/cpcff_admin_int_list.inc.php:342
706
  msgid "Default Template"
707
  msgstr ""
708
 
709
- #: inc/cpcff_admin_int_list.inc.php:358
710
  msgid "Apply To Existing Forms"
711
  msgstr ""
712
 
713
- #: inc/cpcff_admin_int_list.inc.php:358
714
  msgid "It will modify the settings of existing forms"
715
  msgstr ""
716
 
717
- #: inc/cpcff_admin_int_list.inc.php:367
718
  msgid "For additional resources visit the plugin's"
719
  msgstr ""
720
 
721
- #: inc/cpcff_admin_int_list.inc.php:371
722
  msgid "Troubleshoot Area & General Settings"
723
  msgstr ""
724
 
725
- #: inc/cpcff_admin_int_list.inc.php:375
726
  msgid ""
727
  "<strong>Important!</strong>: Use this area <strong>only</strong> if you are "
728
  "experiencing conflicts with third party plugins, with the theme scripts or "
729
  "with the character encoding."
730
  msgstr ""
731
 
732
- #: inc/cpcff_admin_int_list.inc.php:376
733
  msgid "Script load method"
734
  msgstr ""
735
 
736
- #: inc/cpcff_admin_int_list.inc.php:378
737
  msgid "Classic (Recommended)"
738
  msgstr ""
739
 
740
- #: inc/cpcff_admin_int_list.inc.php:379
741
  msgid "Direct"
742
  msgstr ""
743
 
744
- #: inc/cpcff_admin_int_list.inc.php:381
745
  msgid ""
746
  "* Change the script load method if the form doesn't appear in the public "
747
  "website."
748
  msgstr ""
749
 
750
- #: inc/cpcff_admin_int_list.inc.php:383
751
  msgid "Character encoding"
752
  msgstr ""
753
 
754
- #: inc/cpcff_admin_int_list.inc.php:385
755
  msgid "Keep current charset (Recommended)"
756
  msgstr ""
757
 
758
- #: inc/cpcff_admin_int_list.inc.php:386
759
  msgid "try this first"
760
  msgstr ""
761
 
762
- #: inc/cpcff_admin_int_list.inc.php:387
763
  msgid "Only from MySQL 5.5"
764
  msgstr ""
765
 
766
- #: inc/cpcff_admin_int_list.inc.php:390
767
  msgid ""
768
  "* Update the charset if you are getting problems displaying special/non-"
769
  "latin characters. After updated you need to edit the special characters "
770
  "again."
771
  msgstr ""
772
 
773
- #: inc/cpcff_admin_int_list.inc.php:398
774
  msgid "There is active an optimization plugin in WordPress"
775
  msgstr ""
776
 
777
- #: inc/cpcff_admin_int_list.inc.php:399
778
  msgid ""
779
  "* Tick the checkbox if there is an optimization plugin active on the "
780
  "website, and the forms are not visible."
781
  msgstr ""
782
 
783
- #: inc/cpcff_admin_int_list.inc.php:408
 
 
 
 
784
  msgid "Activate Javascript Cache"
785
  msgstr ""
786
 
787
- #: inc/cpcff_admin_int_list.inc.php:410
788
  msgid "Allows to access the forms directly"
789
  msgstr ""
790
 
791
- #: inc/cpcff_admin_int_list.inc.php:412
792
  msgid "Allows to access the forms from amp pages"
793
  msgstr ""
794
 
795
- #: inc/cpcff_admin_int_list.inc.php:414
796
  msgid "Do not load the forms with crawlers"
797
  msgstr ""
798
 
799
- #: inc/cpcff_admin_int_list.inc.php:415
800
  msgid "* The forms are not loaded when website is being indexed by searchers."
801
  msgstr ""
802
 
803
- #: inc/cpcff_admin_int_list.inc.php:417
804
  msgid "UPDATE"
805
  msgstr ""
806
 
807
- #: inc/cpcff_admin_int_list.inc.php:426
808
  msgid "Calculated Fields Form Marketplace"
809
  msgstr ""
810
 
811
- #: inc/cpcff_admin_int_list.inc.php:432 inc/cpcff_main.inc.php:223
812
  msgid "Upgrade"
813
  msgstr ""
814
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-08-23 03:03+0200\n"
5
+ "PO-Revision-Date: 2022-08-23 03:03+0200\n"
6
  "Last-Translator: CodePeople\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
41
  msgid "Settings saved"
42
  msgstr ""
43
 
44
+ #: inc/cpcff_admin_int.inc.php:50 inc/cpcff_admin_int_list.inc.php:157
45
  #: inc/cpcff_page_builders.inc.php:185
46
  #: pagebuilders/beaverbuilder/cff/cff/cff.php:9
47
  #: pagebuilders/beaverbuilder/cff/cff/cff.php:11
64
  msgid "Back to items list..."
65
  msgstr ""
66
 
67
+ #: inc/cpcff_admin_int.inc.php:70 inc/cpcff_admin_int.inc.php:232
68
  msgid "Form Settings"
69
  msgstr ""
70
 
82
  msgid "Form Builder"
83
  msgstr ""
84
 
85
+ #: inc/cpcff_admin_int.inc.php:91
86
  msgid "Revisions"
87
  msgstr ""
88
 
89
+ #: inc/cpcff_admin_int.inc.php:96
90
  msgid "Select a revision"
91
  msgstr ""
92
 
93
+ #: inc/cpcff_admin_int.inc.php:109 inc/cpcff_admin_int.inc.php:252
94
+ #: inc/cpcff_admin_int.inc.php:654
95
  msgid "Preview"
96
  msgstr ""
97
 
98
+ #: inc/cpcff_admin_int.inc.php:109
99
  msgid "Saves the form's structure only, and opens a preview windows"
100
  msgstr ""
101
 
102
+ #: inc/cpcff_admin_int.inc.php:110
103
  msgid "Fields List"
104
  msgstr ""
105
 
106
+ #: inc/cpcff_admin_int.inc.php:121
107
  msgid ""
108
  "If the form is not loading in the public website, go to the settings page of "
109
  "the plugin through the menu option: \"Settings/Calculated Fields Form\", "
111
  "press the \"Update\" button."
112
  msgstr ""
113
 
114
+ #: inc/cpcff_admin_int.inc.php:121
115
  msgid ""
116
  "If you need also the form to be sent to the server side for processing (for "
117
  "example to deliver emails) then the <a href=\"https://cff.dwbooster.com/"
119
  "required."
120
  msgstr ""
121
 
122
+ #: inc/cpcff_admin_int.inc.php:138
123
  msgid ""
124
  "The action will load the revision selected, the data are not stored will be "
125
  "lose. Do you want continue?"
126
  msgstr ""
127
 
128
+ #: inc/cpcff_admin_int.inc.php:195
129
  msgid ""
130
  "These features aren't available in this version. Do you want to open the "
131
  "plugin's page to check other versions?"
132
  msgstr ""
133
 
134
+ #: inc/cpcff_admin_int.inc.php:230
135
  msgid "Add a Field"
136
  msgstr ""
137
 
138
+ #: inc/cpcff_admin_int.inc.php:231
139
  msgid "Field Settings"
140
  msgstr ""
141
 
142
+ #: inc/cpcff_admin_int.inc.php:251 inc/cpcff_admin_int.inc.php:383
143
+ #: inc/cpcff_admin_int.inc.php:698
144
  msgid "Save Changes"
145
  msgstr ""
146
 
147
+ #: inc/cpcff_admin_int.inc.php:258
148
  msgid "Generate revisions in the form preview as well"
149
  msgstr ""
150
 
151
+ #: inc/cpcff_admin_int.inc.php:263
152
  msgid "Texts definition"
153
  msgstr ""
154
 
155
+ #: inc/cpcff_admin_int.inc.php:264
156
  msgid "Error texts"
157
  msgstr ""
158
 
159
+ #: inc/cpcff_admin_int.inc.php:265
160
  msgid "General payment settings"
161
  msgstr ""
162
 
163
+ #: inc/cpcff_admin_int.inc.php:266
164
  msgid "PayPal integration"
165
  msgstr ""
166
 
167
+ #: inc/cpcff_admin_int.inc.php:267
168
  msgid "Notification email"
169
  msgstr ""
170
 
171
+ #: inc/cpcff_admin_int.inc.php:268
172
  msgid "Email copy to user"
173
  msgstr ""
174
 
175
+ #: inc/cpcff_admin_int.inc.php:269
176
  msgid "Captcha settings"
177
  msgstr ""
178
 
179
+ #: inc/cpcff_admin_int.inc.php:272
180
  msgid "Define Texts"
181
  msgstr ""
182
 
183
+ #: inc/cpcff_admin_int.inc.php:276
184
  msgid "Previous button label (text)"
185
  msgstr ""
186
 
187
+ #: inc/cpcff_admin_int.inc.php:280
188
  msgid "Next button label (text)"
189
  msgstr ""
190
 
191
+ #: inc/cpcff_admin_int.inc.php:285
192
  msgid ""
193
  "- The styles can be applied into any of the CSS files of your theme or into "
194
  "the CSS file <em>\"calculated-fields-form\\css\\stylepublic.css\"</em>."
195
  msgstr ""
196
 
197
+ #: inc/cpcff_admin_int.inc.php:286
198
  msgid ""
199
  "- For general CSS styles modifications to the form and samples <a href="
200
  "\"https://cff.dwbooster.com/faq#q82\" target=\"_blank\">check this FAQ</a>."
201
  msgstr ""
202
 
203
+ #: inc/cpcff_admin_int.inc.php:304 inc/cpcff_admin_int.inc.php:368
204
+ #: inc/cpcff_admin_int.inc.php:455 inc/cpcff_admin_int.inc.php:529
205
+ #: inc/cpcff_admin_int.inc.php:578 inc/cpcff_admin_int.inc.php:620
206
+ #: inc/cpcff_admin_int.inc.php:687
207
  msgid "Up to form structure"
208
  msgstr ""
209
 
210
+ #: inc/cpcff_admin_int.inc.php:309
211
  msgid "Validation Settings"
212
  msgstr ""
213
 
214
+ #: inc/cpcff_admin_int.inc.php:313
215
  msgid "\"is required\" text"
216
  msgstr ""
217
 
218
+ #: inc/cpcff_admin_int.inc.php:317
219
  msgid "\"is email\" text"
220
  msgstr ""
221
 
222
+ #: inc/cpcff_admin_int.inc.php:321
223
  msgid "\"is valid captcha\" text"
224
  msgstr ""
225
 
226
+ #: inc/cpcff_admin_int.inc.php:326
227
  msgid "\"is valid date (mm/dd/yyyy)\" text"
228
  msgstr ""
229
 
230
+ #: inc/cpcff_admin_int.inc.php:330
231
  msgid "\"is valid date (dd/mm/yyyy)\" text"
232
  msgstr ""
233
 
234
+ #: inc/cpcff_admin_int.inc.php:334
235
  msgid "\"is number\" text"
236
  msgstr ""
237
 
238
+ #: inc/cpcff_admin_int.inc.php:338
239
  msgid "\"only digits\" text"
240
  msgstr ""
241
 
242
+ #: inc/cpcff_admin_int.inc.php:342
243
  msgid "\"under maximum\" text"
244
  msgstr ""
245
 
246
+ #: inc/cpcff_admin_int.inc.php:346
247
  msgid "\"over minimum\" text"
248
  msgstr ""
249
 
250
+ #: inc/cpcff_admin_int.inc.php:373
251
  msgid "Note"
252
  msgstr ""
253
 
254
+ #: inc/cpcff_admin_int.inc.php:375
255
  msgid ""
256
  "To display the form in a post/page, enter your shortcode in the post/page "
257
  "content:"
258
  msgstr ""
259
 
260
+ #: inc/cpcff_admin_int.inc.php:377
261
  msgid ""
262
  "The CFF plugin implements widgets and blocks to allow inserting the form "
263
  "visually with the most popular page builders such as Gutenberg Editor, "
265
  "Divi, and for the other page builders insert the shortcode directly."
266
  msgstr ""
267
 
268
+ #: inc/cpcff_admin_int.inc.php:386 inc/cpcff_admin_int.inc.php:701
269
+ #: inc/cpcff_admin_int_list.inc.php:436
270
  msgid "Request Custom Modifications"
271
  msgstr ""
272
 
273
+ #: inc/cpcff_admin_int.inc.php:386 inc/cpcff_admin_int.inc.php:701
274
+ #: inc/cpcff_admin_int_list.inc.php:436 inc/cpcff_main.inc.php:224
275
  msgid "Help"
276
  msgstr ""
277
 
278
+ #: inc/cpcff_admin_int.inc.php:393
279
  msgid ""
280
  "The following features are available in the commercial version of the <a "
281
  "href=\"https://cff.dwbooster.com/download\" target=\"_blank\" style=\"text-"
282
  "decoration:none;\">\"Calculated Fields Form\"</a>"
283
  msgstr ""
284
 
285
+ #: inc/cpcff_admin_int.inc.php:394
286
  msgid "Pay only ONCE, use it FOREVER"
287
  msgstr ""
288
 
289
+ #: inc/cpcff_admin_int.inc.php:403
290
  msgid "Form Processing and Payment Settings"
291
  msgstr ""
292
 
293
+ #: inc/cpcff_admin_int.inc.php:407
294
  msgid "Payment Settings"
295
  msgstr ""
296
 
297
+ #: inc/cpcff_admin_int.inc.php:412
298
  msgid "Request cost"
299
  msgstr ""
300
 
301
+ #: inc/cpcff_admin_int.inc.php:417
302
  msgid "Currency"
303
  msgstr ""
304
 
305
+ #: inc/cpcff_admin_int.inc.php:424
306
  msgid "Base amount"
307
  msgstr ""
308
 
309
+ #: inc/cpcff_admin_int.inc.php:425
310
  msgid ""
311
  "Minimum amount to charge. If the final price is lesser than this number, the "
312
  "base amount will be applied."
313
  msgstr ""
314
 
315
+ #: inc/cpcff_admin_int.inc.php:430
316
  msgid "Paypal product name"
317
  msgstr ""
318
 
319
+ #: inc/cpcff_admin_int.inc.php:435
320
  msgid "Discount Codes"
321
  msgstr ""
322
 
323
+ #: inc/cpcff_admin_int.inc.php:437
324
  msgid "This feature isn't available in this version."
325
  msgstr ""
326
 
327
+ #: inc/cpcff_admin_int.inc.php:440
328
  msgid "Add new discount code"
329
  msgstr ""
330
 
331
+ #: inc/cpcff_admin_int.inc.php:442
332
  msgid "Code"
333
  msgstr ""
334
 
335
+ #: inc/cpcff_admin_int.inc.php:443
336
  msgid "Discount"
337
  msgstr ""
338
 
339
+ #: inc/cpcff_admin_int.inc.php:444
340
  msgid "Percent"
341
  msgstr ""
342
 
343
+ #: inc/cpcff_admin_int.inc.php:445
344
  msgid "Fixed Value"
345
  msgstr ""
346
 
347
+ #: inc/cpcff_admin_int.inc.php:448
348
  msgid "Valid until"
349
  msgstr ""
350
 
351
+ #: inc/cpcff_admin_int.inc.php:449
352
  msgid "Add"
353
  msgstr ""
354
 
355
+ #: inc/cpcff_admin_int.inc.php:451
356
  msgid "Note: Expiration date based in server time. Server time now is"
357
  msgstr ""
358
 
359
+ #: inc/cpcff_admin_int.inc.php:460
360
  msgid "Paypal Payment Configuration"
361
  msgstr ""
362
 
363
+ #: inc/cpcff_admin_int.inc.php:465
364
  msgid "Enable Paypal Payments?"
365
  msgstr ""
366
 
367
+ #: inc/cpcff_admin_int.inc.php:467 inc/cpcff_admin_int.inc.php:555
368
+ #: inc/cpcff_admin_int.inc.php:593 inc/cpcff_admin_int.inc.php:634
369
  msgid "No"
370
  msgstr ""
371
 
372
+ #: inc/cpcff_admin_int.inc.php:469
373
  msgid ""
374
  "Note: If \"Optional\" is selected, a radiobutton will appear in the form to "
375
  "select if the payment will be made with PayPal or not."
376
  msgstr ""
377
 
378
+ #: inc/cpcff_admin_int.inc.php:471
379
  msgid "Label for the \"<strong>Pay with PayPal</strong>\" option"
380
  msgstr ""
381
 
382
+ #: inc/cpcff_admin_int.inc.php:477
383
  msgid "Paypal Mode"
384
  msgstr ""
385
 
386
+ #: inc/cpcff_admin_int.inc.php:479
387
  msgid "Production - real payments processed"
388
  msgstr ""
389
 
390
+ #: inc/cpcff_admin_int.inc.php:480
391
  msgid "SandBox - PayPal testing sandbox area"
392
  msgstr ""
393
 
394
+ #: inc/cpcff_admin_int.inc.php:486
395
  msgid "Paypal email"
396
  msgstr ""
397
 
398
+ #: inc/cpcff_admin_int.inc.php:491
399
  msgid "A $0 amount to pay means"
400
  msgstr ""
401
 
402
+ #: inc/cpcff_admin_int.inc.php:493
403
  msgid "Let the user enter any amount at PayPal (ex: for a donation)"
404
  msgstr ""
405
 
406
+ #: inc/cpcff_admin_int.inc.php:494
407
  msgid "Don't require any payment. Form is submitted skiping the PayPal page."
408
  msgstr ""
409
 
410
+ #: inc/cpcff_admin_int.inc.php:500
411
  msgid "Paypal language"
412
  msgstr ""
413
 
414
+ #: inc/cpcff_admin_int.inc.php:505
415
  msgid "Payment frequency"
416
  msgstr ""
417
 
418
+ #: inc/cpcff_admin_int.inc.php:509
419
  msgid "One time payment (default option, user is billed only once)"
420
  msgstr ""
421
 
422
+ #: inc/cpcff_admin_int.inc.php:510
423
  msgid "Bill the user every 1 month"
424
  msgstr ""
425
 
426
+ #: inc/cpcff_admin_int.inc.php:511
427
  msgid "Bill the user every 3 months"
428
  msgstr ""
429
 
430
+ #: inc/cpcff_admin_int.inc.php:512
431
  msgid "Bill the user every 6 months"
432
  msgstr ""
433
 
434
+ #: inc/cpcff_admin_int.inc.php:513
435
  msgid "Bill the user every 12 months"
436
  msgstr ""
437
 
438
+ #: inc/cpcff_admin_int.inc.php:518
439
  msgid "Paypal prompt buyers for shipping address"
440
  msgstr ""
441
 
442
+ #: inc/cpcff_admin_int.inc.php:522
443
  msgid "Do not prompt for an address"
444
  msgstr ""
445
 
446
+ #: inc/cpcff_admin_int.inc.php:523
447
  msgid "Prompt for an address, but do not require one"
448
  msgstr ""
449
 
450
+ #: inc/cpcff_admin_int.inc.php:524
451
  msgid "Prompt for an address and require one"
452
  msgstr ""
453
 
454
+ #: inc/cpcff_admin_int.inc.php:534
455
  msgid "Form Processing / Email Settings"
456
  msgstr ""
457
 
458
+ #: inc/cpcff_admin_int.inc.php:538
459
  msgid "\"From\" email"
460
  msgstr ""
461
 
462
+ #: inc/cpcff_admin_int.inc.php:539
463
  msgid ""
464
  "This email is required if the \"From fixed email address\" option is "
465
  "selected, or it is enabled the email copy to the user."
466
  msgstr ""
467
 
468
+ #: inc/cpcff_admin_int.inc.php:542
469
  msgid "Destination emails (comma separated)"
470
  msgstr ""
471
 
472
+ #: inc/cpcff_admin_int.inc.php:546 inc/cpcff_admin_int.inc.php:602
473
  msgid "Email subject"
474
  msgstr ""
475
 
476
+ #: inc/cpcff_admin_int.inc.php:550
477
  msgid "Include additional information?"
478
  msgstr ""
479
 
480
+ #: inc/cpcff_admin_int.inc.php:554 inc/cpcff_admin_int.inc.php:592
481
+ #: inc/cpcff_admin_int.inc.php:633
482
  msgid "Yes"
483
  msgstr ""
484
 
485
+ #: inc/cpcff_admin_int.inc.php:556
486
  msgid ""
487
  "If the \"No\" option is selected the plugin won't capture the IP address of "
488
  "users."
489
  msgstr ""
490
 
491
+ #: inc/cpcff_admin_int.inc.php:560
492
  msgid "Thank you page (after sending the message)"
493
  msgstr ""
494
 
495
+ #: inc/cpcff_admin_int.inc.php:564 inc/cpcff_admin_int.inc.php:606
496
  msgid "Email format?"
497
  msgstr ""
498
 
499
+ #: inc/cpcff_admin_int.inc.php:568 inc/cpcff_admin_int.inc.php:610
500
  msgid "Plain Text (default)"
501
  msgstr ""
502
 
503
+ #: inc/cpcff_admin_int.inc.php:569 inc/cpcff_admin_int.inc.php:611
504
  msgid "HTML (use html in the textarea below)"
505
  msgstr ""
506
 
507
+ #: inc/cpcff_admin_int.inc.php:574 inc/cpcff_admin_int.inc.php:616
508
  msgid "Message"
509
  msgstr ""
510
 
511
+ #: inc/cpcff_admin_int.inc.php:584
512
  msgid "Email Copy to User"
513
  msgstr ""
514
 
515
+ #: inc/cpcff_admin_int.inc.php:588
516
  msgid "Send confirmation/thank you message to user?"
517
  msgstr ""
518
 
519
+ #: inc/cpcff_admin_int.inc.php:598
520
  msgid "Email field on the form"
521
  msgstr ""
522
 
523
+ #: inc/cpcff_admin_int.inc.php:625
524
  msgid "Captcha Verification"
525
  msgstr ""
526
 
527
+ #: inc/cpcff_admin_int.inc.php:629
528
  msgid "Use Captcha Verification?"
529
  msgstr ""
530
 
531
+ #: inc/cpcff_admin_int.inc.php:640
532
  msgid "Width"
533
  msgstr ""
534
 
535
+ #: inc/cpcff_admin_int.inc.php:642
536
  msgid "Height"
537
  msgstr ""
538
 
539
+ #: inc/cpcff_admin_int.inc.php:644
540
  msgid "Chars"
541
  msgstr ""
542
 
543
+ #: inc/cpcff_admin_int.inc.php:649
544
  msgid "Min font size"
545
  msgstr ""
546
 
547
+ #: inc/cpcff_admin_int.inc.php:651
548
  msgid "Max font size"
549
  msgstr ""
550
 
551
+ #: inc/cpcff_admin_int.inc.php:656
552
  msgid "security code"
553
  msgstr ""
554
 
555
+ #: inc/cpcff_admin_int.inc.php:662
556
  msgid "Noise"
557
  msgstr ""
558
 
559
+ #: inc/cpcff_admin_int.inc.php:664
560
  msgid "Noise Length"
561
  msgstr ""
562
 
563
+ #: inc/cpcff_admin_int.inc.php:669
564
  msgid "Background"
565
  msgstr ""
566
 
567
+ #: inc/cpcff_admin_int.inc.php:676
568
  msgid "Font"
569
  msgstr ""
570
 
592
  msgid "Duplicate/Clone Error, the form cannot be cloned"
593
  msgstr ""
594
 
595
+ #: inc/cpcff_admin_int_list.inc.php:139
596
  msgid "Troubleshoot settings updated"
597
  msgstr ""
598
 
599
+ #: inc/cpcff_admin_int_list.inc.php:202
600
  msgid "Are you sure you want to delete this item?"
601
  msgstr ""
602
 
603
+ #: inc/cpcff_admin_int_list.inc.php:210
604
  msgid "Are you sure you want to update these settings?"
605
  msgstr ""
606
 
607
+ #: inc/cpcff_admin_int_list.inc.php:235
608
  msgid ""
609
  "Are you sure you want to modify existing forms?\\nWe recommend modifying the "
610
  "forms one by one."
611
  msgstr ""
612
 
613
+ #: inc/cpcff_admin_int_list.inc.php:244
614
  msgid "Forms and Settings"
615
  msgstr ""
616
 
617
+ #: inc/cpcff_admin_int_list.inc.php:245 inc/cpcff_admin_int_list.inc.php:369
618
  msgid "Marketplace"
619
  msgstr ""
620
 
621
+ #: inc/cpcff_admin_int_list.inc.php:263
622
  msgid "Form Categories"
623
  msgstr ""
624
 
625
+ #: inc/cpcff_admin_int_list.inc.php:265
626
  msgid "All forms"
627
  msgstr ""
628
 
629
+ #: inc/cpcff_admin_int_list.inc.php:277
630
  msgid "Form List / Items List"
631
  msgstr ""
632
 
633
+ #: inc/cpcff_admin_int_list.inc.php:281
634
  msgid "in"
635
  msgstr ""
636
 
637
+ #: inc/cpcff_admin_int_list.inc.php:281
638
  msgid "category"
639
  msgstr ""
640
 
641
+ #: inc/cpcff_admin_int_list.inc.php:288
642
  msgid "ID"
643
  msgstr ""
644
 
645
+ #: inc/cpcff_admin_int_list.inc.php:289
646
  msgid "Form Name"
647
  msgstr ""
648
 
649
+ #: inc/cpcff_admin_int_list.inc.php:290
650
  msgid "Options"
651
  msgstr ""
652
 
653
+ #: inc/cpcff_admin_int_list.inc.php:291
654
  msgid "Category/Shortcode"
655
  msgstr ""
656
 
657
+ #: inc/cpcff_admin_int_list.inc.php:304 inc/cpcff_admin_int_list.inc.php:363
658
  msgid "Update"
659
  msgstr ""
660
 
661
+ #: inc/cpcff_admin_int_list.inc.php:305 inc/cpcff_main.inc.php:222
662
  msgid "Settings"
663
  msgstr ""
664
 
665
+ #: inc/cpcff_admin_int_list.inc.php:306
666
  msgid "Messages"
667
  msgstr ""
668
 
669
+ #: inc/cpcff_admin_int_list.inc.php:307
670
  msgid "Clone"
671
  msgstr ""
672
 
673
+ #: inc/cpcff_admin_int_list.inc.php:308
674
  msgid "Delete"
675
  msgstr ""
676
 
677
+ #: inc/cpcff_admin_int_list.inc.php:310
678
  msgid "Category: "
679
  msgstr ""
680
 
681
+ #: inc/cpcff_admin_int_list.inc.php:321
682
  msgid "New Form"
683
  msgstr ""
684
 
685
+ #: inc/cpcff_admin_int_list.inc.php:324
686
  msgid "Item Name"
687
  msgstr ""
688
 
689
+ #: inc/cpcff_admin_int_list.inc.php:326
690
  msgid "Category"
691
  msgstr ""
692
 
693
+ #: inc/cpcff_admin_int_list.inc.php:333
694
  msgid "Create Form"
695
  msgstr ""
696
 
697
+ #: inc/cpcff_admin_int_list.inc.php:340
698
  msgid "Default Settings"
699
  msgstr ""
700
 
701
+ #: inc/cpcff_admin_int_list.inc.php:342
702
  msgid "Applies the default settings to new forms."
703
  msgstr ""
704
 
705
+ #: inc/cpcff_admin_int_list.inc.php:344
706
  msgid "Default Template"
707
  msgstr ""
708
 
709
+ #: inc/cpcff_admin_int_list.inc.php:360
710
  msgid "Apply To Existing Forms"
711
  msgstr ""
712
 
713
+ #: inc/cpcff_admin_int_list.inc.php:360
714
  msgid "It will modify the settings of existing forms"
715
  msgstr ""
716
 
717
+ #: inc/cpcff_admin_int_list.inc.php:369
718
  msgid "For additional resources visit the plugin's"
719
  msgstr ""
720
 
721
+ #: inc/cpcff_admin_int_list.inc.php:373
722
  msgid "Troubleshoot Area & General Settings"
723
  msgstr ""
724
 
725
+ #: inc/cpcff_admin_int_list.inc.php:377
726
  msgid ""
727
  "<strong>Important!</strong>: Use this area <strong>only</strong> if you are "
728
  "experiencing conflicts with third party plugins, with the theme scripts or "
729
  "with the character encoding."
730
  msgstr ""
731
 
732
+ #: inc/cpcff_admin_int_list.inc.php:378
733
  msgid "Script load method"
734
  msgstr ""
735
 
736
+ #: inc/cpcff_admin_int_list.inc.php:380
737
  msgid "Classic (Recommended)"
738
  msgstr ""
739
 
740
+ #: inc/cpcff_admin_int_list.inc.php:381
741
  msgid "Direct"
742
  msgstr ""
743
 
744
+ #: inc/cpcff_admin_int_list.inc.php:383
745
  msgid ""
746
  "* Change the script load method if the form doesn't appear in the public "
747
  "website."
748
  msgstr ""
749
 
750
+ #: inc/cpcff_admin_int_list.inc.php:385
751
  msgid "Character encoding"
752
  msgstr ""
753
 
754
+ #: inc/cpcff_admin_int_list.inc.php:387
755
  msgid "Keep current charset (Recommended)"
756
  msgstr ""
757
 
758
+ #: inc/cpcff_admin_int_list.inc.php:388
759
  msgid "try this first"
760
  msgstr ""
761
 
762
+ #: inc/cpcff_admin_int_list.inc.php:389
763
  msgid "Only from MySQL 5.5"
764
  msgstr ""
765
 
766
+ #: inc/cpcff_admin_int_list.inc.php:392
767
  msgid ""
768
  "* Update the charset if you are getting problems displaying special/non-"
769
  "latin characters. After updated you need to edit the special characters "
770
  "again."
771
  msgstr ""
772
 
773
+ #: inc/cpcff_admin_int_list.inc.php:400
774
  msgid "There is active an optimization plugin in WordPress"
775
  msgstr ""
776
 
777
+ #: inc/cpcff_admin_int_list.inc.php:401
778
  msgid ""
779
  "* Tick the checkbox if there is an optimization plugin active on the "
780
  "website, and the forms are not visible."
781
  msgstr ""
782
 
783
+ #: inc/cpcff_admin_int_list.inc.php:410
784
+ msgid "Disable Form Revisions"
785
+ msgstr ""
786
+
787
+ #: inc/cpcff_admin_int_list.inc.php:412
788
  msgid "Activate Javascript Cache"
789
  msgstr ""
790
 
791
+ #: inc/cpcff_admin_int_list.inc.php:414
792
  msgid "Allows to access the forms directly"
793
  msgstr ""
794
 
795
+ #: inc/cpcff_admin_int_list.inc.php:416
796
  msgid "Allows to access the forms from amp pages"
797
  msgstr ""
798
 
799
+ #: inc/cpcff_admin_int_list.inc.php:418
800
  msgid "Do not load the forms with crawlers"
801
  msgstr ""
802
 
803
+ #: inc/cpcff_admin_int_list.inc.php:419
804
  msgid "* The forms are not loaded when website is being indexed by searchers."
805
  msgstr ""
806
 
807
+ #: inc/cpcff_admin_int_list.inc.php:421
808
  msgid "UPDATE"
809
  msgstr ""
810
 
811
+ #: inc/cpcff_admin_int_list.inc.php:430
812
  msgid "Calculated Fields Form Marketplace"
813
  msgstr ""
814
 
815
+ #: inc/cpcff_admin_int_list.inc.php:436 inc/cpcff_main.inc.php:223
816
  msgid "Upgrade"
817
  msgstr ""
818