Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.8.18

Version Description

Added: Date format validation
Fixed: Recaptcha Validation bug

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.8.18
Comparing to
See all releases

Code changes from version 1.8.17 to 1.8.18

admin/models/FMModelManage_fm.php CHANGED
@@ -1129,7 +1129,7 @@ class FMModelManage_fm {
1129
  $w_month_type = '<input type="text" value="'.$param['w_month'].'" id="'.$id.'_monthform_id_temp" name="'.$id.'_monthform_id_temp" onkeypress="return check_month(event, &quot;'.$id.'_monthform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_monthform_id_temp&quot;)" onblur="if (this.value==&quot;0&quot;) this.value=&quot;&quot;; else add_0(&quot;'.$id.'_monthform_id_temp&quot;)" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled/>';
1130
 
1131
  }
1132
-
1133
  if($param['w_year_type']=="SELECT")
1134
  {
1135
  $w_year_type = '<select id="'.$id.'_yearform_id_temp" name="'.$id.'_yearform_id_temp" onchange="set_select(this)" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].' disabled><option value=""></option>';
1129
  $w_month_type = '<input type="text" value="'.$param['w_month'].'" id="'.$id.'_monthform_id_temp" name="'.$id.'_monthform_id_temp" onkeypress="return check_month(event, &quot;'.$id.'_monthform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_monthform_id_temp&quot;)" onblur="if (this.value==&quot;0&quot;) this.value=&quot;&quot;; else add_0(&quot;'.$id.'_monthform_id_temp&quot;)" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled/>';
1130
 
1131
  }
1132
+ $param['w_to'] = isset($param['w_to']) && $param['w_to']!="NaN" ? $param['w_to'] : date("Y");
1133
  if($param['w_year_type']=="SELECT")
1134
  {
1135
  $w_year_type = '<select id="'.$id.'_yearform_id_temp" name="'.$id.'_yearform_id_temp" onchange="set_select(this)" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].' disabled><option value=""></option>';
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.8.17
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -271,7 +271,7 @@ function register_fmemailverification_cpt(){
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
- $new_version = '1.8.17';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.8.18
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
+ $new_version = '1.8.18';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
frontend/models/FMModelForm_maker.php CHANGED
@@ -91,32 +91,37 @@ class FMModelForm_maker {
91
  <?php
92
  }
93
  }
94
- elseif (isset($_POST["recaptcha_response_field"])) {
95
- $recaptcha_response_field = esc_html($_POST["recaptcha_response_field"]);
96
- $privatekey = $form->private_key;
97
- $recaptcha_challenge_field = ((isset($_POST['recaptcha_challenge_field'])) ? esc_html($_POST['recaptcha_challenge_field']) : '');
98
- require_once(WD_FM_DIR . '/recaptchalib.php');
99
- $resp = recaptcha_check_answer($privatekey, $_SERVER["REMOTE_ADDR"], $recaptcha_challenge_field, $recaptcha_response_field);
100
- if ($resp->is_valid) {
101
- $correct = TRUE;
102
- }
103
- else {
104
- ?>
105
- <script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
106
- <?php
107
- }
108
- }
109
- elseif (isset($_POST["g-recaptcha-response"])){
110
  $privatekey= isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
111
- $response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$privatekey."&response=".$_POST['g-recaptcha-response']);
112
- $response = json_decode($response, true);
113
- if($response["success"] === true)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  $correct = TRUE;
115
- else
116
- ?>
117
- <script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
118
- <?php
119
-
120
  }
121
  else {
122
  $correct = TRUE;
@@ -279,13 +284,25 @@ class FMModelForm_maker {
279
  case 'type_password':
280
  case 'type_textarea':
281
  case "type_submitter_mail":
282
- case "type_date":
283
  case "type_own_select":
284
  case "type_country":
285
  case "type_number": {
286
  $value = isset($_POST['wdform_'.$i."_element".$id]) ? esc_html($_POST['wdform_'.$i."_element".$id]) : "";
287
  break;
288
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  case "type_wdeditor": {
290
  $value = isset($_POST['wdform_'.$i.'_wd_editor'.$id]) ? esc_html($_POST['wdform_'.$i.'_wd_editor'.$id]) : "";
291
  break;
@@ -4691,6 +4708,10 @@ class FMModelForm_maker {
4691
 
4692
  return 1;
4693
  }
 
 
 
 
4694
  ////////////////////////////////////////////////////////////////////////////////////////
4695
  // Getters & Setters //
4696
  ////////////////////////////////////////////////////////////////////////////////////////
91
  <?php
92
  }
93
  }
94
+ elseif (isset($_POST["g-recaptcha-response"])){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  $privatekey= isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
96
+ $captcha = $_POST['g-recaptcha-response'];
97
+ $url = 'https://www.google.com/recaptcha/api/siteverify';
98
+ $data = array(
99
+ 'secret' => $privatekey,
100
+ 'response' => $captcha,
101
+ 'remoteip' => $_SERVER['REMOTE_ADDR']
102
+ );
103
+
104
+ $curlConfig = array(
105
+ CURLOPT_URL => $url,
106
+ CURLOPT_POST => true,
107
+ CURLOPT_RETURNTRANSFER => true,
108
+ CURLOPT_POSTFIELDS => $data
109
+ );
110
+
111
+ $ch = curl_init();
112
+ curl_setopt_array($ch, $curlConfig);
113
+ $response = curl_exec($ch);
114
+ curl_close($ch);
115
+
116
+ $jsonResponse = json_decode($response);
117
+
118
+ if ($jsonResponse->success == "true")
119
  $correct = TRUE;
120
+ else {
121
+ ?>
122
+ <script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
123
+ <?php
124
+ }
125
  }
126
  else {
127
  $correct = TRUE;
284
  case 'type_password':
285
  case 'type_textarea':
286
  case "type_submitter_mail":
 
287
  case "type_own_select":
288
  case "type_country":
289
  case "type_number": {
290
  $value = isset($_POST['wdform_'.$i."_element".$id]) ? esc_html($_POST['wdform_'.$i."_element".$id]) : "";
291
  break;
292
  }
293
+
294
+ case "type_date":{
295
+ $value = isset($_POST['wdform_'.$i."_element".$id]) ? esc_html($_POST['wdform_'.$i."_element".$id]) : "";
296
+ $date_format = isset($_POST['wdform_'.$i."_date_format".$id]) ? esc_html($_POST['wdform_'.$i."_date_format".$id]) : "";
297
+ if($value){
298
+ if(!$this->fm_validateDate($value, $date_format)){
299
+ echo "<script> alert('" . addslashes(__("This is not a valid date format.", 'form_maker')) . "');</script>";
300
+ return array($max + 1);
301
+ }
302
+ }
303
+
304
+ break;
305
+ }
306
  case "type_wdeditor": {
307
  $value = isset($_POST['wdform_'.$i.'_wd_editor'.$id]) ? esc_html($_POST['wdform_'.$i.'_wd_editor'.$id]) : "";
308
  break;
4708
 
4709
  return 1;
4710
  }
4711
+ public function fm_validateDate($date, $format = 'Y-m-d H:i:s'){
4712
+ $d = DateTime::createFromFormat($format, $date);
4713
+ return $d && $d->format($format) == $date;
4714
+ }
4715
  ////////////////////////////////////////////////////////////////////////////////////////
4716
  // Getters & Setters //
4717
  ////////////////////////////////////////////////////////////////////////////////////////
frontend/views/FMViewForm_maker.php CHANGED
@@ -2394,6 +2394,10 @@ class FMViewForm_maker {
2394
  }
2395
  ';
2396
  }
 
 
 
 
2397
  break;
2398
  }
2399
 
@@ -2458,6 +2462,7 @@ class FMViewForm_maker {
2458
  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
2459
  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").keypress(function() {return check_month(event, this)});';
2460
  }
 
2461
  if($param['w_year_type']=="SELECT") {
2462
  $w_year_type = '<select id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].'><option value=""></option>';
2463
 
2394
  }
2395
  ';
2396
  }
2397
+
2398
+ $date_format = str_replace('%', '', $param['w_format']);
2399
+ $onsubmit_js.='
2400
+ jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_date_format'.$form_id.'\" value = \"'.$date_format.'\" />").appendTo("#form'.$form_id.'");';
2401
  break;
2402
  }
2403
 
2462
  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
2463
  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").keypress(function() {return check_month(event, this)});';
2464
  }
