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

Version Description

Added: Verified emails list in csv, xml files

Download this release

Release Info

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

Code changes from version 1.10 to 1.10.1

admin/models/FMModelGenerete_csv.php CHANGED
@@ -26,6 +26,7 @@ class FMModelGenerete_csv {
26
  $form_id = (int)$_REQUEST['form_id'];
27
  $limitstart = (int)$_REQUEST['limitstart'];
28
  $search_labels = isset($_REQUEST['search_labels']) ? $_REQUEST['search_labels'] : '';
 
29
 
30
 
31
  $paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info', 'ipn', 'tax', 'shipping');
@@ -48,6 +49,7 @@ class FMModelGenerete_csv {
48
 
49
  $sorted_labels_id = array();
50
  $sorted_labels = array();
 
51
  $label_titles = array();
52
  $label_id = array();
53
  $label_order = array();
@@ -70,6 +72,7 @@ class FMModelGenerete_csv {
70
  array_push($sorted_labels, $label_order[$key]);
71
  array_push($sorted_labels_id, $label);
72
  array_push($label_titles, stripslashes($label_order_original[$key]));
 
73
  }
74
  }
75
  }
@@ -228,6 +231,18 @@ class FMModelGenerete_csv {
228
  }
229
  else
230
  $data_temp[stripslashes($label_titles[$h])] = '';
 
 
 
 
 
 
 
 
 
 
 
 
231
  }
232
 
233
  $query = $wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits where element_label=%s AND form_id = %d AND group_id=%d",'item_total', $form_id, $i);
26
  $form_id = (int)$_REQUEST['form_id'];
27
  $limitstart = (int)$_REQUEST['limitstart'];
28
  $search_labels = isset($_REQUEST['search_labels']) ? $_REQUEST['search_labels'] : '';
29
+ $verified_emails = isset($_REQUEST['verified_emails']) ? json_decode(stripslashes($_REQUEST['verified_emails']), true) : array();
30
 
31
 
32
  $paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info', 'ipn', 'tax', 'shipping');
49
 
50
  $sorted_labels_id = array();
51
  $sorted_labels = array();
52
+ $sorted_types = array();
53
  $label_titles = array();
54
  $label_id = array();
55
  $label_order = array();
72
  array_push($sorted_labels, $label_order[$key]);
73
  array_push($sorted_labels_id, $label);
74
  array_push($label_titles, stripslashes($label_order_original[$key]));
75
+ array_push($sorted_types, $label_type[$key]);
76
  }
77
  }
78
  }
231
  }
232
  else
233
  $data_temp[stripslashes($label_titles[$h])] = '';
234
+
235
+ if(isset($verified_emails[$sorted_labels_id[$h]]) && $sorted_types[$h] == "type_submitter_mail") {
236
+ if($data_temp[stripslashes($label_titles[$h])] == '') {
237
+ $data_temp[stripslashes($label_titles[$h]).'(verified)'] = '';
238
+ } else {
239
+ if(in_array($i, $verified_emails[$sorted_labels_id[$h]])){
240
+ $data_temp[stripslashes($label_titles[$h]).'(verified)']= 'yes';
241
+ } else{
242
+ $data_temp[stripslashes($label_titles[$h]).'(verified)']= 'no';
243
+ }
244
+ }
245
+ }
246
  }
247
 
248
  $query = $wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits where element_label=%s AND form_id = %d AND group_id=%d",'item_total', $form_id, $i);
admin/models/FMModelGenerete_xml.php CHANGED
@@ -27,6 +27,7 @@ class FMModelGenerete_xml {
27
  $form_id = (int)$_REQUEST['form_id'];
28
  $limitstart = (int)$_REQUEST['limitstart'];
29
  $search_labels = isset($_REQUEST['search_labels']) ? $_REQUEST['search_labels'] : '';
 
30
 
31
  $paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info', 'ipn', 'tax', 'shipping');
32
  $paypal_info_labels = array( 'Currency', 'Last modified', 'Status', 'Full Name', 'Fax', 'Mobile phone', 'Email', 'Phone', 'Address', 'Paypal info', 'IPN', 'Tax', 'Shipping');
@@ -47,6 +48,7 @@ class FMModelGenerete_xml {
47
 
48
  $sorted_labels_id = array();
49
  $sorted_labels = array();
 
50
  $label_titles = array();
51
  $label_id = array();
52
  $label_order = array();
@@ -69,6 +71,7 @@ class FMModelGenerete_xml {
69
  array_push($sorted_labels, $label_order[$key]);
70
  array_push($sorted_labels_id, $label);
71
  array_push($label_titles, stripslashes($label_order_original[$key]));
 
72
  }
73
  }
74
  }
