Cimy User Extra Fields - Version 2.6.3

Version Description

Download this release

Release Info

Developer Cimmo
Plugin Icon wp plugin Cimy User Extra Fields
Version 2.6.3
Comparing to
See all releases

Code changes from version 2.6.2 to 2.6.3

README_OFFICIAL.txt CHANGED
@@ -631,6 +631,20 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
631
 
632
 
633
  CHANGELOG:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
634
  v2.6.2 - 18/04/2014
635
  - Fixed date picker on registration page was conflicting with Google Chrome's one (thanks to Francesca)
636
  - Updated Securimage Captcha to v3.5.2
631
 
632
 
633
  CHANGELOG:
634
+ v2.6.3 - 03/10/2014
635
+ - Fixed the upload of files when 'Form confirmation' is enabled (thanks to Max)
636
+ - Fixed date range was not going beyond -/+10 years (thanks to LH)
637
+ - Fixed PHP notice when updating an user in its profile and a file/picture/avatar is not uploaded (thanks to Adrian)
638
+ - Fixed PHP error on multiple files upload when 'Form confirmation' is enabled
639
+ - Fixed PHP warning when using dropdown-multi and 'Form confirmation' is enabled
640
+ - Fixed avatar thumbnail was not automatically created when 'Form confirmation' is enabled
641
+ - Fixed Securimage captcha returned 'Typed code is not correct' error for correct codes when 'Form confirmation' is enabled
642
+ - Fixed 'true' error appears in some cases when 'Form confirmation' and captcha are enabled together
643
+ - Fixed use of deprecated function 'image_resize'
644
+ - Added Dutch (Wietse Stienstra)
645
+ - Updated Swedish (Hugo Krantz)
646
+ - Updated Securimage Captcha to v3.5.4
647
+
648
  v2.6.2 - 18/04/2014
649
  - Fixed date picker on registration page was conflicting with Google Chrome's one (thanks to Francesca)
650
  - Updated Securimage Captcha to v3.5.2
cimy_uef_functions.php CHANGED
@@ -902,13 +902,28 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
902
  // should be stay AFTER DELETIONS
903
  if ((isset($rules['equal_to'])) && ($type != "file")) {
904
  if ($maxside = intval($rules['equal_to'])) {
905
- if (!function_exists("image_resize"))
906
- require_once(ABSPATH . 'wp-includes/media.php');
907
-
908
- if (!function_exists("wp_load_image"))
909
- require_once($cuef_plugin_dir.'/cimy_uef_missing_functions.php');
910
-
911
- image_resize($file_full_path, $maxside, $maxside, false, "thumbnail");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
  }
913
  }
914
  }
@@ -1107,12 +1122,40 @@ function cimy_uef_dateformat_PHP_to_jQueryUI($php_format)
1107
  */
1108
  function cimy_uef_date_picker_options($unique_id, $rules) {
1109
  $js_date = "";
 
 
 
1110
  if (isset($rules["min_length"])) {
1111
  $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"minDate\", \"".esc_js($rules["min_length"])."\");";
 
1112
  }
1113
  if (isset($rules["max_length"])) {
1114
  $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"maxDate\", \"".esc_js($rules["max_length"])."\");";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1115
  }
 
 
 
 
 
 
1116
  if (!empty($js_date)) {
1117
  $js_date = "\n\t\t<script type='text/javascript'>jQuery(document).ready(function() {".$js_date."});</script>";
1118
  }
902
  // should be stay AFTER DELETIONS
903
  if ((isset($rules['equal_to'])) && ($type != "file")) {
904
  if ($maxside = intval($rules['equal_to'])) {
905
+ if (cimy_is_at_least_wordpress35()) {
906
+ if (!defined("WPINC")) {
907
+ define('WPINC', 'wp-includes');
908
+ }
909
+ if (!function_exists("image_make_intermediate_size")) {
910
+ require_once(ABSPATH . WPINC . '/media.php');
911
+ require_once(ABSPATH . WPINC . '/functions.php');
912
+ }
913
+ $resized_file = image_make_intermediate_size($file_full_path, $maxside, $maxside, false);
914
+ if (isset($resized_file["file"])) {
915
+ @rename($file_path.$resized_file["file"], $file_path.str_replace(sprintf("%sx%s", $resized_file["width"], $resized_file["height"]), "thumbnail", $resized_file["file"]));
916
+ }
917
+ }
918
+ else {
919
+ if (!function_exists("image_resize"))
920
+ require_once(ABSPATH . 'wp-includes/media.php');
921
+
922
+ if (!function_exists("wp_load_image"))
923
+ require_once($cuef_plugin_dir.'/cimy_uef_missing_functions.php');
924
+
925
+ image_resize($file_full_path, $maxside, $maxside, false, "thumbnail");
926
+ }
927
  }
928
  }
929
  }
1122
  */