2465
+ $param['w_to'] = isset($param['w_to']) && $param['w_to']!="NaN" ? $param['w_to'] : date("Y");
2466
  if($param['w_year_type']=="SELECT") {
2467
  $w_year_type = '<select id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].'><option value=""></option>';
2468
 
js/formmaker_div_free.js CHANGED
@@ -12897,8 +12897,9 @@ function field_to_select(id, type)
12897
  options.innerHTML= '';
12898
  select_year.appendChild(options);
12899
 
12900
- from= parseInt(document.getElementById("edit_for_year_interval_from").value);
12901
- to= parseInt(document.getElementById("edit_for_year_interval_to").value);
 
12902
  for(k=to; k>=from;k--)
12903
  {
12904
  var options = document.createElement('option');
@@ -12979,8 +12980,9 @@ function field_to_text(id, type)
12979
 
12980
  document.getElementById(id+"_td_date_input3").innerHTML='';
12981
 
12982
- from= parseInt(document.getElementById("edit_for_year_interval_from").value);
12983
- to= parseInt(document.getElementById("edit_for_year_interval_to").value);
 
12984
  if((parseInt(w_year)<from) || (parseInt(w_year)>to))
12985
  w_year='';
12986
  var year = document.createElement('input');
@@ -13014,8 +13016,9 @@ function set_divider(id, divider)
13014
 
13015
  function year_interval(id)
13016
  {
13017
- from= parseInt(document.getElementById("edit_for_year_interval_from").value);
13018
- to= parseInt(document.getElementById("edit_for_year_interval_to").value);
 
13019
  if(to-from<0)
13020
  {
13021
  alert('Invalid interval of years.');
12897
  options.innerHTML= '';
12898
  select_year.appendChild(options);
12899
 
12900
+ var current_date = new Date();
12901
+ from = parseInt(document.getElementById("edit_for_year_interval_from").value);
12902
+ to = document.getElementById("edit_for_year_interval_to").value!='' ? parseInt(document.getElementById("edit_for_year_interval_to").value) : current_date.getFullYear();
12903
  for(k=to; k>=from;k--)
12904
  {
12905
  var options = document.createElement('option');
12980
 
12981
  document.getElementById(id+"_td_date_input3").innerHTML='';
12982
 
12983
+ var current_date = new Date();
12984
+ from = parseInt(document.getElementById("edit_for_year_interval_from").value);
12985
+ to = document.getElementById("edit_for_year_interval_to").value!='' ? parseInt(document.getElementById("edit_for_year_interval_to").value) : current_date.getFullYear();
12986
  if((parseInt(w_year)<from) || (parseInt(w_year)>to))
12987
  w_year='';
12988
  var year = document.createElement('input');
13016
 
13017
  function year_interval(id)
13018
  {
13019
+ var current_date = new Date();
13020
+ from = parseInt(document.getElementById("edit_for_year_interval_from").value);
13021
+ to = document.getElementById("edit_for_year_interval_to").value!='' ? parseInt(document.getElementById("edit_for_year_interval_to").value) : current_date.getFullYear();
13022
  if(to-from<0)
13023
  {
13024
  alert('Invalid interval of years.');
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Form Maker ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-form.html
4
- Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
- Stable tag: 1.8.17
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -302,6 +302,10 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
302
 
303
  == Changelog ==
304
 
 
 
 
 
305
  = 1.8.17 =
306
  Added: Global Options
307
 
1
  === Form Maker ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-form.html
4
+ Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
+ Stable tag: 1.8.18
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
302
 
303
  == Changelog ==
304
 
305
+ = 1.8.18 =
306
+ Added: Date format validation
307
+ Fixed: Recaptcha Validation bug
308
+
309
  = 1.8.17 =
310
  Added: Global Options
311
 
tmp-form-maker-readme.pot ADDED
@@ -0,0 +1,1412 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr "MIME-Version: 1.0\n"
3
+
4
+ #. Name.
5
+ msgid "Form Maker"
6
+ msgstr ""
7
+
8
+ #. Short description.
9
+ msgid "WordPress Form Maker is a fresh and innovative form builder. This form builder is for generating various kinds of forms."
10
+ msgstr ""
11
+
12
+ #. Screenshot description.
13
+ msgid "<a href=\"http://wordpress.org/plugins/form-maker/\">Wordpress Form</a> Maker - Sample RSVP"
14
+ msgstr ""
15
+
16
+ #. Screenshot description.
17
+ msgid "Form Maker - Sample form"
18
+ msgstr ""
19
+
20
+ #. Screenshot description.
21
+ msgid "Form Maker - Manage forms"
22
+ msgstr ""
23
+
24
+ #. Screenshot description.
25
+ msgid "Form Maker - Creating a new form"
26
+ msgstr ""
27
+
28
+ #. Screenshot description.
29
+ msgid "Form Maker - form Text input field type"
30
+ msgstr ""
31
+
32
+ #. Screenshot description.
33
+ msgid "Form Maker - form Captcha field type"
34
+ msgstr ""
35
+
36
+ #. Screenshot description.
37
+ msgid "Form Maker - Manage submissions of form"
38
+ msgstr ""
39
+
40
+ #. Screenshot description.
41
+ msgid "Form Maker - Select form Columns"
42
+ msgstr ""
43
+
44
+ #. Found in description header.
45
+ msgid "Form Maker Add-ons:"
46
+ msgstr ""
47
+
48
+ #. Found in description header.
49
+ msgid "IMPORTANT: If you think you found a bug in Form Maker or have any problem/question concerning the plugin, please check out [Support Forum](https://web-dorado.com/forum/26-form-maker.html) in our website. If you do not find a solution here, do not hesitate to contact us at [info@web-dorado.com](mailto:info@web-dorado.com)."
50
+ msgstr ""
51
+
52
+ #. Found in description header.
53
+ msgid "Features of Form Maker"
54
+ msgstr ""
55
+
56
+ #. Found in description header.
57
+ msgid "Supported languages Of Form Maker"
58
+ msgstr ""
59
+
60
+ #. Found in description list item.
61
+ msgid "WordPress 3.0+ "
62
+ msgstr ""
63
+
64
+ #. Found in description list item.
65
+ msgid "Multiple pre-installed sample forms "
66
+ msgstr ""
67
+
68
+ #. Found in description list item.
69
+ msgid "Responsive layout and design "
70
+ msgstr ""
71
+
72
+ #. Found in description list item.
73
+ msgid "Limited up to 7 fields to add "
74
+ msgstr ""
75
+
76
+ #. Found in description list item.
77
+ msgid "Custom HTML with standard editor "
78
+ msgstr ""
79
+
80
+ #. Found in description list item.
81
+ msgid "Simple text to add a limited input field into the form"
82
+ msgstr ""
83
+
84
+ #. Found in description list item.
85
+ msgid "Password(protected input type form field) for signup forms"
86
+ msgstr ""
87
+
88
+ #. Found in description list item.
89
+ msgid "Text area allowing to shrunk the text form field wherever the text is longer than the field itself"
90
+ msgstr ""
91
+
92
+ #. Found in description list item.
93
+ msgid "Name form field with customizable field labels (this form field includes two formats: Normal (only first and last name included) and extended (with a possibility of adding up to four sections within a single form field)"
94
+ msgstr ""
95
+
96
+ #. Found in description list item.
97
+ msgid "Address form field with a chance to remove some of the fields from the form and possibility of editing field labels"
98
+ msgstr ""
99
+
100
+ #. Found in description list item.
101
+ msgid "Address (Mark on Map) to create an address form field using Google API integration"
102
+ msgstr ""
103
+
104
+ #. Found in description list item.
105
+ msgid "E-mail for providing emails (gets validated for the type during the form submission)"
106
+ msgstr ""
107
+
108
+ #. Found in description list item.
109
+ msgid "Number for numerical form field"
110
+ msgstr ""
111
+
112
+ #. Found in description list item.
113
+ msgid "Phone form field with a possibility to edit the field labels in the backend"
114
+ msgstr ""
115
+
116
+ #. Found in description list item.
117
+ msgid "Hidden fields"
118
+ msgstr ""
119
+
120
+ #. Found in description list item.
121
+ msgid "Time and Date form fields with a possibility of adding date pickers and time pickers for registration forms, booking and similar forms "
122
+ msgstr ""
123
+
124
+ #. Found in description list item.
125
+ msgid "Custom select and country select (drop-down lists) "
126
+ msgstr ""
127
+
128
+ #. Found in description list item.
129
+ msgid "Checkbox for multiple choices questions in the form "
130
+ msgstr ""
131
+
132
+ #. Found in description list item.
133
+ msgid "Radio button for single choice questions in the form "
134
+ msgstr ""
135
+
136
+ #. Found in description list item.
137
+ msgid "Captcha/ReCaptcha for using safer forms "
138
+ msgstr ""
139
+
140
+ #. Found in description list item.
141
+ msgid "Page break for form pagination "
142
+ msgstr ""
143
+
144
+ #. Found in description list item.
145
+ msgid "Section break for creating multi-section forms "
146
+ msgstr ""
147
+
148
+ #. Found in description list item.
149
+ msgid "Map for inserting Google Map into the form "
150
+ msgstr ""
151
+
152
+ #. Found in description list item.
153
+ msgid "Submit, Reset and Custom Button "
154
+ msgstr ""
155
+
156
+ #. Found in description list item.
157
+ msgid "41 editable themes for different form designs "
158
+ msgstr ""
159
+
160
+ #. Found in description list item.
161
+ msgid "Up to seven field forms for free version "
162
+ msgstr ""
163
+
164
+ #. Found in description list item.
165
+ msgid "Form Layout changing possibility "
166
+ msgstr ""
167
+
168
+ #. Found in description list item.
169
+ msgid "IP blocking possibility "
170
+ msgstr ""
171
+
172
+ #. Found in description list item.
173
+ msgid "Possibility to include required field option to receive specific information from the form submitter "
174
+ msgstr ""
175
+
176
+ #. Found in description list item.
177
+ msgid "Possibility to edit the form CSS or add custom Javascript into the form "
178
+ msgstr ""
179
+
180
+ #. Found in description list item.
181
+ msgid "Includes additional attributes for each form field for adding properties with Java Script (for more advanced form users) "
182
+ msgstr ""
183
+
184
+ #. Found in description list item.
185
+ msgid "Possibility to receive the filled forms to the admin and form submitter (if applicable) emails"
186
+ msgstr ""
187
+
188
+ #. Found in description list item.
189
+ msgid "Possibility to add custom text in the emails sent to the administrators and form submitter "
190
+ msgstr ""
191
+
192
+ #. Found in description list item.
193
+ msgid "Possibility to edit and change the Email and the Name, which are displayed with the form submission sent to the form submitter, thus allowing to have a feedback to a specific email"
194
+ msgstr ""
195
+
196
+ #. Found in description list item.
197
+ msgid "Form Maker Shortcode button in WordPress standard editor to make the form inserting process easier, whereas it is also possible to change the form in the page/post just changing the ID of the form in the shortcode "
198
+ msgstr ""
199
+
200
+ #. Found in description list item.
201
+ msgid "Data validation for all form fields while submitting the form"
202
+ msgstr ""
203
+
204
+ #. Found in description list item.
205
+ msgid "Possibility to preview the form, as well as form themes"
206
+ msgstr ""
207
+
208
+ #. Found in description list item.
209
+ msgid "Detailed Form Maker User Manual describing form installation process, detailed form field descriptions, the process of inserting created form into your site and other details for the Form Users "
210
+ msgstr ""
211
+
212
+ #. Found in description list item.
213
+ msgid "Required and hidden form fields "
214
+ msgstr ""
215
+
216
+ #. Found in description list item.
217
+ msgid "Possibility to customize button styles used in the form"
218
+ msgstr ""
219
+
220
+ #. Found in description list item.
221
+ msgid "Form Pagination possibility"
222
+ msgstr ""
223
+
224
+ #. Found in description list item.
225
+ msgid "Customizable themes to edit the design of the forms"
226
+ msgstr ""
227
+
228
+ #. Found in description list item.
229
+ msgid "Possibility to edit the form titles whenever required"
230
+ msgstr ""
231
+
232
+ #. Found in description list item.
233
+ msgid "Possibility to create forms based on the default forms with the “Save as Copy” button"
234
+ msgstr ""
235
+
236
+ #. Found in description list item.
237
+ msgid "This form builder supports multiple languages allowing you to create forms in user-native languages"
238
+ msgstr ""
239
+
240
+ #. Found in description list item.
241
+ msgid "Page redirect possibility after the form is submitted, allowing to navigate not only to specific pages (e.g. including other forms) or to another site (providing URL)"
242
+ msgstr ""
243
+
244
+ #. Found in description list item.
245
+ msgid "Functional and easy to use back end; you can use navigation arrows to move the created form fields in the same page and even to move the form field from one form page to another"
246
+ msgstr ""
247
+
248
+ #. Found in description list item.
249
+ msgid "Filled information is kept in database section of the form"
250
+ msgstr ""
251
+
252
+ #. Found in description list item.
253
+ msgid "Detailed submissions field providing the ID of the submitter, the submission date, form submitter’s IP address and all of the form fields"
254
+ msgstr ""
255
+
256
+ #. Found in description list item.
257
+ msgid "Searchable Submissions field to find relevant submitted forms in the database"
258
+ msgstr ""
259
+
260
+ #. Found in description list item.
261
+ msgid "One form based submissions allowing to get separate data for each form "
262
+ msgstr ""
263
+
264
+ #. Found in description list item.
265
+ msgid "Submissions section includes simple statistical data for the choice-based entries "
266
+ msgstr ""
267
+
268
+ #. Found in description list item.
269
+ msgid "Possibility to use Export CSV/XML feature to download the submitted forms and to analyze the data with advanced tools "
270
+ msgstr ""
271
+
272
+ #. Found in description list item.
273
+ msgid "Possibility to edit form submissions, deleting the columns of irrelevant form submissions or for sorting the data "
274
+ msgstr ""
275
+
276
+ #. Found in description list item.
277
+ msgid "Possibility to hide and unhide specific form fields from demonstrating in the Submissions "
278
+ msgstr ""
279
+
280
+ #. Found in description list item.
281
+ msgid "There is a possibility to add custom text which will be displayed when the field is empty to give the users samples or instruction when filling the specific field. "
282
+ msgstr ""
283
+
284
+ #. Found in description list item.
285
+ msgid "Possibility to have pre-filled texts serving as instructions for the textarea and other text fields. "
286
+ msgstr ""
287
+
288
+ #. Found in description list item.
289
+ msgid "Date picker in the form of drop-down menu for easier date selection. "
290
+ msgstr ""
291
+
292
+ #. Found in description list item.
293
+ msgid "Submissions section displays the amount of entries, as well as views and conversion rate for each separate form. "
294
+ msgstr ""
295
+
296
+ #. Found in description list item.
297
+ msgid "CC and BCC mail options for sending out the submitted form "
298
+ msgstr ""
299
+
300
+ #. Found in description list item.
301
+ msgid "41 responsive theme with customizable design "
302
+ msgstr ""
303
+
304
+ #. Found in description list item.
305
+ msgid "Displaying the country, country code and other date in the Submissions section IP pop-up "
306
+ msgstr ""
307
+
308
+ #. Found in description list item.
309
+ msgid "MySQL Mapping possibility for storing entered data to another MySQL database. "
310
+ msgstr ""
311
+
312
+ #. Found in description list item.
313
+ msgid "Possibility to choose whether to save the data to database or just have the information emailed to the Administrator. "
314
+ msgstr ""
315
+
316
+ #. Found in description list item.
317
+ msgid "Possibility to insert separate Country select list for the custom fields rather than address. "
318
+ msgstr ""
319
+
320
+ #. Found in description list item.
321
+ msgid "Conditional fields, which can be used for hiding/displaying a list of questions based on the selection of specific answers. "
322
+ msgstr ""
323
+
324
+ #. Found in description list item.
325
+ msgid "Option of displaying form pages using tabs or percentage. "
326
+ msgstr ""
327
+
328
+ #. Found in description list item.
329
+ msgid "Unlimited number of form fields. "
330
+ msgstr ""
331
+
332
+ #. Found in description list item.
333
+ msgid "Add ons support. "
334
+ msgstr ""
335
+
336
+ #. Found in description list item.
337
+ msgid "PayPal form field with currency change possibility. "
338
+ msgstr ""
339
+
340
+ #. Found in description list item.
341
+ msgid "Upload file field. "
342
+ msgstr ""
343
+
344
+ #. Found in description list item.
345
+ msgid "Possibility to choose the desired file extension types for the file upload form field. "
346
+ msgstr ""
347
+
348
+ #. Found in description list item.
349
+ msgid "Fully integrated with PayPal: two checkout modes (Test Mode and Production) and five form field types (Amount, Select, Checkbox, Radio, and Shipping)(commercial version of the Form Maker), possibility to use the form as a payment/donation form . "
350
+ msgstr ""
351
+
352
+ #. Found in description list item.
353
+ msgid "Google Maps API Integration, possibility to use the maps in two different form fields of the Form Maker. "
354
+ msgstr ""
355
+
356
+ #. Found in description list item.
357
+ msgid "Possibility to include tax percentage within PayPal options for the localization of the payment. "
358
+ msgstr ""
359
+
360
+ #. Found in description paragraph.
361
+ msgid "Form Maker is a FREE and user-friendly plugin to create highly customizable and responsive forms in a few minutes with simple drag and drop interface."
362
+ msgstr ""
363
+
364
+ #. Found in description paragraph.
365
+ msgid ""
366
+ "<a href=\"https://web-dorado.com/products/wordpress-form.html\">WordPress Form Maker</a><br />\n"
367
+ "<a href=\"http://wpdemo.web-dorado.com/\">Demo</a><br />\n"
368
+ "<a href=\"http://wpdemo.web-dorado.com/wp-admin/admin.php?page=Form_maker\">Demo Admin</a><br />\n"
369
+ "<a href=\"https://web-dorado.com/wordpress-form-maker-guide-1.html\">User Manual</a><br />\n"
370
+ "<a href=\"https://web-dorado.com/forum/form-maker/316-form-maker-faq.html\">Frequently Asked Questions</a>"
371
+ msgstr ""
372
+
373
+ #. Found in description paragraph.
374
+ msgid ""
375
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/export-import.html\">Import/Export Add-on</a><br />\n"
376
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/pdf.html\">Google PDF Integration Add-on</a><br />\n"
377
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html\">Mailchimp Integration Add-on</a><br />\n"
378
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/registration.html\">User Registration Add-on</a><br />\n"
379
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html\">Post Generation Add-on</a><br />\n"
380
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html\">Conditional Emails Add-on</a><br />\n"
381
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html\">Dropbox Integration Add-on</a><br />\n"
382
+ "<a href=\"https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html\">Google Drive Integration Add-on</a>"
383
+ msgstr ""
384
+
385
+ #. Found in description paragraph.
386
+ msgid "https://www.youtube.com/watch?v=QelKxyW7M98"
387
+ msgstr ""
388
+
389
+ #. Found in description paragraph.
390
+ msgid "The Form Maker is one of the best responsive form builders in WordPress Plugin Directory. WordPress Form Builder allows you to set all the parameters such as colors, fonts and dimensions to best fit all form standards. If you want to make minimalistic forms, you can build forms with pre-filled texts, avoiding long form field labels. If want to build simple contact forms with unlimited number of fields, then you can use <a href=\"http://wordpress.org/extend/plugins/contact-form-maker/\">WordPress Contact Form</a>."
391
+ msgstr ""
392
+
393
+ #. Found in description paragraph.
394
+ msgid "Form Maker is a fresh and innovative form builder for generating various kinds of forms. The back end of the Form Maker is essential and easy to use, with no need of advanced programming skills."
395
+ msgstr ""
396
+
397
+ #. Found in description paragraph.
398
+ msgid "The Form Maker uses a number of customizable themes. You can choose the design of the form to fit your website/webpage. Moreover, the Form Maker theme CSS is open for editing and making necessary changes, for creating a custom form design. To choose the best fitting form design, you can first preview the created forms changing the form theme and pressing preview button."
399
+ msgstr ""
400
+
401
+ #. Found in description paragraph.
402
+ msgid "WordPress Form Maker can be used both for simple and multipart forms. That is why this form builder is a perfect choice for the beginners, who are just starting with forms and also meets the needs of experts (with advanced themes and multiple form customization possibilities). This form builder can be used for creating simple forms, survey forms and questionnaires, registration and application forms and etc."
403
+ msgstr ""
404
+
405
+ #. Found in description paragraph.
406
+ msgid "The commercial version of the Form Maker has Google Map integration for the geolocation as well as pre-filled address demonstration in the forms. The details of the longitude and latitude can be provided in the back end of the form."
407
+ msgstr ""
408
+
409
+ #. Found in description paragraph.
410
+ msgid "To make the process of creating forms easier, the package includes a list of pre-installed forms for different purposes. There is a possibility of saving those forms as copies and editing them to fit your needs."
411
+ msgstr ""
412
+
413
+ #. Found in description paragraph.
414
+ msgid "PayPal integration of the Form Maker (commercial version) allows you to add PayPal features into the form, thus making it possible to use the Form Maker as a great tool for creating donation forms, whereas Survey Tools form field allows creating manageable questionnaire forms."
415
+ msgstr ""
416
+
417
+ #. Found in description paragraph.
418
+ msgid "This form builder has a Captcha field to protect from receiving spam with the forms. The form field comes with two options: a simple Captcha and ReCaptcha (the famous Captcha by Google)."
419
+ msgstr ""
420
+
421
+ #. Found in description paragraph.
422
+ msgid "CSV/XML export possibility allows using the submitted data for data analysis and data presentation creating charts, diagrams and other visual forms."
423
+ msgstr ""
424
+
425
+ #. Found in description paragraph.
426
+ msgid "To make larger forms fit and look great on your pages and posts, you can use pagination option, cutting the form into multiple pages."
427
+ msgstr ""
428
+
429
+ #. Found in description paragraph.
430
+ msgid "Possibility of sending submitted form to various emails, providing them in Email to Field and separating by comma."
431
+ msgstr ""
432
+
433
+ #. Found in description paragraph.
434
+ msgid "Survey tools are also very convenient for adding rating systems for the posts, e.g. for contests."
435
+ msgstr ""
436
+
437
+ #. Found in description paragraph.
438
+ msgid "Upgrade to <a href=\"https://web-dorado.com/products/wordpress-form.html\">WordPress Form Maker Pro</a> to add features:"
439
+ msgstr ""
440
+
441
+ #. Found in description paragraph.
442
+ msgid "<em>If you need language of Form Maker which is not included in this list, please contact us and we will do the translation of Form Maker within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days.</em>"
443
+ msgstr ""
444
+
445
+ #. Found in description paragraph.
446
+ msgid ""
447
+ "Afrikaans (af)<br />\n"
448
+ "Albanian (sq)<br />\n"
449
+ "Arabic (ar)<br />\n"
450
+ "Armenian (hy_AM)<br />\n"
451
+ "Belarusian (be_BY)<br />\n"
452
+ "Bulgarian (bg_BG)<br />\n"
453
+ "Catalan (ca)<br />\n"
454
+ "Chinese, Simplified (zh_CN)<br />\n"
455
+ "Croatian (hr)<br />\n"
456
+ "Czech (cs_CZ)<br />\n"
457
+ "Danish (da_DK)<br />\n"
458
+ "Dutch (nl_NL)<br />\n"
459
+ "Esperanto (eo_EO)<br />\n"
460
+ "Estonian (et)<br />\n"
461
+ "Finnish (fi)<br />\n"
462
+ "French (fr_FR)<br />\n"
463
+ "Galician (gl_ES)<br />\n"
464
+ "Georgian (ka_GE)<br />\n"
465
+ "German (de_DE)<br />\n"
466
+ "Greek (el)<br />\n"
467
+ "Hebrew (he_IL)<br />\n"
468
+ "Hindi (hi_IN)<br />\n"
469
+ "Hungarian (hu_HU)<br />\n"
470
+ "Indonesian (id_ID)<br />\n"
471
+ "Italian (it_IT)<br />\n"
472
+ "Japanese (ja)<br />\n"
473
+ "Korean (ko_KR)<br />\n"
474
+ "Latvian (lv)<br />\n"
475
+ "Lithuanian (lt_LT)<br />\n"
476
+ "Macedonian (mk_MK)<br />\n"
477
+ "Malay (ms_MY)<br />\n"
478
+ "Maltese (mt_MT)<br />\n"
479
+ "Norwegian (nb_NO)<br />\n"
480
+ "Persian (fa_IR)<br />\n"
481
+ "Polish (pl_PL)<br />\n"
482
+ "Portuguese (pt_PT)<br />\n"
483
+ "Russian (ru_RU)<br />\n"
484
+ "Romanian (ro_RO)<br />\n"
485
+ "Serbian (sr_RS)<br />\n"
486
+ "Slovak (sk_SK)<br />\n"
487
+ "Spanish (es_ES)<br />\n"
488
+ "Swedish (sv_SE)<br />\n"
489
+ "Tamil (ta)<br />\n"
490
+ "Thai (th)<br />\n"
491
+ "Turkish (tr_TR)<br />\n"
492
+ "Ukrainian (uk_UA)<br />\n"
493
+ "Vietnamese (vi)"
494
+ msgstr ""
495
+
496
+ #. Found in installation header.
497
+ msgid "Thank you for your interest in <a href=\"http://wordpress.org/plugins/form-maker/\">Wordpress Form</a> Maker."
498
+ msgstr ""
499
+
500
+ #. Found in installation header.
501
+ msgid "Minimum requirements."
502
+ msgstr ""
503
+
504
+ #. Found in installation header.
505
+ msgid "Perform a new installation"
506
+ msgstr ""
507
+
508
+ #. Found in installation header.
509
+ msgid "Updating Form Maker."
510
+ msgstr ""
511
+
512
+ #. Found in installation list item.
513
+ msgid "Wordpress 3.4+ "
514
+ msgstr ""
515
+
516
+ #. Found in installation list item.
517
+ msgid "PHP 5.x "
518
+ msgstr ""
519
+
520
+ #. Found in installation list item.
521
+ msgid "MySQL 5.x "
522
+ msgstr ""
523
+
524
+ #. Found in installation list item.
525
+ msgid "Log in to the administrator panel. "
526
+ msgstr ""
527
+
528
+ #. Found in installation list item.
529
+ msgid "Go to Plugins Add &gt; New &gt; Upload. "
530
+ msgstr ""
531
+
532
+ #. Found in installation list item.
533
+ msgid "Click “Install Now” button. "
534
+ msgstr ""
535
+
536
+ #. Found in installation paragraph.
537
+ msgid "After downloading the ZIP file,"
538
+ msgstr ""
539
+
540
+ #. Found in installation paragraph.
541
+ msgid ""
542
+ "Whenever a new version of Form Maker becomes available you will see a notification in the plugins section of the WordPress below the actual plugin. To update the Form Maker, you should press update now button and after the process is done, press Activate Plugin button.<br />\n"
543
+ "In case you are upgrading your Form Maker to paid version, but still want to preserve the created forms, you need to deactivate and delete the Form Maker from the list of installed plugins (Do not uninstall it using the Uninstall Form Maker option of the plugin) and install the new plugin."
544
+ msgstr ""
545
+
546
+ #. Found in changelog list item.
547
+ msgid "fix security issue which was reported by Mateusz Lach"
548
+ msgstr ""
549
+
550
+ #. Found in changelog list item.
551
+ msgid "Added featured plugins "
552
+ msgstr ""
553
+
554
+ #. Found in changelog list item.
555
+ msgid "From Name, From Email in Form options "
556
+ msgstr ""
557
+
558
+ #. Found in changelog list item.
559
+ msgid "Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix) "
560
+ msgstr ""
561
+
562
+ #. Found in changelog list item.
563
+ msgid "Customizable Email message for Administrator and Users "
564
+ msgstr ""
565
+
566
+ #. Found in changelog list item.
567
+ msgid "Actions after form Submission: "
568
+ msgstr ""
569
+
570
+ #. Found in changelog list item.
571
+ msgid "Stay on form: "
572
+ msgstr ""
573
+
574
+ #. Found in changelog list item.
575
+ msgid "To go to Post,Page after the form submission: "
576
+ msgstr ""
577
+
578
+ #. Found in changelog list item.
579
+ msgid "Custom text after the form submission: "
580
+ msgstr ""
581
+
582
+ #. Found in changelog list item.
583
+ msgid "URL: The user is redirected to the provided URL after the form submission. "
584
+ msgstr ""
585
+
586
+ #. Found in changelog list item.
587
+ msgid "Edit javascript of the form: "
588
+ msgstr ""
589
+
590
+ #. Found in changelog list item.
591
+ msgid "Save as the copy of the form: "
592
+ msgstr ""
593
+
594
+ #. Found in changelog list item.
595
+ msgid "Themes: There are 43 standard themes included in Form Maker "
596
+ msgstr ""
597
+
598
+ #. Found in changelog list item.
599
+ msgid "New form fields: "
600
+ msgstr ""
601
+
602
+ #. Found in changelog list item.
603
+ msgid "Address field "
604
+ msgstr ""
605
+
606
+ #. Found in changelog list item.
607
+ msgid "Address mark on map form field "
608
+ msgstr ""
609
+
610
+ #. Found in changelog list item.
611
+ msgid "Number form field "
612
+ msgstr ""
613
+
614
+ #. Found in changelog list item.
615
+ msgid "Phone form field "
616
+ msgstr ""
617
+
618
+ #. Found in changelog list item.
619
+ msgid "Date 3 different form field "
620
+ msgstr ""
621
+
622
+ #. Found in changelog list item.
623
+ msgid "Time form field "
624
+ msgstr ""
625
+
626
+ #. Found in changelog list item.
627
+ msgid "Country list form field "
628
+ msgstr ""
629
+
630
+ #. Found in changelog list item.
631
+ msgid "Recapthca form field "
632
+ msgstr ""
633
+
634
+ #. Found in changelog list item.
635
+ msgid "Pagebreak of the <a href=\"http://wordpress.org/plugins/form-maker/\">Wordpress Form</a> Maker: This can be used to break the form into distinct pages. "
636
+ msgstr ""
637
+
638
+ #. Found in changelog list item.
639
+ msgid "Section Break of the Form Maker: This option allows adding a section break to the form page. "
640
+ msgstr ""
641
+
642
+ #. Found in changelog list item.
643
+ msgid "For each form certain types of statistical data are available in the form builder: "
644
+ msgstr ""
645
+
646
+ #. Found in changelog list item.
647
+ msgid "Entries of a form: The number of submitted forms in the form builder. "
648
+ msgstr ""
649
+
650
+ #. Found in changelog list item.
651
+ msgid "Views of a form: The number of times the form has been viewed. "
652
+ msgstr ""
653
+
654
+ #. Found in changelog list item.
655
+ msgid "Conversion Rate of a form: The percentage of submitted forms to the overall number of views. "
656
+ msgstr ""
657
+
658
+ #. Found in changelog paragraph.
659
+ msgid ""
660
+ "Changed: Themes<br />\n"
661
+ "Fixed: Bug in block ip"
662
+ msgstr ""
663
+
664
+ #. Found in changelog paragraph.
665
+ msgid "Fixed: Bug in CSV/XML export"
666
+ msgstr ""
667
+
668
+ #. Found in changelog paragraph.
669
+ msgid ""
670
+ "Fixed: Conflict with some plugins<br />\n"
671
+ "Changed: Styles"
672
+ msgstr ""
673
+
674
+ #. Found in changelog paragraph.
675
+ msgid ""
676
+ "New: Doublescroll in submissions page<br />\n"
677
+ "New: Delete confirmation<br />\n"
678
+ "Fixed: Bug in mysql mapping for conditional fields"
679
+ msgstr ""
680
+
681
+ #. Found in changelog paragraph.
682
+ msgid "Changed: CSV/XML export"
683
+ msgstr ""
684
+
685
+ #. Found in changelog paragraph.
686
+ msgid "Fixed: Bug in conditional fields"
687
+ msgstr ""
688
+
689
+ #. Found in changelog paragraph.
690
+ msgid "New Add-on: PDF Integration"
691
+ msgstr ""
692
+
693
+ #. Found in changelog paragraph.
694
+ msgid "New: Google Drive Integration Add-on"
695
+ msgstr ""
696
+
697
+ #. Found in changelog paragraph.
698
+ msgid "Fixed: Bug in demo forms"
699
+ msgstr ""
700
+
701
+ #. Found in changelog paragraph.
702
+ msgid "Fixed: Bug in update"
703
+ msgstr ""
704
+
705
+ #. Found in changelog paragraph.
706
+ msgid "Changed: Notices"
707
+ msgstr ""
708
+
709
+ #. Found in changelog paragraph.
710
+ msgid "Changed: Themes"
711
+ msgstr ""
712
+
713
+ #. Found in changelog paragraph.
714
+ msgid "New: Dropbox Integration Add-on"
715
+ msgstr ""
716
+
717
+ #. Found in changelog paragraph.
718
+ msgid ""
719
+ "Changed: Licensing/Donation page<br />\n"
720
+ "Changed: Notices"
721
+ msgstr ""
722
+
723
+ #. Found in changelog paragraph.
724
+ msgid ""
725
+ "Changed: Submissions default ordering<br />\n"
726
+ "Changed: Featured Plugins page"
727
+ msgstr ""
728
+
729
+ #. Found in changelog paragraph.
730
+ msgid "Fixed: Minor bugs"
731
+ msgstr ""
732
+
733
+ #. Found in changelog paragraph.
734
+ msgid "New: Notices"
735
+ msgstr ""
736
+
737
+ #. Found in changelog paragraph.
738
+ msgid "New Add-on: Conditional Emails"
739
+ msgstr ""
740
+
741
+ #. Found in changelog paragraph.
742
+ msgid "Changed: Styles"
743
+ msgstr ""
744
+
745
+ #. Found in changelog paragraph.
746
+ msgid "Minor bug fixed"
747
+ msgstr ""
748
+
749
+ #. Found in changelog paragraph.
750
+ msgid "Changed: Compability with WordPress 4.3"
751
+ msgstr ""
752
+
753
+ #. Found in changelog paragraph.
754
+ msgid ""
755
+ "Fixed: Bug in slider field<br />\n"
756
+ "Fixed: Bug in address field<br />\n"
757
+ "Fixed: Bug in mysql mapping"
758
+ msgstr ""
759
+
760
+ #. Found in changelog paragraph.
761
+ msgid "Fixed: Bug in Undo/Rendo"
762
+ msgstr ""
763
+
764
+ #. Found in changelog paragraph.
765
+ msgid "New: Post Generation Add-on"
766
+ msgstr ""
767
+
768
+ #. Found in changelog paragraph.
769
+ msgid "Fixed: Minor bug"
770
+ msgstr ""
771
+
772
+ #. Found in changelog paragraph.
773
+ msgid "New: Add-ons page logo"
774
+ msgstr ""
775
+
776
+ #. Found in changelog paragraph.
777
+ msgid "New Add-on: User Registration"
778
+ msgstr ""
779
+
780
+ #. Found in changelog paragraph.
781
+ msgid "New: Form Maker Add-ons page"
782
+ msgstr ""
783
+
784
+ #. Found in changelog paragraph.
785
+ msgid "Fixed: Bug in csv/xml export"
786
+ msgstr ""
787
+
788
+ #. Found in changelog paragraph.
789
+ msgid ""
790
+ "Fixed: Minor bugs<br />\n"
791
+ "Added: Email verification custom post"
792
+ msgstr ""
793
+
794
+ #. Found in changelog paragraph.
795
+ msgid "Fixed: Security issue"
796
+ msgstr ""
797
+
798
+ #. Found in changelog paragraph.
799
+ msgid ""
800
+ "New: ReCaptcha version 2.0\n"
801
+ "New: Arithmetic Captcha"
802
+ msgstr ""
803
+
804
+ #. Found in changelog paragraph.
805
+ msgid "New: Undo/Rendo form"
806
+ msgstr ""
807
+
808
+ #. Found in changelog paragraph.
809
+ msgid "bug in conditional fields fixed"
810
+ msgstr ""
811
+
812
+ #. Found in changelog paragraph.
813
+ msgid "bug in select field fixed"
814
+ msgstr ""
815
+
816
+ #. Found in changelog paragraph.
817
+ msgid "minor bugs fixed"
818
+ msgstr ""
819
+
820
+ #. Found in changelog paragraph.
821
+ msgid ""
822
+ "Changed: Featured plugins page.<br />\n"
823
+ "New: Featured themes page."
824
+ msgstr ""
825
+
826
+ #. Found in changelog paragraph.
827
+ msgid ""
828
+ "Limited up to 7 fields to add\n"
829
+ "Bug fixed"
830
+ msgstr ""
831
+
832
+ #. Found in changelog paragraph.
833
+ msgid "bug in radio and matrix fields fixed"
834
+ msgstr ""
835
+
836
+ #. Found in changelog paragraph.
837
+ msgid "Show custom html and section break id"
838
+ msgstr ""
839
+
840
+ #. Found in changelog paragraph.
841
+ msgid ""
842
+ "Limited up to 9 fields to add\n"
843
+ "New: Enable/Disable Title and Middle Name for Name field"
844
+ msgstr ""
845
+
846
+ #. Found in changelog paragraph.
847
+ msgid "New: Option to disable past days in date picker"
848
+ msgstr ""
849
+
850
+ #. Found in changelog paragraph.
851
+ msgid "security issue fixed"
852
+ msgstr ""
853
+
854
+ #. Found in changelog paragraph.
855
+ msgid "New: Email verification"
856
+ msgstr ""
857
+
858
+ #. Found in changelog paragraph.
859
+ msgid ""
860
+ "bug in recaprcha fixed\n"
861
+ "change links"
862
+ msgstr ""
863
+
864
+ #. Found in changelog paragraph.
865
+ msgid "Allow to use entry values in \"Custom text after submission\""
866
+ msgstr ""
867
+
868
+ #. Found in changelog paragraph.
869
+ msgid ""
870
+ "New: User informetion in mysql mapping\n"
871
+ "Fixed: Country names"
872
+ msgstr ""
873
+
874
+ #. Found in changelog paragraph.
875
+ msgid ""
876
+ "bug fixed in stats\n"
877
+ "change field value type to longtext"
878
+ msgstr ""
879
+
880
+ #. Found in changelog paragraph.
881
+ msgid "Optimize csv/xml export"
882
+ msgstr ""
883
+
884
+ #. Found in changelog paragraph.
885
+ msgid "New: Email empty fields option"
886
+ msgstr ""
887
+
888
+ #. Found in changelog paragraph.
889
+ msgid ""
890
+ "New: Validation (Regular Exp.)\n"
891
+ "Fixed: Select field duplication"
892
+ msgstr ""
893
+
894
+ #. Found in changelog paragraph.
895
+ msgid "bug in address field fixed"
896
+ msgstr ""
897
+
898
+ #. Found in changelog paragraph.
899
+ msgid "bug fixed"
900
+ msgstr ""
901
+
902
+ #. Found in changelog paragraph.
903
+ msgid ""
904
+ "Bug fixed: Hidden field save to DB.<br />\n"
905
+ "New: Drag and drop options in multiple, single choices and select box.<br />\n"
906
+ "New: Select options from database.<br />\n"
907
+ "New: Add image in email as image.<br />\n"
908
+ "New: Additional clauses within conditional fields.<br />\n"
909
+ "New: Search submissions by ID.<br />\n"
910
+ "New: Submission ID in email."
911
+ msgstr ""
912
+
913
+ #. Found in changelog paragraph.
914
+ msgid "Cache issue fixed"
915
+ msgstr ""
916
+
917
+ #. Found in changelog paragraph.
918
+ msgid ""
919
+ "Bug fixed: Empty email \"From name\".\n"
920
+ "Bug fixed: Delete theme."
921
+ msgstr ""
922
+
923
+ #. Found in changelog paragraph.
924
+ msgid ""
925
+ "Bug fixed: Edit submissions.\n"
926
+ "Bug fixed: Conditional fielsd with quota in labels"
927
+ msgstr ""
928
+
929
+ #. Found in changelog paragraph.
930
+ msgid "bug fixed in csv\\xml export"
931
+ msgstr ""
932
+
933
+ #. Found in changelog paragraph.
934
+ msgid "bug fixed in email content"
935
+ msgstr ""
936
+
937
+ #. Found in changelog paragraph.
938
+ msgid "remove fancybox lightbox"
939
+ msgstr ""
940
+
941
+ #. Found in changelog paragraph.
942
+ msgid "display php function to publish form"
943
+ msgstr ""
944
+
945
+ #. Found in changelog paragraph.
946
+ msgid "bug in Recaptcha fixed"
947
+ msgstr ""
948
+
949
+ #. Found in changelog paragraph.
950
+ msgid "Form field reordering using Drag&amp;Drop"
951
+ msgstr ""
952
+
953
+ #. Found in changelog paragraph.
954
+ msgid "wp 4.0.1 shortcode issue fixed"
955
+ msgstr ""
956
+
957
+ #. Found in changelog paragraph.
958
+ msgid "pagination with input"
959
+ msgstr ""
960
+
961
+ #. Found in changelog paragraph.
962
+ msgid "bug fixed in condition fileds"
963
+ msgstr ""
964
+
965
+ #. Found in changelog paragraph.
966
+ msgid "show submitter information in popup (Country, CountryCode, City, Latitude, Longitude)"
967
+ msgstr ""
968
+
969
+ #. Found in changelog paragraph.
970
+ msgid "csv, xml export mark on map"
971
+ msgstr ""
972
+
973
+ #. Found in changelog paragraph.
974
+ msgid "sql mapping"
975
+ msgstr ""
976
+
977
+ #. Found in changelog paragraph.
978
+ msgid "extended name edit bug fixed (if first input is empty)"
979
+ msgstr ""
980
+
981
+ #. Found in changelog paragraph.
982
+ msgid "hidden field edit bug fixed"
983
+ msgstr ""
984
+
985
+ #. Found in changelog paragraph.
986
+ msgid "line break in custom text in email"
987
+ msgstr ""
988
+
989
+ #. Found in changelog paragraph.
990
+ msgid "bug fixed in required radio field"
991
+ msgstr ""
992
+
993
+ #. Found in changelog paragraph.
994
+ msgid "bug fixed in adding new form"
995
+ msgstr ""
996
+
997
+ #. Found in changelog paragraph.
998
+ msgid "new email options, conditional fileds"
999
+ msgstr ""
1000
+
1001
+ #. Found in changelog paragraph.
1002
+ msgid "conflict with jetpack fixed"
1003
+ msgstr ""
1004
+
1005
+ #. Found in changelog paragraph.
1006
+ msgid "bug fixed in form options"
1007
+ msgstr ""
1008
+
1009
+ #. Found in changelog paragraph.
1010
+ msgid "improve themes"
1011
+ msgstr ""
1012
+
1013
+ #. Found in changelog paragraph.
1014
+ msgid "bug fixed in email options"
1015
+ msgstr ""
1016
+
1017
+ #. Found in changelog paragraph.
1018
+ msgid ""
1019
+ "Div structured, responsive form\n"
1020
+ "Editable form layout\n"
1021
+ "New themes"
1022
+ msgstr ""
1023
+
1024
+ #. Found in changelog paragraph.
1025
+ msgid "Initial version"
1026
+ msgstr ""
1027
+
1028
+ #. Found in faq header.
1029
+ msgid "1. What are the most common usage cases for the Form Maker?"
1030
+ msgstr ""
1031
+
1032
+ #. Found in faq header.
1033
+ msgid "2. Where are the submitted entries stored?"
1034
+ msgstr ""
1035
+
1036
+ #. Found in faq header.
1037
+ msgid "3. Are there any limitations on the number of forms or entries to be used within a single website?"
1038
+ msgstr ""
1039
+
1040
+ #. Found in faq header.
1041
+ msgid "4. What can I use to avoid Spam entries?"
1042
+ msgstr ""
1043
+
1044
+ #. Found in faq header.
1045
+ msgid "5. Is it possible to translate the Form Maker into another language?"
1046
+ msgstr ""
1047
+
1048
+ #. Found in faq header.
1049
+ msgid "6. What to do if Administrator and/or user do not receive submissions by email?"
1050
+ msgstr ""
1051
+
1052
+ #. Found in faq header.
1053
+ msgid "7. Is the Form Maker fully responsive?"
1054
+ msgstr ""
1055
+
1056
+ #. Found in faq header.
1057
+ msgid "8. How can I analyze the submitted data?"
1058
+ msgstr ""
1059
+
1060
+ #. Found in faq header.
1061
+ msgid "9. How can I hide specific form fields/make them appear depending on another field value?"
1062
+ msgstr ""
1063
+
1064
+ #. Found in faq header.
1065
+ msgid "10. What payment options does Form Maker support?"
1066
+ msgstr ""
1067
+
1068
+ #. Found in faq paragraph.
1069
+ msgid "The Form Maker can be used for creating multiple types of forms, including contact, evaluation, application forms, quizzes/tests or surveys, online order forms and etc. The Form Maker includes various types of fields which can be modified and edited."
1070
+ msgstr ""
1071
+
1072
+ #. Found in faq paragraph.
1073
+ msgid "There is a Submissions section, where you will find the submitted entries. The entries can also be emailed to the Administrator. For this you should provide an email in Email Options section (located within Form Options). You can also fill in the data into a custom table using MySQL Mapping possibility, which makes it possible to store the data into another MySQL database."
1074
+ msgstr ""
1075
+
1076
+ #. Found in faq paragraph.
1077
+ msgid "There are no limitations on the number of entries per form. You can use unlimited number of forms within each website."
1078
+ msgstr ""
1079
+
1080
+ #. Found in faq paragraph.
1081
+ msgid "The Form Maker has two type of word verifications- Standard Captcha and Google ReCaptcha protection. If you are receiving spam entries from a single or a few IPs, you can use Blocking IPs option."
1082
+ msgstr ""
1083
+
1084
+ #. Found in faq paragraph.
1085
+ msgid "It is only possible to translate the front end of the plugin. To do so, you should set define('WPLANG','[lang_code]') to the desired language code in wp_config.php file of your website. This way the plugin should be translated automatically. Please be informed, that you can modify the translations from wp-content/plugins/form_maker/languages/ (you will need POEdit http://www.poedit.net/download.php)."
1086
+ msgstr ""
1087
+
1088
+ #. Found in faq paragraph.
1089
+ msgid ""
1090
+ "There are a few options to try out first: \n"
1091
+ "Check whether the entries are filtered into spam/junk folders or not.\n"
1092
+ "Try using standard emails (Gmail/Yahoo/Hotmail and etc.) or an email which uses the same domain as the website.\n"
1093
+ "Check with your hosting provider whether you have your PHP mail activated or not.\n"
1094
+ "If these options do not work, please install STMP plugin (e.g. http://wordpress.org/plugins/webriti-smtp-mail/). The authentication details for the Gmail are the following:\n"
1095
+ "Mailer: smtp\n"
1096
+ "SMTP Authentication: yes\n"
1097
+ "SMTP Security: SSL\n"
1098
+ "SMTP Port: 465\n"
1099
+ "SMTP Username: your gmail full address\n"
1100
+ "SMTP Password: your gmail password\n"
1101
+ "SMTP Host: smtp.gmail.com"
1102
+ msgstr ""
1103
+
1104
+ #. Found in faq paragraph.
1105
+ msgid "After installation please use the test option. If the test email doesn’t get send out contact your hosting provider to fix the issue."
1106
+ msgstr ""
1107
+
1108
+ #. Found in faq paragraph.
1109
+ msgid "Yes, the WordPress Form Maker is fully responsive and works with various smartphones and tablets."
1110
+ msgstr ""
1111
+
1112
+ #. Found in faq paragraph.
1113
+ msgid "The Form Maker has separate section for the Statistical type of entries (Select fields, checkboxes and radio buttons). In addition there are two export options- into CSV or XML format. You can import CSV into Excel for data processing."
1114
+ msgstr ""
1115
+
1116
+ #. Found in faq paragraph.
1117
+ msgid "The Form Maker has support for the Conditional fields. The option can be found in the Form Options. The structure of the conditional fields is the following: You can specify to show/hide a field, when the condition is true and provide the condition below, e.g. Show “How many visitors will you have” if “Will you have visitors” is “Yes”."
1118
+ msgstr ""
1119
+
1120
+ #. Found in faq paragraph.
1121
+ msgid "The Form Maker (Pro version) has simple PayPal integration. This allows the user to select specific items and upon hitting submit button get redirected to PayPal. After making the payment, the user gets back to the website."
1122
+ msgstr ""
1123
+
1124
+ #. Found in remaining content header.
1125
+ msgid "Wordpress Form Maker Step by step guide"
1126
+ msgstr ""
1127
+
1128
+ #. Found in remaining content header.
1129
+ msgid "Step 1: Installing the [Wordpress Form](http://wordpress.org/plugins/form-maker/) Maker"
1130
+ msgstr ""
1131
+
1132
+ #. Found in remaining content header.
1133
+ msgid "Step 2: Creating a new form"
1134
+ msgstr ""
1135
+
1136
+ #. Found in remaining content header.
1137
+ msgid "Step 3: Configuring Form Builder Options"
1138
+ msgstr ""
1139
+
1140
+ #. Found in remaining content header.
1141
+ msgid "Step 4: Description of the form fields"
1142
+ msgstr ""
1143
+
1144
+ #. Found in remaining content header.
1145
+ msgid "Step 5: Publishing the created form."
1146
+ msgstr ""
1147
+
1148
+ #. Found in remaining content header.
1149
+ msgid "Step 6: Managing submissions of the form."
1150
+ msgstr ""
1151
+
1152
+ #. Found in remaining content paragraph.
1153
+ msgid ""
1154
+ "1.1 Minimum requirements.<br />\n"
1155
+ "Wordpress 3.4+<br />\n"
1156
+ "PHP 5.x<br />\n"
1157
+ "MySQL 5.x"
1158
+ msgstr ""
1159
+
1160
+ #. Found in remaining content paragraph.
1161
+ msgid ""
1162
+ "1.2 Perform a new installation.<br />\n"
1163
+ "Log in to the administrator panel.<br />\n"
1164
+ "Go to Plugins Add &gt; New &gt; Upload.<br />\n"
1165
+ "Click “Choose file” (“Browse”) and select the Form Maker zip file.<br />\n"
1166
+ "<em>For Mac Users</em><br />\n"
1167
+ "<em>Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.</em><br />\n"
1168
+ "Click “Install Now” button.<br />\n"
1169
+ "If the installation succeeded you will see the message in the picture.<br />\n"
1170
+ "Click “Activate Plugin” button for activating the plugin.<br />\n"
1171
+ "If any problem occurs, please contact us at info@web-dorado.com."
1172
+ msgstr ""
1173
+
1174
+ #. Found in remaining content paragraph.
1175
+ msgid "1.3 Updating the form."
1176
+ msgstr ""
1177
+
1178
+ #. Found in remaining content paragraph.
1179
+ msgid "If you want to update the form builder plugin while preserving your existing forms, you need to deactivate and delete the Form Maker from the list of installed plugins (Do not uninstall it using the Uninstall Form Maker option of the plugin, otherwise you will lose your initial data) and install the new plugin."
1180
+ msgstr ""
1181
+
1182
+ #. Found in remaining content paragraph.
1183
+ msgid ""
1184
+ "2.1 On the left menu select Form Maker &gt; Manager<br />\n"
1185
+ "2.2 In the upper left corner click on the “Add a form” button.<br />\n"
1186
+ "2.3 Form Title. Specify a title for the form (Try to use unique titles)."
1187
+ msgstr ""
1188
+
1189
+ #. Found in remaining content paragraph.
1190
+ msgid ""
1191
+ "3.1 General Options<br />\n"
1192
+ "Published. Choose whether to publish the form or leave it as a draft.<br />\n"
1193
+ "Save data (to database). Choose whether to have the submitted forms in the submissions section or have them only sent to the Admin’s email (this should be done in Email Options section).<br />\n"
1194
+ "Theme. A distinct theme can be applied to each new form. The themes can be accessed by selecting FormMaker &gt; Themes on the top menu. A large number of themes is available for selection. You can preview the theme as well as make changes in the CSS of the theme to make desired changes with the button right next to it.<br />\n"
1195
+ "Required fields mark. The required fields mark can be customized and changes from the default asterisk symbol."
1196
+ msgstr ""
1197
+
1198
+ #. Found in remaining content paragraph.
1199
+ msgid ""
1200
+ "3.2 Email Options.<br />\n"
1201
+ "3.2.1 Send Email. Choose whether to send out emails based on the submitted forms to the Administrator/Submitter.\n"
1202
+ "Email to Administrator<br />\n"
1203
+ "3.2.2 Email to send submissions to. Here you provide e-mails to which submitted form information is sent. If you need more than one e-mail address, you must separate them by commas.<br />\n"
1204
+ "3.2.3 Email From. Here you define the email address from which the users receive the submission email (sender’s email).<br />\n"
1205
+ "3.2.4 From Name. Here you define the sender’s name which is shown in submission email.<br />\n"
1206
+ "3.2.5 Reply to (if different from \"Email From\"). Specify an alternative email address to which the administrator will be able to reply upon receiving the submitted form.<br />\n"
1207
+ "3.2.6 Custom Text in Email. Here you can add custom texts, images, and custom HTML to the e-mail message that is sent to the administrator, as well as choose which fields of the submitted form are included in the e-mail (set to ‘all’ by default).<br />\n"
1208
+ "Email to User<br />\n"
1209
+ "3.2.7 Send to. Here you select the Email field in the Form to send out the email to.<br />\n"
1210
+ "3.2.8 Email From. Here you define the email address from which the users receive the submission email (sender’s email).<br />\n"
1211
+ "3.2.9 From Name. Here you define the sender’s name which is shown in submission email.<br />\n"
1212
+ "3.2.10 Reply to (if different from \"Email From\"). Specify an alternative email address to which the user will be able to reply upon receiving the submitted form.<br />\n"
1213
+ "3.2.11 Custom Text in Email. Here you can add custom texts, images, and custom HTML to the e-mail message that is sent to the administrator, as well as choose which fields of the submitted form are included in the e-mail (set to ‘all’ by default)."
1214
+ msgstr ""
1215
+
1216
+ #. Found in remaining content paragraph.
1217
+ msgid ""
1218
+ "3.3 Actions after Submission<br />\n"
1219
+ "Here you can select the action that takes place after form submission. Following options are available:<br />\n"
1220
+ "- Stay on form: The user stays on the form page.<br />\n"
1221
+ "- Article: The user is redirected to the selected article.<br />\n"
1222
+ "- Custom text: Custom text is displayed on the screen.<br />\n"
1223
+ "- URL: The user is redirected to the provided URL."
1224
+ msgstr ""
1225
+
1226
+ #. Found in remaining content paragraph.
1227
+ msgid ""
1228
+ "3.4 Payment Options<br />\n"
1229
+ "3.4.1 Turn on PayPal. Allows making PayPal paymentsusing Form Maker.<br />\n"
1230
+ "3.4.2 Checkout Mode. Choose the checkout mode:<br />\n"
1231
+ "Production( https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/goingLive/ )<br />\n"
1232
+ "Test Mode ( https://developer.paypal.com/webapps/developer/docs/integration/direct/test-the-api/ )<br />\n"
1233
+ "3.4.3 PayPal Email. Enter your PayPal email.<br />\n"
1234
+ "3.4.4 PayPal Currency. Choose your PayPal currency.<br />\n"
1235
+ "3.4.5 Tax. Add the tax amount if any."
1236
+ msgstr ""
1237
+
1238
+ #. Found in remaining content paragraph.
1239
+ msgid ""
1240
+ "3.5 JavaScript<br />\n"
1241
+ "Here you can define new JavaScript functions, which can be applied to the form. Three empty event functions are included:<br />\n"
1242
+ "- before_load(): before the form is loaded<br />\n"
1243
+ "- before_submit(): before the form is submitted<br />\n"
1244
+ "- before_reset(): before the form is reset"
1245
+ msgstr ""
1246
+
1247
+ #. Found in remaining content paragraph.
1248
+ msgid ""
1249
+ "3.6 Conditional Fields.<br />\n"
1250
+ "3.6.1 Add Condition. Using plus (+) button on the upper left hand you can connect specific fields. The following field types are allowed to be used as conditional fields: Simple text, Password, Textarea, Name, Address (Country field- only), Email, Number, Phone, Multiple Choice, Single Choice, Select, PayPal fields (with an exception of the Total field).<br />\n"
1251
+ "The formula of the conditional fields is the following:<br />\n"
1252
+ "For the main condition:<br />\n"
1253
+ "Show/Hide+Field 1+if any/all+of the following match<br />\n"
1254
+ "For the case(s):<br />\n"
1255
+ "Field 2+ is/ is not+Value, e.g.<br />\n"
1256
+ "Hide State if all of the following match<br />\n"
1257
+ "Country is not United States."
1258
+ msgstr ""
1259
+
1260
+ #. Found in remaining content paragraph.
1261
+ msgid ""
1262
+ "3.7 Form Layout<br />\n"
1263
+ "Here you can customize the layout of the form fields unchecking the Auto-Generate Layout checkbox and edit the HTML. The sample and more details for this option can be found in the back end of the plugin."
1264
+ msgstr ""
1265
+
1266
+ #. Found in remaining content paragraph.
1267
+ msgid "4.1 Custom HTML:An HTML editor. You can insert your own HTML content to your WordPress form builder."
1268
+ msgstr ""
1269
+
1270
+ #. Found in remaining content paragraph.
1271
+ msgid ""
1272
+ "4.2 Text Input: At first choose the form Field Type according to your preference. There are several options:<br />\n"
1273
+ "Simple Text: This can be used for typing some text. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes"
1274
+ msgstr ""
1275
+
1276
+ #. Found in remaining content paragraph.
1277
+ msgid ""
1278
+ "Password: This field can be used for adding a password field to your form. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Allow only unique values, Additional Attributes<br />\n"
1279
+ "Text Area: This field can be used for typing some text. The difference between Text Area and Simple Text is that Simple Text has only one row while Text Area can have several rows. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes<br />\n"
1280
+ "Name: This can be used for typing a name. Default field labels can be edited clicking on the field label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Value If Empty, Field Size, Name Format, Class Name, Required, Allow only unique values, Additional Attributes<br />\n"
1281
+ "Address: This field can be used for adding an address. Default field labels can be edited clicking on the label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Overall Size, Class Name, Disable Fields, Required, Additional Attributes<br />\n"
1282
+ "Address (Mark on Map):This filed can be used for adding an address by directly marking it on the map. It has several attributes: Field Label, Field Label Position, Default Location, Map Size, Marker Info, Class Name, Additional Attributes<br />\n"
1283
+ "E-mail:This field can be used for typing the submitter’s e-mail. The submitted e-mail validation is checked. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Send mail to submitter, Required, Allow only unique values, Additional Attributes.<br />\n"
1284
+ "Number: This field can be used to provide numbers for different purposes (e.g. serial number). It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes<br />\n"
1285
+ "Phone: This field can be used to provide a phone number. Default field labels can be edited clicking on the label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Value If Empty, Field Size, Class Name, Required, Allow only unique values, Additional Attributes<br />\n"
1286
+ "Hidden Field: This field can be used to store additional information that does not need to be displayed. It has several attributes : Field ld, Field Name, Field Value, Additional Attributes.<br />\n"
1287
+ "4.3 Time and Date: Choose the Field Type according to your preference. There are several options:<br />\n"
1288
+ "Date (single field with a picker): This field can be used for typing a date or choosing by the picker. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Date format, Date Picker Label, Class Name, Required, Additional Attributes.<br />\n"
1289
+ "Date (3 separate fields): This field can be used for typing a date in 3 field format(day, month, year). Default field labels can be edited clicking on the field label and typing in a custom label. Each of the 3 fields can be set as text input or select list. Each of the 3 fields has the attributes Field Size and Field Label. For year field the select list interval can be defined. These 3 fields can be separated in the format set by the fields separator attribute. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes.<br />\n"
1290
+ "Time: This field can be used for typing a time. Default field labels can be edited clicking on the field label and typing in a custom label. Time can be shown in 24 hour or 12 hour formats by setting the time format attribute. The seconds preview can be enabled/disabled by setting the Display Seconds attribute. The field has several standard attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes.<br />\n"
1291
+ "4.4 Select: Choose the Field Type according to your preference. There are several options:<br />\n"
1292
+ "Custom select: This field can be used for selecting the values from a list. The list can be defined by Options attribute. You can easily add and remove list items. The checked items are considered as empty values. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Additional Attributes.<br />\n"
1293
+ "Country list: This field can be used for selecting a country from a list. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Additional Attributes.<br />\n"
1294
+ "4.5 Checkbox: This field can be used for selecting the values from a list of checkboxes. The list can be defined by Options attribute. You can easily add and remove list items. The list can be displayed in horizontal/vertical positions by setting the Relative Position attribute. You can use Rows/Columns field if you want the options to be displayed in a row/column (depending on the positioning choice). The number of rows/columns should be specified. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Randomize in frontend, Allow other, Additional Attributes."
1295
+ msgstr ""
1296
+
1297
+ #. Found in remaining content paragraph.
1298
+ msgid "4.6 Radio:This form field can be used for selecting the values from a list of radio buttons. The list can be defined by Options attribute. You can use Rows/Columns field if you want the options to be displayed in a row/column (depending on the positioning choice). The number of rows/columns should be specified. You can easily add and remove list items. The list can be displayed in horizontal/vertical positions by setting the Relative Position attribute.The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Randomize in frontend, Allow other, Additional Attributes."
1299
+ msgstr ""
1300
+
1301
+ #. Found in remaining content paragraph.
1302
+ msgid "4.7 File Upload: This form field can be used for uploading files. The size of the uploaded file can be limited by setting the value of Maximum Size attribute in KB. The upload folder can be mentioned by setting the Destination attribute. Only files with extensions listed in Allowed file extensions attribute can be uploaded. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes."
1303
+ msgstr ""
1304
+
1305
+ #. Found in remaining content paragraph.
1306
+ msgid ""
1307
+ "4.8 Captcha:This field can be used for the ensuring that the submission is generated by a person. Choose the Field Type according to your preference. There are several options:<br />\n"
1308
+ "Simple Captcha This is a easy to configure Simple Captcha. The number of randomly generated symbols can be set by the value of Captcha size attribute. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Additional Attributes.<br />\n"
1309
+ "Recaptcha This is an alternative option for Captcha that uses Public and Private Keys. You will need to create reCaptcha keys with the help of a dedicated tool.The tool can be found on https://www.google.com/recaptcha/admin/create."
1310
+ msgstr ""
1311
+
1312
+ #. Found in remaining content paragraph.
1313
+ msgid ""
1314
+ "4.9 Page Break: This can be used to break the form into distinct pages. Use Page Title to provide a title for the given page. Furthermore, the following parameters of the “Next” and “Previous” navigation buttons can be customized:<br />\n"
1315
+ "Type, Name, Class Name, Check the required fields , Additional Attributes."
1316
+ msgstr ""
1317
+
1318
+ #. Found in remaining content paragraph.
1319
+ msgid "4.10 Section Break: This option allows adding a section break to the form page."
1320
+ msgstr ""
1321
+
1322
+ #. Found in remaining content paragraph.
1323
+ msgid ""
1324
+ "4.11 Map: This field can be used for pointing out some position on the map. The position of the marker is fixed at the front end. Multiple locations can be selected by clicking the + button. The field has several attributes:<br />\n"
1325
+ "Location, Map Size, Marker Info, Class Name, Additional Attributes."
1326
+ msgstr ""
1327
+
1328
+ #. Found in remaining content paragraph.
1329
+ msgid ""
1330
+ "4.12 PayPal: Choose the Field Type. The following options are available:<br />\n"
1331
+ "Amount (Price) This field is for indicating the amount of payment. Default field labels can be edited clicking on the field label and typing in a custom label. You can configure the following attributes: Field Label, Field Label Position, Range, Value If Empty, Field Size, Class Name, Required, Hide Cents, and Additional Attributes.<br />\n"
1332
+ "Select This field can be used for selecting a product/service for which the payment is being made. The list (each item consists of “Product name” and its “Price”)can be specified by the Options attribute. You can easily add and remove list items. There is also a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. The checked items are considered as empty values. You can configure the following attributes: Field Label, Field Label Position, Field Size, Class Name, Required, and Additional Attributes.<br />\n"
1333
+ "Checkbox This field can be used for selecting multiple products/services for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.<br />\n"
1334
+ "Radio This field can be used for selecting the product/service for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.<br />\n"
1335
+ "Shipping This field can be used for selecting the shipping option for the selected product. The options (each item consists of a “Type” and “Price” parameters) can be specified by the Options attribute. You can easily add and remove list items. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.<br />\n"
1336
+ "Total This field calculates the total sum to be paid via PayPal, including the payments for the shipping and taxes (if applicable)."
1337
+ msgstr ""
1338
+
1339
+ #. Found in remaining content paragraph.
1340
+ msgid ""
1341
+ "4.13 Survey Tools: Choose the Field Type according to your preferences. There are several options:<br />\n"
1342
+ "Star Rating: This field can be used for inserting star rating field in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Label Position, Star Amount, Star Color, Class Name, Required, and Additional Attributes.<br />\n"
1343
+ "Scale Rating: This field can be used for inserting scale rating in the form. Type the name of the field to be displayed with the rating system.Default field labels for lowest/highest satisfaction/grading can be edited clicking on the field label and typing in a custom label. The field has several attributes: Field Label Position, Scale Amount, Class Name, Required, and Additional Attributes.<br />\n"
1344
+ "Spinner: This field can be used for inserting spinner as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Step, Class Name, Required, and Additional Attributes.<br />\n"
1345
+ "Slider: This field can be used for inserting slider as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Class Name, Required, and Additional Attributes.<br />\n"
1346
+ "Range: This field can be used for inserting range system in the form. Type the name of the field to be displayed with the range system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Step, Class Name, Required, and Additional Attributes.<br />\n"
1347
+ "Grading: This field can be used for inserting grading system in the form. Type the name of the field to be displayed with the grading system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Total, Items, Class Name, Required, and Additional Attributes.<br />\n"
1348
+ "Matrix: This field can be used for inserting a matrix in the form. Type the name of the field to be displayed with the matrix. The field has several attributes: Field Label, Field Label Position, Input Type, Rows, Columns, Class Name, Required, and Additional Attributes.<br />\n"
1349
+ "4.14 Submit Button: Choose the Field Type according to your preference. There are several options:<br />\n"
1350
+ "Submit and Reset: This field can be used for inserting a submit/reset button into the form. You can display reset button by checking the box called Display reset button. Type the name of the submit and reset buttons in Submit button label and Reset button label. The field also has several attributes: Class Name and Additional Attributes.<br />\n"
1351
+ "Custom: This field can be used for inserting custom buttons into the form. Type the name of each button in button name field. You can define click functions for each button. The field also has several attributes: Class Name and Additional Attributes."
1352
+ msgstr ""
1353
+
1354
+ #. Found in remaining content paragraph.
1355
+ msgid "To insert a form into a Page or a Post."
1356
+ msgstr ""
1357
+
1358
+ #. Found in remaining content paragraph.
1359
+ msgid "5.1. Press the button named Insert Form Maker in a post or a page you want to show the form."
1360
+ msgstr ""
1361
+
1362
+ #. Found in remaining content paragraph.
1363
+ msgid "5.2. Select a form from the list."
1364
+ msgstr ""
1365
+
1366
+ #. Found in remaining content paragraph.
1367
+ msgid "5.3. Save the page or the post."
1368
+ msgstr ""
1369
+
1370
+ #. Found in remaining content paragraph.
1371
+ msgid "Alternatively, you can use form builder without the button on the toolbar. Add the shortcode [Form id=\"N\"] (where N is the id of the form, for the form with id=2, the shortcode must be [Form id=\"2\"]) to the pages and posts, where you want the form to appear. For each form you can find the relevant shortcode from Manager view, it is stored on the right corner of the form title."
1372
+ msgstr ""
1373
+
1374
+ #. Found in remaining content paragraph.
1375
+ msgid "6.1 On the left menu select Form Maker &gt; Submissions"
1376
+ msgstr ""
1377
+
1378
+ #. Found in remaining content paragraph.
1379
+ msgid "6.2 In order to manage a form's submissions, select the form from the list."
1380
+ msgstr ""
1381
+
1382
+ #. Found in remaining content paragraph.
1383
+ msgid ""
1384
+ "6.3 For each form certain types of statistical data are available:<br />\n"
1385
+ "- Entries: The number of submitted forms.<br />\n"
1386
+ "- Views: The number of times the form has been viewed.<br />\n"
1387
+ "- Conversion Rate: The percentage of submitted forms to the overall number of views."
1388
+ msgstr ""
1389
+
1390
+ #. Found in remaining content paragraph.
1391
+ msgid "6.4 For the forms that contain checkboxes or radio buttons a separate statistics is available. It shows how many times a particular checkbox/radio button has been checked, and what is the ratio of that number to the overall number of checks."
1392
+ msgstr ""
1393
+
1394
+ #. Found in remaining content paragraph.
1395
+ msgid "6.5 Form builder allows to search the submissions database by all the relevant fields of the given form. Submissions can be sorted by any of the fields of the form by clicking the labels."
1396
+ msgstr ""
1397
+
1398
+ #. Found in remaining content paragraph.
1399
+ msgid "6.6 Form builder allows to delete any of submissions by selecting them and pressing the “Delete” button on the top of the page."
1400
+ msgstr ""
1401
+
1402
+ #. Found in remaining content paragraph.
1403
+ msgid "6.7 Form builder allows to edit the submissions by clicking on the “Edit” icon on the upper right corner of the “Submissions” section."
1404
+ msgstr ""
1405
+
1406
+ #. Found in remaining content paragraph.
1407
+ msgid "6.8 Form builder allows to add/remove any column of the submissions by “Add/Remove Columns” button."
1408
+ msgstr ""
1409
+
1410
+ #. Found in remaining content paragraph.
1411
+ msgid "6.9 The submissions can be exported to the CSV and XML formats."
1412
+ msgstr ""