User registration & user profile – Profile Builder - Version 2.5.3

Version Description

  • Major improvement to loading performance of the Manage Fields admin interface
  • Added actions before and after submit form button:wppb_form_before_submit_button and wppb_form_after_submit_button
  • Added a filter on the forms submit button class
  • Updated Dutch translations
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.5.3
Comparing to
See all releases

Code changes from version 2.5.2 to 2.5.3

assets/css/style-back-end.css CHANGED
@@ -400,8 +400,8 @@
400
  font-size: 13px;
401
  margin-top:20px;
402
  }
403
- #wppb_manage_fields .mb-list-entry-fields .row-field .field-label{
404
- width: 177px;
405
  }
406
 
407
  #container_wppb_epf_fields .row-id,
400
  font-size: 13px;
401
  margin-top:20px;
402
  }
403
+ #wppb_manage_fields .mb-list-entry-fields .field-label{
404
+ max-width: 179px;
405
  }
406
 
407
  #container_wppb_epf_fields .row-id,
assets/lib/wck-api/wordpress-creation-kit.css CHANGED
@@ -14,7 +14,7 @@
14
  }
15
 
16
  .field-label{
17
- /* width:190px; */
18
  float:left;
19
  min-height:30px;
20
  font-weight:bold;
@@ -30,6 +30,10 @@
30
  padding:0 2px;
31
  }
32
 
 
 
 
 
33
  .mb-right-column label{
34
  padding:0 6px 0 0;
35
  }
14
  }
15
 
16
  .field-label{
17
+ max-width:200px;
18
  float:left;
19
  min-height:30px;
20
  font-weight:bold;
30
  padding:0 2px;
31
  }
32
 
33
+ .mb-table-container strong{
34
+ max-width:200px;
35
+ }
36
+
37
  .mb-right-column label{
38
  padding:0 6px 0 0;
39
  }
assets/lib/wck-api/wordpress-creation-kit.js CHANGED
@@ -79,9 +79,6 @@ function addMeta(value, id, nonce){
79
 
80
  jQuery('#container_'+value).replaceWith(response);
81
 
82
- /* set width of strong label */
83
- wck_set_to_widest('strong', '#container_'+value );
84
-
85
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
86
 
87
  if( !jQuery( '#'+value ).hasClass('single') )
@@ -91,7 +88,6 @@ function addMeta(value, id, nonce){
91
  if( !jQuery( '#'+value ).hasClass('single') ){
92
  jQuery.post( wppbWckAjaxurl , { action:"wck_add_form"+meta, meta:value, id:id }, function(response) {
93
  jQuery( '#'+value ).replaceWith( response );
94
- wck_set_to_widest( '.field-label', '#'+value );
95
  });
96
  }
97
 
@@ -146,9 +142,6 @@ function removeMeta(value, id, element_id, nonce){
146
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_list"+meta, meta:value, id:id}, function(response) {
147
  jQuery('#container_'+value).replaceWith(response);
148
 
149
- /* set width of strong label */
150
- wck_set_to_widest('strong', '#container_'+value );
151
-
152
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
153
 
154
  mb_sortable_elements();
@@ -203,9 +196,6 @@ function mb_sortable_elements() {
203
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_list"+meta, meta:value, id:id}, function(response) {
204
  jQuery('#container_'+value).replaceWith(response);
205
 
206
- /* set width of strong label */
207
- wck_set_to_widest('strong', '#container_'+value );
208
-
209
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
210
 
211
  mb_sortable_elements();
@@ -250,9 +240,6 @@ function showUpdateFormMeta(value, id, element_id, nonce){
250
  //jQuery('#container_'+value+' #element_'+element_id).append(response);
251
  jQuery(response).insertAfter('#container_'+value+' > tbody > #element_'+element_id);
252
 
253
- /* set width of field-label */
254
- wck_set_to_widest('.field-label', '#update_container_' + value + '_' + element_id );
255
-
256
  jQuery('#container_'+value).parent().css('opacity','1');
257
  jQuery('#mb-ajax-loading').remove();
258
  wckGoToByScroll('update_container_' + value + '_' + element_id);
@@ -348,9 +335,6 @@ function updateMeta(value, id, element_id, nonce){
348
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_entry"+meta, meta:value, id:id, element_id:element_id}, function(response) {
349
  jQuery('#container_'+value+' #element_'+element_id).replaceWith(response);
350
 
351
- /* set width of strong label */
352
- wck_set_to_widest('strong', '#container_'+value+' #element_'+element_id );
353
-
354
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
355
 
356
  if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') && jQuery( '#container_' + value + " tbody .wck_update_container" ).length == 0 )
@@ -384,30 +368,37 @@ jQuery(function(){
384
  });
385
 
386
  /* Set width for listing "label" equal to the widest */
387
- jQuery( function(){
388
- jQuery('.mb-table-container').each(function(){
389
- wck_set_to_widest( 'strong', jQuery(this) );
390
- });
391
-
392
- jQuery('.mb-list-entry-fields').each(function(){
393
- wck_set_to_widest( '.field-label', jQuery(this) );
394
- });
395
-
396
  jQuery('.wck-post-box').css( {visibility: 'visible', height: 'auto'} );
397
  });
398
 
399
  function wck_set_to_widest( element, parent ){
400
- if( jQuery( element, parent).length != 0 ){
401
- var widest = null;
402
- jQuery( element, parent).each(function() {
403
- if (widest == null)
404
- widest = jQuery(this);
405
- else
406
- if ( jQuery(this).width() > widest.width() )
407
- widest = jQuery(this);
408
- });
409
-
410
- jQuery(element, parent).css( {display: 'inline-block', width: widest.width()+2, paddingRight: '5px'} );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
  }
412
- else return;
413
  }
79
 
80
  jQuery('#container_'+value).replaceWith(response);
81
 
 
 
 
82
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
83
 
84
  if( !jQuery( '#'+value ).hasClass('single') )
88
  if( !jQuery( '#'+value ).hasClass('single') ){
89
  jQuery.post( wppbWckAjaxurl , { action:"wck_add_form"+meta, meta:value, id:id }, function(response) {
90
  jQuery( '#'+value ).replaceWith( response );
 
91
  });
92
  }
93
 
142
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_list"+meta, meta:value, id:id}, function(response) {
143
  jQuery('#container_'+value).replaceWith(response);
144
 
 
 
 
145
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
146
 
147
  mb_sortable_elements();
196
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_list"+meta, meta:value, id:id}, function(response) {
197
  jQuery('#container_'+value).replaceWith(response);
198
 
 
 
 
199
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
200
 
201
  mb_sortable_elements();
240
  //jQuery('#container_'+value+' #element_'+element_id).append(response);
241
  jQuery(response).insertAfter('#container_'+value+' > tbody > #element_'+element_id);
242
 
 
 
 
243
  jQuery('#container_'+value).parent().css('opacity','1');
244
  jQuery('#mb-ajax-loading').remove();
245
  wckGoToByScroll('update_container_' + value + '_' + element_id);
335
  jQuery.post( wppbWckAjaxurl , { action:"wck_refresh_entry"+meta, meta:value, id:id, element_id:element_id}, function(response) {
336
  jQuery('#container_'+value+' #element_'+element_id).replaceWith(response);
337
 
 
 
 
338
  jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
339
 
340
  if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') && jQuery( '#container_' + value + " tbody .wck_update_container" ).length == 0 )
368
  });
369
 
370
  /* Set width for listing "label" equal to the widest */
371
+ jQuery( function(){
 
 
 
 
 
 
 
 
372
  jQuery('.wck-post-box').css( {visibility: 'visible', height: 'auto'} );
373
  });
374
 
375
  function wck_set_to_widest( element, parent ){
376
+ if( element == '.field-label' ){
377
+ if( jQuery( "#" + parent + ' ' + element ).length != 0 ){
378
+ var widest = null;
379
+ jQuery( "#" + parent + ' ' + element ).each(function() {
380
+ if (widest == null)
381
+ widest = jQuery(this);
382
+ else
383
+ if ( jQuery(this).width() > widest.width() )
384
+ widest = jQuery(this);
385
+ });
386
+
387
+ jQuery( "#" + parent ).append("<style type='text/css'>#"+ parent +" .field-label, #container_"+ parent +" .field-label{display:inline-block;padding-right:5px;width:"+ ( parseInt( widest.width() ) + parseInt( 2 ) ) +"px;}</style>");
388
+ }
389
+ }
390
+ else if( element == 'strong' ){
391
+ if( jQuery( "#container_" + parent + " #element_0 " + element ).length != 0 ){
392
+ var widest = null;
393
+ jQuery( "#container_" + parent + " #element_0 " + element ).each(function() {
394
+ if (widest == null)
395
+ widest = jQuery(this);
396
+ else
397
+ if ( jQuery(this).width() > widest.width() )
398
+ widest = jQuery(this);
399
+ });
400
+
401
+ jQuery( "#container_" + parent ).append("<style type='text/css'>#container_"+ parent +" strong{display:inline-block;padding-right:5px;width:"+ ( parseInt( widest.width() ) + parseInt( 2 ) ) +"px;}</style>");
402
+ }
403
  }
 
404
  }
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -344,6 +344,7 @@ class Wordpress_Creation_Kit_PB{
344
  <?php } ?>
345
  </ul>
346
  </div>
 
347
  <?php
348
  }
349
 
@@ -530,6 +531,10 @@ class Wordpress_Creation_Kit_PB{
530
  $list .= wck_nr_handle_repeaters( $meta, $id, $fields, $results, $element_id );
531
  }
532
  }
 
 
 
 
533
 
534
  $list .= '</td>';
535
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'profile-builder' ) .'">'. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .'</a></td>';
344
  <?php } ?>
345
  </ul>
346
  </div>
347
+ <script>wck_set_to_widest( '.field-label', '<?php echo $meta ?>' );</script>
348
  <?php
349
  }
350
 
531
  $list .= wck_nr_handle_repeaters( $meta, $id, $fields, $results, $element_id );
532
  }
533
  }
534
+
535
+ if( $element_id === 0 ){
536
+ $list .= "<script>wck_set_to_widest( 'strong', '". $meta ."' );</script>";
537
+ }
538
 
539
  $list .= '</td>';