1123
  function cimy_uef_date_picker_options($unique_id, $rules) {
1124
  $js_date = "";
1125
+ // set to true so in case of rule unset then they'll not go forward in the next ifs
1126
+ $found_year_min = true;
1127
+ $found_year_max = true;
1128
  if (isset($rules["min_length"])) {
1129
  $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"minDate\", \"".esc_js($rules["min_length"])."\");";
1130
+ $found_year_min = preg_match("/[\+|\-]{1}(\d)+y(\.)*/i", $rules["min_length"], $year_min);
1131
  }
1132
  if (isset($rules["max_length"])) {
1133
  $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"maxDate\", \"".esc_js($rules["max_length"])."\");";
1134
+ $found_year_max = preg_match("/[\+|\-]{1}(\d)+y(\.)*/i", $rules["max_length"], $year_max);
1135
+ }
1136
+ if (!$found_year_min) {
1137
+ $found_year_min = strtotime($rules["min_length"]);
1138
+ if ($found_year_min !== false && $found_year_min != -1) {
1139
+ $year_rel = getdate($found_year_min);
1140
+ $year_now = getdate();
1141
+ $year_min[0] = sprintf("%+d", $year_rel["year"] - $year_now["year"]);
1142
+ }
1143
+ }
1144
+
1145
+ if (!$found_year_max) {
1146
+ $found_year_max = strtotime($rules["max_length"]);
1147
+ if ($found_year_max !== false && $found_year_max != -1) {
1148
+ $year_rel = getdate($found_year_max);
1149
+ $year_now = getdate();
1150
+ $year_max[0] = sprintf("%+d", $year_rel["year"] - $year_now["year"]);
1151
+ }
1152
  }
1153
+
1154
+ if (!empty($year_min) || !empty($year_max)) {
1155
+ $year_range = sprintf("c%+d:c%+d", empty($year_min) ? "-10" : intval($year_min[0]), empty($year_max) ? "+10" : intval($year_max[0]));
1156
+ $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"yearRange\", \"".esc_js($year_range)."\");";
1157
+ }
1158
+
1159
  if (!empty($js_date)) {
1160
  $js_date = "\n\t\t<script type='text/javascript'>jQuery(document).ready(function() {".$js_date."});</script>";
1161
  }
cimy_uef_register.php CHANGED
@@ -195,7 +195,9 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
195
  $temp_user_login = $_POST["temp_user_login"];
196
  $temp_dir = cimy_uef_get_dir_or_filename($temp_user_login);
197
  $final_dir = cimy_uef_get_dir_or_filename($user_login_sanitized);
198
- rename($temp_dir, $final_dir);
 
 
199
  $data = str_replace("/".$temp_user_login."/", "/".$user_login_sanitized."/", $data);
200
  $file_on_server = cimy_uef_get_dir_or_filename($user_login_sanitized, $data, false);
201
 
@@ -423,7 +425,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
423
  }
424
 
425
  if (isset($_POST[$input_name])) {
426
- if ($type == "dropdown-multi")
427
  $value = stripslashes(implode(",", $_POST[$input_name]));
428
  else
429
  $value = stripslashes($_POST[$input_name]);
@@ -458,8 +460,8 @@ function cimy_registration_check($user_login, $user_email, $errors) {
458
  $file_size = 0;
459
  $file_type1 = "";
460
  $value = "";
461
- $old_file = $from_profile ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
462
- $del_old_file = $from_profile ? $_POST[$input_name."_del"] : '';
463
  }
464
  }
465
 
@@ -607,6 +609,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
607
  }
608
 