@@ -224,6 +227,18 @@ class FMModelGenerete_xml {
224
  }
225
  else
226
  $data_temp[stripslashes($label_titles[$h])] = '';
 
 
 
 
 
 
 
 
 
 
 
 
227
  }
228
 
229
  $item_total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s",$i,'item_total'));
27
  $form_id = (int)$_REQUEST['form_id'];
28
  $limitstart = (int)$_REQUEST['limitstart'];
29
  $search_labels = isset($_REQUEST['search_labels']) ? $_REQUEST['search_labels'] : '';
30
+ $verified_emails = isset($_REQUEST['verified_emails']) ? json_decode(stripslashes($_REQUEST['verified_emails']), true) : array();
31
 
32
  $paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info', 'ipn', 'tax', 'shipping');
33
  $paypal_info_labels = array( 'Currency', 'Last modified', 'Status', 'Full Name', 'Fax', 'Mobile phone', 'Email', 'Phone', 'Address', 'Paypal info', 'IPN', 'Tax', 'Shipping');
48
 
49
  $sorted_labels_id = array();
50
  $sorted_labels = array();
51
+ $sorted_types = array();
52
  $label_titles = array();
53
  $label_id = array();
54
  $label_order = array();
71
  array_push($sorted_labels, $label_order[$key]);
72
  array_push($sorted_labels_id, $label);
73
  array_push($label_titles, stripslashes($label_order_original[$key]));
74
+ array_push($sorted_types, $label_type[$key]);
75
  }
76
  }
77
  }
227
  }
228
  else
229
  $data_temp[stripslashes($label_titles[$h])] = '';
230
+
231
+ if(isset($verified_emails[$sorted_labels_id[$h]]) && $sorted_types[$h] == "type_submitter_mail") {
232
+ if($data_temp[stripslashes($label_titles[$h])] == '') {
233
+ $data_temp[stripslashes($label_titles[$h]).'(verified)'] = '';
234
+ } else {
235
+ if(in_array($i, $verified_emails[$sorted_labels_id[$h]])){
236
+ $data_temp[stripslashes($label_titles[$h]).'(verified)']= 'yes';
237
+ } else{
238
+ $data_temp[stripslashes($label_titles[$h]).'(verified)']= 'no';
239
+ }
240
+ }
241
+ }
242
  }
243
 
244
  $item_total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s",$i,'item_total'));
admin/views/FMViewSubmissions_fm.php CHANGED
@@ -75,6 +75,7 @@ class FMViewSubmissions_fm {
75
  }
76
  }
77
  }
 
78
  ?>
79
  <script type="text/javascript">