540
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'profile-builder' ) .'">'. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .'</a></td>';
front-end/class-formbuilder.php CHANGED
@@ -422,7 +422,9 @@ class Profile_Builder_Form_Creator{
422
  elseif( $this->args['form_type'] == 'edit_profile' )
423
  $button_name = __( 'Update', 'profile-builder' );
424
  ?>
425
- <input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="submit button" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
 
 
426
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
427
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
428
  <?php
422
  elseif( $this->args['form_type'] == 'edit_profile' )
423
  $button_name = __( 'Update', 'profile-builder' );
424
  ?>
425
+ <?php do_action( 'wppb_form_before_submit_button', $this->args ); ?>
426
+ <input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_submit_class', "submit button" );?>" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
427
+ <?php do_action( 'wppb_form_after_submit_button', $this->args ); ?>
428
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
429
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
430
  <?php
front-end/recover.php CHANGED
@@ -92,7 +92,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
92
  </ul>
93
  <p class="form-submit">
94
  <?php $button_name = __('Reset Password', 'profile-builder'); ?>
95
- <input name="recover_password2" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
96
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
97
  </p><!-- .form-submit -->
98
  <?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
92
  </ul>
93
  <p class="form-submit">
94
  <?php $button_name = __('Reset Password', 'profile-builder'); ?>
95
+ <input name="recover_password2" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" );?>" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
96
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
97
  </p><!-- .form-submit -->
98
  <?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.5.2
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.5.2' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.5.3
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.5.3' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form
5
 
6
  Requires at least: 3.1
7
- Tested up to: 4.6.1
8
- Stable tag: 2.5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -108,8 +108,8 @@ http://www.cozmoslabs.com/docs/profile-builder-2/
108
  http://www.cozmoslabs.com/wordpress-profile-builder/
109
 
110
  = Profile Builder in your Language =
111
- We're focusing on translating Profile Builder in as many languages as we can. So far, the translations for 10 languages are almost complete, but we still need help on a lot of other languages, so please join us at [translate.cozmoslabs.com.](http://translate.cozmoslabs.com/projects/profilebuilder)
112
- You will be able to download all the [available language packs](http://translate.cozmoslabs.com/projects/profilebuilder) as well as help us translate Profile Builder in your language.
113
 
114
  NOTE:
115
  This plugin adds/removes user fields in the front-end. Both default and extra profile fields will be visible in the back-end as well.
@@ -150,6 +150,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
 
 
 
 
 
 
153
  = 2.5.2 =
154
  * Updated translation files
155
  * Added a filter to the submit button which can be used to add extra attributes: wppb_form_submit_extra_attr
4
  Tags: user registration, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form
5
 
6
  Requires at least: 3.1
7
+ Tested up to: 4.7
8
+ Stable tag: 2.5.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
108
  http://www.cozmoslabs.com/wordpress-profile-builder/
109
 
110
  = Profile Builder in your Language =
111
+ We're focusing on translating Profile Builder in as many languages as we can. So far, the translations for 10 languages are almost complete, but we still need help on a lot of other languages, so please join us at [translate.cozmoslabs.com.](http://translate.cozmoslabs.com/projects/profile-builder)
112
+ You will be able to download all the [available language packs](http://translate.cozmoslabs.com/projects/profile-builder) as well as help us translate Profile Builder in your language.
113
 
114
  NOTE:
115
  This plugin adds/removes user fields in the front-end. Both default and extra profile fields will be visible in the back-end as well.
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
153
+ = 2.5.3 =
154
+ * Major improvement to loading performance of the Manage Fields admin interface
155
+ * Added actions before and after submit form button:wppb_form_before_submit_button and wppb_form_after_submit_button
156
+ * Added a filter on the forms submit button class
157
+ * Updated Dutch translations
158
+
159
  = 2.5.2 =
160
  * Updated translation files
161
  * Added a filter to the submit button which can be used to add extra attributes: wppb_form_submit_extra_attr
translation/profile-builder-nl_NL.mo CHANGED
Binary file
translation/profile-builder-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-11-28 13:11:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,1118 +12,1118 @@ msgstr ""
12
 
13
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
- msgstr ""
16
 
17
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
- msgstr ""
20
 
21
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
  msgid "View Map"
23
- msgstr ""
24
 
25
  #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
  #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
  #: pb-add-on-woocommerce/index.php:493
28
  msgid "Address line 2"
29
- msgstr ""
30
 
31
  #: pb-add-on-woocommerce/index.php:256
32
  msgid "Billing Fields"
33
- msgstr ""
34
 
35
  #: pb-add-on-woocommerce/index.php:256
36
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
- msgstr ""
38
 
39
  #: pb-add-on-woocommerce/index.php:257
40
  msgid "Billing Fields Order"
41
- msgstr ""
42
 
43
  #: pb-add-on-woocommerce/index.php:257
44
  msgid "Save the billing fields order from the billing fields checkboxes"
45
- msgstr ""
46
 
47
  #: pb-add-on-woocommerce/index.php:258
48
  msgid "Billing Fields Name"
49
- msgstr ""
50
 
51
  #: pb-add-on-woocommerce/index.php:258
52
  msgid "Save the billing fields names"
53
- msgstr ""
54
 
55
  #: pb-add-on-woocommerce/index.php:275
56
  msgid "Shipping Fields"
57
- msgstr ""
58
 
59
  #: pb-add-on-woocommerce/index.php:275
60
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
- msgstr ""
62
 
63
  #: pb-add-on-woocommerce/index.php:276
64
  msgid "Shipping Fields Order"
65
- msgstr ""
66
 
67
  #: pb-add-on-woocommerce/index.php:276
68
  msgid "Save the shipping fields order from the billing fields checkboxes"
69
- msgstr ""
70
 
71
  #: pb-add-on-woocommerce/index.php:277
72
  msgid "Shipping Fields Name"
73
- msgstr ""
74
 
75
  #: pb-add-on-woocommerce/index.php:277
76
  msgid "Save the shipping fields names"
77
- msgstr ""
78
 
79
  #: pb-add-on-woocommerce/index.php:305
80
  msgid "Field Name"
81
- msgstr ""
82
 
83
  #: pb-add-on-woocommerce/index.php:369
84
  msgid "Click to edit "
85
- msgstr ""
86
 
87
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
  msgid "is not a valid phone number."
89
- msgstr ""
90
 
91
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
  msgid "is not a number."
93
- msgstr ""
94
 
95
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
  msgid "must be a multiplier of "
97
- msgstr ""
98
 
99
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
  msgid "must be a greater than or equal to "
101
- msgstr ""
102
 
103
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
  msgid "must be less than or equal to "
105
- msgstr ""
106
 
107
  #: profile-builder-2.0/admin/add-ons.php:103
108
  msgid "Available in Hobbyist and Pro Versions"
109
- msgstr ""
110
 
111
  #: profile-builder-2.0/admin/add-ons.php:105
112
  msgid "Available in All Versions"
113
- msgstr ""
114
 
115
  #: profile-builder-2.0/admin/add-ons.php:148
116
  msgid "Learn More"
117
- msgstr ""
118
 
119
  #: profile-builder-2.0/admin/basic-info.php:99
120
  msgid "Timepicker"
121
- msgstr ""
122
 
123
  #: profile-builder-2.0/admin/basic-info.php:100
124
  msgid "Colorpicker"
125
- msgstr ""
126
 
127
  #: profile-builder-2.0/admin/basic-info.php:103
128
  msgid "Currency Select"
129
- msgstr ""
130
 
131
  #: profile-builder-2.0/admin/basic-info.php:109
132
  msgid "Number"
133
- msgstr ""
134
 
135
  #: profile-builder-2.0/admin/basic-info.php:114
136
  msgid "Validation"
137
- msgstr ""
138
 
139
  #: profile-builder-2.0/admin/basic-info.php:115
140
  msgid "Map"
141
- msgstr ""
142
 
143
  #: profile-builder-2.0/admin/basic-info.php:116
144
  msgid "HTML"
145
- msgstr ""
146
 
147
  #: profile-builder-2.0/admin/basic-info.php:162
148
  #: profile-builder-2.0/modules/modules.php:117
149
  msgid "Repeater Fields"
150
- msgstr ""
151
 
152
  #: profile-builder-2.0/admin/basic-info.php:163
153
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
- msgstr ""
155
 
156
  #: profile-builder-2.0/admin/general-settings.php:62
157
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
- msgstr ""
159
 
160
  #: profile-builder-2.0/admin/manage-fields.php:115
161
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
162
- msgstr ""
163
 
164
  #: profile-builder-2.0/admin/manage-fields.php:138
165
  msgid "Show Currency Symbol"
166
- msgstr ""
167
 
168
  #: profile-builder-2.0/admin/manage-fields.php:138
169
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
- msgstr ""
171
 
172
  #: profile-builder-2.0/admin/manage-fields.php:139
173
  msgid "Show Post Type"
174
- msgstr ""
175
 
176
  #: profile-builder-2.0/admin/manage-fields.php:139
177
  msgid "Posts from what post type will be displayed in the select."
178
- msgstr ""
179
 
180
  #: profile-builder-2.0/admin/manage-fields.php:140
181
  msgid "Allowable Values"
182
- msgstr ""
183
 
184
  #: profile-builder-2.0/admin/manage-fields.php:140
185
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
- msgstr ""
187
 
188
  #: profile-builder-2.0/admin/manage-fields.php:141
189
  msgid "Error Message"
190
- msgstr ""
191
 
192
  #: profile-builder-2.0/admin/manage-fields.php:141
193
  msgid "Set a custom error message that will be displayed to the user."
194
- msgstr ""
195
 
196
  #: profile-builder-2.0/admin/manage-fields.php:142
197
  msgid "Time Format"
198
- msgstr ""
199
 
200
  #: profile-builder-2.0/admin/manage-fields.php:142
201
  msgid "Specify the time format."
202
- msgstr ""
203
 
204
  #: profile-builder-2.0/admin/manage-fields.php:143
205
  msgid "Google Maps API Key"
206
- msgstr ""
207
 
208
  #: profile-builder-2.0/admin/manage-fields.php:143
209
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
- msgstr ""
211
 
212
  #: profile-builder-2.0/admin/manage-fields.php:144
213
  msgid "Default Latitude"
214
- msgstr ""
215
 
216
  #: profile-builder-2.0/admin/manage-fields.php:144
217
  msgid "The latitude at which the map should be displayed when no pins are attached."
218
- msgstr ""
219
 
220
  #: profile-builder-2.0/admin/manage-fields.php:145
221
  msgid "Default Longitude"
222
- msgstr ""
223
 
224
  #: profile-builder-2.0/admin/manage-fields.php:145
225
  msgid "The longitude at which the map should be displayed when no pins are attached."
226
- msgstr ""
227
 
228
  #: profile-builder-2.0/admin/manage-fields.php:146
229
  msgid "Default Zoom Level"
230
- msgstr ""
231
 
232
  #: profile-builder-2.0/admin/manage-fields.php:146
233
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
- msgstr ""
235
 
236
  #: profile-builder-2.0/admin/manage-fields.php:147
237
  msgid "Map Height"
238
- msgstr ""
239
 
240
  #: profile-builder-2.0/admin/manage-fields.php:147
241
  msgid "The height of the map."
242
- msgstr ""
243
 
244
  #: profile-builder-2.0/admin/manage-fields.php:149
245
  msgid "HTML Content"
246
- msgstr ""
247
 
248
  #: profile-builder-2.0/admin/manage-fields.php:149
249
  msgid "Add your HTML (or text) content"
250
- msgstr ""
251
 
252
  #: profile-builder-2.0/admin/manage-fields.php:150
253
  msgid "Phone Format"
254
- msgstr ""
255
 
256
  #: profile-builder-2.0/admin/manage-fields.php:150
257
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
- msgstr ""
259
 
260
  #: profile-builder-2.0/admin/manage-fields.php:150
261
  msgid "Eg. (###) ###-####"
262
- msgstr ""
263
 
264
  #: profile-builder-2.0/admin/manage-fields.php:150
265
  msgid "Empty field won't check for correct phone number."
266
- msgstr ""
267
 
268
  #: profile-builder-2.0/admin/manage-fields.php:151
269
  msgid "Heading Tag"
270
- msgstr ""
271
 
272
  #: profile-builder-2.0/admin/manage-fields.php:151
273
  msgid "Change heading field size on front-end forms"
274
- msgstr ""
275
 
276
  #: profile-builder-2.0/admin/manage-fields.php:152
277
  msgid "Min Number Value"
278
- msgstr ""
279
 
280
  #: profile-builder-2.0/admin/manage-fields.php:152
281
  msgid "Min allowed number value (0 to allow only positive numbers)"
282
- msgstr ""
283
 
284
  #: profile-builder-2.0/admin/manage-fields.php:152
285
  msgid "Leave it empty for no min value"
286
- msgstr ""
287
 
288
  #: profile-builder-2.0/admin/manage-fields.php:153
289
  msgid "Max Number Value"
290
- msgstr ""
291
 
292
  #: profile-builder-2.0/admin/manage-fields.php:153
293
  msgid "Max allowed number value (0 to allow only negative numbers)"
294
- msgstr ""
295
 
296
  #: profile-builder-2.0/admin/manage-fields.php:153
297
  msgid "Leave it empty for no max value"
298
- msgstr ""
299
 
300
  #: profile-builder-2.0/admin/manage-fields.php:154
301
  msgid "Number Step Value"
302
- msgstr ""
303
 
304
  #: profile-builder-2.0/admin/manage-fields.php:154
305
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
- msgstr ""
307
 
308
  #: profile-builder-2.0/admin/manage-fields.php:154
309
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
- msgstr ""
311
 
312
  #: profile-builder-2.0/admin/manage-fields.php:154
313
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
- msgstr ""
315
 
316
  #: profile-builder-2.0/admin/manage-fields.php:154
317
  msgid "Leave it empty for no restriction"
318
- msgstr ""
319
 
320
  #: profile-builder-2.0/admin/manage-fields.php:555
321
  msgid "Albania Lek"
322
- msgstr ""
323
 
324
  #: profile-builder-2.0/admin/manage-fields.php:556
325
  msgid "Afghanistan Afghani"
326
- msgstr ""
327
 
328
  #: profile-builder-2.0/admin/manage-fields.php:557
329
  msgid "Argentina Peso"
330
- msgstr ""
331
 
332
  #: profile-builder-2.0/admin/manage-fields.php:558
333
  msgid "Aruba Guilder"
334
- msgstr ""
335
 
336
  #: profile-builder-2.0/admin/manage-fields.php:559
337
  msgid "Australia Dollar"
338
- msgstr ""
339
 
340
  #: profile-builder-2.0/admin/manage-fields.php:560
341
  msgid "Azerbaijan New Manat"
342
- msgstr ""
343
 
344
  #: profile-builder-2.0/admin/manage-fields.php:561
345
  msgid "Bahamas Dollar"
346
- msgstr ""
347
 
348
  #: profile-builder-2.0/admin/manage-fields.php:562
349
  msgid "Barbados Dollar"
350
- msgstr ""
351
 
352
  #: profile-builder-2.0/admin/manage-fields.php:563
353
  msgid "Bangladeshi taka"
354
- msgstr ""
355
 
356
  #: profile-builder-2.0/admin/manage-fields.php:564
357
  msgid "Belarus Ruble"
358
- msgstr ""
359
 
360
  #: profile-builder-2.0/admin/manage-fields.php:565
361
  msgid "Belize Dollar"
362
- msgstr ""
363
 
364
  #: profile-builder-2.0/admin/manage-fields.php:566
365
  msgid "Bermuda Dollar"
366
- msgstr ""
367
 
368
  #: profile-builder-2.0/admin/manage-fields.php:567
369
  msgid "Bolivia Boliviano"
370
- msgstr ""
371
 
372
  #: profile-builder-2.0/admin/manage-fields.php:568
373
  msgid "Bosnia and Herzegovina Convertible Marka"
374
- msgstr ""
375
 
376
  #: profile-builder-2.0/admin/manage-fields.php:569
377
  msgid "Botswana Pula"
378
- msgstr ""
379
 
380
  #: profile-builder-2.0/admin/manage-fields.php:570
381
  msgid "Bulgaria Lev"
382
- msgstr ""
383
 
384
  #: profile-builder-2.0/admin/manage-fields.php:571
385
  msgid "Brazil Real"
386
- msgstr ""
387
 
388
  #: profile-builder-2.0/admin/manage-fields.php:572
389
  msgid "Brunei Darussalam Dollar"
390
- msgstr ""
391
 
392
  #: profile-builder-2.0/admin/manage-fields.php:573
393
  msgid "Cambodia Riel"
394
- msgstr ""
395
 
396
  #: profile-builder-2.0/admin/manage-fields.php:574
397
  msgid "Canada Dollar"
398
- msgstr ""
399
 
400
  #: profile-builder-2.0/admin/manage-fields.php:575
401
  msgid "Cayman Islands Dollar"
402
- msgstr ""
403
 
404
  #: profile-builder-2.0/admin/manage-fields.php:576
405
  msgid "Chile Peso"
406
- msgstr ""
407
 
408
  #: profile-builder-2.0/admin/manage-fields.php:577
409
  msgid "China Yuan Renminbi"
410
- msgstr ""
411
 
412
  #: profile-builder-2.0/admin/manage-fields.php:578
413
  msgid "Colombia Peso"
414
- msgstr ""
415
 
416
  #: profile-builder-2.0/admin/manage-fields.php:579
417
  msgid "Costa Rica Colon"
418
- msgstr ""
419
 
420
  #: profile-builder-2.0/admin/manage-fields.php:580
421
  msgid "Croatia Kuna"
422
- msgstr ""
423
 
424
  #: profile-builder-2.0/admin/manage-fields.php:581
425
  msgid "Cuba Peso"
426
- msgstr ""
427
 
428
  #: profile-builder-2.0/admin/manage-fields.php:582
429
  msgid "Czech Republic Koruna"
430
- msgstr ""
431
 
432
  #: profile-builder-2.0/admin/manage-fields.php:583
433
  msgid "Denmark Krone"
434
- msgstr ""
435
 
436
  #: profile-builder-2.0/admin/manage-fields.php:584
437
  msgid "Dominican Republic Peso"
438
- msgstr ""
439
 
440
  #: profile-builder-2.0/admin/manage-fields.php:585
441
  msgid "East Caribbean Dollar"
442
- msgstr ""
443
 
444
  #: profile-builder-2.0/admin/manage-fields.php:586
445
  msgid "Egypt Pound"
446
- msgstr ""
447
 
448
  #: profile-builder-2.0/admin/manage-fields.php:587
449
  msgid "El Salvador Colon"
450
- msgstr ""
451
 
452
  #: profile-builder-2.0/admin/manage-fields.php:588
453
  msgid "Estonia Kroon"
454
- msgstr ""
455
 
456
  #: profile-builder-2.0/admin/manage-fields.php:589
457
  msgid "Euro"
458
- msgstr ""
459
 
460
  #: profile-builder-2.0/admin/manage-fields.php:590
461
  msgid "Falkland Islands (Malvinas) Pound"
462
- msgstr ""
463
 
464
  #: profile-builder-2.0/admin/manage-fields.php:591
465
  msgid "Fiji Dollar"
466
- msgstr ""
467
 
468
  #: profile-builder-2.0/admin/manage-fields.php:592
469
  msgid "Ghana Cedis"
470
- msgstr ""
471
 
472
  #: profile-builder-2.0/admin/manage-fields.php:593
473
  msgid "Gibraltar Pound"
474
- msgstr ""
475
 
476
  #: profile-builder-2.0/admin/manage-fields.php:594
477
  msgid "Guatemala Quetzal"
478
- msgstr ""
479
 
480
  #: profile-builder-2.0/admin/manage-fields.php:595
481
  msgid "Guernsey Pound"
482
- msgstr ""
483
 
484
  #: profile-builder-2.0/admin/manage-fields.php:596
485
  msgid "Guyana Dollar"
486
- msgstr ""
487
 
488
  #: profile-builder-2.0/admin/manage-fields.php:597
489
  msgid "Honduras Lempira"
490
- msgstr ""
491
 
492
  #: profile-builder-2.0/admin/manage-fields.php:598
493
  msgid "Hong Kong Dollar"
494
- msgstr ""
495
 
496
  #: profile-builder-2.0/admin/manage-fields.php:599
497
  msgid "Hungary Forint"
498
- msgstr ""
499
 
500
  #: profile-builder-2.0/admin/manage-fields.php:600
501
  msgid "Iceland Krona"
502
- msgstr ""
503
 
504
  #: profile-builder-2.0/admin/manage-fields.php:601
505
  msgid "India Rupee"
506
- msgstr ""
507
 
508
  #: profile-builder-2.0/admin/manage-fields.php:602
509
  msgid "Indonesia Rupiah"
510
- msgstr ""
511
 
512
  #: profile-builder-2.0/admin/manage-fields.php:603
513
  msgid "Iran Rial"
514
- msgstr ""
515
 
516
  #: profile-builder-2.0/admin/manage-fields.php:604
517
  msgid "Isle of Man Pound"
518
- msgstr ""
519
 
520
  #: profile-builder-2.0/admin/manage-fields.php:605
521
  msgid "Israel Shekel"
522
- msgstr ""
523
 
524
  #: profile-builder-2.0/admin/manage-fields.php:606
525
  msgid "Jamaica Dollar"
526
- msgstr ""
527
 
528
  #: profile-builder-2.0/admin/manage-fields.php:607
529
  msgid "Japan Yen"
530
- msgstr ""
531
 
532
  #: profile-builder-2.0/admin/manage-fields.php:608
533
  msgid "Jersey Pound"
534
- msgstr ""
535
 
536
  #: profile-builder-2.0/admin/manage-fields.php:609
537
  msgid "Kazakhstan Tenge"
538
- msgstr ""
539
 
540
  #: profile-builder-2.0/admin/manage-fields.php:610
541
  msgid "Korea (North) Won"
542
- msgstr ""
543
 
544
  #: profile-builder-2.0/admin/manage-fields.php:611
545
  msgid "Korea (South) Won"
546
- msgstr ""
547
 
548
  #: profile-builder-2.0/admin/manage-fields.php:612
549
  msgid "Kyrgyzstan Som"
550
- msgstr ""
551
 
552
  #: profile-builder-2.0/admin/manage-fields.php:613
553
  msgid "Laos Kip"
554
- msgstr ""
555
 
556
  #: profile-builder-2.0/admin/manage-fields.php:614
557
  msgid "Latvia Lat"
558
- msgstr ""
559
 
560
  #: profile-builder-2.0/admin/manage-fields.php:615
561
  msgid "Lebanon Pound"
562
- msgstr ""
563
 
564
  #: profile-builder-2.0/admin/manage-fields.php:616
565
  msgid "Liberia Dollar"
566
- msgstr ""
567
 
568
  #: profile-builder-2.0/admin/manage-fields.php:617
569
  msgid "Lithuania Litas"
570
- msgstr ""
571
 
572
  #: profile-builder-2.0/admin/manage-fields.php:618
573
  msgid "Macedonia Denar"
574
- msgstr ""
575
 
576
  #: profile-builder-2.0/admin/manage-fields.php:619
577
  msgid "Malaysia Ringgit"
578
- msgstr ""
579
 
580
  #: profile-builder-2.0/admin/manage-fields.php:620
581
  msgid "Mauritius Rupee"
582
- msgstr ""
583
 
584
  #: profile-builder-2.0/admin/manage-fields.php:621
585
  msgid "Mexico Peso"
586
- msgstr ""
587
 
588
  #: profile-builder-2.0/admin/manage-fields.php:622
589
  msgid "Mongolia Tughrik"
590
- msgstr ""
591
 
592
  #: profile-builder-2.0/admin/manage-fields.php:623
593
  msgid "Mozambique Metical"
594
- msgstr ""
595
 
596
  #: profile-builder-2.0/admin/manage-fields.php:624
597
  msgid "Namibia Dollar"
598
- msgstr ""
599
 
600
  #: profile-builder-2.0/admin/manage-fields.php:625
601
  msgid "Nepal Rupee"
602
- msgstr ""
603
 
604
  #: profile-builder-2.0/admin/manage-fields.php:626
605
  msgid "Netherlands Antilles Guilder"
606
- msgstr ""
607
 
608
  #: profile-builder-2.0/admin/manage-fields.php:627
609
  msgid "New Zealand Dollar"
610
- msgstr ""
611
 
612
  #: profile-builder-2.0/admin/manage-fields.php:628
613
  msgid "Nicaragua Cordoba"
614
- msgstr ""
615
 
616
  #: profile-builder-2.0/admin/manage-fields.php:629
617
  msgid "Nigeria Naira"
618
- msgstr ""
619
 
620
  #: profile-builder-2.0/admin/manage-fields.php:630
621
  msgid "Norway Krone"
622
- msgstr ""
623
 
624
  #: profile-builder-2.0/admin/manage-fields.php:631
625
  msgid "Oman Rial"
626
- msgstr ""
627
 
628
  #: profile-builder-2.0/admin/manage-fields.php:632
629
  msgid "Pakistan Rupee"
630
- msgstr ""
631
 
632
  #: profile-builder-2.0/admin/manage-fields.php:633
633
  msgid "Panama Balboa"
634
- msgstr ""
635
 
636
  #: profile-builder-2.0/admin/manage-fields.php:634
637
  msgid "Paraguay Guarani"
638
- msgstr ""
639
 
640
  #: profile-builder-2.0/admin/manage-fields.php:635
641
  msgid "Peru Nuevo Sol"
642
- msgstr ""
643
 
644
  #: profile-builder-2.0/admin/manage-fields.php:636
645
  msgid "Philippines Peso"
646
- msgstr ""
647
 
648
  #: profile-builder-2.0/admin/manage-fields.php:637
649
  msgid "Poland Zloty"
650
- msgstr ""
651
 
652
  #: profile-builder-2.0/admin/manage-fields.php:638
653
  msgid "Qatar Riyal"
654
- msgstr ""
655
 
656
  #: profile-builder-2.0/admin/manage-fields.php:639
657
  msgid "Romania New Leu"
658
- msgstr ""
659
 
660
  #: profile-builder-2.0/admin/manage-fields.php:640
661
  msgid "Russia Ruble"
662
- msgstr ""
663
 
664
  #: profile-builder-2.0/admin/manage-fields.php:641
665
  msgid "Saint Helena Pound"
666
- msgstr ""
667
 
668
  #: profile-builder-2.0/admin/manage-fields.php:642
669
  msgid "Saudi Arabia Riyal"
670
- msgstr ""
671
 
672
  #: profile-builder-2.0/admin/manage-fields.php:643
673
  msgid "Serbia Dinar"
674
- msgstr ""
675
 
676
  #: profile-builder-2.0/admin/manage-fields.php:644
677
  msgid "Seychelles Rupee"
678
- msgstr ""
679
 
680
  #: profile-builder-2.0/admin/manage-fields.php:645
681
  msgid "Singapore Dollar"
682
- msgstr ""
683
 
684
  #: profile-builder-2.0/admin/manage-fields.php:646
685
  msgid "Solomon Islands Dollar"
686
- msgstr ""
687
 
688
  #: profile-builder-2.0/admin/manage-fields.php:647
689
  msgid "Somalia Shilling"
690
- msgstr ""
691
 
692
  #: profile-builder-2.0/admin/manage-fields.php:648
693
  msgid "South Africa Rand"
694
- msgstr ""
695
 
696
  #: profile-builder-2.0/admin/manage-fields.php:649
697
  msgid "Sri Lanka Rupee"
698
- msgstr ""
699
 
700
  #: profile-builder-2.0/admin/manage-fields.php:650
701
  msgid "Sweden Krona"
702
- msgstr ""
703
 
704
  #: profile-builder-2.0/admin/manage-fields.php:651
705
  msgid "Switzerland Franc"
706
- msgstr ""
707
 
708
  #: profile-builder-2.0/admin/manage-fields.php:652
709
  msgid "Suriname Dollar"
710
- msgstr ""
711
 
712
  #: profile-builder-2.0/admin/manage-fields.php:653
713
  msgid "Syria Pound"
714
- msgstr ""
715
 
716
  #: profile-builder-2.0/admin/manage-fields.php:654
717
  msgid "Taiwan New Dollar"
718
- msgstr ""
719
 
720
  #: profile-builder-2.0/admin/manage-fields.php:655
721
  msgid "Thailand Baht"
722
- msgstr ""
723
 
724
  #: profile-builder-2.0/admin/manage-fields.php:656
725
  msgid "Trinidad and Tobago Dollar"
726
- msgstr ""
727
 
728
  #: profile-builder-2.0/admin/manage-fields.php:657
729
  #: profile-builder-2.0/admin/manage-fields.php:658
730
  msgid "Turkey Lira"
731
- msgstr ""
732
 
733
  #: profile-builder-2.0/admin/manage-fields.php:659
734
  msgid "Tuvalu Dollar"
735
- msgstr ""
736
 
737
  #: profile-builder-2.0/admin/manage-fields.php:660
738
  msgid "Ukraine Hryvna"
739
- msgstr ""
740
 
741
  #: profile-builder-2.0/admin/manage-fields.php:661
742
  msgid "United Kingdom Pound"
743
- msgstr ""
744
 
745
  #: profile-builder-2.0/admin/manage-fields.php:662
746
  msgid "Uganda Shilling"
747
- msgstr ""
748
 
749
  #: profile-builder-2.0/admin/manage-fields.php:663
750
  msgid "US Dollar"
751
- msgstr ""
752
 
753
  #: profile-builder-2.0/admin/manage-fields.php:664
754
  msgid "Uruguay Peso"
755
- msgstr ""
756
 
757
  #: profile-builder-2.0/admin/manage-fields.php:665
758
  msgid "Uzbekistan Som"
759
- msgstr ""
760
 
761
  #: profile-builder-2.0/admin/manage-fields.php:666
762
  msgid "Venezuela Bolivar"
763
- msgstr ""
764
 
765
  #: profile-builder-2.0/admin/manage-fields.php:667
766
  msgid "Viet Nam Dong"
767
- msgstr ""
768
 
769
  #: profile-builder-2.0/admin/manage-fields.php:668
770
  msgid "Yemen Rial"
771
- msgstr ""
772
 
773
  #: profile-builder-2.0/admin/manage-fields.php:669
774
  msgid "Zimbabwe Dollar"
775
- msgstr ""
776
 
777
  #: profile-builder-2.0/admin/manage-fields.php:1080
778
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
- msgstr ""
780
 
781
  #: profile-builder-2.0/admin/manage-fields.php:1296
782
  msgid "Search Location"
783
- msgstr ""
784
 
785
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
  msgid "You are not allowed to do this."
787
- msgstr ""
788
 
789
  #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
  msgid "Search Users"
792
- msgstr ""
793
 
794
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
  msgid "Conditional Logic"
796
- msgstr ""
797
 
798
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
  msgid "Conditional Rules"
800
- msgstr ""
801
 
802
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
  msgid "This field has conditional logic enabled."
804
- msgstr ""
805
 
806
  #: profile-builder-2.0/features/functions.php:712
807
  msgid "Incorrect phone number"
808
- msgstr ""
809
 
810
  #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
- msgstr ""
813
 
814
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
  msgid "Please add the Google Maps API key for this field."
817
- msgstr ""
818
 
819
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
  msgid "Something went wrong. Please try again."
821
- msgstr ""
822
 
823
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
  msgid "Please enter numbers only"
825
- msgstr ""
826
 
827
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
  msgid "Value must be a multiplier of %1$s"
829
- msgstr ""
830
 
831
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
  msgid "Value must be greater than or equal to %1$s"
833
- msgstr ""
834
 
835
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
  msgid "Value must be less than or equal to %1$s"
837
- msgstr ""
838
 
839
  #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
  msgid "Required phone number format: "
841
- msgstr ""
842
 
843
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Bolivia, __( Plurinational State of"
845
- msgstr ""
846
 
847
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Bonaire, __( Sint Eustatius and Saba"
849
- msgstr ""
850
 
851
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Brunei Darussalam"
853
- msgstr ""
854
 
855
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cabo Verde"
857
- msgstr ""
858
 
859
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Cocos (Keeling) Islands"
861
- msgstr ""
862
 
863
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Congo"
865
- msgstr ""
866
 
867
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Congo, __( the Democratic Republic of the"
869
- msgstr ""
870
 
871
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Cote dIvoire"
873
- msgstr ""
874
 
875
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Falkland Islands (Malvinas)"
877
- msgstr ""
878
 
879
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Holy See (Vatican City State)"
881
- msgstr ""
882
 
883
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Iran, __( Islamic Republic of"
885
- msgstr ""
886
 
887
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Korea, __( Democratic Peoples Republic of"
889
- msgstr ""
890
 
891
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Korea, __( Republic of"
893
- msgstr ""
894
 
895
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Lao Peoples Democratic Republic"
897
- msgstr ""
898
 
899
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Macedonia, __( the former Yugoslav Republic of"
901
- msgstr ""
902
 
903
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Micronesia, __( Federated States of"
905
- msgstr ""
906
 
907
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Moldova, __( Republic of"
909
- msgstr ""
910
 
911
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Palestine, __( State of"
913
- msgstr ""
914
 
915
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Russian Federation"
917
- msgstr ""
918
 
919
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
- msgstr ""
922
 
923
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Saint Martin (French part)"
925
- msgstr ""
926
 
927
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Sint Maarten (Dutch part)"
929
- msgstr ""
930
 
931
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Syrian Arab Republic"
933
- msgstr ""
934
 
935
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Taiwan, __( Province of China"
937
- msgstr ""
938
 
939
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Tanzania, __( United Republic of"
941
- msgstr ""
942
 
943
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Timor-Leste"
945
- msgstr ""
946
 
947
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
  msgid "Venezuela, __( Bolivarian Republic of"
949
- msgstr ""
950
 
951
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
  msgid "Viet Nam"
953
- msgstr ""
954
 
955
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
  msgid "Virgin Islands, __( British"
957
- msgstr ""
958
 
959
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
  msgid "Virgin Islands, __( U.S."
961
- msgstr ""
962
 
963
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
  #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
  msgid "User Fields Tags"
966
- msgstr ""
967
 
968
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
  msgid "The users selected password at signup"
970
- msgstr ""
971
 
972
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
  msgid "[{{site_name}}] Notice of Email Change"
974
- msgstr ""
975
 
976
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
  msgid "Changed Email Address Notification"
978
- msgstr ""
979
 
980
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
  msgid "Limit"
982
- msgstr ""
983
 
984
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
- msgstr ""
987
 
988
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
  msgid "General Limit"
990
- msgstr ""
991
 
992
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
- msgstr ""
995
 
996
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
  msgid "Limit reached message"
998
- msgstr ""
999
 
1000
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
  msgid "The maximum number of fields has been reached."
1002
- msgstr ""
1003
 
1004
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
  msgid "The popup message to display when the limit of repeater groups is reached."
1006
- msgstr ""
1007
 
1008
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
  msgid "Limit per Role"
1010
- msgstr ""
1011
 
1012
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
  msgid "Leave 0 for unlimited."
1014
- msgstr ""
1015
 
1016
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
  msgid "Repeated field group"
1018
- msgstr ""
1019
 
1020
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
  msgid "Manage field or group of fields that will be repeatable."
1022
- msgstr ""
1023
 
1024
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
  msgid "Edit field group"
1026
- msgstr ""
1027
 
1028
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
  msgid "Repeatable fields saved!"
1030
- msgstr ""
1031
 
1032
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
  msgid "Please enter a unique field title.\n"
1035
- msgstr ""
1036
 
1037
  #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
  msgid "Are you sure you want to delete this?"
1039
- msgstr ""
1040
 
1041
  #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
  msgid "Sort Tags"
1043
- msgstr ""
1044
 
1045
  #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
  msgid "Faceted Menus"
1048
- msgstr ""
1049
 
1050
  #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
  msgid "User Count"
1052
- msgstr ""
1053
 
1054
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
  msgid "Show All"
1056
- msgstr ""
1057
 
1058
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
  msgid "No options available"
1062
- msgstr ""
1063
 
1064
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
  msgid "Remove All Filters"
1066
- msgstr ""
1067
 
1068
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
  msgid "Label"
1070
- msgstr ""
1071
 
1072
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
  msgid "Choose the facet name that appears on the frontend"
1074
- msgstr ""
1075
 
1076
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
  msgid "Facet Type"
1078
- msgstr ""
1079
 
1080
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
  msgid "Choose the facet menu type"
1082
- msgstr ""
1083
 
1084
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
  msgid "Facet Meta"
1086
- msgstr ""
1087
 
1088
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
  msgid "Choose the meta field for the facet menu"
1090
- msgstr ""
1091
 
1092
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
  msgid "Behaviour"
1094
- msgstr ""
1095
 
1096
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
  msgid "Narrow the results"
1098
- msgstr ""
1099
 
1100
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
  msgid "Expand the results"
1102
- msgstr ""
1103
 
1104
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
  msgid "Choose how multiple selections affect the results"
1106
- msgstr ""
1107
 
1108
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
  msgid "Visible choices"
1110
- msgstr ""
1111
 
1112
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
  msgid "Show a toggle link after this many choices. Leave blank for all"
1114
- msgstr ""
1115
 
1116
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
  msgid "Search Fields"
1118
- msgstr ""
1119
 
1120
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
  msgid "Choose the fields in which the Search Field will look in"
1122
- msgstr ""
1123
 
1124
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
  msgid "Search Settings"
1126
- msgstr ""
1127
 
1128
  #: pb-add-on-woocommerce/billing-fields.php:8
1129
  #: pb-add-on-woocommerce/shipping-fields.php:8
@@ -1157,7 +1157,7 @@ msgstr "Postcode"
1157
 
1158
  #: pb-add-on-woocommerce/billing-fields.php:14
1159
  msgid "Email Address"
1160
- msgstr "Email adres"
1161
 
1162
  #: pb-add-on-woocommerce/billing-fields.php:15
1163
  msgid "Phone"
@@ -1165,7 +1165,7 @@ msgstr "Telefoonnummer"
1165
 
1166
  #: pb-add-on-woocommerce/billing-fields.php:278
1167
  msgid "Ship to a different address?"
1168
- msgstr "Verstuur naar een ander adres"
1169
 
1170
  #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
  msgid "Billing Address"
@@ -1177,11 +1177,11 @@ msgstr "Laat klant factuur velden in front-end zien."
1177
 
1178
  #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
  msgid "Shipping Address"
1180
- msgstr "Lever Adres"
1181
 
1182
  #: pb-add-on-woocommerce/index.php:173
1183
  msgid "Displays customer shipping fields in front-end. "
1184
- msgstr "Laat klant lever velden in front-end zien"
1185
 
1186
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
  msgid "Display on WooCommerce Checkout"
@@ -1206,7 +1206,7 @@ msgstr "Kies registratieformulier om op Mijn Account pagina weer te geven:"
1206
 
1207
  #: pb-add-on-woocommerce/woosync-page.php:81
1208
  msgid "Default Register"
1209
- msgstr "Default registratie"
1210
 
1211
  #: pb-add-on-woocommerce/woosync-page.php:103
1212
  msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
@@ -1214,19 +1214,19 @@ msgstr "Kies welk Profile Builder registratieformulier op Mijn Account pagina va
1214
 
1215
  #: pb-add-on-woocommerce/woosync-page.php:110
1216
  msgid "Choose Edit Profile form to display on My Account page:"
1217
- msgstr "Kies Verander Profiel Formulier om deze te tonen op mijn account pagina"
1218
 
1219
  #: pb-add-on-woocommerce/woosync-page.php:115
1220
  msgid "Default Edit Profile"
1221
- msgstr "Default Verander Profiel"
1222
 
1223
  #: pb-add-on-woocommerce/woosync-page.php:137
1224
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
- msgstr "Kies welk Profile Builder profiel beheerformulier op Mijn Account pagina van WooCommerce weergeven moet worden."
1226
 
1227
  #: profile-builder-2.0/admin/add-ons.php:190
1228
  msgid "Recommended Plugins"
1229
- msgstr "Belangrijke Plugins die meer aandacht hebben"
1230
 
1231
  #: profile-builder-2.0/admin/add-ons.php:219
1232
  #: profile-builder-2.0/admin/pms-cross-promotion.php:102
@@ -1235,7 +1235,7 @@ msgstr "Vrij"
1235
 
1236
  #: profile-builder-2.0/admin/add-ons.php:221
1237
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
- msgstr "Accepteer gebruikers betalingen, creeer abonnement en maak een restrictie op de content van de members website"
1239
 
1240
  #: profile-builder-2.0/admin/add-ons.php:222
1241
  #: profile-builder-2.0/admin/pms-cross-promotion.php:105
@@ -1247,7 +1247,7 @@ msgstr "Meer Details"
1247
  #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
  #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
  msgid "Plugin is <strong>inactive</strong>"
1250
- msgstr "Plugin is actief"
1251
 
1252
  #: profile-builder-2.0/admin/add-ons.php:242
1253
  #: profile-builder-2.0/admin/pms-cross-promotion.php:87
@@ -1287,7 +1287,7 @@ msgstr "Beheer van Geregistereerde Klanten"
1287
 
1288
  #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
  msgid "Email Templates"
1290
- msgstr "Email Templates"
1291
 
1292
  #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
  msgid "Account Management"
@@ -1319,11 +1319,11 @@ msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk
1319
 
1320
  #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
  msgid "Step by Step Quick Setup"
1322
- msgstr "Stap voor stap snelle installatie handleiding"
1323
 
1324
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1326
- msgstr "Om je inschrijving te activeren klik op onderstaande link:<br><br>%s%s%s<br><br>Nadat je de inschrijving hebt geactiveerd krijg je een nieuwe email met je login gegevens."
1327
 
1328
  #: profile-builder-2.0/front-end/register.php:133
1329
  msgid "You will soon be redirected automatically."
@@ -1343,7 +1343,7 @@ msgstr "Na Registratie"
1343
 
1344
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
  msgid "After Edit Profile"
1346
- msgstr "Na Veranderen van Profiel"
1347
 
1348
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
  msgid "After Successful Email Confirmation"
@@ -1496,7 +1496,7 @@ msgstr "de ID van de gebruiker"
1496
 
1497
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1499
- msgstr "de voor URL opgeschoonde versie van de gebruikersnaam, de \"user nicename\" kan veilig worden gebruikt in URLs omdat het geen speciale karakters of spaties kan bevatten."
1500
 
1501
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
  msgid "the URL of the previously visited page"
@@ -1510,7 +1510,7 @@ msgstr "Je kunt doorverwijzingen niet dupliceren!"
1510
 
1511
  #: profile-builder-2.0/admin/admin-functions.php:40
1512
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
- msgstr "Toon naam publiekelijk als - wordt alleen getoond op de profiel beheerpagina!"
1514
 
1515
  #: profile-builder-2.0/admin/basic-info.php:37
1516
  msgid "Friction-less login using %s shortcode or a widget."
@@ -1599,17 +1599,17 @@ msgstr "Aland Eilanden"
1599
  #: profile-builder-2.0/admin/manage-fields.php:275
1600
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Albania"
1602
- msgstr "Albania"
1603
 
1604
  #: profile-builder-2.0/admin/manage-fields.php:276
1605
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Algeria"
1607
- msgstr "Algarije"
1608
 
1609
  #: profile-builder-2.0/admin/manage-fields.php:277
1610
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "American Samoa"
1612
- msgstr "American Samoa"
1613
 
1614
  #: profile-builder-2.0/admin/manage-fields.php:278
1615
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1634,17 +1634,17 @@ msgstr "Antarctica"
1634
  #: profile-builder-2.0/admin/manage-fields.php:282
1635
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
  msgid "Antigua and Barbuda"
1637
- msgstr "Antigua and Barbuda"
1638
 
1639
  #: profile-builder-2.0/admin/manage-fields.php:283
1640
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
  msgid "Argentina"
1642
- msgstr "Argentinie"
1643
 
1644
  #: profile-builder-2.0/admin/manage-fields.php:284
1645
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
  msgid "Armenia"
1647
- msgstr "Armenia"
1648
 
1649
  #: profile-builder-2.0/admin/manage-fields.php:285
1650
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1654,17 +1654,17 @@ msgstr "Aruba"
1654
  #: profile-builder-2.0/admin/manage-fields.php:286
1655
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
  msgid "Australia"
1657
- msgstr "Australia"
1658
 
1659
  #: profile-builder-2.0/admin/manage-fields.php:287
1660
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
  msgid "Austria"
1662
- msgstr "Austria"
1663
 
1664
  #: profile-builder-2.0/admin/manage-fields.php:288
1665
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
  msgid "Azerbaijan"
1667
- msgstr "Azerbaijan"
1668
 
1669
  #: profile-builder-2.0/admin/manage-fields.php:289
1670
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1694,7 +1694,7 @@ msgstr "Wit Rusland"
1694
  #: profile-builder-2.0/admin/manage-fields.php:294
1695
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
  msgid "Belgium"
1697
- msgstr "Belgie"
1698
 
1699
  #: profile-builder-2.0/admin/manage-fields.php:295
1700
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1722,7 +1722,7 @@ msgstr "Bolivia"
1722
 
1723
  #: profile-builder-2.0/admin/manage-fields.php:300
1724
  msgid "Bonaire, Saint Eustatius and Saba"
1725
- msgstr "Bonaire, Saint Eustatius and Saba"
1726
 
1727
  #: profile-builder-2.0/admin/manage-fields.php:301
1728
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1737,21 +1737,21 @@ msgstr "Botswana"
1737
  #: profile-builder-2.0/admin/manage-fields.php:303
1738
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
  msgid "Bouvet Island"
1740
- msgstr "Bouvet Island"
1741
 
1742
  #: profile-builder-2.0/admin/manage-fields.php:304
1743
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
  msgid "Brazil"
1745
- msgstr "Brazilie"
1746
 
1747
  #: profile-builder-2.0/admin/manage-fields.php:305
1748
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
  msgid "British Indian Ocean Territory"
1750
- msgstr "British Indian Ocean Territory"
1751
 
1752
  #: profile-builder-2.0/admin/manage-fields.php:306
1753
  msgid "British Virgin Islands"
1754
- msgstr "British Virgin Islands"
1755
 
1756
  #: profile-builder-2.0/admin/manage-fields.php:307
1757
  msgid "Brunei"
@@ -1760,7 +1760,7 @@ msgstr "Brunei"
1760
  #: profile-builder-2.0/admin/manage-fields.php:308
1761
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
  msgid "Bulgaria"
1763
- msgstr "Bulgaria"
1764
 
1765
  #: profile-builder-2.0/admin/manage-fields.php:309
1766
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1775,12 +1775,12 @@ msgstr "Burundi"
1775
  #: profile-builder-2.0/admin/manage-fields.php:311
1776
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
  msgid "Cambodia"
1778
- msgstr "Cambodia"
1779
 
1780
  #: profile-builder-2.0/admin/manage-fields.php:312
1781
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
  msgid "Cameroon"
1783
- msgstr "Cameroon"
1784
 
1785
  #: profile-builder-2.0/admin/manage-fields.php:313
1786
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1789,27 +1789,27 @@ msgstr "Canada"
1789
 
1790
  #: profile-builder-2.0/admin/manage-fields.php:314
1791
  msgid "Cape Verde"
1792
- msgstr "Cape Verde"
1793
 
1794
  #: profile-builder-2.0/admin/manage-fields.php:315
1795
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
  msgid "Cayman Islands"
1797
- msgstr "Cayman Islands"
1798
 
1799
  #: profile-builder-2.0/admin/manage-fields.php:316
1800
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
  msgid "Central African Republic"
1802
- msgstr "Central African Republic"
1803
 
1804
  #: profile-builder-2.0/admin/manage-fields.php:317
1805
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
  msgid "Chad"
1807
- msgstr "Chad"
1808
 
1809
  #: profile-builder-2.0/admin/manage-fields.php:318
1810
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
  msgid "Chile"
1812
- msgstr "Chile"
1813
 
1814
  #: profile-builder-2.0/admin/manage-fields.php:319
1815
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1819,11 +1819,11 @@ msgstr "China"
1819
  #: profile-builder-2.0/admin/manage-fields.php:320
1820
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Christmas Island"
1822
- msgstr "Christmas Island"
1823
 
1824
  #: profile-builder-2.0/admin/manage-fields.php:321
1825
  msgid "Cocos Islands"
1826
- msgstr "Cocos Islands"
1827
 
1828
  #: profile-builder-2.0/admin/manage-fields.php:322
1829
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1833,12 +1833,12 @@ msgstr "Colombia"
1833
  #: profile-builder-2.0/admin/manage-fields.php:323
1834
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
  msgid "Comoros"
1836
- msgstr "Comoros"
1837
 
1838
  #: profile-builder-2.0/admin/manage-fields.php:324
1839
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
  msgid "Cook Islands"
1841
- msgstr "Cook Islands"
1842
 
1843
  #: profile-builder-2.0/admin/manage-fields.php:325
1844
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1848,7 +1848,7 @@ msgstr "Costa Rica"
1848
  #: profile-builder-2.0/admin/manage-fields.php:326
1849
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
  msgid "Croatia"
1851
- msgstr "Croatia"
1852
 
1853
  #: profile-builder-2.0/admin/manage-fields.php:327
1854
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1868,16 +1868,16 @@ msgstr "Cyprus"
1868
  #: profile-builder-2.0/admin/manage-fields.php:330
1869
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
  msgid "Czech Republic"
1871
- msgstr "Czech Republic"
1872
 
1873
  #: profile-builder-2.0/admin/manage-fields.php:331
1874
  msgid "Democratic Republic of the Congo"
1875
- msgstr "Democratic Republic of the Congo"
1876
 
1877
  #: profile-builder-2.0/admin/manage-fields.php:332
1878
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Denmark"
1880
- msgstr "Denmark"
1881
 
1882
  #: profile-builder-2.0/admin/manage-fields.php:333
1883
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1892,11 +1892,11 @@ msgstr "Dominica"
1892
  #: profile-builder-2.0/admin/manage-fields.php:335
1893
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Dominican Republic"
1895
- msgstr "Dominican Republic"
1896
 
1897
  #: profile-builder-2.0/admin/manage-fields.php:336
1898
  msgid "East Timor"
1899
- msgstr "East Timor"
1900
 
1901
  #: profile-builder-2.0/admin/manage-fields.php:337
1902
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1906,7 +1906,7 @@ msgstr "Ecuador"
1906
  #: profile-builder-2.0/admin/manage-fields.php:338
1907
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
  msgid "Egypt"
1909
- msgstr "Egypt"
1910
 
1911
  #: profile-builder-2.0/admin/manage-fields.php:339
1912
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1916,7 +1916,7 @@ msgstr "El Salvador"
1916
  #: profile-builder-2.0/admin/manage-fields.php:340
1917
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
  msgid "Equatorial Guinea"
1919
- msgstr "Equatorial Guinea"
1920
 
1921
  #: profile-builder-2.0/admin/manage-fields.php:341
1922
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1926,21 +1926,21 @@ msgstr "Eritrea"
1926
  #: profile-builder-2.0/admin/manage-fields.php:342
1927
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
  msgid "Estonia"
1929
- msgstr "Estonia"
1930
 
1931
  #: profile-builder-2.0/admin/manage-fields.php:343
1932
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
  msgid "Ethiopia"
1934
- msgstr "Ethiopia"
1935
 
1936
  #: profile-builder-2.0/admin/manage-fields.php:344
1937
  msgid "Falkland Islands"
1938
- msgstr "Falkland Islands"
1939
 
1940
  #: profile-builder-2.0/admin/manage-fields.php:345
1941
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
  msgid "Faroe Islands"
1943
- msgstr "Faroe Islands"
1944
 
1945
  #: profile-builder-2.0/admin/manage-fields.php:346
1946
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1955,22 +1955,22 @@ msgstr "Finland"
1955
  #: profile-builder-2.0/admin/manage-fields.php:348
1956
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
  msgid "France"
1958
- msgstr "France"
1959
 
1960
  #: profile-builder-2.0/admin/manage-fields.php:349
1961
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
  msgid "French Guiana"
1963
- msgstr "French Guiana"
1964
 
1965
  #: profile-builder-2.0/admin/manage-fields.php:350
1966
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
  msgid "French Polynesia"
1968
- msgstr "French Polynesia"
1969
 
1970
  #: profile-builder-2.0/admin/manage-fields.php:351
1971
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
  msgid "French Southern Territories"
1973
- msgstr "French Southern Territories"
1974
 
1975
  #: profile-builder-2.0/admin/manage-fields.php:352
1976
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -1985,12 +1985,12 @@ msgstr "Gambia"
1985
  #: profile-builder-2.0/admin/manage-fields.php:354
1986
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
  msgid "Georgia"
1988
- msgstr "Georgia"
1989
 
1990
  #: profile-builder-2.0/admin/manage-fields.php:355
1991
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
  msgid "Germany"
1993
- msgstr "Germany"
1994
 
1995
  #: profile-builder-2.0/admin/manage-fields.php:356
1996
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2005,12 +2005,12 @@ msgstr "Gibraltar"
2005
  #: profile-builder-2.0/admin/manage-fields.php:358
2006
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Greece"
2008
- msgstr "Greece"
2009
 
2010
  #: profile-builder-2.0/admin/manage-fields.php:359
2011
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Greenland"
2013
- msgstr "Greenland"
2014
 
2015
  #: profile-builder-2.0/admin/manage-fields.php:360
2016
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2060,7 +2060,7 @@ msgstr "Haiti"
2060
  #: profile-builder-2.0/admin/manage-fields.php:369
2061
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
  msgid "Heard Island and McDonald Islands"
2063
- msgstr "Heard Island and McDonald Islands"
2064
 
2065
  #: profile-builder-2.0/admin/manage-fields.php:370
2066
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2075,12 +2075,12 @@ msgstr "Hong Kong"
2075
  #: profile-builder-2.0/admin/manage-fields.php:372
2076
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
  msgid "Hungary"
2078
- msgstr "Hungary"
2079
 
2080
  #: profile-builder-2.0/admin/manage-fields.php:373
2081
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
  msgid "Iceland"
2083
- msgstr "Iceland"
2084
 
2085
  #: profile-builder-2.0/admin/manage-fields.php:374
2086
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2090,7 +2090,7 @@ msgstr "India"
2090
  #: profile-builder-2.0/admin/manage-fields.php:375
2091
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
  msgid "Indonesia"
2093
- msgstr "Indonesia"
2094
 
2095
  #: profile-builder-2.0/admin/manage-fields.php:376
2096
  msgid "Iran"
@@ -2099,17 +2099,17 @@ msgstr "Iran"
2099
  #: profile-builder-2.0/admin/manage-fields.php:377
2100
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
  msgid "Iraq"
2102
- msgstr "Iraq"
2103
 
2104
  #: profile-builder-2.0/admin/manage-fields.php:378
2105
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
  msgid "Ireland"
2107
- msgstr "Ireland"
2108
 
2109
  #: profile-builder-2.0/admin/manage-fields.php:379
2110
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
  msgid "Isle of Man"
2112
- msgstr "Isle of Man"
2113
 
2114
  #: profile-builder-2.0/admin/manage-fields.php:380
2115
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2119,11 +2119,11 @@ msgstr "Israel"
2119
  #: profile-builder-2.0/admin/manage-fields.php:381
2120
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
  msgid "Italy"
2122
- msgstr "Italy"
2123
 
2124
  #: profile-builder-2.0/admin/manage-fields.php:382
2125
  msgid "Ivory Coast"
2126
- msgstr "Ivory Coast"
2127
 
2128
  #: profile-builder-2.0/admin/manage-fields.php:383
2129
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2143,7 +2143,7 @@ msgstr "Jersey"
2143
  #: profile-builder-2.0/admin/manage-fields.php:386
2144
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
  msgid "Jordan"
2146
- msgstr "Jordan"
2147
 
2148
  #: profile-builder-2.0/admin/manage-fields.php:387
2149
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2153,7 +2153,7 @@ msgstr "Kazakhstan"
2153
  #: profile-builder-2.0/admin/manage-fields.php:388
2154
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
  msgid "Kenya"
2156
- msgstr "Kenya"
2157
 
2158
  #: profile-builder-2.0/admin/manage-fields.php:389
2159
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2167,12 +2167,12 @@ msgstr "Kosovo"
2167
  #: profile-builder-2.0/admin/manage-fields.php:391
2168
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
  msgid "Kuwait"
2170
- msgstr "Kuwait"
2171
 
2172
  #: profile-builder-2.0/admin/manage-fields.php:392
2173
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
  msgid "Kyrgyzstan"
2175
- msgstr "Kyrgyzstan"
2176
 
2177
  #: profile-builder-2.0/admin/manage-fields.php:393
2178
  msgid "Laos"
@@ -2181,12 +2181,12 @@ msgstr "Laos"
2181
  #: profile-builder-2.0/admin/manage-fields.php:394
2182
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Latvia"
2184
- msgstr "Latvia"
2185
 
2186
  #: profile-builder-2.0/admin/manage-fields.php:395
2187
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
  msgid "Lebanon"
2189
- msgstr "Lebanon"
2190
 
2191
  #: profile-builder-2.0/admin/manage-fields.php:396
2192
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2201,7 +2201,7 @@ msgstr "Liberia"
2201
  #: profile-builder-2.0/admin/manage-fields.php:398
2202
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
  msgid "Libya"
2204
- msgstr "Libya"
2205
 
2206
  #: profile-builder-2.0/admin/manage-fields.php:399
2207
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2211,12 +2211,12 @@ msgstr "Liechtenstein"
2211
  #: profile-builder-2.0/admin/manage-fields.php:400
2212
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
  msgid "Lithuania"
2214
- msgstr "Lithuania"
2215
 
2216
  #: profile-builder-2.0/admin/manage-fields.php:401
2217
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
  msgid "Luxembourg"
2219
- msgstr "Luxembourg"
2220
 
2221
  #: profile-builder-2.0/admin/manage-fields.php:402
2222
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2225,7 +2225,7 @@ msgstr "Macao"
2225
 
2226
  #: profile-builder-2.0/admin/manage-fields.php:403
2227
  msgid "Macedonia"
2228
- msgstr "Macedonia"
2229
 
2230
  #: profile-builder-2.0/admin/manage-fields.php:404
2231
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2240,12 +2240,12 @@ msgstr "Malawi"
2240
  #: profile-builder-2.0/admin/manage-fields.php:406
2241
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Malaysia"
2243
- msgstr "Malaysia"
2244
 
2245
  #: profile-builder-2.0/admin/manage-fields.php:407
2246
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Maldives"
2248
- msgstr "Maldives"
2249
 
2250
  #: profile-builder-2.0/admin/manage-fields.php:408
2251
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2260,7 +2260,7 @@ msgstr "Malta"
2260
  #: profile-builder-2.0/admin/manage-fields.php:410
2261
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2262
  msgid "Marshall Islands"
2263
- msgstr "Marshall Islands"
2264
 
2265
  #: profile-builder-2.0/admin/manage-fields.php:411
2266
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2270,7 +2270,7 @@ msgstr "Martinique"
2270
  #: profile-builder-2.0/admin/manage-fields.php:412
2271
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2272
  msgid "Mauritania"
2273
- msgstr "Mauritania"
2274
 
2275
  #: profile-builder-2.0/admin/manage-fields.php:413
2276
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2293,7 +2293,7 @@ msgstr "Micronesia"
2293
 
2294
  #: profile-builder-2.0/admin/manage-fields.php:417
2295
  msgid "Moldova"
2296
- msgstr "Moldova"
2297
 
2298
  #: profile-builder-2.0/admin/manage-fields.php:418
2299
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2303,7 +2303,7 @@ msgstr "Monaco"
2303
  #: profile-builder-2.0/admin/manage-fields.php:419
2304
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Mongolia"
2306
- msgstr "Mongolia"
2307
 
2308
  #: profile-builder-2.0/admin/manage-fields.php:420
2309
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2318,7 +2318,7 @@ msgstr "Montserrat"
2318
  #: profile-builder-2.0/admin/manage-fields.php:422
2319
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Morocco"
2321
- msgstr "Morocco"
2322
 
2323
  #: profile-builder-2.0/admin/manage-fields.php:423
2324
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2333,7 +2333,7 @@ msgstr "Myanmar"
2333
  #: profile-builder-2.0/admin/manage-fields.php:425
2334
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Namibia"
2336
- msgstr "Namibia"
2337
 
2338
  #: profile-builder-2.0/admin/manage-fields.php:426
2339
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2348,17 +2348,17 @@ msgstr "Nepal"
2348
  #: profile-builder-2.0/admin/manage-fields.php:428
2349
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
  msgid "Netherlands"
2351
- msgstr "Netherlands"
2352
 
2353
  #: profile-builder-2.0/admin/manage-fields.php:429
2354
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
  msgid "New Caledonia"
2356
- msgstr "New Caledonia"
2357
 
2358
  #: profile-builder-2.0/admin/manage-fields.php:430
2359
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
  msgid "New Zealand"
2361
- msgstr "New Zealand"
2362
 
2363
  #: profile-builder-2.0/admin/manage-fields.php:431
2364
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2383,21 +2383,21 @@ msgstr "Niue"
2383
  #: profile-builder-2.0/admin/manage-fields.php:435
2384
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
  msgid "Norfolk Island"
2386
- msgstr "Norfolk Island"
2387
 
2388
  #: profile-builder-2.0/admin/manage-fields.php:436
2389
  msgid "North Korea"
2390
- msgstr "North Korea"
2391
 
2392
  #: profile-builder-2.0/admin/manage-fields.php:437
2393
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2394
  msgid "Northern Mariana Islands"
2395
- msgstr "Northern Mariana Islands"
2396
 
2397
  #: profile-builder-2.0/admin/manage-fields.php:438
2398
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2399
  msgid "Norway"
2400
- msgstr "Norway"
2401
 
2402
  #: profile-builder-2.0/admin/manage-fields.php:439
2403
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2416,7 +2416,7 @@ msgstr "Palau"
2416
 
2417
  #: profile-builder-2.0/admin/manage-fields.php:442
2418
  msgid "Palestinian Territory"
2419
- msgstr "Palestinian Territory"
2420
 
2421
  #: profile-builder-2.0/admin/manage-fields.php:443
2422
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2426,7 +2426,7 @@ msgstr "Panama"
2426
  #: profile-builder-2.0/admin/manage-fields.php:444
2427
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2428
  msgid "Papua New Guinea"
2429
- msgstr "Papua New Guinea"
2430
 
2431
  #: profile-builder-2.0/admin/manage-fields.php:445
2432
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2441,7 +2441,7 @@ msgstr "Peru"
2441
  #: profile-builder-2.0/admin/manage-fields.php:447
2442
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2443
  msgid "Philippines"
2444
- msgstr "Philippines"
2445
 
2446
  #: profile-builder-2.0/admin/manage-fields.php:448
2447
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2451,7 +2451,7 @@ msgstr "Pitcairn"
2451
  #: profile-builder-2.0/admin/manage-fields.php:449
2452
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2453
  msgid "Poland"
2454
- msgstr "Poland"
2455
 
2456
  #: profile-builder-2.0/admin/manage-fields.php:450
2457
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2470,7 +2470,7 @@ msgstr "Qatar"
2470
 
2471
  #: profile-builder-2.0/admin/manage-fields.php:453
2472
  msgid "Republic of the Congo"
2473
- msgstr "Republic of the Congo"
2474
 
2475
  #: profile-builder-2.0/admin/manage-fields.php:454
2476
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2480,11 +2480,11 @@ msgstr "Reunion"
2480
  #: profile-builder-2.0/admin/manage-fields.php:455
2481
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2482
  msgid "Romania"
2483
- msgstr "Romania"
2484
 
2485
  #: profile-builder-2.0/admin/manage-fields.php:456
2486
  msgid "Russia"
2487
- msgstr "Russia"
2488
 
2489
  #: profile-builder-2.0/admin/manage-fields.php:457
2490
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2498,12 +2498,12 @@ msgstr "Saint Barthelemy"
2498
 
2499
  #: profile-builder-2.0/admin/manage-fields.php:459
2500
  msgid "Saint Helena"
2501
- msgstr "Saint Helena"
2502
 
2503
  #: profile-builder-2.0/admin/manage-fields.php:460
2504
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
  msgid "Saint Kitts and Nevis"
2506
- msgstr "Saint Kitts and Nevis"
2507
 
2508
  #: profile-builder-2.0/admin/manage-fields.php:461
2509
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2512,17 +2512,17 @@ msgstr "Saint Lucia"
2512
 
2513
  #: profile-builder-2.0/admin/manage-fields.php:462
2514
  msgid "Saint Martin"
2515
- msgstr "Saint Martin"
2516
 
2517
  #: profile-builder-2.0/admin/manage-fields.php:463
2518
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Saint Pierre and Miquelon"
2520
- msgstr "Saint Pierre and Miquelon"
2521
 
2522
  #: profile-builder-2.0/admin/manage-fields.php:464
2523
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2524
  msgid "Saint Vincent and the Grenadines"
2525
- msgstr "Saint Vincent and the Grenadines"
2526
 
2527
  #: profile-builder-2.0/admin/manage-fields.php:465
2528
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2537,12 +2537,12 @@ msgstr "San Marino"
2537
  #: profile-builder-2.0/admin/manage-fields.php:467
2538
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2539
  msgid "Sao Tome and Principe"
2540
- msgstr "Sao Tome and Principe"
2541
 
2542
  #: profile-builder-2.0/admin/manage-fields.php:468
2543
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2544
  msgid "Saudi Arabia"
2545
- msgstr "Saudi Arabia"
2546
 
2547
  #: profile-builder-2.0/admin/manage-fields.php:469
2548
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2552,12 +2552,12 @@ msgstr "Senegal"
2552
  #: profile-builder-2.0/admin/manage-fields.php:470
2553
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
  msgid "Serbia"
2555
- msgstr "Serbia"
2556
 
2557
  #: profile-builder-2.0/admin/manage-fields.php:471
2558
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
  msgid "Seychelles"
2560
- msgstr "Seychelles"
2561
 
2562
  #: profile-builder-2.0/admin/manage-fields.php:472
2563
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2576,46 +2576,46 @@ msgstr "Sint Maarten"
2576
  #: profile-builder-2.0/admin/manage-fields.php:475
2577
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2578
  msgid "Slovakia"
2579
- msgstr "Slovakia"
2580
 
2581
  #: profile-builder-2.0/admin/manage-fields.php:476
2582
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2583
  msgid "Slovenia"
2584
- msgstr "Slovenia"
2585
 
2586
  #: profile-builder-2.0/admin/manage-fields.php:477
2587
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2588
  msgid "Solomon Islands"
2589
- msgstr "Solomon Islands"
2590
 
2591
  #: profile-builder-2.0/admin/manage-fields.php:478
2592
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2593
  msgid "Somalia"
2594
- msgstr "Somalia"
2595
 
2596
  #: profile-builder-2.0/admin/manage-fields.php:479
2597
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2598
  msgid "South Africa"
2599
- msgstr "South Africa"
2600
 
2601
  #: profile-builder-2.0/admin/manage-fields.php:480
2602
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2603
  msgid "South Georgia and the South Sandwich Islands"
2604
- msgstr "South Georgia and the South Sandwich Islands"
2605
 
2606
  #: profile-builder-2.0/admin/manage-fields.php:481
2607
  msgid "South Korea"
2608
- msgstr "South Korea"
2609
 
2610
  #: profile-builder-2.0/admin/manage-fields.php:482
2611
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2612
  msgid "South Sudan"
2613
- msgstr "South Sudan"
2614
 
2615
  #: profile-builder-2.0/admin/manage-fields.php:483
2616
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2617
  msgid "Spain"
2618
- msgstr "Spain"
2619
 
2620
  #: profile-builder-2.0/admin/manage-fields.php:484
2621
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2625,7 +2625,7 @@ msgstr "Sri Lanka"
2625
  #: profile-builder-2.0/admin/manage-fields.php:485
2626
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
  msgid "Sudan"
2628
- msgstr "Sudan"
2629
 
2630
  #: profile-builder-2.0/admin/manage-fields.php:486
2631
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2635,7 +2635,7 @@ msgstr "Suriname"
2635
  #: profile-builder-2.0/admin/manage-fields.php:487
2636
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2637
  msgid "Svalbard and Jan Mayen"
2638
- msgstr "Svalbard and Jan Mayen"
2639
 
2640
  #: profile-builder-2.0/admin/manage-fields.php:488
2641
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2645,16 +2645,16 @@ msgstr "Swaziland"
2645
  #: profile-builder-2.0/admin/manage-fields.php:489
2646
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
  msgid "Sweden"
2648
- msgstr "Sweden"
2649
 
2650
  #: profile-builder-2.0/admin/manage-fields.php:490
2651
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Switzerland"
2653
- msgstr "Switzerland"
2654
 
2655
  #: profile-builder-2.0/admin/manage-fields.php:491
2656
  msgid "Syria"
2657
- msgstr "Syria"
2658
 
2659
  #: profile-builder-2.0/admin/manage-fields.php:492
2660
  msgid "Taiwan"
@@ -2692,17 +2692,17 @@ msgstr "Tonga"
2692
  #: profile-builder-2.0/admin/manage-fields.php:499
2693
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
  msgid "Trinidad and Tobago"
2695
- msgstr "Trinidad and Tobago"
2696
 
2697
  #: profile-builder-2.0/admin/manage-fields.php:500
2698
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
  msgid "Tunisia"
2700
- msgstr "Tunisia"
2701
 
2702
  #: profile-builder-2.0/admin/manage-fields.php:501
2703
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
  msgid "Turkey"
2705
- msgstr "Turkey"
2706
 
2707
  #: profile-builder-2.0/admin/manage-fields.php:502
2708
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2712,7 +2712,7 @@ msgstr "Turkmenistan"
2712
  #: profile-builder-2.0/admin/manage-fields.php:503
2713
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
  msgid "Turks and Caicos Islands"
2715
- msgstr "Turks and Caicos Islands"
2716
 
2717
  #: profile-builder-2.0/admin/manage-fields.php:504
2718
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2721,7 +2721,7 @@ msgstr "Tuvalu"
2721
 
2722
  #: profile-builder-2.0/admin/manage-fields.php:505
2723
  msgid "U.S. Virgin Islands"
2724
- msgstr "U.S. Virgin Islands"
2725
 
2726
  #: profile-builder-2.0/admin/manage-fields.php:506
2727
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2731,27 +2731,27 @@ msgstr "Uganda"
2731
  #: profile-builder-2.0/admin/manage-fields.php:507
2732
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
  msgid "Ukraine"
2734
- msgstr "Ukraine"
2735
 
2736
  #: profile-builder-2.0/admin/manage-fields.php:508
2737
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2738
  msgid "United Arab Emirates"
2739
- msgstr "United Arab Emirates"
2740
 
2741
  #: profile-builder-2.0/admin/manage-fields.php:509
2742
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2743
  msgid "United Kingdom"
2744
- msgstr "United Kingdom"
2745
 
2746
  #: profile-builder-2.0/admin/manage-fields.php:510
2747
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2748
  msgid "United States"
2749
- msgstr "United States"
2750
 
2751
  #: profile-builder-2.0/admin/manage-fields.php:511
2752
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2753
  msgid "United States Minor Outlying Islands"
2754
- msgstr "United States Minor Outlying Islands"
2755
 
2756
  #: profile-builder-2.0/admin/manage-fields.php:512
2757
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2761,7 +2761,7 @@ msgstr "Uruguay"
2761
  #: profile-builder-2.0/admin/manage-fields.php:513
2762
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
  msgid "Uzbekistan"
2764
- msgstr "Uzbekistan"
2765
 
2766
  #: profile-builder-2.0/admin/manage-fields.php:514
2767
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2770,7 +2770,7 @@ msgstr "Vanuatu"
2770
 
2771
  #: profile-builder-2.0/admin/manage-fields.php:515
2772
  msgid "Vatican"
2773
- msgstr "Vatican"
2774
 
2775
  #: profile-builder-2.0/admin/manage-fields.php:516
2776
  msgid "Venezuela"
@@ -2783,17 +2783,17 @@ msgstr "Vietnam"
2783
  #: profile-builder-2.0/admin/manage-fields.php:518
2784
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2785
  msgid "Wallis and Futuna"
2786
- msgstr "Wallis and Futuna"
2787
 
2788
  #: profile-builder-2.0/admin/manage-fields.php:519
2789
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2790
  msgid "Western Sahara"
2791
- msgstr "Western Sahara"
2792
 
2793
  #: profile-builder-2.0/admin/manage-fields.php:520
2794
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
  msgid "Yemen"
2796
- msgstr "Yemen"
2797
 
2798
  #: profile-builder-2.0/admin/manage-fields.php:521
2799
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2832,7 +2832,7 @@ msgstr "Klik op de TERUG button van uw browser, en probeer opnieuw."
2832
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2833
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2834
  msgid "Sorry, you cannot upload this file type for this field."
2835
- msgstr "Sorrie, u kan deze filetype niet uploaden"
2836
 
2837
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2838
  msgid "An error occurred, please try again later."
@@ -3014,7 +3014,7 @@ msgstr "Voer a.u.b. een geldige gebruikersnaam in."
3014
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3015
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3016
  msgid "Only administrators can see this field on edit profile forms."
3017
- msgstr "Alleen beheerders kunnen dit veld op profielformulieren zien."
3018
 
3019
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3020
  msgid "As an administrator you cannot change your role."
@@ -3110,15 +3110,15 @@ msgstr "Gebruikersnaam en e-mailadres"
3110
 
3111
  #: profile-builder-2.0/admin/general-settings.php:168
3112
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3113
- msgstr "'Gebruikersnaam en e-mailadres-gebruikers kunnen inloggen met zowel Gebruikersnaam als E-mailadres."
3114
 
3115
  #: profile-builder-2.0/admin/general-settings.php:169
3116
  msgid "\"Username\" - users can Log In only with Username."
3117
- msgstr "'Gebruikersnaam'-gebruikers kunnen alleen inloggen met Gebruikersnaam."
3118
 
3119
  #: profile-builder-2.0/admin/general-settings.php:170
3120
  msgid "\"Email\" - users can Log In only with Email."
3121
- msgstr "'E-mail'-gebruikers kunnen alleen inloggen met E-mailadres."
3122
 
3123
  #: profile-builder-2.0/admin/manage-fields.php:119
3124
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
@@ -3142,7 +3142,7 @@ msgstr "Volgorde gebruikersrollen"
3142
 
3143
  #: profile-builder-2.0/admin/manage-fields.php:131
3144
  msgid "Save the user role order from the user roles checkboxes"
3145
- msgstr "Sla de volgorde van de gebruikersrollen op o.b.v. de aanvinkvakjes voor de gebruikersrollen"
3146
 
3147
  #: profile-builder-2.0/admin/manage-fields.php:1111
3148
  msgid "Please select at least one user role\n"
@@ -3174,7 +3174,7 @@ msgstr "tonen"
3174
 
3175
  #: profile-builder-2.0/features/functions.php:763
3176
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3177
- msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sInstellingen%2$s > Algemeen en vink achter 'Lidmaatschap' aan 'Iedereen kan registreren'. %3$sSluiten%4$s"
3178
 
3179
  #: profile-builder-2.0/front-end/class-formbuilder.php:681
3180
  msgid "User to edit:"
@@ -3301,7 +3301,7 @@ msgstr "Annuleren"
3301
 
3302
  #: profile-builder-2.0/features/functions.php:767
3303
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3304
- msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder voor uw website te registreren, moet u eerst gebruikersregistratie inschakelen. Ga naar de %1$sInstellingen > Tabblad Algemeen%2$s en zorg ervoor dat u onder Lidmaatschap 'Iedereen kan registreren' aangevinkt hebt. %3$sSluiten%4$s"
3305
 
3306
  #: profile-builder-2.0/front-end/login.php:144
3307
  msgid "Invalid username."
@@ -3511,7 +3511,7 @@ msgstr "Wees er zeker van dat gebruikers zich met echte e-mailadressen aanmelden
3511
 
3512
  #: profile-builder-2.0/admin/basic-info.php:69
3513
  msgid "Minimum Password Length and Strength Meter"
3514
- msgstr "Minimum wachtwoordlengte- en sterktemeter"
3515
 
3516
  #: profile-builder-2.0/admin/basic-info.php:70
3517
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
@@ -3551,7 +3551,7 @@ msgstr "Algemene uploads"
3551
 
3552
  #: profile-builder-2.0/admin/basic-info.php:97
3553
  msgid "Agree To Terms Checkbox"
3554
- msgstr "Selectievakje 'Akkoord met de voorwaarden'"
3555
 
3556
  #: profile-builder-2.0/admin/basic-info.php:98
3557
  msgid "Datepicker"
@@ -3559,7 +3559,7 @@ msgstr "Datumkiezer"
3559
 
3560
  #: profile-builder-2.0/admin/basic-info.php:101
3561
  msgid "reCAPTCHA"
3562
- msgstr "Nieuwe CAPTCHA"
3563
 
3564
  #: profile-builder-2.0/admin/basic-info.php:102
3565
  msgid "Country Select"
@@ -3571,7 +3571,7 @@ msgstr "Tijdzoneselectie"
3571
 
3572
  #: profile-builder-2.0/admin/basic-info.php:108
3573
  msgid "Input / Hidden Input"
3574
- msgstr "Invoer/Afgeschermde invoer"
3575
 
3576
  #: profile-builder-2.0/admin/basic-info.php:110
3577
  msgid "Checkbox"
@@ -3620,7 +3620,7 @@ msgstr "Eenvoudig te bewerken sjablonen voor gebruikerslijsten en gebruikerspagi
3620
 
3621
  #: profile-builder-2.0/admin/basic-info.php:144
3622
  msgid "Email Customizer"
3623
- msgstr "E-mailadres-aanpasser"
3624
 
3625
  #: profile-builder-2.0/admin/basic-info.php:145
3626
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
@@ -3682,7 +3682,7 @@ msgstr "U kunt het standaardbestand hier vinden: %1$s"
3682
 
3683
  #: profile-builder-2.0/admin/general-settings.php:54
3684
  msgid "\"Email Confirmation\" Activated:"
3685
- msgstr "'E-mailbevestiging' geactiveerd:"
3686
 
3687
  #: profile-builder-2.0/admin/general-settings.php:59
3688
  #: profile-builder-2.0/admin/general-settings.php:108
@@ -3697,7 +3697,7 @@ msgstr "U kunt een lijst met niet bevestigde e-mailadressen vinden in %1$sGebrui
3697
 
3698
  #: profile-builder-2.0/admin/general-settings.php:72
3699
  msgid "\"Email Confirmation\" Landing Page:"
3700
- msgstr "Startpagina 'E-mailbevestiging':"
3701
 
3702
  #: profile-builder-2.0/admin/general-settings.php:77
3703
  msgid "Existing Pages"
@@ -3709,7 +3709,7 @@ msgstr "Specificeer de pagina waar gebruikers naar worden doorgestuurd als ze hu
3709
 
3710
  #: profile-builder-2.0/admin/general-settings.php:103
3711
  msgid "\"Admin Approval\" Activated:"
3712
- msgstr "'Goedkeuring beheerder' geactiveerd:"
3713
 
3714
  #: profile-builder-2.0/admin/general-settings.php:111
3715
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
@@ -3717,7 +3717,7 @@ msgstr "U kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers >
3717
 
3718
  #: profile-builder-2.0/admin/general-settings.php:149
3719
  msgid "\"Admin Approval\" Feature:"
3720
- msgstr "Functie 'Goedkeuring beheerder':"
3721
 
3722
  #: profile-builder-2.0/admin/general-settings.php:152
3723
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
@@ -3753,15 +3753,15 @@ msgstr "E-mailadres"
3753
 
3754
  #: profile-builder-2.0/admin/general-settings.php:177
3755
  msgid "Minimum Password Length:"
3756
- msgstr "Minimumwachtwoordlengte:"
3757
 
3758
  #: profile-builder-2.0/admin/general-settings.php:182
3759
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3760
- msgstr "Voer het minimumaantal karakters in die het wachtwoord moe hebben. Laat leeg voor geen minimumlimiet."
3761
 
3762
  #: profile-builder-2.0/admin/general-settings.php:189
3763
  msgid "Minimum Password Strength:"
3764
- msgstr "Minimumwachtwoordsterkte:"
3765
 
3766
  #: profile-builder-2.0/admin/general-settings.php:193
3767
  msgid "Disabled"
@@ -3898,7 +3898,7 @@ msgstr "Specificeer de optie die standaard geselecteerd moet worden.<br/>Als er
3898
 
3899
  #: profile-builder-2.0/admin/manage-fields.php:148
3900
  msgid "Default Content"
3901
- msgstr "Standaardcontent"
3902
 
3903
  #: profile-builder-2.0/admin/manage-fields.php:148
3904
  msgid "Default value of the textarea"
@@ -4156,7 +4156,7 @@ msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4156
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4157
  #: profile-builder-2.0/features/functions.php:752
4158
  msgid "Content"
4159
- msgstr "Content"
4160
 
4161
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4162
  msgid "Edit this item"
@@ -4225,7 +4225,7 @@ msgstr "Lijstweergave"
4225
 
4226
  #: profile-builder-2.0/features/class-list-table.php:432
4227
  msgid "Excerpt View"
4228
- msgstr "Uittrekselweergave"
4229
 
4230
  #: profile-builder-2.0/features/class-list-table.php:458
4231
  msgid "%s pending"
@@ -4468,7 +4468,7 @@ msgstr "De geselecteerde gebruiker kon niet verwijderd worden"
4468
 
4469
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4470
  msgid "Email notification resent to user"
4471
- msgstr "E-mailkennisgeving opnieuw gestuurd naar gebruiker"
4472
 
4473
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4474
  msgid "[%1$s] Activate %2$s"
@@ -4519,7 +4519,7 @@ msgstr "Met deze inlogwidget kunt u een inlogformulier op de zijbalk plaatsen."
4519
 
4520
  #: profile-builder-2.0/features/login-widget/login-widget.php:15
4521
  msgid "Profile Builder Login Widget"
4522
- msgstr "'Profile Builder'-inlogwidget"
4523
 
4524
  #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4525
  #: profile-builder-2.0/front-end/class-formbuilder.php:420
@@ -4533,7 +4533,7 @@ msgstr "Titel:"
4533
 
4534
  #: profile-builder-2.0/features/login-widget/login-widget.php:68
4535
  msgid "After login redirect URL (optional):"
4536
- msgstr "Doorverwijs URL na inloggen (optioneel):"
4537
 
4538
  #: profile-builder-2.0/features/login-widget/login-widget.php:73
4539
  msgid "Register page URL (optional):"
@@ -4839,7 +4839,7 @@ msgstr "verplicht"
4839
 
4840
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
4841
  msgid "To use reCAPTCHA you must get an API key from"
4842
- msgstr "Om 'CAPTCHA opnieuw uitvoeren' te gebruiken moet u een API-sleutel krijgen van"
4843
 
4844
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
4845
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
@@ -4847,7 +4847,7 @@ msgstr "Om veiligheidsredenen moet u het externe IP adres doorgeven aan reCAPTCH
4847
 
4848
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
4849
  msgid "To use reCAPTCHA you must get an API public key from:"
4850
- msgstr "Om reCAPTCHA te kunnen gebruiken moet u een openbare API-sleutel halen van:"
4851
 
4852
  #: profile-builder-2.0/modules/modules.php:11
4853
  #: profile-builder-2.0/modules/modules.php:58
@@ -4915,7 +4915,7 @@ msgstr "URL"
4915
 
4916
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4917
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4918
- msgstr "Deze instellingen worden tijdens het opslaan ook overgenomen in de instellingenpagina 'Aanpasfunctie gebruiker-mailadres'."
4919
 
4920
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4921
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
@@ -4981,7 +4981,7 @@ msgstr ""
4981
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4982
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4983
  msgid "Registration with Admin Approval"
4984
- msgstr "Registratie met 'goedkeuring beheerder'"
4985
 
4986
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4987
  msgid "Available Tags"
@@ -5112,7 +5112,7 @@ msgstr "Kennisgeving afgekeurde gebruiker"
5112
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5113
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5114
  msgid "Edit-profile Form"
5115
- msgstr "Formulier om profiel te bewerken"
5116
 
5117
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5118
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
@@ -5122,36 +5122,36 @@ msgstr "Nieuw toevoegen"
5122
 
5123
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5124
  msgid "Add new Edit-profile Form"
5125
- msgstr "Formulier voeg nieuw toe/bewerk profiel"
5126
 
5127
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5128
  msgid "Edit the Edit-profile Forms"
5129
- msgstr "Het profielbewerk-formulier"
5130
 
5131
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5132
  msgid "New Edit-profile Form"
5133
- msgstr "Nieuw profielbewerk-formulier"
5134
 
5135
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5136
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5137
  msgid "Edit-profile Forms"
5138
- msgstr "Profielbewerk-formulieren"
5139
 
5140
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5141
  msgid "View the Edit-profile Form"
5142
- msgstr "Bekijk het profielbewerk-formulier"
5143
 
5144
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5145
  msgid "Search the Edit-profile Forms"
5146
- msgstr "Zoek de profielbewerk-formulieren"
5147
 
5148
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5149
  msgid "No Edit-profile Form found"
5150
- msgstr "Geen profielbewerk-formulier gevonden"
5151
 
5152
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5153
  msgid "No Edit-profile Forms found in trash"
5154
- msgstr "Geen Profielbewerk-formulieren in prullenbak gevonden"
5155
 
5156
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5157
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
@@ -5210,7 +5210,7 @@ msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen worde
5210
 
5211
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5212
  msgid "After Profile Update..."
5213
- msgstr "Na bijwerkenprofiel..."
5214
 
5215
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5216
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
@@ -5351,7 +5351,7 @@ msgstr "Meer Info"
5351
 
5352
  #: profile-builder-2.0/modules/user-listing/userlisting.php:149
5353
  msgid "More Info Url"
5354
- msgstr "'Meer info'-URL"
5355
 
5356
  #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5357
  msgid "Avatar or Gravatar"
@@ -5372,7 +5372,7 @@ msgstr "Zoek alle velden"
5372
 
5373
  #: profile-builder-2.0/modules/user-listing/userlisting.php:220
5374
  msgid "Go Back Link"
5375
- msgstr "'Ga terug'-link"
5376
 
5377
  #: profile-builder-2.0/modules/user-listing/userlisting.php:238
5378
  msgid "All-userlisting Template"
@@ -5455,11 +5455,11 @@ msgstr "Laatste &raquo;&raquo;"
5455
 
5456
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1448
5457
  msgid "You don't have any pagination settings on this userlisting!"
5458
- msgstr "Er zijn geen pagina instellingen voor deze gebruikerslijst!"
5459
 
5460
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1849
5461
  msgid "Search"
5462
- msgstr "Zoeken"
5463
 
5464
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1850
5465
  msgid "Clear Results"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-12-12 10:39:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
12
 
13
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
+ msgstr "Sta je gebruikers toe om <strong>betaalde accounts met Profile Builder</strong> te hebben. %1$sLees meer >%2$s %3$sSluiten%4$s"
16
 
17
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
+ msgstr "Welkom bij %1$s!<br/><br/><br/>Je gebruikersnaam is:%2$s"
20
 
21
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
  msgid "View Map"
23
+ msgstr "Bekijk plattegrond"
24
 
25
  #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
  #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
  #: pb-add-on-woocommerce/index.php:493
28
  msgid "Address line 2"
29
+ msgstr "Adresregel 2"
30
 
31
  #: pb-add-on-woocommerce/index.php:256
32
  msgid "Billing Fields"
33
+ msgstr "Factuurvelden"
34
 
35
  #: pb-add-on-woocommerce/index.php:256
36
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
+ msgstr "Selecteer welke WooCommerce factuurvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijn"
38
 
39
  #: pb-add-on-woocommerce/index.php:257
40
  msgid "Billing Fields Order"
41
+ msgstr "Volgorde factuurvelden"
42
 
43
  #: pb-add-on-woocommerce/index.php:257
44
  msgid "Save the billing fields order from the billing fields checkboxes"
45
+ msgstr "Sla de volgorde van de factuurvelden op o.b.v. de selectievakjes voor de factuurvelden"
46
 
47
  #: pb-add-on-woocommerce/index.php:258
48
  msgid "Billing Fields Name"
49
+ msgstr "Naam factuurveld"
50
 
51
  #: pb-add-on-woocommerce/index.php:258
52
  msgid "Save the billing fields names"
53
+ msgstr "Sla de namen van de factuurvelden op"
54
 
55
  #: pb-add-on-woocommerce/index.php:275
56
  msgid "Shipping Fields"
57
+ msgstr "Bezorgvelden"
58
 
59
  #: pb-add-on-woocommerce/index.php:275
60
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
+ msgstr "Selecteer welke WooCommerce bezorgvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijn"
62
 
63
  #: pb-add-on-woocommerce/index.php:276
64
  msgid "Shipping Fields Order"
65
+ msgstr "Volgorde bezorgvelden"
66
 
67
  #: pb-add-on-woocommerce/index.php:276
68
  msgid "Save the shipping fields order from the billing fields checkboxes"
69
+ msgstr "Sla de volgorde van de bezorgvelden op o.b.v. de selectievakjes voor de bezorgvelden"
70
 
71
  #: pb-add-on-woocommerce/index.php:277
72
  msgid "Shipping Fields Name"
73
+ msgstr "Naam bezorgveld"
74
 
75
  #: pb-add-on-woocommerce/index.php:277
76
  msgid "Save the shipping fields names"
77
+ msgstr "Sla de namen van de bezorgvelden op"
78
 
79
  #: pb-add-on-woocommerce/index.php:305
80
  msgid "Field Name"
81
+ msgstr "Veldnaam"
82
 
83
  #: pb-add-on-woocommerce/index.php:369
84
  msgid "Click to edit "
85
+ msgstr "Klik om te bewerken"
86
 
87
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
  msgid "is not a valid phone number."
89
+ msgstr "is geen geldig telefoonnummer."
90
 
91
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
  msgid "is not a number."
93
+ msgstr "is geen nummer."
94
 
95
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
  msgid "must be a multiplier of "
97
+ msgstr "moet een veelvoud zijn van"
98
 
99
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
  msgid "must be a greater than or equal to "
101
+ msgstr "moet groter dan of gelijk zijn aan"
102
 
103
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
  msgid "must be less than or equal to "
105
+ msgstr "Moet kleiner dan of gelijk zijn aan"
106
 
107
  #: profile-builder-2.0/admin/add-ons.php:103
108
  msgid "Available in Hobbyist and Pro Versions"
109
+ msgstr "Beschikbaar in Hobbyist en Pro Versies"
110
 
111
  #: profile-builder-2.0/admin/add-ons.php:105
112
  msgid "Available in All Versions"
113
+ msgstr "Beschikbaar in alle versies"
114
 
115
  #: profile-builder-2.0/admin/add-ons.php:148
116
  msgid "Learn More"
117
+ msgstr "Lees meer"
118
 
119
  #: profile-builder-2.0/admin/basic-info.php:99
120
  msgid "Timepicker"
121
+ msgstr "Tijdkiezer"
122
 
123
  #: profile-builder-2.0/admin/basic-info.php:100
124
  msgid "Colorpicker"
125
+ msgstr "Kleurkiezer"
126
 
127
  #: profile-builder-2.0/admin/basic-info.php:103
128
  msgid "Currency Select"
129
+ msgstr "Selecteer valuta"
130
 
131
  #: profile-builder-2.0/admin/basic-info.php:109
132
  msgid "Number"
133
+ msgstr "Nummer"
134
 
135
  #: profile-builder-2.0/admin/basic-info.php:114
136
  msgid "Validation"
137
+ msgstr "Validatie"
138
 
139
  #: profile-builder-2.0/admin/basic-info.php:115
140
  msgid "Map"
141
+ msgstr "Plattegrond"
142
 
143
  #: profile-builder-2.0/admin/basic-info.php:116
144
  msgid "HTML"
145
+ msgstr "HTML"
146
 
147
  #: profile-builder-2.0/admin/basic-info.php:162
148
  #: profile-builder-2.0/modules/modules.php:117
149
  msgid "Repeater Fields"
150
+ msgstr "Herhalingsvelden"
151
 
152
  #: profile-builder-2.0/admin/basic-info.php:163
153
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
+ msgstr "Maak een groep herhalingsvelden op profiel registratie en profiel bewerkformulieren. Begrens het aantal groepen herhalingsvelden voor iedere gebruiksrol."
155
 
156
  #: profile-builder-2.0/admin/general-settings.php:62
157
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
+ msgstr "Dit werkt alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, met gebruik van de \"Aangepaste doorverwijzingen\" invoegtoepassing."
159
 
160
  #: profile-builder-2.0/admin/manage-fields.php:115
161
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
162
+ msgstr "Gebruik dit in combinatie met de WordPress-functies om de waarde te tonen op de door u gewenste pagina<br/>Automatisch aangevuld maar in sommige gevallen te bewerken (in dat geval moet het uniek zijn)<br/>Wijzigingen kunnen lang duren als er erg veel gebruikers zijn"
163
 
164
  #: profile-builder-2.0/admin/manage-fields.php:138
165
  msgid "Show Currency Symbol"
166
+ msgstr "Toon valuta symbool"
167
 
168
  #: profile-builder-2.0/admin/manage-fields.php:138
169
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
+ msgstr "Of het valuta symbool na de valuta naam getoond moet worden in de keuze optie."
171
 
172
  #: profile-builder-2.0/admin/manage-fields.php:139
173
  msgid "Show Post Type"
174
+ msgstr "Toon bericht type"
175
 
176
  #: profile-builder-2.0/admin/manage-fields.php:139
177
  msgid "Posts from what post type will be displayed in the select."
178
+ msgstr "Berichten van welk bericht type worden in de keuze optie getoond?"
179
 
180
  #: profile-builder-2.0/admin/manage-fields.php:140
181
  msgid "Allowable Values"
182
+ msgstr "Toegestane waarden"
183
 
184
  #: profile-builder-2.0/admin/manage-fields.php:140
185
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
+ msgstr "Voer een kommagescheiden lijst van mogelijke waardes in. Als de waarde die gebruiker tijdens registratie doorgeeft niet overeenkomt met 1 van deze waardes, wordt de gebruiker niet geregistreerd."
187
 
188
  #: profile-builder-2.0/admin/manage-fields.php:141
189
  msgid "Error Message"
190
+ msgstr "Foutmelding"
191
 
192
  #: profile-builder-2.0/admin/manage-fields.php:141
193
  msgid "Set a custom error message that will be displayed to the user."
194
+ msgstr "Maak een aangepaste foutmelding die aan gebruiker getoond wordt."
195
 
196
  #: profile-builder-2.0/admin/manage-fields.php:142
197
  msgid "Time Format"
198
+ msgstr "Tijdformaat"
199
 
200
  #: profile-builder-2.0/admin/manage-fields.php:142
201
  msgid "Specify the time format."
202
+ msgstr "Geef tijdformaat op."
203
 
204
  #: profile-builder-2.0/admin/manage-fields.php:143
205
  msgid "Google Maps API Key"
206
+ msgstr "Google Maps API sleutel"
207
 
208
  #: profile-builder-2.0/admin/manage-fields.php:143
209
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
+ msgstr "Voer je Google Maps API sleutel in ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Haal je API sleutel op</a> ). Als er meer dan 1 plattegrond veld aan een formulier toegevoegd is, wordt de API sleutel van de eerste plattegrond gebruikt."
211
 
212
  #: profile-builder-2.0/admin/manage-fields.php:144
213
  msgid "Default Latitude"
214
+ msgstr "Standaard breedtegraad"
215
 
216
  #: profile-builder-2.0/admin/manage-fields.php:144
217
  msgid "The latitude at which the map should be displayed when no pins are attached."
218
+ msgstr "De breedtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd."
219
 
220
  #: profile-builder-2.0/admin/manage-fields.php:145
221
  msgid "Default Longitude"
222
+ msgstr "Standaard lengtegraad"
223
 
224
  #: profile-builder-2.0/admin/manage-fields.php:145
225
  msgid "The longitude at which the map should be displayed when no pins are attached."
226
+ msgstr "De lengtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd."
227
 
228
  #: profile-builder-2.0/admin/manage-fields.php:146
229
  msgid "Default Zoom Level"
230
+ msgstr "Standaard zoom niveau"
231
 
232
  #: profile-builder-2.0/admin/manage-fields.php:146
233
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
+ msgstr "Voer een nummer van 0 tot 19 in. Hoe hoger het nummer hoe meer zoon."
235
 
236
  #: profile-builder-2.0/admin/manage-fields.php:147
237
  msgid "Map Height"
238
+ msgstr "Hoogte plattegrond"
239
 
240
  #: profile-builder-2.0/admin/manage-fields.php:147
241
  msgid "The height of the map."
242
+ msgstr "De hoogte van de plattegrond"
243
 
244
  #: profile-builder-2.0/admin/manage-fields.php:149
245
  msgid "HTML Content"
246
+ msgstr "HTML inhoud"
247
 
248
  #: profile-builder-2.0/admin/manage-fields.php:149
249
  msgid "Add your HTML (or text) content"
250
+ msgstr "Voeg je HTML (of tekst) inhoud toe"
251
 
252
  #: profile-builder-2.0/admin/manage-fields.php:150
253
  msgid "Phone Format"
254
+ msgstr "Telefoon formaat"
255
 
256
  #: profile-builder-2.0/admin/manage-fields.php:150
257
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
+ msgstr "Je kunt gebruiken: # voor nummers, haakjes ( ), - teken, + teken, punt . en spaties."
259
 
260
  #: profile-builder-2.0/admin/manage-fields.php:150
261
  msgid "Eg. (###) ###-####"
262
+ msgstr "Voorbeeld (###) ###-####"
263
 
264
  #: profile-builder-2.0/admin/manage-fields.php:150
265
  msgid "Empty field won't check for correct phone number."
266
+ msgstr "Leeg veld zal geen controle doen voor een correct telefoonnummer."
267
 
268
  #: profile-builder-2.0/admin/manage-fields.php:151
269
  msgid "Heading Tag"
270
+ msgstr "Heading Tag"
271
 
272
  #: profile-builder-2.0/admin/manage-fields.php:151
273
  msgid "Change heading field size on front-end forms"
274
+ msgstr "Verander grootte van heading veld in front-end formulieren"
275
 
276
  #: profile-builder-2.0/admin/manage-fields.php:152
277
  msgid "Min Number Value"
278
+ msgstr "Min nummer (waarde)"
279
 
280
  #: profile-builder-2.0/admin/manage-fields.php:152
281
  msgid "Min allowed number value (0 to allow only positive numbers)"
282
+ msgstr "Min toegestane nummer (0 om alleen positieve nummers toe te staan)"
283
 
284
  #: profile-builder-2.0/admin/manage-fields.php:152
285
  msgid "Leave it empty for no min value"
286
+ msgstr "Laat leeg voor geen minimale waarde"
287
 
288
  #: profile-builder-2.0/admin/manage-fields.php:153
289
  msgid "Max Number Value"
290
+ msgstr "Max nummer (waarde)"
291
 
292
  #: profile-builder-2.0/admin/manage-fields.php:153
293
  msgid "Max allowed number value (0 to allow only negative numbers)"
294
+ msgstr "Max toegestane nummer (0 om alleen negatieve nummers toe te staan)"
295
 
296
  #: profile-builder-2.0/admin/manage-fields.php:153
297
  msgid "Leave it empty for no max value"
298
+ msgstr "Laat leeg voor geen maximale waarde"
299
 
300
  #: profile-builder-2.0/admin/manage-fields.php:154
301
  msgid "Number Step Value"
302
+ msgstr "Stap waarde (nummer)"
303
 
304
  #: profile-builder-2.0/admin/manage-fields.php:154
305
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
+ msgstr "Stap waarde 1 om alleen gehele getallen toe te staan, 0.1 om gehele getallen en nummers met 1 decimaal toe te staan."
307
 
308
  #: profile-builder-2.0/admin/manage-fields.php:154
309
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
+ msgstr "Om meerdere decimalen toe te staan gebruik bv 0.01 (voor 2 decimalen) enzovoort"
311
 
312
  #: profile-builder-2.0/admin/manage-fields.php:154
313
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
+ msgstr "Je kunt de stap waarde ook gebruiken om toegestane intervallen in te stellen (bijvoorbeeld met stap waarde 2 zijn alleen -4, -2, 0, 2, enzovoort toegestaan)"
315
 
316
  #: profile-builder-2.0/admin/manage-fields.php:154
317
  msgid "Leave it empty for no restriction"
318
+ msgstr "Laat leeg voor geen beperking"
319
 
320
  #: profile-builder-2.0/admin/manage-fields.php:555
321
  msgid "Albania Lek"
322
+ msgstr "Albanië Lek"
323
 
324
  #: profile-builder-2.0/admin/manage-fields.php:556
325
  msgid "Afghanistan Afghani"
326
+ msgstr "Afghanistan Afghani"
327
 
328
  #: profile-builder-2.0/admin/manage-fields.php:557
329
  msgid "Argentina Peso"
330
+ msgstr "Argentinië Peso"
331
 
332
  #: profile-builder-2.0/admin/manage-fields.php:558
333
  msgid "Aruba Guilder"
334
+ msgstr "Aruba Gulden"
335
 
336
  #: profile-builder-2.0/admin/manage-fields.php:559
337
  msgid "Australia Dollar"
338
+ msgstr "Australië Dollar"
339
 
340
  #: profile-builder-2.0/admin/manage-fields.php:560
341
  msgid "Azerbaijan New Manat"
342
+ msgstr "Azerbeidzjan Manat"
343
 
344
  #: profile-builder-2.0/admin/manage-fields.php:561
345
  msgid "Bahamas Dollar"
346
+ msgstr "Bahama's Dollar"
347
 
348
  #: profile-builder-2.0/admin/manage-fields.php:562
349
  msgid "Barbados Dollar"
350
+ msgstr "Barbados Dollar"
351
 
352
  #: profile-builder-2.0/admin/manage-fields.php:563
353
  msgid "Bangladeshi taka"
354
+ msgstr "Bangladesh Taka"
355
 
356
  #: profile-builder-2.0/admin/manage-fields.php:564
357
  msgid "Belarus Ruble"
358
+ msgstr "Wit Rusland Roebel"
359
 
360
  #: profile-builder-2.0/admin/manage-fields.php:565
361
  msgid "Belize Dollar"
362
+ msgstr "Belize Dollar"
363
 
364
  #: profile-builder-2.0/admin/manage-fields.php:566
365
  msgid "Bermuda Dollar"
366
+ msgstr "Bermuda Dollar"
367
 
368
  #: profile-builder-2.0/admin/manage-fields.php:567
369
  msgid "Bolivia Boliviano"
370
+ msgstr "Bolivia Boliviano"
371
 
372
  #: profile-builder-2.0/admin/manage-fields.php:568
373
  msgid "Bosnia and Herzegovina Convertible Marka"
374
+ msgstr "Bosnië en Herzegovina Convertibele Mark"
375
 
376
  #: profile-builder-2.0/admin/manage-fields.php:569
377
  msgid "Botswana Pula"
378
+ msgstr "Botswana Pula"
379
 
380
  #: profile-builder-2.0/admin/manage-fields.php:570
381
  msgid "Bulgaria Lev"
382
+ msgstr "Bulgarije Lev"
383
 
384
  #: profile-builder-2.0/admin/manage-fields.php:571
385
  msgid "Brazil Real"
386
+ msgstr "Brazilië Real"
387
 
388
  #: profile-builder-2.0/admin/manage-fields.php:572
389
  msgid "Brunei Darussalam Dollar"
390
+ msgstr "Brunei Bruneise Dollar"
391
 
392
  #: profile-builder-2.0/admin/manage-fields.php:573
393
  msgid "Cambodia Riel"
394
+ msgstr "Cambodja Riel"
395
 
396
  #: profile-builder-2.0/admin/manage-fields.php:574
397
  msgid "Canada Dollar"
398
+ msgstr "Canada Dollar"
399
 
400
  #: profile-builder-2.0/admin/manage-fields.php:575
401
  msgid "Cayman Islands Dollar"
402
+ msgstr "Kaaimaneilanden Dollar"
403
 
404
  #: profile-builder-2.0/admin/manage-fields.php:576
405
  msgid "Chile Peso"
406
+ msgstr "Chili Peso"
407
 
408
  #: profile-builder-2.0/admin/manage-fields.php:577
409
  msgid "China Yuan Renminbi"
410
+ msgstr "China Yuan Renminbi"
411
 
412
  #: profile-builder-2.0/admin/manage-fields.php:578
413
  msgid "Colombia Peso"
414
+ msgstr "Colombia Peso"
415
 
416
  #: profile-builder-2.0/admin/manage-fields.php:579
417
  msgid "Costa Rica Colon"
418
+ msgstr "Costa Rica Colon"
419
 
420
  #: profile-builder-2.0/admin/manage-fields.php:580
421
  msgid "Croatia Kuna"
422
+ msgstr "Kroatië Kuna"
423
 
424
  #: profile-builder-2.0/admin/manage-fields.php:581
425
  msgid "Cuba Peso"
426
+ msgstr "Cuba Peso"
427
 
428
  #: profile-builder-2.0/admin/manage-fields.php:582
429
  msgid "Czech Republic Koruna"
430
+ msgstr "Tsjechië Kroon"
431
 
432
  #: profile-builder-2.0/admin/manage-fields.php:583
433
  msgid "Denmark Krone"
434
+ msgstr "Denemarken Kroon"
435
 
436
  #: profile-builder-2.0/admin/manage-fields.php:584
437
  msgid "Dominican Republic Peso"
438
+ msgstr "Dominicaanse Republiek Peso"
439
 
440
  #: profile-builder-2.0/admin/manage-fields.php:585
441
  msgid "East Caribbean Dollar"
442
+ msgstr "Oost Caribische Dollar"
443
 
444
  #: profile-builder-2.0/admin/manage-fields.php:586
445
  msgid "Egypt Pound"
446
+ msgstr "Egypte Pond"
447
 
448
  #: profile-builder-2.0/admin/manage-fields.php:587
449
  msgid "El Salvador Colon"
450
+ msgstr "El Salvador Colon"
451
 
452
  #: profile-builder-2.0/admin/manage-fields.php:588
453
  msgid "Estonia Kroon"
454
+ msgstr "Estland Kroon"
455
 
456
  #: profile-builder-2.0/admin/manage-fields.php:589
457
  msgid "Euro"
458
+ msgstr "Euro"
459
 
460
  #: profile-builder-2.0/admin/manage-fields.php:590
461
  msgid "Falkland Islands (Malvinas) Pound"
462
+ msgstr "Falklandeilanden Pond"
463
 
464
  #: profile-builder-2.0/admin/manage-fields.php:591
465
  msgid "Fiji Dollar"
466
+ msgstr "Fiji Dollar"
467
 
468
  #: profile-builder-2.0/admin/manage-fields.php:592
469
  msgid "Ghana Cedis"
470
+ msgstr "Ghana Cedi"
471
 
472
  #: profile-builder-2.0/admin/manage-fields.php:593
473
  msgid "Gibraltar Pound"
474
+ msgstr "Gibraltar Pond"
475
 
476
  #: profile-builder-2.0/admin/manage-fields.php:594
477
  msgid "Guatemala Quetzal"
478
+ msgstr "Guatemala Quetzal"
479
 
480
  #: profile-builder-2.0/admin/manage-fields.php:595
481
  msgid "Guernsey Pound"
482
+ msgstr "Guernsey Pond"
483
 
484
  #: profile-builder-2.0/admin/manage-fields.php:596
485
  msgid "Guyana Dollar"
486
+ msgstr "Guyana Dollar"
487
 
488
  #: profile-builder-2.0/admin/manage-fields.php:597
489
  msgid "Honduras Lempira"
490
+ msgstr "Honduras Lempira"
491
 
492
  #: profile-builder-2.0/admin/manage-fields.php:598
493
  msgid "Hong Kong Dollar"
494
+ msgstr "Hong Kong Dollar"
495
 
496
  #: profile-builder-2.0/admin/manage-fields.php:599
497
  msgid "Hungary Forint"
498
+ msgstr "Hongarije Forint"
499
 
500
  #: profile-builder-2.0/admin/manage-fields.php:600
501
  msgid "Iceland Krona"
502
+ msgstr "IJsland Kroon"
503
 
504
  #: profile-builder-2.0/admin/manage-fields.php:601
505
  msgid "India Rupee"
506
+ msgstr "India Roepie"
507
 
508
  #: profile-builder-2.0/admin/manage-fields.php:602
509
  msgid "Indonesia Rupiah"
510
+ msgstr "Indonesië Roepia"
511
 
512
  #: profile-builder-2.0/admin/manage-fields.php:603
513
  msgid "Iran Rial"
514
+ msgstr "Iran Rial"
515
 
516
  #: profile-builder-2.0/admin/manage-fields.php:604
517
  msgid "Isle of Man Pound"
518
+ msgstr "Man Pond"
519
 
520
  #: profile-builder-2.0/admin/manage-fields.php:605
521
  msgid "Israel Shekel"
522
+ msgstr "Israel Shekel"
523
 
524
  #: profile-builder-2.0/admin/manage-fields.php:606
525
  msgid "Jamaica Dollar"
526
+ msgstr "Jamaica Dollar"
527
 
528
  #: profile-builder-2.0/admin/manage-fields.php:607
529
  msgid "Japan Yen"
530
+ msgstr "Japan Yen"
531
 
532
  #: profile-builder-2.0/admin/manage-fields.php:608
533
  msgid "Jersey Pound"
534
+ msgstr "Jersey Pond"
535
 
536
  #: profile-builder-2.0/admin/manage-fields.php:609
537
  msgid "Kazakhstan Tenge"
538
+ msgstr "Kazachstan Tenge"
539
 
540
  #: profile-builder-2.0/admin/manage-fields.php:610
541
  msgid "Korea (North) Won"
542
+ msgstr "Korea (Noord) Won"
543
 
544
  #: profile-builder-2.0/admin/manage-fields.php:611
545
  msgid "Korea (South) Won"
546
+ msgstr "Korea (Zuid) Won"
547
 
548
  #: profile-builder-2.0/admin/manage-fields.php:612
549
  msgid "Kyrgyzstan Som"
550
+ msgstr "Kirgizië Som"
551
 
552
  #: profile-builder-2.0/admin/manage-fields.php:613
553
  msgid "Laos Kip"
554
+ msgstr "Laos Kip"
555
 
556
  #: profile-builder-2.0/admin/manage-fields.php:614
557
  msgid "Latvia Lat"
558
+ msgstr "Letland Lat"
559
 
560
  #: profile-builder-2.0/admin/manage-fields.php:615
561
  msgid "Lebanon Pound"
562
+ msgstr "Libanon Pound"
563
 
564
  #: profile-builder-2.0/admin/manage-fields.php:616
565
  msgid "Liberia Dollar"
566
+ msgstr "Liberia Dollar"
567
 
568
  #: profile-builder-2.0/admin/manage-fields.php:617
569
  msgid "Lithuania Litas"
570
+ msgstr "Litouwen Litas"
571
 
572
  #: profile-builder-2.0/admin/manage-fields.php:618
573
  msgid "Macedonia Denar"
574
+ msgstr "Macedonië Denar"
575
 
576
  #: profile-builder-2.0/admin/manage-fields.php:619
577
  msgid "Malaysia Ringgit"
578
+ msgstr " Maleisië Ringgit"
579
 
580
  #: profile-builder-2.0/admin/manage-fields.php:620
581
  msgid "Mauritius Rupee"
582
+ msgstr "Mauritius Roepie"
583
 
584
  #: profile-builder-2.0/admin/manage-fields.php:621
585
  msgid "Mexico Peso"
586
+ msgstr "Mexico Peso"
587
 
588
  #: profile-builder-2.0/admin/manage-fields.php:622
589
  msgid "Mongolia Tughrik"
590
+ msgstr "Mongolië Tugrik"
591
 
592
  #: profile-builder-2.0/admin/manage-fields.php:623
593
  msgid "Mozambique Metical"
594
+ msgstr "Mozambique Metical"
595
 
596
  #: profile-builder-2.0/admin/manage-fields.php:624
597
  msgid "Namibia Dollar"
598
+ msgstr "Namibië Dollar"
599
 
600
  #: profile-builder-2.0/admin/manage-fields.php:625
601
  msgid "Nepal Rupee"
602
+ msgstr "Nepal Roepie"
603
 
604
  #: profile-builder-2.0/admin/manage-fields.php:626
605
  msgid "Netherlands Antilles Guilder"
606
+ msgstr "Nederlandse Antillen Gulden"
607
 
608
  #: profile-builder-2.0/admin/manage-fields.php:627
609
  msgid "New Zealand Dollar"
610
+ msgstr "Nieuw Zeeland Dollar"
611
 
612
  #: profile-builder-2.0/admin/manage-fields.php:628
613
  msgid "Nicaragua Cordoba"
614
+ msgstr "Nicaragua Cordoba"
615
 
616
  #: profile-builder-2.0/admin/manage-fields.php:629
617
  msgid "Nigeria Naira"
618
+ msgstr "Nigeria Naira"
619
 
620
  #: profile-builder-2.0/admin/manage-fields.php:630
621
  msgid "Norway Krone"
622
+ msgstr "Noorwegen Kroon"
623
 
624
  #: profile-builder-2.0/admin/manage-fields.php:631
625
  msgid "Oman Rial"
626
+ msgstr "Oman Rial"
627
 
628
  #: profile-builder-2.0/admin/manage-fields.php:632
629
  msgid "Pakistan Rupee"
630
+ msgstr "Pakistan Roepie"
631
 
632
  #: profile-builder-2.0/admin/manage-fields.php:633
633
  msgid "Panama Balboa"
634
+ msgstr "Panama Balboa"
635
 
636
  #: profile-builder-2.0/admin/manage-fields.php:634
637
  msgid "Paraguay Guarani"
638
+ msgstr "Paraguay Guarani"
639
 
640
  #: profile-builder-2.0/admin/manage-fields.php:635
641
  msgid "Peru Nuevo Sol"
642
+ msgstr "Peru Sol"
643
 
644
  #: profile-builder-2.0/admin/manage-fields.php:636
645
  msgid "Philippines Peso"
646
+ msgstr "Filipijnen Peso"
647
 
648
  #: profile-builder-2.0/admin/manage-fields.php:637
649
  msgid "Poland Zloty"
650
+ msgstr "Polen Zloty"
651
 
652
  #: profile-builder-2.0/admin/manage-fields.php:638
653
  msgid "Qatar Riyal"
654
+ msgstr "Qatar Rial"
655
 
656
  #: profile-builder-2.0/admin/manage-fields.php:639
657
  msgid "Romania New Leu"
658
+ msgstr "Roemenië Leu"
659
 
660
  #: profile-builder-2.0/admin/manage-fields.php:640
661
  msgid "Russia Ruble"
662
+ msgstr "Rusland Roebel"
663
 
664
  #: profile-builder-2.0/admin/manage-fields.php:641
665
  msgid "Saint Helena Pound"
666
+ msgstr "Sint Helena Pond"
667
 
668
  #: profile-builder-2.0/admin/manage-fields.php:642
669
  msgid "Saudi Arabia Riyal"
670
+ msgstr "Saoedi-Arabië Rial"
671
 
672
  #: profile-builder-2.0/admin/manage-fields.php:643
673
  msgid "Serbia Dinar"
674
+ msgstr "Servië Dinar"
675
 
676
  #: profile-builder-2.0/admin/manage-fields.php:644
677
  msgid "Seychelles Rupee"
678
+ msgstr "Seychellen Roepie"
679
 
680
  #: profile-builder-2.0/admin/manage-fields.php:645
681
  msgid "Singapore Dollar"
682
+ msgstr "Singapore Dollar"
683
 
684
  #: profile-builder-2.0/admin/manage-fields.php:646
685
  msgid "Solomon Islands Dollar"
686
+ msgstr "Salomonseilanden Dollar"
687
 
688
  #: profile-builder-2.0/admin/manage-fields.php:647
689
  msgid "Somalia Shilling"
690
+ msgstr "Somalië Shilling"
691
 
692
  #: profile-builder-2.0/admin/manage-fields.php:648
693
  msgid "South Africa Rand"
694
+ msgstr "Zuid Afrika Rand"
695
 
696
  #: profile-builder-2.0/admin/manage-fields.php:649
697
  msgid "Sri Lanka Rupee"
698
+ msgstr "Sri Lanka Roepie"
699
 
700
  #: profile-builder-2.0/admin/manage-fields.php:650
701
  msgid "Sweden Krona"
702
+ msgstr "Zweden Kroon"
703
 
704
  #: profile-builder-2.0/admin/manage-fields.php:651
705
  msgid "Switzerland Franc"
706
+ msgstr "Zwitserland Frank"
707
 
708
  #: profile-builder-2.0/admin/manage-fields.php:652
709
  msgid "Suriname Dollar"
710
+ msgstr "Suriname Dollar"
711
 
712
  #: profile-builder-2.0/admin/manage-fields.php:653
713
  msgid "Syria Pound"
714
+ msgstr "Syrië Pond"
715
 
716
  #: profile-builder-2.0/admin/manage-fields.php:654
717
  msgid "Taiwan New Dollar"
718
+ msgstr "Taiwan Dollar"
719
 
720
  #: profile-builder-2.0/admin/manage-fields.php:655
721
  msgid "Thailand Baht"
722
+ msgstr "Thailand Baht"
723
 
724
  #: profile-builder-2.0/admin/manage-fields.php:656
725
  msgid "Trinidad and Tobago Dollar"
726
+ msgstr "Trinidad en Tobago Dollar"
727
 
728
  #: profile-builder-2.0/admin/manage-fields.php:657
729
  #: profile-builder-2.0/admin/manage-fields.php:658
730
  msgid "Turkey Lira"
731
+ msgstr "Turkije Lira"
732
 
733
  #: profile-builder-2.0/admin/manage-fields.php:659
734
  msgid "Tuvalu Dollar"
735
+ msgstr "Tuvalu Dollar"
736
 
737
  #: profile-builder-2.0/admin/manage-fields.php:660
738
  msgid "Ukraine Hryvna"
739
+ msgstr "Oekraïne Grivna"
740
 
741
  #: profile-builder-2.0/admin/manage-fields.php:661
742
  msgid "United Kingdom Pound"
743
+ msgstr "Verenigd Koninkrijk Pond"
744
 
745
  #: profile-builder-2.0/admin/manage-fields.php:662
746
  msgid "Uganda Shilling"
747
+ msgstr "Oeganda Shilling"
748
 
749
  #: profile-builder-2.0/admin/manage-fields.php:663
750
  msgid "US Dollar"
751
+ msgstr "US Dollar"
752
 
753
  #: profile-builder-2.0/admin/manage-fields.php:664
754
  msgid "Uruguay Peso"
755
+ msgstr "Uruguay Peso"
756
 
757
  #: profile-builder-2.0/admin/manage-fields.php:665
758
  msgid "Uzbekistan Som"
759
+ msgstr "Oezbekistan Som"
760
 
761
  #: profile-builder-2.0/admin/manage-fields.php:666
762
  msgid "Venezuela Bolivar"
763
+ msgstr "Venezuela Bolivar"
764
 
765
  #: profile-builder-2.0/admin/manage-fields.php:667
766
  msgid "Viet Nam Dong"
767
+ msgstr "Vietnam Dong"
768
 
769
  #: profile-builder-2.0/admin/manage-fields.php:668
770
  msgid "Yemen Rial"
771
+ msgstr "Jemen Rial"
772
 
773
  #: profile-builder-2.0/admin/manage-fields.php:669
774
  msgid "Zimbabwe Dollar"
775
+ msgstr "Zimbabwe Dollar"
776
 
777
  #: profile-builder-2.0/admin/manage-fields.php:1080
778
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
+ msgstr "De meta-naam kan alleen kleine letters, nummers, _ , - en geen spaties bevatten.\n"
780
 
781
  #: profile-builder-2.0/admin/manage-fields.php:1296
782
  msgid "Search Location"
783
+ msgstr "Zoeklocatie"
784
 
785
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
  msgid "You are not allowed to do this."
787
+ msgstr "Je mag dit niet doen."
788
 
789
  #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
  msgid "Search Users"
792
+ msgstr "Zoek gebruikers"
793
 
794
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
  msgid "Conditional Logic"
796
+ msgstr "Voorwaardelijke logica"
797
 
798
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
  msgid "Conditional Rules"
800
+ msgstr "Voorwaardelijke regels"
801
 
802
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
  msgid "This field has conditional logic enabled."
804
+ msgstr "Voor dit veld is voorwaardelijk logica ingeschakeld."
805
 
806
  #: profile-builder-2.0/features/functions.php:712
807
  msgid "Incorrect phone number"
808
+ msgstr "Onjuist telefoonnummer"
809
 
810
  #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
+ msgstr "De rol van de aangemaakte gebruiker is op de standaard rol gezet. Alleen een beheerder kan een gebruiker registreren met de rol die bij dit formulier hoort."
813
 
814
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
  msgid "Please add the Google Maps API key for this field."
817
+ msgstr "Voeg svp de Google Maps API sleutel toe in dit veld."
818
 
819
  #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
  msgid "Something went wrong. Please try again."
821
+ msgstr "Iets is fout gegeaan. Probeer svp opnieuw."
822
 
823
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
  msgid "Please enter numbers only"
825
+ msgstr "Svp alleen nummers invoeren"
826
 
827
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
  msgid "Value must be a multiplier of %1$s"
829
+ msgstr "Waarde moet een meervoud zijn van %1$s"
830
 
831
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
  msgid "Value must be greater than or equal to %1$s"
833
+ msgstr "Waarde moet groter dan of gelijk zijn aan %1$s"
834
 
835
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
  msgid "Value must be less than or equal to %1$s"
837
+ msgstr "Waarde moet kleiner dan of gelijk zijn aan %1$s"
838
 
839
  #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
  msgid "Required phone number format: "
841
+ msgstr "Verplicht formaat telefoonnummer:"
842
 
843
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Bolivia, __( Plurinational State of"
845
+ msgstr "Bolivia, __( Plurinationale Staat"
846
 
847
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Bonaire, __( Sint Eustatius and Saba"
849
+ msgstr "Bonaire, __( Sint Eustatius en Saba"
850
 
851
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Brunei Darussalam"
853
+ msgstr "Brunei Darussalam"
854
 
855
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cabo Verde"
857
+ msgstr "Kaapverdië"
858
 
859
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Cocos (Keeling) Islands"
861
+ msgstr "Cocos (Keeling) Eilanden"
862
 
863
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Congo"
865
+ msgstr "Congo"
866
 
867
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Congo, __( the Democratic Republic of the"
869
+ msgstr "Congo, __( Democratische Republiek"
870
 
871
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Cote dIvoire"
873
+ msgstr "Ivoorkust"
874
 
875
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Falkland Islands (Malvinas)"
877
+ msgstr "Falklandeilanden (Malvinas)"
878
 
879
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Holy See (Vatican City State)"
881
+ msgstr "Heilige Stoel (Vaticaan)"
882
 
883
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Iran, __( Islamic Republic of"
885
+ msgstr "Iran, __( Islamitische Republiek"
886
 
887
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Korea, __( Democratic Peoples Republic of"
889
+ msgstr "Korea, __( Democratische Volksrepubliek"
890
 
891
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Korea, __( Republic of"
893
+ msgstr "Korea, __( Republiek"
894
 
895
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Lao Peoples Democratic Republic"
897
+ msgstr "Laos Democratische Volksrepubliek"
898
 
899
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Macedonia, __( the former Yugoslav Republic of"
901
+ msgstr "Macedonië, __( Voormalige Joegoslavische Republiek"
902
 
903
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Micronesia, __( Federated States of"
905
+ msgstr "Micronesia, __( Federale Staten van"
906
 
907
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Moldova, __( Republic of"
909
+ msgstr "Moldavië, __( Republiek"
910
 
911
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Palestine, __( State of"
913
+ msgstr "Palestina, __( Staat"
914
 
915
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Russian Federation"
917
+ msgstr "Russische Federatie"
918
 
919
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
+ msgstr "Saint Helena, __( Ascension en Tristan da Cunha"
922
 
923
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Saint Martin (French part)"
925
+ msgstr "Sint Maarten (Frans deel)"
926
 
927
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Sint Maarten (Dutch part)"
929
+ msgstr "Sint Maarten (Nederlands deel)"
930
 
931
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Syrian Arab Republic"
933
+ msgstr "Arabische Republiek Syrië"
934
 
935
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Taiwan, __( Province of China"
937
+ msgstr "Taiwan, __( Provincie van China"
938
 
939
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Tanzania, __( United Republic of"
941
+ msgstr "Tanzania, __( Verenigde Republiek"
942
 
943
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Timor-Leste"
945
+ msgstr "Timor-Leste"
946
 
947
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
  msgid "Venezuela, __( Bolivarian Republic of"
949
+ msgstr "Venezuela, __( Bolivariaanse Republiek"
950
 
951
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
  msgid "Viet Nam"
953
+ msgstr "Vietnam"
954
 
955
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
  msgid "Virgin Islands, __( British"
957
+ msgstr "Maagdeneilanden, __( Britse"
958
 
959
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
  msgid "Virgin Islands, __( U.S."
961
+ msgstr "Maagdeneilanden, __( U.S."
962
 
963
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
  #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
  msgid "User Fields Tags"
966
+ msgstr "Tags gebruikersvelden"
967
 
968
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
  msgid "The users selected password at signup"
970
+ msgstr "Het door gebruiker gekozen wachtwoord tijdens aanmelden"
971
 
972
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
  msgid "[{{site_name}}] Notice of Email Change"
974
+ msgstr "[{{site_name}}] Notificatie wijziging e-mailadres"
975
 
976
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
  msgid "Changed Email Address Notification"
978
+ msgstr "Notificatie gewijzigd e-mailadres"
979
 
980
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
  msgid "Limit"
982
+ msgstr "Limiet"
983
 
984
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
+ msgstr "Schakel limiet in voor aantal velden die gebruikers in front-end formulieren kunnen aanmaken"
987
 
988
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
  msgid "General Limit"
990
+ msgstr "Algemene limiet"
991
 
992
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
+ msgstr "Standaard limiet voor deze herhalingsgroep. <br>Laat 0 voor geen limiet."
995
 
996
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
  msgid "Limit reached message"
998
+ msgstr "Bericht bij bereiken limiet"
999
 
1000
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
  msgid "The maximum number of fields has been reached."
1002
+ msgstr "Het maximaal aantal velden is bereikt."
1003
 
1004
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
  msgid "The popup message to display when the limit of repeater groups is reached."
1006
+ msgstr "Het popup bericht die getoond wordt als maximaal aantal herhalingsgroepen is bereikt."
1007
 
1008
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
  msgid "Limit per Role"
1010
+ msgstr "Limiet per rol"
1011
 
1012
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
  msgid "Leave 0 for unlimited."
1014
+ msgstr "Laat 0 voor geen limiet."
1015
 
1016
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
  msgid "Repeated field group"
1018
+ msgstr "Herhalingsveld groep"
1019
 
1020
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
  msgid "Manage field or group of fields that will be repeatable."
1022
+ msgstr "Beheer veld of groep velden die worden herhaald."
1023
 
1024
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
  msgid "Edit field group"
1026
+ msgstr "Beheer veldgroep"
1027
 
1028
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
  msgid "Repeatable fields saved!"
1030
+ msgstr "Herhalingsvelden opgeslagen!"
1031
 
1032
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
  msgid "Please enter a unique field title.\n"
1035
+ msgstr "Voer svp een unieke veld titel in.\n"
1036
 
1037
  #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
  msgid "Are you sure you want to delete this?"
1039
+ msgstr "Weet je zeker dat je dit wilt verwijderen?"
1040
 
1041
  #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
  msgid "Sort Tags"
1043
+ msgstr "Sorteer tags"
1044
 
1045
  #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
  msgid "Faceted Menus"
1048
+ msgstr "Facet menu's"
1049
 
1050
  #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
  msgid "User Count"
1052
+ msgstr "Gebruikerstelling"
1053
 
1054
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
  msgid "Show All"
1056
+ msgstr "Toon alle"
1057
 
1058
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
  msgid "No options available"
1062
+ msgstr "Geen opties beschikbaar"
1063
 
1064
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
  msgid "Remove All Filters"
1066
+ msgstr "Verwijder alle filters"
1067
 
1068
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
  msgid "Label"
1070
+ msgstr "Label"
1071
 
1072
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
  msgid "Choose the facet name that appears on the frontend"
1074
+ msgstr "Kies de facet naam die in front-end getoond wordt"
1075
 
1076
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
  msgid "Facet Type"
1078
+ msgstr "Facet Type"
1079
 
1080
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
  msgid "Choose the facet menu type"
1082
+ msgstr "Kies het facet menu type"
1083
 
1084
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
  msgid "Facet Meta"
1086
+ msgstr "Facet Meta"
1087
 
1088
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
  msgid "Choose the meta field for the facet menu"
1090
+ msgstr "Kies het meta-veld voor het facet menu"
1091
 
1092
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
  msgid "Behaviour"
1094
+ msgstr "Gedrag"
1095
 
1096
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
  msgid "Narrow the results"
1098
+ msgstr "Verklein de resultaten"
1099
 
1100
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
  msgid "Expand the results"
1102
+ msgstr "Vergroot de resultaten"
1103
 
1104
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
  msgid "Choose how multiple selections affect the results"
1106
+ msgstr "Kies hoe meerdere selecties het resultaat beïnvloeden."
1107
 
1108
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
  msgid "Visible choices"
1110
+ msgstr "Zichtbare keuzes"
1111
 
1112
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
  msgid "Show a toggle link after this many choices. Leave blank for all"
1114
+ msgstr "Toon een uitklap link na zo veel keuzes. Laat leeg voor alle keuzes."
1115
 
1116
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
  msgid "Search Fields"
1118
+ msgstr "Zoek Velden"
1119
 
1120
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
  msgid "Choose the fields in which the Search Field will look in"
1122
+ msgstr "Kies de velden die Zoek Velden doorzoekt"
1123
 
1124
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
  msgid "Search Settings"
1126
+ msgstr "Zoekinstellingen"
1127
 
1128
  #: pb-add-on-woocommerce/billing-fields.php:8
1129
  #: pb-add-on-woocommerce/shipping-fields.php:8
1157
 
1158
  #: pb-add-on-woocommerce/billing-fields.php:14
1159
  msgid "Email Address"
1160
+ msgstr "E-mailadres"
1161
 
1162
  #: pb-add-on-woocommerce/billing-fields.php:15
1163
  msgid "Phone"
1165
 
1166
  #: pb-add-on-woocommerce/billing-fields.php:278
1167
  msgid "Ship to a different address?"
1168
+ msgstr "Naar ander adres versturen?"
1169
 
1170
  #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
  msgid "Billing Address"
1177
 
1178
  #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
  msgid "Shipping Address"
1180
+ msgstr "Bezorgadres"
1181
 
1182
  #: pb-add-on-woocommerce/index.php:173
1183
  msgid "Displays customer shipping fields in front-end. "
1184
+ msgstr "Laat klant bezorgvelden in front-end zien."
1185
 
1186
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
  msgid "Display on WooCommerce Checkout"
1206
 
1207
  #: pb-add-on-woocommerce/woosync-page.php:81
1208
  msgid "Default Register"
1209
+ msgstr "Standaard registratie"
1210
 
1211
  #: pb-add-on-woocommerce/woosync-page.php:103
1212
  msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1214
 
1215
  #: pb-add-on-woocommerce/woosync-page.php:110
1216
  msgid "Choose Edit Profile form to display on My Account page:"
1217
+ msgstr "Kies Profiel bewerkformulier om op Mijn Account pagina weer te geven:"
1218
 
1219
  #: pb-add-on-woocommerce/woosync-page.php:115
1220
  msgid "Default Edit Profile"
1221
+ msgstr "Standaard Bewerk Profiel"
1222
 
1223
  #: pb-add-on-woocommerce/woosync-page.php:137
1224
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
+ msgstr "Kies welk Profile Builder Profiel bewerkformulier op Mijn Account pagina van WooCommerce weergeven moet worden."
1226
 
1227
  #: profile-builder-2.0/admin/add-ons.php:190
1228
  msgid "Recommended Plugins"
1229
+ msgstr "Aanbevolen plugins"
1230
 
1231
  #: profile-builder-2.0/admin/add-ons.php:219
1232
  #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1235
 
1236
  #: profile-builder-2.0/admin/add-ons.php:221
1237
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
+ msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je lidmaatschap website."
1239
 
1240
  #: profile-builder-2.0/admin/add-ons.php:222
1241
  #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1247
  #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
  #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
  msgid "Plugin is <strong>inactive</strong>"
1250
+ msgstr "Plugin is <strong>inactief</strong>"
1251
 
1252
  #: profile-builder-2.0/admin/add-ons.php:242
1253
  #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1287
 
1288
  #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
  msgid "Email Templates"
1290
+ msgstr "E-mail Templates"
1291
 
1292
  #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
  msgid "Account Management"
1319
 
1320
  #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
  msgid "Step by Step Quick Setup"
1322
+ msgstr "Stap voor stap snelle installatie"
1323
 
1324
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1326
+ msgstr "Klik op de volgende link om de gebruiker te activeren:<br><br>%s%s%s<br><br>Na activering zult u nog een e-mail ontvangen met uw inloggegevens."
1327
 
1328
  #: profile-builder-2.0/front-end/register.php:133
1329
  msgid "You will soon be redirected automatically."
1343
 
1344
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
  msgid "After Edit Profile"
1346
+ msgstr "Na Bewerken Profiel"
1347
 
1348
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
  msgid "After Successful Email Confirmation"
1496
 
1497
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1499
+ msgstr "de voor URL opgeschoonde versie van de gebruikersnaam, de vereenvoudigde gebruikersnaam kan veilig worden gebruikt in URLs omdat het geen speciale karakters of spaties kan bevatten."
1500
 
1501
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
  msgid "the URL of the previously visited page"
1510
 
1511
  #: profile-builder-2.0/admin/admin-functions.php:40
1512
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
+ msgstr "Toon naam publiekelijk als - wordt alleen getoond op de Profiel bewerkpagina!"
1514
 
1515
  #: profile-builder-2.0/admin/basic-info.php:37
1516
  msgid "Friction-less login using %s shortcode or a widget."
1599
  #: profile-builder-2.0/admin/manage-fields.php:275
1600
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Albania"
1602
+ msgstr "Albanië"
1603
 
1604
  #: profile-builder-2.0/admin/manage-fields.php:276
1605
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Algeria"
1607
+ msgstr "Algerije"
1608
 
1609
  #: profile-builder-2.0/admin/manage-fields.php:277
1610
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "American Samoa"
1612
+ msgstr "Amerikaans Samoa"
1613
 
1614
  #: profile-builder-2.0/admin/manage-fields.php:278
1615
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1634
  #: profile-builder-2.0/admin/manage-fields.php:282
1635
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
  msgid "Antigua and Barbuda"
1637
+ msgstr "Antigua en Barbuda"
1638
 
1639
  #: profile-builder-2.0/admin/manage-fields.php:283
1640
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
  msgid "Argentina"
1642
+ msgstr "Argentinië"
1643
 
1644
  #: profile-builder-2.0/admin/manage-fields.php:284
1645
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
  msgid "Armenia"
1647
+ msgstr "Armenië"
1648
 
1649
  #: profile-builder-2.0/admin/manage-fields.php:285
1650
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1654
  #: profile-builder-2.0/admin/manage-fields.php:286
1655
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
  msgid "Australia"
1657
+ msgstr "Australië"
1658
 
1659
  #: profile-builder-2.0/admin/manage-fields.php:287
1660
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
  msgid "Austria"
1662
+ msgstr "Oostenrijk"
1663
 
1664
  #: profile-builder-2.0/admin/manage-fields.php:288
1665
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
  msgid "Azerbaijan"
1667
+ msgstr "Azerbeidzjan"
1668
 
1669
  #: profile-builder-2.0/admin/manage-fields.php:289
1670
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1694
  #: profile-builder-2.0/admin/manage-fields.php:294
1695
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
  msgid "Belgium"
1697
+ msgstr "België "
1698
 
1699
  #: profile-builder-2.0/admin/manage-fields.php:295
1700
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1722
 
1723
  #: profile-builder-2.0/admin/manage-fields.php:300
1724
  msgid "Bonaire, Saint Eustatius and Saba"
1725
+ msgstr "Bonaire, Sint Eustatius en Saba"
1726
 
1727
  #: profile-builder-2.0/admin/manage-fields.php:301
1728
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1737
  #: profile-builder-2.0/admin/manage-fields.php:303
1738
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
  msgid "Bouvet Island"
1740
+ msgstr "Bouvet Eiland"
1741
 
1742
  #: profile-builder-2.0/admin/manage-fields.php:304
1743
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
  msgid "Brazil"
1745
+ msgstr "Brazilië"
1746
 
1747
  #: profile-builder-2.0/admin/manage-fields.php:305
1748
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
  msgid "British Indian Ocean Territory"
1750
+ msgstr "Brits Indische Oceaanterritorium"
1751
 
1752
  #: profile-builder-2.0/admin/manage-fields.php:306
1753
  msgid "British Virgin Islands"
1754
+ msgstr "Britse Maagdeneilanden"
1755
 
1756
  #: profile-builder-2.0/admin/manage-fields.php:307
1757
  msgid "Brunei"
1760
  #: profile-builder-2.0/admin/manage-fields.php:308
1761
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
  msgid "Bulgaria"
1763
+ msgstr "Bulgarije"
1764
 
1765
  #: profile-builder-2.0/admin/manage-fields.php:309
1766
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1775
  #: profile-builder-2.0/admin/manage-fields.php:311
1776
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
  msgid "Cambodia"
1778
+ msgstr "Cambodja"
1779
 
1780
  #: profile-builder-2.0/admin/manage-fields.php:312
1781
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
  msgid "Cameroon"
1783
+ msgstr "Kameroen"
1784
 
1785
  #: profile-builder-2.0/admin/manage-fields.php:313
1786
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1789
 
1790
  #: profile-builder-2.0/admin/manage-fields.php:314
1791
  msgid "Cape Verde"
1792
+ msgstr "Kaapverdië"
1793
 
1794
  #: profile-builder-2.0/admin/manage-fields.php:315
1795
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
  msgid "Cayman Islands"
1797
+ msgstr "Kaaimaneilanden"
1798
 
1799
  #: profile-builder-2.0/admin/manage-fields.php:316
1800
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
  msgid "Central African Republic"
1802
+ msgstr "Centraal Afrikaanse Republiek"
1803
 
1804
  #: profile-builder-2.0/admin/manage-fields.php:317
1805
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
  msgid "Chad"
1807
+ msgstr "Tsjaad"
1808
 
1809
  #: profile-builder-2.0/admin/manage-fields.php:318
1810
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
  msgid "Chile"
1812
+ msgstr "Chili"
1813
 
1814
  #: profile-builder-2.0/admin/manage-fields.php:319
1815
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
  #: profile-builder-2.0/admin/manage-fields.php:320
1820
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Christmas Island"
1822
+ msgstr "Kersteiland"
1823
 
1824
  #: profile-builder-2.0/admin/manage-fields.php:321
1825
  msgid "Cocos Islands"
1826
+ msgstr "Cocoseilanden"
1827
 
1828
  #: profile-builder-2.0/admin/manage-fields.php:322
1829
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1833
  #: profile-builder-2.0/admin/manage-fields.php:323
1834
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
  msgid "Comoros"
1836
+ msgstr "Comoren"
1837
 
1838
  #: profile-builder-2.0/admin/manage-fields.php:324
1839
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
  msgid "Cook Islands"
1841
+ msgstr "Cookeilanden"
1842
 
1843
  #: profile-builder-2.0/admin/manage-fields.php:325
1844
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1848
  #: profile-builder-2.0/admin/manage-fields.php:326
1849
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
  msgid "Croatia"
1851
+ msgstr "Kroatië"
1852
 
1853
  #: profile-builder-2.0/admin/manage-fields.php:327
1854
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1868
  #: profile-builder-2.0/admin/manage-fields.php:330
1869
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
  msgid "Czech Republic"
1871
+ msgstr "Tsjechië"
1872
 
1873
  #: profile-builder-2.0/admin/manage-fields.php:331
1874
  msgid "Democratic Republic of the Congo"
1875
+ msgstr "Democratische Republiek Congo"
1876
 
1877
  #: profile-builder-2.0/admin/manage-fields.php:332
1878
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Denmark"
1880
+ msgstr "Denemarken"
1881
 
1882
  #: profile-builder-2.0/admin/manage-fields.php:333
1883
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1892
  #: profile-builder-2.0/admin/manage-fields.php:335
1893
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Dominican Republic"
1895
+ msgstr "Dominicaanse Republiek"
1896
 
1897
  #: profile-builder-2.0/admin/manage-fields.php:336
1898
  msgid "East Timor"
1899
+ msgstr "Oost Timor"
1900
 
1901
  #: profile-builder-2.0/admin/manage-fields.php:337
1902
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1906
  #: profile-builder-2.0/admin/manage-fields.php:338
1907
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
  msgid "Egypt"
1909
+ msgstr "Egypte"
1910
 
1911
  #: profile-builder-2.0/admin/manage-fields.php:339
1912
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1916
  #: profile-builder-2.0/admin/manage-fields.php:340
1917
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
  msgid "Equatorial Guinea"
1919
+ msgstr "Equatoriaal Guinea"
1920
 
1921
  #: profile-builder-2.0/admin/manage-fields.php:341
1922
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1926
  #: profile-builder-2.0/admin/manage-fields.php:342
1927
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
  msgid "Estonia"
1929
+ msgstr "Estland"
1930
 
1931
  #: profile-builder-2.0/admin/manage-fields.php:343
1932
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
  msgid "Ethiopia"
1934
+ msgstr "Ethiopië"
1935
 
1936
  #: profile-builder-2.0/admin/manage-fields.php:344
1937
  msgid "Falkland Islands"
1938
+ msgstr "Falklandeilanden"
1939
 
1940
  #: profile-builder-2.0/admin/manage-fields.php:345
1941
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
  msgid "Faroe Islands"
1943
+ msgstr "Faeröer"
1944
 
1945
  #: profile-builder-2.0/admin/manage-fields.php:346
1946
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1955
  #: profile-builder-2.0/admin/manage-fields.php:348
1956
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
  msgid "France"
1958
+ msgstr "Frankrijk"
1959
 
1960
  #: profile-builder-2.0/admin/manage-fields.php:349
1961
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
  msgid "French Guiana"
1963
+ msgstr "Frans Guyana"
1964
 
1965
  #: profile-builder-2.0/admin/manage-fields.php:350
1966
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
  msgid "French Polynesia"
1968
+ msgstr "Frans Polynesië"
1969
 
1970
  #: profile-builder-2.0/admin/manage-fields.php:351
1971
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
  msgid "French Southern Territories"
1973
+ msgstr " Franse Zuidelijke Gebieden"
1974
 
1975
  #: profile-builder-2.0/admin/manage-fields.php:352
1976
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1985
  #: profile-builder-2.0/admin/manage-fields.php:354
1986
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
  msgid "Georgia"
1988
+ msgstr "Georgië"
1989
 
1990
  #: profile-builder-2.0/admin/manage-fields.php:355
1991
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
  msgid "Germany"
1993
+ msgstr "Duitsland"
1994
 
1995
  #: profile-builder-2.0/admin/manage-fields.php:356
1996
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2005
  #: profile-builder-2.0/admin/manage-fields.php:358
2006
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Greece"
2008
+ msgstr "Griekenland"
2009
 
2010
  #: profile-builder-2.0/admin/manage-fields.php:359
2011
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Greenland"
2013
+ msgstr "Groenland"
2014
 
2015
  #: profile-builder-2.0/admin/manage-fields.php:360
2016
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2060
  #: profile-builder-2.0/admin/manage-fields.php:369
2061
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
  msgid "Heard Island and McDonald Islands"
2063
+ msgstr "Heard en McDonaldeilanden"
2064
 
2065
  #: profile-builder-2.0/admin/manage-fields.php:370
2066
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2075
  #: profile-builder-2.0/admin/manage-fields.php:372
2076
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
  msgid "Hungary"
2078
+ msgstr "Hongarije"
2079
 
2080
  #: profile-builder-2.0/admin/manage-fields.php:373
2081
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
  msgid "Iceland"
2083
+ msgstr "IJsland"
2084
 
2085
  #: profile-builder-2.0/admin/manage-fields.php:374
2086
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2090
  #: profile-builder-2.0/admin/manage-fields.php:375
2091
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
  msgid "Indonesia"
2093
+ msgstr "Indonesië"
2094
 
2095
  #: profile-builder-2.0/admin/manage-fields.php:376
2096
  msgid "Iran"
2099
  #: profile-builder-2.0/admin/manage-fields.php:377
2100
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
  msgid "Iraq"
2102
+ msgstr "Irak"
2103
 
2104
  #: profile-builder-2.0/admin/manage-fields.php:378
2105
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
  msgid "Ireland"
2107
+ msgstr "Ierland"
2108
 
2109
  #: profile-builder-2.0/admin/manage-fields.php:379
2110
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
  msgid "Isle of Man"
2112
+ msgstr "Man"
2113
 
2114
  #: profile-builder-2.0/admin/manage-fields.php:380
2115
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2119
  #: profile-builder-2.0/admin/manage-fields.php:381
2120
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
  msgid "Italy"
2122
+ msgstr "Italië"
2123
 
2124
  #: profile-builder-2.0/admin/manage-fields.php:382
2125
  msgid "Ivory Coast"
2126
+ msgstr "Ivoorkust"
2127
 
2128
  #: profile-builder-2.0/admin/manage-fields.php:383
2129
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2143
  #: profile-builder-2.0/admin/manage-fields.php:386
2144
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
  msgid "Jordan"
2146
+ msgstr "Jordanië"
2147
 
2148
  #: profile-builder-2.0/admin/manage-fields.php:387
2149
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2153
  #: profile-builder-2.0/admin/manage-fields.php:388
2154
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
  msgid "Kenya"
2156
+ msgstr "Kenia"
2157
 
2158
  #: profile-builder-2.0/admin/manage-fields.php:389
2159
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
  #: profile-builder-2.0/admin/manage-fields.php:391
2168
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
  msgid "Kuwait"
2170
+ msgstr "Koeweit"
2171
 
2172
  #: profile-builder-2.0/admin/manage-fields.php:392
2173
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
  msgid "Kyrgyzstan"
2175
+ msgstr "Kirgizië"
2176
 
2177
  #: profile-builder-2.0/admin/manage-fields.php:393
2178
  msgid "Laos"
2181
  #: profile-builder-2.0/admin/manage-fields.php:394
2182
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Latvia"
2184
+ msgstr "Letland"
2185
 
2186
  #: profile-builder-2.0/admin/manage-fields.php:395
2187
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
  msgid "Lebanon"
2189
+ msgstr "Libanon"
2190
 
2191
  #: profile-builder-2.0/admin/manage-fields.php:396
2192
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2201
  #: profile-builder-2.0/admin/manage-fields.php:398
2202
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
  msgid "Libya"
2204
+ msgstr "Libië"
2205
 
2206
  #: profile-builder-2.0/admin/manage-fields.php:399
2207
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2211
  #: profile-builder-2.0/admin/manage-fields.php:400
2212
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
  msgid "Lithuania"
2214
+ msgstr "Litouwen"
2215
 
2216
  #: profile-builder-2.0/admin/manage-fields.php:401
2217
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
  msgid "Luxembourg"
2219
+ msgstr "Luxemburg"
2220
 
2221
  #: profile-builder-2.0/admin/manage-fields.php:402
2222
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
 
2226
  #: profile-builder-2.0/admin/manage-fields.php:403
2227
  msgid "Macedonia"
2228
+ msgstr "Macedonië"
2229
 
2230
  #: profile-builder-2.0/admin/manage-fields.php:404
2231
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2240
  #: profile-builder-2.0/admin/manage-fields.php:406
2241
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Malaysia"
2243
+ msgstr "Maleisië"
2244
 
2245
  #: profile-builder-2.0/admin/manage-fields.php:407
2246
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Maldives"
2248
+ msgstr "Maldiven"
2249
 
2250
  #: profile-builder-2.0/admin/manage-fields.php:408
2251
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2260
  #: profile-builder-2.0/admin/manage-fields.php:410
2261
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2262
  msgid "Marshall Islands"
2263
+ msgstr "Marshalleilanden"
2264
 
2265
  #: profile-builder-2.0/admin/manage-fields.php:411
2266
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2270
  #: profile-builder-2.0/admin/manage-fields.php:412
2271
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2272
  msgid "Mauritania"
2273
+ msgstr "Mauritanië"
2274
 
2275
  #: profile-builder-2.0/admin/manage-fields.php:413
2276
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
 
2294
  #: profile-builder-2.0/admin/manage-fields.php:417
2295
  msgid "Moldova"
2296
+ msgstr "Moldavië"
2297
 
2298
  #: profile-builder-2.0/admin/manage-fields.php:418
2299
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2303
  #: profile-builder-2.0/admin/manage-fields.php:419
2304
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Mongolia"
2306
+ msgstr "Mongolië"
2307
 
2308
  #: profile-builder-2.0/admin/manage-fields.php:420
2309
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2318
  #: profile-builder-2.0/admin/manage-fields.php:422
2319
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Morocco"
2321
+ msgstr "Marokko"
2322
 
2323
  #: profile-builder-2.0/admin/manage-fields.php:423
2324
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2333
  #: profile-builder-2.0/admin/manage-fields.php:425
2334
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Namibia"
2336
+ msgstr "Namibië"
2337
 
2338
  #: profile-builder-2.0/admin/manage-fields.php:426
2339
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2348
  #: profile-builder-2.0/admin/manage-fields.php:428
2349
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
  msgid "Netherlands"
2351
+ msgstr "Nederland"
2352
 
2353
  #: profile-builder-2.0/admin/manage-fields.php:429
2354
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
  msgid "New Caledonia"
2356
+ msgstr "Nieuw Caledonië"
2357
 
2358
  #: profile-builder-2.0/admin/manage-fields.php:430
2359
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
  msgid "New Zealand"
2361
+ msgstr "Nieuw Zeeland"
2362
 
2363
  #: profile-builder-2.0/admin/manage-fields.php:431
2364
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2383
  #: profile-builder-2.0/admin/manage-fields.php:435
2384
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
  msgid "Norfolk Island"
2386
+ msgstr "Norfolk Eiland"
2387
 
2388
  #: profile-builder-2.0/admin/manage-fields.php:436
2389
  msgid "North Korea"
2390
+ msgstr "Noord Korea"
2391
 
2392
  #: profile-builder-2.0/admin/manage-fields.php:437
2393
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2394
  msgid "Northern Mariana Islands"
2395
+ msgstr "Noordelijke Marianen"
2396
 
2397
  #: profile-builder-2.0/admin/manage-fields.php:438
2398
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2399
  msgid "Norway"
2400
+ msgstr "Noorwegen"
2401
 
2402
  #: profile-builder-2.0/admin/manage-fields.php:439
2403
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2416
 
2417
  #: profile-builder-2.0/admin/manage-fields.php:442
2418
  msgid "Palestinian Territory"
2419
+ msgstr "Palestijnse gebieden"
2420
 
2421
  #: profile-builder-2.0/admin/manage-fields.php:443
2422
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2426
  #: profile-builder-2.0/admin/manage-fields.php:444
2427
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2428
  msgid "Papua New Guinea"
2429
+ msgstr "Papoea Nieuw Guinea"
2430
 
2431
  #: profile-builder-2.0/admin/manage-fields.php:445
2432
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2441
  #: profile-builder-2.0/admin/manage-fields.php:447
2442
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2443
  msgid "Philippines"
2444
+ msgstr "Filipijnen"
2445
 
2446
  #: profile-builder-2.0/admin/manage-fields.php:448
2447
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2451
  #: profile-builder-2.0/admin/manage-fields.php:449
2452
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2453
  msgid "Poland"
2454
+ msgstr "Polen"
2455
 
2456
  #: profile-builder-2.0/admin/manage-fields.php:450
2457
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2470
 
2471
  #: profile-builder-2.0/admin/manage-fields.php:453
2472
  msgid "Republic of the Congo"
2473
+ msgstr "Republiek Congo"
2474
 
2475
  #: profile-builder-2.0/admin/manage-fields.php:454
2476
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2480
  #: profile-builder-2.0/admin/manage-fields.php:455
2481
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2482
  msgid "Romania"
2483
+ msgstr "Roemenië"
2484
 
2485
  #: profile-builder-2.0/admin/manage-fields.php:456
2486
  msgid "Russia"
2487
+ msgstr "Rusland"
2488
 
2489
  #: profile-builder-2.0/admin/manage-fields.php:457
2490
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
 
2499
  #: profile-builder-2.0/admin/manage-fields.php:459
2500
  msgid "Saint Helena"
2501
+ msgstr "Sint Helena"
2502
 
2503
  #: profile-builder-2.0/admin/manage-fields.php:460
2504
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
  msgid "Saint Kitts and Nevis"
2506
+ msgstr "Saint Kitts en Nevis"
2507
 
2508
  #: profile-builder-2.0/admin/manage-fields.php:461
2509
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2512
 
2513
  #: profile-builder-2.0/admin/manage-fields.php:462
2514
  msgid "Saint Martin"
2515
+ msgstr "Sint Maarten"
2516
 
2517
  #: profile-builder-2.0/admin/manage-fields.php:463
2518
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Saint Pierre and Miquelon"
2520
+ msgstr "Saint Pierre en Miquelon"
2521
 
2522
  #: profile-builder-2.0/admin/manage-fields.php:464
2523
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2524
  msgid "Saint Vincent and the Grenadines"
2525
+ msgstr "Saint Vincent en de Grenadines"
2526
 
2527
  #: profile-builder-2.0/admin/manage-fields.php:465
2528
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2537
  #: profile-builder-2.0/admin/manage-fields.php:467
2538
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2539
  msgid "Sao Tome and Principe"
2540
+ msgstr "Sao Tomé en Principe"
2541
 
2542
  #: profile-builder-2.0/admin/manage-fields.php:468
2543
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2544
  msgid "Saudi Arabia"
2545
+ msgstr "Saoedi-Arabië"
2546
 
2547
  #: profile-builder-2.0/admin/manage-fields.php:469
2548
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
  #: profile-builder-2.0/admin/manage-fields.php:470
2553
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
  msgid "Serbia"
2555
+ msgstr "Servië"
2556
 
2557
  #: profile-builder-2.0/admin/manage-fields.php:471
2558
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
  msgid "Seychelles"
2560
+ msgstr "Seychellen"
2561
 
2562
  #: profile-builder-2.0/admin/manage-fields.php:472
2563
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2576
  #: profile-builder-2.0/admin/manage-fields.php:475
2577
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2578
  msgid "Slovakia"
2579
+ msgstr "Slowakije"
2580
 
2581
  #: profile-builder-2.0/admin/manage-fields.php:476
2582
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2583
  msgid "Slovenia"
2584
+ msgstr "Slovenië"
2585
 
2586
  #: profile-builder-2.0/admin/manage-fields.php:477
2587
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2588
  msgid "Solomon Islands"
2589
+ msgstr "Salomonseilanden"
2590
 
2591
  #: profile-builder-2.0/admin/manage-fields.php:478
2592
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2593
  msgid "Somalia"
2594
+ msgstr "Somalië"
2595
 
2596
  #: profile-builder-2.0/admin/manage-fields.php:479
2597
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2598
  msgid "South Africa"
2599
+ msgstr "Zuid Afrika"
2600
 
2601
  #: profile-builder-2.0/admin/manage-fields.php:480
2602
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2603
  msgid "South Georgia and the South Sandwich Islands"
2604
+ msgstr "Zuid Georgia en de Zuidelijke Sandwicheilanden"
2605
 
2606
  #: profile-builder-2.0/admin/manage-fields.php:481
2607
  msgid "South Korea"
2608
+ msgstr "Zuid Korea"
2609
 
2610
  #: profile-builder-2.0/admin/manage-fields.php:482
2611
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2612
  msgid "South Sudan"
2613
+ msgstr "Zuid Soedan"
2614
 
2615
  #: profile-builder-2.0/admin/manage-fields.php:483
2616
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2617
  msgid "Spain"
2618
+ msgstr "Spanje"
2619
 
2620
  #: profile-builder-2.0/admin/manage-fields.php:484
2621
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2625
  #: profile-builder-2.0/admin/manage-fields.php:485
2626
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
  msgid "Sudan"
2628
+ msgstr "Soedan"
2629
 
2630
  #: profile-builder-2.0/admin/manage-fields.php:486
2631
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2635
  #: profile-builder-2.0/admin/manage-fields.php:487
2636
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2637
  msgid "Svalbard and Jan Mayen"
2638
+ msgstr "Spitsbergen en Jan Mayen"
2639
 
2640
  #: profile-builder-2.0/admin/manage-fields.php:488
2641
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2645
  #: profile-builder-2.0/admin/manage-fields.php:489
2646
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
  msgid "Sweden"
2648
+ msgstr "Zweden"
2649
 
2650
  #: profile-builder-2.0/admin/manage-fields.php:490
2651
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Switzerland"
2653
+ msgstr "Zwitserland"
2654
 
2655
  #: profile-builder-2.0/admin/manage-fields.php:491
2656
  msgid "Syria"
2657
+ msgstr "Syrië"
2658
 
2659
  #: profile-builder-2.0/admin/manage-fields.php:492
2660
  msgid "Taiwan"
2692
  #: profile-builder-2.0/admin/manage-fields.php:499
2693
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
  msgid "Trinidad and Tobago"
2695
+ msgstr "Trinidad en Tobago"
2696
 
2697
  #: profile-builder-2.0/admin/manage-fields.php:500
2698
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
  msgid "Tunisia"
2700
+ msgstr "Tunesië"
2701
 
2702
  #: profile-builder-2.0/admin/manage-fields.php:501
2703
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
  msgid "Turkey"
2705
+ msgstr "Turkije"
2706
 
2707
  #: profile-builder-2.0/admin/manage-fields.php:502
2708
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
  #: profile-builder-2.0/admin/manage-fields.php:503
2713
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
  msgid "Turks and Caicos Islands"
2715
+ msgstr "Turks- en Caicoseilanden"
2716
 
2717
  #: profile-builder-2.0/admin/manage-fields.php:504
2718
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2721
 
2722
  #: profile-builder-2.0/admin/manage-fields.php:505
2723
  msgid "U.S. Virgin Islands"
2724
+ msgstr "Amerikaanse Maagdeneilanden"
2725
 
2726
  #: profile-builder-2.0/admin/manage-fields.php:506
2727
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2731
  #: profile-builder-2.0/admin/manage-fields.php:507
2732
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
  msgid "Ukraine"
2734
+ msgstr "Oekraïne"
2735
 
2736
  #: profile-builder-2.0/admin/manage-fields.php:508
2737
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2738
  msgid "United Arab Emirates"
2739
+ msgstr "Verenigde Arabische Emiraten"
2740
 
2741
  #: profile-builder-2.0/admin/manage-fields.php:509
2742
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2743
  msgid "United Kingdom"
2744
+ msgstr "Verenigd Koninkrijk"
2745
 
2746
  #: profile-builder-2.0/admin/manage-fields.php:510
2747
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2748
  msgid "United States"
2749
+ msgstr "Verenigde Staten"
2750
 
2751
  #: profile-builder-2.0/admin/manage-fields.php:511
2752
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2753
  msgid "United States Minor Outlying Islands"
2754
+ msgstr "Kleine afgelegen eilanden van de Verenigde Staten"
2755
 
2756
  #: profile-builder-2.0/admin/manage-fields.php:512
2757
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2761
  #: profile-builder-2.0/admin/manage-fields.php:513
2762
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
  msgid "Uzbekistan"
2764
+ msgstr "Oezbekistan"
2765
 
2766
  #: profile-builder-2.0/admin/manage-fields.php:514
2767
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2770
 
2771
  #: profile-builder-2.0/admin/manage-fields.php:515
2772
  msgid "Vatican"
2773
+ msgstr "Vaticaanstad"
2774
 
2775
  #: profile-builder-2.0/admin/manage-fields.php:516
2776
  msgid "Venezuela"
2783
  #: profile-builder-2.0/admin/manage-fields.php:518
2784
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2785
  msgid "Wallis and Futuna"
2786
+ msgstr "Wallis en Futuna"
2787
 
2788
  #: profile-builder-2.0/admin/manage-fields.php:519
2789
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2790
  msgid "Western Sahara"
2791
+ msgstr "Westelijke Sahara"
2792
 
2793
  #: profile-builder-2.0/admin/manage-fields.php:520
2794
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
  msgid "Yemen"
2796
+ msgstr "Jemen"
2797
 
2798
  #: profile-builder-2.0/admin/manage-fields.php:521
2799
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2832
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2833
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2834
  msgid "Sorry, you cannot upload this file type for this field."
2835
+ msgstr "Sorry, u kunt dit bestandstype niet uploaden voor dit veld."
2836
 
2837
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2838
  msgid "An error occurred, please try again later."
3014
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3015
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3016
  msgid "Only administrators can see this field on edit profile forms."
3017
+ msgstr "Alleen beheerders kunnen dit veld op profiel bewerkformulieren zien."
3018
 
3019
  #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3020
  msgid "As an administrator you cannot change your role."
3110
 
3111
  #: profile-builder-2.0/admin/general-settings.php:168
3112
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3113
+ msgstr "\"Gebruikersnaam en E-mailadres\" - gebruikers kunnen inloggen met zowel Gebruikersnaam als E-mailadres."
3114
 
3115
  #: profile-builder-2.0/admin/general-settings.php:169
3116
  msgid "\"Username\" - users can Log In only with Username."
3117
+ msgstr "\"Gebruikersnaam\" - gebruikers kunnen alleen inloggen met Gebruikersnaam."
3118
 
3119
  #: profile-builder-2.0/admin/general-settings.php:170
3120
  msgid "\"Email\" - users can Log In only with Email."
3121
+ msgstr "\"E-mailadres\" - gebruikers kunnen alleen inloggen met E-mailadres."
3122
 
3123
  #: profile-builder-2.0/admin/manage-fields.php:119
3124
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3142
 
3143
  #: profile-builder-2.0/admin/manage-fields.php:131
3144
  msgid "Save the user role order from the user roles checkboxes"
3145
+ msgstr "Sla de volgorde van de gebruikersrollen op o.b.v. de selectievakjes voor de gebruikersrollen"
3146
 
3147
  #: profile-builder-2.0/admin/manage-fields.php:1111
3148
  msgid "Please select at least one user role\n"
3174
 
3175
  #: profile-builder-2.0/features/functions.php:763
3176
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3177
+ msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sNetwerk Instellingen%2$s en vink onder Registratie Instellingen \"Gebruikersaccounts kunnen worden geregistreerd\" aan. %3$sSluiten%4$s"
3178
 
3179
  #: profile-builder-2.0/front-end/class-formbuilder.php:681
3180
  msgid "User to edit:"
3301
 
3302
  #: profile-builder-2.0/features/functions.php:767
3303
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3304
+ msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder voor uw website te registreren, moet u eerst gebruikersregistratie inschakelen. Ga naar de %1$sInstellingen -> Algemeen%2$s en zorg ervoor dat u onder Lidmaatschap \"Iedereen kan registreren\" aangevinkt hebt. %3$sSluiten%4$s"
3305
 
3306
  #: profile-builder-2.0/front-end/login.php:144
3307
  msgid "Invalid username."
3511
 
3512
  #: profile-builder-2.0/admin/basic-info.php:69
3513
  msgid "Minimum Password Length and Strength Meter"
3514
+ msgstr "Minimale Wachtwoordlengte- en Sterktemeter"
3515
 
3516
  #: profile-builder-2.0/admin/basic-info.php:70
3517
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3551
 
3552
  #: profile-builder-2.0/admin/basic-info.php:97
3553
  msgid "Agree To Terms Checkbox"
3554
+ msgstr "Akkoord met voorwaarden Selectievakje"
3555
 
3556
  #: profile-builder-2.0/admin/basic-info.php:98
3557
  msgid "Datepicker"
3559
 
3560
  #: profile-builder-2.0/admin/basic-info.php:101
3561
  msgid "reCAPTCHA"
3562
+ msgstr "reCAPTCHA"
3563
 
3564
  #: profile-builder-2.0/admin/basic-info.php:102
3565
  msgid "Country Select"
3571
 
3572
  #: profile-builder-2.0/admin/basic-info.php:108
3573
  msgid "Input / Hidden Input"
3574
+ msgstr "Invoer / Afgeschermde invoer"
3575
 
3576
  #: profile-builder-2.0/admin/basic-info.php:110
3577
  msgid "Checkbox"
3620
 
3621
  #: profile-builder-2.0/admin/basic-info.php:144
3622
  msgid "Email Customizer"
3623
+ msgstr "E-mail aanpassen"
3624
 
3625
  #: profile-builder-2.0/admin/basic-info.php:145
3626
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3682
 
3683
  #: profile-builder-2.0/admin/general-settings.php:54
3684
  msgid "\"Email Confirmation\" Activated:"
3685
+ msgstr "\"E-mailbevestiging\" geactiveerd:"
3686
 
3687
  #: profile-builder-2.0/admin/general-settings.php:59
3688
  #: profile-builder-2.0/admin/general-settings.php:108
3697
 
3698
  #: profile-builder-2.0/admin/general-settings.php:72
3699
  msgid "\"Email Confirmation\" Landing Page:"
3700
+ msgstr "\"E-mailbevestiging\" startpagina:"
3701
 
3702
  #: profile-builder-2.0/admin/general-settings.php:77
3703
  msgid "Existing Pages"
3709
 
3710
  #: profile-builder-2.0/admin/general-settings.php:103
3711
  msgid "\"Admin Approval\" Activated:"
3712
+ msgstr "\"Goedkeuring beheerder\" geactiveerd:"
3713
 
3714
  #: profile-builder-2.0/admin/general-settings.php:111
3715
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3717
 
3718
  #: profile-builder-2.0/admin/general-settings.php:149
3719
  msgid "\"Admin Approval\" Feature:"
3720
+ msgstr "\"Goedkeuring beheerder\" functie:"
3721
 
3722
  #: profile-builder-2.0/admin/general-settings.php:152
3723
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3753
 
3754
  #: profile-builder-2.0/admin/general-settings.php:177
3755
  msgid "Minimum Password Length:"
3756
+ msgstr "Minimale Wachtwoordlengte:"
3757
 
3758
  #: profile-builder-2.0/admin/general-settings.php:182
3759
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3760
+ msgstr "Voer het minimaal aantal karakters in die het wachtwoord moet hebben. Laat leeg voor geen minimaal limiet."
3761
 
3762
  #: profile-builder-2.0/admin/general-settings.php:189
3763
  msgid "Minimum Password Strength:"
3764
+ msgstr "Minimale Wachtwoordsterkte:"
3765
 
3766
  #: profile-builder-2.0/admin/general-settings.php:193
3767
  msgid "Disabled"
3898
 
3899
  #: profile-builder-2.0/admin/manage-fields.php:148
3900
  msgid "Default Content"
3901
+ msgstr "Standaard Inhoud"
3902
 
3903
  #: profile-builder-2.0/admin/manage-fields.php:148
3904
  msgid "Default value of the textarea"
4156
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4157
  #: profile-builder-2.0/features/functions.php:752
4158
  msgid "Content"
4159
+ msgstr "Inhoud"
4160
 
4161
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4162
  msgid "Edit this item"
4225
 
4226
  #: profile-builder-2.0/features/class-list-table.php:432
4227
  msgid "Excerpt View"
4228
+ msgstr "Samenvatting Weergave"
4229
 
4230
  #: profile-builder-2.0/features/class-list-table.php:458
4231
  msgid "%s pending"
4468
 
4469
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4470
  msgid "Email notification resent to user"
4471
+ msgstr "E-mail notificatie opnieuw gestuurd naar gebruiker"
4472
 
4473
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4474
  msgid "[%1$s] Activate %2$s"
4519
 
4520
  #: profile-builder-2.0/features/login-widget/login-widget.php:15
4521
  msgid "Profile Builder Login Widget"
4522
+ msgstr "Profile Builder inlogwidget"
4523
 
4524
  #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4525
  #: profile-builder-2.0/front-end/class-formbuilder.php:420
4533
 
4534
  #: profile-builder-2.0/features/login-widget/login-widget.php:68
4535
  msgid "After login redirect URL (optional):"
4536
+ msgstr "Doorverwijs-URL na inloggen (optioneel):"
4537
 
4538
  #: profile-builder-2.0/features/login-widget/login-widget.php:73
4539
  msgid "Register page URL (optional):"
4839
 
4840
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
4841
  msgid "To use reCAPTCHA you must get an API key from"
4842
+ msgstr "Om reCAPTCHA te gebruiken moet u een API-sleutel krijgen van"
4843
 
4844
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
4845
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4847
 
4848
  #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
4849
  msgid "To use reCAPTCHA you must get an API public key from:"
4850
+ msgstr "Om reCAPTCHA te gebruiken moet u een openbare API-sleutel krijgen van:"
4851
 
4852
  #: profile-builder-2.0/modules/modules.php:11
4853
  #: profile-builder-2.0/modules/modules.php:58
4915
 
4916
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4917
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4918
+ msgstr "Deze instellingen worden tijdens het opslaan ook overgenomen op de instellingenpagina \"E-mailadres gebruikers aanpassen\"."
4919
 
4920
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4921
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4981
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4982
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4983
  msgid "Registration with Admin Approval"
4984
+ msgstr "Registratie met Goedkeuring Beheerder"
4985
 
4986
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4987
  msgid "Available Tags"
5112
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5113
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5114
  msgid "Edit-profile Form"
5115
+ msgstr "Profiel bewerkformulier"
5116
 
5117
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5118
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5122
 
5123
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5124
  msgid "Add new Edit-profile Form"
5125
+ msgstr "Voeg nieuw Profiel bewerkformulier toe"
5126
 
5127
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5128
  msgid "Edit the Edit-profile Forms"
5129
+ msgstr "Bewerk de Profiel bewerkformulieren"
5130
 
5131
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5132
  msgid "New Edit-profile Form"
5133
+ msgstr "Nieuw Profiel bewerkformulier"
5134
 
5135
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5136
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5137
  msgid "Edit-profile Forms"
5138
+ msgstr "Profiel bewerkformulieren"
5139
 
5140
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5141
  msgid "View the Edit-profile Form"
5142
+ msgstr "Bekijk het Profiel bewerkformulier"
5143
 
5144
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5145
  msgid "Search the Edit-profile Forms"
5146
+ msgstr "Zoek de Profiel bewerkformulieren"
5147
 
5148
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5149
  msgid "No Edit-profile Form found"
5150
+ msgstr "Geen Profiel bewerkformulier gevonden"
5151
 
5152
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5153
  msgid "No Edit-profile Forms found in trash"
5154
+ msgstr "Geen Profiel bewerkformulieren in prullenbak gevonden"
5155
 
5156
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5157
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5210
 
5211
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5212
  msgid "After Profile Update..."
5213
+ msgstr "Na profiel update..."
5214
 
5215
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5216
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5351
 
5352
  #: profile-builder-2.0/modules/user-listing/userlisting.php:149
5353
  msgid "More Info Url"
5354
+ msgstr "Meer Info URL"
5355
 
5356
  #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5357
  msgid "Avatar or Gravatar"
5372
 
5373
  #: profile-builder-2.0/modules/user-listing/userlisting.php:220
5374
  msgid "Go Back Link"
5375
+ msgstr "Ga Terug Link"
5376
 
5377
  #: profile-builder-2.0/modules/user-listing/userlisting.php:238
5378
  msgid "All-userlisting Template"
5455
 
5456
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1448
5457
  msgid "You don't have any pagination settings on this userlisting!"
5458
+ msgstr "Er zijn geen instellingen voor paginering in deze gebruikerslijst!"
5459
 
5460
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1849
5461
  msgid "Search"
5462
+ msgstr "Zoek"
5463
 
5464
  #: profile-builder-2.0/modules/user-listing/userlisting.php:1850
5465
  msgid "Clear Results"