609
  if ($options['confirm_form']) {
 
610
  if ((empty($errors->errors)) && (isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 1)) {
611
  $errors->add('register_confirmation', 'true');
612
  }
@@ -641,7 +644,8 @@ function cimy_registration_captcha_check($user_login, $user_email, $errors) {
641
  $errors->add("recaptcha_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
642
  }
643
 
644
- if ($options['captcha'] == "securimage") {
 
645
  global $cuef_plugin_dir;
646
  require_once($cuef_plugin_dir.'/securimage/securimage.php');
647
  $securimage = new Securimage();
@@ -1036,14 +1040,18 @@ function cimy_registration_form($errors=null, $show_type=0) {
1036
  case 'picture':
1037
  case 'avatar':
1038
  case 'file':
1039
- $value = cimy_manage_upload($input_name, $temp_user_login, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
 
 
 
 
1040
  $file_on_server = cimy_uef_get_dir_or_filename($temp_user_login, $value, false);
1041
  $file_thumb = cimy_uef_get_dir_or_filename($temp_user_login, $value, true);
1042
  if ((!empty($advanced_options["no-thumb"])) && (is_file($file_thumb)))
1043
  rename($file_thumb, $file_on_server);
1044
 
1045
  // yea little trick
1046
- $obj_value2 = "&nbsp;";
1047
  break;
1048
  }
1049
  if ($old_type != "password") {
@@ -1075,7 +1083,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
1075
 
1076
  $obj_id = ' id="'.$unique_id.'"';
1077
 
1078
- // tabindex not used in MU, WordPress 3.5+ and Theme My Login dropping...
1079
  if (is_multisite() || cimy_is_at_least_wordpress35() || cimy_uef_is_theme_my_login_register_page())
1080
  $obj_tabindex = "";
1081
  else {
@@ -1277,8 +1285,8 @@ function cimy_confirmation_form() {
1277
  // fake registration to check if no errors then we'll proceed to confirmation phase
1278
  $fake_errors = register_new_user($user_login, $user_email);
1279
  // ok we can remove registration checks
1280
- // remove_action('register_post', 'cimy_registration_check');
1281
- // remove_action('register_post', 'cimy_registration_captcha_check');
1282
  }
1283
  // Might be Theme My Login, they have its own register_new_user but they don't have login_header seems so, so let's return for now!
1284
  else
195
  $temp_user_login = $_POST["temp_user_login"];
196
  $temp_dir = cimy_uef_get_dir_or_filename($temp_user_login);
197
  $final_dir = cimy_uef_get_dir_or_filename($user_login_sanitized);
198
+ if (is_dir($temp_dir)) {
199
+ rename($temp_dir, $final_dir);
200
+ }
201
  $data = str_replace("/".$temp_user_login."/", "/".$user_login_sanitized."/", $data);
202
  $file_on_server = cimy_uef_get_dir_or_filename($user_login_sanitized, $data, false);
203
 
425
  }
426
 
427
  if (isset($_POST[$input_name])) {
428
+ if ($type == "dropdown-multi" && is_array($_POST[$input_name]))
429
  $value = stripslashes(implode(",", $_POST[$input_name]));
430
  else
431
  $value = stripslashes($_POST[$input_name]);
460
  $file_size = 0;
461
  $file_type1 = "";
462
  $value = "";
463
+ $old_file = $from_profile && !empty($_POST[$input_name."_".$field_id."_prev_value"]) ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
464
+ $del_old_file = $from_profile && !empty($_POST[$input_name."_del"]) ? $_POST[$input_name."_del"] : '';
465
  }
466
  }
467
 
609
  }
610
 
611
  if ($options['confirm_form']) {
612
+ // this is executed to test registration for errors, to avoid a real registration we put a fake error
613
  if ((empty($errors->errors)) && (isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 1)) {
614
  $errors->add('register_confirmation', 'true');
615
  }
644
  $errors->add("recaptcha_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
645
  }
646
 
647
+ // check that actually there is a code there
648
+ if ($options['captcha'] == "securimage" && !empty($_SESSION["securimage_code_disp"]["default"])) {
649
  global $cuef_plugin_dir;
650
  require_once($cuef_plugin_dir.'/securimage/securimage.php');
651
  $securimage = new Securimage();
1040
  case 'picture':
1041
  case 'avatar':
1042
  case 'file':
1043
+ if ($old_type == "avatar") {
1044
+ // since avatars are drawn max to 512px then we can save bandwith resizing, do it!
1045
+ $rules['equal_to'] = 512;
1046
+ }
1047
+ $value = cimy_manage_upload($input_name, $temp_user_login, $rules, false, false, $old_type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
1048
  $file_on_server = cimy_uef_get_dir_or_filename($temp_user_login, $value, false);
1049
  $file_thumb = cimy_uef_get_dir_or_filename($temp_user_login, $value, true);
1050
  if ((!empty($advanced_options["no-thumb"])) && (is_file($file_thumb)))
1051
  rename($file_thumb, $file_on_server);
1052
 
1053
  // yea little trick
1054
+ empty($value) ? $obj_value2 = "&nbsp;" : $obj_value2 = esc_html(basename($value));
1055
  break;
1056
  }
1057
  if ($old_type != "password") {
1083
 
1084
  $obj_id = ' id="'.$unique_id.'"';
1085
 
1086
+ // tabindex not used in MU, WordPress 3.5+ and Theme My Login dropping...
1087
  if (is_multisite() || cimy_is_at_least_wordpress35() || cimy_uef_is_theme_my_login_register_page())
1088
  $obj_tabindex = "";
1089
  else {
1285
  // fake registration to check if no errors then we'll proceed to confirmation phase
1286
  $fake_errors = register_new_user($user_login, $user_email);
1287
  // ok we can remove registration checks
1288
+ // remove_action('register_post', 'cimy_registration_check', 10);
1289
+ // remove_action('register_post', 'cimy_registration_captcha_check', 9);
1290
  }
1291
  // Might be Theme My Login, they have its own register_new_user but they don't have login_header seems so, so let's return for now!
1292
  else
cimy_user_extra_fields.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
- Version: 2.6.2
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
10
 
11
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
12
- Copyright (c) 2006-2013 Marco Cimmino
13
 
14
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
15
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
@@ -162,7 +162,7 @@ add_action('admin_init', 'cimy_uef_admin_init');
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
- $cimy_uef_version = "2.6.2";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
@@ -170,7 +170,7 @@ $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-
170
  // see: http://core.trac.wordpress.org/ticket/8912
171
  $start_cimy_uef_comment = "<!--";
172
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version;
173
- $start_cimy_uef_comment .= "\tCopyright (c) 2006-2013 Marco Cimmino";
174
  $start_cimy_uef_comment .= "\t".$cimy_uef_url;
175
  $start_cimy_uef_comment .= "\t-->\n";
176
 
@@ -557,7 +557,7 @@ else {
557
 
558
  // add checks for extra fields in the registration form
559
  add_action('register_post', 'cimy_registration_check', 10, 3);
560
- add_action('register_post', 'cimy_registration_captcha_check', 11, 3);
561
 
562
  // add extra fields to registration form
563
  add_action('register_form', 'cimy_registration_form', 1);
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
+ Version: 2.6.3
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
10
 
11
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
12
+ Copyright (c) 2006-2014 Marco Cimmino
13
 
14
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
15
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
+ $cimy_uef_version = "2.6.3";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
170
  // see: http://core.trac.wordpress.org/ticket/8912
171
  $start_cimy_uef_comment = "<!--";
172
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version;
173
+ $start_cimy_uef_comment .= "\tCopyright (c) 2006-2014 Marco Cimmino";
174
  $start_cimy_uef_comment .= "\t".$cimy_uef_url;
175
  $start_cimy_uef_comment .= "\t-->\n";
176
 
557
 
558
  // add checks for extra fields in the registration form
559
  add_action('register_post', 'cimy_registration_check', 10, 3);
560
+ add_action('register_post', 'cimy_registration_captcha_check', 9, 3); // this need to be prioritized over all checks
561
 
562
  // add extra fields to registration form
563
  add_action('register_form', 'cimy_registration_form', 1);
langs/cimy_uef-nl_NL.mo ADDED
Binary file
langs/cimy_uef-nl_NL.po ADDED
@@ -0,0 +1,1249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cimy User Extra Fields\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-07-20 12:04-0800\n"
6
+ "PO-Revision-Date: 2014-07-20 12:09-0800\n"
7
+ "Last-Translator: Wietse Stienstra <w.stienstra@stateoftheart.nl>\n"
8
+ "Language-Team: Wietse Stienstra <w.stienstra@stateoftheart.nl>\n"
9
+ "Language: nl\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.6.3\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-Language: Dutch\n"
19
+ "X-Poedit-Country: NETHERLANDS\n"
20
+ "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
21
+
22
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
24
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
25
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
26
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
28
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
29
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
30
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
32
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
33
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
34
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
36
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
37
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
38
+ msgid "ERROR"
39
+ msgstr "FOUT"
40
+
41
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
42
+ msgid "does not match."
43
+ msgstr "komt niet overeen"
44
+
45
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
46
+ msgid "hasn&#8217;t a correct email syntax."
47
+ msgstr "Dit is geen geldig emailadres."
48
+
49
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
50
+ msgid "couldn&#8217;t be empty."
51
+ msgstr "Mag niet leeg zijn."
52
+
53
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
54
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
55
+ msgid "isn&#8217;t correct"
56
+ msgstr "Is onjuist"
57
+
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
59
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
60
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
61
+ msgid "YES"
62
+ msgstr "JA"
63
+
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
65
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
66
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
67
+ msgid "NO"
68
+ msgstr "NEE"
69
+
70
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
71
+ msgid "should be"
72
+ msgstr "zou moeten zijn"
73
+
74
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
75
+ msgid "should be an image."
76
+ msgstr "zou een afbeelding moeten zijn"
77
+
78
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
79
+ msgid "does not accept this file type."
80
+ msgstr "accepteert dit bestandstype niet."
81
+
82
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
83
+ msgid "couldn&#8217;t have size less than"
84
+ msgstr "kan geen grootte hebben minder dan"
85
+
86
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
87
+ msgid "couldn&#8217;t have length less than"
88
+ msgstr "kan geen afmeting hebben minder dan"
89
+
90
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
91
+ msgid "couldn&#8217;t have size different than"
92
+ msgstr "kan geen grootte hebben anders dan"
93
+
94
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
95
+ msgid "couldn&#8217;t have length different than"
96
+ msgstr "kan geen lengte hebben anders dan"
97
+
98
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
99
+ msgid "couldn&#8217;t have size more than"
100
+ msgstr "kan geen grootte hebben meer dan"
101
+
102
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
103
+ msgid "couldn&#8217;t have length more than"
104
+ msgstr "kan geen lengte hebben meer dan"
105
+
106
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
107
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
108
+ msgid "Typed code is not correct."
109
+ msgstr "De ingevoerde code is niet juist."
110
+
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
112
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
113
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
114
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
115
+ msgid "Username"
116
+ msgstr "Gebruikersnaam"
117
+
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
119
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
120
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
121
+ msgid "E-mail"
122
+ msgstr "E-mailadres"
123
+
124
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
125
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
126
+ msgid "Please upload a file with one of the following extensions"
127
+ msgstr "Wilt u een bestand uploaden met één van de volgende extenties"
128
+
129
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
130
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
131
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
132
+ msgid "Please upload an image with one of the following extensions"
133
+ msgstr "Wilt u een afbeelding uploaden met één van de volgende extenties"
134
+
135
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
136
+ msgid "Strength indicator"
137
+ msgstr "Sterkte indicator"
138
+
139
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
140
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
141
+ msgstr "Hint: Het wachtwoord zou ten minste zeven karakters lang moeten zijn. Om deze sterker te maken, gebruik hoofd- en kleine letters, cijfers en symbolen als ! \" ? $ % ^ &amp; )."
142
+
143
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
144
+ msgid "Change image"
145
+ msgstr "Wijzig afbeelding"
146
+
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
+ msgid "Insert the code:"
149
+ msgstr "Voer de code in:"
150
+
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
+ msgid "Confirm your registration"
154
+ msgstr "Bevestig uw registratie"
155
+
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
+ msgid "A password will be e-mailed to you."
158
+ msgstr "Een wachtwoord wordt naar u verstuurd per e-mail."
159
+
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
+ msgid "&larr; Back"
162
+ msgstr "&larr; Terug"
163
+
164
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
165
+ msgid "Add field"
166
+ msgstr "Veld toevoegen"
167
+
168
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
169
+ msgid "Update field"
170
+ msgstr "Veld updaten"
171
+
172
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
173
+ msgid "Delete field"
174
+ msgstr "Verwijder veld"
175
+
176
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
177
+ msgid "Delete selected fields"
178
+ msgstr "Verwijder geselecteerde veld(en)"
179
+
180
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
181
+ msgid "Change order"
182
+ msgstr "Wijzig volgorde"
183
+
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
+ msgid "Min length"
187
+ msgstr "Minimale lengte"
188
+
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
+ msgid "Exact length"
192
+ msgstr "Exacte lengte"
193
+
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
+ msgid "Max length"
197
+ msgstr "Maximale lengte"
198
+
199
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
200
+ msgid "Exact or Max length"
201
+ msgstr "Exacte of maximale lengte"
202
+
203
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
204
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
205
+ msgid "Fields"
206
+ msgstr "Velden"
207
+
208
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
209
+ msgid "changed to"
210
+ msgstr "gewijzigd naar"
211
+
212
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
213
+ msgid "You cannot give an order that misses some numbers"
214
+ msgstr "U kunt geen order geven waarin enkele nummers ontbreken"
215
+
216
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
217
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
218
+ msgid "Nothing selected"
219
+ msgstr "Niets geselecteerd"
220
+
221
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
222
+ msgid "Field(s)"
223
+ msgstr "Veld(en)"
224
+
225
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
226
+ msgid "deleted correctly"
227
+ msgstr "correct verwijderd"
228
+
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
+ msgid "Min size"
232
+ msgstr "Minimale grootte"
233
+
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
+ msgid "Exact size"
237
+ msgstr "Exacte grootte"
238
+
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
+ msgid "Max size"
242
+ msgstr "Maximale grootte"
243
+
244
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
245
+ msgid "Exact or Max size"
246
+ msgstr "Exacte of Maximale grootte"
247
+
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ msgid "Min date"
251
+ msgstr "Datum (min)"
252
+
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
255
+ msgid "Exact date"
256
+ msgstr "Datum (exact)"
257
+
258
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
260
+ msgid "Max date"
261
+ msgstr "Datum (maximaal)"
262
+
263
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
264
+ msgid "Name not specified"
265
+ msgstr "Naam niet gespecificeerd"
266
+
267
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
268
+ msgid "Name cannot contains spaces"
269
+ msgstr "Naam kan geen spaties bevatten"
270
+
271
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
272
+ msgid "Label not specified"
273
+ msgstr "Label niet gespecificeerd"
274
+
275
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
276
+ msgid "not selected (with this type is necessary)"
277
+ msgstr "niet geselecteerd(met dit type benodigd)"
278
+
279
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
280
+ msgid "If you select"
281
+ msgstr "Als u selecteert"
282
+
283
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
284
+ msgid "you cannot select Min or Max"
285
+ msgstr "u kunt niet Min of Max selecteren"
286
+
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
290
+ msgid "should be in the range of"
291
+ msgstr "zou in het gebied van"
292
+
293
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
294
+ msgid "Equal TO not specified"
295
+ msgstr "Gelijk AAN niet gespecificeerd"
296
+
297
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
298
+ msgid "With checkbox type Equal TO can only be"
299
+ msgstr "Met vinkbox type gelijk AAN kan alleen zijn"
300
+
301
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
302
+ msgid "With radio type Equal TO can only be"
303
+ msgstr "Met radio type Gelijk AAN kan alleen zijn"
304
+
305
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
306
+ msgid "With checkbox type Value can only be"
307
+ msgstr "Met type vinkbox Waarde kan alleen zijn"
308
+
309
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
310
+ msgid "With radio type Value can only be"
311
+ msgstr "Met type radio Waarde kan alleen zijn"
312
+
313
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
+ msgid "Field inserted correctly"
315
+ msgstr "Veld juist ingevoegd"
316
+
317
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
318
+ msgid "Field #"
319
+ msgstr "Veld #"
320
+
321
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
322
+ msgid "updated correctly"
323
+ msgstr "correct geupdate"
324
+
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
326
+ msgid "Name inserted is just in the database, change to another one"
327
+ msgstr "Ingegeven naam staat al in de database, wijzig uw naam"
328
+
329
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
331
+ msgid "Add a new Field"
332
+ msgstr "Nieuw veld toevoegen"
333
+
334
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
335
+ msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
336
+ msgstr "Om een nieuw veld toe te voegen moet u een naam, type en label kiezen; optioneel zijn waarde en omschrijving. Regels worden van kracht tijdens gebruikers registratie"
337
+
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
339
+ msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
340
+ msgstr "Met <strong>radio</strong> en <strong>vinkbox</strong>: <em>Waarde</em> en <em>gelijk AAN</em> kunnen alleen 'Yes' of 'No'. Dit betekent 'geselecteerd' of 'niet geselecteerd'"
341
+
342
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
343
+ msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
344
+ msgstr "Met <strong>drop-down</strong>: moet u alle opties in het label zetten, voorbeeld: label/item1,item2,item3"
345
+
346
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
347
+ msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
348
+ msgstr "Met <strong>afbeelding</strong>: u kunt een standaard afbeelding preloaden door url in de voeren <em>Waarde</em>; 'min,exact,max grootte' are in KB; <em>gelijk AAN</em> wordt mee bedoeld maximale pixelgrootte(lengte of breedte) voor thumbnail"
349
+
350
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
351
+ msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
352
+ msgstr "Met <strong>afbeelding-url</strong>: u kunt een standaard afbeelding uploaden door url in te voeren <em>Waarde</em>; <em>gelijk AAN</em> wordt mee bedoeld maximale breedte pixelgrootte (hoogte zal proportioneel zijn)"
353
+
354
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
355
+ msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
356
+ msgstr "Met <strong>registratie-datum</strong>: <em>gelijk AAN</em> betekent datum en tijd formaat"
357
+
358
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
359
+ msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
360
+ msgstr "Met <strong>avatar</strong>: u kunt een standaard afbeelding uploaden door url in te voeren <em>Waarde</em>; 'min,exact,max grootte' zijn in KB; <em>gelijk AAN</em> is automatisch ingesteld op 512 pixels"
361
+
362
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
363
+ msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
364
+ msgstr "Met <strong>bestand</strong>: u kunt een standaard bestand uploaden door url in te voeren <em>Waarde</em>; 'min,exact,max grootte' zijn in KB; <em>gelijk AAN</em> kan ingesteld worden door toegestane extenties, gescheiden door komma, voorbeeld: zip, pdf,doc"
365
+
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
367
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
368
+ msgstr "Met <strong>datum</strong>: u kunt een standaard datum invoeren<em>Value</em>; 'min datum' kan relatief zijn: -1d, -1m, -1y of een specifieke datum; 'max datum' can be relatief zijn: +1d, +1m, +1y or een specifieke datum; <em>gelijk AAN</em> kan een specifieke datum zijn"
369
+
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
376
+ msgid "Name"
377
+ msgstr "Naam"
378
+
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
385
+ msgid "Value"
386
+ msgstr "Waarde"
387
+
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
392
+ msgid "Type"
393
+ msgstr "Type"
394
+
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
399
+ msgid "Label"
400
+ msgstr "Label"
401
+
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
406
+ msgid "Description"
407
+ msgstr "Omschrijving"
408
+
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
411
+ msgid "Rules"
412
+ msgstr "Regels"
413
+
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
416
+ msgid "Actions"
417
+ msgstr "Acties"
418
+
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
423
+ msgid "Fieldset"
424
+ msgstr "Veldset"
425
+
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
428
+ msgid "Can be empty"
429
+ msgstr "Kan leeg zijn"
430
+
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
433
+ msgid "Check for E-mail syntax"
434
+ msgstr "Controleer email syntax"
435
+
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
438
+ msgid "Can be modified"
439
+ msgstr "Kan gewijzigd worden"
440
+
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
443
+ msgid "Can be modified only if empty"
444
+ msgstr "Kan alleen gewijzigd worden indien leeg"
445
+
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
448
+ msgid "Can be modified only by admin"
449
+ msgstr "Kan alleen door admin aangepast worden"
450
+
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
453
+ msgid "Can be modified only by admin or if empty"
454
+ msgstr "Kan alleen aangepast worden door admin of als deze waarde leeg is"
455
+
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
458
+ msgid "Cannot be modified"
459
+ msgstr "Kan niet aangepast worden"
460
+
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
463
+ msgid "Should be equal TO"
464
+ msgstr "Zou gelijk moeten zijn AAN"
465
+
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
468
+ msgid "Case sensitive"
469
+ msgstr "Hooflettergevoelig"
470
+
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
473
+ msgid "Regular Expression"
474
+ msgstr "Reguliere uitrukking"
475
+
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
478
+ msgid "Show the field in the registration"
479
+ msgstr "Toon het veld in de registratie"
480
+
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
483
+ msgid "Show the field in User's profile"
484
+ msgstr "Toon het veld in het gebruikersprofiel"
485
+
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
488
+ msgid "Show the field in Users Extended section"
489
+ msgstr "Toon het veld in Uitgebreide Gebruikersinformatie "
490
+
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
493
+ msgid "Show the field in the search engine"
494
+ msgstr "Toen het veld in de zoekmachine"
495
+
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
498
+ msgid "Show the field in the blog"
499
+ msgstr "Toon het veld in de blog"
500
+
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
503
+ msgid "Show the field if the role is at least:"
504
+ msgstr "Toon veld als de rol minstens is:"
505
+
506
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
507
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
508
+ msgid "Anonymous"
509
+ msgstr "Anoniem"
510
+
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
512
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
513
+ msgid "User has 'view_cimy_extra_fields' capability"
514
+ msgstr "Gebruiker heeft 'view_cimy_extra_fields' rechten"
515
+
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
518
+ msgid "Send an email to the admin if the user changes its value"
519
+ msgstr "Stuur een email naar de admin als de gebruiker de waarde aanpast"
520
+
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
523
+ msgid "Advanced options"
524
+ msgstr "Geavanceerde opties"
525
+
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
527
+ msgid "Clear"
528
+ msgstr "Leeg maken"
529
+
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
531
+ msgid "Invert selection"
532
+ msgstr "Selectie omkeren"
533
+
534
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
535
+ msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
536
+ msgstr "Weet u zeker dat u geselecteerde veld(en) - en alle data door gebruikers ingevoerd - wilt verwijderen "
537
+
538
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
539
+ msgid "WordPress Fields"
540
+ msgstr "Wordpress Velden"
541
+
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
546
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
548
+ msgid "Extra Fields"
549
+ msgstr "Extra Velden"
550
+
551
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
552
+ msgid "None!"
553
+ msgstr "Geen!"
554
+
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
556
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
557
+ msgid "Order"
558
+ msgstr "Volgorde"
559
+
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
561
+ msgid "Reset"
562
+ msgstr "Reset"
563
+
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
566
+ msgid "SUCCESSFUL"
567
+ msgstr "SUCCES"
568
+
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
571
+ msgid "select"
572
+ msgstr "selecteer"
573
+
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
576
+ msgid "Users per page"
577
+ msgstr "Gebruikers per pagina"
578
+
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
581
+ msgid "Apply"
582
+ msgstr "Toepassen"
583
+
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
588
+ msgid "Users Extended"
589
+ msgstr "Uitgebreide Gebruikers"
590
+
591
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
592
+ #, php-format
593
+ msgid "Search results for &#8220;%s&#8221;"
594
+ msgstr "Zoekresultaten voor &#8220;%s&#8221;"
595
+
596
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
597
+ #, php-format
598
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
599
+ msgstr ""
600
+
601
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
602
+ msgid "Search Users"
603
+ msgstr "Zoek gebruikers"
604
+
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
606
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
607
+ msgid "Role"
608
+ msgstr "Rol"
609
+
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
612
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
613
+ msgid "Website"
614
+ msgstr ""
615
+
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
618
+ msgid "Posts"
619
+ msgstr ""
620
+
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
622
+ msgid "View posts by this author"
623
+ msgstr "Bekijk posts van deze auteur"
624
+
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
626
+ msgid "Super Admin"
627
+ msgstr ""
628
+
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
630
+ #, php-format
631
+ msgid "e-mail: %s"
632
+ msgstr ""
633
+
634
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
635
+ msgid "Change"
636
+ msgstr "Wijzigen"
637
+
638
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
639
+ msgid "Update selected users"
640
+ msgstr "Selecteerde gebruikers updaten"
641
+
642
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
643
+ msgid "Update"
644
+ msgstr "Updaten"
645
+
646
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
647
+ msgid "OK"
648
+ msgstr ""
649
+
650
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
651
+ msgid "Cancel"
652
+ msgstr "Annuleren"
653
+
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
655
+ #, php-format
656
+ msgid "New user registration on your site %s:"
657
+ msgstr "Nieuwe gebruikerregistratie op de site %s:"
658
+
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
660
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
661
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
662
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
663
+ #, php-format
664
+ msgid "Username: %s"
665
+ msgstr "Gebruikersnaam %s"
666
+
667
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
668
+ #, php-format
669
+ msgid "E-mail: %s"
670
+ msgstr "Emailadres: %s"
671
+
672
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
673
+ #, php-format
674
+ msgid "[%s] New User Registration"
675
+ msgstr "[%s] Nieuwe Gebruiker Registratie"
676
+
677
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
678
+ #, php-format
679
+ msgid "[%s] Your username and password"
680
+ msgstr "[%s] Uw gebruikersnaam en wachtwoord"
681
+
682
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
683
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
684
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
685
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
686
+ #, php-format
687
+ msgid "%s: %s"
688
+ msgstr ""
689
+
690
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
691
+ #, php-format
692
+ msgid ""
693
+ "To activate your user, please click the following link:\n"
694
+ "\n"
695
+ "%s\n"
696
+ "\n"
697
+ "After you activate, you will receive *another email* with your login.\n"
698
+ "\n"
699
+ msgstr ""
700
+ "Klik op onderstaande link om uw gebruikersnaam te activeren:\n"
701
+ "\n"
702
+ "%s\n"
703
+ "\n"
704
+ "Na het activeren ontvangt u een *nieuwe email* met uw logingegevens.\n"
705
+ "\n"
706
+
707
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
708
+ #, php-format
709
+ msgid "[%1$s] Activate %2$s"
710
+ msgstr "[%1$s] Activeer %2$s"
711
+
712
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
713
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
714
+ msgid "Your account is now active!"
715
+ msgstr "Uw gebruikersaccount is nu geactiveerd!"
716
+
717
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
718
+ #, php-format
719
+ msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
720
+ msgstr "Uw website <a href=\"%1$s\">%2$s</a> is geactiveerd. U kunt nu op uw website inloggen met uw gekozen gebruikersnaam of &#8220;%3$s&#8221;. Controleer alstublieft het postvak van %4$s voor uw wachtwoord en login instructies. Indien u geen email ontvangen heeft, controleer dan uw ongewenste email map. Als u binnen een uur geen email ontvangen heeft, kunt u <a href=\"%5$s\">uw wachtwoord opnieuw instellen</a></p>."
721
+
722
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
723
+ msgid "An error occurred during the activation"
724
+ msgstr "Er is een fout opgetreden tijdens het activeren"
725
+
726
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
727
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
728
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
729
+ #, php-format
730
+ msgid "Password: %s"
731
+ msgstr "Wachtwoord: %s"
732
+
733
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
734
+ msgid "Invalid activation key."
735
+ msgstr "Onjuiste activatiecode"
736
+
737
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
738
+ msgid "The site is already active."
739
+ msgstr "De website is reeds actief."
740
+
741
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:283
742
+ msgid "Could not create user"
743
+ msgstr "Kan gebruiker niet aanmaken"
744
+
745
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:295
746
+ msgid "That username is already activated."
747
+ msgstr "Deze gebruikersnaam is reeds geactiveerd."
748
+
749
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
750
+ msgid "That username is currently reserved but may be available in a couple of days."
751
+ msgstr "Deze gebruikersnaam is op dit moment gereserveerd maar kan binnen enkele dagen beschikbaar zijn."
752
+
753
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
754
+ msgid "username and email used"
755
+ msgstr "gebruikersnaam en email gebruikt"
756
+
757
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:328
758
+ msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
759
+ msgstr "Dit emailadres is al in gebruik. Controleer alstublieft uw Postvak IN voor de activatie email. Dit emailadres zal binnen enkele dagen beschikbaar zijn als u niets doet."
760
+
761
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:144
762
+ msgid "(required)"
763
+ msgstr "(verplicht)"
764
+
765
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
766
+ msgid "Delete the file"
767
+ msgstr "Verwijder bestand"
768
+
769
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:455
770
+ msgid "Update the file"
771
+ msgstr "Bestand updaten"
772
+
773
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:458
774
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
775
+ msgid "Delete the picture"
776
+ msgstr "Werwijder afbeelding"
777
+
778
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:459
779
+ msgid "Update the picture"
780
+ msgstr "Afbeelding updaten"
781
+
782
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:479
783
+ msgid "Picture URL:"
784
+ msgstr "Afbeeldings URL:"
785
+
786
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
787
+ #, php-format
788
+ msgid "%s previous value: %s new value: %s"
789
+ msgstr "%s vorige waarde: %s nieuwe waarde: %s"
790
+
791
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
792
+ #, php-format
793
+ msgid "%s (%s) has changed one or more fields"
794
+ msgstr "%s (%s) heeft 1 of meerdere velden gewijzigd"
795
+
796
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
797
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
798
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:559
799
+ msgid "Options"
800
+ msgstr "Opties"
801
+
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
803
+ msgid "WordPress Fields table emptied"
804
+ msgstr "Wordpress Velden tabel geleegd"
805
+
806
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
807
+ msgid "WordPress Fields table deleted"
808
+ msgstr "Wordpress Velden tabel verwijderd"
809
+
810
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
811
+ msgid "Extra Fields table emptied"
812
+ msgstr "Extra Velden tabel geleegd"
813
+
814
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
815
+ msgid "Extra Fields table deleted"
816
+ msgstr "Extra Velden tabel verwijderd"
817
+
818
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
819
+ msgid "Users Data table emptied"
820
+ msgstr "Gebruikers Data tabel geleegd"
821
+
822
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
823
+ msgid "Users Data table deleted"
824
+ msgstr "Gebruikers Data tabel verwijderd"
825
+
826
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
827
+ msgid "Options set to default values"
828
+ msgstr "Opties hersteld naar standaard waarden"
829
+
830
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
831
+ msgid "Options deleted"
832
+ msgstr "Opties verwijderd"
833
+
834
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
835
+ msgid "Options changed"
836
+ msgstr "Opties aangepast"
837
+
838
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
839
+ msgid "This operation will create/update all missing tables/options, do you want to proceed?"
840
+ msgstr "Deze handeling zal alle ontbrekende tabellen/opties aanmaken dan wel updaten. Wilt u doorgaan?"
841
+
842
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
843
+ msgid "Support the Cimy Project"
844
+ msgstr "Steun het Cimy Project"
845
+
846
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
847
+ msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
848
+ msgstr "Deze plugin is het resultaat van uren ontwikkeling om nieuwe opties toe te voegen, bugs te repareren en nieuwe Wordpress versies te ondersteunen, doneer alstublieft als u zich uren van ontwikkelen heeft bespaard!"
849
+
850
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
851
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
852
+ msgid "Save Changes"
853
+ msgstr "Wijzigingen Opslaan"
854
+
855
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
856
+ msgid "General"
857
+ msgstr "Algemeen"
858
+
859
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
860
+ msgid "installed is"
861
+ msgstr "geinstalleerd is"
862
+
863
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
864
+ msgid "OPTIONS DELETED!"
865
+ msgstr "OPTIES VERWIJDERD!"
866
+
867
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
868
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
869
+ msgid "Fix the problem"
870
+ msgstr "Herstel dit probleem"
871
+
872
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
873
+ msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
874
+ msgstr "ONJUISTE VERSIE ! Omdat u uw plugin niet gedeactiveerd en gereactiveerd heeft na de update! Dit zou problemen kunnen opleveren..."
875
+
876
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
877
+ msgid "Picture/Avatar upload"
878
+ msgstr "Afbeelding/Avatar upload"
879
+
880
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
881
+ msgid "is created and writable"
882
+ msgstr "is aangemaakt en beschrijfbaar"
883
+
884
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
885
+ msgid "is NOT created or webserver does NOT have permission to write on it"
886
+ msgstr "is NIET aangemaakt op webserver: GEEN schrijfrechten"
887
+
888
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
889
+ msgid "Show all fields in the welcome email"
890
+ msgstr "Toon alle velden in de welkomst email"
891
+
892
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
893
+ msgid "the email sent to the admin and to the user upon registration will have all fields"
894
+ msgstr "de email verstuurd naar de admin en de gebruiker na registratie bevat alle velden"
895
+
896
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
897
+ msgid "Enable email confirmation"
898
+ msgstr "Email configuratie toestaan"
899
+
900
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
901
+ msgid "user that registers should confirm its email address via a link click"
902
+ msgstr "registrerende gebruikers moeten het emailadres via registratielink per email klikken"
903
+
904
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
905
+ msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
906
+ msgstr "<strong>let op:</strong> als deze optie aan staat, zet deze automatisch alle upload velden: bestand, afbeelding, avatar uit. (tijdens registratie) "
907
+
908
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
909
+ msgid "Enable form confirmation"
910
+ msgstr "Zet formulier bevestiging aan"
911
+
912
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
913
+ msgid "a summary of the registration form will be presented to the user"
914
+ msgstr "een uittreksel van het registratieformulier zal aan de gebruiker worden getoond"
915
+
916
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
917
+ msgid "Customize welcome email sent to the new user"
918
+ msgstr "Welkomstmail gezonden aan gebruiker personaliseren"
919
+
920
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
921
+ msgid "if you change or remove the placeholders then the email won't have the correct information"
922
+ msgstr "als u de standaard invoeren van de email aanpast of verwijdert, krijgt gebruiker niet de correcte informatie"
923
+
924
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
925
+ msgid "Redirect to the source"
926
+ msgstr "Doorverwijzen naar de bron"
927
+
928
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
929
+ msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
930
+ msgstr "na de registratie of bevestiging zal de gebruiker doorverwezen worden naar het adres waar de registatielink geklikt was"
931
+
932
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
933
+ msgid "No captcha"
934
+ msgstr "Geen captcha"
935
+
936
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
937
+ msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
938
+ msgstr "Zet <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a> aan"
939
+
940
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
941
+ msgid "Public KEY"
942
+ msgstr "Public KEY"
943
+
944
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
945
+ msgid "Private KEY"
946
+ msgstr "Private KEY"
947
+
948
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
949
+ msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
950
+ msgstr "Zet <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a> aan"
951
+
952
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
953
+ msgid "This captcha is probably weaker, but is easier for users"
954
+ msgstr "Deze captcha is waarschijnlijk minder veilig, maar gemakkelijker voor gebruikers"
955
+
956
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
957
+ #, php-format
958
+ msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
959
+ msgstr "<strong>LEP OP: om deze captche download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\"dit pakket</a> te activeren, pak deze uit in %s</strong>"
960
+
961
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
962
+ msgid "Change login/registration page logo"
963
+ msgstr "Wijzig login/registratie pagina logo"
964
+
965
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
966
+ msgid "Maximum recommended logo width is 328px, but any height should work."
967
+ msgstr "Maximaal aanbevolen breedte voor een logo is 328px, elke hoogte zou moeten werken. "
968
+
969
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
970
+ msgid "Database"
971
+ msgstr "Database"
972
+
973
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
974
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
975
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
976
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
977
+ msgid "select action"
978
+ msgstr "kies een actie"
979
+
980
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:567
981
+ msgid "Default values"
982
+ msgstr "Standaard waarden"
983
+
984
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
985
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
986
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
987
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
988
+ msgid "Delete"
989
+ msgstr "Verwijderen"
990
+
991
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
992
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:592
993
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:612
994
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
995
+ msgid "NOT PRESENT"
996
+ msgstr "NIET AANWEZIG"
997
+
998
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
999
+ msgid "WordPress Fields table"
1000
+ msgstr "Wordpress velden tabel"
1001
+
1002
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
1003
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
1004
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
1005
+ msgid "Empty"
1006
+ msgstr "Leeg"
1007
+
1008
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
1009
+ msgid "Extra Fields table"
1010
+ msgstr "Extra Velden tabel"
1011
+
1012
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
1013
+ msgid "Users Data table"
1014
+ msgstr "Gebruikers Data tabel"
1015
+
1016
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
1017
+ msgid "all data inserted by users in all and only extra fields"
1018
+ msgstr "alle data ingevoed door gebruikers in alle en alleen extra velden"
1019
+
1020
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
1021
+ msgid "Force tables creation"
1022
+ msgstr "Forceer tabel creatie"
1023
+
1024
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
1025
+ msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1026
+ msgstr "Tijdens het de-activeren en activeren van de plugin worden geen andere operaties uitgevoerd"
1027
+
1028
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
1029
+ msgid "User Profile"
1030
+ msgstr "Gebruikersprofiel"
1031
+
1032
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
1033
+ msgid "Extra Fields section title"
1034
+ msgstr "Extra Velden sectie titel"
1035
+
1036
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1037
+ msgid "Fieldset's titles, separates with comma"
1038
+ msgstr "Veldset titels, gescheiden door komma"
1039
+
1040
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1041
+ msgid "example: title1,title2,title3"
1042
+ msgstr "voorbeeld: titel1,titel2,titel3"
1043
+
1044
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
1045
+ msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1046
+ msgstr "<strong>let op:</strong> als u de volgorde van fieldsets aanpast of verwijderd, zou u alle extra velden veldset opnieuw moeten instellen"
1047
+
1048
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
1049
+ msgid "Authors &amp; Users Extended"
1050
+ msgstr "Auteurs &amp; Uitgebreide Gebruikers"
1051
+
1052
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
1053
+ msgid "Hide username field"
1054
+ msgstr "Gebruikersnaam veld niet tonen"
1055
+
1056
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
1057
+ msgid "Hide name field"
1058