80
  function export_submissions(type, limit) {
@@ -87,7 +88,7 @@ class FMViewSubmissions_fm {
87
  jQuery.ajax({
88
  type: "POST",
89
  url:"<?php echo add_query_arg(array('form_id' => $form_id, 'send_header' => 0), admin_url('admin-ajax.php')); ?>&action=generete_"+type+"&limitstart="+limit,
90
- data: {search_labels : '<?php echo $searched_ids; ?>'},
91
  beforeSend: function() {
92
  if(<?php echo $subs_count; ?> >= 1000 )
93
  jQuery('.fm_modal').show();
@@ -711,7 +712,12 @@ class FMViewSubmissions_fm {
711
  $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND group_id="%d" AND element_value="verified**%d"', $form_id, $i, $sorted_labels_id[$h]);
712
  $isverified = $wpdb->get_var($query);
713
 
714
- if($isverified) { ?>
 
 
 
 
 
715
  <td class="<?php echo $sorted_labels_id[$h];?>_fc" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
716
  <p><?php echo $temp[$g]->element_value; ?> <span style="color:#2DA068;">( Verified <img src="<?php echo WD_FM_URL . '/images/verified.png'; ?>" /> )</span></p>
717
  </td>
@@ -834,7 +840,20 @@ class FMViewSubmissions_fm {
834
  }
835
  }
836
  ?>
837
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
838
  </form>
839
  <script>
840
  function fm_scroll(element) {
75
  }
76
  }
77
  }
78
+ $verified_emails = array();
79
  ?>
80
  <script type="text/javascript">
81
  function export_submissions(type, limit) {
88
  jQuery.ajax({
89
  type: "POST",
90
  url:"<?php echo add_query_arg(array('form_id' => $form_id, 'send_header' => 0), admin_url('admin-ajax.php')); ?>&action=generete_"+type+"&limitstart="+limit,
91
+ data: {search_labels : '<?php echo $searched_ids; ?>', verified_emails: jQuery('#verified_emails').val() },
92
  beforeSend: function() {
93
  if(<?php echo $subs_count; ?> >= 1000 )
94
  jQuery('.fm_modal').show();
712
  $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND group_id="%d" AND element_value="verified**%d"', $form_id, $i, $sorted_labels_id[$h]);
713
  $isverified = $wpdb->get_var($query);
714
 
715
+ if($isverified) {
716
+ if(!isset($verified_emails[$sorted_labels_id[$h]]))
717
+ $verified_emails[$sorted_labels_id[$h]] = array();
718
+
719
+ $verified_emails[$sorted_labels_id[$h]][] = $i;
720
+ ?>
721
  <td class="<?php echo $sorted_labels_id[$h];?>_fc" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
722
  <p><?php echo $temp[$g]->element_value; ?> <span style="color:#2DA068;">( Verified <img src="<?php echo WD_FM_URL . '/images/verified.png'; ?>" /> )</span></p>
723
  </td>
840
  }
841
  }
842
  ?>
843
+ </div>
844
+ <?php
845
+ $in_already_verified = $verified_emails ? 'AND REPLACE(element_label, "verifyInfo@", "") NOT IN ('.implode(',', array_keys( $verified_emails )).')' : '';
846
+ $query = $wpdb->prepare('SELECT REPLACE(element_label, "verifyInfo@", "") as label FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND element_label REGEXP "verifyInfo@" '.$in_already_verified, $form_id);
847
+ $not_verified_labels = $wpdb->get_col($query);
848
+ if($not_verified_labels){
849
+
850
+ foreach($not_verified_labels as $key => $value ){
851
+ $verified_emails[$value] = array();
852
+ }
853
+
854
+ }
855
+ ?>
856
+ <input type="hidden" name="verified_emails" id="verified_emails" value='<?php echo json_encode($verified_emails); ?>' />
857
  </form>
858
  <script>
859
  function fm_scroll(element) {
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.10
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -272,7 +272,7 @@ function register_fmemailverification_cpt(){
272
  // Activate plugin.
273
  function form_maker_activate() {
274
  $version = get_option("wd_form_maker_version");
275
- $new_version = '1.10';
276
  global $wpdb;
277
  if (!$version) {
278
  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.10.1
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
272
  // Activate plugin.
273
  function form_maker_activate() {
274
  $version = get_option("wd_form_maker_version");
275
+ $new_version = '1.10.1';
276
  global $wpdb;
277
  if (!$version) {
278
  add_option("wd_form_maker_version", $new_version, '', 'no');
frontend/models/FMModelVerify_email.php CHANGED
@@ -20,26 +20,22 @@ class FMModelVerify_email {
20
  ////////////////////////////////////////////////////////////////////////////////////////
21
  function setValidation($gid, $md5, $email) {
22
  global $wpdb;
23
- $query = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."formmaker_submits WHERE group_id='%d' AND element_label= 'verifyInfo' AND element_value REGEXP 'verified'", $gid);
24
- $verified_row = $wpdb->get_row($query);
25
-
26
- if($verified_row)
27
- $view = __('Your email address is already verified.', 'form_maker');
28
- else
29
- {
30
- $query = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."formmaker_submits WHERE group_id='%d' AND element_label REGEXP 'verifyInfo' AND element_value NOT REGEXP 'verified'", $gid);
31
- $rows = $wpdb->get_results($query);
32
-
33
- if (!$rows)
34
- return false;
35
-
36
- $view = '';
37
- foreach($rows as $row){
38
  $verifyInfo = explode('**',$row->element_value);
39
  $key = $verifyInfo[0];
40
  $expHour = $verifyInfo[1];
41
  $recipiend = $verifyInfo[2];
42
-
43
  if($recipiend == $email) {
44
  $date = strtotime($row->date);
45
  if($key === $md5){
@@ -102,8 +98,8 @@ class FMModelVerify_email {
102
  }
103
  else
104
  continue;
105
- }
106
- }
107
  return $view;
108
  }
109
 
20
  ////////////////////////////////////////////////////////////////////////////////////////
21
  function setValidation($gid, $md5, $email) {
22
  global $wpdb;
23
+ $query = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."formmaker_submits WHERE group_id='%d' AND element_label REGEXP 'verifyInfo'", $gid);
24
+ $rows = $wpdb->get_results($query);
25
+ if (!$rows) {
26
+ return false;
27
+ }
28
+ $view = '';
29
+ foreach ($rows as $row) {
30
+ if ($row->element_label == 'verifyInfo') {
31
+ $view = __('Your email address is already verified.', 'form_maker');
32
+ continue;
33
+ }
34
+ elseif ($row->element_label == 'verifyInfo@' . $email) {
 
 
 
35
  $verifyInfo = explode('**',$row->element_value);
36
  $key = $verifyInfo[0];
37
  $expHour = $verifyInfo[1];
38
  $recipiend = $verifyInfo[2];
 
39
  if($recipiend == $email) {
40
  $date = strtotime($row->date);
41
  if($key === $md5){
98
  }
99
  else
100
  continue;
101
+ }
102
+ }
103
  return $view;
104
  }
105
 
languages/form_maker-nl_NL.po CHANGED
@@ -1,507 +1,507 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: form_maker\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-22 17:02+0400\n"
6
- "PO-Revision-Date: 2016-11-15 16:35+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
- "Language: nl\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.8.11\n"
16
- "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
17
-
18
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
19
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
20
- msgid "Street Address"
21
- msgstr "Adres"
22
-
23
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
24
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
25
- msgid "Street Address Line 2"
26
- msgstr "Adresregel 2"
27
-
28
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
29
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
30
- msgid "City"
31
- msgstr "Plaats"
32
-
33
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
34
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
35
- msgid "State / Province / Region"
36
- msgstr "Staat / Provincie / Regio"
37
-
38
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
39
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
40
- msgid "Postal / Zip Code"
41
- msgstr "Postcode"
42
-
43
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
44
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
45
- msgid "Country"
46
- msgstr "Land"
47
-
48
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
49
- msgid "Connection type"
50
- msgstr "Soort verbinding"
51
-
52
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
53
- msgid "Type"
54
- msgstr "Soort"
55
-
56
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
57
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
58
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
59
- msgid "January"
60
- msgstr "januari"
61
-
62
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
63
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
64
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
65
- msgid "February"
66
- msgstr "februari"
67
-
68
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
69
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
70
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
71
- msgid "March"
72
- msgstr "maart"
73
-
74
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
75
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
76
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
77
- msgid "April"
78
- msgstr "april"
79
-
80
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
81
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
82
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
83
- msgid "May"
84
- msgstr "mei"
85
-
86
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
87
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
88
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
89
- msgid "June"
90
- msgstr "juni"
91
-
92
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
93
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
94
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
95
- msgid "July"
96
- msgstr "juli"
97
-
98
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
99
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
100
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
101
- msgid "August"
102
- msgstr "augustus"
103
-
104
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
105
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
106
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
107
- msgid "September"
108
- msgstr "september"
109
-
110
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
111
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
112
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
113
- msgid "October"
114
- msgstr "oktober"
115
-
116
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
117
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
118
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
119
- msgid "November"
120
- msgstr "november"
121
-
122
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
123
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
124
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
125
- msgid "December"
126
- msgstr "december"
127
-
128
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
129
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
130
- msgid "Error, incorrect Security code."
131
- msgstr "Fout, onjuiste beveiligingscode."
132
-
133
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
134
- msgid "Your ip is blacklisted. Please contact the website administrator."
135
- msgstr ""
136
- "Uw IP staat op de zwarte lijst. Neem contact op met de websitebeheerder."
137
-
138
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
139
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
140
- msgid "The file exceeds the allowed size of"
141
- msgstr "Het bestand overschrijdt de toegestane grootte van"
142
-
143
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
144
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
145
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
146
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
147
- msgid "Sorry, you are not allowed to upload this type of file."
148
- msgstr "Sorry, je hebt geen toestemming om dit type bestand te uploaden."
149
-
150
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
151
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
152
- msgid "Error, file cannot be moved."
153
- msgstr "Fout: het bestand kan niet worden verplaatst."
154
-
155
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
156
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
157
- #, php-format
158
- msgid ""
159
- "This field %s requires a unique entry and this value was already submitted."
160
- msgstr "Dit veld %s verwacht een unieke invoer en deze waarde is al gebruikt."
161
-
162
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
163
- msgid "Error, file destination does not exist."
164
- msgstr "Fout: de bestemming bestaat niet."
165
-
166
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
167
- msgid "Nothing was submitted."
168
- msgstr "Er is niets verzonden."
169
-
170
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
171
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
172
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
173
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
174
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
175
- msgid "Your form was successfully submitted."
176
- msgstr "Uw formulier is verzonden."
177
-
178
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
179
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
180
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
181
- msgid "Error, email was not sent."
182
- msgstr "Fout: e-mail is niet verzonden."
183
-
184
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
185
- msgid "Your email address is already verified."
186
- msgstr "Uw e-mailadres is al geverifieerd."
187
-
188
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
189
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
190
- msgid "Your email has been successfully verified."
191
- msgstr "Uw e-mail is met succes geverifieerd."
192
-
193
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
194
- msgid "Your email verification has timed out."
195
- msgstr "Uw e-verificatie is verlopen."
196
-
197
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
198
- msgid "Verification link is invalid."
199
- msgstr "Verificatielink is ongeldig."
200
-
201
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
202
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
203
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
204
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
205
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
206
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
207
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
208
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
209
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
210
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
211
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
212
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
213
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
214
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
215
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
216
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
217
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
218
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
219
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
220
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
221
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
222
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
223
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
224
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
225
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
226
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
227
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
228
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
229
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
230
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
231
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
232
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
233
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
234
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
235
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
236
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
237
- msgid "field is required."
238
- msgstr "veld is verplicht."
239
-
240
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
241
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
242
- msgid "This is not a valid email address."
243
- msgstr "Dit is geen geldig e-mailadres."
244
-
245
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
246
- msgid ""
247
- "You cannot select former dates. Choose a date starting from the current one."
248
- msgstr ""
249
- "Je kunt geen vroegere data selecteren. Kies een datum vanaf de huidige."
250
-
251
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
252
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
253
- msgid "The"
254
- msgstr "De"
255
-
256
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
257
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
258
- msgid "value must be between"
259
- msgstr "waarde moet zijn tussen"
260
-
261
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
262
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
263
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
264
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
265
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
266
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
267
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
268
- msgid "Quantity"
269
- msgstr "Hoeveelheid"
270
-
271
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
272
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
273
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
274
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
275
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
276
- msgid "Your score should be less than"
277
- msgstr "Je score moet kleiner zijn dan"
278
-
279
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
280
- msgid "Title"
281
- msgstr "Titel"
282
-
283
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
284
- msgid "First"
285
- msgstr "Eerste"
286
-
287
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
288
- msgid "Last"
289
- msgstr "Laatste"
290
-
291
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
292
- msgid "Middle"
293
- msgstr "Middelste"
294
-
295
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
296
- msgid "Area Code"
297
- msgstr "Netnummer"
298
-
299
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
300
- msgid "Phone Number"
301
- msgstr "Telefoonnummer"
302
-
303
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
304
- msgid "Dollars"
305
- msgstr "Dollars"
306
-
307
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
308
- msgid "Cents"
309
- msgstr "Centen"
310
-
311
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
312
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
313
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
314
- msgid "From"
315
- msgstr "Van"
316
-
317
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
318
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
319
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
320
- msgid "To"
321
- msgstr "Aan"
322
-
323
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
324
- msgid "You have no permission to view submissions."
325
- msgstr "Je hebt geen toestemming om aanmeldingen te bekijken"
326
-
327
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
328
- msgid "Entries"
329
- msgstr "Invoer"
330
-
331
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
332
- msgid "Views"
333
- msgstr "Weergaven"
334
-
335
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
336
- msgid "Conversion Rate"
337
- msgstr "Conversie rate"
338
-
339
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
340
- msgid "Export to"
341
- msgstr "Exporteren naar"
342
-
343
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
344
- msgid "GO"
345
- msgstr "GA"
346
-
347
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
348
- msgid "Reset"
349
- msgstr "Reset "
350
-
351
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
352
- msgid "of"
353
- msgstr "van"
354
-
355
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
356
- msgid ""
357
- "submissions are not shown, as the field you sorted by is missing in those "
358
- "submissions."
359
- msgstr ""
360
- "aanmeldingen worden niet getoond, omdat het veld die je sorteerde ontbreekt "
361
- "in die aanmeldingen."
362
-
363
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
364
- msgid "Canceled"
365
- msgstr "Ongedaan gemaakt"
366
-
367
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
368
- msgid "Cleared"
369
- msgstr "Verwijderd"
370
-
371
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
372
- msgid "Cleared by payment review"
373
- msgstr "Uitgeschakeld door betalingsoverzicht"
374
-
375
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
376
- msgid "Completed"
377
- msgstr "Beëindigd"
378
-
379
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
380
- msgid "Denied"
381
- msgstr "Geweigerd"
382
-
383
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
384
- msgid "Failed"
385
- msgstr "Niet geslaagd"
386
-
387
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
388
- msgid "Held"
389
- msgstr "Aangehouden"
390
-
391
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
392
- msgid "In progress"
393
- msgstr "In bewerking"
394
-
395
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
396
- msgid "On hold"
397
- msgstr "Tijdelijk aangehouden"
398
-
399
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
400
- msgid "Paid"
401
- msgstr "Betaald"
402
-
403
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
404
- msgid "Partially refunded"
405
- msgstr "Gedeeltelijk teruggestort"
406
-
407
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
408
- msgid "Pending verification"
409
- msgstr "Bezig met verificatie"
410
-
411
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
412
- msgid "Placed"
413
- msgstr "Geplaatst"
414
-
415
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
416
- msgid "Processing"
417
- msgstr "An het verwerken"
418
-
419
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
420
- msgid "Refunded"
421
- msgstr "Terug gestort"
422
-
423
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
424
- msgid "Refused"
425
- msgstr "Geweigerd"
426
-
427
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
428
- msgid "Removed"
429
- msgstr "Verplaatst"
430
-
431
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
432
- msgid "Returned"
433
- msgstr "Geretourneerd"
434
-
435
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
436
- msgid "Reversed"
437
- msgstr "Omgekeerd"
438
-
439
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
440
- msgid "Temporary hold"
441
- msgstr "Tijdelijk aangehouden"
442
-
443
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
444
- msgid "Unclaimed"
445
- msgstr "Niet geclaimd"
446
-
447
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
448
- msgid "Show on Map"
449
- msgstr "Toon op kaart"
450
-
451
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
452
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
453
- msgid "Total"
454
- msgstr "Totaal"
455
-
456
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
457
- msgid "Show Matrix"
458
- msgstr "Toon matrix"
459
-
460
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
461
- msgid "Statistics"
462
- msgstr "Statistieken"
463
-
464
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
465
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
466
- msgid "Select a Field"
467
- msgstr "Selecteer een veld "
468
-
469
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
470
- msgid "Select a Date"
471
- msgstr "Selecteer een datum"
472
-
473
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
474
- msgid "Show"
475
- msgstr "Toon"
476
-
477
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
478
- msgid "Please select the field!"
479
- msgstr "Selecteer het veld aub"
480
-
481
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
482
- msgid "Choices"
483
- msgstr "Keuzes"
484
-
485
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
486
- msgid "Percentage"
487
- msgstr "Percentage"
488
-
489
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
490
- msgid "Count"
491
- msgstr "Telling"
492
-
493
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
494
- msgid "Unanswered"
495
- msgstr "Onbeantwoord"
496
-
497
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
498
- msgid "Address"
499
- msgstr "Adres"
500
-
501
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
502
- msgid "Longitude"
503
- msgstr "Lengte"
504
-
505
- #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
506
- msgid "Latitude"
507
- msgstr "Breedte"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: form_maker\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-22 17:02+0400\n"
6
+ "PO-Revision-Date: 2016-11-15 16:35+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "Language: nl\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.8.11\n"
16
+ "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
17
+
18
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
19
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
20
+ msgid "Street Address"
21
+ msgstr "Adres"
22
+
23
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
24
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
25
+ msgid "Street Address Line 2"
26
+ msgstr "Adresregel 2"
27
+
28
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
29
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
30
+ msgid "City"
31
+ msgstr "Plaats"
32
+
33
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
34
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
35
+ msgid "State / Province / Region"
36
+ msgstr "Staat / Provincie / Regio"
37
+
38
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
39
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
40
+ msgid "Postal / Zip Code"
41
+ msgstr "Postcode"
42
+
43
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
44
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
45
+ msgid "Country"
46
+ msgstr "Land"
47
+
48
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
49
+ msgid "Connection type"
50
+ msgstr "Soort verbinding"
51
+
52
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
53
+ msgid "Type"
54
+ msgstr "Soort"
55
+
56
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
57
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
58
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
59
+ msgid "January"
60
+ msgstr "januari"
61
+
62
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
63
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
64
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
65
+ msgid "February"
66
+ msgstr "februari"
67
+
68
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
69
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
70
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
71
+ msgid "March"
72
+ msgstr "maart"
73
+
74
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
75
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
76
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
77
+ msgid "April"
78
+ msgstr "april"
79
+
80
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
81
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
82
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
83
+ msgid "May"
84
+ msgstr "mei"
85
+
86
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
87
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
88
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
89
+ msgid "June"
90
+ msgstr "juni"
91
+
92
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
93
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
94
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
95
+ msgid "July"
96
+ msgstr "juli"
97
+
98
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
99
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
100
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
101
+ msgid "August"
102
+ msgstr "augustus"
103
+
104
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
105
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
106
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
107
+ msgid "September"
108
+ msgstr "september"
109
+
110
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
111
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
112
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
113
+ msgid "October"
114
+ msgstr "oktober"
115
+
116
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
117
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
118
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
119
+ msgid "November"
120
+ msgstr "november"
121
+
122
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
123
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
124
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
125
+ msgid "December"
126
+ msgstr "december"
127
+
128
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
129
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
130
+ msgid "Error, incorrect Security code."
131
+ msgstr "Fout, onjuiste beveiligingscode."
132
+
133
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
134
+ msgid "Your ip is blacklisted. Please contact the website administrator."
135
+ msgstr ""
136
+ "Uw IP staat op de zwarte lijst. Neem contact op met de websitebeheerder."
137
+
138
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
139
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
140
+ msgid "The file exceeds the allowed size of"
141
+ msgstr "Het bestand overschrijdt de toegestane grootte van"
142
+
143
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
144
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
145
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
146
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
147
+ msgid "Sorry, you are not allowed to upload this type of file."
148
+ msgstr "Sorry, je hebt geen toestemming om dit type bestand te uploaden."
149
+
150
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
151
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
152
+ msgid "Error, file cannot be moved."
153
+ msgstr "Fout: het bestand kan niet worden verplaatst."
154
+
155
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
156
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
157
+ #, php-format
158
+ msgid ""
159
+ "This field %s requires a unique entry and this value was already submitted."
160
+ msgstr "Dit veld %s verwacht een unieke invoer en deze waarde is al gebruikt."
161
+
162
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
163
+ msgid "Error, file destination does not exist."
164
+ msgstr "Fout: de bestemming bestaat niet."
165
+
166
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
167
+ msgid "Nothing was submitted."
168
+ msgstr "Er is niets verzonden."
169
+
170
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
171
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
172
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
173
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
174
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
175
+ msgid "Your form was successfully submitted."
176
+ msgstr "Uw formulier is verzonden."
177
+
178
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
179
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
180
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
181
+ msgid "Error, email was not sent."
182
+ msgstr "Fout: e-mail is niet verzonden."
183
+
184
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
185
+ msgid "Your email address is already verified."
186
+ msgstr "Uw e-mailadres is al geverifieerd."
187
+
188
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
189
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
190
+ msgid "Your email has been successfully verified."
191
+ msgstr "Uw e-mail is met succes geverifieerd."
192
+
193
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
194
+ msgid "Your email verification has timed out."
195
+ msgstr "Uw e-verificatie is verlopen."
196
+
197
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
198
+ msgid "Verification link is invalid."
199
+ msgstr "Verificatielink is ongeldig."
200
+
201
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
202
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
203
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
204
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
205
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
206
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
207
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
208
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
209
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
210
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
211
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
212
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
213
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
214
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
215
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
216
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
217
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
218
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
219
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
220
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
221
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
222
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
223
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
224
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
225
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
226
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
227
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
228
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
229
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
230
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
231
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
232
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
233
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
234
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
235
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
236
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
237
+ msgid "field is required."
238
+ msgstr "veld is verplicht."
239
+
240
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
241
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
242
+ msgid "This is not a valid email address."
243
+ msgstr "Dit is geen geldig e-mailadres."
244
+
245
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
246
+ msgid ""
247
+ "You cannot select former dates. Choose a date starting from the current one."
248
+ msgstr ""
249
+ "Je kunt geen vroegere data selecteren. Kies een datum vanaf de huidige."
250
+
251
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
252
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
253
+ msgid "The"
254
+ msgstr "De"
255
+
256
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
257
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
258
+ msgid "value must be between"
259
+ msgstr "waarde moet zijn tussen"
260
+
261
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
262
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
263
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
264
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
265
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
266
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
267
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
268
+ msgid "Quantity"
269
+ msgstr "Hoeveelheid"
270
+
271
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
272
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
273
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
274
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
275
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
276
+ msgid "Your score should be less than"
277
+ msgstr "Je score moet kleiner zijn dan"
278
+
279
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
280
+ msgid "Title"
281
+ msgstr "Titel"
282
+
283
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
284
+ msgid "First"
285
+ msgstr "Eerste"
286
+
287
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
288
+ msgid "Last"
289
+ msgstr "Laatste"
290
+
291
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
292
+ msgid "Middle"
293
+ msgstr "Middelste"
294
+
295
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
296
+ msgid "Area Code"
297
+ msgstr "Netnummer"
298
+
299
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
300
+ msgid "Phone Number"
301
+ msgstr "Telefoonnummer"
302
+
303
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
304
+ msgid "Dollars"
305
+ msgstr "Dollars"
306
+
307
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
308
+ msgid "Cents"
309
+ msgstr "Centen"
310
+
311
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
312
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
313
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
314
+ msgid "From"
315
+ msgstr "Van"
316
+
317
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
318
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
319
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
320
+ msgid "To"
321
+ msgstr "Aan"
322
+
323
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
324
+ msgid "You have no permission to view submissions."
325
+ msgstr "Je hebt geen toestemming om aanmeldingen te bekijken"
326
+
327
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
328
+ msgid "Entries"
329
+ msgstr "Invoer"
330
+
331
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
332
+ msgid "Views"
333
+ msgstr "Weergaven"
334
+
335
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
336
+ msgid "Conversion Rate"
337
+ msgstr "Conversie rate"
338
+
339
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
340
+ msgid "Export to"
341
+ msgstr "Exporteren naar"
342
+
343
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
344
+ msgid "GO"
345
+ msgstr "GA"
346
+
347
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
348
+ msgid "Reset"
349
+ msgstr "Reset "
350
+
351
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
352
+ msgid "of"
353
+ msgstr "van"
354
+
355
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
356
+ msgid ""
357
+ "submissions are not shown, as the field you sorted by is missing in those "
358
+ "submissions."
359
+ msgstr ""
360
+ "aanmeldingen worden niet getoond, omdat het veld die je sorteerde ontbreekt "
361
+ "in die aanmeldingen."
362
+
363
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
364
+ msgid "Canceled"
365
+ msgstr "Ongedaan gemaakt"
366
+
367
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
368
+ msgid "Cleared"
369
+ msgstr "Verwijderd"
370
+
371
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
372
+ msgid "Cleared by payment review"
373
+ msgstr "Uitgeschakeld door betalingsoverzicht"
374
+
375
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
376
+ msgid "Completed"
377
+ msgstr "Beëindigd"
378
+
379
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
380
+ msgid "Denied"
381
+ msgstr "Geweigerd"
382
+
383
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
384
+ msgid "Failed"
385
+ msgstr "Niet geslaagd"
386
+
387
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
388
+ msgid "Held"
389
+ msgstr "Aangehouden"
390
+
391
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
392
+ msgid "In progress"
393
+ msgstr "In bewerking"
394
+
395
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
396
+ msgid "On hold"
397
+ msgstr "Tijdelijk aangehouden"
398
+
399
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
400
+ msgid "Paid"
401
+ msgstr "Betaald"
402
+
403
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
404
+ msgid "Partially refunded"
405
+ msgstr "Gedeeltelijk teruggestort"
406
+
407
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
408
+ msgid "Pending verification"
409
+ msgstr "Bezig met verificatie"
410
+
411
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
412
+ msgid "Placed"
413
+ msgstr "Geplaatst"
414
+
415
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
416
+ msgid "Processing"
417
+ msgstr "An het verwerken"
418
+
419
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
420
+ msgid "Refunded"
421
+ msgstr "Terug gestort"
422
+
423
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
424
+ msgid "Refused"
425
+ msgstr "Geweigerd"
426
+
427
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
428
+ msgid "Removed"
429
+ msgstr "Verplaatst"
430
+
431
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
432
+ msgid "Returned"
433
+ msgstr "Geretourneerd"
434
+
435
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
436
+ msgid "Reversed"
437
+ msgstr "Omgekeerd"
438
+
439
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
440
+ msgid "Temporary hold"
441
+ msgstr "Tijdelijk aangehouden"
442
+
443
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
444
+ msgid "Unclaimed"
445
+ msgstr "Niet geclaimd"
446
+
447
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
448
+ msgid "Show on Map"
449
+ msgstr "Toon op kaart"
450
+
451
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
452
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
453
+ msgid "Total"
454
+ msgstr "Totaal"
455
+
456
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
457
+ msgid "Show Matrix"
458
+ msgstr "Toon matrix"
459
+
460
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
461
+ msgid "Statistics"
462
+ msgstr "Statistieken"
463
+
464
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
465
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
466
+ msgid "Select a Field"
467
+ msgstr "Selecteer een veld "
468
+
469
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
470
+ msgid "Select a Date"
471
+ msgstr "Selecteer een datum"
472
+
473
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
474
+ msgid "Show"
475
+ msgstr "Toon"
476
+
477
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
478
+ msgid "Please select the field!"
479
+ msgstr "Selecteer het veld aub"
480
+
481
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
482
+ msgid "Choices"
483
+ msgstr "Keuzes"
484
+
485
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
486
+ msgid "Percentage"
487
+ msgstr "Percentage"
488
+
489
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
490
+ msgid "Count"
491
+ msgstr "Telling"
492
+
493
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
494
+ msgid "Unanswered"
495
+ msgstr "Onbeantwoord"
496
+
497
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
498
+ msgid "Address"
499
+ msgstr "Adres"
500
+
501
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
502
+ msgid "Longitude"
503
+ msgstr "Lengte"
504
+
505
+ #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
506
+ msgid "Latitude"
507
+ msgstr "Breedte"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
4
  Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
5
  Requires at least: 3.4
6
  Tested up to: 4.7
7
- Stable tag: 1.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -315,6 +315,9 @@ Email field should be used since it verifies that an entry format fulfills examp
315
 
316
  == Changelog ==
317
 
 
 
 
318
  = 1.10 =
319
  Changed: Field validation errors and notifications
320
  Added: Realtime field validation
4
  Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
5
  Requires at least: 3.4
6
  Tested up to: 4.7
7
+ Stable tag: 1.10.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
315
 
316
  == Changelog ==
317
 
318
+ = 1.10.1 =
319
+ Added: Verified emails list in csv, xml files
320
+
321
  = 1.10 =
322
  Changed: Field validation errors and notifications
323
  Added: Realtime field validation