User registration & user profile – Profile Builder - Version 2.0.6

Version Description

  • Fixed a bug with checkbox field that didn't pass the required if the value of the checkbox contained spaces
  • When email confirmation is enabled we no longer can send the selected password via email because we now store the hased password inside wp-signups table and not a encoded version of it. This was done to improve security
  • Fixed problem that was causing "Insert into post" image button not to work
  • Fixed Fatal error when having both Free and Premium versions activated.
  • Removing the meta name for extra fields is no longer possible
  • Added translation files
Download this release

Release Info

Developer reflectionmedia
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.0.6
Comparing to
See all releases

Code changes from version 2.0.5 to 2.0.6

admin/manage-fields.php CHANGED
@@ -167,7 +167,7 @@ function wppb_get_meta_name(){
167
  $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' );
168
 
169
  if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){
170
- return 'custom_field'.$id;
171
  }
172
  else{
173
  $meta_names = array();
@@ -181,7 +181,7 @@ function wppb_get_meta_name(){
181
  $meta_numbers = array();
182
  foreach( $meta_names as $meta_name ){
183
  $number = str_replace( 'custom_field', '', $meta_name );
184
- /* backwards compatibility check in PB 1.3 meta_name was custom_field_# */
185
  $number = str_replace( '_', '', $number );
186
 
187
  $meta_numbers[] = $number;
@@ -192,7 +192,7 @@ function wppb_get_meta_name(){
192
  }
193
  }
194
 
195
- return 'custom_field'.$id;
196
  }
197
  }
198
 
@@ -218,12 +218,41 @@ function wppb_get_unique_id(){
218
  }
219
  if( !empty( $ids_array ) ){
220
  rsort( $ids_array );
221
- $id = $ids_array[0]+1;
222
  }
223
  }
224
  return $id;
225
  }
226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  function wppb_return_unique_field_list( $only_default_fields = false ){
228
 
229
  $unique_field_list[] = 'Default - Name (Heading)';
@@ -336,14 +365,21 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
336
  }
337
  // END check for the correct the date-format
338
 
339
- //check duplicate meta-name
340
  if ( $posted_values['overwrite-existing'] == 'No' ){
341
  $skip_check_for_fields = wppb_return_unique_field_list(true);
342
  $skip_check_for_fields = apply_filters ( 'wppb_skip_check_for_fields', $skip_check_for_fields );
343
 
344
  if ( !in_array( trim( $posted_values['field'] ), $skip_check_for_fields ) ){
345
  $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
346
-
 
 
 
 
 
 
 
347
  // Default contact methods were removed in WP 3.6. A filter dictates contact methods.
348
  if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
349
  $unique_meta_name_list[] = 'aim';
@@ -400,7 +436,9 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
400
  $message .= sprintf( __( "The following option did not coincide with the ones in the options list: %s\n", 'profilebuilder' ), $posted_values['default-option'] );
401
  }
402
  // END check for valid default option (checkbox, select, radio)
403
-
 
 
404
  }elseif ( ( $meta_name == 'wppb_rf_fields' ) || ( $meta_name == 'wppb_epf_fields' ) ){
405
  if ( $posted_values['field'] == '' ){
406
  $message .= __( "You must select a field\n", 'profilebuilder' );
167
  $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' );
168
 
169
  if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){
170
+ return 'custom_field_' . $id;
171
  }
172
  else{
173
  $meta_names = array();
181
  $meta_numbers = array();
182
  foreach( $meta_names as $meta_name ){
183
  $number = str_replace( 'custom_field', '', $meta_name );
184
+ /* we should have an underscore present in custom_field_# so remove it */
185
  $number = str_replace( '_', '', $number );
186
 
187
  $meta_numbers[] = $number;
192
  }
193
  }
194
 
195
+ return 'custom_field_' . $id;
196
  }
197
  }
198
 
218
  }
219
  if( !empty( $ids_array ) ){
220
  rsort( $ids_array );
221
+ $id = $ids_array[0] + 1;
222
  }
223
  }
224
  return $id;
225
  }
226
 
227
+ /**
228
+ * Function that checks to see if the id is unique when saving the new field
229
+ *
230
+ * @param array $values
231
+ *
232
+ * @return array
233
+ */
234
+ function wppb_check_unique_id_on_saving( $values ) {
235
+ $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' );
236
+
237
+ if( $wppb_manage_fields != 'not_found' ) {
238
+
239
+ $ids_array = array();
240
+ foreach( $wppb_manage_fields as $field ){
241
+ $ids_array[] = $field['id'];
242
+ }
243
+
244
+ if( in_array( $values['id'], $ids_array ) ) {
245
+ rsort( $ids_array );
246
+ $values['id'] = $ids_array[0] + 1;
247
+ }
248
+
249
+ }
250
+
251
+ return $values;
252
+ }
253
+ add_filter( 'wck_add_meta_filter_values_wppb_manage_fields', 'wppb_check_unique_id_on_saving' );
254
+
255
+
256
  function wppb_return_unique_field_list( $only_default_fields = false ){
257
 
258
  $unique_field_list[] = 'Default - Name (Heading)';
365
  }
366
  // END check for the correct the date-format
367
 
368
+ //check for empty meta-name and duplicate meta-name
369
  if ( $posted_values['overwrite-existing'] == 'No' ){
370
  $skip_check_for_fields = wppb_return_unique_field_list(true);
371
  $skip_check_for_fields = apply_filters ( 'wppb_skip_check_for_fields', $skip_check_for_fields );
372
 
373
  if ( !in_array( trim( $posted_values['field'] ), $skip_check_for_fields ) ){
374
  $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
375
+
376
+ //check to see if meta-name is empty
377
+ $skip_empty_check_for_fields = array('Heading');
378
+
379
+ if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) {
380
+ $message .= __( "The meta-name cannot be empty\n", 'profilebuilder' );
381
+ }
382
+
383
  // Default contact methods were removed in WP 3.6. A filter dictates contact methods.
384
  if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
385
  $unique_meta_name_list[] = 'aim';
436
  $message .= sprintf( __( "The following option did not coincide with the ones in the options list: %s\n", 'profilebuilder' ), $posted_values['default-option'] );
437
  }
438
  // END check for valid default option (checkbox, select, radio)
439
+
440
+ $message = apply_filters( 'wppb_check_extra_manage_fields', $message, $posted_values );
441
+
442
  }elseif ( ( $meta_name == 'wppb_rf_fields' ) || ( $meta_name == 'wppb_epf_fields' ) ){
443
  if ( $posted_values['field'] == '' ){
444
  $message .= __( "You must select a field\n", 'profilebuilder' );
admin/register-version.php CHANGED
@@ -93,7 +93,7 @@ function wppb_check_serial_number($oldVal, $newVal){
93
  $serial_number_set = $newVal;
94
 
95
  $response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial_number_set );
96
-
97
  if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
98
  wppb_update_serial_status($response, 'pro');
99
  wp_clear_scheduled_hook( "check_plugin_updates-profile-builder-pro-update" );
@@ -208,18 +208,21 @@ class wppb_add_notices{
208
 
209
  if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
210
  $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_pro_serial_status', 'empty' );
 
 
211
  } elseif( PROFILE_BUILDER == 'Profile Builder Hobbyist' ) {
212
  $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_hobbyist_serial_status', 'empty' );
 
213
  }
214
 
215
  if ( $wppb_profile_builder_pro_hobbyist_serial_status == 'notFound' || $wppb_profile_builder_pro_hobbyist_serial_status == 'empty' ){
216
- new wppb_add_notices( 'wppb', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s of Profile Builder to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>', 'profilebuilder'), "<a href='admin.php?page=profile-builder-register'>", "</a>", "<a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>", "</a>" ), 'wppb_profile_builder_pro_serial_status' );
217
  }
218
  elseif ( $wppb_profile_builder_pro_hobbyist_serial_status == 'expired' ){
219
- $wppb_notice = new wppb_add_notices( 'wppb', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> licence has expired. <br/>Please %1$sRenew Your Licence%2$s to receive access to automatic updates and support. %3$sPurchase one now%4$s %5$sDismiss%6$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification'>", "</a>" ), 'wppb_profile_builder_pro_serial_status' );
220
  }
221
  elseif( strpos( $wppb_profile_builder_pro_hobbyist_serial_status, 'aboutToExpire' ) === 0 ){
222
  $serial_status_parts = explode( '#', $wppb_profile_builder_pro_hobbyist_serial_status );
223
  $date = $serial_status_parts[1];
224
- new wppb_add_notices( 'wppb', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> serial number is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to receive access to automatic updates and support. %3$sPurchase one now%4$s</p>', 'profilebuilder'), "<a href='admin.php?page=profile-builder-register'>", "</a>", "<a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>", "</a>", $date ), 'wppb_profile_builder_pro_serial_status' );
225
  }
93
  $serial_number_set = $newVal;
94
 
95
  $response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial_number_set );
96
+
97
  if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
98
  wppb_update_serial_status($response, 'pro');
99
  wp_clear_scheduled_hook( "check_plugin_updates-profile-builder-pro-update" );
208
 
209
  if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
210
  $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_pro_serial_status', 'empty' );
211
+ $version = 'pro';
212
+
213
  } elseif( PROFILE_BUILDER == 'Profile Builder Hobbyist' ) {
214
  $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_hobbyist_serial_status', 'empty' );
215
+ $version = 'hobbyist';
216
  }
217
 
218
  if ( $wppb_profile_builder_pro_hobbyist_serial_status == 'notFound' || $wppb_profile_builder_pro_hobbyist_serial_status == 'empty' ){
219
+ new wppb_add_notices( 'wppb', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>', 'profilebuilder'), "<a href='admin.php?page=profile-builder-register'>", "</a>", "<a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-SN-Purchase' target='_blank' class='button-primary'>", "</a>" ), 'wppb_profile_builder_pro_serial_status' );
220
  }
221
  elseif ( $wppb_profile_builder_pro_hobbyist_serial_status == 'expired' ){
222
+ new wppb_add_notices( 'wppb_expired', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/downloads/profile-builder-". $version ."-v2-yearly-renewal/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/profile-builder-".$version."-v2-yearly-renewal/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_expired_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification'>", "</a>" ), 'wppb_profile_builder_pro_serial_status' );
223
  }
224
  elseif( strpos( $wppb_profile_builder_pro_hobbyist_serial_status, 'aboutToExpire' ) === 0 ){
225
  $serial_status_parts = explode( '#', $wppb_profile_builder_pro_hobbyist_serial_status );
226
  $date = $serial_status_parts[1];
227
+ new wppb_add_notices( 'wppb_about_to_expire', 'profile_builder_pro', sprintf( __( '<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/downloads/profile-builder-". $version ."-v2-yearly-renewal/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/profile-builder-".$version."-v2-yearly-renewal/?utm_source=PB&utm_medium=dashboard&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>", "</a>", $date, "<a href='". add_query_arg( 'wppb_about_to_expire_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification'>", "</a>" ), 'wppb_profile_builder_pro_serial_status' );
228
  }
assets/css/style-front-end.css CHANGED
@@ -143,6 +143,11 @@
143
  padding-left:0;
144
  padding-right:0;
145
  }
 
 
 
 
 
146
  .wppb-user-forms ul li,
147
  #wppb-login-wrap p{
148
  overflow:hidden;
143
  padding-left:0;
144
  padding-right:0;
145
  }
146
+
147
+ .wppb-user-forms ul li{
148
+ list-style:none;
149
+ }
150
+
151
  .wppb-user-forms ul li,
152
  #wppb-login-wrap p{
153
  overflow:hidden;
assets/js/jquery-manage-fields-live-change.js CHANGED
@@ -463,24 +463,27 @@ function wppb_display_needed_fields( index, container_name, current_field_select
463
  meta_name = jQuery(this).text();
464
  if( meta_name.indexOf( 'custom_field' ) !== -1 ){
465
  var meta_name = meta_name.replace('custom_field', '' );
466
- /* backwards compatibility check in PB 1.3 meta_name was custom_field_# */
467
  meta_name = meta_name.replace('_', '' );
 
468
  if( isNaN( meta_name ) ){
469
  meta_name = Math.floor((Math.random() * 200) + 100);
470
  }
471
- numbers.push( meta_name );
472
  }
 
473
  });
474
  if( numbers.length > 0 ){
475
- numbers.sort();
476
  numbers.reverse();
477
  meta_number = parseInt(numbers[0])+1;
478
  }
479
  else
480
  meta_number = 1;
481
 
482
- meta_value = 'custom_field'+meta_number;
483
  }
 
484
  jQuery( container_name + ' ' + '#meta-name' ).val( meta_value );
485
  jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', false );
486
  }
463
  meta_name = jQuery(this).text();
464
  if( meta_name.indexOf( 'custom_field' ) !== -1 ){
465
  var meta_name = meta_name.replace('custom_field', '' );
466
+ /* we should have an underscore present in custom_field_# so remove it */
467
  meta_name = meta_name.replace('_', '' );
468
+
469
  if( isNaN( meta_name ) ){
470
  meta_name = Math.floor((Math.random() * 200) + 100);
471
  }
472
+ numbers.push( parseInt(meta_name) );
473
  }
474
+
475
  });
476
  if( numbers.length > 0 ){
477
+ numbers.sort( function(a, b){return a-b} );
478
  numbers.reverse();
479
  meta_number = parseInt(numbers[0])+1;
480
  }
481
  else
482
  meta_number = 1;
483
 
484
+ meta_value = 'custom_field_' + meta_number;
485
  }
486
+
487
  jQuery( container_name + ' ' + '#meta-name' ).val( meta_value );
488
  jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', false );
489
  }
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -344,7 +344,6 @@ class Wordpress_Creation_Kit_PB{
344
 
345
  $form = '';
346
  $form .= '<tr id="update_container_'.$meta.'_'.$element_id.'" ' . $wck_update_container_css_class . '><td colspan="4">';
347
-
348
  if($results != null){
349
  $i = 0;
350
  $form .= '<ul class="mb-list-entry-fields">';
@@ -356,7 +355,7 @@ class Wordpress_Creation_Kit_PB{
356
  $value = $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )];
357
  else
358
  $value = '';
359
-
360
  $form = apply_filters( "wck_before_update_form_{$meta}_element_{$i}", $form, $element_id, $value );
361
 
362
  $form .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'">';
@@ -673,9 +672,9 @@ class Wordpress_Creation_Kit_PB{
673
  $values = $_POST['values'];
674
  else
675
  $values = array();
676
-
677
  $values = apply_filters( "wck_add_meta_filter_values_{$meta}", $values );
678
-
679
  /* check required fields */
680
  $errors = self::wck_test_required( $this->args['meta_array'], $meta, $values, $id );
681
  if( $errors != '' ){
@@ -835,8 +834,10 @@ class Wordpress_Creation_Kit_PB{
835
  check_ajax_referer( "wck-edit-entry" );
836
  $meta = $_POST['meta'];
837
  $id = absint($_POST['id']);
838
- $element_id = $_POST['element_id'];
839
-
 
 
840
  echo self::mb_update_form($this->args['meta_array'], $meta, $id, $element_id);
841
 
842
  do_action( "wck_after_adding_form", $meta, $id, $element_id );
@@ -885,11 +886,11 @@ class Wordpress_Creation_Kit_PB{
885
  if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
886
 
887
  $meta_suffix = 1;
888
-
889
  if( !empty( $results ) ){
890
- foreach( $results as $result ){
891
- foreach ( $result as $name => $value){
892
- update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
893
  }
894
  $meta_suffix++;
895
  }
@@ -1030,33 +1031,32 @@ class Wordpress_Creation_Kit_PB{
1030
 
1031
  function wck_media_send_to_editor($html, $id)
1032
  {
1033
- parse_str($_POST["_wp_http_referer"], $arr_postinfo);
1034
-
1035
- if(isset($arr_postinfo["mb_type"]))
1036
- {
1037
- $file_src = wp_get_attachment_url($id);
1038
- $thumbnail = wp_get_attachment_image( $id, array( 80, 60 ), true );
1039
- $file_name = get_the_title( $id );
1040
-
1041
- if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $id ), $matches ) )
1042
- $file_type = esc_html( strtoupper( $matches[1] ) );
1043
- else
1044
- $file_type = strtoupper( str_replace( 'image/', '', get_post_mime_type( $id ) ) );
1045
-
1046
- ?>
1047
- <script type="text/javascript">
1048
-
1049
- self.parent.window. <?php echo $arr_postinfo["mb_type"];?> .val('<?php echo $id; ?>');
1050
- self.parent.window. <?php echo $arr_postinfo["mb_info_div"];?> .html('<?php echo $thumbnail ?><p><span class="file-name"><?php echo $file_name; ?></span><span class="file-type"><?php echo $file_type; ?></span><span class="wck-remove-upload"><?php _e( 'Remove', 'wck' )?></span></p>');
1051
-
1052
- self.parent.tb_remove();
1053
-
1054
- </script>
1055
- <?php
1056
- exit;
1057
- }
1058
- else
1059
- {
1060
  return $html;
1061
  }
1062
 
344
 
345
  $form = '';
346
  $form .= '<tr id="update_container_'.$meta.'_'.$element_id.'" ' . $wck_update_container_css_class . '><td colspan="4">';
 
347
  if($results != null){
348
  $i = 0;
349
  $form .= '<ul class="mb-list-entry-fields">';
355
  $value = $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )];
356
  else
357
  $value = '';
358
+
359
  $form = apply_filters( "wck_before_update_form_{$meta}_element_{$i}", $form, $element_id, $value );
360
 
361
  $form .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'">';
672
  $values = $_POST['values'];
673
  else
674
  $values = array();
675
+
676
  $values = apply_filters( "wck_add_meta_filter_values_{$meta}", $values );
677
+
678
  /* check required fields */
679
  $errors = self::wck_test_required( $this->args['meta_array'], $meta, $values, $id );
680
  if( $errors != '' ){
834
  check_ajax_referer( "wck-edit-entry" );
835
  $meta = $_POST['meta'];
836
  $id = absint($_POST['id']);
837
+ $element_id = $_POST['element_id'];
838
+
839
+ do_action( "wck_before_adding_form_{$meta}", $id, $element_id );
840
+
841
  echo self::mb_update_form($this->args['meta_array'], $meta, $id, $element_id);
842
 
843
  do_action( "wck_after_adding_form", $meta, $id, $element_id );
886
  if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
887
 
888
  $meta_suffix = 1;
889
+
890
  if( !empty( $results ) ){
891
+ foreach( $results as $result ){
892
+ foreach ( $result as $name => $value){
893
+ update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
894
  }
895
  $meta_suffix++;
896
  }
1031
 
1032
  function wck_media_send_to_editor($html, $id)
1033
  {
1034
+ if( !empty( $_POST["_wp_http_referer"] ) ) {
1035
+ parse_str($_POST["_wp_http_referer"], $arr_postinfo);
1036
+ if (isset($arr_postinfo["mb_type"])) {
1037
+ $file_src = wp_get_attachment_url($id);
1038
+ $thumbnail = wp_get_attachment_image($id, array(80, 60), true);
1039
+ $file_name = get_the_title($id);
1040
+
1041
+ if (preg_match('/^.*?\.(\w+)$/', get_attached_file($id), $matches))
1042
+ $file_type = esc_html(strtoupper($matches[1]));
1043
+ else
1044
+ $file_type = strtoupper(str_replace('image/', '', get_post_mime_type($id)));
1045
+
1046
+ ?>
1047
+ <script type="text/javascript">
1048
+
1049
+ self.parent.window.<?php echo $arr_postinfo["mb_type"];?>.val('<?php echo $id; ?>');
1050
+ self.parent.window.<?php echo $arr_postinfo["mb_info_div"];?>.html('<?php echo $thumbnail ?><p><span class="file-name"><?php echo $file_name; ?></span><span class="file-type"><?php echo $file_type; ?></span><span class="wck-remove-upload"><?php _e( 'Remove', 'wck' )?></span></p>');
1051
+
1052
+ self.parent.tb_remove();
1053
+
1054
+ </script>
1055
+ <?php
1056
+ exit;
1057
+ }
1058
+ }
1059
+ else{
 
1060
  return $html;
1061
  }
1062
 
features/email-confirmation/email-confirmation.php CHANGED
@@ -374,7 +374,8 @@ function wppb_manual_activate_signup( $activation_key ) {
374
  $meta = unserialize( $signup->meta );
375
  $user_login = esc_sql( $signup->user_login );
376
  $user_email = esc_sql( $signup->user_email );
377
- $password = base64_decode( $meta['user_pass'] );
 
378
 
379
  $user_id = username_exists($user_login);
380
 
@@ -402,6 +403,15 @@ function wppb_manual_activate_signup( $activation_key ) {
402
  wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
403
  clean_object_term_cache( $user_id, 'user_status' );
404
  }
 
 
 
 
 
 
 
 
 
405
 
406
  wppb_notify_user_registration_email( get_bloginfo( 'name' ), $user_login, $user_email, 'sending', $password, ( isset( $wppb_general_settings['adminApproval'] ) ? $wppb_general_settings['adminApproval'] : 'no' ) );
407
 
374
  $meta = unserialize( $signup->meta );
375
  $user_login = esc_sql( $signup->user_login );
376
  $user_email = esc_sql( $signup->user_email );
377
+ /* the password is in hashed form in the signup table and we will copy it later to the user */
378
+ $password = NULL;
379
 
380
  $user_id = username_exists($user_login);
381
 
403
  wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
404
  clean_object_term_cache( $user_id, 'user_status' );
405
  }
406
+
407
+ /* copy the hashed password from signup meta to wp user table */
408
+ if( !empty( $meta['user_pass'] ) ){
409
+ /* we might still have the base64 encoded password in signups and not the hash */
410
+ if( base64_encode(base64_decode($meta['user_pass'], true)) === $meta['user_pass'] )
411
+ $meta['user_pass'] = wp_hash_password( $meta['user_pass'] );
412
+
413
+ $wpdb->update( $wpdb->users, array('user_pass' => $meta['user_pass'] ), array('ID' => $user_id) );
414
+ }
415
 
416
  wppb_notify_user_registration_email( get_bloginfo( 'name' ), $user_login, $user_email, 'sending', $password, ( isset( $wppb_general_settings['adminApproval'] ) ? $wppb_general_settings['adminApproval'] : 'no' ) );
417
 
features/functions.php CHANGED
@@ -553,7 +553,7 @@ function wppb_password_strength_check(){
553
  * Create functions for repeating error messages in front-end forms
554
  */
555
  function wppb_required_field_error($field_title='') {
556
- $required_error = __(apply_filters('wppb_required_error' , 'This field is required' , $field_title),'profilebuilder');
557
 
558
  return $required_error;
559
 
@@ -607,3 +607,17 @@ if ( get_option('users_can_register') == false) {
607
  sprintf(__('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', 'profilebuilder'), "<a href='".get_site_url()."/wp-admin/options-general.php'>", "</a>", "<a href='" . add_query_arg('wppb_anyone_can_register_dismiss_notification', '0') . "'>", "</a>"),
608
  'update-nag');
609
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  * Create functions for repeating error messages in front-end forms
554
  */
555
  function wppb_required_field_error($field_title='') {
556
+ $required_error = apply_filters('wppb_required_error' , __('This field is required','profilebuilder') , $field_title);
557
 
558
  return $required_error;
559
 
607
  sprintf(__('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', 'profilebuilder'), "<a href='".get_site_url()."/wp-admin/options-general.php'>", "</a>", "<a href='" . add_query_arg('wppb_anyone_can_register_dismiss_notification', '0') . "'>", "</a>"),
608
  'update-nag');
609
  }
610
+
611
+ /*Filter default WordPress notices ("Post published. Post updated."), add post type name for User Listing, Registration Forms and Edit Profile Forms*/
612
+ function wppb_change_default_post_updated_messages($messages){
613
+ global $post;
614
+ $post_type = get_post_type($post->ID);
615
+ $object = get_post_type_object($post_type);
616
+
617
+ if ( ($post_type == 'wppb-rf-cpt')||($post_type == 'wppb-epf-cpt')||($post_type == 'wppb-ul-cpt') ){
618
+ $messages['post'][1] = $object->labels->name . ' updated.';
619
+ $messages['post'][6] = $object->labels->name . ' published.';
620
+ }
621
+ return $messages;
622
+ }
623
+ add_filter('post_updated_messages','wppb_change_default_post_updated_messages', 2);
features/upgrades/upgrades-functions.php CHANGED
@@ -158,7 +158,8 @@ function wppb_pro_hobbyist_free_v2_0(){
158
  foreach ( $old_custom_fields as $key => $value ) {
159
  $local_array = array();
160
 
161
- $local_array['id'] = ( isset( $value['id'] ) ? trim( $value['id'] ) : '' );
 
162
  $local_array['meta-name'] = ( isset( $value['item_metaName'] ) ? trim( $value['item_metaName'] ) : '' );
163
  $local_array['field-title'] = ( isset( $value['item_title'] ) ? trim( $value['item_title'] ) : '' );
164
  $local_array['description'] = ( isset( $value['item_desc'] ) ? $value['item_desc'] : '' );
@@ -279,7 +280,15 @@ function wppb_pro_hobbyist_free_v2_0(){
279
 
280
  update_option( 'wppb_module_settings', $wppb_module_settings );
281
  }
282
-
 
 
 
 
 
 
 
 
283
  add_option( 'wppb_manage_fields', $backed_up_manage_fields );
284
 
285
 
@@ -507,15 +516,8 @@ function wppb_replace_and_save( $content, $option_name ){
507
  */
508
  function wppb_add_existing_default_fields ( $backed_up_manage_fields = array(), $field, $meta_name, $required, $description = '', $recaptcha_public_key = '', $recaptcha_private_key = '' ){
509
  $local_array = array();
510
-
511
- $id = 0;
512
- foreach ( $backed_up_manage_fields as $key => $value ){
513
- if ( (int)$id < (int)$value['id'] );
514
- $id = $value['id'];
515
- }
516
- $id++;
517
 
518
- $local_array['id'] = $id;
519
  $local_array['field'] = $field;
520
  $local_array['meta-name'] = $meta_name;
521
  $local_array['field-title'] = str_replace( array( 'Default - ', ' (Heading)' ), '', $field );
158
  foreach ( $old_custom_fields as $key => $value ) {
159
  $local_array = array();
160
 
161
+ /* id will be set up at a later point */
162
+ $local_array['id'] = '';
163
  $local_array['meta-name'] = ( isset( $value['item_metaName'] ) ? trim( $value['item_metaName'] ) : '' );
164
  $local_array['field-title'] = ( isset( $value['item_title'] ) ? trim( $value['item_title'] ) : '' );
165
  $local_array['description'] = ( isset( $value['item_desc'] ) ? $value['item_desc'] : '' );
280
 
281
  update_option( 'wppb_module_settings', $wppb_module_settings );
282
  }
283
+
284
+ /* set up ids for each field */
285
+ if( !empty( $backed_up_manage_fields ) ){
286
+ /*make sure we have a 0 based index */
287
+ $backed_up_manage_fields = array_values( $backed_up_manage_fields );
288
+ foreach( $backed_up_manage_fields as $key => $backed_up_manage_field ){
289
+ $backed_up_manage_fields[$key]['id'] = (int)$key + 1;
290
+ }
291
+ }
292
  add_option( 'wppb_manage_fields', $backed_up_manage_fields );
293
 
294
 
516
  */
517
  function wppb_add_existing_default_fields ( $backed_up_manage_fields = array(), $field, $meta_name, $required, $description = '', $recaptcha_public_key = '', $recaptcha_private_key = '' ){
518
  $local_array = array();
 
 
 
 
 
 
 
519
 
520
+ $local_array['id'] = '';
521
  $local_array['field'] = $field;
522
  $local_array['meta-name'] = $meta_name;
523
  $local_array['field-title'] = str_replace( array( 'Default - ', ' (Heading)' ), '', $field );
front-end/class-formbuilder.php CHANGED
@@ -368,7 +368,7 @@ class Profile_Builder_Form_Creator{
368
  $multisite_message = true;
369
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
370
  $userdata['role'] = $this->args['role'];
371
- $userdata['user_pass'] = base64_encode( $userdata['user_pass'] );
372
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
373
 
374
  }else{
@@ -382,7 +382,7 @@ class Profile_Builder_Form_Creator{
382
  $multisite_message = true;
383
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
384
  $userdata['role'] = $this->args['role'];
385
- $userdata['user_pass'] = base64_encode( $userdata['user_pass'] );
386
  $userdata = wp_unslash( $userdata );
387
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
388
  }
@@ -411,7 +411,7 @@ class Profile_Builder_Form_Creator{
411
  $send_credentials_via_email = 'sending';
412
  else
413
  $send_credentials_via_email = '';
414
- wppb_notify_user_registration_email( get_bloginfo( 'name' ), ( isset( $global_request['username'] ) ? trim( $global_request['username'] ) : trim( $global_request['email'] ) ), trim( $global_request['email'] ), $send_credentials_via_email, trim( $global_request['passw1'] ), ( isset( $wppb_general_settings['adminApproval'] ) ? $wppb_general_settings['adminApproval'] : 'no' ) );
415
  }
416
  }
417
  }
368
  $multisite_message = true;
369
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
370
  $userdata['role'] = $this->args['role'];
371
+ $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
372
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
373
 
374
  }else{
382
  $multisite_message = true;
383
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
384
  $userdata['role'] = $this->args['role'];
385
+ $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
386
  $userdata = wp_unslash( $userdata );
387
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
388
  }
411
  $send_credentials_via_email = 'sending';
412
  else
413
  $send_credentials_via_email = '';
414
+ wppb_notify_user_registration_email( get_bloginfo( 'name' ), ( isset( $userdata['user_login'] ) ? trim( $userdata['user_login'] ) : trim( $userdata['user_email'] ) ), trim( $userdata['user_email'] ), $send_credentials_via_email, trim( $userdata['user_pass'] ), ( isset( $wppb_general_settings['adminApproval'] ) ? $wppb_general_settings['adminApproval'] : 'no' ) );
415
  }
416
  }
417
  }
front-end/default-fields/description/description.php CHANGED
@@ -20,7 +20,7 @@ function wppb_description_handler( $output, $form_location, $field, $user_id, $f
20
 
21
  $output = '
22
  <label for="description">'.$item_title.$error_mark.'</label>
23
- <textarea rows="'.$field['row-count'].'" name="description" class="default_field_description" id="description" wrap="virtual">'. esc_textarea( wp_unslash( $input_value ) ).'</textarea>';
24
  if( !empty( $item_description ) )
25
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
26
 
20
 
21
  $output = '
22
  <label for="description">'.$item_title.$error_mark.'</label>
23
+ <textarea rows="'.$field['row-count'].'" name="description" maxlength="'. apply_filters( 'wppb_maximum_character_length', '', $field ) .'" class="default_field_description" id="description" wrap="virtual">'. esc_textarea( wp_unslash( $input_value ) ).'</textarea>';
24
  if( !empty( $item_description ) )
25
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
26
 
front-end/register.php CHANGED
@@ -54,7 +54,8 @@ function wppb_activate_signup( $key ) {
54
  $user_login = ( ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) ? trim( $signup->user_email ) : trim( $signup->user_login ) );
55
 
56
  $user_email = esc_sql( $signup->user_email );
57
- $password = base64_decode( $meta['user_pass'] );
 
58
 
59
  $user_id = username_exists( $user_login );
60
 
@@ -83,6 +84,15 @@ function wppb_activate_signup( $key ) {
83
 
84
  if ( !isset( $wppb_generalSettings['adminApproval'] ) )
85
  $wppb_generalSettings['adminApproval'] = 'no';
 
 
 
 
 
 
 
 
 
86
 
87
  wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, $wppb_generalSettings['adminApproval']);
88
 
54
  $user_login = ( ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) ? trim( $signup->user_email ) : trim( $signup->user_login ) );
55
 
56
  $user_email = esc_sql( $signup->user_email );
57
+ /* the password is in hashed form in the signup table so we will add it later */
58
+ $password = NULL;
59
 
60
  $user_id = username_exists( $user_login );
61
 
84
 
85
  if ( !isset( $wppb_generalSettings['adminApproval'] ) )
86
  $wppb_generalSettings['adminApproval'] = 'no';
87
+
88
+ /* copy the hashed password from signup meta to wp user table */
89
+ if( !empty( $meta['user_pass'] ) ){
90
+ /* we might still have the base64 encoded password in signups and not the hash */
91
+ if( base64_encode(base64_decode($meta['user_pass'], true)) === $meta['user_pass'] )
92
+ $meta['user_pass'] = wp_hash_password( $meta['user_pass'] );
93
+
94
+ $wpdb->update( $wpdb->users, array('user_pass' => $meta['user_pass'] ), array('ID' => $user_id) );
95
+ }
96
 
97
  wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, $wppb_generalSettings['adminApproval']);
98
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://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.0.5
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
@@ -24,133 +24,159 @@ along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
- /**
28
- * Convert memory value from ini file to a readable form
29
- *
30
- * @since v.1.0
31
- *
32
- * @return integer
33
- */
34
- function wppb_return_bytes( $val ) {
35
- $val = trim( $val );
36
-
37
- switch( strtolower( $val[strlen( $val )-1] ) ) {
38
- // The 'G' modifier is available since PHP 5.1.0
39
- case 'g':
40
- $val *= 1024;
41
- case 'm':
42
- $val *= 1024;
43
- case 'k':
44
- $val *= 1024;
45
- }
46
-
47
- return $val;
48
- }
49
-
50
- /**
51
- * Definitions
52
- *
53
- *
54
- */
55
- define( 'PROFILE_BUILDER_VERSION', '2.0.5' );
56
- define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
57
- define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
58
- define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters( 'wppb_server_max_upload_size_byte_constant', wppb_return_bytes( ini_get( 'upload_max_filesize') ) ) );
59
- define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters( 'wppb_server_max_upload_size_mega_constant', ini_get( 'upload_max_filesize') ) );
60
- define( 'WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters( 'wppb_server_max_post_size_byte_constant', wppb_return_bytes( ini_get( 'post_max_size') ) ) );
61
- define( 'WPPB_SERVER_MAX_POST_SIZE_MEGA', apply_filters( 'wppb_server_max_post_size_mega_constant', ini_get( 'post_max_size') ) );
62
- define( 'WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR.'/translation' );
63
- define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' );
64
-
65
- /* include notices class */
66
- if ( file_exists ( WPPB_PLUGIN_DIR.'/assets/lib/class_notices.php' ) )
67
- include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php' );
68
-
69
- if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) )
70
- define( 'PROFILE_BUILDER', 'Profile Builder Pro' );
71
- elseif ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/extra-fields/extra-fields.php' ) )
72
- define( 'PROFILE_BUILDER', 'Profile Builder Hobbyist' );
73
- else
74
- define( 'PROFILE_BUILDER', 'Profile Builder Free' );
75
-
76
- /**
77
- * Initialize the translation for the Plugin.
78
- *
79
- * @since v.1.0
80
- *
81
- * @return null
82
- */
83
- function wppb_init_translation(){
84
- load_plugin_textdomain( 'profilebuilder', false, basename( dirname( __FILE__ ) ) . '/translation/' );
85
- }
86
- add_action( 'init', 'wppb_init_translation', 8);
87
-
88
-
89
- /**
90
- * Required files
91
- *
92
- *
93
- */
94
- include_once( WPPB_PLUGIN_DIR.'/assets/lib/wck-api/wordpress-creation-kit.php' );
95
- include_once( WPPB_PLUGIN_DIR.'/features/upgrades/upgrades.php' );
96
- include_once( WPPB_PLUGIN_DIR.'/features/functions.php' );
97
- include_once( WPPB_PLUGIN_DIR.'/admin/admin-functions.php' );
98
- include_once( WPPB_PLUGIN_DIR.'/admin/basic-info.php' );
99
- include_once( WPPB_PLUGIN_DIR.'/admin/general-settings.php' );
100
- include_once( WPPB_PLUGIN_DIR.'/admin/admin-bar.php' );
101
- include_once( WPPB_PLUGIN_DIR.'/admin/manage-fields.php' );
102
- include_once( WPPB_PLUGIN_DIR.'/features/email-confirmation/email-confirmation.php' );
103
- include_once( WPPB_PLUGIN_DIR.'/features/email-confirmation/class-email-confirmation.php' );
104
- if ( file_exists ( WPPB_PLUGIN_DIR.'/features/admin-approval/admin-approval.php' ) ) {
105
- include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php');
106
- include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/class-admin-approval.php');
107
- }
108
- include_once( WPPB_PLUGIN_DIR.'/features/login-widget/login-widget.php' );
109
-
110
- if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ){
111
- include_once ( WPPB_PLUGIN_DIR.'/update/update-checker.php' );
112
- include_once ( WPPB_PLUGIN_DIR.'/admin/register-version.php' );
113
- }
114
-
115
- if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) ){
116
- include_once ( WPPB_PLUGIN_DIR.'/modules/modules.php' );
117
- include_once ( WPPB_PLUGIN_DIR.'/modules/custom-redirects/custom-redirects.php' );
118
- include_once ( WPPB_PLUGIN_DIR.'/modules/email-customizer/email-customizer.php' );
119
- include_once ( WPPB_PLUGIN_DIR.'/modules/multiple-forms/multiple-forms.php' );
120
-
121
- $wppb_module_settings = get_option( 'wppb_module_settings' );
122
- if ( isset( $wppb_module_settings['wppb_userListing'] ) && ( $wppb_module_settings['wppb_userListing'] == 'show' ) ){
123
- include_once ( WPPB_PLUGIN_DIR.'/modules/user-listing/userlisting.php' );
124
- add_shortcode( 'wppb-list-users', 'wppb_user_listing_shortcode' );
125
- }else
126
- add_shortcode( 'wppb-list-users', 'wppb_list_all_users_display_error' );
127
-
128
- if ( isset( $wppb_module_settings['wppb_emailCustomizerAdmin'] ) && ( $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) )
129
- include_once ( WPPB_PLUGIN_DIR.'/modules/email-customizer/admin-email-customizer.php' );
130
-
131
- if ( isset( $wppb_module_settings['wppb_emailCustomizer'] ) && ( $wppb_module_settings['wppb_emailCustomizer'] == 'show' ) )
132
- include_once ( WPPB_PLUGIN_DIR.'/modules/email-customizer/user-email-customizer.php' );
133
- }
134
-
135
-
136
- /**
137
- * Check for updates
138
- *
139
- *
140
- */
141
- if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ){
142
- if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) ){
143
- $localSerial = get_option( 'wppb_profile_builder_pro_serial' );
144
- $wppb_update = new wppb_PluginUpdateChecker( 'http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=CLPBP', __FILE__, 'profile-builder-pro-update' );
145
-
146
- }else{
147
- $localSerial = get_option( 'wppb_profile_builder_hobbyist_serial' );
148
- $wppb_update = new wppb_PluginUpdateChecker( 'http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=CLPBH', __FILE__, 'profile-builder-hobbyist-update' );
149
- }
150
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
 
152
 
153
  // these settings are important, so besides running them on page load, we also need to do a check on plugin activation
154
- register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' ); //prepoulate general settings
155
- register_activation_hook( __FILE__, 'wppb_prepopulate_fields' ); //prepopulate manage fields list
156
 
 
 
 
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://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.0.6
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
+ /* Check if another version of Profile Builder is activated, to prevent fatal errors*/
28
+ function wppb_plugin_init() {
29
+ if (function_exists('wppb_return_bytes')) {
30
+ function wppb_admin_notice()
31
+ {
32
+ ?>
33
+ <div class="error">
34
+ <p><?php _e( PROFILE_BUILDER . ' is also activated. You need to deactivate it before activating this version of the plugin.', 'profilebuilder'); ?></p>
35
+ </div>
36
+ <?php
37
+ }
38
+ function wppb_plugin_deactivate() {
39
+ deactivate_plugins( plugin_basename( __FILE__ ) );
40
+ unset($_GET['activate']);
41
+ }
42
+
43
+ add_action('admin_notices', 'wppb_admin_notice');
44
+ add_action( 'admin_init', 'wppb_plugin_deactivate' );
45
+ } else {
46
+
47
+ /**
48
+ * Convert memory value from ini file to a readable form
49
+ *
50
+ * @since v.1.0
51
+ *
52
+ * @return integer
53
+ */
54
+ function wppb_return_bytes($val)
55
+ {
56
+ $val = trim($val);
57
+
58
+ switch (strtolower($val[strlen($val) - 1])) {
59
+ // The 'G' modifier is available since PHP 5.1.0
60
+ case 'g':
61
+ $val *= 1024;
62
+ case 'm':
63
+ $val *= 1024;
64
+ case 'k':
65
+ $val *= 1024;
66
+ }
67
+
68
+ return $val;
69
+ }
70
+
71
+ /**
72
+ * Definitions
73
+ *
74
+ *
75
+ */
76
+ define('PROFILE_BUILDER_VERSION', '2.0.6' );
77
+ define('WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname(plugin_basename(__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'))));
80
+ define('WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters('wppb_server_max_upload_size_mega_constant', ini_get('upload_max_filesize')));
81
+ define('WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters('wppb_server_max_post_size_byte_constant', wppb_return_bytes(ini_get('post_max_size'))));
82
+ define('WPPB_SERVER_MAX_POST_SIZE_MEGA', apply_filters('wppb_server_max_post_size_mega_constant', ini_get('post_max_size')));
83
+ define('WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR . '/translation');
84
+ define('WPPB_TRANSLATE_DOMAIN', 'profilebuilder');
85
+
86
+ /* include notices class */
87
+ if (file_exists(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php'))
88
+ include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php');
89
+
90
+ if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php'))
91
+ define('PROFILE_BUILDER', 'Profile Builder Pro');
92
+ elseif (file_exists(WPPB_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php'))
93
+ define('PROFILE_BUILDER', 'Profile Builder Hobbyist');
94
+ else
95
+ define('PROFILE_BUILDER', 'Profile Builder Free');
96
+
97
+ /**
98
+ * Initialize the translation for the Plugin.
99
+ *
100
+ * @since v.1.0
101
+ *
102
+ * @return null
103
+ */
104
+ function wppb_init_translation()
105
+ {
106
+ load_plugin_textdomain('profilebuilder', false, basename(dirname(__FILE__)) . '/translation/');
107
+ }
108
+
109
+ add_action('init', 'wppb_init_translation', 8);
110
+
111
+
112
+ /**
113
+ * Required files
114
+ *
115
+ *
116
+ */
117
+ include_once(WPPB_PLUGIN_DIR . '/assets/lib/wck-api/wordpress-creation-kit.php');
118
+ include_once(WPPB_PLUGIN_DIR . '/features/upgrades/upgrades.php');
119
+ include_once(WPPB_PLUGIN_DIR . '/features/functions.php');
120
+ include_once(WPPB_PLUGIN_DIR . '/admin/admin-functions.php');
121
+ include_once(WPPB_PLUGIN_DIR . '/admin/basic-info.php');
122
+ include_once(WPPB_PLUGIN_DIR . '/admin/general-settings.php');
123
+ include_once(WPPB_PLUGIN_DIR . '/admin/admin-bar.php');
124
+ include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php');
125
+ include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php');
126
+ include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php');
127
+ if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) {
128
+ include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php');
129
+ include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/class-admin-approval.php');
130
+ }
131
+ include_once(WPPB_PLUGIN_DIR . '/features/login-widget/login-widget.php');
132
+
133
+ if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) {
134
+ include_once(WPPB_PLUGIN_DIR . '/update/update-checker.php');
135
+ include_once(WPPB_PLUGIN_DIR . '/admin/register-version.php');
136
+ }
137
+
138
+ if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) {
139
+ include_once(WPPB_PLUGIN_DIR . '/modules/modules.php');
140
+ include_once(WPPB_PLUGIN_DIR . '/modules/custom-redirects/custom-redirects.php');
141
+ include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/email-customizer.php');
142
+ include_once(WPPB_PLUGIN_DIR . '/modules/multiple-forms/multiple-forms.php');
143
+
144
+ $wppb_module_settings = get_option('wppb_module_settings');
145
+ if (isset($wppb_module_settings['wppb_userListing']) && ($wppb_module_settings['wppb_userListing'] == 'show')) {
146
+ include_once(WPPB_PLUGIN_DIR . '/modules/user-listing/userlisting.php');
147
+ add_shortcode('wppb-list-users', 'wppb_user_listing_shortcode');
148
+ } else
149
+ add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
150
+
151
+ if (isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && ($wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show'))
152
+ include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/admin-email-customizer.php');
153
+
154
+ if (isset($wppb_module_settings['wppb_emailCustomizer']) && ($wppb_module_settings['wppb_emailCustomizer'] == 'show'))
155
+ include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/user-email-customizer.php');
156
+ }
157
+
158
+
159
+ /**
160
+ * Check for updates
161
+ *
162
+ *
163
+ */
164
+ if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) {
165
+ if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) {
166
+ $localSerial = get_option('wppb_profile_builder_pro_serial');
167
+ $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBP', __FILE__, 'profile-builder-pro-update');
168
+
169
+ } else {
170
+ $localSerial = get_option('wppb_profile_builder_hobbyist_serial');
171
+ $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBH', __FILE__, 'profile-builder-hobbyist-update');
172
+ }
173
+ }
174
 
175
 
176
  // these settings are important, so besides running them on page load, we also need to do a check on plugin activation
177
+ register_activation_hook(__FILE__, 'wppb_generate_default_settings_defaults'); //prepoulate general settings
178
+ register_activation_hook(__FILE__, 'wppb_prepopulate_fields'); //prepopulate manage fields list
179
 
180
+ }
181
+ } //end wppb_plugin_init
182
+ add_action( 'plugins_loaded', 'wppb_plugin_init' );
readme.txt CHANGED
@@ -2,11 +2,11 @@
2
 
3
  Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
4
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
5
- Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms
6
 
7
  Requires at least: 3.1
8
  Tested up to: 4.0
9
- Stable tag: 2.0.5
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
@@ -19,7 +19,7 @@ giving them a more flexible way to modify their user profile or register new use
19
  Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
20
 
21
  To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
22
- Now all you need to do is add the following shortcode(for the previous example): [wppb-edit-profile].
23
  Publish the page and you are done!
24
 
25
  = Front-end User Registration, Login, Edit Profile and Password Recovery Shortcodes =
@@ -36,14 +36,17 @@ Users with administrator rights have access to the following features:
36
  * enable **Email Confirmation** (on registration users will receive a notification to confirm their email address).
37
  * allow users to **Log-in with their Username or Email**
38
  * enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
39
- * assign users a specific role at registration (using [wppb-register role="desired_role"] shortcode )
 
 
 
40
  * add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin.
41
  * chose which user roles view the admin bar in the front-end of the website (Admin Bar Settings page).
42
  * select which profile fields users can see/modify.
43
 
44
  **PROFILE BUILDER PRO**
45
 
46
- The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/) has the following extra features:
47
 
48
  * Create Extra User Fields (Heading, Input, Hidden-Input, Checkbox, Agree to Terms Checkbox, Radio Buttons, DatePicker, Textareas, reCAPTCHA, Upload fields, Selects, Country Selects, Timezone selects, Avatar Upload)
49
  * Add Avatar Upload for users
@@ -59,9 +62,7 @@ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/) has the
59
  * Access to support forums and documentation
60
  * 1 Year of Updates / Priority Support
61
 
62
- [Click here to find out more](http://www.cozmoslabs.com/wordpress-profile-builder/) or watch the video below:
63
-
64
- [youtube http://www.youtube.com/watch?v=Uv8piGapOoA]
65
 
66
  NOTE:
67
 
@@ -100,8 +101,18 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
100
  7. User Login Page
101
  8. Edit User Profile Page
102
  9. Recover Password Page
 
103
 
104
  == Changelog ==
 
 
 
 
 
 
 
 
 
105
  = 2.0.5 =
106
  * Added notification to enable user registration via Profile Builder (Anyone can register checkbox).
107
  * Add register_url and lostpassword_url parameters to login shortcode.
2
 
3
  Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
4
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
5
+ Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, login redirect, login widget, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms
6
 
7
  Requires at least: 3.1
8
  Tested up to: 4.0
9
+ Stable tag: 2.0.6
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
19
  Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
20
 
21
  To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
22
+ Now all you need to do is add the following shortcode: [wppb-edit-profile].
23
  Publish the page and you are done!
24
 
25
  = Front-end User Registration, Login, Edit Profile and Password Recovery Shortcodes =
36
  * enable **Email Confirmation** (on registration users will receive a notification to confirm their email address).
37
  * allow users to **Log-in with their Username or Email**
38
  * enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
39
+ * assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument)
40
+ * redirect users after login (using **[wppb-login redirect="www.example.com"]** shortcode argument)
41
+ * add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
42
+ * customizable login widget
43
  * add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin.
44
  * chose which user roles view the admin bar in the front-end of the website (Admin Bar Settings page).
45
  * select which profile fields users can see/modify.
46
 
47
  **PROFILE BUILDER PRO**
48
 
49
+ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=plugin-description-page&utm_campaign=PBFree) has the following extra features:
50
 
51
  * Create Extra User Fields (Heading, Input, Hidden-Input, Checkbox, Agree to Terms Checkbox, Radio Buttons, DatePicker, Textareas, reCAPTCHA, Upload fields, Selects, Country Selects, Timezone selects, Avatar Upload)
52
  * Add Avatar Upload for users
62
  * Access to support forums and documentation
63
  * 1 Year of Updates / Priority Support
64
 
65
+ [Find out more about Profile Builder PRO](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=plugin-description-page&utm_campaign=PBFree)
 
 
66
 
67
  NOTE:
68
 
101
  7. User Login Page
102
  8. Edit User Profile Page
103
  9. Recover Password Page
104
+ 10. Profile Builder Login Widget
105
 
106
  == Changelog ==
107
+ = 2.0.6 =
108
+ * Fixed a bug with checkbox field that didn't pass the required if the value of the checkbox contained spaces
109
+ * When email confirmation is enabled we no longer can send the selected password via email because we now store the hased password inside wp-signups table and not a encoded version of it. This was done to improve security
110
+ * Fixed problem that was causing "Insert into post" image button not to work
111
+ * Fixed Fatal error when having both Free and Premium versions activated.
112
+ * Removing the meta name for extra fields is no longer possible
113
+ * Added translation files
114
+
115
+
116
  = 2.0.5 =
117
  * Added notification to enable user registration via Profile Builder (Anyone can register checkbox).
118
  * Add register_url and lostpassword_url parameters to login shortcode.
screenshot-10.png ADDED
Binary file
translation/profilebuilder-fr_FR.mo ADDED
Binary file
translation/profilebuilder-fr_FR.po ADDED
@@ -0,0 +1,2573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in French (France)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-03 07:27:09+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "Afficher/masquer la barre Admin sur l'interface cliente"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "Paramètres de la barre Admin"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "Rôles utilisateurs"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "Visibilité"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "Par défaut"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "Afficher"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "Masquer"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "Enregistrer les modifications"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface cliente! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "Paramètres Généraux"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "Très faible"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "Faible"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "Moyen"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "Fort"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "Ajouter un Champ"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "Enregistrer les Paramètres"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "Informations de base"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "Version %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "Le meilleur moyen d'ajouter une inscription via l'interface cliente, de modifier un profil et des formulaires de connexion."
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "Pour une Interaction Utilisateur Moderne"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "Identification"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "Une identification sans friction via le shortcode <strong class=\"nowrap\">[wppb-login]</strong> ou un widget."
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "Inscription"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "De jolis formulaires d'inscription totalement personnalisable en utilisant le shortcode <strong class=\"nowrap\">[wppb-register]</strong>."
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "Modifier le Profil"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "Des formulaires simples de modification de profil en utilisant le shortcode <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "Fonctionnalités Supplémentaires"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "Des fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs."
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "Activer les fonctionnalités supplémentaires"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "Récupérer le Mot De Passe"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "Autoriser les utilisateurs à récupérer leur mot de passe sur l'interface cliente en utilisant le shortcode [wppb-recover-password]."
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "Approbation par l'Admin"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "Confirmation de l'adresse de messagerie"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "S'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie."
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "Bien commencer avec les champs supplémentaires"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "Téléversement d'avatar"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "Téléversements Génériques"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "Acceptation des conditions par une case à cocher"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "Outil de sélection de date"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "Sélection du Pays"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "Sélection du Fuseau Horaire"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "Entrée visible / Entrée cachée"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "Case à cocher"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "Liste déroulante"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "Boutons Radio"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "Zone de Texte"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "Des Modules Puissants (**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "Activer vos modules"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "Découvrez les Modules PRO"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "Listing d'utilisateurs"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "Facile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings."
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "Pour créer une page contenant les utilisateurs inscrit sur ce site/blog, insérez le shortcode suivant dans la page de votre choix: <strong class=\"nowrap\">[wppb-list-users]</strong>."
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "Outil de personnalisation d'e-mails"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "Personnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs."
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "Redirections personnalisées"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'acceuil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques cliques."
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "Formulaires Multiples d'Inscription"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs."
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "Formulaires Multiples de Modification de Profil"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "Autorisez différents rôles utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des forumlaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** disponible uniquement dans la version %1$sPro %2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "Oui"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"Confirmation par e-mail\" Activée:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "Non"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "Sur les installations pour un seu site, ceci fonctionne uniquement avec les formulaires d'interface cliente. Il est recommandé de redirigé l'inscription WP par défaut vers celle de Profile Builder en utilisant le module \"Redirections Personnalisées\"."
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "La fonctionnalité \"Confirmation de l'adresse de messagerie\" est active (par défaut) sur les installations WPMU."
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "Pages Existantes"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "Spécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur."
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"Approbation par l'Admin\" Activée:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "Fonctionnalité \"Approbation par l'Admin\":"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s."
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "Permet aux utilisateurs à se connecter avec:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "Nom d'utilisateur"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "Adresse de messagerie"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "Longueur Minimale du Mot De Passe:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimale"
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "Sûreté Minimale du Mot De Passe:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "Désactivé"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "Gérez les Champs"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "Gérez les Champs Par Défaut et les Champs Supplémentaires"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "Titre du Champ"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "Titre du champ"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "Champ"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Meta-nom"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "Utilisez ceci en lien avec les fonctions WordPress pour afficher la valeur dans la page de votre choix<br/>Automatiquement rempli mais dans certains cas modifiable (dans ce cas il doit être unique)<br/>Toute modification pourrait prendre du temps s'il le compteur utilisateur est très grand"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "ID"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "Un unique identifiant, généré automatiquement, pour ce champ particulier<br/>Vous pouvez utilisater ceci en lien avec les filtres pour cibler cet élément si besoin<br/>Ne peut être modifié"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "Description"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire<br/>Optionnel"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "Nombre de Lignes"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "Spécifiez les nombre de lignes pour un champ 'Zone de Texte'<br/>Si vous ne spécifiez pas de champ, la valeur par défaut sera de 5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "Extensions Autorisées des Images"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions d'image seront autorisées par défaut (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "Extensions Autorisées au Téléversement"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions seront autorisées par défaut (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "Taille de l'Avatar"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera de 100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "Format de la date"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "Spécifiez le format de la date lorsque vous utilisez l'outil de sélection de dates<br/>Options valides: mm/jj/aa, mm/aa/jj, jj/aa/mm, jj/mm/aa, aa/jj/mm, aa/mm/jj<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera mm/jj/aa"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "Conditions Générales"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "Entrez une description détaillée des conditions générales que l'utilisateur pourra lire.<br/>Vous pouvez utiliser des liens via la syntaxe standard HTML: &lt;a href=\"url_personnalisee\"&gt;texte_personnalise&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "Options"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "Labels"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "Entrez une liste de labels séparés par une virgule<br/>Visible par l'utilisateur"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "Clé Publique"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "La clé publique de Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "Clé Privée"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "La clé privée de Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "Valeur Par Défaut"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "Valeur par défaut du champ"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "Option Par Défaut"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "Option(s) Par Défaut"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "Spécifiez l'option qui devrait être cochée par défaut<br/>S'il y a plusieurs valeurs, séparez-les par une ',' (virgule)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "Contenu Par Défaut"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "Valeur par défaut de la zone de texte"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "Obligatoire"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "Si le champ est obligatoire ou pas"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "Ecraser l'existant"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui ait le même méta-nom<br/>Utilisez ceci à vos risques et périls"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "Propriétés du Champ"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "Inscription & Modification de Profil"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "Nom"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr "Les noms d'utillisateur ne peuvent pas être modifiés."
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "Prénom"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "Nom de famille"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "Pseudonyme"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "Nom publique"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "Informations de contact"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "Adresse de messagerie"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "Site web"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "Yahoo IM"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "A propos de vous"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "Informations biographiques"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "Partagez quelques informations biographiques pour compléter votre profile. Ceci peut être affiché publiquement."
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "Mot de passe"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "Tapez votre mot de passe."
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "Répétez votre mot de passe"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "Re-tapez votre mot de passe."
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "Vous devez sélectionner un champ\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "La taille de l'avatar n'est pas une valeur numérique\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "Le chiffre de la ligne n'est pas numérique\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "Vous devez entrer une valeur pour le chiffre de la ligne\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "Vous devez entrer la clé publique\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "Vous devez entrer la clé privée\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "Vous devez entrer une valeur de formattage de date\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "Le meta-nom est déjà utilisé\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "Editer"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "Supprimer"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "Si vous êtes intéressé pour afficher différents champs dans les formulaires d'inscription et de modification de profile, merci d'utiliser l'extension Formulaires d'Inscriptions Multiples & de Modification de Profile."
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "Enregistrez Votre Version"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "Enregistrez la Version"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant des mises à jours, des correctifs et le support technique."
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "Numéro de Série:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "Le numéro de série a bien été validé!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "Le numéro de série entré n'a pas pu être validé!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "Le numéro de série n'a pas pu être validé car il a expiré!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "Contenu"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "Modifier cet élément"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "Supprimer cet élément"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "Merci d'entrer une valeur pour le champ obligatoire"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "Sélectionner un fichier"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "Supprimer"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "Synchroniser WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "Synchroniser la traduction WCK"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "Téléverser"
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "Aucun élément trouvé."
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "Actions Groupées"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "Appliquer"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "Afficher toutes les dates"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "Vue par liste"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "Vue par extrait"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s en attente"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s de %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "Tout Sélectionner"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été supprimé!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "La validation de l'utilisateur a échoué - la pièce jointe n'a pas été supprimée!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "Indicateur de sûreté"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "Longueur minimale de "
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "Approbation par l'Admin"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "Voulez-vous"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "Votre session a expirée! Merci de rafraîchir la page et de ré-essayer"
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "L'utilisateur a bien été approuvé!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "L'utilisateur a bien été refusé!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "L'utilisateur a bien été supprimé!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "Votre session a expiré! Merci de rafraîchir la page et de ré-essayer."
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "Les utilisateurs ont bien été approuvés!"
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "Les utilisateurs ont bien été refusés!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "Les utilisateurs ont bien été supprimés!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "Votre compte sur %1$s a été approuvé!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "approuvé"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)."
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "Votre compte sur %1$s a été refusé!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "refusé"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)."
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>ERREUR</strong>: Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter."
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"."
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "Voir ou Modifier"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "supprimer cet utilisateur?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "refuser cet utilisateur?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "Refuser"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "approuver cet utilisateur?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "Approuver"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "Prénom"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "Nom de famille"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "Rôle"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "Inscrit"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "Statut de l'utilisateur"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "Désolé, mais vous n'avez pas la permission de faire cela!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "Approuvé"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "Refusé"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "Tous les Utilisateurs"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "supprimer cet utilisateur de la table _signups ?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "confirmer cette adresse de messagerie vous-même?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "Confirmer l'adresse de messagerie"
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "ré-envoyer le lien d'activation?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "Ré-envoyer l'e-mail d'activation"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s n'a pas pu être supprimé"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "Tous les utilisateurs ont bien été supprimés"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "L'utilisateur sélectionné a bien été activé"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "Il y a eu une erreur lors de la réalisation de cette action!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "L'utilisateur sélectionné n'a pas pu être supprimé"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] Activer %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "Pour activer votre utilisateur, merci de cliquer sur le lien suivant:\n"
1269
+ "\n"
1270
+ "%s%s%s\n"
1271
+ "\n"
1272
+ "Après l'avoir activé, vous recevrez un *autre e-mail* avec votre identifiant."
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "L'utilisateur n'a pas pu être créé!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "Ce nom d'utilisateur est déjà activé!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "Un nouvel adhérent a (été) enregistré!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "Nouvel adhérent sur %1$s.<br/><br/>Nom d'utilisateur:%2$s<br/>E-mail:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "La fonctionnalité \"Approbation Admin\" était activée au moment de l'inscription, donc merci de vous souvenir que vous devez approuver cet utilisateur avant qu'il/elle puisse se connecter!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] Nouvelles informations à propos de votre compte"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "Bienvenue sur %1$s!<br/><br/><br/>Votre nom d'utilisateur est:%2$s et votre mot de passe:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "Votre compte doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale."
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Profile Builder Login Widget"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "S'inscrire"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "Titre:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "URL de redirection après connexion (optionnel):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "URL de la pagge d'inscription (optionnel):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "URL de la page de ré-initialisation du mot de passe (optionnel):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "Les noms d'utilisateur ne peuvent pas être changés."
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "Merci d'utiliser de ne pas re-créer de compte si vous en avez déjà un."
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "Vous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "Se déconnecter de ce compte."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "Se déconnecter"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "Vous devez être connecté pour modifier votre profile."
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "ici"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus d'%1$d secondes, merci de cliquer sur %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "Votre compte %1s a bien été créé!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation."
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "Votre profile a bien été mis à jour!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "Il y avait une erreur dans le formulaire que vous avez soumis"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "Ajouter un Utilisateur"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "Mettre à jour"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "L'avatar a bien été supprimé!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "La pièce jointe suivante a bien été supprimée:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "Envoyer ces identifiants par e-mail."
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "ERREUR"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "Le mot de passe que vous avez entré n'est pas correct."
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "Mot de passe perdu et retrouvé."
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "Mot de passe perdu"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "Les deux champs sont vides."
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "Vous êtes actuellement connecté en tant que %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "Se déconnecter de ce compte"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "Se déconnecter"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "Votre compte a été confirmé par un administrateur avant que vous puissiez utilisater la fonctionnalité \"Ré-initialisation du mot de passe\"."
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "Ré-initialiser le mot de passe"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie."
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "Vous recevrez un lien par e-mail pour créer un nouveau mot de passe."
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "Nom d'utilisateur ou adresse de messagerie."
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "Ré-initialiser votre mot de passe"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "Le nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "Merci de vérifier que vous avez entré un nom d'utilisateur correct."
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "Merci de consulter votre boite de réception pour le lien d'activation."
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "Quelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: <b>%1$s</b><br/>Si c'était une erreur, ignorez simplement cet e-mail et il ne se passera rien.<br/>Pour ré-initialiser votre mot de passe, cliquez sur le lien suivant:%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "Mot de passe ré-initialisé de \"%1$s\""
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "L'adresse de messagerie entrée n'a pas été trouvée dans la base de données!"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "Merci de vérifier que vous avez entré une adresse de messagerie correcte."
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>Le mot de passe doit avoir une longueur minimale de "
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>Le mot de passe doit avoir une sûreté minimale de "
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "Votre mot de passe a bien été changé!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "Vous avec bien ré-initialisé votre mot de passe pour: %1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "Mot de passe bien ré-initialisé pour %1$s sur \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s a demandé un changement de mot de passe via la fonctionnalité de ré-initialisation du mot de passe. <br/>Son nouveau mot de passe est:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "Les mots de passe entrés sont différents!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "ERREUR:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "Clé incorrecte!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "Clé d'activation incorrecte!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "Ce nom d'utilisateur est désormais actif!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "Ce nom d'utilisateur est déjà activé!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "Votre adresse de messagerie a bien été confirmée."
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "Il y a eu une erreur lors de l'activation de cet utilisateur."
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide."
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "Cette adresse de messagerie est déjà réservée et sera bientôt utilisée."
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "Merci d'en essayer un autre!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "Cette adresse de messagerie est déjà utilisée."
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "Les mots de passe sont différents"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "Ce nom d'utilisateur existe déjà."
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé."
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "taille maximale de téléversement"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "Avatar actuel: aucun avatar téléversé"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "Avatar"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "Cliquez pour voir l'avatar actuel"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "L'avatar n'a pas pu être supprimé (il a été marqué comme obligatoire par l'administrateur)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "Êtes-vous sûr de vouloir supprimer cet avatar?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "Cliquez pour supprimer l'avatar actuel"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "obligatoire"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "Avatar actuel"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "Aucun avatar téléversé"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "L'extension du fichier ne correspond pas"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "Le fichier téléversé dépasse la directive upload_max_filesize dans php.ini"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "Le fichier téléversé dépasse la directive MAX_FILE_SIZE dans php.ini"
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "Le fichier n'a pu qu'être partiellement téléversé"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "Aucun fichier n'a été sélectionné"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "Le dossier temporaire de téléversement n'existe pas sur le système"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "L'écriture du fichier sur le disque a échoué"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "Une extension PHP a arrêté le téléversement du fichier"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "Une erreur inconnue s'est produite"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "Le socket n'a pas pu être ouvert!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé d'API de"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez avoir installé le module php mcrypt!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez vous inscrire pour avoir une clé publique et une clé privés; vous pouvez le faire sur"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé privée de:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "Fichier actuel: aucune pièce jointe téléversée"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "Fichier actuel"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "Cliquez pour voir la pièce jointe actuelle"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "La pièce jointe n'a pas pu être supprimée (elle est marquée comme obligatoire par l'administrateur)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "Êtes-vous sûr de vouloir supprimer cette pièce jointe?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "Cliquer pour supprimer la pièce jointe actuelle"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "Pas de pièce jointe téléversée"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "L'extension du fichier n'est pas autorisée"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "Le fichier n'a pu qu'être partiellement téléversé"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "Ce champ n'a pas pu être mis à jour à cause d'une erreur inconnue"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "Modules"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder."
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "Nom/Description"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "Statut"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "Active"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "Inactive"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "E-mails personnalisés à l'Admin"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "E-mails personnalisés à l'utilisateur"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "Enregistrer"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "Redirige les requêtes vers une page spécifique:"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "Action"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "Redirections"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "URL"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "Après inscription:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "Après connexion:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "Récupérer le mot de passe (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "Lorsque cette fonctionnalité est activée l'utilisateur sera redirigé à partir de la page par défaut de Wordpress de récupération du mot de passe vers le lien \"Mot de passe perdu?\" utilisé par Profile Builder sur la page de connexion de l'interface cliente."
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "Redirige les requêtes vers la page Wordpress par défaut:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "Page de connexion WordPress par défaut"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "Page de déconnexion Wordpress par défaut"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "Page d'inscription WordPress par défaut"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "Tableau de bord Wordpress par défaut (*)"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "Redirige chaque rôle utilisateur SAUF ceux qui ont des privilèges d'administrateur (qui peuvent changer les options)."
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "Ces paramètres sont aussi répliqués dans la page de paramètres des \"E-mails personnalisés aux utilisateurs\" lors de la sauvegarde."
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "De (nom)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "De (réponse à)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "Paramètres communs"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1943
+ "<p>Nom d'utilisateur:{{username}}</p>\n"
1944
+ "<p>Adresse de messagerie:{{user_email}}</p>\n"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1947
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1948
+ #: ../modules/email-customizer/user-email-customizer.php:71
1949
+ #: ../modules/email-customizer/user-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:128
1951
+ #: ../modules/email-customizer/user-email-customizer.php:155
1952
+ #: ../modules/email-customizer/user-email-customizer.php:183
1953
+ msgid "Email Subject"
1954
+ msgstr "Sujet de l'e-mail"
1955
+
1956
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1957
+ msgid "Default Registration & Registration with Email Confirmation"
1958
+ msgstr "Inscription par défaut & inscription avec confirmation de l'adresse de messagerie"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1961
+ msgid ""
1962
+ "\n"
1963
+ "<p>New subscriber on {{site_name}}.</p>\n"
1964
+ "<p>Username:{{username}}</p>\n"
1965
+ "<p>E-mail:{{user_email}}</p>\n"
1966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1968
+ msgstr ""
1969
+ "\n"
1970
+ "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1971
+ "<p>Nom d'utilisateur:{{username}}</p>\n"
1972
+ "<p>Adresse de messagerie:{{user_email}}</p>\n"
1973
+ "<p>La fonctionnalité Approbation Admin était activée au moment de l'inscription,\n"
1974
+ "donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!</p>\n"
1975
+
1976
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1977
+ #: ../modules/email-customizer/user-email-customizer.php:143
1978
+ msgid "Registration with Admin Approval"
1979
+ msgstr "Inscription avec Approbation Admin"
1980
+
1981
+ #: ../modules/email-customizer/email-customizer.php:7
1982
+ msgid "Available Tags"
1983
+ msgstr "Tags disponibles"
1984
+
1985
+ #: ../modules/email-customizer/email-customizer.php:11
1986
+ msgid "User Meta"
1987
+ msgstr "Méta-information de l'utilisateur"
1988
+
1989
+ #: ../modules/email-customizer/email-customizer.php:21
1990
+ msgid "Site Url"
1991
+ msgstr "URL du site web"
1992
+
1993
+ #: ../modules/email-customizer/email-customizer.php:22
1994
+ msgid "Site Name"
1995
+ msgstr "Nom du site web"
1996
+
1997
+ #: ../modules/email-customizer/email-customizer.php:25
1998
+ #: ../modules/user-listing/userlisting.php:126
1999
+ msgid "User Id"
2000
+ msgstr "ID de l'utilisateur"
2001
+
2002
+ #: ../modules/email-customizer/email-customizer.php:32
2003
+ msgid "Reply To"
2004
+ msgstr "Réponse à"
2005
+
2006
+ #: ../modules/email-customizer/email-customizer.php:35
2007
+ msgid "Activation Key"
2008
+ msgstr "Clé d'activation"
2009
+
2010
+ #: ../modules/email-customizer/email-customizer.php:36
2011
+ msgid "Activation Url"
2012
+ msgstr "URL d'activation"
2013
+
2014
+ #: ../modules/email-customizer/email-customizer.php:37
2015
+ msgid "Activation Link"
2016
+ msgstr "Lien d'activation"
2017
+
2018
+ #: ../modules/email-customizer/user-email-customizer.php:64
2019
+ msgid ""
2020
+ "\n"
2021
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2022
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2023
+ msgstr ""
2024
+ "\n"
2025
+ "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2026
+ "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2027
+
2028
+ #: ../modules/email-customizer/user-email-customizer.php:85
2029
+ msgid "Default Registration"
2030
+ msgstr "Inscription par défaut"
2031
+
2032
+ #: ../modules/email-customizer/user-email-customizer.php:91
2033
+ msgid ""
2034
+ "\n"
2035
+ "<p>To activate your user, please click the following link:<br/>\n"
2036
+ "{{{activation_link}}}</p>\n"
2037
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2038
+ msgstr ""
2039
+ "\n"
2040
+ "<p>Pour activer votre compte, merci de cliquer sur le lien suivant:<br/>\n"
2041
+ "{{{activation_link}}}</p>\n"
2042
+ "<p>Une fois l'activation réalisée, vous recevrez une autre e-mail avec vos identifiants</p>\n"
2043
+
2044
+ #: ../modules/email-customizer/user-email-customizer.php:103
2045
+ msgid "[{{site_name}}] Activate {{username}}"
2046
+ msgstr "[{{site_name}}] Activer {{username}}"
2047
+
2048
+ #: ../modules/email-customizer/user-email-customizer.php:114
2049
+ msgid "Registration with Email Confirmation"
2050
+ msgstr "Inscription avec confirmation de l'adresse de messagerie"
2051
+
2052
+ #: ../modules/email-customizer/user-email-customizer.php:120
2053
+ msgid ""
2054
+ "\n"
2055
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2056
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2057
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2058
+ msgstr ""
2059
+ "\n"
2060
+ "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2061
+ "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2062
+ "<p>Avant que vous ne puissiez accéder à votre compte, un administrateur doit d'abord l'approuver. Vous serez informé par e-mail.</p>\n"
2063
+
2064
+ #: ../modules/email-customizer/user-email-customizer.php:132
2065
+ msgid "A new account has been created for you on {{site_name}}"
2066
+ msgstr "Un nouveau compte a été créé pour vous sur {{site_name}}"
2067
+
2068
+ #: ../modules/email-customizer/user-email-customizer.php:148
2069
+ msgid ""
2070
+ "\n"
2071
+ "<h3>Good News!</h3>\n"
2072
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2073
+ msgstr ""
2074
+ "\n"
2075
+ "<h3>Bonne nouvelle!</h3>\n"
2076
+ "<p>Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.</p>\n"
2077
+
2078
+ #: ../modules/email-customizer/user-email-customizer.php:159
2079
+ msgid "Your account on {{site_name}} has been approved!"
2080
+ msgstr "Votre compte sur {{site_name}} a été approuvé!"
2081
+
2082
+ #: ../modules/email-customizer/user-email-customizer.php:170
2083
+ msgid "User Approval Notification"
2084
+ msgstr "Notification lors de l'approbation d'un utilisateur"
2085
+
2086
+ #: ../modules/email-customizer/user-email-customizer.php:175
2087
+ msgid ""
2088
+ "\n"
2089
+ "<h3>Hello,</h3>\n"
2090
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2091
+ msgstr ""
2092
+ "\n"
2093
+ "<h3>Bonjour,</h3>\n"
2094
+ "<p>Un administrateur vient malheureusement de refuser votre compte: {{username}} sur {{site_name}}.</p>\n"
2095
+
2096
+ #: ../modules/email-customizer/user-email-customizer.php:187
2097
+ msgid "Your account on {{site_name}} has been unapproved!"
2098
+ msgstr "Votre compte sur {{site_name}} a été refusé!"
2099
+
2100
+ #: ../modules/email-customizer/user-email-customizer.php:198
2101
+ msgid "Unapproved User Notification"
2102
+ msgstr "Notification lors du refus d'un utilisateur"
2103
+
2104
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2105
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2106
+ msgid "Edit-profile Form"
2107
+ msgstr "Formulaire de modification de profile"
2108
+
2109
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2110
+ #: ../modules/multiple-forms/register-forms.php:13
2111
+ #: ../modules/user-listing/userlisting.php:13
2112
+ msgid "Add New"
2113
+ msgstr "Ajouter un nouveau"
2114
+
2115
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2116
+ msgid "Add new Edit-profile Form"
2117
+ msgstr "Ajouter un nouveau formulaire de modification de profile"
2118
+
2119
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2120
+ msgid "Edit the Edit-profile Forms"
2121
+ msgstr "Modifier les formulaires de modification de profile"
2122
+
2123
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2124
+ msgid "New Edit-profile Form"
2125
+ msgstr "Nouveau formulaire de modification de profile"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2129
+ msgid "Edit-profile Forms"
2130
+ msgstr "Formulaires de modification de profile"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2133
+ msgid "View the Edit-profile Form"
2134
+ msgstr "Voir le formulaire de modification de profile"
2135
+
2136
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2137
+ msgid "Search the Edit-profile Forms"
2138
+ msgstr "Rechercher dans les formulaires de modification de profile"
2139
+
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2141
+ msgid "No Edit-profile Form found"
2142
+ msgstr "Aucun formulaire de modification de profile trouvé"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2145
+ msgid "No Edit-profile Forms found in trash"
2146
+ msgstr "Aucun formulaire de modification de profile trouvé dans la corbeille"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2149
+ #: ../modules/multiple-forms/register-forms.php:138
2150
+ #: ../modules/user-listing/userlisting.php:1029
2151
+ msgid "Shortcode"
2152
+ msgstr "Shortcode"
2153
+
2154
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2155
+ #: ../modules/multiple-forms/register-forms.php:159
2156
+ #: ../modules/user-listing/userlisting.php:1050
2157
+ msgid "(no title)"
2158
+ msgstr "(aucun titre)"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2161
+ #: ../modules/multiple-forms/register-forms.php:178
2162
+ #: ../modules/user-listing/userlisting.php:1070
2163
+ msgid "The shortcode will be available after you publish this form."
2164
+ msgstr "Le shortcode sera disponible après la publication de ce formulaire."
2165
+
2166
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2167
+ #: ../modules/multiple-forms/register-forms.php:180
2168
+ #: ../modules/user-listing/userlisting.php:1072
2169
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2170
+ msgstr "Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché:"
2171
+
2172
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2173
+ #: ../modules/multiple-forms/register-forms.php:184
2174
+ #: ../modules/user-listing/userlisting.php:1076
2175
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2176
+ msgstr "<span style=\"color:red;\">Note:</span> modifier le titre du formulaire change aussi le shortcode!"
2177
+
2178
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2179
+ #: ../modules/multiple-forms/register-forms.php:190
2180
+ #: ../modules/user-listing/userlisting.php:1090
2181
+ msgid "Form Shortcode"
2182
+ msgstr "Shortcode du formulaire"
2183
+
2184
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2185
+ #: ../modules/multiple-forms/register-forms.php:230
2186
+ msgid "Whether to redirect the user to a specific page or not"
2187
+ msgstr "Si l'utilisateur doit être redirigé vers une page spécifique ou pas"
2188
+
2189
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2190
+ #: ../modules/multiple-forms/register-forms.php:231
2191
+ msgid "Display Messages"
2192
+ msgstr "Afficher les messages"
2193
+
2194
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2195
+ #: ../modules/multiple-forms/register-forms.php:231
2196
+ msgid "Allowed time to display any success messages (in seconds)"
2197
+ msgstr "Temps autorisé pour afficher tout message de succès (en secondes)"
2198
+
2199
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2200
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2201
+ msgstr "Spécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profile en utilisant ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2202
+
2203
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2204
+ msgid "After Profile Update..."
2205
+ msgstr "Après une mise à jour de profile..."
2206
+
2207
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2208
+ #: ../modules/multiple-forms/register-forms.php:260
2209
+ msgid "Add New Field to the List"
2210
+ msgstr "Ajouter un nouveau champ à la liste"
2211
+
2212
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2213
+ #: ../modules/multiple-forms/register-forms.php:264
2214
+ msgid "Choose one of the supported fields you manage <a href=\""
2215
+ msgstr "Choisissez l'un des champs maintenus que vous gérez <a href=\""
2216
+
2217
+ #: ../modules/multiple-forms/multiple-forms.php:407
2218
+ msgid "<pre>Title (Type)</pre>"
2219
+ msgstr "<pre>Titre (Type)</pre>"
2220
+
2221
+ #: ../modules/multiple-forms/multiple-forms.php:233
2222
+ msgid "You need to specify the title of the form before creating it"
2223
+ msgstr "Vous devez spécifier le titre du formulaire avant de le créer"
2224
+
2225
+ #: ../modules/multiple-forms/register-forms.php:11
2226
+ #: ../modules/multiple-forms/register-forms.php:12
2227
+ msgid "Registration Form"
2228
+ msgstr "Formulaire d'inscription"
2229
+
2230
+ #: ../modules/multiple-forms/register-forms.php:14
2231
+ msgid "Add new Registration Form"
2232
+ msgstr "Ajouter un nouveau formulaire d'inscription"
2233
+
2234
+ #: ../modules/multiple-forms/register-forms.php:15
2235
+ msgid "Edit the Registration Forms"
2236
+ msgstr "Modifier les formulaires d'inscription"
2237
+
2238
+ #: ../modules/multiple-forms/register-forms.php:16
2239
+ msgid "New Registration Form"
2240
+ msgstr "Nouveau formulaire d'inscription"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:17
2243
+ #: ../modules/multiple-forms/register-forms.php:23
2244
+ msgid "Registration Forms"
2245
+ msgstr "Formulaires d'inscription"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:18
2248
+ msgid "View the Registration Form"
2249
+ msgstr "Voir le formulaire d'inscription"
2250
+
2251
+ #: ../modules/multiple-forms/register-forms.php:19
2252
+ msgid "Search the Registration Forms"
2253
+ msgstr "Rechercher dans les formulaires d'inscription"
2254
+
2255
+ #: ../modules/multiple-forms/register-forms.php:20
2256
+ msgid "No Registration Form found"
2257
+ msgstr "Aucun formulaire d'inscription trouvé"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:21
2260
+ msgid "No Registration Forms found in trash"
2261
+ msgstr "Aucun formulaire d'inscription trouvé dans la corbeille"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:219
2264
+ msgid "Default Role"
2265
+ msgstr "Rôle par défaut"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:228
2268
+ msgid "Set Role"
2269
+ msgstr "Fixer le rôle"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:228
2272
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2273
+ msgstr "Choisissez quel rôle aura un utilisateur après qu'il/elle se soit inscrit<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera celle du rôle défini dans les paramètres de WordPress"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:229
2276
+ msgid "Automatically Log In"
2277
+ msgstr "Se connecter automatiquement"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:229
2280
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2281
+ msgstr "Si un utilisateur nouvellement inscrit sera connecté automatiquement ou pas<br/>Ne fonctionne que sur les sites ayant un nom de domaine unique et ayant désactivé les paramètres \"Approbation Admin\" et \"Confirmation de l'adresse de messagerie\"<br/>ATTENTION: La mise en cache du formulaire d'inscription empêchera la connexion automatique de fonctionner"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:232
2284
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2285
+ msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscris via ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:238
2288
+ msgid "After Registration..."
2289
+ msgstr "Après inscription..."
2290
+
2291
+ #: ../modules/user-listing/class-userlisting.php:458
2292
+ #: ../modules/user-listing/userlisting.php:624
2293
+ #: ../modules/user-listing/userlisting.php:842
2294
+ #: ../modules/user-listing/userlisting.php:885
2295
+ #: ../modules/user-listing/userlisting.php:1209
2296
+ msgid "Search Users by All Fields"
2297
+ msgstr "Rechercher des utilisateurs par tous les champs"
2298
+
2299
+ #: ../modules/user-listing/userlisting.php:14
2300
+ msgid "Add new User Listing"
2301
+ msgstr "Ajouter un nouveau listing d'utilisateurs"
2302
+
2303
+ #: ../modules/user-listing/userlisting.php:15
2304
+ msgid "Edit the User Listing"
2305
+ msgstr "Modifier le listing d'utilisateurs"
2306
+
2307
+ #: ../modules/user-listing/userlisting.php:16
2308
+ msgid "New User Listing"
2309
+ msgstr "Nouveau listing d'utilisateurs"
2310
+
2311
+ #: ../modules/user-listing/userlisting.php:18
2312
+ msgid "View the User Listing"
2313
+ msgstr "Voir le listing d'utilisateurs"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:19
2316
+ msgid "Search the User Listing"
2317
+ msgstr "Rechercher des listings d'utilisateurs"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:20
2320
+ msgid "No User Listing found"
2321
+ msgstr "Aucun listing d'utilisateurs trouvé"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:21
2324
+ msgid "No User Listing found in trash"
2325
+ msgstr "Aucun listing d'utilisateur trouvé dans la corbeille"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:97
2328
+ msgid "Display name as"
2329
+ msgstr "Afficher le nom comme"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:110
2332
+ msgid "Url"
2333
+ msgstr "Url"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:118
2336
+ #: ../modules/user-listing/userlisting.php:1118
2337
+ msgid "Registration Date"
2338
+ msgstr "Date d'inscription"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:119
2341
+ #: ../modules/user-listing/userlisting.php:1122
2342
+ msgid "Number of Posts"
2343
+ msgstr "Nombre de messages postés"
2344
+
2345
+ #: ../modules/user-listing/userlisting.php:123
2346
+ msgid "More Info"
2347
+ msgstr "Plus d'infos"
2348
+
2349
+ #: ../modules/user-listing/userlisting.php:124
2350
+ msgid "More Info Url"
2351
+ msgstr "URL vers plus d'infos"
2352
+
2353
+ #: ../modules/user-listing/userlisting.php:125
2354
+ msgid "Avatar or Gravatar"
2355
+ msgstr "Avatar ou Gravatar"
2356
+
2357
+ #: ../modules/user-listing/userlisting.php:153
2358
+ msgid "Meta Variables"
2359
+ msgstr "Méta-variables"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:159
2362
+ msgid "Sort Variables"
2363
+ msgstr "Trier les variables"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:163
2366
+ #: ../modules/user-listing/userlisting.php:190
2367
+ msgid "Extra Functions"
2368
+ msgstr "Fonctions supplémentaires"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:165
2371
+ msgid "Pagination"
2372
+ msgstr "Pagination"
2373
+
2374
+ #: ../modules/user-listing/userlisting.php:166
2375
+ msgid "Search all Fields"
2376
+ msgstr "Rechercher parmi tous les champs"
2377
+
2378
+ #: ../modules/user-listing/userlisting.php:192
2379
+ msgid "Go Back Link"
2380
+ msgstr "Lien vers la page précédente"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:210
2383
+ msgid "All-userlisting Template"
2384
+ msgstr "Modèle de tous les listing d'utilisateurs"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:213
2387
+ msgid "Single-userlisting Template"
2388
+ msgstr "Modèle d'un seul listing d'utilisateurs"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:330
2391
+ msgid "You do not have permission to view this user list"
2392
+ msgstr "Vous n'avez pas la permission de voir cette liste d'utilisateurs"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:343
2395
+ msgid "You do not have the required user role to view this user list"
2396
+ msgstr "Vous n'avez pas le rôle utilisateur requis pour voir cette liste d'utilisateurs"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:519
2399
+ msgid "First/Lastname"
2400
+ msgstr "Prénom/Nom de famille"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:525
2403
+ msgid "Sign-up Date"
2404
+ msgstr "Date d'inscription"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:534
2407
+ #: ../modules/user-listing/userlisting.php:1121
2408
+ msgid "Display Name"
2409
+ msgstr "Afficher le nom"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:543
2412
+ msgid "Posts"
2413
+ msgstr "Messages postés"
2414
+
2415
+ #: ../modules/user-listing/userlisting.php:546
2416
+ #: ../modules/user-listing/userlisting.php:1126
2417
+ msgid "Aim"
2418
+ msgstr "Aim"
2419
+
2420
+ #: ../modules/user-listing/userlisting.php:549
2421
+ #: ../modules/user-listing/userlisting.php:1127
2422
+ msgid "Yim"
2423
+ msgstr "Yim"
2424
+
2425
+ #: ../modules/user-listing/userlisting.php:552
2426
+ #: ../modules/user-listing/userlisting.php:1128
2427
+ msgid "Jabber"
2428
+ msgstr "Jabber"
2429
+
2430
+ #: ../modules/user-listing/userlisting.php:701
2431
+ msgid "Click here to see more information about this user"
2432
+ msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
2433
+
2434
+ #: ../modules/user-listing/userlisting.php:701
2435
+ msgid "More..."
2436
+ msgstr "Plus..."
2437
+
2438
+ #: ../modules/user-listing/userlisting.php:704
2439
+ msgid "Click here to see more information about this user."
2440
+ msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
2441
+
2442
+ #: ../modules/user-listing/userlisting.php:796
2443
+ #: ../modules/user-listing/userlisting.php:799
2444
+ msgid "Click here to go back"
2445
+ msgstr "Cliquez ici pour revenir en arrière"
2446
+
2447
+ #: ../modules/user-listing/userlisting.php:796
2448
+ msgid "Back"
2449
+ msgstr "Précédent"
2450
+
2451
+ #: ../modules/user-listing/userlisting.php:829
2452
+ msgid "&laquo;&laquo; First"
2453
+ msgstr "&laquo;&laquo; Premier"
2454
+
2455
+ #: ../modules/user-listing/userlisting.php:830
2456
+ msgid "&laquo; Prev"
2457
+ msgstr "&laquo; Précédent"
2458
+
2459
+ #: ../modules/user-listing/userlisting.php:831
2460
+ msgid "Next &raquo; "
2461
+ msgstr "Suivant &raquo; "
2462
+
2463
+ #: ../modules/user-listing/userlisting.php:832
2464
+ msgid "Last &raquo;&raquo;"
2465
+ msgstr "Dernier &raquo;&raquo;"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:861
2468
+ msgid "You don't have any pagination settings on this userlisting!"
2469
+ msgstr "Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs!"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:902
2472
+ msgid "Search"
2473
+ msgstr "Rechercher"
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:903
2476
+ msgid "Clear Results"
2477
+ msgstr "Effacer les résultats"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:1079
2480
+ msgid "Extra shortcode parameters"
2481
+ msgstr "Paramètres supplémentaires du shortcode"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:1081
2484
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2485
+ msgstr "affiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champ"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:1082
2488
+ msgid "Example:"
2489
+ msgstr "Exemple: "
2490
+
2491
+ #: ../modules/user-listing/userlisting.php:1084
2492
+ msgid "Remember though, that the field-value combination must exist in the database."
2493
+ msgstr "Rapelez-vous cepdendant que la combinaison champ-valeur doit exister dans la base de données."
2494
+
2495
+ #: ../modules/user-listing/userlisting.php:1138
2496
+ msgid "Random (very slow on large databases > 10K user)"
2497
+ msgstr "Aléatoire (très lent sur les énormes bases de données > 10K utilisateurs)"
2498
+
2499
+ #: ../modules/user-listing/userlisting.php:1151
2500
+ msgid "Roles to Display"
2501
+ msgstr "Groupes à afficher"
2502
+
2503
+ #: ../modules/user-listing/userlisting.php:1151
2504
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2505
+ msgstr "Restreint le listing d'utilisateurs aux groupes sélectionnés uniquement<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera tous les groupes d'utilisateurs"
2506
+
2507
+ #: ../modules/user-listing/userlisting.php:1152
2508
+ msgid "Number of Users/Page"
2509
+ msgstr "Nombre d'utilisateurs/page"
2510
+
2511
+ #: ../modules/user-listing/userlisting.php:1153
2512
+ msgid "Default Sorting Criteria"
2513
+ msgstr "Critère de tri par défaut"
2514
+
2515
+ #: ../modules/user-listing/userlisting.php:1153
2516
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2517
+ msgstr "Fixer le critère de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
2518
+
2519
+ #: ../modules/user-listing/userlisting.php:1154
2520
+ msgid "Default Sorting Order"
2521
+ msgstr "Ordre de tri par défaut"
2522
+
2523
+ #: ../modules/user-listing/userlisting.php:1154
2524
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2525
+ msgstr "Fixez l'ordre de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
2526
+
2527
+ #: ../modules/user-listing/userlisting.php:1155
2528
+ msgid "Avatar Size (All-userlisting)"
2529
+ msgstr "Taille d'avatar (listing de tous les utilisateurs)"
2530
+
2531
+ #: ../modules/user-listing/userlisting.php:1155
2532
+ msgid "Set the avatar size on the all-userlisting only"
2533
+ msgstr "Fixer la taille de l'avatar sur le listing de tous les utilisateurs uniquement"
2534
+
2535
+ #: ../modules/user-listing/userlisting.php:1156
2536
+ msgid "Avatar Size (Single-userlisting)"
2537
+ msgstr "Taille d'avatar (listing d'un seul utilisateur)"
2538
+
2539
+ #: ../modules/user-listing/userlisting.php:1156
2540
+ msgid "Set the avatar size on the single-userlisting only"
2541
+ msgstr "Fixer la taille de l'avatar du listing d'un seul utilisateur uniquement"
2542
+
2543
+ #: ../modules/user-listing/userlisting.php:1157
2544
+ msgid "Visible only to logged in users?"
2545
+ msgstr "Visible uniquement aux utilisateurs connectés?"
2546
+
2547
+ #: ../modules/user-listing/userlisting.php:1157
2548
+ msgid "The userlisting will only be visible only to the logged in users"
2549
+ msgstr "Le listing d'utilisateurs sera visible uniquement aux utilisateurs connectés"
2550
+
2551
+ #: ../modules/user-listing/userlisting.php:1158
2552
+ msgid "Visible to following Roles"
2553
+ msgstr "Visible pour les rôles suivant"
2554
+
2555
+ #: ../modules/user-listing/userlisting.php:1158
2556
+ msgid "The userlisting will only be visible to the following roles"
2557
+ msgstr "Le listing d'utilisateurs sera visible uniquement aux rôles suivant"
2558
+
2559
+ #: ../modules/user-listing/userlisting.php:1164
2560
+ msgid "Userlisting Settings"
2561
+ msgstr "Paramètres du listing d'utilisateurs"
2562
+
2563
+ #: ../modules/user-listing/userlisting.php:1185
2564
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2565
+ msgstr "Vous devez activer le listing d'utilisateurs à partir de l'onglet \"Modules\"!"
2566
+
2567
+ #: ../modules/user-listing/userlisting.php:1185
2568
+ msgid "You can find it in the Profile Builder menu."
2569
+ msgstr "Vous pouvez le trouver dans le menu Profile Builder."
2570
+
2571
+ #: ../modules/user-listing/userlisting.php:1335
2572
+ msgid "No results found!"
2573
+ msgstr "Aucun résultat trouvé!"
translation/profilebuilder-nl_NL.mo ADDED
Binary file
translation/profilebuilder-nl_NL.po ADDED
@@ -0,0 +1,2585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Dutch
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-17 08:08:22+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "Toon/Verberg de admin balk in de front-end"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "Admin balk instellingen"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "Gebruikersrol"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "Zichtbaarheid"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "Standaard"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "Toon"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "Verberg"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "Wijzigingen Opslaan"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "Je moet inloggen via het e-mailadres. Dit veld is NIET zichtbaar in de front-end! (je kunt deze instellingen wijzigen via de \"%s\" tab)"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "Algemene Instellingen"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "Zeer zwak"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "Zwak"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "Gemiddeld"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "Sterk"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "Veld Toevoegen"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "Wijzigingen Opslaan"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "Basis Informatie"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "Versie %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "De beste manier om frond-end registratie, profiel bewerking en inlog formulieren toe te voegen."
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "Voor moderne Gebruikers Interactie"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "Inloggen"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "Probleemloos inloggen via de <strong class=\"nowrap\">[wppb-login]</strong> shortcode of een widget."
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "Registratie"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "Prachtige volledig aanpasbare registratie formulieren via de <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "Bewerk Profiel"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "Eenvoudige bewerkbare profiel formulieren via de <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "Extra Functies"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "Functies die je meer controle geven over je gebruikers, meer veiligheid en je helpen tegen spam tijdens gebruikersregistratie."
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "Extra functies aanzetten"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "Wachtwoord Achterhalen"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "Sta gebruikers toe om wachtwoord in front-end te achterhalen via de [wppb-recover-password]."
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "Goedkeuring Beheerder (*)"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "Jij bepaalt wie een gebruiker is op je website. Word geinformeerd via e-mail of keur meerdere gebruikers ineens goed van de WordPress UI."
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "E-mail Bevestiging"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "Zorg ervoor dat gebruikers zich met echte e-mailadressen opgeven. Tijdens registratie zullen gebruikers een bericht ontvangen om e-mailadres te bevestigen."
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "Minimale Wachtwoord Lengte en Kracht Meter"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "Elimineer zwakke wachtwoorden ineens door minimale wachtwoord lengte in te stellen en een bepaalde wachtwoord sterkte."
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "Inloggen met E-mailadres of Gebruikersnaam"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "Sta gebruikers toe om te inloggen met e-mailadres of gebruikersnaam wanneer ze je site bezoeken."
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "Pas Je Formulieren Aan Zoals Jij Het Wilt (*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "Met extra Profielvelden kun je een registratie formulier maken die voldoet aan je project wensen."
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "Extra Profielvelden zijn beschikbaar in Hobbyist of PRO versies"
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "Start met extra velden"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "Avatar Upload"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "Algemene Uploads"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "Akkoord Met Voorwaarden Selectievakje"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "Datumpicker"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "Land Selectie"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "Tijdzone Selectie"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "Invoer / Afgeschermde Invoer"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "Selectievakje"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "Selecteer"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "Keuzerondjes"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "Tekstgebied"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "Sterke Modules (**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "Alles wat je nodig hebt om je gebruikers te beheren is waarschijnlijk al beschikbaar als je de PRO Modules gebruikt."
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "Je modules aanzetten"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "Leer meer over je PRO Modules"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "Gebruikersoverzicht"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "Eenvoudig om templates te bewerken die je website gebruikers tonen en om pagina's te maken voor losse gebruikers. Op shortcode gebaseerd, met vele opties om je overzichten aan te passen."
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "Om een pagina te maken met de geregistreerde gebruikers van deze site/blog, voeg de volgende shortcode in de gewenste pagina: <strong class=\"nowrap\">[wppb-list-users]</strong>."
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "E-mailadres Aanpasser"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "Personaliseer alle e-mails die naar je gebruikers of beheerders gestuurd worden. Na registratie, e-mail bevestiging, goedkeuring / afkeuring van beheerder."
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "Aangepaste Doorverwijzingen"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "Laat je gebruikers uit het WordPress Dashboard, stuur ze door naar de homepage na inloggen of registratie, alles is onder handbereik."
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "Meerdere Registratie Formulieren"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersgroepen. Ontvang verschillende informatie van verschillende type gebruikers."
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "Meerdere Bewerk Profiel Formulieren"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "Sta verschillende gebruikersgroepen toe om specifieke informatie te bewerken. Maak meerdere Bewerk Profiel formulieren met verschillende velden voor bepaalde gebruikersgroepen."
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr "* alleen beschikbaar in de %1$sHobbyist en Pro versies%2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** alleen beschikbaar in de %1$sPro versies%2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "Laad Profile Builder's eigen CSS bestand in de front-end:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "Ja"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "Je kunt het standaard bestand hier vinden: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"E-mail Bevestiging\" Geactiveerd:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "Nee"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "Op enkele-site installaties werkt dit alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, middels de \"Aangepaste Doorverwijzingen\" functie."
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "De \"E-mail Bevestiging\" functie is (standaard) actief op WPMU installaties."
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "Je kunt een lijst met niet bevestigde e-mailadressen vinden %1$sGebruikers > Alle Gebruikers > E-mail Bevestiging%2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "\"E-mail Bevestiging\" Begin Pagina:"
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "Bestaande Pagina's"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "Specificeer de pagina waar gebruikers naar worden doorgestuurd wanneer ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de geregistreerde pagina's en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal een eenvoudige bevestigingspagina aan gebruiker getoond worden."
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"Goedkeuring Beheerder\" Geactiveerd:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "Je kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring Beheerder%2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "\"Goedkeuring Beheerder\" Functie:"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "Jij bepaalt wie een gebruikers is op je website. Krijg bericht via e-mail of keur meerdere gebruikers in 1 keer goed via het WordPress Dashboard. Zet Goedkeuring Beheerder aan door te upgraden naar %1$sHobbyist of PRO versies%2$s."
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "Sta Gebruikers toe in te loggen met:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "Gebruikersnaam"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "E-mailadres"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "Minimale Wachtwoord Lengte:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "Voer het minimaal aantal karakters in die wachtwoord mag hebben. Laat leeg voor geen minimale limiet."
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "Minimale Wachtwoord Sterkte:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "Uitgeschakeld"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "Beheer Velden"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "Beheer Standaard en Extra Velden"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "Veld Titel"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "Titel van het Veld"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "Veld"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Meta-naam"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "Gebruik dit in combinatie met de WordPress functies om de waarde te tonen in de gewenste pagina<br/>Auto-aangevuld maar is sommige gevallen te wijzigen (indien het uniek is)<br/>In het geval van een groot aantal gebruikers zal het lang duren voordat dit gewijzigd is"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "ID"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "Een unieke, automatisch aangemaakte ID voor dit bepaalde veld<br/>Je kunt dit gebruiken in combinatie met filters om dit element te richten, indien nodig<br/>Kan niet gewijzigd worden"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "Beschrijving"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "Voer een (gedetailleerde) beschrijving in van de functie, die gebruikers kunnen lezen<br/>Optioneel"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "Rij Telling"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "Specificeer aantal rijen voor een 'Tekstgebied' veld<br/>Indien niet gespecificeerd, standaard is 5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "Toegestane Foto Extensies"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande foto extensies (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "Toegestane Upload Extensies"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande extensies (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "Avatar Grootte"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'<br/>Indien niet gespecificeerd, standaard is 100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "Datum-formaat"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "Specificeer datum formaat als je de datum picker gebruikt<br/>Geldige opties: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Indien niet gespecificeerd, standaard is mm/dd/yy"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "Algemene Voorwaarden"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "Voer een (gedetailleerde) beschrijving in van de algemene voorwaarden, die gebruikers kunnen lezen<br/>Links kunnen ingevoerd worden middels de standaard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "Opties"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "Labels"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "Voer een met komma's gescheiden lijst van labels in<br/>Zichtbaar voor de gebruiker"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "Publieke Sleutel"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "De Publieke Sleutel van Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "Prive Sleutel"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "De Prive Sleutel van Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "Standaard Waarde"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "Standaard waarde van het veld"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "Standaard Optie"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "Specificeer de optie die als standaard geselecteerd wordt"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "Standaard Optie(s)"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "Specificeer de optie die als standaard geselecteerd wordt<br/>Als er meerdere waardes zijn, scheid ze met een ',' (komma)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "Standaard Inhoud"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "Standaard waarde van tekstgebied"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "Verplicht"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "Of een veld verplicht is of niet"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "Overschrijf Bestaande"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "Als je 'Ja' selecteert zal veld aan de lijst toegevoegd worden, maar zal alle andere velden in database overschrijven, die dezelfde meta-naam hebben<br/>Gebruik dit op eigen risico"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "Veld Eigenschappen"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "Registratie & Beheer Profiel"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "Naam"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr "Gebruikersnamen kunnen niet veranderd worden."
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "Voornaam"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "Achternaam"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "Schermnaam"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "Toon publiek als"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "Contact Info"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "E-mailadres"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "Website"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "Yahoo IM"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "Over Jezelf"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "Biografie"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "Vertel iets over jezelf. Dit kan voor iedereen zichtbaar zijn."
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "Wachtwoord"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "Voer je wachtwoord in."
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "Herhaal Wachtwoord"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "Voer je wachtwoord opnieuw in."
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "Je moet een veld selecteren\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "Selecteer svp een ander type veld omdat deze al in je formulier staat (moet uniek zijn)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "De ingevoerde avatar grootte is niet tussen 20 en 200\n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "De ingevoerde avatar grootte is niet numeriek\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "Het ingevoerde rij nummer is niet numeriek\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "Je moet een waarde invoeren voor het rij nummer\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "Je moet de publieke sleutel invoeren\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "Je moet de prive sleutel invoeren\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "De ingevoerde waarde voor de datum picker is geen geldig datum formaat\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "Je moet een waarde voor het datum formaat invoeren\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "Deze meta-naam is al in gebruik\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "Dat veld is al aan dit formulier toegevoegd\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>Titel</pre><pre>Type</pre><pre>Meta Naam</pre><pre class=\"wppb-mb-head-required\">Verplicht</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "Bewerk"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "Verwijder"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "Gebruik deze shortcodes op de pagina's waarop je de formulieren wilt tonen:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "Als je geinteresseerd bent in het tonen van verschillende velden in de registratie en bewerk profiel formulieren, gebruik svp de Meerdere Registraties & Bewerk Profiel Formulieren Addon. "
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "Registreer je Versie"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "Registreer Versie"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "Als je deze versie van Profile Builder registreert, zul je informatie ontvangen inzake updates, patches en technisch support."
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "Serienummer:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "Het serienummer is succesvol gevalideerd!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "Het ingevoerde serienummer kon niet gevalideerd worden!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "Het serienummer kon niet gevalideerd worden want is verlopen!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "Het serienummer kon niet gevalideerd worden omdat het proces verlopen is. Dit komt mogelijk doordat de server niet werkt. Probeer het svp later opnieuw!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "Inhoud"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "Bewerk dit item"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "Verwijder dit item"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "Voer svp een waarde in voor het verplichte veld"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "Selecteer Bestand"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "Verwijder"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "Synchroniseer WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "Synchroniseer WCK Vertaling"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "Je kunt informatie toevoegen voor %s nadat je een item hebt toegevoegd"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "Uploaden"
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "Geen items gevonden."
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "Bulk Acties"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "Toepassen"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "Toon alle data"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "Toon Lijst"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "Toon fragment"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s in afwachting"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s van %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "Selecteer Alle"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "Validatie gebruiker mislukt - de avatar is niet verwijderd!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "Validatie gebruiker mislukt - de bijlage is niet verwijderd!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "Sterkte indicator"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "Minimale lengte van"
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "Goedkeuring Beheerder"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "Wil je"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw "
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "Gebruiker succesvol goedgekeurd!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "Gebruiker succesvol afgekeurd!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "Gebruiker succesvol verwijderd!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "Je hebt of geen goedkeuring voor deze actie of er was een fout!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw."
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "Gebruiker succesvol goedgekeurd! "
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "Gebruiker succesvol afgekeurd!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "Gebruiker succesvol verwijderd!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "Je account op %1$s is goedgekeurd!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "goedgekeurd"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "Een beheerder heeft net je account goedgekeurd op %1$s (%2$s)."
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "Je account op %1$s is afgekeurd!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "afgekeurd"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "Een beheerder heeft net je account afgekeurd op %1$s (%2$s)."
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>FOUT</strong>: Je account moet bevestigd worden door een beheerder voordat je kunt inloggen. "
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "Je account moet bevestigd worden door een beheerder voordat je \"Wachtwoord Achterhalen\" functie kunt gebruiken."
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "Bekijk of Bewerk"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "deze gebruiker verwijderen?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "deze gebruiker afkeuren?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "Afkeuren"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "deze gebruiker goedkeuren?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "Goedkeuren"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "Voornaam"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "Achternaam"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "Rol"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "Geregistreerd"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "Status Gebruiker"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer goedkeuren?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer afkeuren?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer verwijderen?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "Sorry, je hebt geen toestemming om dit te doen!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "Goedgekeurd"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "Afgekeurd"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "Alle Gebruikers"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "verwijder gebruiker van de _signups tabel?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "dit e-mailadres zelf bevestigen?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "E-mailadres Bevestigen "
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "de activatielink opnieuw sturen?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "Activatiemail Opnieuw Sturen"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s kon niet verwijderd worden"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "Alle gebruikers zijn succesvol verwijderd"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "De geselecteerde gebruikers zijn geactiveerd"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "Activatiemail is opnieuw gestuurd naar de geselecteerde gebruikers "
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "Gebruikers met niet bevestigde e-mailadressen"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "Fout opgetreden tijdens deze actie!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "De geselecteerde gebruiker kon niet verwijderd worden"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "E-mail notificatie opnieuw gestuurd naar gebruiker"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] Activeer %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "Om je gebruiker te activeren, klik op de volgende link:\n"
1269
+ "\n"
1270
+ "%s%s%s\n"
1271
+ "\n"
1272
+ "Nadat je het geactiveerd hebt ontvang je nog *een andere e-mail* met je inlog."
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "Kon gebruiker niet aanmaken!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "Die gebruikersnaam is al geactiveerd!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "Fout opgetreden tijdens activatie van de gebruiker"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "Een nieuw abonnee is geregistreerd!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "Nieuwe abonnee op %1$s.<br/><br/>Gebruikersnaam:%2$s<br/>E-mailadres:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "De functie \"Goedkeuring Beheerder\" is tijdens registratie geactiveerd, zo vergeet niet dat je gebruiker moet goedkeuren voordat hij/zij kan inloggen!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] Je nieuwe account informatie"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "Welkom op %1$s!<br/><br/><br/>Je gebruikersnaam is:%2$s en wachtwoord:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "Voordat je toegang tot je account hebt, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "Met deze inlog widget kun je een inlogformulier in sidebar plaatsen."
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Profile Builder Inlog Widget"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "Registreer"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "Titel:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "Doorverwijs URL na inloggen (optioneel):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "Registratie pagina URL (optioneel):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "Wachtwoord Achterhalen URL (optioneel):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "De gebruikersnaam kan niet gewijzigd worden."
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "Gebruikers kunnen zichzelf registreren of je kunt hier handmatig gebruikers aanmaken."
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "Gebruikers kunnen zich momenteel niet zelf registreren, maar je kunt hier handmatig gebruikers aanmaken."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "Je bent momenteel ingelogd als %1s. Je hebt geen ander account nodig. %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "Uitloggen van dit account."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "Uitloggen"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "Je moet ingelogd zijn om je profiel te bewerken."
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "hier"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "Je wordt snel automatisch doorgestuurd. Als je deze pagina meer dan %1$d seconden ziet, klik svp %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "Het account %1s is succesvol gemaakt!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "Voordat je toegang krijgt tot het account %1s, moet je het e-mailadres bevestigen. Kijk svp in je inbox en klik op de activatielink."
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "Voordat je toegang krijgt tot het account %1s, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "Je profiel is succesvol bijgewerkt!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "Fout tijdens versturen van het formulier"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "Gebruiker Toevoegen"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "Bijwerken"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "De avatar is succesvol verwijderd!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "Het volgende bestand is succesvol verwijderd:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "Stuur deze aanmeldgegevens via e-mail."
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "FOUT"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "Het ingevoerde wachtwoord is onjuist."
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "Wachtwoord Verloren en Gevonden"
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "Je wachtwoord verloren"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "Beide velden zijn leeg."
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "Je bent momenteel ingelogd als %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "Uitloggen van dit account"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "Uitloggen"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "Je account moet door een beheerder worden bevestigd, voordat je de \"Wachtwoord Reset\" functie kunt gebruiken."
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "Reset Wachtwoord"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "Voer svp je gebruikersnaam en e-mailadres in."
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "Je zult een link via e-mail ontvangen om een nieuw wachtwoord aan te maken."
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "Gebruikersnaam of E-mailadres"
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "Ontvang nieuw wachtwoord"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "De ingevoerde gebruikersnaam is niet in de database gevonden!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "Kijk svp of je de juiste gebruikersnaam ingevoerd hebt."
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "Kijk svp in je e-mail voor de bevestingslink."
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "Iemand heeft gevraagd om het wachtwoord te resetten voor het volgende account: <b>%1$s</b><br/>Als dit een fout was, negeer deze e-mail en er zal niets gebeuren.<br/>Om wachtwoord te resetten, ga naar de volgende link:%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "Wachtwoord Resetten van \"%1$s\""
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "Fout opgetreden tijdens verzenden van de activatielink naar %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "Het ingevoerde e-mailadres is niet in de database gevonden!"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "Kijk svp of je het juiste e-mailadres ingevoerd hebt."
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>Het wachtwoord moet een minimale lengte hebben van"
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>Het wachtwoord moet een minimale sterkte hebben van"
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "Je wachtwoord is succesvol gewijzigd!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "Je hebt je wachtwoord succesvol gereset naar: %1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "Wachtwoord Succesvol Gereset voor %1$s op \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s heeft gevraagd om wachtwoord te wijzigen via de wachtwoord reset functie.<br/>Zijn/haar nieuwe wachtwoord is:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "De ingevoerde wachtwoorden komen niet overeen!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "FOUT:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "Ongeldige sleutel!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "Ongeldige activatiesleutel!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "Deze gebruikersnaam is nu actief!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "Deze gebruikersnaam is reeds geactiveerd!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "Je e-mailadres is succesvol bevestigd."
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "Fout opgetreden tijdens activatie van de gebruiker."
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "Het ingevoerde e-mailadres is niet geldig."
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "Dit e-mailadres is gereserveerd voor toekomstig gebruik."
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "Probeer svp een andere!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "Dit e-mailadres is reeds in gebruik."
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "De wachtwoorden komen niet overeen"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "Deze gebruikersnaam bestaat reeds."
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "Deze gebruikersnaam is gereserveerd voor toekomstig gebruik. "
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "max upload grootte"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "Huidige avatar: Geen geüploade avatar"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "Avatar"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "Klik om huidige avatar te zien"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "De avatar kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "Weet je zeker dat je deze avatar wilt verwijderen?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "Klik om huidige avatar te verwijderen"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "verplicht"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "Huidige avatar"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "Geen geüploade avatar"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "De extensie van het bestand komt niet overeen"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "Het geüploade bestand is groter dan de upload_max_filesize richtlijn in php.ini"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn in php.ini "
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "Geen bestand geselecteerd"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "De tijdelijke upload map mist van het systeem"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "Het wegschrijven van het bestand is mislukt"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "Een PHP extensie heeft de bestand upload gestopt"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "Onbekende fout opgetreden"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "Kon socket niet openen!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "Om reCAPTCHA te gebruiken moet je een API sleutel krijgen van"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "Om veiligheid redenen, moet je de externe ip aanbieden aan reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je de mcrypt php module geinstalleerd hebben!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je een openbare en prive sleutel aanvragen; dit kun je doen op"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "Om reCAPTCHA te gebruiken moet je een openbare API sleutel krijgen van:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "Om reCAPTCHA te gebruiken moet je een prive API sleutel krijgen van:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "Huidig bestand: Geen geüploade bijlage"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "Huidig bestand"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "Klik om huidige bijlage te zien"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "De bijlage kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "Weet je zeker dat je deze bijlage wilt verwijderen?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "Klik om huidige bijlage te verwijderen"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "Geen geüploade bijlage"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "De extensie van dit bestand is niet toegestaan"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "Veld is niet geupdate doordat onbekende fout opgetreden is"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "Modules"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "Hier kun je alle modules van Profile Builder activeren / deactiveren."
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "Naam/Beschrijving"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "Status"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "Actieve"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "Inactieve"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "Aanpasser E-mailadres Beheerder"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "Aanpasser E-mailadres Gebruiker"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "Opslaan"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "Stuurt door als aangepaste pagina's geladen worden:"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "Actie"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "Stuur door"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "URL"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "Na Registratie:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "Na Inloggen:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "Wachtwoord Achterhalen (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "Indien deze functie is geactiveerd zal de gebruiker doorgestuurd worden op zowel de standaard WordPress pagina om wachtwoord te achterhalen als de \"Wachtwoord vergeten\" link die Profile Builder gebruikt op de front-end inlogpagina."
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "Stuurt door als standaard WordPress pagina's geladen worden: "
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "Standaard WordPress Inlog Pagina:"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "Standaard WordPress Uitlog Pagina:"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "Standaard WordPress Registratie Pagina"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "Standaard WordPress Dashboard (*)"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "Stuurt alle gebruikers door BEHALVE gebruikers met beheerder privileges (kan opties beheren)."
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "Deze instellingen zijn tijdens opslaan ook overgenomen in de \"Aanpasser E-mailadres Gebruiker\" instellingen pagina."
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "Van (naam)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "Van (reageer naar e-mailadres)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "Algemene Instellingen"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>Nieuw abonnee op {{site_name}}.</p>\n"
1943
+ "\n"
1944
+ "<p>Gebruikersnaam:{{username}}</p>\n"
1945
+ "\n"
1946
+ "<p>E-mailadres:{{user_email}}</p>\n"
1947
+
1948
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1949
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:71
1951
+ #: ../modules/email-customizer/user-email-customizer.php:99
1952
+ #: ../modules/email-customizer/user-email-customizer.php:128
1953
+ #: ../modules/email-customizer/user-email-customizer.php:155
1954
+ #: ../modules/email-customizer/user-email-customizer.php:183
1955
+ msgid "Email Subject"
1956
+ msgstr "Onderwerp E-mail"
1957
+
1958
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1959
+ msgid "Default Registration & Registration with Email Confirmation"
1960
+ msgstr "Standaard Registratie & Registratie met E-mail Bevestiging"
1961
+
1962
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1963
+ msgid ""
1964
+ "\n"
1965
+ "<p>New subscriber on {{site_name}}.</p>\n"
1966
+ "<p>Username:{{username}}</p>\n"
1967
+ "<p>E-mail:{{user_email}}</p>\n"
1968
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1969
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1970
+ msgstr ""
1971
+ "\n"
1972
+ "<p>Nieuwe abonnee op {{site_name}}.</p>\n"
1973
+ "\n"
1974
+ "<p>Gebruikersnaam:{{username}}</p>\n"
1975
+ "\n"
1976
+ "<p>E-mailadres:{{user_email}}</p>\n"
1977
+ "\n"
1978
+ "<p>De functie Goedkeuring Beheerder is geactiveerd tijdens registratie,\n"
1979
+ "\n"
1980
+ "zo vergeet niet dat je deze gebruiker moet goedkeuren voordat hij/zij kan inloggen!</p>\n"
1981
+
1982
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1983
+ #: ../modules/email-customizer/user-email-customizer.php:143
1984
+ msgid "Registration with Admin Approval"
1985
+ msgstr "Registratie met Goedkeuring Beheerder"
1986
+
1987
+ #: ../modules/email-customizer/email-customizer.php:7
1988
+ msgid "Available Tags"
1989
+ msgstr "Beschikbare Tags"
1990
+
1991
+ #: ../modules/email-customizer/email-customizer.php:11
1992
+ msgid "User Meta"
1993
+ msgstr "Meta Gebruiker"
1994
+
1995
+ #: ../modules/email-customizer/email-customizer.php:21
1996
+ msgid "Site Url"
1997
+ msgstr "Website URL"
1998
+
1999
+ #: ../modules/email-customizer/email-customizer.php:22
2000
+ msgid "Site Name"
2001
+ msgstr "Website Naam"
2002
+
2003
+ #: ../modules/email-customizer/email-customizer.php:25
2004
+ #: ../modules/user-listing/userlisting.php:126
2005
+ msgid "User Id"
2006
+ msgstr "Gebruikers ID"
2007
+
2008
+ #: ../modules/email-customizer/email-customizer.php:32
2009
+ msgid "Reply To"
2010
+ msgstr "Reageer Op"
2011
+
2012
+ #: ../modules/email-customizer/email-customizer.php:35
2013
+ msgid "Activation Key"
2014
+ msgstr "Activatie Sleutel"
2015
+
2016
+ #: ../modules/email-customizer/email-customizer.php:36
2017
+ msgid "Activation Url"
2018
+ msgstr "Activatie URL"
2019
+
2020
+ #: ../modules/email-customizer/email-customizer.php:37
2021
+ msgid "Activation Link"
2022
+ msgstr "Activatie Link"
2023
+
2024
+ #: ../modules/email-customizer/user-email-customizer.php:64
2025
+ msgid ""
2026
+ "\n"
2027
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2028
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2029
+ msgstr ""
2030
+ "\n"
2031
+ "<h3>Welkom op {{site_name}}!</h3>\n"
2032
+ "\n"
2033
+ "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2034
+
2035
+ #: ../modules/email-customizer/user-email-customizer.php:85
2036
+ msgid "Default Registration"
2037
+ msgstr "Standaard Registratie"
2038
+
2039
+ #: ../modules/email-customizer/user-email-customizer.php:91
2040
+ msgid ""
2041
+ "\n"
2042
+ "<p>To activate your user, please click the following link:<br/>\n"
2043
+ "{{{activation_link}}}</p>\n"
2044
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2045
+ msgstr ""
2046
+ "\n"
2047
+ "<p>Om gebruiker te activeren, klik svp op de volgende link:<br/>\n"
2048
+ "\n"
2049
+ "{{{activation_link}}}</p>\n"
2050
+ "\n"
2051
+ "<p>Na activatie zul je een andere e-mail ontvangen met je aanmeld gegevens.</p>\n"
2052
+
2053
+ #: ../modules/email-customizer/user-email-customizer.php:103
2054
+ msgid "[{{site_name}}] Activate {{username}}"
2055
+ msgstr "[{{site_name}}] Activeer {{username}}"
2056
+
2057
+ #: ../modules/email-customizer/user-email-customizer.php:114
2058
+ msgid "Registration with Email Confirmation"
2059
+ msgstr "Registratie met E-mail Bevestiging"
2060
+
2061
+ #: ../modules/email-customizer/user-email-customizer.php:120
2062
+ msgid ""
2063
+ "\n"
2064
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2065
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2066
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2067
+ msgstr ""
2068
+ "\n"
2069
+ "<h3>Welkom op {{site_name}}!</h3>\n"
2070
+ "\n"
2071
+ "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2072
+ "\n"
2073
+ "<p>Voordat je toegang krijgt tot je account, moet een beheerder dit goedkeuren. Je wordt via e-mail geinformeerd.</p>\n"
2074
+
2075
+ #: ../modules/email-customizer/user-email-customizer.php:132
2076
+ msgid "A new account has been created for you on {{site_name}}"
2077
+ msgstr "Een nieuwe account is voor je aangemaakt op {{site_name}}"
2078
+
2079
+ #: ../modules/email-customizer/user-email-customizer.php:148
2080
+ msgid ""
2081
+ "\n"
2082
+ "<h3>Good News!</h3>\n"
2083
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2084
+ msgstr ""
2085
+ "\n"
2086
+ "<h3>Goed Nieuws!</h3>\n"
2087
+ "\n"
2088
+ "<p>Een beheerder heeft net je account goedgekeurd: {{username}} op {{site_name}}.</p>\n"
2089
+
2090
+ #: ../modules/email-customizer/user-email-customizer.php:159
2091
+ msgid "Your account on {{site_name}} has been approved!"
2092
+ msgstr "Je account op {{site_name}} is goedgekeurd!"
2093
+
2094
+ #: ../modules/email-customizer/user-email-customizer.php:170
2095
+ msgid "User Approval Notification"
2096
+ msgstr "Goedkeuring Gebruiker Notificatie"
2097
+
2098
+ #: ../modules/email-customizer/user-email-customizer.php:175
2099
+ msgid ""
2100
+ "\n"
2101
+ "<h3>Hello,</h3>\n"
2102
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2103
+ msgstr ""
2104
+ "\n"
2105
+ "<h3>Hallo,</h3>\n"
2106
+ "<p>Helaas heeft een beheerder je account net afgekeurd: {{username}} op {{site_name}}.</p>\n"
2107
+
2108
+ #: ../modules/email-customizer/user-email-customizer.php:187
2109
+ msgid "Your account on {{site_name}} has been unapproved!"
2110
+ msgstr "Je account op {{site_name}} is afgekeurd!"
2111
+
2112
+ #: ../modules/email-customizer/user-email-customizer.php:198
2113
+ msgid "Unapproved User Notification"
2114
+ msgstr "Notificatie Afgekeurde Gebruiker"
2115
+
2116
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2117
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2118
+ msgid "Edit-profile Form"
2119
+ msgstr "Bewerk Profiel Formulier"
2120
+
2121
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2122
+ #: ../modules/multiple-forms/register-forms.php:13
2123
+ #: ../modules/user-listing/userlisting.php:13
2124
+ msgid "Add New"
2125
+ msgstr "Voeg nieuwe toe"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2128
+ msgid "Add new Edit-profile Form"
2129
+ msgstr "Voeg nieuw Bewerk Profiel Formulier toe"
2130
+
2131
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2132
+ msgid "Edit the Edit-profile Forms"
2133
+ msgstr "Bewerk de Bewerk Profiel Formulieren"
2134
+
2135
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2136
+ msgid "New Edit-profile Form"
2137
+ msgstr "Nieuw Bewerk Profiel Formulier"
2138
+
2139
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2141
+ msgid "Edit-profile Forms"
2142
+ msgstr "Bewerk Profiel Formulieren"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2145
+ msgid "View the Edit-profile Form"
2146
+ msgstr "Bekijk het Bewerk Profiel Formulier"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2149
+ msgid "Search the Edit-profile Forms"
2150
+ msgstr "Zoek de Bewerk Profiel Formulieren"
2151
+
2152
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2153
+ msgid "No Edit-profile Form found"
2154
+ msgstr "Geen Bewerk Profiel Formulier gevonden"
2155
+
2156
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2157
+ msgid "No Edit-profile Forms found in trash"
2158
+ msgstr "Geen Bewerk Profiel Formulieren in prullenbak gevonden"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2161
+ #: ../modules/multiple-forms/register-forms.php:138
2162
+ #: ../modules/user-listing/userlisting.php:1029
2163
+ msgid "Shortcode"
2164
+ msgstr "Shortcode"
2165
+
2166
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2167
+ #: ../modules/multiple-forms/register-forms.php:159
2168
+ #: ../modules/user-listing/userlisting.php:1050
2169
+ msgid "(no title)"
2170
+ msgstr "(geen titel)"
2171
+
2172
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2173
+ #: ../modules/multiple-forms/register-forms.php:178
2174
+ #: ../modules/user-listing/userlisting.php:1070
2175
+ msgid "The shortcode will be available after you publish this form."
2176
+ msgstr "De shortcode is beschikbaar nadat je formulier hebt geplaatst."
2177
+
2178
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2179
+ #: ../modules/multiple-forms/register-forms.php:180
2180
+ #: ../modules/user-listing/userlisting.php:1072
2181
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2182
+ msgstr "Gebruik deze shortcode op de pagina waarop formulier geplaatst moet worden:"
2183
+
2184
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2185
+ #: ../modules/multiple-forms/register-forms.php:184
2186
+ #: ../modules/user-listing/userlisting.php:1076
2187
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2188
+ msgstr "<span style=\"color:red;\">Attentie:</span> als je formulier titel wijzigt zal ook de shortcode wijzigen!"
2189
+
2190
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2191
+ #: ../modules/multiple-forms/register-forms.php:190
2192
+ #: ../modules/user-listing/userlisting.php:1090
2193
+ msgid "Form Shortcode"
2194
+ msgstr "Formulier Shortcode"
2195
+
2196
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2197
+ #: ../modules/multiple-forms/register-forms.php:230
2198
+ msgid "Whether to redirect the user to a specific page or not"
2199
+ msgstr "Of je de gebruiker wilt doorverwijzen naar een bepaalde pagina of niet"
2200
+
2201
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2202
+ #: ../modules/multiple-forms/register-forms.php:231
2203
+ msgid "Display Messages"
2204
+ msgstr "Toon Berichten"
2205
+
2206
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
+ #: ../modules/multiple-forms/register-forms.php:231
2208
+ msgid "Allowed time to display any success messages (in seconds)"
2209
+ msgstr "Toegestane tijd om succes berichten te tonen (in seconden)"
2210
+
2211
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2212
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2213
+ msgstr "Specificeer de URL van de pagina waar gebruiker naar doorverwezen wordt nadat ze hun profiel geupdate hebben middels dit formulier <br/>Gebruik dit formaat: http://www.mysite.com"
2214
+
2215
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2216
+ msgid "After Profile Update..."
2217
+ msgstr "Na Updaten Profiel..."
2218
+
2219
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2220
+ #: ../modules/multiple-forms/register-forms.php:260
2221
+ msgid "Add New Field to the List"
2222
+ msgstr "Voeg nieuw Veld aan Lijst toe"
2223
+
2224
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2225
+ #: ../modules/multiple-forms/register-forms.php:264
2226
+ msgid "Choose one of the supported fields you manage <a href=\""
2227
+ msgstr "Kies 1 van de ondersteunde velden die je beheert <a href=\""
2228
+
2229
+ #: ../modules/multiple-forms/multiple-forms.php:407
2230
+ msgid "<pre>Title (Type)</pre>"
2231
+ msgstr "<pre>Titel (Type)</pre>"
2232
+
2233
+ #: ../modules/multiple-forms/multiple-forms.php:233
2234
+ msgid "You need to specify the title of the form before creating it"
2235
+ msgstr "Je moet de titel van het formulier specificeren voordat je het aanmaakt"
2236
+
2237
+ #: ../modules/multiple-forms/register-forms.php:11
2238
+ #: ../modules/multiple-forms/register-forms.php:12
2239
+ msgid "Registration Form"
2240
+ msgstr "Registratie Formulier"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:14
2243
+ msgid "Add new Registration Form"
2244
+ msgstr "Voeg nieuw Registratie Formulier toe"
2245
+
2246
+ #: ../modules/multiple-forms/register-forms.php:15
2247
+ msgid "Edit the Registration Forms"
2248
+ msgstr "Bewerk de Registratie Formulieren"
2249
+
2250
+ #: ../modules/multiple-forms/register-forms.php:16
2251
+ msgid "New Registration Form"
2252
+ msgstr "Nieuw Registratie Formulier"
2253
+
2254
+ #: ../modules/multiple-forms/register-forms.php:17
2255
+ #: ../modules/multiple-forms/register-forms.php:23
2256
+ msgid "Registration Forms"
2257
+ msgstr "Registratie Formulieren"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:18
2260
+ msgid "View the Registration Form"
2261
+ msgstr "Bekijk het Registratie Formulier"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:19
2264
+ msgid "Search the Registration Forms"
2265
+ msgstr "Zoek de Registratie Formulieren"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:20
2268
+ msgid "No Registration Form found"
2269
+ msgstr "Geen Registratie Formulier gevonden"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:21
2272
+ msgid "No Registration Forms found in trash"
2273
+ msgstr "Geen Registratie Formulieren in prullenbak gevonden"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:219
2276
+ msgid "Default Role"
2277
+ msgstr "Standaard Rol"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:228
2280
+ msgid "Set Role"
2281
+ msgstr "Rol Instellen"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:228
2284
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2285
+ msgstr "Kies welke rol gebruiker heeft na registratie<br/>Indien niet gespecificeerd, standaard de rol van de WordPress instellingen"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:229
2288
+ msgid "Automatically Log In"
2289
+ msgstr "Automatisch Inloggen"
2290
+
2291
+ #: ../modules/multiple-forms/register-forms.php:229
2292
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2293
+ msgstr "Of de nieuwe gebruiker automatisch ingelogd wordt of niet<br/>Werkt alleen op losse websites zonder geactiveerde \"Goedkeuring Beheerder\" en \"E-mail Bevestiging\" functies<br/>WAARSCHUWING: Als registratie formulier gecached wordt zal inloggen niet werken"
2294
+
2295
+ #: ../modules/multiple-forms/register-forms.php:232
2296
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2297
+ msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen wordt als ze dit formulier gebruiken<br/>Gebruik dit formaat: http://www.mysite.com"
2298
+
2299
+ #: ../modules/multiple-forms/register-forms.php:238
2300
+ msgid "After Registration..."
2301
+ msgstr "Na Registratie..."
2302
+
2303
+ #: ../modules/user-listing/class-userlisting.php:458
2304
+ #: ../modules/user-listing/userlisting.php:624
2305
+ #: ../modules/user-listing/userlisting.php:842
2306
+ #: ../modules/user-listing/userlisting.php:885
2307
+ #: ../modules/user-listing/userlisting.php:1209
2308
+ msgid "Search Users by All Fields"
2309
+ msgstr "Zoek Gebruikers via Alle Velden"
2310
+
2311
+ #: ../modules/user-listing/userlisting.php:14
2312
+ msgid "Add new User Listing"
2313
+ msgstr "Voeg nieuwe Gebruikersweergave toe"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:15
2316
+ msgid "Edit the User Listing"
2317
+ msgstr "Bewerk de Gebruikersweergave"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:16
2320
+ msgid "New User Listing"
2321
+ msgstr "Nieuwe Gebruikersweergave"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:18
2324
+ msgid "View the User Listing"
2325
+ msgstr "Bekijk de Gebruikersweergave"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:19
2328
+ msgid "Search the User Listing"
2329
+ msgstr "Zoek de Gebruikersweergave"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:20
2332
+ msgid "No User Listing found"
2333
+ msgstr "Geen Gebruikersweergave gevonden"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:21
2336
+ msgid "No User Listing found in trash"
2337
+ msgstr "Geen Gebruikersweergave in prullenbak gevonden"
2338
+
2339
+ #: ../modules/user-listing/userlisting.php:97
2340
+ msgid "Display name as"
2341
+ msgstr "Toon naam als"
2342
+
2343
+ #: ../modules/user-listing/userlisting.php:110
2344
+ msgid "Url"
2345
+ msgstr "URL"
2346
+
2347
+ #: ../modules/user-listing/userlisting.php:118
2348
+ #: ../modules/user-listing/userlisting.php:1118
2349
+ msgid "Registration Date"
2350
+ msgstr "Registratiedatum"
2351
+
2352
+ #: ../modules/user-listing/userlisting.php:119
2353
+ #: ../modules/user-listing/userlisting.php:1122
2354
+ msgid "Number of Posts"
2355
+ msgstr "Aantal Berichten"
2356
+
2357
+ #: ../modules/user-listing/userlisting.php:123
2358
+ msgid "More Info"
2359
+ msgstr "Meer Info"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:124
2362
+ msgid "More Info Url"
2363
+ msgstr "Meer Info URL"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:125
2366
+ msgid "Avatar or Gravatar"
2367
+ msgstr "Avatar or Gravatar"
2368
+
2369
+ #: ../modules/user-listing/userlisting.php:153
2370
+ msgid "Meta Variables"
2371
+ msgstr "Meta Variabelen"
2372
+
2373
+ #: ../modules/user-listing/userlisting.php:159
2374
+ msgid "Sort Variables"
2375
+ msgstr "Sorteer Variabelen"
2376
+
2377
+ #: ../modules/user-listing/userlisting.php:163
2378
+ #: ../modules/user-listing/userlisting.php:190
2379
+ msgid "Extra Functions"
2380
+ msgstr "Extra Functies"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:165
2383
+ msgid "Pagination"
2384
+ msgstr "Paginering"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:166
2387
+ msgid "Search all Fields"
2388
+ msgstr "Zoek alle Velden"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:192
2391
+ msgid "Go Back Link"
2392
+ msgstr "Ga Terug Link"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:210
2395
+ msgid "All-userlisting Template"
2396
+ msgstr "Alle gebruikersweergave Template"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:213
2399
+ msgid "Single-userlisting Template"
2400
+ msgstr "Enkele gebruikersweergave Template"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:330
2403
+ msgid "You do not have permission to view this user list"
2404
+ msgstr "Je hebt geen toestemming om deze gebruikersweergave te bekijken"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:343
2407
+ msgid "You do not have the required user role to view this user list"
2408
+ msgstr "Je hebt niet de vereiste gebruikersrol om deze gebruikersweergave te bekijken"
2409
+
2410
+ #: ../modules/user-listing/userlisting.php:519
2411
+ msgid "First/Lastname"
2412
+ msgstr "Voor/Achternaam"
2413
+
2414
+ #: ../modules/user-listing/userlisting.php:525
2415
+ msgid "Sign-up Date"
2416
+ msgstr "Aanmeld Datum"
2417
+
2418
+ #: ../modules/user-listing/userlisting.php:534
2419
+ #: ../modules/user-listing/userlisting.php:1121
2420
+ msgid "Display Name"
2421
+ msgstr "Scherm Naam"
2422
+
2423
+ #: ../modules/user-listing/userlisting.php:543
2424
+ msgid "Posts"
2425
+ msgstr "Berichten"
2426
+
2427
+ #: ../modules/user-listing/userlisting.php:546
2428
+ #: ../modules/user-listing/userlisting.php:1126
2429
+ msgid "Aim"
2430
+ msgstr "Aim"
2431
+
2432
+ #: ../modules/user-listing/userlisting.php:549
2433
+ #: ../modules/user-listing/userlisting.php:1127
2434
+ msgid "Yim"
2435
+ msgstr "Yim"
2436
+
2437
+ #: ../modules/user-listing/userlisting.php:552
2438
+ #: ../modules/user-listing/userlisting.php:1128
2439
+ msgid "Jabber"
2440
+ msgstr "Jabber"
2441
+
2442
+ #: ../modules/user-listing/userlisting.php:701
2443
+ msgid "Click here to see more information about this user"
2444
+ msgstr "Klik hier om meer informatie over deze gebruiker te bekijken"
2445
+
2446
+ #: ../modules/user-listing/userlisting.php:701
2447
+ msgid "More..."
2448
+ msgstr "Meer..."
2449
+
2450
+ #: ../modules/user-listing/userlisting.php:704
2451
+ msgid "Click here to see more information about this user."
2452
+ msgstr "Klik hier om meer informatie over deze gebruiker te bekijken."
2453
+
2454
+ #: ../modules/user-listing/userlisting.php:796
2455
+ #: ../modules/user-listing/userlisting.php:799
2456
+ msgid "Click here to go back"
2457
+ msgstr "Klik hier om terug te gaan"
2458
+
2459
+ #: ../modules/user-listing/userlisting.php:796
2460
+ msgid "Back"
2461
+ msgstr "Terug"
2462
+
2463
+ #: ../modules/user-listing/userlisting.php:829
2464
+ msgid "&laquo;&laquo; First"
2465
+ msgstr "&laquo;&laquo; Eerste"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:830
2468
+ msgid "&laquo; Prev"
2469
+ msgstr "&laquo; Volgende"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:831
2472
+ msgid "Next &raquo; "
2473
+ msgstr "Vorige &raquo;"
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:832
2476
+ msgid "Last &raquo;&raquo;"
2477
+ msgstr "Laatste &raquo;&raquo;"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:861
2480
+ msgid "You don't have any pagination settings on this userlisting!"
2481
+ msgstr "Je hebt geen paginering instellingen op deze gebruikersweergave!"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:902
2484
+ msgid "Search"
2485
+ msgstr "Zoek"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:903
2488
+ msgid "Clear Results"
2489
+ msgstr "Wis Resultaten"
2490
+
2491
+ #: ../modules/user-listing/userlisting.php:1079
2492
+ msgid "Extra shortcode parameters"
2493
+ msgstr "Extra schortcode parameters"
2494
+
2495
+ #: ../modules/user-listing/userlisting.php:1081
2496
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2497
+ msgstr "toont gebruikers met een bepaalde meta-waarde in een bepaald (extra) meta-veld"
2498
+
2499
+ #: ../modules/user-listing/userlisting.php:1082
2500
+ msgid "Example:"
2501
+ msgstr "Voorbeeld:"
2502
+
2503
+ #: ../modules/user-listing/userlisting.php:1084
2504
+ msgid "Remember though, that the field-value combination must exist in the database."
2505
+ msgstr "Let er op, dat de veld-waarde combinatie in de database aanwezig moet zijn."
2506
+
2507
+ #: ../modules/user-listing/userlisting.php:1138
2508
+ msgid "Random (very slow on large databases > 10K user)"
2509
+ msgstr "Willekeurig (traag in grote databases > 10.000 gebruikers)"
2510
+
2511
+ #: ../modules/user-listing/userlisting.php:1151
2512
+ msgid "Roles to Display"
2513
+ msgstr "Te tonen Rollen"
2514
+
2515
+ #: ../modules/user-listing/userlisting.php:1151
2516
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2517
+ msgstr "Beperk de gebruikersweergave tot deze geselecteerde rollen<br/>Indien niet gespecificeerd, standaard alle bestaande rollen"
2518
+
2519
+ #: ../modules/user-listing/userlisting.php:1152
2520
+ msgid "Number of Users/Page"
2521
+ msgstr "Aantal gebruikers/Pagina"
2522
+
2523
+ #: ../modules/user-listing/userlisting.php:1153
2524
+ msgid "Default Sorting Criteria"
2525
+ msgstr "Standaard Criteria Sortering"
2526
+
2527
+ #: ../modules/user-listing/userlisting.php:1153
2528
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2529
+ msgstr "Stel de standaard criteria sortering in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
2530
+
2531
+ #: ../modules/user-listing/userlisting.php:1154
2532
+ msgid "Default Sorting Order"
2533
+ msgstr "Standaard Criteria Volgorde"
2534
+
2535
+ #: ../modules/user-listing/userlisting.php:1154
2536
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2537
+ msgstr "Stel de standaard criteria volgorde in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
2538
+
2539
+ #: ../modules/user-listing/userlisting.php:1155
2540
+ msgid "Avatar Size (All-userlisting)"
2541
+ msgstr "Avatar Grootte (Alle gebruikersweergave)"
2542
+
2543
+ #: ../modules/user-listing/userlisting.php:1155
2544
+ msgid "Set the avatar size on the all-userlisting only"
2545
+ msgstr "Stel de Avatar Grootte in voor de alle gebruikersweergave"
2546
+
2547
+ #: ../modules/user-listing/userlisting.php:1156
2548
+ msgid "Avatar Size (Single-userlisting)"
2549
+ msgstr "Avatar Grootte (Losse gebruikersweergave)"
2550
+
2551
+ #: ../modules/user-listing/userlisting.php:1156
2552
+ msgid "Set the avatar size on the single-userlisting only"
2553
+ msgstr "Stel de Avatar Grootte in voor de losse gebruikersweergave "
2554
+
2555
+ #: ../modules/user-listing/userlisting.php:1157
2556
+ msgid "Visible only to logged in users?"
2557
+ msgstr "Alleen zichtbaar voor ingelogde gebruikers?"
2558
+
2559
+ #: ../modules/user-listing/userlisting.php:1157
2560
+ msgid "The userlisting will only be visible only to the logged in users"
2561
+ msgstr "De gebruikersweergave is alleen zichtbaar voor ingelogde gebruikers"
2562
+
2563
+ #: ../modules/user-listing/userlisting.php:1158
2564
+ msgid "Visible to following Roles"
2565
+ msgstr "Zichtbaar voor de volgende Rollen"
2566
+
2567
+ #: ../modules/user-listing/userlisting.php:1158
2568
+ msgid "The userlisting will only be visible to the following roles"
2569
+ msgstr "De gebruikersweergave is alleen zichtbaar voor de volgende rollen"
2570
+
2571
+ #: ../modules/user-listing/userlisting.php:1164
2572
+ msgid "Userlisting Settings"
2573
+ msgstr "Instellingen Gebruikersweergave"
2574
+
2575
+ #: ../modules/user-listing/userlisting.php:1185
2576
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2577
+ msgstr "Je moet de Gebruikersweergave functie activeren vanuit de \"Modulen\" tab!"
2578
+
2579
+ #: ../modules/user-listing/userlisting.php:1185
2580
+ msgid "You can find it in the Profile Builder menu."
2581
+ msgstr "Je kunt dit niet in het menu van Profile Builder vinden."
2582
+
2583
+ #: ../modules/user-listing/userlisting.php:1335
2584
+ msgid "No results found!"
2585
+ msgstr "Geen resultaten gevonden!"
translation/profilebuilder-pt_BR.mo ADDED
Binary file
translation/profilebuilder-pt_BR.po ADDED
@@ -0,0 +1,2578 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Portuguese (Brazil)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-11 09:55:42+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "Mostrar/Ocultar a Barra de Admin no site"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "Configurações da Barra de Admin"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "Função do Usuário"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "Visibilidade"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "Padrão"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "Mostrar"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "Ocultar"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "Salvar Alterações"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%s\")"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "Configurações Gerais"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>ERRO</strong>: O password deve ser maior que"
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "Muito fraco"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "Fraco"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "Médio"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "Forte"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>ERRO</strong>: O password deve ter no mínimo"
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "Adicionar Campo"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "Salvar Configurações"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "Informações Básicas"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "Versão %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "A melhor forma de criar registros no front-end, editar perfis e formulários de login."
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "Para interação com usuários modernos"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "Login"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "Login rápido e fácil usando <strong class=\"nowrap\">[wppb-login]</strong> shortcode ou um widget."
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "Registro"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "Incríveis possibilidades de registro totalmente customizáveis usando o <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "Editar Perfil"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "Edite diretamente os formulários de perfil usando <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "Funções Extras"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "Funções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams."
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "Habilite as funções extras"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "Recuperar Password"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "Permita aos usuários recuperarem seu password diretamente na tela usando o [wppb-recover-password]."
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "Aprovação do Admin (*)"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "Você decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress."
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "Confirmação de Email"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "Garanta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails."
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "Tamanho mínimo do password e medidor de força"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "Elimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password."
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "Login com Email ou Usuário"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "Permite aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site."
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "Customize seus formulários da forma que quiser (*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa."
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "Campos Extra de Perfil estão disponíveis nas versões Hobbyist ou PRO"
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "Comece já a usar os campos extra"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "Upload de Avatar"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "Uploads Genéricos"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "Checkbox de acordo com termos"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "Selecionador de datas"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "Selecionador de País"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "Selecionador de Fuso Horários"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "Input / Input Oculto"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "Checkbox"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "Select"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "Radio Buttons"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "Área de Texto"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "Módulos Poderosos (**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "Tudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO."
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "Habilite seus módulos"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "Saiba mais sobre os módulos PRO"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "Listagem de usuários"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "Templates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. "
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "Para criar uma página contendo os usuários registrados no site/blog, insira o seguinte shortcode na página de sua preferência: <strong class=\"nowrap\">[wppb-list-users]</strong>."
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "Customizador de Emails"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "Personalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin."
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "Redirecionamentos customizados"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "Mantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques."
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "Múltiplos formulários de Registro"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários."
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "Múltiplos formulários de edição de perfil"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários."
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** disponível apenas na versão %1s Pro %2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "Sim"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "Você pode encontrar o arquivo padrão aqui: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"Email de Confirmação\" Ativado:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "Não"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "Em instalações single-site isso funciona apenas no front-end. É recomendado redirecionar o registro padrão do WP para um do Profile Builder, usando o addon \"Custom Redirects\"."
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "A função \"Confirmação de Email\" está ativa (por default) em instalações WPMU."
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "Página de abertura da \"Confirmação de Email\""
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "Páginas existentes"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "Especifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário."
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"Aprovação do Admin\" Ativada:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "Função \"Aprovação do Admin\":"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s."
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "Permitir usuários fazerem login com:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "Usuário"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "Email"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "Tamanho mínimo do password:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimo"
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "Força mínima do password:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "Desabilitado"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "Gerenciar campos"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "Gerenciar campos padrões e extras"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "Título do campo"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "Título do campo"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "Campo"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Nome-Meta"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "Use isso em conjunto com as funções do WordPress para mostrar o valor na página de sua escolha<br/>Completado automaticamente, mas em alguns casos pode ser editado (nesse caso deve ser um valor único)<br/>Mudar isso pode causar lentidão em caso de uma lista muito grande de usuários"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "ID"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "Um ID único, gerado automaticamente para esse campo em particular<br/>Você pode usar isso em conjunto com filtros para filtrar esse elemento se necessário<br/>Não pode ser editado"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "Descrição"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "Digite uma descrição (detalhada) da opção para os usuários lerem<br/>Opcional"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "Contagem de linhas"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "Especifique o número de linhas para o campo do tipo \"Área de Texto\"<br/>Se não especificado, o padrão são 5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "Extensões de imagens permitidas"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões de imagens (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "Extensões permitidas para upload"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "Tamanho do Avatar"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'<br/>Se não especificado, o padrão são 100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "Formato da data"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "Especifique o formato da data usando o Selecionador de Datas<br/>Opções válidas: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Se não especificado, o padrão é mm/dd/yy"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "Termos de Acordo"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "Digite uma descrição detalhada dos termos de acordo para o usuário ler.<br/>Links podem ser inseridos usando uma sintaxe HTML padrão: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "Opções"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "Rótulos"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "Entre com uma lista de rótulos separados por vírgula<br/>Visível para o usuário"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "Chave pública"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "A chave pública do Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "Chave privada"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "A chave privada do Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "Valor padrão"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "Valor padrão do campo"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "Opção padrão"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "Especifique a opção que será selecionada por padrão"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "Opção(es) padrão"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "Especifique a opção que será marcada por padrão<br/>Se houver múltiplos valores, separe-os com uma \",\" (vírgula)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "Conteúdo padrão"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "Valor padrão da Área de Texto"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "Obrigatório"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "Se o campo é obrigatório ou não"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "Sobrepor existente"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "Escolhendo \"Sim\" você adicionará o campo à lista, mas irá sobrescrever qualquer outro campo na base de dados que tenha o mesmo meta-name<br/>Use por seu próprio risco"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "Propriedades do campo"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "Registro & Edição de Perfil"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "Nome"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr "Nomes de usuários não podem ser mudados."
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "Primeiro Nome"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "Último nome"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "Apelido"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "Mostrar nome publicamente como"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "Informações de Contato"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "E-mail"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "Website"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "Yahoo IM"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "Sobre você"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "Informação biográfica"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "Compartilhe um pouco de sua informação biográfica para preencher o seu perfil. Isso poderá ser mostrado publicamente."
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "Password"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "Digite seu password."
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "Repita o Password"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "Digite seu password novamente."
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "Você deve selecionar um campo\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "Por favor escolha um tipo de campo diferente pois já existe um desses em seu formulário (ele deve ser único)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "O tamanho do avatar digitado não está entre 20 e 200\n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "O tamanho do avatar digitado não é numérico\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "O número de linha digitado não é numérico\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "Você deve digitar um valor para o número de linha\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "Você deve digitar a chave pública\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "Você deve digitar a chave privada\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "Você deve digitar um valor para o formato de data\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "O meta-name já está sendo usado\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "A seguinte opção não coincide com as da lista de opções: %s\n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "Esse campo já foi adicionado a esse formulário\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Obrigatório</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "Editar"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "Deletar"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "Use esses shortcodes nas páginas que você quer que o formulário seja mostrado:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "Se você tem interesse em mostrar diferentes campos nos formulários de registro ou de perfil, por favor use os módulos de Registro Múltiplo & Editor de Formulários de Perfil"
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "Registre sua versão"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "Registre a versão"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico."
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "Número de série:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "O número de série foi validado com sucesso!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "O número de série digitado não pôde ser validado!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "O número de série não pôde ser validado porque encontra-se expirado!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "Conteúdo"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "Editar esse item"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "Deletar esse item"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "Por favor digite um valor para o campo obrigatório"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "Selecionar Arquivo"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "Remover"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "Sincronizar WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "Sincronizar Tradução WCK"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "Você pode adicionar a informação para %s depois de adicionar uma entrada"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "Upload "
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "Nenhum item encontrado."
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "Ações em massa"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "Aplicar"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "Mostrar todas as datas"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "Visualizar Lista"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "Visualizar Resumo"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s pendente"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s de %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "Selecionar Tudo"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "A validação do usuário falhou - o avatar não foi deletado!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "A validação do usuário falhou - o anexo não foi deletado!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "Indicador de força"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "Tamanho mínimo de"
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "Aprovação do Admin"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "Você deseja"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente"
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "Usuário aprovado com sucesso!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "Usuário reprovado com sucesso!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "Usuário deletado com sucesso!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "Houve um erro ou então você não tem permissão para essa ação!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente."
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "Usuários aprovados com sucesso!"
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "Usuários reprovados com sucesso!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "Usuários deletados com sucesso!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "Sua conta em %1$s foi aprovada!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "aprovado"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "O administrador acabou de aprovar sua conta em %1$s (%2$s)."
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "Sua conta em %1$s foi reprovada!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "reprovado"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "O administrador acabou de reprovar sua conta em %1$s (%2$s)."
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>ERRO</strong>: Sua conta precisa ser confirmada pelo administrador antes de você fazer o login."
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Recuperação de Password\""
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "Visualizar ou Editar"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "deletar esse usuário?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "reprovar esse usuário?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "Reprovar"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "aprovar esse usuário?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "Aprovar"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "Primeiro nome"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "Último nome"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "Função"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "Registrado"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "Status do usuário"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "Você deseja aprovar em massa os usuários selecionados?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "Você deseja reprovar em massa os usuários selecionados?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "Você deseja deletar em massa os usuários selecionados?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "Desculpe, mas você não tem permissão para fazer isso!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "Aprovado"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "Reprovado"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "Todos os usuários"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "deletar esse usuário da tabela _signups?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "confirma esse seu email?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "Confirmar Email"
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "reenviar o link de atiavação?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "Reenviar o email de ativação"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s não pôde ser deletado"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "Todos os usuários foram deletados com sucesso"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "Os usuários selecionados foram ativados"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "Usuários com endereço de email não confirmados"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "Houve um erro executando essa ação!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "O usuário selecionado não pôde ser deletado"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "Email de notificação reenviado ao usuário"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] Ativar %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "Para ativar o usuário, por favor clique no seguinte link:\n"
1269
+ "\n"
1270
+ "%s%s%s\n"
1271
+ "\n"
1272
+ "Depois de ativar, você ainda receberá um outro email com o seu login."
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "Usuário não pôde ser criado!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "O usuário já está ativado!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "Houve um erro na tentativa de ativar o usuário"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "Um novo assinante foi registrado!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "Novo assinante em %1$s.<br/><br/>Usuário:%2$s<br/>E-mail:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "A função de \"Aprovação do Admin\" estava ativada no momento do registro então por favor lembre-se de que precisa aprovar esse usuário antes dele/dela fazer o login!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] Informações de sua nova conta"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "Bemvindo ao %1$s!<br/><br/><br/>Seu usuário é::%2$s e password:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "Antes de acessar sua conta, ela precisa ser aprovada pelo administrador. Você será notificado via email quando isso acontecer."
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "Esse widget de login permite adicionar um formulário de login na barra lateral."
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Widget de Login Profile Builder"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "Registrar"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "Título:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "URL para redirecionar após login (opcional):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "ULR da página de registro (opcional):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "URL da página de recuperação de password (opcional):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "Os nomes de usuários não podem ser mudados."
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "Somente o administrador pode adicionar novos usuários."
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "Usuários podem se registrar ou você pode criá-los manualmente aqui."
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "Usuários não podem atualmente se registrarem, mas você pode criá-los manualmente aqui."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "Você já está logado como %1s. Você não precisa de outra conta. %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "Desconectar dessa conta."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "Desconectar"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "Você deve estar logado para editar seu perfil."
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "aqui"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "A conta %1s foi criada com sucesso!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação."
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer."
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "Seu perfil foi atualizado com sucesso!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "Houve um erro no formulário enviado"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "Adicionar usuário"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "Atualizar"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "O avatar foi deletado com sucesso!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "O seguinte anexo foi deletado com sucesso:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "Enviar essas credenciais via email."
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "ERRO"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "O password digitado está incorreto."
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "Password Achados e Perdidos."
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "Perdeu seu password"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "Ambos os campos estão vazios."
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "Você está logado como %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "Desconectar dessa conta"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "Desconectar"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Resetar Password\""
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "Resetar Password"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "Por favor digite seu usuário ou email."
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "Você receberá um link para criar um novo password via email."
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "Usuário ou E-mail"
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "Criar novo password"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "O usuário digitado não foi encontrado na base de dados!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "Por favor confirme se você digitou o usuário corretamente."
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "Cheque seu e-mail para o link de confirmação."
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "Alguém solicitou que o reset do password da seguinte conta:<b>%1$s</b><br/>Se isso foi um erro, apenas ignore esse email e nada acontecerá.<br/>Para resetar seu password, visite o seguinte link:%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "Reset do password de \"%1$s\""
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "Houve um erro na tentativa de enviar o link de ativação para %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "O endereço de email não foi encontrado na base de dados!"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "Por favor cheque se você digitou o endereço de email corretamente."
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>O password deve ter o tamanho mínimo de"
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>O password deve ter a força mínima de"
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "Seu password foi alterado com sucesso!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "Você resetou com sucesso o password de: %1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "Password resetado com sucesso para %1$s em \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s solicitou uma alteração de password através da função de reset de password.<br/>Seu novo password é:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "Os passwords digitados não conferem!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "ERRO:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "Chave inválida!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "Chave de ativação inválida!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "Esse usuário está ativo!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "Esse usuário já está ativado!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "Seu email foi confirmado com sucesso."
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "Houve um erro na tentativa de ativar o usuário."
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "O email digitado não é um endereço válido."
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "Esse email está reservado para ser usado em breve."
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "Por favor tente um diferente!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "Esse email já está sendo usado."
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "Os passwords não conferem"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "Esse usuário já existe."
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "Esse usuário está reservado para ser usado em breve."
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "tamanho máximo de upload"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "Avatar atual: Nenhum avatar carregado"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "Avatar"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "Clique para ver o avatar atual"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "O avatar não pode ser deletado (foi definido como obrigatório pelo administrador)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "Você tem certeza que deseja deletar esse avatar?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "Clique para deletar o avatar atual"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "obrigatório"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "Avatar atual"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "Nenhum avatar carregado"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "A extensão do arquivo não confere"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "O arquivo carregado excede o tamanho máximo de upload especificado em php.ini"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "O arquivo carregado excede a diretiva MAX_FILE_SIZE do php.ini"
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "O arquivo pôde ser apenas parcialmente carregado"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "Nenhum arquivo foi selecionado"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "A pasta temporária de upload não foi encontrada no sistema"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "O arquivo falhou ao tentar gravar no disco"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "Uma extensão PHP parou a carga do arquivo"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "Um erro desconhecido ocorreu"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "Não foi possível abrir o socket!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API de"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "Por motivos de segurança, você deve passar o IP remoto para o reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "Para usar o reCAPTCHA Mailhide, você precisa ter o módulo php mcrypt instalado!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "Para usar o reCAPTCHA Mailhide, você precisa se cadastrar para ter uma chave pública e privada; você pode fazer isso em"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API privada de:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "Arquivo atual: Nenhum anexo carregado"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "Arquivo atual"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "Clique para ver o anexo atual"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "O anexo não pode ser deletado (definido como obrigatório pelo administrador)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "Você tem certeza que deseja deletar esse anexo?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "Clique para deletar o anexo atual"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "Nenhum anexo carregado"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "A extensão do arquivo não é permitida"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "O arquivo pode ser apenas parcialmente carregado"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "Esse campo não foi atualizado pois houve um erro desconhecido"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "Módulos"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "Aqui você pode ativar/desativar os módulos disponíveis para o Profile Builder."
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "Nome/Descrição"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "Status"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "Ativo"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "Inativo"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "Customizador do Email Admin"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "Customizador do Email do Usuário"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "Salvar"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "Redireciona na solicitação de página customizada"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "Ação"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "Redireciona"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "URL"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "Pós registro:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "Pós Login:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "Recuperar Password (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "Quando essa função estiver ativada, o usuário será redirecionado tanto da página padrão do WordPress quanto do link \"Perdeu seu password?\" para a página de login usada pelo Profile Builder."
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "Redireciona na solicitação de página padrão do WordPress:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "Página de Login Padrão do WordPress"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "Página de Logout Padrão do WordPress"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "Página de Registro Padrão do WordPress"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "Dashboard Padrão do WordPress (*)"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "Redireciona todas as funções EXCETO aquelas com privilégios de administrador (pode gerenciar opções)."
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "Essas configurações também são replicadas na página de configurações do \"Customizador de Emails do Usuário\" após serem salvas."
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "De (nome)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "De (email de resposta)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "Configurações comuns"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>New subscriber on {{site_name}}.</p>\n"
1943
+ "<p>Username:{{username}}</p>\n"
1944
+ "<p>E-mail:{{user_email}}</p>\n"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1947
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1948
+ #: ../modules/email-customizer/user-email-customizer.php:71
1949
+ #: ../modules/email-customizer/user-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:128
1951
+ #: ../modules/email-customizer/user-email-customizer.php:155
1952
+ #: ../modules/email-customizer/user-email-customizer.php:183
1953
+ msgid "Email Subject"
1954
+ msgstr "Assunto do Email"
1955
+
1956
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1957
+ msgid "Default Registration & Registration with Email Confirmation"
1958
+ msgstr "Registro padrão & Registro com confirmação de email"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1961
+ msgid ""
1962
+ "\n"
1963
+ "<p>New subscriber on {{site_name}}.</p>\n"
1964
+ "<p>Username:{{username}}</p>\n"
1965
+ "<p>E-mail:{{user_email}}</p>\n"
1966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1968
+ msgstr ""
1969
+ "\n"
1970
+ "\n"
1971
+ "<p>Novo assinante em {{site_name}}.</p>\n"
1972
+ "<p>Usuário:{{username}}</p>\n"
1973
+ "<p>E-mail:{{user_email}}</p>\n"
1974
+ "<p>A função de Aprovação do Admin estava ativada no momento do registro,\n"
1975
+ "então por favor lembre-se que você precisa aprovar esse usuário para que ele possa fazer o login!</p>\n"
1976
+
1977
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1978
+ #: ../modules/email-customizer/user-email-customizer.php:143
1979
+ msgid "Registration with Admin Approval"
1980
+ msgstr "Registro com aprovação do admin"
1981
+
1982
+ #: ../modules/email-customizer/email-customizer.php:7
1983
+ msgid "Available Tags"
1984
+ msgstr "Tags disponíveis"
1985
+
1986
+ #: ../modules/email-customizer/email-customizer.php:11
1987
+ msgid "User Meta"
1988
+ msgstr "Meta User"
1989
+
1990
+ #: ../modules/email-customizer/email-customizer.php:21
1991
+ msgid "Site Url"
1992
+ msgstr "URL do site"
1993
+
1994
+ #: ../modules/email-customizer/email-customizer.php:22
1995
+ msgid "Site Name"
1996
+ msgstr "Nome do site"
1997
+
1998
+ #: ../modules/email-customizer/email-customizer.php:25
1999
+ #: ../modules/user-listing/userlisting.php:126
2000
+ msgid "User Id"
2001
+ msgstr "ID do usuário"
2002
+
2003
+ #: ../modules/email-customizer/email-customizer.php:32
2004
+ msgid "Reply To"
2005
+ msgstr "Responder para"
2006
+
2007
+ #: ../modules/email-customizer/email-customizer.php:35
2008
+ msgid "Activation Key"
2009
+ msgstr "Chave de ativação"
2010
+
2011
+ #: ../modules/email-customizer/email-customizer.php:36
2012
+ msgid "Activation Url"
2013
+ msgstr "URL de ativação"
2014
+
2015
+ #: ../modules/email-customizer/email-customizer.php:37
2016
+ msgid "Activation Link"
2017
+ msgstr "Link de ativação"
2018
+
2019
+ #: ../modules/email-customizer/user-email-customizer.php:64
2020
+ msgid ""
2021
+ "\n"
2022
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2023
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2024
+ msgstr ""
2025
+ "\n"
2026
+ "\n"
2027
+ "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2028
+ "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2029
+
2030
+ #: ../modules/email-customizer/user-email-customizer.php:85
2031
+ msgid "Default Registration"
2032
+ msgstr "Registro padrão"
2033
+
2034
+ #: ../modules/email-customizer/user-email-customizer.php:91
2035
+ msgid ""
2036
+ "\n"
2037
+ "<p>To activate your user, please click the following link:<br/>\n"
2038
+ "{{{activation_link}}}</p>\n"
2039
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2040
+ msgstr ""
2041
+ "\n"
2042
+ "\n"
2043
+ "<p>Para ativar seu usuário, por favor clique no seguinte link:<br/>\n"
2044
+ "{{{activation_link}}}</p>\n"
2045
+ "<p>Após a ativação você receberá um email com suas credenciais.</p>\n"
2046
+
2047
+ #: ../modules/email-customizer/user-email-customizer.php:103
2048
+ msgid "[{{site_name}}] Activate {{username}}"
2049
+ msgstr "[{{site_name}}] Ativar {{username}}"
2050
+
2051
+ #: ../modules/email-customizer/user-email-customizer.php:114
2052
+ msgid "Registration with Email Confirmation"
2053
+ msgstr "Registro com confirmação de email"
2054
+
2055
+ #: ../modules/email-customizer/user-email-customizer.php:120
2056
+ msgid ""
2057
+ "\n"
2058
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2059
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2060
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2061
+ msgstr ""
2062
+ "\n"
2063
+ "\n"
2064
+ "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2065
+ "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2066
+ "<p>Antes de acessar sua conta, o administrador precisa aprová-la. Você será notificado por email quando isso acontecer.</p>\n"
2067
+
2068
+ #: ../modules/email-customizer/user-email-customizer.php:132
2069
+ msgid "A new account has been created for you on {{site_name}}"
2070
+ msgstr "Uma nova conta foi criada para você em {{site_name}}"
2071
+
2072
+ #: ../modules/email-customizer/user-email-customizer.php:148
2073
+ msgid ""
2074
+ "\n"
2075
+ "<h3>Good News!</h3>\n"
2076
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2077
+ msgstr ""
2078
+ "\n"
2079
+ "\n"
2080
+ "<h3>Boas notícias!</h3>\n"
2081
+ "<p>O administrador acaba de aprovar a sua conta: {{username}} em {{site_name}}.</p>\n"
2082
+
2083
+ #: ../modules/email-customizer/user-email-customizer.php:159
2084
+ msgid "Your account on {{site_name}} has been approved!"
2085
+ msgstr "Sua conta no {{site_name}} foi aprovada!"
2086
+
2087
+ #: ../modules/email-customizer/user-email-customizer.php:170
2088
+ msgid "User Approval Notification"
2089
+ msgstr "Notificação de aprovação de usuário"
2090
+
2091
+ #: ../modules/email-customizer/user-email-customizer.php:175
2092
+ msgid ""
2093
+ "\n"
2094
+ "<h3>Hello,</h3>\n"
2095
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2096
+ msgstr ""
2097
+ "\n"
2098
+ "<h3>Olá,</h3>\n"
2099
+ "<p>Infelizmente o administrador reprovou a criação de sua conta: {{username}} em {{site_name}}.</p>\n"
2100
+
2101
+ #: ../modules/email-customizer/user-email-customizer.php:187
2102
+ msgid "Your account on {{site_name}} has been unapproved!"
2103
+ msgstr "Sua conta no {{site_name}} foi reprovada!"
2104
+
2105
+ #: ../modules/email-customizer/user-email-customizer.php:198
2106
+ msgid "Unapproved User Notification"
2107
+ msgstr "Notificação de usuário reprovado"
2108
+
2109
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2110
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2111
+ msgid "Edit-profile Form"
2112
+ msgstr "Formulário de Edição de Perfil"
2113
+
2114
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2115
+ #: ../modules/multiple-forms/register-forms.php:13
2116
+ #: ../modules/user-listing/userlisting.php:13
2117
+ msgid "Add New"
2118
+ msgstr "Adicionar novo"
2119
+
2120
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2121
+ msgid "Add new Edit-profile Form"
2122
+ msgstr "Adicionar novo formulário de edição de perfil"
2123
+
2124
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2125
+ msgid "Edit the Edit-profile Forms"
2126
+ msgstr "Editar os formulários de edição de perfil"
2127
+
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2129
+ msgid "New Edit-profile Form"
2130
+ msgstr "Novo formulário de edição de perfil"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2133
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2134
+ msgid "Edit-profile Forms"
2135
+ msgstr "Formulários de Edição de Perfil"
2136
+
2137
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2138
+ msgid "View the Edit-profile Form"
2139
+ msgstr "Visualiza o formulário de edição de perfil"
2140
+
2141
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2142
+ msgid "Search the Edit-profile Forms"
2143
+ msgstr "Buscar os formulários de edição de perfil"
2144
+
2145
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2146
+ msgid "No Edit-profile Form found"
2147
+ msgstr "Nenhum formulário de edição de perfil encontrado"
2148
+
2149
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2150
+ msgid "No Edit-profile Forms found in trash"
2151
+ msgstr "Nenhum Formulário de Edição de Perdil encontrado na lixeira"
2152
+
2153
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2154
+ #: ../modules/multiple-forms/register-forms.php:138
2155
+ #: ../modules/user-listing/userlisting.php:1029
2156
+ msgid "Shortcode"
2157
+ msgstr "Shortcode"
2158
+
2159
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2160
+ #: ../modules/multiple-forms/register-forms.php:159
2161
+ #: ../modules/user-listing/userlisting.php:1050
2162
+ msgid "(no title)"
2163
+ msgstr "(sem título)"
2164
+
2165
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2166
+ #: ../modules/multiple-forms/register-forms.php:178
2167
+ #: ../modules/user-listing/userlisting.php:1070
2168
+ msgid "The shortcode will be available after you publish this form."
2169
+ msgstr "O shortcode estará disponível após a publicação desse formulário."
2170
+
2171
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2172
+ #: ../modules/multiple-forms/register-forms.php:180
2173
+ #: ../modules/user-listing/userlisting.php:1072
2174
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2175
+ msgstr "Use esse shortcode na página que deseja que o formulário seja mostrado:"
2176
+
2177
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2178
+ #: ../modules/multiple-forms/register-forms.php:184
2179
+ #: ../modules/user-listing/userlisting.php:1076
2180
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2181
+ msgstr "<span style=\"color:red;\">Nota:</span> alterar o título do formulário também altera o shortcode!"
2182
+
2183
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2184
+ #: ../modules/multiple-forms/register-forms.php:190
2185
+ #: ../modules/user-listing/userlisting.php:1090
2186
+ msgid "Form Shortcode"
2187
+ msgstr "Shortcode do formulário"
2188
+
2189
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2190
+ #: ../modules/multiple-forms/register-forms.php:230
2191
+ msgid "Whether to redirect the user to a specific page or not"
2192
+ msgstr "Se redireciona o usuário para uma página específica ou não"
2193
+
2194
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2195
+ #: ../modules/multiple-forms/register-forms.php:231
2196
+ msgid "Display Messages"
2197
+ msgstr "Mostrar mensagens"
2198
+
2199
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2200
+ #: ../modules/multiple-forms/register-forms.php:231
2201
+ msgid "Allowed time to display any success messages (in seconds)"
2202
+ msgstr "Tempo permitido para mostrar qualquer mensagem de sucesso (em segundos)"
2203
+
2204
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2205
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2206
+ msgstr "Especificar a URL da página que os usuários serão redirecionados após atualizarem seus perfis usando esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2207
+
2208
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2209
+ msgid "After Profile Update..."
2210
+ msgstr "Após a atualização do perfil..."
2211
+
2212
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2213
+ #: ../modules/multiple-forms/register-forms.php:260
2214
+ msgid "Add New Field to the List"
2215
+ msgstr "Adicoinar novo campo a lista"
2216
+
2217
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2218
+ #: ../modules/multiple-forms/register-forms.php:264
2219
+ msgid "Choose one of the supported fields you manage <a href=\""
2220
+ msgstr "Escolha um dos campos suportados que você gerencia <a href=\""
2221
+
2222
+ #: ../modules/multiple-forms/multiple-forms.php:407
2223
+ msgid "<pre>Title (Type)</pre>"
2224
+ msgstr "<pre>Título (Tipo)</pre>"
2225
+
2226
+ #: ../modules/multiple-forms/multiple-forms.php:233
2227
+ msgid "You need to specify the title of the form before creating it"
2228
+ msgstr "Você precisa especificar o título do formulário antes de criá-lo"
2229
+
2230
+ #: ../modules/multiple-forms/register-forms.php:11
2231
+ #: ../modules/multiple-forms/register-forms.php:12
2232
+ msgid "Registration Form"
2233
+ msgstr "Formulário de Registro"
2234
+
2235
+ #: ../modules/multiple-forms/register-forms.php:14
2236
+ msgid "Add new Registration Form"
2237
+ msgstr "Adicionar novo formulário de registro"
2238
+
2239
+ #: ../modules/multiple-forms/register-forms.php:15
2240
+ msgid "Edit the Registration Forms"
2241
+ msgstr "Editar os formulários de registro"
2242
+
2243
+ #: ../modules/multiple-forms/register-forms.php:16
2244
+ msgid "New Registration Form"
2245
+ msgstr "Novo formulário de registro"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:17
2248
+ #: ../modules/multiple-forms/register-forms.php:23
2249
+ msgid "Registration Forms"
2250
+ msgstr "Formulários de Registro"
2251
+
2252
+ #: ../modules/multiple-forms/register-forms.php:18
2253
+ msgid "View the Registration Form"
2254
+ msgstr "Visualizar o formulário de registro"
2255
+
2256
+ #: ../modules/multiple-forms/register-forms.php:19
2257
+ msgid "Search the Registration Forms"
2258
+ msgstr "Buscar os formulários de registro"
2259
+
2260
+ #: ../modules/multiple-forms/register-forms.php:20
2261
+ msgid "No Registration Form found"
2262
+ msgstr "Nenhum formulário de registro encontrado"
2263
+
2264
+ #: ../modules/multiple-forms/register-forms.php:21
2265
+ msgid "No Registration Forms found in trash"
2266
+ msgstr "Nenhum formulário de registro encontrado na lixeira"
2267
+
2268
+ #: ../modules/multiple-forms/register-forms.php:219
2269
+ msgid "Default Role"
2270
+ msgstr "Função padrão"
2271
+
2272
+ #: ../modules/multiple-forms/register-forms.php:228
2273
+ msgid "Set Role"
2274
+ msgstr "Ajustar Função"
2275
+
2276
+ #: ../modules/multiple-forms/register-forms.php:228
2277
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2278
+ msgstr "Escolha qual função o usuário terá após registrar-se<br/>Se não especificado, a função padrão será a definida nas configurações do WordPress"
2279
+
2280
+ #: ../modules/multiple-forms/register-forms.php:229
2281
+ msgid "Automatically Log In"
2282
+ msgstr "Login Automático"
2283
+
2284
+ #: ../modules/multiple-forms/register-forms.php:229
2285
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2286
+ msgstr "Se realizar automaticamente o login do usuário recém registrado ou não<br/>Funciona apenas em single-sites sem as funções de \"Aprovação do Admin\" e \"Confirmação de Email\" ativadas<br/>CUIDADO: Usar o cache do formulário de registro fará o login automático não funcionar"
2287
+
2288
+ #: ../modules/multiple-forms/register-forms.php:232
2289
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2290
+ msgstr "Especifique a URL da página que os usuários serão redirecionamentos após registrarem-se por esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2291
+
2292
+ #: ../modules/multiple-forms/register-forms.php:238
2293
+ msgid "After Registration..."
2294
+ msgstr "Após o registro..."
2295
+
2296
+ #: ../modules/user-listing/class-userlisting.php:458
2297
+ #: ../modules/user-listing/userlisting.php:624
2298
+ #: ../modules/user-listing/userlisting.php:842
2299
+ #: ../modules/user-listing/userlisting.php:885
2300
+ #: ../modules/user-listing/userlisting.php:1209
2301
+ msgid "Search Users by All Fields"
2302
+ msgstr "Buscar usuários por todos os campos"
2303
+
2304
+ #: ../modules/user-listing/userlisting.php:14
2305
+ msgid "Add new User Listing"
2306
+ msgstr "Adicionar nova listagem de usuário"
2307
+
2308
+ #: ../modules/user-listing/userlisting.php:15
2309
+ msgid "Edit the User Listing"
2310
+ msgstr "Editar a Listagem de Usuários"
2311
+
2312
+ #: ../modules/user-listing/userlisting.php:16
2313
+ msgid "New User Listing"
2314
+ msgstr "Nova listagem de usuário"
2315
+
2316
+ #: ../modules/user-listing/userlisting.php:18
2317
+ msgid "View the User Listing"
2318
+ msgstr "Visualizar a Listagem de Usuários"
2319
+
2320
+ #: ../modules/user-listing/userlisting.php:19
2321
+ msgid "Search the User Listing"
2322
+ msgstr "Buscar a listagem de usuários"
2323
+
2324
+ #: ../modules/user-listing/userlisting.php:20
2325
+ msgid "No User Listing found"
2326
+ msgstr "Nenhum registro de usuário encontrado"
2327
+
2328
+ #: ../modules/user-listing/userlisting.php:21
2329
+ msgid "No User Listing found in trash"
2330
+ msgstr "Nenhum registro de usuário encontrado na lixeira"
2331
+
2332
+ #: ../modules/user-listing/userlisting.php:97
2333
+ msgid "Display name as"
2334
+ msgstr "Mostrar nome como"
2335
+
2336
+ #: ../modules/user-listing/userlisting.php:110
2337
+ msgid "Url"
2338
+ msgstr "URL"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:118
2341
+ #: ../modules/user-listing/userlisting.php:1118
2342
+ msgid "Registration Date"
2343
+ msgstr "Data do registro"
2344
+
2345
+ #: ../modules/user-listing/userlisting.php:119
2346
+ #: ../modules/user-listing/userlisting.php:1122
2347
+ msgid "Number of Posts"
2348
+ msgstr "Número de postagens"
2349
+
2350
+ #: ../modules/user-listing/userlisting.php:123
2351
+ msgid "More Info"
2352
+ msgstr "Mais Informações"
2353
+
2354
+ #: ../modules/user-listing/userlisting.php:124
2355
+ msgid "More Info Url"
2356
+ msgstr "URL de mais informações"
2357
+
2358
+ #: ../modules/user-listing/userlisting.php:125
2359
+ msgid "Avatar or Gravatar"
2360
+ msgstr "Avatar ou Gravatar"
2361
+
2362
+ #: ../modules/user-listing/userlisting.php:153
2363
+ msgid "Meta Variables"
2364
+ msgstr "Meta Variáveis"
2365
+
2366
+ #: ../modules/user-listing/userlisting.php:159
2367
+ msgid "Sort Variables"
2368
+ msgstr "Ordenar variáveis"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:163
2371
+ #: ../modules/user-listing/userlisting.php:190
2372
+ msgid "Extra Functions"
2373
+ msgstr "Funções extra"
2374
+
2375
+ #: ../modules/user-listing/userlisting.php:165
2376
+ msgid "Pagination"
2377
+ msgstr "Paginação"
2378
+
2379
+ #: ../modules/user-listing/userlisting.php:166
2380
+ msgid "Search all Fields"
2381
+ msgstr "Buscar todos os campos"
2382
+
2383
+ #: ../modules/user-listing/userlisting.php:192
2384
+ msgid "Go Back Link"
2385
+ msgstr "Link Voltar"
2386
+
2387
+ #: ../modules/user-listing/userlisting.php:210
2388
+ msgid "All-userlisting Template"
2389
+ msgstr "Template de listagem de todos usuários"
2390
+
2391
+ #: ../modules/user-listing/userlisting.php:213
2392
+ msgid "Single-userlisting Template"
2393
+ msgstr "Template de entrada único usuário"
2394
+
2395
+ #: ../modules/user-listing/userlisting.php:330
2396
+ msgid "You do not have permission to view this user list"
2397
+ msgstr "Você não tem permissão para visualizar essa lista de usuários"
2398
+
2399
+ #: ../modules/user-listing/userlisting.php:343
2400
+ msgid "You do not have the required user role to view this user list"
2401
+ msgstr "Você não tem a função necessária para visualizar essa lista de usuários"
2402
+
2403
+ #: ../modules/user-listing/userlisting.php:519
2404
+ msgid "First/Lastname"
2405
+ msgstr "Primeiro/Último nome"
2406
+
2407
+ #: ../modules/user-listing/userlisting.php:525
2408
+ msgid "Sign-up Date"
2409
+ msgstr "Data de cadastro"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:534
2412
+ #: ../modules/user-listing/userlisting.php:1121
2413
+ msgid "Display Name"
2414
+ msgstr "Mostrar nome"
2415
+
2416
+ #: ../modules/user-listing/userlisting.php:543
2417
+ msgid "Posts"
2418
+ msgstr "Postagens"
2419
+
2420
+ #: ../modules/user-listing/userlisting.php:546
2421
+ #: ../modules/user-listing/userlisting.php:1126
2422
+ msgid "Aim"
2423
+ msgstr "Aim"
2424
+
2425
+ #: ../modules/user-listing/userlisting.php:549
2426
+ #: ../modules/user-listing/userlisting.php:1127
2427
+ msgid "Yim"
2428
+ msgstr "Yim"
2429
+
2430
+ #: ../modules/user-listing/userlisting.php:552
2431
+ #: ../modules/user-listing/userlisting.php:1128
2432
+ msgid "Jabber"
2433
+ msgstr "Jabber"
2434
+
2435
+ #: ../modules/user-listing/userlisting.php:701
2436
+ msgid "Click here to see more information about this user"
2437
+ msgstr "Clique aqui para ver mais informações sobre esse usuário"
2438
+
2439
+ #: ../modules/user-listing/userlisting.php:701
2440
+ msgid "More..."
2441
+ msgstr "Mais..."
2442
+
2443
+ #: ../modules/user-listing/userlisting.php:704
2444
+ msgid "Click here to see more information about this user."
2445
+ msgstr "Clique aqui para ver mais informações sobre esse usuário."
2446
+
2447
+ #: ../modules/user-listing/userlisting.php:796
2448
+ #: ../modules/user-listing/userlisting.php:799
2449
+ msgid "Click here to go back"
2450
+ msgstr "Clique aqui para voltar"
2451
+
2452
+ #: ../modules/user-listing/userlisting.php:796
2453
+ msgid "Back"
2454
+ msgstr "Voltar"
2455
+
2456
+ #: ../modules/user-listing/userlisting.php:829
2457
+ msgid "&laquo;&laquo; First"
2458
+ msgstr "&laquo;&laquo; Primeira"
2459
+
2460
+ #: ../modules/user-listing/userlisting.php:830
2461
+ msgid "&laquo; Prev"
2462
+ msgstr "&laquo; Ant"
2463
+
2464
+ #: ../modules/user-listing/userlisting.php:831
2465
+ msgid "Next &raquo; "
2466
+ msgstr "Próx &raquo; "
2467
+
2468
+ #: ../modules/user-listing/userlisting.php:832
2469
+ msgid "Last &raquo;&raquo;"
2470
+ msgstr "Última &raquo;&raquo;"
2471
+
2472
+ #: ../modules/user-listing/userlisting.php:861
2473
+ msgid "You don't have any pagination settings on this userlisting!"
2474
+ msgstr "Você não tem nenhuma configuração de paginação nessa listagem de usuários!"
2475
+
2476
+ #: ../modules/user-listing/userlisting.php:902
2477
+ msgid "Search"
2478
+ msgstr "Buscar"
2479
+
2480
+ #: ../modules/user-listing/userlisting.php:903
2481
+ msgid "Clear Results"
2482
+ msgstr "Limpar resultados"
2483
+
2484
+ #: ../modules/user-listing/userlisting.php:1079
2485
+ msgid "Extra shortcode parameters"
2486
+ msgstr "Parâmetros extra do shortcode"
2487
+
2488
+ #: ../modules/user-listing/userlisting.php:1081
2489
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2490
+ msgstr "mostra usuários que tem algum meta-value dentro de um determinado meta-field (extra)"
2491
+
2492
+ #: ../modules/user-listing/userlisting.php:1082
2493
+ msgid "Example:"
2494
+ msgstr "Exemplo:"
2495
+
2496
+ #: ../modules/user-listing/userlisting.php:1084
2497
+ msgid "Remember though, that the field-value combination must exist in the database."
2498
+ msgstr "Lembre-se porém que a combinação de campo-valor deve existir na base de dados."
2499
+
2500
+ #: ../modules/user-listing/userlisting.php:1138
2501
+ msgid "Random (very slow on large databases > 10K user)"
2502
+ msgstr "Aleatório (muito lento em bases de dados > 10 mil usuários)"
2503
+
2504
+ #: ../modules/user-listing/userlisting.php:1151
2505
+ msgid "Roles to Display"
2506
+ msgstr "Funções para mostrar"
2507
+
2508
+ #: ../modules/user-listing/userlisting.php:1151
2509
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2510
+ msgstr "Restrinjir a listagem de usuários para apenas as funções selecionadas<br/>Se não especificado, o padrão são todas as funções existentes"
2511
+
2512
+ #: ../modules/user-listing/userlisting.php:1152
2513
+ msgid "Number of Users/Page"
2514
+ msgstr "Número de usuários/página"
2515
+
2516
+ #: ../modules/user-listing/userlisting.php:1153
2517
+ msgid "Default Sorting Criteria"
2518
+ msgstr "Critério de ordenação padrão"
2519
+
2520
+ #: ../modules/user-listing/userlisting.php:1153
2521
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2522
+ msgstr "Defina o critério de ordenação padrão<br/>Isso pode ser temporariamente mudado para cada nova sessão"
2523
+
2524
+ #: ../modules/user-listing/userlisting.php:1154
2525
+ msgid "Default Sorting Order"
2526
+ msgstr "Prioridade da ordenação padrão"
2527
+
2528
+ #: ../modules/user-listing/userlisting.php:1154
2529
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2530
+ msgstr "Defina a ordem padrão de ordenação<br/>Isso pode ser mudado temporariamente durante cada nova sessão"
2531
+
2532
+ #: ../modules/user-listing/userlisting.php:1155
2533
+ msgid "Avatar Size (All-userlisting)"
2534
+ msgstr "Tamanho do avatar (toda a listagem de usuários)"
2535
+
2536
+ #: ../modules/user-listing/userlisting.php:1155
2537
+ msgid "Set the avatar size on the all-userlisting only"
2538
+ msgstr "Ajusta o tamanho do avatar apenas na listagem de todos os usuários"
2539
+
2540
+ #: ../modules/user-listing/userlisting.php:1156
2541
+ msgid "Avatar Size (Single-userlisting)"
2542
+ msgstr "Tamanho do avatar (listagem de usuário única)"
2543
+
2544
+ #: ../modules/user-listing/userlisting.php:1156
2545
+ msgid "Set the avatar size on the single-userlisting only"
2546
+ msgstr "Defina o tamanho do avatar na entrada única de usuário"
2547
+
2548
+ #: ../modules/user-listing/userlisting.php:1157
2549
+ msgid "Visible only to logged in users?"
2550
+ msgstr "Visível somente para usuários logados?"
2551
+
2552
+ #: ../modules/user-listing/userlisting.php:1157
2553
+ msgid "The userlisting will only be visible only to the logged in users"
2554
+ msgstr "A entrada de usuário será visível apenas para usuários logados"
2555
+
2556
+ #: ../modules/user-listing/userlisting.php:1158
2557
+ msgid "Visible to following Roles"
2558
+ msgstr "Visível às seguintes Funções"
2559
+
2560
+ #: ../modules/user-listing/userlisting.php:1158
2561
+ msgid "The userlisting will only be visible to the following roles"
2562
+ msgstr "A entrada de usuário só será visível para as seguintes funções"
2563
+
2564
+ #: ../modules/user-listing/userlisting.php:1164
2565
+ msgid "Userlisting Settings"
2566
+ msgstr "Configurações da entrada de usuário"
2567
+
2568
+ #: ../modules/user-listing/userlisting.php:1185
2569
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2570
+ msgstr "Você precisa ativar a função de Listagem de Usuários dentro da aba \"Módulos\"!"
2571
+
2572
+ #: ../modules/user-listing/userlisting.php:1185
2573
+ msgid "You can find it in the Profile Builder menu."
2574
+ msgstr "Você pode encontrar isso no menu do Profile Builder."
2575
+
2576
+ #: ../modules/user-listing/userlisting.php:1335
2577
+ msgid "No results found!"
2578
+ msgstr "Nenhum resultado encontrado!"
translation/profilebuilder-zh_CN.mo ADDED
Binary file
translation/profilebuilder-zh_CN.po ADDED
@@ -0,0 +1,2573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Chinese (China)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-10 07:26:00+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "显示/隐藏管理员工具栏在前端"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "管理员工具栏设置"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "用户角色"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "可见"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "默认"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "显示"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "隐藏"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "保存更改"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%s\" 选项卡中 )"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "常规设置"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>错误</strong>: 密码必须最小长度"
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "非常弱"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "弱"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "中"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "强"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>错误</strong>: 密码必须至少有一个强度"
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "添加字段"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "保存设置"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "基本信息"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "版本 %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "最好的前端注册、编辑个人资料与登陆表单的实现方式。"
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "新颖的用户交互。"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "登陆"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "快捷登陆使用 <strong class=\"nowrap\">[wppb-login]</strong> 简码或者小工具。"
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "注册"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "漂亮的注册表单,完全可自定义使用 <strong class=\"nowrap\">[wppb-register]</strong> 简码。"
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "编辑个人资料"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "编辑个人资料直接可以使用 <strong class=\"nowrap\">[wppb-edit-profile]</strong> 简码."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "额外字段"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。"
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "启用额外功能"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "恢复密码"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "允许用户恢复密码在前端使用简码 [wppb-recover-password]。"
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "管理员审批 (*)"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。"
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "电子邮件确认"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。"
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "最小密码长度和强度表"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "消除弱密码最小密码长度,并强制执行设定的密码强度。"
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "通过电子邮件或用户名登录"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。"
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "自定义表格用你想要的方式(*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。"
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用"
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "开始使用额外字段"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "头像上传"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "常规上传"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "同意使用条款"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "日期选择器"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "国家选择"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "时区选择"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "输入/隐藏输入"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "复选框"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "选择"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "单选按钮"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "文本框"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "强大的模块(**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "使用一切你需要的工具,用于管理你的用户的模块。"
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "启用你的模块"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "了解关于专业版模块的更多内容"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "用户列表"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。"
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "创建一个页面包含已注册在当前的网站/博客用户列表,将下面的短码放进页面:"
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "电子邮件定制"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。"
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "自定义重定向"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。"
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "多个注册形式"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。"
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "多个编辑个人资料形式"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。"
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr " * 仅获得在 %1$sHobbyist 与专业版本 %2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** 仅激活在 %1$s专业版本 %2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "在前端载入 Profile Builder 的CSS文件:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "是"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "你可以在这里找到默认的文件: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"邮件确认\" 激活:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "不"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "在单个站点安装本工作会在前端形成。建议转向 WP 默认注册使用 Profile Builder 的 \"自定义转向\" 模块。"
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "这个 \"邮件确认\" 功能默认在 WPMU 安装是默认开启的。"
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "\"邮件确认\" 登陆页面:"
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "现有页面"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。"
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"管理员审批\" 激活:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "\"管理员审批\" 功能 :"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。"
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "允许用户使用什么登陆:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "姓名"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "电子邮件"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "最小密码长度:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "输入密码必须最少字符。留空为没有限制"
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "最小密码强度:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "关闭"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "管理字段"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "管理默认与额外字段"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "字段标题"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "字段的标题"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "字段"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Meta-name"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "使用这个结合 WordPress 功能去显示您选择的页面中的值<br/> 自动完成,但在某些情况下可编辑(在这情况下它必须是唯一的)<br/> 在用户数量大的情况下,改变这个可能需要很长时间"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "编号"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "一个独特的、为特定的字段自动生成ID<br/>如果需要可以使用过滤器调用这个目标<br/>不能编辑"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "描述"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "输入(详细)的最终用户阅读选项的描述<br/>可选"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "行数"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "指定 'Textarea' 字段的行数<br/>如果没有指定,缺省为5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "允许的图像扩展"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "指定您想限制上传的扩展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如无指定,默认支持所有图像扩展名 (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "允许的上传扩展"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "指定您想限制上传的扩展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如无指定,默认是所有已在使用的扩展名 (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "头像大小"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "输入 '头像' 大小数值 ( 20 与 200 之间 ) <br/>如果没指定,默认是100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "日期格式"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "当使用日期选择器指定日期格式<br/>有效选项: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>如无指定,默认是 mm/dd/yy"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "协议条款"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "输入一个供用户查看的协议内容。<br/> 连接可以使用 HTML 语法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "选项"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "标签"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "输入一个逗号分隔标签 <br/> 对用户可见的"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "公共密钥"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "Google 公开密钥, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "专用密钥"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "Google 私人密钥, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "默认值"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "该字段的默认值"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "默认选项"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "指定选项的默认选择值"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "默认选项(s)"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "指定选项默认是否勾选<br/>如果有多个值的选项,使用“,”分开(逗号)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "默认内容"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "文本默认值"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "必须"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "该字段是否必须"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "覆盖现有"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name<br/>使用需自己承担风险"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "字段属性"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "注册与编辑资料"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "姓名"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr " 用户名不可更改。"
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "名字"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "姓氏"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "昵称"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "公开显示为"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "联系信息"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "电子邮件"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "站点"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "雅虎通讯"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "关于您自己"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "个人说明"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "分享关于您的一些信息。可能会被公开。"
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "新密码"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "重复新密码"
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "重复新密码"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "再输入一遍新密码。"
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "你必须选择一个字段\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "输入的头像大小不是20与200之间 \n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "输入的头像大小不是数值\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "输入的行数不是数值\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "您必须输入一个值的行数\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "你必须输入公共密钥\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "您必须输入专用密钥\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "日期选择器输入的值不是有效的日期格式\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "您必须输入一个日期格式的值\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "meta-name 已在使用\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "下列选项(s)不符合的选项清单: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "下列选项不符合的选项清单: %s\n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "这个字段已经加入这个\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>标题</pre><pre>类型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必须</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "编辑"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "删除"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "使用这些简码在页面中你想要的形式显示:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "如果你对注册、编辑资料时显示不同字段感兴趣,请使用多个注册和编辑资料形式的模块。"
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "注册您的版本"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "注册版本"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。"
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "序号:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "序号成功验证!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "序号无法验证!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "序号无法验证,因已过期!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "内容"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "编辑此项目"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "删除此项目"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "请为这个字段输入所需的值"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "选择文件"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "移除"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "同步 WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "同步 WCK 翻译"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "您可以添加信息到 %s"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "上传"
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "找不到项目。"
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "批量动作"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "应用"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "显示所有日期"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "列表查看"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "摘录查看"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s 等待中"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s 的 %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "选择所有"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "用户验证失败 - 头像没有被删除!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "用户验证失败 - 附件没有被删除!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "强度指标"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "最小长度"
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "管理员审批"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "您想要"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "您的会话已过期!请刷新页面重试"
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "用户成功批准!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "用户成功拒绝!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "用户成功删除!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "你没有权限操作,或出现一个错误!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "您的会话已过期!请刷新页面重试"
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "用户成功批准!"
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "用户成功拒绝!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "用户成功删除!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "您在 %1$s 的帐号成功通过!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "已批准"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "管理员已经批准您在 %1$s (%2$s) 的帐号。"
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "您在 %1$s 的帐号被拒绝!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "已拒绝"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "管理员已拒绝您在 %1$s (%2$s) 的帐号。"
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>错误</strong>: 您的帐号需要管理员批准后才能登陆使用。"
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "您的帐号在管理员确认前可以使用 \"密码找回\" 功能."
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "查看或编辑"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "删除这个用户?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "拒绝这个用户?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "拒绝"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "允许这个用户?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "允许"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "名子"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "姓氏"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "角色"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "已注册"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "用户状态"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "你想批量允许所选用户?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "你想批量拒绝所选用户?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "你想批量删除所选用户?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "抱歉,您没有相应的操作权限!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "已允许"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "已拒绝"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "所有用户"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "在 the _signups 表单中 删除这个用户?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "确认自己的电子邮件?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "确认电子邮件"
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "重新发送激活链接?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "发送激活邮件"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s 不能删除"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "所有的用户已成功删除"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "所选的用户已被激活"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "所选用户已经重新发送激活电子邮件"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "没经确认邮箱的用户"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "执行操作时出错!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "所选用户不能删除"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "电子邮件通知重发给用户"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] 激活 %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "要激活你的帐户,请点击下面的链接:\n"
1269
+ "\n"
1270
+ "%s%s%s \n"
1271
+ "\n"
1272
+ "当你点击后,您将收到登陆的 *另一封电子邮件* 。"
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "无法创建用户!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "用户名已经被激活!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "试图激活用户时出现一个错误"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "一个新的用户已经(被)注册!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "新用户在 %1$s.<br/><br/>用户名:%2$s<br/>邮箱:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] 您的新帐户信息"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "欢迎来到 %1$s!<br/><br/><br/>您的用户名是:%2$s 密码是:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。"
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "该登录控件是允许您添加在侧边栏的登录表单。"
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Profile Builder 登陆小工具"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "注册"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "标题:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "登录后的重定向URL(可选):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "注册页面URL(可选):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "密码恢复页URL(可选):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "用户名不可更改。"
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "只有管理员可以添加新用户。"
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "用户可以注册自己注册,或您可以在这里手动创建用户。"
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "用户无法自己注册,但你可以在这里手动创建用户。"
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "您当前登陆为 %1s。您不需要其它帐号。 %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "退出这个帐号。"
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "退出"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "您必须在登陆状态下编辑个人资料。"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "这里"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "帐号 %1s 创建成功!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。"
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。"
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "个人资料已更新!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "在递交表单时出错"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "所有用户"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "更新个人资料"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "头像成功删除!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "成功删除以下附件:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "通过电子邮件发送这些凭据。"
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "错误"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "你输入的密码不正确。"
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "密码遗失。"
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "忘记您的密码"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "字段均空"
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "您当前登录为 %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "退出这个帐户"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "退出"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "您的帐户需被管理员审批后才可使用 \"密码重置\" 功能。"
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "重置密码"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "请输入您的用户名或电子邮件地址。"
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "你将收到一封创建一个新密码连接的电子邮件。"
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "用户或邮箱地址"
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "获取新密码"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "输入的用户名不存在数据库中!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "请检查您已输入正确的用户名。"
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "检查你的邮件中的确认链接。"
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "有人要求以下帐号密码进行重置: <b>%1$s</b><br/>如果不是您自己的操作,请忽略。<br/>需要重置您的密码的话,请点击 :%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "从 \"%1$s\" 密码重置"
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "发送激活链接时出现错误 %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "邮箱地址无法在数据库中找到"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "请检查您输入(正确)电子邮件地址。"
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>密码必须的最小长度"
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>密码必须有至少强度"
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "您已经成功地更改密码!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "您已经成功地将密码更改成:%1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "密码成功重置 %1$s 在 \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s 请求通过密码重置功能修改密码。<br/>他的密码是:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "输入的密码不匹配!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "错误:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "无效密钥!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "无效的激活密钥!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "这个用户名现在被激活!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "这个用户名已经被激活!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "您的电子邮件已确认。"
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "尝试激活用户时出现一个错误。"
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "您输入的电子邮件不是一个有效的电子邮件地址。"
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "此邮箱地址已被保留使用。"
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "请尝试一个不同的!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "电子邮件已被使用。"
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "密码不匹配"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "用户名已经存在。"
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "这个用户名已经被保留。"
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "最大上传大小"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "当前头像:没有上传头像"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "头像"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "点击查看当前头像"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "头像不能被删除(它被标记为只允许管理员操作)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "您确定要删除这个头像?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "点击删除当前头像"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "必须"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "当前头像"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "没有上传头像"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "文件扩展名不匹配"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "文件上传大小限制超过 upload_max_filesize 在 php.ini 的设置"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "文件上传方件最大限制超过 MAX_FILE_SIZE 在 php.ini 的设置"
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "文件只能被分段上传"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "没有选择文件"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "系统丢失临时文件缓存"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "磁盘无法写入文件"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "一个PHP扩展暂停文件上传"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "发生未知错误"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "无法打开 socket!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "使用 reCAPTCHA 你必须获得一个API密钥"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "安全原因,您必须通过远程IP到reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "使用 reCAPTCHA mailhide,您需要安装 mcrypt PHP 模块!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "使用 reCAPTCHA mailhide,你必须注册一个公共和私人密钥; 你可以这样做"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "使用reCAPTCHA,你必须得到一个API公开密钥:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "使用reCAPTCHA,你必须得到一个API私人密钥:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "当前文件:没有上传附件"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "当前文件"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "点击查看当前附件"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "附件不能删除(被标记为管理员权限)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "您确定要删除此附件吗?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "单击删除当前附件"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "没有上传附件"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "文件扩展名不允许"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "该文件只能被分段上传"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "发生未知错误导致这个字段没有更新"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "模块"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "在这里你可以激活/停用 Profile Builder 模块。"
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "名称/描述"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "状态"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "激活"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "关闭"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "管理员邮件定制"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "用户邮件定制"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "保存"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "自定义页面重定向请求:"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "动作"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "重定向"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "网址"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "注册后:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "登录后:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "重置密码 (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "当激活这个功能,当用户进入在 WordPress 默认的密码恢复页与 \"忘记密码?\" 连接将重定向使用 Profile Builder 前端登陆页面。"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "WordPress 默认页面的重定向:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "WordPress 默认登录页面的重定向:"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "WordPress 默认退出页面的重定向:"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "WordPress 默认注册页面的重定向:"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "WordPress 默认后台的重定向:"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "将所有用户角色,除具有管理员权限用户(管理)。"
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "这些设置也复制在\"用户邮件定制\" 设置页中保存。"
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "来自(名子)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "来自(回复邮件)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "常用设置"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>新用户在 {{site_name}}.</p>\n"
1943
+ "<p>用户名:{{username}}</p>\n"
1944
+ "<p>邮箱:{{user_email}}</p>\n"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1947
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1948
+ #: ../modules/email-customizer/user-email-customizer.php:71
1949
+ #: ../modules/email-customizer/user-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:128
1951
+ #: ../modules/email-customizer/user-email-customizer.php:155
1952
+ #: ../modules/email-customizer/user-email-customizer.php:183
1953
+ msgid "Email Subject"
1954
+ msgstr "邮件主题"
1955
+
1956
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1957
+ msgid "Default Registration & Registration with Email Confirmation"
1958
+ msgstr "默认注册与邮件确认注册"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1961
+ msgid ""
1962
+ "\n"
1963
+ "<p>New subscriber on {{site_name}}.</p>\n"
1964
+ "<p>Username:{{username}}</p>\n"
1965
+ "<p>E-mail:{{user_email}}</p>\n"
1966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1968
+ msgstr ""
1969
+ "\n"
1970
+ "<p>新用户在 {{site_name}}.</p>\n"
1971
+ "<p>用户名:{{username}}</p>\n"
1972
+ "<p>邮箱:{{user_email}}</p>\n"
1973
+ "<p>管理审核功能已被激活,\n"
1974
+ "请记住,您需要批准这个用户,他才能登陆!</p>\n"
1975
+
1976
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1977
+ #: ../modules/email-customizer/user-email-customizer.php:143
1978
+ msgid "Registration with Admin Approval"
1979
+ msgstr "注册需管理员审批"
1980
+
1981
+ #: ../modules/email-customizer/email-customizer.php:7
1982
+ msgid "Available Tags"
1983
+ msgstr "可用标签"
1984
+
1985
+ #: ../modules/email-customizer/email-customizer.php:11
1986
+ msgid "User Meta"
1987
+ msgstr "User Meta"
1988
+
1989
+ #: ../modules/email-customizer/email-customizer.php:21
1990
+ msgid "Site Url"
1991
+ msgstr "网站地址"
1992
+
1993
+ #: ../modules/email-customizer/email-customizer.php:22
1994
+ msgid "Site Name"
1995
+ msgstr "网站名称"
1996
+
1997
+ #: ../modules/email-customizer/email-customizer.php:25
1998
+ #: ../modules/user-listing/userlisting.php:126
1999
+ msgid "User Id"
2000
+ msgstr "用户名称"
2001
+
2002
+ #: ../modules/email-customizer/email-customizer.php:32
2003
+ msgid "Reply To"
2004
+ msgstr "回复"
2005
+
2006
+ #: ../modules/email-customizer/email-customizer.php:35
2007
+ msgid "Activation Key"
2008
+ msgstr "激活密钥"
2009
+
2010
+ #: ../modules/email-customizer/email-customizer.php:36
2011
+ msgid "Activation Url"
2012
+ msgstr "激活URL"
2013
+
2014
+ #: ../modules/email-customizer/email-customizer.php:37
2015
+ msgid "Activation Link"
2016
+ msgstr "激活链接"
2017
+
2018
+ #: ../modules/email-customizer/user-email-customizer.php:64
2019
+ msgid ""
2020
+ "\n"
2021
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2022
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2023
+ msgstr ""
2024
+ "\n"
2025
+ "<h3>欢迎来到 {{site_name}}!</h3>\n"
2026
+ "<p>您的用户名是:{{username}} 密码是:{{password}}</p>\n"
2027
+
2028
+ #: ../modules/email-customizer/user-email-customizer.php:85
2029
+ msgid "Default Registration"
2030
+ msgstr "默认注册"
2031
+
2032
+ #: ../modules/email-customizer/user-email-customizer.php:91
2033
+ msgid ""
2034
+ "\n"
2035
+ "<p>To activate your user, please click the following link:<br/>\n"
2036
+ "{{{activation_link}}}</p>\n"
2037
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2038
+ msgstr ""
2039
+ "\n"
2040
+ "<p>激活您的帐户,请点击下面连接:<br/>\n"
2041
+ "{{{activation_link}}}</p>\n"
2042
+ "<p>在您激活完成后,将会收到另外一封凭据邮件。</p>\n"
2043
+
2044
+ #: ../modules/email-customizer/user-email-customizer.php:103
2045
+ msgid "[{{site_name}}] Activate {{username}}"
2046
+ msgstr "[{{site_name}}] 激活 {{username}}"
2047
+
2048
+ #: ../modules/email-customizer/user-email-customizer.php:114
2049
+ msgid "Registration with Email Confirmation"
2050
+ msgstr "电子邮件确认注册"
2051
+
2052
+ #: ../modules/email-customizer/user-email-customizer.php:120
2053
+ msgid ""
2054
+ "\n"
2055
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2056
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2057
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2058
+ msgstr ""
2059
+ "\n"
2060
+ "<h3>欢迎来到 {{site_name}}!</h3>\n"
2061
+ "<p>您的用户名:{{username}} 密码:{{password}}</p>\n"
2062
+ "<p>在您访问您的帐号前,需要管理审批。您将会收邮件通知。</p>\n"
2063
+
2064
+ #: ../modules/email-customizer/user-email-customizer.php:132
2065
+ msgid "A new account has been created for you on {{site_name}}"
2066
+ msgstr "一个新的帐号在您的 {{site_name}} 上建立"
2067
+
2068
+ #: ../modules/email-customizer/user-email-customizer.php:148
2069
+ msgid ""
2070
+ "\n"
2071
+ "<h3>Good News!</h3>\n"
2072
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2073
+ msgstr ""
2074
+ "\n"
2075
+ "<h3>好消息 !</h3>\n"
2076
+ "<p>管理员已经批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
2077
+
2078
+ #: ../modules/email-customizer/user-email-customizer.php:159
2079
+ msgid "Your account on {{site_name}} has been approved!"
2080
+ msgstr "您在 {{site_name}} 的帐号已经被通过!"
2081
+
2082
+ #: ../modules/email-customizer/user-email-customizer.php:170
2083
+ msgid "User Approval Notification"
2084
+ msgstr "用户批准通知"
2085
+
2086
+ #: ../modules/email-customizer/user-email-customizer.php:175
2087
+ msgid ""
2088
+ "\n"
2089
+ "<h3>Hello,</h3>\n"
2090
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2091
+ msgstr ""
2092
+ "\n"
2093
+ "<h3>您好,</h3>\n"
2094
+ "<p>抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
2095
+
2096
+ #: ../modules/email-customizer/user-email-customizer.php:187
2097
+ msgid "Your account on {{site_name}} has been unapproved!"
2098
+ msgstr "您在 {{site_name}} 的帐号被拒绝!"
2099
+
2100
+ #: ../modules/email-customizer/user-email-customizer.php:198
2101
+ msgid "Unapproved User Notification"
2102
+ msgstr "被拒绝的用户通知"
2103
+
2104
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2105
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2106
+ msgid "Edit-profile Form"
2107
+ msgstr "编辑资料表单"
2108
+
2109
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2110
+ #: ../modules/multiple-forms/register-forms.php:13
2111
+ #: ../modules/user-listing/userlisting.php:13
2112
+ msgid "Add New"
2113
+ msgstr "新增加"
2114
+
2115
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2116
+ msgid "Add new Edit-profile Form"
2117
+ msgstr "添加新的编辑资料表单"
2118
+
2119
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2120
+ msgid "Edit the Edit-profile Forms"
2121
+ msgstr "编辑的编辑个人资料表单"
2122
+
2123
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2124
+ msgid "New Edit-profile Form"
2125
+ msgstr "新的编辑资料表单"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2129
+ msgid "Edit-profile Forms"
2130
+ msgstr "编辑资料表单"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2133
+ msgid "View the Edit-profile Form"
2134
+ msgstr "查看编辑资料表单"
2135
+
2136
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2137
+ msgid "Search the Edit-profile Forms"
2138
+ msgstr "搜索编辑资料表单"
2139
+
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2141
+ msgid "No Edit-profile Form found"
2142
+ msgstr "没有编辑个人资料表单"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2145
+ msgid "No Edit-profile Forms found in trash"
2146
+ msgstr "在回收站中没有编辑个人资料表单"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2149
+ #: ../modules/multiple-forms/register-forms.php:138
2150
+ #: ../modules/user-listing/userlisting.php:1029
2151
+ msgid "Shortcode"
2152
+ msgstr "简码"
2153
+
2154
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2155
+ #: ../modules/multiple-forms/register-forms.php:159
2156
+ #: ../modules/user-listing/userlisting.php:1050
2157
+ msgid "(no title)"
2158
+ msgstr "(没有标题)"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2161
+ #: ../modules/multiple-forms/register-forms.php:178
2162
+ #: ../modules/user-listing/userlisting.php:1070
2163
+ msgid "The shortcode will be available after you publish this form."
2164
+ msgstr "简码将在您发布表单后可用。"
2165
+
2166
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2167
+ #: ../modules/multiple-forms/register-forms.php:180
2168
+ #: ../modules/user-listing/userlisting.php:1072
2169
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2170
+ msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:"
2171
+
2172
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2173
+ #: ../modules/multiple-forms/register-forms.php:184
2174
+ #: ../modules/user-listing/userlisting.php:1076
2175
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2176
+ msgstr "<span style=\"color:red;\">注意:</span> 改变表单标题也将改变简码!"
2177
+
2178
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2179
+ #: ../modules/multiple-forms/register-forms.php:190
2180
+ #: ../modules/user-listing/userlisting.php:1090
2181
+ msgid "Form Shortcode"
2182
+ msgstr "表单简码"
2183
+
2184
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2185
+ #: ../modules/multiple-forms/register-forms.php:230
2186
+ msgid "Whether to redirect the user to a specific page or not"
2187
+ msgstr "是否将用户重定向到特定页"
2188
+
2189
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2190
+ #: ../modules/multiple-forms/register-forms.php:231
2191
+ msgid "Display Messages"
2192
+ msgstr "显示消息"
2193
+
2194
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2195
+ #: ../modules/multiple-forms/register-forms.php:231
2196
+ msgid "Allowed time to display any success messages (in seconds)"
2197
+ msgstr "允许用时间去显示成功信息提示(秒)"
2198
+
2199
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2200
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2201
+ msgstr "指定页面用于用户一旦更新他们的资料使用这个表单转向<br/>使用这种格式: http://www.mysite.com"
2202
+
2203
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2204
+ msgid "After Profile Update..."
2205
+ msgstr "档案更新后…"
2206
+
2207
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2208
+ #: ../modules/multiple-forms/register-forms.php:260
2209
+ msgid "Add New Field to the List"
2210
+ msgstr "添加新字段到列表"
2211
+
2212
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2213
+ #: ../modules/multiple-forms/register-forms.php:264
2214
+ msgid "Choose one of the supported fields you manage <a href=\""
2215
+ msgstr "选择一个支持字段去管理 <a href=\""
2216
+
2217
+ #: ../modules/multiple-forms/multiple-forms.php:407
2218
+ msgid "<pre>Title (Type)</pre>"
2219
+ msgstr "<pre>标题 (类型)</pre>"
2220
+
2221
+ #: ../modules/multiple-forms/multiple-forms.php:233
2222
+ msgid "You need to specify the title of the form before creating it"
2223
+ msgstr "你需要在创建前指定表单的标题"
2224
+
2225
+ #: ../modules/multiple-forms/register-forms.php:11
2226
+ #: ../modules/multiple-forms/register-forms.php:12
2227
+ msgid "Registration Form"
2228
+ msgstr "注册表单"
2229
+
2230
+ #: ../modules/multiple-forms/register-forms.php:14
2231
+ msgid "Add new Registration Form"
2232
+ msgstr "增加新的注册表单"
2233
+
2234
+ #: ../modules/multiple-forms/register-forms.php:15
2235
+ msgid "Edit the Registration Forms"
2236
+ msgstr "编缉注册表单"
2237
+
2238
+ #: ../modules/multiple-forms/register-forms.php:16
2239
+ msgid "New Registration Form"
2240
+ msgstr "新注册表单"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:17
2243
+ #: ../modules/multiple-forms/register-forms.php:23
2244
+ msgid "Registration Forms"
2245
+ msgstr "注册表单"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:18
2248
+ msgid "View the Registration Form"
2249
+ msgstr "查看注册表单"
2250
+
2251
+ #: ../modules/multiple-forms/register-forms.php:19
2252
+ msgid "Search the Registration Forms"
2253
+ msgstr "搜索注册表单"
2254
+
2255
+ #: ../modules/multiple-forms/register-forms.php:20
2256
+ msgid "No Registration Form found"
2257
+ msgstr "没有找到注册表单"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:21
2260
+ msgid "No Registration Forms found in trash"
2261
+ msgstr "在回收站没有找到注册表单"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:219
2264
+ msgid "Default Role"
2265
+ msgstr "默认角色"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:228
2268
+ msgid "Set Role"
2269
+ msgstr "设置角色"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:228
2272
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2273
+ msgstr "选择用户注册后的角色<br/>如无指定,将默认使用 WordPress 的设定"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:229
2276
+ msgid "Automatically Log In"
2277
+ msgstr "自动登录"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:229
2280
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2281
+ msgstr "是否记录用户新注册 <br/> 只使用于单网站,并且没有开启 \"管理员审批\" 与 \"邮箱确认\" 功能 <br/>警告:缓存注册表单会让自动登录不正常"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:232
2284
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2285
+ msgstr "指定用户注册页面地址将被重定向<br/>使用下列格式: http://www.mysite.com"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:238
2288
+ msgid "After Registration..."
2289
+ msgstr "注册后…"
2290
+
2291
+ #: ../modules/user-listing/class-userlisting.php:458
2292
+ #: ../modules/user-listing/userlisting.php:624
2293
+ #: ../modules/user-listing/userlisting.php:842
2294
+ #: ../modules/user-listing/userlisting.php:885
2295
+ #: ../modules/user-listing/userlisting.php:1209
2296
+ msgid "Search Users by All Fields"
2297
+ msgstr "在所有字段中搜索用户"
2298
+
2299
+ #: ../modules/user-listing/userlisting.php:14
2300
+ msgid "Add new User Listing"
2301
+ msgstr "增加新的用户列表"
2302
+
2303
+ #: ../modules/user-listing/userlisting.php:15
2304
+ msgid "Edit the User Listing"
2305
+ msgstr "编辑用户列表"
2306
+
2307
+ #: ../modules/user-listing/userlisting.php:16
2308
+ msgid "New User Listing"
2309
+ msgstr "新的用户列表"
2310
+
2311
+ #: ../modules/user-listing/userlisting.php:18
2312
+ msgid "View the User Listing"
2313
+ msgstr "查看用户列表"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:19
2316
+ msgid "Search the User Listing"
2317
+ msgstr "搜索用户列表"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:20
2320
+ msgid "No User Listing found"
2321
+ msgstr "没有找到用户列表"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:21
2324
+ msgid "No User Listing found in trash"
2325
+ msgstr "没有在回收站找到用户列表"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:97
2328
+ msgid "Display name as"
2329
+ msgstr "显示名称为"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:110
2332
+ msgid "Url"
2333
+ msgstr "网址"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:118
2336
+ #: ../modules/user-listing/userlisting.php:1118
2337
+ msgid "Registration Date"
2338
+ msgstr "注册日期"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:119
2341
+ #: ../modules/user-listing/userlisting.php:1122
2342
+ msgid "Number of Posts"
2343
+ msgstr "帖子数"
2344
+
2345
+ #: ../modules/user-listing/userlisting.php:123
2346
+ msgid "More Info"
2347
+ msgstr "更多信息"
2348
+
2349
+ #: ../modules/user-listing/userlisting.php:124
2350
+ msgid "More Info Url"
2351
+ msgstr "更多信息网址"
2352
+
2353
+ #: ../modules/user-listing/userlisting.php:125
2354
+ msgid "Avatar or Gravatar"
2355
+ msgstr "头像或 Gravatar"
2356
+
2357
+ #: ../modules/user-listing/userlisting.php:153
2358
+ msgid "Meta Variables"
2359
+ msgstr "Meta 变量"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:159
2362
+ msgid "Sort Variables"
2363
+ msgstr "分类变量"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:163
2366
+ #: ../modules/user-listing/userlisting.php:190
2367
+ msgid "Extra Functions"
2368
+ msgstr "额外功能"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:165
2371
+ msgid "Pagination"
2372
+ msgstr "分页"
2373
+
2374
+ #: ../modules/user-listing/userlisting.php:166
2375
+ msgid "Search all Fields"
2376
+ msgstr "搜索所有字段"
2377
+
2378
+ #: ../modules/user-listing/userlisting.php:192
2379
+ msgid "Go Back Link"
2380
+ msgstr "返回链接"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:210
2383
+ msgid "All-userlisting Template"
2384
+ msgstr "所有用户列表模板"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:213
2387
+ msgid "Single-userlisting Template"
2388
+ msgstr "单用户列表模板"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:330
2391
+ msgid "You do not have permission to view this user list"
2392
+ msgstr "您没有权限查看该用户列表"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:343
2395
+ msgid "You do not have the required user role to view this user list"
2396
+ msgstr "没有所需的用户权限查看用户列表"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:519
2399
+ msgid "First/Lastname"
2400
+ msgstr "名字/姓氏"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:525
2403
+ msgid "Sign-up Date"
2404
+ msgstr "注册日期"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:534
2407
+ #: ../modules/user-listing/userlisting.php:1121
2408
+ msgid "Display Name"
2409
+ msgstr "显示名称"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:543
2412
+ msgid "Posts"
2413
+ msgstr "帖子"
2414
+
2415
+ #: ../modules/user-listing/userlisting.php:546
2416
+ #: ../modules/user-listing/userlisting.php:1126
2417
+ msgid "Aim"
2418
+ msgstr "Aim"
2419
+
2420
+ #: ../modules/user-listing/userlisting.php:549
2421
+ #: ../modules/user-listing/userlisting.php:1127
2422
+ msgid "Yim"
2423
+ msgstr "Yim"
2424
+
2425
+ #: ../modules/user-listing/userlisting.php:552
2426
+ #: ../modules/user-listing/userlisting.php:1128
2427
+ msgid "Jabber"
2428
+ msgstr "Jabber"
2429
+
2430
+ #: ../modules/user-listing/userlisting.php:701
2431
+ msgid "Click here to see more information about this user"
2432
+ msgstr "点击这里查看此用户的更多信息"
2433
+
2434
+ #: ../modules/user-listing/userlisting.php:701
2435
+ msgid "More..."
2436
+ msgstr "更多..."
2437
+
2438
+ #: ../modules/user-listing/userlisting.php:704
2439
+ msgid "Click here to see more information about this user."
2440
+ msgstr "点击这里查看此用户的更多信息。"
2441
+
2442
+ #: ../modules/user-listing/userlisting.php:796
2443
+ #: ../modules/user-listing/userlisting.php:799
2444
+ msgid "Click here to go back"
2445
+ msgstr "点击这里返回"
2446
+
2447
+ #: ../modules/user-listing/userlisting.php:796
2448
+ msgid "Back"
2449
+ msgstr "返回"
2450
+
2451
+ #: ../modules/user-listing/userlisting.php:829
2452
+ msgid "&laquo;&laquo; First"
2453
+ msgstr "&laquo;&laquo; 首页"
2454
+
2455
+ #: ../modules/user-listing/userlisting.php:830
2456
+ msgid "&laquo; Prev"
2457
+ msgstr "&laquo; 上一页"
2458
+
2459
+ #: ../modules/user-listing/userlisting.php:831
2460
+ msgid "Next &raquo; "
2461
+ msgstr "下一页 &raquo; "
2462
+
2463
+ #: ../modules/user-listing/userlisting.php:832
2464
+ msgid "Last &raquo;&raquo;"
2465
+ msgstr "最后 &raquo;&raquo;"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:861
2468
+ msgid "You don't have any pagination settings on this userlisting!"
2469
+ msgstr "您不需在用户列表中设置分页"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:902
2472
+ msgid "Search"
2473
+ msgstr "搜索"
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:903
2476
+ msgid "Clear Results"
2477
+ msgstr "清除结果"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:1079
2480
+ msgid "Extra shortcode parameters"
2481
+ msgstr "额外简码参数"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:1081
2484
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2485
+ msgstr "显示用户在某一(额外)元字段(meta-field)"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:1082
2488
+ msgid "Example:"
2489
+ msgstr "例子:"
2490
+
2491
+ #: ../modules/user-listing/userlisting.php:1084
2492
+ msgid "Remember though, that the field-value combination must exist in the database."
2493
+ msgstr "记住,该字段值的组合必须存在于数据库中。"
2494
+
2495
+ #: ../modules/user-listing/userlisting.php:1138
2496
+ msgid "Random (very slow on large databases > 10K user)"
2497
+ msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )"
2498
+
2499
+ #: ../modules/user-listing/userlisting.php:1151
2500
+ msgid "Roles to Display"
2501
+ msgstr "角色显示:"
2502
+
2503
+ #: ../modules/user-listing/userlisting.php:1151
2504
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2505
+ msgstr "限制用户列表中的特定角色<br/>如果没有指定,默认为全部现有的角色"
2506
+
2507
+ #: ../modules/user-listing/userlisting.php:1152
2508
+ msgid "Number of Users/Page"
2509
+ msgstr "用户/页面数"
2510
+
2511
+ #: ../modules/user-listing/userlisting.php:1153
2512
+ msgid "Default Sorting Criteria"
2513
+ msgstr "默认分类标准"
2514
+
2515
+ #: ../modules/user-listing/userlisting.php:1153
2516
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2517
+ msgstr "设置默认的排序标准<br/>这可以暂时被每一个新的会话更改"
2518
+
2519
+ #: ../modules/user-listing/userlisting.php:1154
2520
+ msgid "Default Sorting Order"
2521
+ msgstr "默认排列顺序"
2522
+
2523
+ #: ../modules/user-listing/userlisting.php:1154
2524
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2525
+ msgstr "设置默认排列顺序<br/>这可以在每个新会话时被改变"
2526
+
2527
+ #: ../modules/user-listing/userlisting.php:1155
2528
+ msgid "Avatar Size (All-userlisting)"
2529
+ msgstr "头像大小(所有用户列表)"
2530
+
2531
+ #: ../modules/user-listing/userlisting.php:1155
2532
+ msgid "Set the avatar size on the all-userlisting only"
2533
+ msgstr "设置在所有用户列表的头像大小"
2534
+
2535
+ #: ../modules/user-listing/userlisting.php:1156
2536
+ msgid "Avatar Size (Single-userlisting)"
2537
+ msgstr "头像大小(单用户列表)"
2538
+
2539
+ #: ../modules/user-listing/userlisting.php:1156
2540
+ msgid "Set the avatar size on the single-userlisting only"
2541
+ msgstr "设置在单用户列表的头像大小"
2542
+
2543
+ #: ../modules/user-listing/userlisting.php:1157
2544
+ msgid "Visible only to logged in users?"
2545
+ msgstr "只有登录用户可见的?"
2546
+
2547
+ #: ../modules/user-listing/userlisting.php:1157
2548
+ msgid "The userlisting will only be visible only to the logged in users"
2549
+ msgstr "用户列表只有登录用户可见的"
2550
+
2551
+ #: ../modules/user-listing/userlisting.php:1158
2552
+ msgid "Visible to following Roles"
2553
+ msgstr "以下角色可见"
2554
+
2555
+ #: ../modules/user-listing/userlisting.php:1158
2556
+ msgid "The userlisting will only be visible to the following roles"
2557
+ msgstr "用户列表只允许以下角色可见"
2558
+
2559
+ #: ../modules/user-listing/userlisting.php:1164
2560
+ msgid "Userlisting Settings"
2561
+ msgstr "用户列表设置"
2562
+
2563
+ #: ../modules/user-listing/userlisting.php:1185
2564
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2565
+ msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!"
2566
+
2567
+ #: ../modules/user-listing/userlisting.php:1185
2568
+ msgid "You can find it in the Profile Builder menu."
2569
+ msgstr "你可以在 Profile Builder 菜单中找到它。"
2570
+
2571
+ #: ../modules/user-listing/userlisting.php:1335
2572
+ msgid "No results found!"
2573
+ msgstr "无任何结果!"
translation/profilebuilder-zh_HK.mo ADDED
Binary file
translation/profilebuilder-zh_HK.po ADDED
@@ -0,0 +1,2573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Chinese (Hong Kong)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-10 07:25:56+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "顯示/隱藏管理員工具欄在前端"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "管理員工具欄設置"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "用戶角色"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "可見"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "默認"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "顯示"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "隱藏"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "保存更改"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 \"%s\" 選項卡中 )"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "常規設置"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>錯誤</strong>: 密碼必須最小長度"
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "非常弱"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "弱"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "中"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "強"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>錯誤</strong>: 密碼必須至少有壹個強度"
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "添加字段"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "保存設置"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "基本信息"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "版本 %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "最好的前端註冊、編輯個人資料與登陸表單的實現方式。"
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "新穎的用戶交互。"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "登陸"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "快捷登陸使用 <strong class=\"nowrap\">[wppb-login]</strong> 簡碼或者小工具。"
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "註冊"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "漂亮的註冊表單,完全可自定義使用 <strong class=\"nowrap\">[wppb-register]</strong> 簡碼。"
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "編輯個人資料"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "編輯個人資料直接可以使用 <strong class=\"nowrap\">[wppb-edit-profile]</strong> 簡碼."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "額外字段"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。"
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "啟用額外功能"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "恢復密碼"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "允許用戶恢復密碼在前端使用簡碼 [wppb-recover-password]。"
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "管理員審批 (*)"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。"
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "電子郵件確認"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。"
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "最小密碼長度和強度表"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "消除弱密碼最小密碼長度,並強制執行設定的密碼強度。"
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "通過電子郵件或用戶名登錄"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。"
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "自定義表格用妳想要的方式(*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。"
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用"
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "開始使用額外字段"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "頭像上傳"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "常規上傳"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "同意使用條款"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "日期選擇器"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "國家選擇"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "時區選擇"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "輸入/隱藏輸入"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "復選框"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "選擇"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "單選按鈕"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "文本框"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "強大的模塊(**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "使用壹切妳需要的工具,用於管理妳的用戶的模塊。"
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "啟用妳的模塊"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "了解關於專業版模塊的更多內容"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "用戶列表"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "易於編輯模列表您的網站用戶,以及創建單用戶頁面模板。基於簡碼,提供了許多選項來定制您的列表。"
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "創建壹個頁面包含已註冊在當前的網站/博客用戶列表,將下面的短碼放進頁面:"
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "電子郵件定制"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。"
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "自定義重定向"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。"
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "多個註冊形式"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。"
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "多個編輯個人資料形式"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。"
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr " * 僅獲得在 %1$sHobbyist 與專業版本 %2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** 僅激活在 %1$s專業版本 %2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "在前端載入 Profile Builder 的CSS文件:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "是"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "妳可以在這裏找到默認的文件: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"郵件確認\" 激活:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "不"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "在單個站點安裝本工作會在前端形成。建議轉向 WP 默認註冊使用 Profile Builder 的 \"自定義轉向\" 模塊。"
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "這個 \"郵件確認\" 功能默認在 WPMU 安裝是默認開啟的。"
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "\"郵件確認\" 登陸頁面:"
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "現有頁面"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。"
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"管理員審批\" 激活:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "\"管理員審批\" 功能 :"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。"
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "允許用戶使用什麽登陸:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "姓名"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "電子郵件"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "最小密碼長度:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "輸入密碼必須最少字符。留空為沒有限制"
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "最小密碼強度:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "關閉"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "管理字段"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "管理默認與額外字段"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "字段標題"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "字段的標題"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "字段"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Meta-name"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "使用這個結合 WordPress 功能去顯示您選擇的頁面中的值<br/> 自動完成,但在某些情況下可編輯(在這情況下它必須是唯壹的)<br/> 在用戶數量大的情況下,改變這個可能需要很長時間"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "編號"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "壹個獨特的、為特定的字段自動生成ID<br/>如果需要可以使用過濾器調用這個目標<br/>不能編輯"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "描述"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "輸入(詳細)的最終用戶閱讀選項的描述<br/>可選"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "行數"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "指定 'Textarea' 字段的行數<br/>如果沒有指定,缺省為5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "允許的圖像擴展"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "指定您想限制上傳的擴展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如無指定,默認支持所有圖像擴展名 (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "允許的上傳擴展"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "指定您想限制上傳的擴展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如無指定,默認是所有已在使用的擴展名 (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "頭像大小"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "輸入 '頭像' 大小數值 ( 20 與 200 之間 ) <br/>如果沒指定,默認是100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "日期格式"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "當使用日期選擇器指定日期格式<br/>有效選項: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>如無指定,默認是 mm/dd/yy"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "協議條款"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "輸入壹個供用戶查看的協議內容。<br/> 連接可以使用 HTML 語法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "選項"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "標簽"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "輸入壹個逗號分隔標簽 <br/> 對用戶可見的"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "公共密鑰"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "Google 公開密鑰, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "專用密鑰"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "Google 私人密鑰, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "默認值"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "該字段的默認值"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "默認選項"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "指定選項的默認選擇值"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "默認選項(s)"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "指定選項默認是否勾選<br/>如果有多個值的選項,使用“,”分開(逗號)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "默認內容"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "文本默認值"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "必須"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "該字段是否必須"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "覆蓋現有"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name<br/>使用需自己承擔風險"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "字段屬性"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "註冊與編輯資料"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "姓名"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr " 用戶名不可更改。"
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "名字"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "姓氏"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "昵稱"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "公開顯示為"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "聯系信息"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "電子郵件"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "站點"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "雅虎通訊"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "關於您自己"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "個人說明"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "分享關於您的壹些信息。可能會被公開。"
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "新密碼"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "重復新密碼"
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "重復新密碼"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "再輸入壹遍新密碼。"
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "妳必須選擇壹個字段\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "輸入的頭像大小不是20與200之間 \n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "輸入的頭像大小不是數值\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "輸入的行數不是數值\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "您必須輸入壹個值的行數\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "妳必須輸入公共密鑰\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "您必須輸入專用密鑰\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "日期選擇器輸入的值不是有效的日期格式\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "您必須輸入壹個日期格式的值\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "meta-name 已在使用\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "下列選項(s)不符合的選項清單: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "下列選項不符合的選項清單: %s\n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "這個字段已經加入這個\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>標題</pre><pre>類型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必須</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "編輯"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "刪除"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "使用這些簡碼在頁面中妳想要的形式顯示:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "如果妳對註冊、編輯資料時顯示不同字段感興趣,請使用多個註冊和編輯資料形式的模塊。"
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "註冊您的版本"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "註冊版本"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。"
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "序號:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "序號成功驗證!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "序號無法驗證!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "序號無法驗證,因已過期!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "內容"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "編輯此項目"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "刪除此項目"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "請為這個字段輸入所需的值"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "選擇文件"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "移除"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "同步 WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "同步 WCK 翻譯"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "您可以添加信息到 %s"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "上傳"
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "找不到項目。"
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "批量動作"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "應用"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "顯示所有日期"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "列表查看"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "摘錄查看"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s 等待中"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s 的 %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "選擇所有"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "用戶驗證失敗 - 頭像沒有被刪除!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "用戶驗證失敗 - 附件沒有被刪除!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "強度指標"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "最小長度"
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "管理員審批"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "您想要"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "您的會話已過期!請刷新頁面重試"
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "用戶成功批準!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "用戶成功拒絕!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "用戶成功刪除!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "妳沒有權限操作,或出現壹個錯誤!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "您的會話已過期!請刷新頁面重試"
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "用戶成功批準!"
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "用戶成功拒絕!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "用戶成功刪除!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "您在 %1$s 的帳號成功通過!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "已批準"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "管理員已經批準您在 %1$s (%2$s) 的帳號。"
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "您在 %1$s 的帳號被拒絕!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "已拒絕"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "管理員已拒絕您在 %1$s (%2$s) 的帳號。"
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>錯誤</strong>: 您的帳號需要管理員批準後才能登陸使用。"
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "您的帳號在管理員確認前可以使用 \"密碼找回\" 功能."
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "查看或編輯"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "刪除這個用戶?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "拒絕這個用戶?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "拒絕"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "允許這個用戶?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "允許"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "名子"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "姓氏"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "角色"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "已註冊"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "用戶狀態"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "妳想批量允許所選用戶?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "妳想批量拒絕所選用戶?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "妳想批量刪除所選用戶?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "抱歉,您沒有相應的操作權限!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "已允許"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "已拒絕"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "所有用戶"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "在 the _signups 表單中 刪除這個用戶?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "確認自己的電子郵件?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "確認電子郵件"
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "重新發送激活鏈接?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "發送激活郵件"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s 不能刪除"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "所有的用戶已成功刪除"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "所選的用戶已被激活"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "所選用戶已經重新發送激活電子郵件"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "沒經確認郵箱的用戶"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "執行操作時出錯!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "所選用戶不能刪除"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "電子郵件通知重發給用戶"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] 激活 %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "要激活妳的帳戶,請點擊下面的鏈接:\n"
1269
+ "\n"
1270
+ "%s%s%s \n"
1271
+ "\n"
1272
+ "當妳點擊後,您將收到登陸的 *另壹封電子郵件* 。"
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "無法創建用戶!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "用戶名已經被激活!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "試圖激活用戶時出現壹個錯誤"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "壹個新的用戶已經(被)註冊!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "新用戶在 %1$s.<br/><br/>用戶名:%2$s<br/>郵箱:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] 您的新帳戶信息"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "歡迎來到 %1$s!<br/><br/><br/>您的用戶名是:%2$s 密碼是:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。"
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "該登錄控件是允許您添加在側邊欄的登錄表單。"
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Profile Builder 登陸小工具"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "註冊"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "標題:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "登錄後的重定向URL(可選):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "註冊頁面URL(可選):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "密碼恢復頁URL(可選):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "用戶名不可更改。"
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "只有管理員可以添加新用戶。"
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。"
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "用戶無法自己註冊,但妳可以在這裏手動創建用戶。"
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "您當前登陸為 %1s。您不需要其它帳號。 %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "退出這個帳號。"
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "退出"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "您必須在登陸狀態下編輯個人資料。"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "這裏"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "帳號 %1s 創建成功!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。"
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。"
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "個人資料已更新!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "在遞交表單時出錯"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "所有用戶"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "更新個人資料"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "頭像成功刪除!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "成功刪除以下附件:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "通過電子郵件發送這些憑據。"
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "錯誤"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "妳輸入的密碼不正確。"
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "密碼遺失。"
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "忘記您的密碼"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "字段均空"
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "您當前登錄為 %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "退出這個帳戶"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "退出"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "您的帳戶需被管理員審批後才可使用 \"密碼重置\" 功能。"
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "重置密碼"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "請輸入您的用戶名或電子郵件地址。"
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "妳將收到壹封創建壹個新密碼連接的電子郵件。"
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "用戶或郵箱地址"
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "獲取新密碼"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "輸入的用戶名不存在數據庫中!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "請檢查您已輸入正確的用戶名。"
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "檢查妳的郵件中的確認鏈接。"
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "有人要求以下帳號密碼進行重置: <b>%1$s</b><br/>如果不是您自己的操作,請忽略。<br/>需要重置您的密碼的話,請點擊 :%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "從 \"%1$s\" 密碼重置"
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "發送激活鏈接時出現錯誤 %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "郵箱地址無法在數據庫中找到"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "請檢查您輸入(正確)電子郵件地址。"
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>密碼必須的最小長度"
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>密碼必須有至少強度"
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "您已經成功地更改密碼!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "您已經成功地將密碼更改成:%1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "密碼成功重置 %1$s 在 \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s 請求通過密碼重置功能修改密碼。<br/>他的密碼是:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "輸入的密碼不匹配!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "錯誤:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "無效密鑰!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "無效的激活密鑰!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "這個用戶名現在被激活!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "這個用戶名已經被激活!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "您的電子郵件已確認。"
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "嘗試激活用戶時出現壹個錯誤。"
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "您輸入的電子郵件不是壹個有效的電子郵件地址。"
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "此郵箱地址已被保留使用。"
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "請嘗試壹個不同的!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "電子郵件已被使用。"
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "密碼不匹配"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "用戶名已經存在。"
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "這個用戶名已經被保留。"
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "最大上傳大小"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "當前頭像:沒有上傳頭像"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "頭像"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "點擊查看當前頭像"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "您確定要刪除這個頭像?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "點擊刪除當前頭像"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "必須"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "當前頭像"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "沒有上傳頭像"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "文件擴展名不匹配"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "文件只能被分段上傳"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "沒有選擇文件"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "系統丟失臨時文件緩存"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "磁盤無法寫入文件"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "壹個PHP擴展暫停文件上傳"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "發生未知錯誤"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "無法打開 socket!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "使用 reCAPTCHA 妳必須獲得壹個API密鑰"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "安全原因,您必須通過遠程IP到reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "使用 reCAPTCHA mailhide,您需要安裝 mcrypt PHP 模塊!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "使用 reCAPTCHA mailhide,妳必須註冊壹個公共和私人密鑰; 妳可以這樣做"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "使用reCAPTCHA,妳必須得到壹個API公開密鑰:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "使用reCAPTCHA,妳必須得到壹個API私人密鑰:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "當前文件:沒有上傳附件"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "當前文件"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "點擊查看當前附件"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "附件不能刪除(被標記為管理員權限)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "您確定要刪除此附件嗎?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "單擊刪除當前附件"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "沒有上傳附件"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "文件擴展名不允許"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "該文件只能被分段上傳"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "發生未知錯誤導致這個字段沒有更新"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "模塊"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "在這裏妳可以激活/停用 Profile Builder 模塊。"
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "名稱/描述"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "狀態"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "激活"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "關閉"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "管理員郵件定制"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "用戶郵件定制"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "保存"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "自定義頁面重定向請求:"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "動作"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "重定向"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "網址"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "註冊後:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "登錄後:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "重置密碼 (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "當激活這個功能,當用戶進入在 WordPress 默認的密碼恢復頁與 \"忘記密碼?\" 連接將重定向使用 Profile Builder 前端登陸頁面。"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "WordPress 默認頁面的重定向:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "WordPress 默認登錄頁面的重定向:"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "WordPress 默認退出頁面的重定向:"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "WordPress 默認註冊頁面的重定向:"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "WordPress 默認後臺的重定向:"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "將所有用戶角色,除具有管理員權限用戶(管理)。"
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "這些設置也復制在\"用戶郵件定制\" 設置頁中保存。"
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "來自(名子)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "來自(回復郵件)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "常用設置"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>新用戶在 {{site_name}}.</p>\n"
1943
+ "<p>用戶名:{{username}}</p>\n"
1944
+ "<p>郵箱:{{user_email}}</p>\n"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1947
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1948
+ #: ../modules/email-customizer/user-email-customizer.php:71
1949
+ #: ../modules/email-customizer/user-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:128
1951
+ #: ../modules/email-customizer/user-email-customizer.php:155
1952
+ #: ../modules/email-customizer/user-email-customizer.php:183
1953
+ msgid "Email Subject"
1954
+ msgstr "郵件主題"
1955
+
1956
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1957
+ msgid "Default Registration & Registration with Email Confirmation"
1958
+ msgstr "默認註冊與郵件確認註冊"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1961
+ msgid ""
1962
+ "\n"
1963
+ "<p>New subscriber on {{site_name}}.</p>\n"
1964
+ "<p>Username:{{username}}</p>\n"
1965
+ "<p>E-mail:{{user_email}}</p>\n"
1966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1968
+ msgstr ""
1969
+ "\n"
1970
+ "<p>新用戶在 {{site_name}}.</p>\n"
1971
+ "<p>用戶名:{{username}}</p>\n"
1972
+ "<p>郵箱:{{user_email}}</p>\n"
1973
+ "<p>管理審核功能已被激活,\n"
1974
+ "請記住,您需要批準這個用戶,他才能登陸!</p>\n"
1975
+
1976
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1977
+ #: ../modules/email-customizer/user-email-customizer.php:143
1978
+ msgid "Registration with Admin Approval"
1979
+ msgstr "註冊需管理員審批"
1980
+
1981
+ #: ../modules/email-customizer/email-customizer.php:7
1982
+ msgid "Available Tags"
1983
+ msgstr "可用標簽"
1984
+
1985
+ #: ../modules/email-customizer/email-customizer.php:11
1986
+ msgid "User Meta"
1987
+ msgstr "User Meta"
1988
+
1989
+ #: ../modules/email-customizer/email-customizer.php:21
1990
+ msgid "Site Url"
1991
+ msgstr "網站地址"
1992
+
1993
+ #: ../modules/email-customizer/email-customizer.php:22
1994
+ msgid "Site Name"
1995
+ msgstr "網站名稱"
1996
+
1997
+ #: ../modules/email-customizer/email-customizer.php:25
1998
+ #: ../modules/user-listing/userlisting.php:126
1999
+ msgid "User Id"
2000
+ msgstr "用戶名稱"
2001
+
2002
+ #: ../modules/email-customizer/email-customizer.php:32
2003
+ msgid "Reply To"
2004
+ msgstr "回復"
2005
+
2006
+ #: ../modules/email-customizer/email-customizer.php:35
2007
+ msgid "Activation Key"
2008
+ msgstr "激活密鑰"
2009
+
2010
+ #: ../modules/email-customizer/email-customizer.php:36
2011
+ msgid "Activation Url"
2012
+ msgstr "激活URL"
2013
+
2014
+ #: ../modules/email-customizer/email-customizer.php:37
2015
+ msgid "Activation Link"
2016
+ msgstr "激活鏈接"
2017
+
2018
+ #: ../modules/email-customizer/user-email-customizer.php:64
2019
+ msgid ""
2020
+ "\n"
2021
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2022
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2023
+ msgstr ""
2024
+ "\n"
2025
+ "<h3>歡迎來到 {{site_name}}!</h3>\n"
2026
+ "<p>您的用戶名是:{{username}} 密碼是:{{password}}</p>\n"
2027
+
2028
+ #: ../modules/email-customizer/user-email-customizer.php:85
2029
+ msgid "Default Registration"
2030
+ msgstr "默認註冊"
2031
+
2032
+ #: ../modules/email-customizer/user-email-customizer.php:91
2033
+ msgid ""
2034
+ "\n"
2035
+ "<p>To activate your user, please click the following link:<br/>\n"
2036
+ "{{{activation_link}}}</p>\n"
2037
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2038
+ msgstr ""
2039
+ "\n"
2040
+ "<p>激活您的帳戶,請點擊下面連接:<br/>\n"
2041
+ "{{{activation_link}}}</p>\n"
2042
+ "<p>在您激活完成後,將會收到另外壹封憑據郵件。</p>\n"
2043
+
2044
+ #: ../modules/email-customizer/user-email-customizer.php:103
2045
+ msgid "[{{site_name}}] Activate {{username}}"
2046
+ msgstr "[{{site_name}}] 激活 {{username}}"
2047
+
2048
+ #: ../modules/email-customizer/user-email-customizer.php:114
2049
+ msgid "Registration with Email Confirmation"
2050
+ msgstr "電子郵件確認註冊"
2051
+
2052
+ #: ../modules/email-customizer/user-email-customizer.php:120
2053
+ msgid ""
2054
+ "\n"
2055
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2056
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2057
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2058
+ msgstr ""
2059
+ "\n"
2060
+ "<h3>歡迎來到 {{site_name}}!</h3>\n"
2061
+ "<p>您的用戶名:{{username}} 密碼:{{password}}</p>\n"
2062
+ "<p>在您訪問您的帳號前,需要管理審批。您將會收郵件通知。</p>\n"
2063
+
2064
+ #: ../modules/email-customizer/user-email-customizer.php:132
2065
+ msgid "A new account has been created for you on {{site_name}}"
2066
+ msgstr "壹個新的帳號在您的 {{site_name}} 上建立"
2067
+
2068
+ #: ../modules/email-customizer/user-email-customizer.php:148
2069
+ msgid ""
2070
+ "\n"
2071
+ "<h3>Good News!</h3>\n"
2072
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2073
+ msgstr ""
2074
+ "\n"
2075
+ "<h3>好消息 !</h3>\n"
2076
+ "<p>管理員已經批準您的帳號: {{username}} 在 {{site_name}}.</p>\n"
2077
+
2078
+ #: ../modules/email-customizer/user-email-customizer.php:159
2079
+ msgid "Your account on {{site_name}} has been approved!"
2080
+ msgstr "您在 {{site_name}} 的帳號已經被通過!"
2081
+
2082
+ #: ../modules/email-customizer/user-email-customizer.php:170
2083
+ msgid "User Approval Notification"
2084
+ msgstr "用戶批準通知"
2085
+
2086
+ #: ../modules/email-customizer/user-email-customizer.php:175
2087
+ msgid ""
2088
+ "\n"
2089
+ "<h3>Hello,</h3>\n"
2090
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2091
+ msgstr ""
2092
+ "\n"
2093
+ "<h3>您好,</h3>\n"
2094
+ "<p>抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.</p>\n"
2095
+
2096
+ #: ../modules/email-customizer/user-email-customizer.php:187
2097
+ msgid "Your account on {{site_name}} has been unapproved!"
2098
+ msgstr "您在 {{site_name}} 的帳號被拒絕!"
2099
+
2100
+ #: ../modules/email-customizer/user-email-customizer.php:198
2101
+ msgid "Unapproved User Notification"
2102
+ msgstr "被拒絕的用戶通知"
2103
+
2104
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2105
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2106
+ msgid "Edit-profile Form"
2107
+ msgstr "編輯資料表單"
2108
+
2109
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2110
+ #: ../modules/multiple-forms/register-forms.php:13
2111
+ #: ../modules/user-listing/userlisting.php:13
2112
+ msgid "Add New"
2113
+ msgstr "新增加"
2114
+
2115
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2116
+ msgid "Add new Edit-profile Form"
2117
+ msgstr "添加新的編輯資料表單"
2118
+
2119
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2120
+ msgid "Edit the Edit-profile Forms"
2121
+ msgstr "編輯的編輯個人資料表單"
2122
+
2123
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2124
+ msgid "New Edit-profile Form"
2125
+ msgstr "新的編輯資料表單"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2129
+ msgid "Edit-profile Forms"
2130
+ msgstr "編輯資料表單"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2133
+ msgid "View the Edit-profile Form"
2134
+ msgstr "查看編輯資料表單"
2135
+
2136
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2137
+ msgid "Search the Edit-profile Forms"
2138
+ msgstr "搜索編輯資料表單"
2139
+
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2141
+ msgid "No Edit-profile Form found"
2142
+ msgstr "沒有編輯個人資料表單"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2145
+ msgid "No Edit-profile Forms found in trash"
2146
+ msgstr "在回收站中沒有編輯個人資料表單"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2149
+ #: ../modules/multiple-forms/register-forms.php:138
2150
+ #: ../modules/user-listing/userlisting.php:1029
2151
+ msgid "Shortcode"
2152
+ msgstr "簡碼"
2153
+
2154
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2155
+ #: ../modules/multiple-forms/register-forms.php:159
2156
+ #: ../modules/user-listing/userlisting.php:1050
2157
+ msgid "(no title)"
2158
+ msgstr "(沒有標題)"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2161
+ #: ../modules/multiple-forms/register-forms.php:178
2162
+ #: ../modules/user-listing/userlisting.php:1070
2163
+ msgid "The shortcode will be available after you publish this form."
2164
+ msgstr "簡碼將在您發布表單後可用。"
2165
+
2166
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2167
+ #: ../modules/multiple-forms/register-forms.php:180
2168
+ #: ../modules/user-listing/userlisting.php:1072
2169
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2170
+ msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
2171
+
2172
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2173
+ #: ../modules/multiple-forms/register-forms.php:184
2174
+ #: ../modules/user-listing/userlisting.php:1076
2175
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2176
+ msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
2177
+
2178
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2179
+ #: ../modules/multiple-forms/register-forms.php:190
2180
+ #: ../modules/user-listing/userlisting.php:1090
2181
+ msgid "Form Shortcode"
2182
+ msgstr "表單簡碼"
2183
+
2184
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2185
+ #: ../modules/multiple-forms/register-forms.php:230
2186
+ msgid "Whether to redirect the user to a specific page or not"
2187
+ msgstr "是否將用戶重定向到特定頁"
2188
+
2189
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2190
+ #: ../modules/multiple-forms/register-forms.php:231
2191
+ msgid "Display Messages"
2192
+ msgstr "顯示消息"
2193
+
2194
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2195
+ #: ../modules/multiple-forms/register-forms.php:231
2196
+ msgid "Allowed time to display any success messages (in seconds)"
2197
+ msgstr "允許用時間去顯示成功信息提示(秒)"
2198
+
2199
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2200
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2201
+ msgstr "指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向<br/>使用這種格式: http://www.mysite.com"
2202
+
2203
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2204
+ msgid "After Profile Update..."
2205
+ msgstr "檔案更新後…"
2206
+
2207
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2208
+ #: ../modules/multiple-forms/register-forms.php:260
2209
+ msgid "Add New Field to the List"
2210
+ msgstr "添加新字段到列表"
2211
+
2212
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2213
+ #: ../modules/multiple-forms/register-forms.php:264
2214
+ msgid "Choose one of the supported fields you manage <a href=\""
2215
+ msgstr "選擇壹個支持字段去管理 <a href=\""
2216
+
2217
+ #: ../modules/multiple-forms/multiple-forms.php:407
2218
+ msgid "<pre>Title (Type)</pre>"
2219
+ msgstr "<pre>標題 (類型)</pre>"
2220
+
2221
+ #: ../modules/multiple-forms/multiple-forms.php:233
2222
+ msgid "You need to specify the title of the form before creating it"
2223
+ msgstr "妳需要在創建前指定表單的標題"
2224
+
2225
+ #: ../modules/multiple-forms/register-forms.php:11
2226
+ #: ../modules/multiple-forms/register-forms.php:12
2227
+ msgid "Registration Form"
2228
+ msgstr "註冊表單"
2229
+
2230
+ #: ../modules/multiple-forms/register-forms.php:14
2231
+ msgid "Add new Registration Form"
2232
+ msgstr "增加新的註冊表單"
2233
+
2234
+ #: ../modules/multiple-forms/register-forms.php:15
2235
+ msgid "Edit the Registration Forms"
2236
+ msgstr "編緝註冊表單"
2237
+
2238
+ #: ../modules/multiple-forms/register-forms.php:16
2239
+ msgid "New Registration Form"
2240
+ msgstr "新註冊表單"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:17
2243
+ #: ../modules/multiple-forms/register-forms.php:23
2244
+ msgid "Registration Forms"
2245
+ msgstr "註冊表單"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:18
2248
+ msgid "View the Registration Form"
2249
+ msgstr "查看註冊表單"
2250
+
2251
+ #: ../modules/multiple-forms/register-forms.php:19
2252
+ msgid "Search the Registration Forms"
2253
+ msgstr "搜索註冊表單"
2254
+
2255
+ #: ../modules/multiple-forms/register-forms.php:20
2256
+ msgid "No Registration Form found"
2257
+ msgstr "沒有找到註冊表單"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:21
2260
+ msgid "No Registration Forms found in trash"
2261
+ msgstr "在回收站沒有找到註冊表單"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:219
2264
+ msgid "Default Role"
2265
+ msgstr "默認角色"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:228
2268
+ msgid "Set Role"
2269
+ msgstr "設置角色"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:228
2272
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2273
+ msgstr "選擇用戶註冊後的角色<br/>如無指定,將默認使用 WordPress 的設定"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:229
2276
+ msgid "Automatically Log In"
2277
+ msgstr "自動登錄"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:229
2280
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2281
+ msgstr "是否記錄用戶新註冊 <br/> 只使用於單網站,並且沒有開啟 \"管理員審批\" 與 \"郵箱確認\" 功能 <br/>警告:緩存註冊表單會讓自動登錄不正常"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:232
2284
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2285
+ msgstr "指定用戶註冊頁面地址將被重定向<br/>使用下列格式: http://www.mysite.com"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:238
2288
+ msgid "After Registration..."
2289
+ msgstr "註冊後…"
2290
+
2291
+ #: ../modules/user-listing/class-userlisting.php:458
2292
+ #: ../modules/user-listing/userlisting.php:624
2293
+ #: ../modules/user-listing/userlisting.php:842
2294
+ #: ../modules/user-listing/userlisting.php:885
2295
+ #: ../modules/user-listing/userlisting.php:1209
2296
+ msgid "Search Users by All Fields"
2297
+ msgstr "在所有字段中搜索用戶"
2298
+
2299
+ #: ../modules/user-listing/userlisting.php:14
2300
+ msgid "Add new User Listing"
2301
+ msgstr "增加新的用戶列表"
2302
+
2303
+ #: ../modules/user-listing/userlisting.php:15
2304
+ msgid "Edit the User Listing"
2305
+ msgstr "編輯用戶列表"
2306
+
2307
+ #: ../modules/user-listing/userlisting.php:16
2308
+ msgid "New User Listing"
2309
+ msgstr "新的用戶列表"
2310
+
2311
+ #: ../modules/user-listing/userlisting.php:18
2312
+ msgid "View the User Listing"
2313
+ msgstr "查看用戶列表"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:19
2316
+ msgid "Search the User Listing"
2317
+ msgstr "搜索用戶列表"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:20
2320
+ msgid "No User Listing found"
2321
+ msgstr "沒有找到用戶列表"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:21
2324
+ msgid "No User Listing found in trash"
2325
+ msgstr "沒有在回收站找到用戶列表"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:97
2328
+ msgid "Display name as"
2329
+ msgstr "顯示名稱為"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:110
2332
+ msgid "Url"
2333
+ msgstr "網址"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:118
2336
+ #: ../modules/user-listing/userlisting.php:1118
2337
+ msgid "Registration Date"
2338
+ msgstr "註冊日期"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:119
2341
+ #: ../modules/user-listing/userlisting.php:1122
2342
+ msgid "Number of Posts"
2343
+ msgstr "帖子數"
2344
+
2345
+ #: ../modules/user-listing/userlisting.php:123
2346
+ msgid "More Info"
2347
+ msgstr "更多信息"
2348
+
2349
+ #: ../modules/user-listing/userlisting.php:124
2350
+ msgid "More Info Url"
2351
+ msgstr "更多信息網址"
2352
+
2353
+ #: ../modules/user-listing/userlisting.php:125
2354
+ msgid "Avatar or Gravatar"
2355
+ msgstr "頭像或 Gravatar"
2356
+
2357
+ #: ../modules/user-listing/userlisting.php:153
2358
+ msgid "Meta Variables"
2359
+ msgstr "Meta 變量"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:159
2362
+ msgid "Sort Variables"
2363
+ msgstr "分類變量"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:163
2366
+ #: ../modules/user-listing/userlisting.php:190
2367
+ msgid "Extra Functions"
2368
+ msgstr "額外功能"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:165
2371
+ msgid "Pagination"
2372
+ msgstr "分頁"
2373
+
2374
+ #: ../modules/user-listing/userlisting.php:166
2375
+ msgid "Search all Fields"
2376
+ msgstr "搜索所有字段"
2377
+
2378
+ #: ../modules/user-listing/userlisting.php:192
2379
+ msgid "Go Back Link"
2380
+ msgstr "返回鏈接"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:210
2383
+ msgid "All-userlisting Template"
2384
+ msgstr "所有用戶列表模板"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:213
2387
+ msgid "Single-userlisting Template"
2388
+ msgstr "單用戶列表模板"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:330
2391
+ msgid "You do not have permission to view this user list"
2392
+ msgstr "您沒有權限查看該用戶列表"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:343
2395
+ msgid "You do not have the required user role to view this user list"
2396
+ msgstr "沒有所需的用戶權限查看用戶列表"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:519
2399
+ msgid "First/Lastname"
2400
+ msgstr "名字/姓氏"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:525
2403
+ msgid "Sign-up Date"
2404
+ msgstr "註冊日期"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:534
2407
+ #: ../modules/user-listing/userlisting.php:1121
2408
+ msgid "Display Name"
2409
+ msgstr "顯示名稱"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:543
2412
+ msgid "Posts"
2413
+ msgstr "帖子"
2414
+
2415
+ #: ../modules/user-listing/userlisting.php:546
2416
+ #: ../modules/user-listing/userlisting.php:1126
2417
+ msgid "Aim"
2418
+ msgstr "Aim"
2419
+
2420
+ #: ../modules/user-listing/userlisting.php:549
2421
+ #: ../modules/user-listing/userlisting.php:1127
2422
+ msgid "Yim"
2423
+ msgstr "Yim"
2424
+
2425
+ #: ../modules/user-listing/userlisting.php:552
2426
+ #: ../modules/user-listing/userlisting.php:1128
2427
+ msgid "Jabber"
2428
+ msgstr "Jabber"
2429
+
2430
+ #: ../modules/user-listing/userlisting.php:701
2431
+ msgid "Click here to see more information about this user"
2432
+ msgstr "點擊這裏查看此用戶的更多信息"
2433
+
2434
+ #: ../modules/user-listing/userlisting.php:701
2435
+ msgid "More..."
2436
+ msgstr "更多..."
2437
+
2438
+ #: ../modules/user-listing/userlisting.php:704
2439
+ msgid "Click here to see more information about this user."
2440
+ msgstr "點擊這裏查看此用戶的更多信息。"
2441
+
2442
+ #: ../modules/user-listing/userlisting.php:796
2443
+ #: ../modules/user-listing/userlisting.php:799
2444
+ msgid "Click here to go back"
2445
+ msgstr "點擊這裏返回"
2446
+
2447
+ #: ../modules/user-listing/userlisting.php:796
2448
+ msgid "Back"
2449
+ msgstr "返回"
2450
+
2451
+ #: ../modules/user-listing/userlisting.php:829
2452
+ msgid "&laquo;&laquo; First"
2453
+ msgstr "&laquo;&laquo; 首頁"
2454
+
2455
+ #: ../modules/user-listing/userlisting.php:830
2456
+ msgid "&laquo; Prev"
2457
+ msgstr "&laquo; 上壹頁"
2458
+
2459
+ #: ../modules/user-listing/userlisting.php:831
2460
+ msgid "Next &raquo; "
2461
+ msgstr "下壹頁 &raquo; "
2462
+
2463
+ #: ../modules/user-listing/userlisting.php:832
2464
+ msgid "Last &raquo;&raquo;"
2465
+ msgstr "最後 &raquo;&raquo;"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:861
2468
+ msgid "You don't have any pagination settings on this userlisting!"
2469
+ msgstr "您不需在用戶列表中設置分頁"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:902
2472
+ msgid "Search"
2473
+ msgstr "搜索"
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:903
2476
+ msgid "Clear Results"
2477
+ msgstr "清除結果"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:1079
2480
+ msgid "Extra shortcode parameters"
2481
+ msgstr "額外簡碼參數"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:1081
2484
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2485
+ msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:1082
2488
+ msgid "Example:"
2489
+ msgstr "例子:"
2490
+
2491
+ #: ../modules/user-listing/userlisting.php:1084
2492
+ msgid "Remember though, that the field-value combination must exist in the database."
2493
+ msgstr "記住,該字段值的組合必須存在於數據庫中。"
2494
+
2495
+ #: ../modules/user-listing/userlisting.php:1138
2496
+ msgid "Random (very slow on large databases > 10K user)"
2497
+ msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
2498
+
2499
+ #: ../modules/user-listing/userlisting.php:1151
2500
+ msgid "Roles to Display"
2501
+ msgstr "角色顯示:"
2502
+
2503
+ #: ../modules/user-listing/userlisting.php:1151
2504
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2505
+ msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
2506
+
2507
+ #: ../modules/user-listing/userlisting.php:1152
2508
+ msgid "Number of Users/Page"
2509
+ msgstr "用戶/頁面數"
2510
+
2511
+ #: ../modules/user-listing/userlisting.php:1153
2512
+ msgid "Default Sorting Criteria"
2513
+ msgstr "默認分類標準"
2514
+
2515
+ #: ../modules/user-listing/userlisting.php:1153
2516
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2517
+ msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
2518
+
2519
+ #: ../modules/user-listing/userlisting.php:1154
2520
+ msgid "Default Sorting Order"
2521
+ msgstr "默認排列順序"
2522
+
2523
+ #: ../modules/user-listing/userlisting.php:1154
2524
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2525
+ msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
2526
+
2527
+ #: ../modules/user-listing/userlisting.php:1155
2528
+ msgid "Avatar Size (All-userlisting)"
2529
+ msgstr "頭像大小(所有用戶列表)"
2530
+
2531
+ #: ../modules/user-listing/userlisting.php:1155
2532
+ msgid "Set the avatar size on the all-userlisting only"
2533
+ msgstr "設置在所有用戶列表的頭像大小"
2534
+
2535
+ #: ../modules/user-listing/userlisting.php:1156
2536
+ msgid "Avatar Size (Single-userlisting)"
2537
+ msgstr "頭像大小(單用戶列表)"
2538
+
2539
+ #: ../modules/user-listing/userlisting.php:1156
2540
+ msgid "Set the avatar size on the single-userlisting only"
2541
+ msgstr "設置在單用戶列表的頭像大小"
2542
+
2543
+ #: ../modules/user-listing/userlisting.php:1157
2544
+ msgid "Visible only to logged in users?"
2545
+ msgstr "只有登錄用戶可見的?"
2546
+
2547
+ #: ../modules/user-listing/userlisting.php:1157
2548
+ msgid "The userlisting will only be visible only to the logged in users"
2549
+ msgstr "用戶列表只有登錄用戶可見的"
2550
+
2551
+ #: ../modules/user-listing/userlisting.php:1158
2552
+ msgid "Visible to following Roles"
2553
+ msgstr "以下角色可見"
2554
+
2555
+ #: ../modules/user-listing/userlisting.php:1158
2556
+ msgid "The userlisting will only be visible to the following roles"
2557
+ msgstr "用戶列表只允許以下角色可見"
2558
+
2559
+ #: ../modules/user-listing/userlisting.php:1164
2560
+ msgid "Userlisting Settings"
2561
+ msgstr "用戶列表設置"
2562
+
2563
+ #: ../modules/user-listing/userlisting.php:1185
2564
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2565
+ msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
2566
+
2567
+ #: ../modules/user-listing/userlisting.php:1185
2568
+ msgid "You can find it in the Profile Builder menu."
2569
+ msgstr "妳可以在 Profile Builder 菜單中找到它。"
2570
+
2571
+ #: ../modules/user-listing/userlisting.php:1335
2572
+ msgid "No results found!"
2573
+ msgstr "無任何結果!"
translation/profilebuilder-zh_TW.mo ADDED
Binary file
translation/profilebuilder-zh_TW.po ADDED
@@ -0,0 +1,2573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Chinese (Taiwan)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-10 07:25:50+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: ../modules/email-customizer/admin-email-customizer.php:38
14
+ #: ../modules/email-customizer/user-email-customizer.php:38
15
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
16
+ msgstr ""
17
+
18
+ #: ../admin/admin-bar.php:48
19
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
20
+ msgstr ""
21
+
22
+ #: ../admin/manage-fields.php:85
23
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
24
+ msgstr ""
25
+
26
+ #: ../admin/manage-fields.php:380
27
+ msgid "The meta-name cannot be empty\n"
28
+ msgstr ""
29
+
30
+ #: ../admin/register-version.php:57
31
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
32
+ msgstr ""
33
+
34
+ #: ../admin/register-version.php:219
35
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
36
+ msgstr ""
37
+
38
+ #: ../admin/register-version.php:222
39
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
40
+ msgstr ""
41
+
42
+ #: ../admin/register-version.php:227
43
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
44
+ msgstr ""
45
+
46
+ #: ../assets/lib/wck-api/fields/country select.php:14
47
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
48
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
49
+ #: select.php:15
50
+ msgid "...Choose"
51
+ msgstr ""
52
+
53
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
54
+ msgid "1 item"
55
+ msgstr ""
56
+
57
+ #: ../features/functions.php:468
58
+ msgid "Very Weak"
59
+ msgstr ""
60
+
61
+ #: ../features/functions.php:556
62
+ msgid "This field is required"
63
+ msgstr ""
64
+
65
+ #: ../features/functions.php:576
66
+ msgid "Cancel"
67
+ msgstr ""
68
+
69
+ #: ../features/functions.php:607
70
+ 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"
71
+ msgstr ""
72
+
73
+ #: ../front-end/login.php:79
74
+ msgid "Invalid username."
75
+ msgstr ""
76
+
77
+ #: ../front-end/login.php:84
78
+ msgid "username"
79
+ msgstr ""
80
+
81
+ #: ../front-end/login.php:84
82
+ msgid "email"
83
+ msgstr ""
84
+
85
+ #: ../front-end/login.php:178
86
+ msgid "Lost your password?"
87
+ msgstr ""
88
+
89
+ #: ../index.php:34
90
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
91
+ msgstr ""
92
+
93
+ #: ../modules/email-customizer/admin-email-customizer.php:54
94
+ #: ../modules/email-customizer/user-email-customizer.php:54
95
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
96
+ msgstr ""
97
+
98
+ #: ../modules/email-customizer/email-customizer.php:265
99
+ #: ../modules/email-customizer/email-customizer.php:272
100
+ msgid "Your selected password at signup"
101
+ msgstr ""
102
+
103
+ #: ../modules/email-customizer/user-email-customizer.php:38
104
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
105
+ msgstr ""
106
+
107
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
108
+ msgid "This form is empty."
109
+ msgstr ""
110
+
111
+ #: ../modules/multiple-forms/multiple-forms.php:407
112
+ msgid "Delete all items"
113
+ msgstr ""
114
+
115
+ #: ../modules/multiple-forms/multiple-forms.php:407
116
+ msgid "Delete all"
117
+ msgstr ""
118
+
119
+ #: ../modules/multiple-forms/register-forms.php:230
120
+ msgid "Choose..."
121
+ msgstr ""
122
+
123
+ #: ../modules/user-listing/userlisting.php:1152
124
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
125
+ msgstr ""
126
+
127
+ #: ../admin/admin-bar.php:10
128
+ msgid "Show/Hide the Admin Bar on the Front-End"
129
+ msgstr "顯示/隱藏管理員工具欄在前端"
130
+
131
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
132
+ msgid "Admin Bar Settings"
133
+ msgstr "管理員工具欄設置"
134
+
135
+ #: ../admin/admin-bar.php:57
136
+ msgid "User-Role"
137
+ msgstr "用戶角色"
138
+
139
+ #: ../admin/admin-bar.php:58
140
+ msgid "Visibility"
141
+ msgstr "可見"
142
+
143
+ #: ../admin/admin-bar.php:73
144
+ msgid "Default"
145
+ msgstr "默認"
146
+
147
+ #: ../admin/admin-bar.php:74
148
+ msgid "Show"
149
+ msgstr "顯示"
150
+
151
+ #: ../admin/admin-bar.php:75
152
+ msgid "Hide"
153
+ msgstr "隱藏"
154
+
155
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
156
+ #: ../admin/register-version.php:81 ../features/functions.php:569
157
+ #: ../modules/custom-redirects/custom-redirects.php:136
158
+ #: ../modules/modules.php:142
159
+ msgid "Save Changes"
160
+ msgstr "保存更改"
161
+
162
+ #: ../admin/admin-functions.php:34
163
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
164
+ msgstr "登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 \"%s\" 選項卡中 )"
165
+
166
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
167
+ #: ../admin/general-settings.php:38
168
+ msgid "General Settings"
169
+ msgstr "常規設置"
170
+
171
+ #: ../admin/admin-functions.php:106
172
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
173
+ msgstr "<strong>錯誤</strong>: 密碼必須最小長度"
174
+
175
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
176
+ msgid "Very weak"
177
+ msgstr "非常弱"
178
+
179
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
180
+ #: ../features/functions.php:468
181
+ msgid "Weak"
182
+ msgstr "弱"
183
+
184
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
185
+ #: ../features/functions.php:468
186
+ msgid "Medium"
187
+ msgstr "中"
188
+
189
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
190
+ #: ../features/functions.php:468
191
+ msgid "Strong"
192
+ msgstr "強"
193
+
194
+ #: ../admin/admin-functions.php:123
195
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
196
+ msgstr "<strong>錯誤</strong>: 密碼必須至少有壹個強度"
197
+
198
+ #: ../admin/admin-functions.php:162
199
+ msgid "Add Field"
200
+ msgstr "添加字段"
201
+
202
+ #: ../admin/admin-functions.php:164
203
+ msgid "Save Settings"
204
+ msgstr "保存設置"
205
+
206
+ #: ../admin/basic-info.php:10
207
+ msgid "Basic Information"
208
+ msgstr "基本信息"
209
+
210
+ #: ../admin/basic-info.php:29
211
+ msgid "Version %s"
212
+ msgstr "版本 %s"
213
+
214
+ #: ../admin/basic-info.php:30
215
+ msgid "<strong>Profile Builder </strong>"
216
+ msgstr "<strong>Profile Builder </strong>"
217
+
218
+ #: ../admin/basic-info.php:31
219
+ msgid "The best way to add front-end registration, edit profile and login forms."
220
+ msgstr "最好的前端註冊、編輯個人資料與登陸表單的實現方式。"
221
+
222
+ #: ../admin/basic-info.php:33
223
+ msgid "For Modern User Interaction"
224
+ msgstr "新穎的用戶交互。"
225
+
226
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
227
+ msgid "Login"
228
+ msgstr "登陸"
229
+
230
+ #: ../admin/basic-info.php:37
231
+ msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
232
+ msgstr "快捷登陸使用 <strong class=\"nowrap\">[wppb-login]</strong> 簡碼或者小工具。"
233
+
234
+ #: ../admin/basic-info.php:40
235
+ msgid "Registration"
236
+ msgstr "註冊"
237
+
238
+ #: ../admin/basic-info.php:41
239
+ msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
240
+ msgstr "漂亮的註冊表單,完全可自定義使用 <strong class=\"nowrap\">[wppb-register]</strong> 簡碼。"
241
+
242
+ #: ../admin/basic-info.php:44
243
+ msgid "Edit Profile"
244
+ msgstr "編輯個人資料"
245
+
246
+ #: ../admin/basic-info.php:45
247
+ msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
248
+ msgstr "編輯個人資料直接可以使用 <strong class=\"nowrap\">[wppb-edit-profile]</strong> 簡碼."
249
+
250
+ #: ../admin/basic-info.php:51
251
+ msgid "Extra Features"
252
+ msgstr "額外字段"
253
+
254
+ #: ../admin/basic-info.php:52
255
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
256
+ msgstr "特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。"
257
+
258
+ #: ../admin/basic-info.php:53
259
+ msgid "Enable extra features"
260
+ msgstr "啟用額外功能"
261
+
262
+ #: ../admin/basic-info.php:57
263
+ msgid "Recover Password"
264
+ msgstr "恢復密碼"
265
+
266
+ #: ../admin/basic-info.php:58
267
+ msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
268
+ msgstr "允許用戶恢復密碼在前端使用簡碼 [wppb-recover-password]。"
269
+
270
+ #: ../admin/basic-info.php:61
271
+ msgid "Admin Approval (*)"
272
+ msgstr "管理員審批 (*)"
273
+
274
+ #: ../admin/basic-info.php:62
275
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
276
+ msgstr "妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。"
277
+
278
+ #: ../admin/basic-info.php:65
279
+ msgid "Email Confirmation"
280
+ msgstr "電子郵件確認"
281
+
282
+ #: ../admin/basic-info.php:66
283
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
284
+ msgstr "確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。"
285
+
286
+ #: ../admin/basic-info.php:69
287
+ msgid "Minimum Password Length and Strength Meter"
288
+ msgstr "最小密碼長度和強度表"
289
+
290
+ #: ../admin/basic-info.php:70
291
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
292
+ msgstr "消除弱密碼最小密碼長度,並強制執行設定的密碼強度。"
293
+
294
+ #: ../admin/basic-info.php:73
295
+ msgid "Login with Email or Username"
296
+ msgstr "通過電子郵件或用戶名登錄"
297
+
298
+ #: ../admin/basic-info.php:74
299
+ msgid "Allow users to log in with their email or username when accessing your site."
300
+ msgstr "當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。"
301
+
302
+ #: ../admin/basic-info.php:87
303
+ msgid "Customize Your Forms The Way You Want (*)"
304
+ msgstr "自定義表格用妳想要的方式(*)"
305
+
306
+ #: ../admin/basic-info.php:88
307
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
308
+ msgstr "額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。"
309
+
310
+ #: ../admin/basic-info.php:90
311
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
312
+ msgstr "額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用"
313
+
314
+ #: ../admin/basic-info.php:92
315
+ msgid "Get started with extra fields"
316
+ msgstr "開始使用額外字段"
317
+
318
+ #: ../admin/basic-info.php:95
319
+ msgid "Avatar Upload"
320
+ msgstr "頭像上傳"
321
+
322
+ #: ../admin/basic-info.php:96
323
+ msgid "Generic Uploads"
324
+ msgstr "常規上傳"
325
+
326
+ #: ../admin/basic-info.php:97
327
+ msgid "Agree To Terms Checkbox"
328
+ msgstr "同意使用條款"
329
+
330
+ #: ../admin/basic-info.php:98
331
+ msgid "Datepicker"
332
+ msgstr "日期選擇器"
333
+
334
+ #: ../admin/basic-info.php:99
335
+ msgid "reCAPTCHA"
336
+ msgstr "reCAPTCHA"
337
+
338
+ #: ../admin/basic-info.php:100
339
+ msgid "Country Select"
340
+ msgstr "國家選擇"
341
+
342
+ #: ../admin/basic-info.php:101
343
+ msgid "Timezone Select"
344
+ msgstr "時區選擇"
345
+
346
+ #: ../admin/basic-info.php:102
347
+ msgid "Input / Hidden Input"
348
+ msgstr "輸入/隱藏輸入"
349
+
350
+ #: ../admin/basic-info.php:103
351
+ msgid "Checkbox"
352
+ msgstr "復選框"
353
+
354
+ #: ../admin/basic-info.php:104
355
+ msgid "Select"
356
+ msgstr "選擇"
357
+
358
+ #: ../admin/basic-info.php:105
359
+ msgid "Radio Buttons"
360
+ msgstr "單選按鈕"
361
+
362
+ #: ../admin/basic-info.php:106
363
+ msgid "Textarea"
364
+ msgstr "文本框"
365
+
366
+ #: ../admin/basic-info.php:115
367
+ msgid "Powerful Modules (**)"
368
+ msgstr "強大的模塊(**)"
369
+
370
+ #: ../admin/basic-info.php:116
371
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
372
+ msgstr "使用壹切妳需要的工具,用於管理妳的用戶的模塊。"
373
+
374
+ #: ../admin/basic-info.php:118
375
+ msgid "Enable your modules"
376
+ msgstr "啟用妳的模塊"
377
+
378
+ #: ../admin/basic-info.php:121
379
+ msgid "Find out more about PRO Modules"
380
+ msgstr "了解關於專業版模塊的更多內容"
381
+
382
+ #: ../admin/basic-info.php:126 ../modules/modules.php:111
383
+ #: ../modules/user-listing/userlisting.php:11
384
+ #: ../modules/user-listing/userlisting.php:12
385
+ #: ../modules/user-listing/userlisting.php:17
386
+ #: ../modules/user-listing/userlisting.php:23
387
+ msgid "User Listing"
388
+ msgstr "用戶列表"
389
+
390
+ #: ../admin/basic-info.php:128
391
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
392
+ msgstr "易於編輯模列表您的網站用戶,以及創建單用戶頁面模板。基於簡碼,提供了許多選項來定制您的列表。"
393
+
394
+ #: ../admin/basic-info.php:130
395
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
396
+ msgstr "創建壹個頁面包含已註冊在當前的網站/博客用戶列表,將下面的短碼放進頁面:"
397
+
398
+ #: ../admin/basic-info.php:134
399
+ msgid "Email Customizer"
400
+ msgstr "電子郵件定制"
401
+
402
+ #: ../admin/basic-info.php:135
403
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
404
+ msgstr "個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。"
405
+
406
+ #: ../admin/basic-info.php:138
407
+ #: ../modules/custom-redirects/custom-redirects.php:29
408
+ #: ../modules/modules.php:32 ../modules/modules.php:132
409
+ msgid "Custom Redirects"
410
+ msgstr "自定義重定向"
411
+
412
+ #: ../admin/basic-info.php:139
413
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
414
+ msgstr "讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。"
415
+
416
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
417
+ msgid "Multiple Registration Forms"
418
+ msgstr "多個註冊形式"
419
+
420
+ #: ../admin/basic-info.php:145
421
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
422
+ msgstr "設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。"
423
+
424
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
425
+ msgid "Multiple Edit-profile Forms"
426
+ msgstr "多個編輯個人資料形式"
427
+
428
+ #: ../admin/basic-info.php:149
429
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
430
+ msgstr "允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。"
431
+
432
+ #: ../admin/basic-info.php:161
433
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
434
+ msgstr " * 僅獲得在 %1$sHobbyist 與專業版本 %2$s."
435
+
436
+ #: ../admin/basic-info.php:162
437
+ msgid "** only available in the %1$sPro version%2$s."
438
+ msgstr "** 僅激活在 %1$s專業版本 %2$s."
439
+
440
+ #: ../admin/general-settings.php:42
441
+ msgid "Load Profile Builder's own CSS file in the front-end:"
442
+ msgstr "在前端載入 Profile Builder 的CSS文件:"
443
+
444
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
445
+ #: ../admin/general-settings.php:114
446
+ #: ../modules/multiple-forms/register-forms.php:229
447
+ #: ../modules/multiple-forms/register-forms.php:230
448
+ #: ../modules/user-listing/userlisting.php:1157
449
+ msgid "Yes"
450
+ msgstr "是"
451
+
452
+ #: ../admin/general-settings.php:47
453
+ msgid "You can find the default file here: %1$s"
454
+ msgstr "妳可以在這裏找到默認的文件: %1$s"
455
+
456
+ #: ../admin/general-settings.php:56
457
+ msgid "\"Email Confirmation\" Activated:"
458
+ msgstr "\"郵件確認\" 激活:"
459
+
460
+ #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
461
+ #: ../modules/multiple-forms/register-forms.php:229
462
+ #: ../modules/multiple-forms/register-forms.php:230
463
+ msgid "No"
464
+ msgstr "不"
465
+
466
+ #: ../admin/general-settings.php:64
467
+ msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
468
+ msgstr "在單個站點安裝本工作會在前端形成。建議轉向 WP 默認註冊使用 Profile Builder 的 \"自定義轉向\" 模塊。"
469
+
470
+ #: ../admin/general-settings.php:65
471
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
472
+ msgstr "這個 \"郵件確認\" 功能默認在 WPMU 安裝是默認開啟的。"
473
+
474
+ #: ../admin/general-settings.php:67
475
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
476
+ msgstr "您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s."
477
+
478
+ #: ../admin/general-settings.php:79
479
+ msgid "\"Email Confirmation\" Landing Page:"
480
+ msgstr "\"郵件確認\" 登陸頁面:"
481
+
482
+ #: ../admin/general-settings.php:84
483
+ msgid "Existing Pages"
484
+ msgstr "現有頁面"
485
+
486
+ #: ../admin/general-settings.php:99
487
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
488
+ msgstr "指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。"
489
+
490
+ #: ../admin/general-settings.php:110
491
+ msgid "\"Admin Approval\" Activated:"
492
+ msgstr "\"管理員審批\" 激活:"
493
+
494
+ #: ../admin/general-settings.php:118
495
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
496
+ msgstr "您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s."
497
+
498
+ #: ../admin/general-settings.php:130
499
+ msgid "\"Admin Approval\" Feature:"
500
+ msgstr "\"管理員審批\" 功能 :"
501
+
502
+ #: ../admin/general-settings.php:133
503
+ 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."
504
+ msgstr "您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。"
505
+
506
+ #: ../admin/general-settings.php:140
507
+ msgid "Allow Users to Log in With:"
508
+ msgstr "允許用戶使用什麽登陸:"
509
+
510
+ #: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
511
+ #: ../features/admin-approval/class-admin-approval.php:177
512
+ #: ../features/email-confirmation/class-email-confirmation.php:153
513
+ #: ../modules/email-customizer/email-customizer.php:28
514
+ #: ../modules/user-listing/userlisting.php:94
515
+ #: ../modules/user-listing/userlisting.php:516
516
+ #: ../modules/user-listing/userlisting.php:1114
517
+ msgid "Username"
518
+ msgstr "姓名"
519
+
520
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
521
+ #: ../modules/email-customizer/email-customizer.php:29
522
+ #: ../modules/user-listing/userlisting.php:522
523
+ #: ../modules/user-listing/userlisting.php:1115
524
+ msgid "Email"
525
+ msgstr "電子郵件"
526
+
527
+ #: ../admin/general-settings.php:152
528
+ msgid "Minimum Password Length:"
529
+ msgstr "最小密碼長度:"
530
+
531
+ #: ../admin/general-settings.php:157
532
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
533
+ msgstr "輸入密碼必須最少字符。留空為沒有限制"
534
+
535
+ #: ../admin/general-settings.php:164
536
+ msgid "Minimum Password Strength:"
537
+ msgstr "最小密碼強度:"
538
+
539
+ #: ../admin/general-settings.php:168
540
+ msgid "Disabled"
541
+ msgstr "關閉"
542
+
543
+ #: ../admin/manage-fields.php:12
544
+ msgid "Manage Fields"
545
+ msgstr "管理字段"
546
+
547
+ #: ../admin/manage-fields.php:13
548
+ msgid "Manage Default and Extra Fields"
549
+ msgstr "管理默認與額外字段"
550
+
551
+ #: ../admin/manage-fields.php:74
552
+ msgid "Field Title"
553
+ msgstr "字段標題"
554
+
555
+ #: ../admin/manage-fields.php:74
556
+ msgid "Title of the field"
557
+ msgstr "字段的標題"
558
+
559
+ #: ../admin/manage-fields.php:75
560
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
561
+ #: ../modules/multiple-forms/register-forms.php:264
562
+ msgid "Field"
563
+ msgstr "字段"
564
+
565
+ #: ../admin/manage-fields.php:76
566
+ msgid "Meta-name"
567
+ msgstr "Meta-name"
568
+
569
+ #: ../admin/manage-fields.php:76
570
+ msgid "Use this in conjuction 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 uniqe)<br/>Changing this might take long in case of a very big user-count"
571
+ msgstr "使用這個結合 WordPress 功能去顯示您選擇的頁面中的值<br/> 自動完成,但在某些情況下可編輯(在這情況下它必須是唯壹的)<br/> 在用戶數量大的情況下,改變這個可能需要很長時間"
572
+
573
+ #: ../admin/manage-fields.php:77
574
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
575
+ #: ../modules/multiple-forms/register-forms.php:265
576
+ msgid "ID"
577
+ msgstr "編號"
578
+
579
+ #: ../admin/manage-fields.php:77
580
+ #: ../modules/multiple-forms/edit-profile-forms.php:244
581
+ #: ../modules/multiple-forms/register-forms.php:265
582
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
583
+ msgstr "壹個獨特的、為特定的字段自動生成ID<br/>如果需要可以使用過濾器調用這個目標<br/>不能編輯"
584
+
585
+ #: ../admin/manage-fields.php:78
586
+ msgid "Description"
587
+ msgstr "描述"
588
+
589
+ #: ../admin/manage-fields.php:78
590
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
591
+ msgstr "輸入(詳細)的最終用戶閱讀選項的描述<br/>可選"
592
+
593
+ #: ../admin/manage-fields.php:79
594
+ msgid "Row Count"
595
+ msgstr "行數"
596
+
597
+ #: ../admin/manage-fields.php:79
598
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
599
+ msgstr "指定 'Textarea' 字段的行數<br/>如果沒有指定,缺省為5"
600
+
601
+ #: ../admin/manage-fields.php:80
602
+ msgid "Allowed Image Extensions"
603
+ msgstr "允許的圖像擴展"
604
+
605
+ #: ../admin/manage-fields.php:80
606
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
607
+ msgstr "指定您想限制上傳的擴展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如無指定,默認支持所有圖像擴展名 (.*)"
608
+
609
+ #: ../admin/manage-fields.php:81
610
+ msgid "Allowed Upload Extensions"
611
+ msgstr "允許的上傳擴展"
612
+
613
+ #: ../admin/manage-fields.php:81
614
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
615
+ msgstr "指定您想限制上傳的擴展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如無指定,默認是所有已在使用的擴展名 (.*)"
616
+
617
+ #: ../admin/manage-fields.php:82
618
+ msgid "Avatar Size"
619
+ msgstr "頭像大小"
620
+
621
+ #: ../admin/manage-fields.php:82
622
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
623
+ msgstr "輸入 '頭像' 大小數值 ( 20 與 200 之間 ) <br/>如果沒指定,默認是100"
624
+
625
+ #: ../admin/manage-fields.php:83
626
+ msgid "Date-format"
627
+ msgstr "日期格式"
628
+
629
+ #: ../admin/manage-fields.php:83
630
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
631
+ msgstr "當使用日期選擇器指定日期格式<br/>有效選項: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>如無指定,默認是 mm/dd/yy"
632
+
633
+ #: ../admin/manage-fields.php:84
634
+ msgid "Terms of Agreement"
635
+ msgstr "協議條款"
636
+
637
+ #: ../admin/manage-fields.php:84
638
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
639
+ msgstr "輸入壹個供用戶查看的協議內容。<br/> 連接可以使用 HTML 語法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
640
+
641
+ #: ../admin/manage-fields.php:85
642
+ msgid "Options"
643
+ msgstr "選項"
644
+
645
+ #: ../admin/manage-fields.php:86
646
+ msgid "Labels"
647
+ msgstr "標簽"
648
+
649
+ #: ../admin/manage-fields.php:86
650
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
651
+ msgstr "輸入壹個逗號分隔標簽 <br/> 對用戶可見的"
652
+
653
+ #: ../admin/manage-fields.php:87
654
+ msgid "Public Key"
655
+ msgstr "公共密鑰"
656
+
657
+ #: ../admin/manage-fields.php:87
658
+ msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
659
+ msgstr "Google 公開密鑰, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
660
+
661
+ #: ../admin/manage-fields.php:88
662
+ msgid "Private Key"
663
+ msgstr "專用密鑰"
664
+
665
+ #: ../admin/manage-fields.php:88
666
+ msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
667
+ msgstr "Google 私人密鑰, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
668
+
669
+ #: ../admin/manage-fields.php:89
670
+ msgid "Default Value"
671
+ msgstr "默認值"
672
+
673
+ #: ../admin/manage-fields.php:89
674
+ msgid "Default value of the field"
675
+ msgstr "該字段的默認值"
676
+
677
+ #: ../admin/manage-fields.php:90
678
+ msgid "Default Option"
679
+ msgstr "默認選項"
680
+
681
+ #: ../admin/manage-fields.php:90
682
+ msgid "Specify the option which should be selected by default"
683
+ msgstr "指定選項的默認選擇值"
684
+
685
+ #: ../admin/manage-fields.php:91
686
+ msgid "Default Option(s)"
687
+ msgstr "默認選項(s)"
688
+
689
+ #: ../admin/manage-fields.php:91
690
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
691
+ msgstr "指定選項默認是否勾選<br/>如果有多個值的選項,使用“,”分開(逗號)"
692
+
693
+ #: ../admin/manage-fields.php:92
694
+ msgid "Default Content"
695
+ msgstr "默認內容"
696
+
697
+ #: ../admin/manage-fields.php:92
698
+ msgid "Default value of the textarea"
699
+ msgstr "文本默認值"
700
+
701
+ #: ../admin/manage-fields.php:93
702
+ msgid "Required"
703
+ msgstr "必須"
704
+
705
+ #: ../admin/manage-fields.php:93
706
+ msgid "Whether the field is required or not"
707
+ msgstr "該字段是否必須"
708
+
709
+ #: ../admin/manage-fields.php:94
710
+ msgid "Overwrite Existing"
711
+ msgstr "覆蓋現有"
712
+
713
+ #: ../admin/manage-fields.php:94
714
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
715
+ msgstr "選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name<br/>使用需自己承擔風險"
716
+
717
+ #: ../admin/manage-fields.php:100
718
+ msgid "Field Properties"
719
+ msgstr "字段屬性"
720
+
721
+ #: ../admin/manage-fields.php:113
722
+ msgid "Registration & Edit Profile"
723
+ msgstr "註冊與編輯資料"
724
+
725
+ #: ../admin/manage-fields.php:132
726
+ msgid "Name"
727
+ msgstr "姓名"
728
+
729
+ #: ../admin/manage-fields.php:133
730
+ msgid "Usernames cannot be changed."
731
+ msgstr " 用戶名不可更改。"
732
+
733
+ #: ../admin/manage-fields.php:134
734
+ msgid "First Name"
735
+ msgstr "名字"
736
+
737
+ #: ../admin/manage-fields.php:135
738
+ msgid "Last Name"
739
+ msgstr "姓氏"
740
+
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
+ msgid "Nickname"
743
+ msgstr "昵稱"
744
+
745
+ #: ../admin/manage-fields.php:137
746
+ msgid "Display name publicly as"
747
+ msgstr "公開顯示為"
748
+
749
+ #: ../admin/manage-fields.php:138
750
+ msgid "Contact Info"
751
+ msgstr "聯系信息"
752
+
753
+ #: ../admin/manage-fields.php:139
754
+ #: ../features/admin-approval/class-admin-approval.php:180
755
+ #: ../features/email-confirmation/class-email-confirmation.php:154
756
+ #: ../modules/user-listing/userlisting.php:100
757
+ msgid "E-mail"
758
+ msgstr "電子郵件"
759
+
760
+ #: ../admin/manage-fields.php:140
761
+ #: ../modules/email-customizer/email-customizer.php:31
762
+ #: ../modules/user-listing/userlisting.php:103
763
+ #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
+ msgid "Website"
766
+ msgstr "站點"
767
+
768
+ #: ../admin/manage-fields.php:144
769
+ msgid "AIM"
770
+ msgstr "AIM"
771
+
772
+ #: ../admin/manage-fields.php:145
773
+ msgid "Yahoo IM"
774
+ msgstr "雅虎通訊"
775
+
776
+ #: ../admin/manage-fields.php:146
777
+ msgid "Jabber / Google Talk"
778
+ msgstr "Jabber / Google Talk"
779
+
780
+ #: ../admin/manage-fields.php:149
781
+ msgid "About Yourself"
782
+ msgstr "關於您自己"
783
+
784
+ #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
+ #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
+ msgid "Biographical Info"
788
+ msgstr "個人說明"
789
+
790
+ #: ../admin/manage-fields.php:150
791
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
792
+ msgstr "分享關於您的壹些信息。可能會被公開。"
793
+
794
+ #: ../admin/manage-fields.php:151 ../front-end/recover.php:75
795
+ #: ../modules/email-customizer/email-customizer.php:30
796
+ msgid "Password"
797
+ msgstr "新密碼"
798
+
799
+ #: ../admin/manage-fields.php:151
800
+ msgid "Type your password."
801
+ msgstr "重復新密碼"
802
+
803
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
804
+ msgid "Repeat Password"
805
+ msgstr "重復新密碼"
806
+
807
+ #: ../admin/manage-fields.php:152
808
+ msgid "Type your password again. "
809
+ msgstr "再輸入壹遍新密碼。"
810
+
811
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
812
+ msgid "You must select a field\n"
813
+ msgstr "妳必須選擇壹個字段\n"
814
+
815
+ #: ../admin/manage-fields.php:318
816
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
817
+ msgstr "請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的)\n"
818
+
819
+ #: ../admin/manage-fields.php:329
820
+ msgid "The entered avatar size is not between 20 and 200\n"
821
+ msgstr "輸入的頭像大小不是20與200之間 \n"
822
+
823
+ #: ../admin/manage-fields.php:332
824
+ msgid "The entered avatar size is not numerical\n"
825
+ msgstr "輸入的頭像大小不是數值\n"
826
+
827
+ #: ../admin/manage-fields.php:340
828
+ msgid "The entered row number is not numerical\n"
829
+ msgstr "輸入的行數不是數值\n"
830
+
831
+ #: ../admin/manage-fields.php:343
832
+ msgid "You must enter a value for the row number\n"
833
+ msgstr "您必須輸入壹個值的行數\n"
834
+
835
+ #: ../admin/manage-fields.php:351
836
+ msgid "You must enter the public key\n"
837
+ msgstr "妳必須輸入公共密鑰\n"
838
+
839
+ #: ../admin/manage-fields.php:353
840
+ msgid "You must enter the private key\n"
841
+ msgstr "您必須輸入專用密鑰\n"
842
+
843
+ #: ../admin/manage-fields.php:361
844
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
845
+ msgstr "日期選擇器輸入的值不是有效的日期格式\n"
846
+
847
+ #: ../admin/manage-fields.php:364
848
+ msgid "You must enter a value for the date-format\n"
849
+ msgstr "您必須輸入壹個日期格式的值\n"
850
+
851
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
852
+ #: ../admin/manage-fields.php:410
853
+ msgid "That meta-name is already in use\n"
854
+ msgstr "meta-name 已在使用\n"
855
+
856
+ #: ../admin/manage-fields.php:432
857
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
858
+ msgstr "下列選項(s)不符合的選項清單: %s\n"
859
+
860
+ #: ../admin/manage-fields.php:436
861
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
862
+ msgstr "下列選項不符合的選項清單: %s\n"
863
+
864
+ #: ../admin/manage-fields.php:451
865
+ msgid "That field is already added in this form\n"
866
+ msgstr "這個字段已經加入這個\n"
867
+
868
+ #: ../admin/manage-fields.php:500
869
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
870
+ msgstr "<pre>標題</pre><pre>類型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必須</pre>"
871
+
872
+ #: ../admin/manage-fields.php:500
873
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
874
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
875
+ #: ../features/functions.php:590 ../features/functions.php:597
876
+ #: ../modules/multiple-forms/multiple-forms.php:407
877
+ msgid "Edit"
878
+ msgstr "編輯"
879
+
880
+ #: ../admin/manage-fields.php:500
881
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
882
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
883
+ #: ../features/admin-approval/class-admin-approval.php:124
884
+ #: ../features/admin-approval/class-admin-approval.php:235
885
+ #: ../features/email-confirmation/class-email-confirmation.php:106
886
+ #: ../features/email-confirmation/class-email-confirmation.php:202
887
+ #: ../features/functions.php:583 ../features/functions.php:597
888
+ msgid "Delete"
889
+ msgstr "刪除"
890
+
891
+ #: ../admin/manage-fields.php:515
892
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
893
+ msgstr "使用這些簡碼在頁面中妳想要的形式顯示:"
894
+
895
+ #: ../admin/manage-fields.php:521
896
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
897
+ msgstr "如果妳對註冊、編輯資料時顯示不同字段感興趣,請使用多個註冊和編輯資料形式的模塊。"
898
+
899
+ #: ../admin/register-version.php:11
900
+ msgid "Register Your Version"
901
+ msgstr "註冊您的版本"
902
+
903
+ #: ../admin/register-version.php:11
904
+ msgid "Register Version"
905
+ msgstr "註冊版本"
906
+
907
+ #: ../admin/register-version.php:58
908
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
909
+ msgstr "如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。"
910
+
911
+ #: ../admin/register-version.php:60
912
+ msgid " Serial Number:"
913
+ msgstr "序號:"
914
+
915
+ #: ../admin/register-version.php:65
916
+ msgid "The serial number was successfully validated!"
917
+ msgstr "序號成功驗證!"
918
+
919
+ #: ../admin/register-version.php:67
920
+ msgid "The serial number entered couldn't be validated!"
921
+ msgstr "序號無法驗證!"
922
+
923
+ #: ../admin/register-version.php:69
924
+ msgid "The serial number couldn't be validated because it expired!"
925
+ msgstr "序號無法驗證,因已過期!"
926
+
927
+ #: ../admin/register-version.php:71
928
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
929
+ msgstr "序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!"
930
+
931
+ #: ../admin/register-version.php:73
932
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
933
+ msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
934
+
935
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
936
+ #: ../features/functions.php:597
937
+ msgid "Content"
938
+ msgstr "內容"
939
+
940
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
941
+ msgid "Edit this item"
942
+ msgstr "編輯此項目"
943
+
944
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
945
+ msgid "Delete this item"
946
+ msgstr "刪除此項目"
947
+
948
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
949
+ msgid "Please enter a value for the required field "
950
+ msgstr "請為這個字段輸入所需的值"
951
+
952
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
953
+ msgid "Select File"
954
+ msgstr "選擇文件"
955
+
956
+ #: ../assets/lib/wck-api/fields/upload.php:31
957
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
958
+ msgid "Remove"
959
+ msgstr "移除"
960
+
961
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
962
+ msgid "Syncronize WCK"
963
+ msgstr "同步 WCK"
964
+
965
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
966
+ msgid "Syncronize WCK Translation"
967
+ msgstr "同步 WCK 翻譯"
968
+
969
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
970
+ msgid "You can add the information for the %s after you add a entry"
971
+ msgstr "您可以添加信息到 %s"
972
+
973
+ #: ../assets/lib/wck-api/fields/upload.php:48
974
+ msgid "Upload "
975
+ msgstr "上傳"
976
+
977
+ #: ../features/class-list-table.php:184
978
+ msgid "No items found."
979
+ msgstr "找不到項目。"
980
+
981
+ #: ../features/class-list-table.php:308
982
+ msgid "Bulk Actions"
983
+ msgstr "批量動作"
984
+
985
+ #: ../features/class-list-table.php:318
986
+ msgid "Apply"
987
+ msgstr "應用"
988
+
989
+ #: ../features/class-list-table.php:402
990
+ msgid "Show all dates"
991
+ msgstr "顯示所有日期"
992
+
993
+ #: ../features/class-list-table.php:415
994
+ msgid "%1$s %2$d"
995
+ msgstr "%1$s %2$d"
996
+
997
+ #: ../features/class-list-table.php:431
998
+ msgid "List View"
999
+ msgstr "列表查看"
1000
+
1001
+ #: ../features/class-list-table.php:432
1002
+ msgid "Excerpt View"
1003
+ msgstr "摘錄查看"
1004
+
1005
+ #: ../features/class-list-table.php:458
1006
+ msgid "%s pending"
1007
+ msgstr "%s 等待中"
1008
+
1009
+ #: ../features/class-list-table.php:566
1010
+ msgid "%1$s of %2$s"
1011
+ msgstr "%1$s 的 %2$s"
1012
+
1013
+ #: ../features/class-list-table.php:713
1014
+ msgid "Select All"
1015
+ msgstr "選擇所有"
1016
+
1017
+ #: ../features/functions.php:193 ../features/functions.php:194
1018
+ msgid "Profile Builder"
1019
+ msgstr "Profile Builder"
1020
+
1021
+ #: ../features/functions.php:261
1022
+ msgid "The user-validation has failed - the avatar was not deleted!"
1023
+ msgstr "用戶驗證失敗 - 頭像沒有被刪除!"
1024
+
1025
+ #: ../features/functions.php:272
1026
+ msgid "The user-validation has failed - the attachment was not deleted!"
1027
+ msgstr "用戶驗證失敗 - 附件沒有被刪除!"
1028
+
1029
+ #: ../features/functions.php:443
1030
+ msgid "Strength indicator"
1031
+ msgstr "強度指標"
1032
+
1033
+ #: ../features/functions.php:482
1034
+ msgid "Minimum length of "
1035
+ msgstr "最小長度"
1036
+
1037
+ #: ../features/admin-approval/admin-approval.php:7
1038
+ #: ../features/admin-approval/class-admin-approval.php:489
1039
+ msgid "Admin Approval"
1040
+ msgstr "管理員審批"
1041
+
1042
+ #: ../features/admin-approval/admin-approval.php:22
1043
+ #: ../features/email-confirmation/email-confirmation.php:58
1044
+ msgid "Do you want to"
1045
+ msgstr "您想要"
1046
+
1047
+ #: ../features/admin-approval/admin-approval.php:45
1048
+ msgid "Your session has expired! Please refresh the page and try again"
1049
+ msgstr "您的會話已過期!請刷新頁面重試"
1050
+
1051
+ #: ../features/admin-approval/admin-approval.php:56
1052
+ msgid "User successfully approved!"
1053
+ msgstr "用戶成功批準!"
1054
+
1055
+ #: ../features/admin-approval/admin-approval.php:64
1056
+ msgid "User successfully unapproved!"
1057
+ msgstr "用戶成功拒絕!"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:70
1060
+ msgid "User successfully deleted!"
1061
+ msgstr "用戶成功刪除!"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:75
1064
+ #: ../features/admin-approval/admin-approval.php:140
1065
+ #: ../features/email-confirmation/email-confirmation.php:122
1066
+ msgid "You either don't have permission for that action or there was an error!"
1067
+ msgstr "妳沒有權限操作,或出現壹個錯誤!"
1068
+
1069
+ #: ../features/admin-approval/admin-approval.php:87
1070
+ msgid "Your session has expired! Please refresh the page and try again."
1071
+ msgstr "您的會話已過期!請刷新頁面重試"
1072
+
1073
+ #: ../features/admin-approval/admin-approval.php:107
1074
+ msgid "Users successfully approved!"
1075
+ msgstr "用戶成功批準!"
1076
+
1077
+ #: ../features/admin-approval/admin-approval.php:122
1078
+ msgid "Users successfully unapproved!"
1079
+ msgstr "用戶成功拒絕!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:135
1082
+ msgid "Users successfully deleted!"
1083
+ msgstr "用戶成功刪除!"
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:150
1086
+ msgid "Your account on %1$s has been approved!"
1087
+ msgstr "您在 %1$s 的帳號成功通過!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:151
1090
+ #: ../features/admin-approval/admin-approval.php:154
1091
+ msgid "approved"
1092
+ msgstr "已批準"
1093
+
1094
+ #: ../features/admin-approval/admin-approval.php:153
1095
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1096
+ msgstr "管理員已經批準您在 %1$s (%2$s) 的帳號。"
1097
+
1098
+ #: ../features/admin-approval/admin-approval.php:157
1099
+ msgid "Your account on %1$s has been unapproved!"
1100
+ msgstr "您在 %1$s 的帳號被拒絕!"
1101
+
1102
+ #: ../features/admin-approval/admin-approval.php:158
1103
+ #: ../features/admin-approval/admin-approval.php:161
1104
+ msgid "unapproved"
1105
+ msgstr "已拒絕"
1106
+
1107
+ #: ../features/admin-approval/admin-approval.php:160
1108
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1109
+ msgstr "管理員已拒絕您在 %1$s (%2$s) 的帳號。"
1110
+
1111
+ #: ../features/admin-approval/admin-approval.php:177
1112
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1113
+ msgstr "<strong>錯誤</strong>: 您的帳號需要管理員批準後才能登陸使用。"
1114
+
1115
+ #: ../features/admin-approval/admin-approval.php:189
1116
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1117
+ msgstr "您的帳號在管理員確認前可以使用 \"密碼找回\" 功能."
1118
+
1119
+ #: ../features/admin-approval/class-admin-approval.php:119
1120
+ msgid "View or Edit"
1121
+ msgstr "查看或編輯"
1122
+
1123
+ #: ../features/admin-approval/class-admin-approval.php:124
1124
+ msgid "delete this user?"
1125
+ msgstr "刪除這個用戶?"
1126
+
1127
+ #: ../features/admin-approval/class-admin-approval.php:127
1128
+ msgid "unapprove this user?"
1129
+ msgstr "拒絕這個用戶?"
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:127
1132
+ #: ../features/admin-approval/class-admin-approval.php:234
1133
+ msgid "Unapprove"
1134
+ msgstr "拒絕"
1135
+
1136
+ #: ../features/admin-approval/class-admin-approval.php:129
1137
+ msgid "approve this user?"
1138
+ msgstr "允許這個用戶?"
1139
+
1140
+ #: ../features/admin-approval/class-admin-approval.php:129
1141
+ #: ../features/admin-approval/class-admin-approval.php:233
1142
+ msgid "Approve"
1143
+ msgstr "允許"
1144
+
1145
+ #: ../features/admin-approval/class-admin-approval.php:178
1146
+ #: ../modules/user-listing/userlisting.php:528
1147
+ #: ../modules/user-listing/userlisting.php:1119
1148
+ msgid "Firstname"
1149
+ msgstr "名子"
1150
+
1151
+ #: ../features/admin-approval/class-admin-approval.php:179
1152
+ #: ../modules/user-listing/userlisting.php:531
1153
+ #: ../modules/user-listing/userlisting.php:1120
1154
+ msgid "Lastname"
1155
+ msgstr "姓氏"
1156
+
1157
+ #: ../features/admin-approval/class-admin-approval.php:181
1158
+ #: ../modules/user-listing/userlisting.php:117
1159
+ msgid "Role"
1160
+ msgstr "角色"
1161
+
1162
+ #: ../features/admin-approval/class-admin-approval.php:182
1163
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1164
+ msgid "Registered"
1165
+ msgstr "已註冊"
1166
+
1167
+ #: ../features/admin-approval/class-admin-approval.php:183
1168
+ msgid "User-status"
1169
+ msgstr "用戶狀態"
1170
+
1171
+ #: ../features/admin-approval/class-admin-approval.php:263
1172
+ msgid "Do you want to bulk approve the selected users?"
1173
+ msgstr "妳想批量允許所選用戶?"
1174
+
1175
+ #: ../features/admin-approval/class-admin-approval.php:271
1176
+ msgid "Do you want to bulk unapprove the selected users?"
1177
+ msgstr "妳想批量拒絕所選用戶?"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:277
1180
+ msgid "Do you want to bulk delete the selected users?"
1181
+ msgstr "妳想批量刪除所選用戶?"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:285
1184
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1185
+ msgid "Sorry, but you don't have permission to do that!"
1186
+ msgstr "抱歉,您沒有相應的操作權限!"
1187
+
1188
+ #: ../features/admin-approval/class-admin-approval.php:318
1189
+ msgid "Approved"
1190
+ msgstr "已允許"
1191
+
1192
+ #: ../features/admin-approval/class-admin-approval.php:320
1193
+ msgid "Unapproved"
1194
+ msgstr "已拒絕"
1195
+
1196
+ #: ../features/admin-approval/class-admin-approval.php:492
1197
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1198
+ msgid "All Users"
1199
+ msgstr "所有用戶"
1200
+
1201
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1202
+ msgid "delete this user from the _signups table?"
1203
+ msgstr "在 the _signups 表單中 刪除這個用戶?"
1204
+
1205
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1206
+ msgid "confirm this email yourself?"
1207
+ msgstr "確認自己的電子郵件?"
1208
+
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1210
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1211
+ msgid "Confirm Email"
1212
+ msgstr "確認電子郵件"
1213
+
1214
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1215
+ msgid "resend the activation link?"
1216
+ msgstr "重新發送激活鏈接?"
1217
+
1218
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1219
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1220
+ msgid "Resend Activation Email"
1221
+ msgstr "發送激活郵件"
1222
+
1223
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1224
+ msgid "%s couldn't be deleted"
1225
+ msgstr "%s 不能刪除"
1226
+
1227
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1228
+ msgid "All users have been successfully deleted"
1229
+ msgstr "所有的用戶已成功刪除"
1230
+
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1232
+ msgid "The selected users have been activated"
1233
+ msgstr "所選的用戶已被激活"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1236
+ msgid "The selected users have had their activation emails resent"
1237
+ msgstr "所選用戶已經重新發送激活電子郵件"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1240
+ #: ../features/email-confirmation/email-confirmation.php:47
1241
+ msgid "Users with Unconfirmed Email Address"
1242
+ msgstr "沒經確認郵箱的用戶"
1243
+
1244
+ #: ../features/email-confirmation/email-confirmation.php:97
1245
+ msgid "There was an error performing that action!"
1246
+ msgstr "執行操作時出錯!"
1247
+
1248
+ #: ../features/email-confirmation/email-confirmation.php:105
1249
+ msgid "The selected user couldn't be deleted"
1250
+ msgstr "所選用戶不能刪除"
1251
+
1252
+ #: ../features/email-confirmation/email-confirmation.php:116
1253
+ msgid "Email notification resent to user"
1254
+ msgstr "電子郵件通知重發給用戶"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:349
1257
+ msgid "[%1$s] Activate %2$s"
1258
+ msgstr "[%1$s] 激活 %2$s"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:350
1261
+ msgid ""
1262
+ "To activate your user, please click the following link:\n"
1263
+ "\n"
1264
+ "%s%s%s\n"
1265
+ "\n"
1266
+ "After you activate it you will receive yet *another email* with your login."
1267
+ msgstr ""
1268
+ "要激活妳的帳戶,請點擊下面的鏈接:\n"
1269
+ "\n"
1270
+ "%s%s%s \n"
1271
+ "\n"
1272
+ "當妳點擊後,您將收到登陸的 *另壹封電子郵件* 。"
1273
+
1274
+ #: ../features/email-confirmation/email-confirmation.php:388
1275
+ #: ../front-end/register.php:68
1276
+ msgid "Could not create user!"
1277
+ msgstr "無法創建用戶!"
1278
+
1279
+ #: ../features/email-confirmation/email-confirmation.php:391
1280
+ msgid "That username is already activated!"
1281
+ msgstr "用戶名已經被激活!"
1282
+
1283
+ #: ../features/email-confirmation/email-confirmation.php:420
1284
+ msgid "There was an error while trying to activate the user"
1285
+ msgstr "試圖激活用戶時出現壹個錯誤"
1286
+
1287
+ #: ../features/email-confirmation/email-confirmation.php:458
1288
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1289
+ msgid "A new subscriber has (been) registered!"
1290
+ msgstr "壹個新的用戶已經(被)註冊!"
1291
+
1292
+ #: ../features/email-confirmation/email-confirmation.php:461
1293
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1294
+ msgstr "新用戶在 %1$s.<br/><br/>用戶名:%2$s<br/>郵箱:%3$s<br/>"
1295
+
1296
+ #: ../features/email-confirmation/email-confirmation.php:466
1297
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
1298
+ msgstr "管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!"
1299
+
1300
+ #: ../features/email-confirmation/email-confirmation.php:481
1301
+ msgid "[%1$s] Your new account information"
1302
+ msgstr "[%1$s] 您的新帳戶信息"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:484
1305
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1306
+ msgstr "歡迎來到 %1$s!<br/><br/><br/>您的用戶名是:%2$s 密碼是:%3$s"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:489
1309
+ #: ../front-end/register.php:103
1310
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1311
+ msgstr "需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。"
1312
+
1313
+ #: ../features/login-widget/login-widget.php:10
1314
+ msgid "This login widget lets you add a login form in the sidebar."
1315
+ msgstr "該登錄控件是允許您添加在側邊欄的登錄表單。"
1316
+
1317
+ #: ../features/login-widget/login-widget.php:15
1318
+ msgid "Profile Builder Login Widget"
1319
+ msgstr "Profile Builder 登陸小工具"
1320
+
1321
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1322
+ msgid "Register"
1323
+ msgstr "註冊"
1324
+
1325
+ #: ../features/login-widget/login-widget.php:63
1326
+ msgid "Title:"
1327
+ msgstr "標題:"
1328
+
1329
+ #: ../features/login-widget/login-widget.php:68
1330
+ msgid "After login redirect URL (optional):"
1331
+ msgstr "登錄後的重定向URL(可選):"
1332
+
1333
+ #: ../features/login-widget/login-widget.php:73
1334
+ msgid "Register page URL (optional):"
1335
+ msgstr "註冊頁面URL(可選):"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:78
1338
+ msgid "Password Recovery page URL (optional):"
1339
+ msgstr "密碼恢復頁URL(可選):"
1340
+
1341
+ #: ../features/upgrades/upgrades-functions.php:91
1342
+ #: ../features/upgrades/upgrades-functions.php:134
1343
+ msgid "The usernames cannot be changed."
1344
+ msgstr "用戶名不可更改。"
1345
+
1346
+ #: ../front-end/class-formbuilder.php:83
1347
+ msgid "Only an administrator can add new users."
1348
+ msgstr "只有管理員可以添加新用戶。"
1349
+
1350
+ #: ../front-end/class-formbuilder.php:93
1351
+ msgid "Users can register themselves or you can manually create users here."
1352
+ msgstr "用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。"
1353
+
1354
+ #: ../front-end/class-formbuilder.php:96
1355
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1356
+ msgstr "用戶無法自己註冊,但妳可以在這裏手動創建用戶。"
1357
+
1358
+ #: ../front-end/class-formbuilder.php:108
1359
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1360
+ msgstr "您當前登陸為 %1s。您不需要其它帳號。 %2s"
1361
+
1362
+ #: ../front-end/class-formbuilder.php:108
1363
+ msgid "Log out of this account."
1364
+ msgstr "退出這個帳號。"
1365
+
1366
+ #: ../front-end/class-formbuilder.php:108
1367
+ msgid "Logout"
1368
+ msgstr "退出"
1369
+
1370
+ #: ../front-end/class-formbuilder.php:114
1371
+ msgid "You must be logged in to edit your profile."
1372
+ msgstr "您必須在登陸狀態下編輯個人資料。"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:137
1375
+ msgid "here"
1376
+ msgstr "這裏"
1377
+
1378
+ #: ../front-end/class-formbuilder.php:139
1379
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1380
+ msgstr "您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:224
1383
+ msgid "The account %1s has been successfully created!"
1384
+ msgstr "帳號 %1s 創建成功!"
1385
+
1386
+ #: ../front-end/class-formbuilder.php:227
1387
+ #: ../front-end/class-formbuilder.php:233
1388
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1389
+ msgstr "訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。"
1390
+
1391
+ #: ../front-end/class-formbuilder.php:230
1392
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1393
+ msgstr "訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。"
1394
+
1395
+ #: ../front-end/class-formbuilder.php:243
1396
+ msgid "Your profile has been successfully updated!"
1397
+ msgstr "個人資料已更新!"
1398
+
1399
+ #: ../front-end/class-formbuilder.php:253
1400
+ msgid "There was an error in the submitted form"
1401
+ msgstr "在遞交表單時出錯"
1402
+
1403
+ #: ../front-end/class-formbuilder.php:274
1404
+ msgid "Add User"
1405
+ msgstr "所有用戶"
1406
+
1407
+ #: ../front-end/class-formbuilder.php:277
1408
+ msgid "Update"
1409
+ msgstr "更新個人資料"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:314
1412
+ #: ../front-end/extra-fields/extra-fields.php:33
1413
+ msgid "The avatar was successfully deleted!"
1414
+ msgstr "頭像成功刪除!"
1415
+
1416
+ #: ../front-end/class-formbuilder.php:314
1417
+ #: ../front-end/extra-fields/extra-fields.php:35
1418
+ msgid "The following attachment was successfully deleted:"
1419
+ msgstr "成功刪除以下附件:"
1420
+
1421
+ #: ../front-end/class-formbuilder.php:326
1422
+ msgid "Send these credentials via email."
1423
+ msgstr "通過電子郵件發送這些憑據。"
1424
+
1425
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1426
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1427
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1428
+ msgid "ERROR"
1429
+ msgstr "錯誤"
1430
+
1431
+ #: ../front-end/login.php:72
1432
+ msgid "The password you entered is incorrect."
1433
+ msgstr "妳輸入的密碼不正確。"
1434
+
1435
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1436
+ msgid "Password Lost and Found."
1437
+ msgstr "密碼遺失。"
1438
+
1439
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1440
+ msgid "Lost your password"
1441
+ msgstr "忘記您的密碼"
1442
+
1443
+ #: ../front-end/login.php:89
1444
+ msgid "Both fields are empty."
1445
+ msgstr "字段均空"
1446
+
1447
+ #: ../front-end/login.php:199
1448
+ msgid "You are currently logged in as %1$s. %2$s"
1449
+ msgstr "您當前登錄為 %1$s. %2$s"
1450
+
1451
+ #: ../front-end/login.php:199
1452
+ msgid "Log out of this account"
1453
+ msgstr "退出這個帳戶"
1454
+
1455
+ #: ../front-end/login.php:199
1456
+ msgid "Log out"
1457
+ msgstr "退出"
1458
+
1459
+ #: ../front-end/recover.php:17
1460
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1461
+ msgstr "您的帳戶需被管理員審批後才可使用 \"密碼重置\" 功能。"
1462
+
1463
+ #: ../front-end/recover.php:91
1464
+ msgid "Reset Password"
1465
+ msgstr "重置密碼"
1466
+
1467
+ #: ../front-end/recover.php:111
1468
+ msgid "Please enter your username or email address."
1469
+ msgstr "請輸入您的用戶名或電子郵件地址。"
1470
+
1471
+ #: ../front-end/recover.php:112
1472
+ msgid "You will receive a link to create a new password via email."
1473
+ msgstr "妳將收到壹封創建壹個新密碼連接的電子郵件。"
1474
+
1475
+ #: ../front-end/recover.php:119
1476
+ msgid "Username or E-mail"
1477
+ msgstr "用戶或郵箱地址"
1478
+
1479
+ #: ../front-end/recover.php:125
1480
+ msgid "Get New Password"
1481
+ msgstr "獲取新密碼"
1482
+
1483
+ #: ../front-end/recover.php:164
1484
+ msgid "The username entered wasn't found in the database!"
1485
+ msgstr "輸入的用戶名不存在數據庫中!"
1486
+
1487
+ #: ../front-end/recover.php:164
1488
+ msgid "Please check that you entered the correct username."
1489
+ msgstr "請檢查您已輸入正確的用戶名。"
1490
+
1491
+ #: ../front-end/recover.php:179
1492
+ msgid "Check your e-mail for the confirmation link."
1493
+ msgstr "檢查妳的郵件中的確認鏈接。"
1494
+
1495
+ #: ../front-end/recover.php:194
1496
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
1497
+ msgstr "有人要求以下帳號密碼進行重置: <b>%1$s</b><br/>如果不是您自己的操作,請忽略。<br/>需要重置您的密碼的話,請點擊 :%2$s"
1498
+
1499
+ #: ../front-end/recover.php:197
1500
+ msgid "Password Reset from \"%1$s\""
1501
+ msgstr "從 \"%1$s\" 密碼重置"
1502
+
1503
+ #: ../front-end/recover.php:206
1504
+ msgid "There was an error while trying to send the activation link to %1$s!"
1505
+ msgstr "發送激活鏈接時出現錯誤 %1$s!"
1506
+
1507
+ #: ../front-end/recover.php:215
1508
+ msgid "The email address entered wasn't found in the database!"
1509
+ msgstr "郵箱地址無法在數據庫中找到"
1510
+
1511
+ #: ../front-end/recover.php:215
1512
+ msgid "Please check that you entered the correct email address."
1513
+ msgstr "請檢查您輸入(正確)電子郵件地址。"
1514
+
1515
+ #: ../front-end/default-fields/password/password.php:44
1516
+ #: ../front-end/recover.php:231
1517
+ msgid "<br/>The password must have the minimum length of "
1518
+ msgstr "<br/>密碼必須的最小長度"
1519
+
1520
+ #: ../front-end/default-fields/password/password.php:48
1521
+ #: ../front-end/recover.php:235
1522
+ msgid "<br/>The password must have a minimum strength of "
1523
+ msgstr "<br/>密碼必須有至少強度"
1524
+
1525
+ #: ../front-end/recover.php:242
1526
+ msgid "Your password has been successfully changed!"
1527
+ msgstr "您已經成功地更改密碼!"
1528
+
1529
+ #: ../front-end/recover.php:256
1530
+ msgid "You have successfully reset your password to: %1$s"
1531
+ msgstr "您已經成功地將密碼更改成:%1$s"
1532
+
1533
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1534
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1535
+ msgstr "密碼成功重置 %1$s 在 \"%2$s\""
1536
+
1537
+ #: ../front-end/recover.php:270
1538
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1539
+ msgstr "%1$s 請求通過密碼重置功能修改密碼。<br/>他的密碼是:%2$s"
1540
+
1541
+ #: ../front-end/recover.php:289
1542
+ msgid "The entered passwords don't match!"
1543
+ msgstr "輸入的密碼不匹配!"
1544
+
1545
+ #: ../front-end/recover.php:334
1546
+ msgid "ERROR:"
1547
+ msgstr "錯誤:"
1548
+
1549
+ #: ../front-end/recover.php:334
1550
+ msgid "Invalid key!"
1551
+ msgstr "無效密鑰!"
1552
+
1553
+ #: ../front-end/register.php:46
1554
+ msgid "Invalid activation key!"
1555
+ msgstr "無效的激活密鑰!"
1556
+
1557
+ #: ../front-end/register.php:50
1558
+ msgid "This username is now active!"
1559
+ msgstr "這個用戶名現在被激活!"
1560
+
1561
+ #: ../front-end/register.php:71
1562
+ msgid "This username is already activated!"
1563
+ msgstr "這個用戶名已經被激活!"
1564
+
1565
+ #: ../front-end/register.php:102
1566
+ msgid "Your email was successfully confirmed."
1567
+ msgstr "您的電子郵件已確認。"
1568
+
1569
+ #: ../front-end/register.php:112
1570
+ msgid "There was an error while trying to activate the user."
1571
+ msgstr "嘗試激活用戶時出現壹個錯誤。"
1572
+
1573
+ #: ../front-end/default-fields/email/email.php:42
1574
+ msgid "The email you entered is not a valid email address."
1575
+ msgstr "您輸入的電子郵件不是壹個有效的電子郵件地址。"
1576
+
1577
+ #: ../front-end/default-fields/email/email.php:49
1578
+ msgid "This email is already reserved to be used soon."
1579
+ msgstr "此郵箱地址已被保留使用。"
1580
+
1581
+ #: ../front-end/default-fields/email/email.php:49
1582
+ #: ../front-end/default-fields/email/email.php:55
1583
+ #: ../front-end/default-fields/email/email.php:62
1584
+ #: ../front-end/default-fields/username/username.php:44
1585
+ #: ../front-end/default-fields/username/username.php:51
1586
+ msgid "Please try a different one!"
1587
+ msgstr "請嘗試壹個不同的!"
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:55
1590
+ #: ../front-end/default-fields/email/email.php:62
1591
+ msgid "This email is already in use."
1592
+ msgstr "電子郵件已被使用。"
1593
+
1594
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1595
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1596
+ msgid "The passwords do not match"
1597
+ msgstr "密碼不匹配"
1598
+
1599
+ #: ../front-end/default-fields/username/username.php:44
1600
+ msgid "This username already exists."
1601
+ msgstr "用戶名已經存在。"
1602
+
1603
+ #: ../front-end/default-fields/username/username.php:51
1604
+ msgid "This username is already reserved to be used soon."
1605
+ msgstr "這個用戶名已經被保留。"
1606
+
1607
+ #: ../front-end/extra-fields/avatar/avatar.php:47
1608
+ #: ../front-end/extra-fields/avatar/avatar.php:84
1609
+ #: ../front-end/extra-fields/upload/upload.php:29
1610
+ #: ../front-end/extra-fields/upload/upload.php:68
1611
+ msgid "max upload size"
1612
+ msgstr "最大上傳大小"
1613
+
1614
+ #: ../front-end/extra-fields/avatar/avatar.php:53
1615
+ msgid "Current avatar: No uploaded avatar"
1616
+ msgstr "當前頭像:沒有上傳頭像"
1617
+
1618
+ #: ../front-end/extra-fields/avatar/avatar.php:58
1619
+ #: ../front-end/extra-fields/avatar/avatar.php:91
1620
+ msgid "Avatar"
1621
+ msgstr "頭像"
1622
+
1623
+ #: ../front-end/extra-fields/avatar/avatar.php:62
1624
+ #: ../front-end/extra-fields/avatar/avatar.php:67
1625
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1626
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1627
+ msgid "Click to see the current avatar"
1628
+ msgstr "點擊查看當前頭像"
1629
+
1630
+ #: ../front-end/extra-fields/avatar/avatar.php:64
1631
+ #: ../front-end/extra-fields/avatar/avatar.php:94
1632
+ msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1633
+ msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
1634
+
1635
+ #: ../front-end/extra-fields/avatar/avatar.php:69
1636
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1637
+ msgid "Are you sure you want to delete this avatar?"
1638
+ msgstr "您確定要刪除這個頭像?"
1639
+
1640
+ #: ../front-end/extra-fields/avatar/avatar.php:70
1641
+ #: ../front-end/extra-fields/avatar/avatar.php:96
1642
+ msgid "Click to delete the current avatar"
1643
+ msgstr "點擊刪除當前頭像"
1644
+
1645
+ #: ../front-end/extra-fields/avatar/avatar.php:78
1646
+ #: ../front-end/extra-fields/checkbox/checkbox.php:46
1647
+ #: ../front-end/extra-fields/datepicker/datepicker.php:44
1648
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1649
+ #: ../front-end/extra-fields/input/input.php:28
1650
+ #: ../front-end/extra-fields/radio/radio.php:42
1651
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1652
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1653
+ #: ../front-end/extra-fields/select/select.php:44
1654
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1655
+ #: ../front-end/extra-fields/upload/upload.php:62
1656
+ msgid "required"
1657
+ msgstr "必須"
1658
+
1659
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1660
+ msgid "Current avatar"
1661
+ msgstr "當前頭像"
1662
+
1663
+ #: ../front-end/extra-fields/avatar/avatar.php:87
1664
+ msgid "No uploaded avatar"
1665
+ msgstr "沒有上傳頭像"
1666
+
1667
+ #: ../front-end/extra-fields/avatar/avatar.php:189
1668
+ #: ../front-end/extra-fields/upload/upload.php:173
1669
+ msgid "The extension of the file did not match"
1670
+ msgstr "文件擴展名不匹配"
1671
+
1672
+ #: ../front-end/extra-fields/avatar/avatar.php:192
1673
+ #: ../front-end/extra-fields/avatar/avatar.php:195
1674
+ #: ../front-end/extra-fields/upload/upload.php:177
1675
+ #: ../front-end/extra-fields/upload/upload.php:180
1676
+ msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1677
+ msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
1678
+
1679
+ #: ../front-end/extra-fields/avatar/avatar.php:198
1680
+ #: ../front-end/extra-fields/upload/upload.php:183
1681
+ msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1682
+ msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
1683
+
1684
+ #: ../front-end/extra-fields/avatar/avatar.php:201
1685
+ msgid "The file could only partially be uploaded "
1686
+ msgstr "文件只能被分段上傳"
1687
+
1688
+ #: ../front-end/extra-fields/avatar/avatar.php:204
1689
+ #: ../front-end/extra-fields/avatar/avatar.php:225
1690
+ #: ../front-end/extra-fields/avatar/avatar.php:228
1691
+ #: ../front-end/extra-fields/upload/upload.php:189
1692
+ #: ../front-end/extra-fields/upload/upload.php:210
1693
+ #: ../front-end/extra-fields/upload/upload.php:213
1694
+ msgid "No file was selected"
1695
+ msgstr "沒有選擇文件"
1696
+
1697
+ #: ../front-end/extra-fields/avatar/avatar.php:207
1698
+ #: ../front-end/extra-fields/upload/upload.php:192
1699
+ msgid "The temporary upload folder is missing from the system"
1700
+ msgstr "系統丟失臨時文件緩存"
1701
+
1702
+ #: ../front-end/extra-fields/avatar/avatar.php:210
1703
+ #: ../front-end/extra-fields/upload/upload.php:195
1704
+ msgid "The file failed to write to the disk"
1705
+ msgstr "磁盤無法寫入文件"
1706
+
1707
+ #: ../front-end/extra-fields/avatar/avatar.php:213
1708
+ #: ../front-end/extra-fields/upload/upload.php:198
1709
+ msgid "A PHP extension stopped the file upload"
1710
+ msgstr "壹個PHP擴展暫停文件上傳"
1711
+
1712
+ #: ../front-end/extra-fields/avatar/avatar.php:216
1713
+ msgid "Unknown error occurred"
1714
+ msgstr "發生未知錯誤"
1715
+
1716
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1717
+ msgid "Could not open socket!"
1718
+ msgstr "無法打開 socket!"
1719
+
1720
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1721
+ msgid "To use reCAPTCHA you must get an API key from"
1722
+ msgstr "使用 reCAPTCHA 妳必須獲得壹個API密鑰"
1723
+
1724
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1725
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1726
+ msgstr "安全原因,您必須通過遠程IP到reCAPTCHA!"
1727
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1729
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1730
+ msgstr "使用 reCAPTCHA mailhide,您需要安裝 mcrypt PHP 模塊!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1733
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1734
+ msgstr "使用 reCAPTCHA mailhide,妳必須註冊壹個公共和私人密鑰; 妳可以這樣做"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1737
+ msgid "To use reCAPTCHA you must get an API public key from:"
1738
+ msgstr "使用reCAPTCHA,妳必須得到壹個API公開密鑰:"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1741
+ msgid "To use reCAPTCHA you must get an API private key from:"
1742
+ msgstr "使用reCAPTCHA,妳必須得到壹個API私人密鑰:"
1743
+
1744
+ #: ../front-end/extra-fields/upload/upload.php:35
1745
+ msgid "Current file: No uploaded attachment"
1746
+ msgstr "當前文件:沒有上傳附件"
1747
+
1748
+ #: ../front-end/extra-fields/upload/upload.php:39
1749
+ #: ../front-end/extra-fields/upload/upload.php:48
1750
+ #: ../front-end/extra-fields/upload/upload.php:71
1751
+ #: ../front-end/extra-fields/upload/upload.php:75
1752
+ #: ../front-end/extra-fields/upload/upload.php:77
1753
+ msgid "Current file"
1754
+ msgstr "當前文件"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:42
1757
+ #: ../front-end/extra-fields/upload/upload.php:51
1758
+ #: ../front-end/extra-fields/upload/upload.php:75
1759
+ #: ../front-end/extra-fields/upload/upload.php:77
1760
+ msgid "Click to see the current attachment"
1761
+ msgstr "點擊查看當前附件"
1762
+
1763
+ #: ../front-end/extra-fields/upload/upload.php:44
1764
+ #: ../front-end/extra-fields/upload/upload.php:75
1765
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1766
+ msgstr "附件不能刪除(被標記為管理員權限)"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:53
1769
+ #: ../front-end/extra-fields/upload/upload.php:77
1770
+ msgid "Are you sure you want to delete this attachment?"
1771
+ msgstr "您確定要刪除此附件嗎?"
1772
+
1773
+ #: ../front-end/extra-fields/upload/upload.php:54
1774
+ #: ../front-end/extra-fields/upload/upload.php:77
1775
+ msgid "Click to delete the current attachment"
1776
+ msgstr "單擊刪除當前附件"
1777
+
1778
+ #: ../front-end/extra-fields/upload/upload.php:71
1779
+ msgid "No uploaded attachment"
1780
+ msgstr "沒有上傳附件"
1781
+
1782
+ #: ../front-end/extra-fields/upload/upload.php:164
1783
+ msgid "The extension of the file is not allowed"
1784
+ msgstr "文件擴展名不允許"
1785
+
1786
+ #: ../front-end/extra-fields/upload/upload.php:186
1787
+ msgid "The file could only partially be uploaded"
1788
+ msgstr "該文件只能被分段上傳"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:201
1791
+ msgid "This field wasn't updated because an unknown error occured"
1792
+ msgstr "發生未知錯誤導致這個字段沒有更新"
1793
+
1794
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1795
+ msgid "Modules"
1796
+ msgstr "模塊"
1797
+
1798
+ #: ../modules/modules.php:81
1799
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1800
+ msgstr "在這裏妳可以激活/停用 Profile Builder 模塊。"
1801
+
1802
+ #: ../modules/modules.php:91
1803
+ msgid "Name/Description"
1804
+ msgstr "名稱/描述"
1805
+
1806
+ #: ../modules/modules.php:92
1807
+ msgid "Status"
1808
+ msgstr "狀態"
1809
+
1810
+ #: ../modules/custom-redirects/custom-redirects.php:48
1811
+ #: ../modules/custom-redirects/custom-redirects.php:58
1812
+ #: ../modules/custom-redirects/custom-redirects.php:68
1813
+ #: ../modules/custom-redirects/custom-redirects.php:94
1814
+ #: ../modules/custom-redirects/custom-redirects.php:104
1815
+ #: ../modules/custom-redirects/custom-redirects.php:114
1816
+ #: ../modules/custom-redirects/custom-redirects.php:124
1817
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1818
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1819
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1820
+ msgid "Active"
1821
+ msgstr "激活"
1822
+
1823
+ #: ../modules/custom-redirects/custom-redirects.php:49
1824
+ #: ../modules/custom-redirects/custom-redirects.php:59
1825
+ #: ../modules/custom-redirects/custom-redirects.php:69
1826
+ #: ../modules/custom-redirects/custom-redirects.php:95
1827
+ #: ../modules/custom-redirects/custom-redirects.php:105
1828
+ #: ../modules/custom-redirects/custom-redirects.php:115
1829
+ #: ../modules/custom-redirects/custom-redirects.php:125
1830
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1831
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1832
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1833
+ msgid "Inactive"
1834
+ msgstr "關閉"
1835
+
1836
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1837
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1838
+ #: ../modules/modules.php:118
1839
+ msgid "Admin Email Customizer"
1840
+ msgstr "管理員郵件定制"
1841
+
1842
+ #: ../modules/email-customizer/user-email-customizer.php:11
1843
+ #: ../modules/email-customizer/user-email-customizer.php:12
1844
+ #: ../modules/modules.php:125
1845
+ msgid "User Email Customizer"
1846
+ msgstr "用戶郵件定制"
1847
+
1848
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1849
+ msgid "Save"
1850
+ msgstr "保存"
1851
+
1852
+ #: ../modules/custom-redirects/custom-redirects.php:35
1853
+ msgid "Redirects on custom page requests:"
1854
+ msgstr "自定義頁面重定向請求:"
1855
+
1856
+ #: ../modules/custom-redirects/custom-redirects.php:39
1857
+ #: ../modules/custom-redirects/custom-redirects.php:85
1858
+ msgid "Action"
1859
+ msgstr "動作"
1860
+
1861
+ #: ../modules/custom-redirects/custom-redirects.php:40
1862
+ #: ../modules/custom-redirects/custom-redirects.php:86
1863
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1864
+ #: ../modules/multiple-forms/register-forms.php:230
1865
+ msgid "Redirect"
1866
+ msgstr "重定向"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:41
1869
+ #: ../modules/custom-redirects/custom-redirects.php:87
1870
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1871
+ #: ../modules/multiple-forms/register-forms.php:232
1872
+ msgid "URL"
1873
+ msgstr "網址"
1874
+
1875
+ #: ../modules/custom-redirects/custom-redirects.php:46
1876
+ msgid "After Registration:"
1877
+ msgstr "註冊後:"
1878
+
1879
+ #: ../modules/custom-redirects/custom-redirects.php:56
1880
+ msgid "After Login:"
1881
+ msgstr "登錄後:"
1882
+
1883
+ #: ../modules/custom-redirects/custom-redirects.php:66
1884
+ msgid "Recover Password (*)"
1885
+ msgstr "重置密碼 (*)"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:77
1888
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1889
+ msgstr "當激活這個功能,當用戶進入在 WordPress 默認的密碼恢復頁與 \"忘記密碼?\" 連接將重定向使用 Profile Builder 前端登陸頁面。"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:81
1892
+ msgid "Redirects on default WordPress page requests:"
1893
+ msgstr "WordPress 默認頁面的重定向:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:92
1896
+ msgid "Default WordPress Login Page"
1897
+ msgstr "WordPress 默認登錄頁面的重定向:"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:102
1900
+ msgid "Default WordPress Logout Page"
1901
+ msgstr "WordPress 默認退出頁面的重定向:"
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:112
1904
+ msgid "Default WordPress Register Page"
1905
+ msgstr "WordPress 默認註冊頁面的重定向:"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:122
1908
+ msgid "Default WordPress Dashboard (*)"
1909
+ msgstr "WordPress 默認後臺的重定向:"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:133
1912
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1913
+ msgstr "將所有用戶角色,除具有管理員權限用戶(管理)。"
1914
+
1915
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1916
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1917
+ msgstr "這些設置也復制在\"用戶郵件定制\" 設置頁中保存。"
1918
+
1919
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1920
+ #: ../modules/email-customizer/user-email-customizer.php:41
1921
+ msgid "From (name)"
1922
+ msgstr "來自(名子)"
1923
+
1924
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1925
+ #: ../modules/email-customizer/user-email-customizer.php:49
1926
+ msgid "From (reply-to email)"
1927
+ msgstr "來自(回復郵件)"
1928
+
1929
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1930
+ #: ../modules/email-customizer/user-email-customizer.php:57
1931
+ msgid "Common Settings"
1932
+ msgstr "常用設置"
1933
+
1934
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1935
+ msgid ""
1936
+ "\n"
1937
+ "<p>New subscriber on {{site_name}}.</p>\n"
1938
+ "<p>Username:{{username}}</p>\n"
1939
+ "<p>E-mail:{{user_email}}</p>\n"
1940
+ msgstr ""
1941
+ "\n"
1942
+ "<p>新用戶在 {{site_name}}.</p>\n"
1943
+ "<p>用戶名:{{username}}</p>\n"
1944
+ "<p>郵箱:{{user_email}}</p>\n"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1947
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1948
+ #: ../modules/email-customizer/user-email-customizer.php:71
1949
+ #: ../modules/email-customizer/user-email-customizer.php:99
1950
+ #: ../modules/email-customizer/user-email-customizer.php:128
1951
+ #: ../modules/email-customizer/user-email-customizer.php:155
1952
+ #: ../modules/email-customizer/user-email-customizer.php:183
1953
+ msgid "Email Subject"
1954
+ msgstr "郵件主題"
1955
+
1956
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1957
+ msgid "Default Registration & Registration with Email Confirmation"
1958
+ msgstr "默認註冊與郵件確認註冊"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1961
+ msgid ""
1962
+ "\n"
1963
+ "<p>New subscriber on {{site_name}}.</p>\n"
1964
+ "<p>Username:{{username}}</p>\n"
1965
+ "<p>E-mail:{{user_email}}</p>\n"
1966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1968
+ msgstr ""
1969
+ "\n"
1970
+ "<p>新用戶在 {{site_name}}.</p>\n"
1971
+ "<p>用戶名:{{username}}</p>\n"
1972
+ "<p>郵箱:{{user_email}}</p>\n"
1973
+ "<p>管理審核功能已被激活,\n"
1974
+ "請記住,您需要批準這個用戶,他才能登陸!</p>\n"
1975
+
1976
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1977
+ #: ../modules/email-customizer/user-email-customizer.php:143
1978
+ msgid "Registration with Admin Approval"
1979
+ msgstr "註冊需管理員審批"
1980
+
1981
+ #: ../modules/email-customizer/email-customizer.php:7
1982
+ msgid "Available Tags"
1983
+ msgstr "可用標簽"
1984
+
1985
+ #: ../modules/email-customizer/email-customizer.php:11
1986
+ msgid "User Meta"
1987
+ msgstr "User Meta"
1988
+
1989
+ #: ../modules/email-customizer/email-customizer.php:21
1990
+ msgid "Site Url"
1991
+ msgstr "網站地址"
1992
+
1993
+ #: ../modules/email-customizer/email-customizer.php:22
1994
+ msgid "Site Name"
1995
+ msgstr "網站名稱"
1996
+
1997
+ #: ../modules/email-customizer/email-customizer.php:25
1998
+ #: ../modules/user-listing/userlisting.php:126
1999
+ msgid "User Id"
2000
+ msgstr "用戶名稱"
2001
+
2002
+ #: ../modules/email-customizer/email-customizer.php:32
2003
+ msgid "Reply To"
2004
+ msgstr "回復"
2005
+
2006
+ #: ../modules/email-customizer/email-customizer.php:35
2007
+ msgid "Activation Key"
2008
+ msgstr "激活密鑰"
2009
+
2010
+ #: ../modules/email-customizer/email-customizer.php:36
2011
+ msgid "Activation Url"
2012
+ msgstr "激活URL"
2013
+
2014
+ #: ../modules/email-customizer/email-customizer.php:37
2015
+ msgid "Activation Link"
2016
+ msgstr "激活鏈接"
2017
+
2018
+ #: ../modules/email-customizer/user-email-customizer.php:64
2019
+ msgid ""
2020
+ "\n"
2021
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2022
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2023
+ msgstr ""
2024
+ "\n"
2025
+ "<h3>歡迎來到 {{site_name}}!</h3>\n"
2026
+ "<p>您的用戶名是:{{username}} 密碼是:{{password}}</p>\n"
2027
+
2028
+ #: ../modules/email-customizer/user-email-customizer.php:85
2029
+ msgid "Default Registration"
2030
+ msgstr "默認註冊"
2031
+
2032
+ #: ../modules/email-customizer/user-email-customizer.php:91
2033
+ msgid ""
2034
+ "\n"
2035
+ "<p>To activate your user, please click the following link:<br/>\n"
2036
+ "{{{activation_link}}}</p>\n"
2037
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2038
+ msgstr ""
2039
+ "\n"
2040
+ "<p>激活您的帳戶,請點擊下面連接:<br/>\n"
2041
+ "{{{activation_link}}}</p>\n"
2042
+ "<p>在您激活完成後,將會收到另外壹封憑據郵件。</p>\n"
2043
+
2044
+ #: ../modules/email-customizer/user-email-customizer.php:103
2045
+ msgid "[{{site_name}}] Activate {{username}}"
2046
+ msgstr "[{{site_name}}] 激活 {{username}}"
2047
+
2048
+ #: ../modules/email-customizer/user-email-customizer.php:114
2049
+ msgid "Registration with Email Confirmation"
2050
+ msgstr "電子郵件確認註冊"
2051
+
2052
+ #: ../modules/email-customizer/user-email-customizer.php:120
2053
+ msgid ""
2054
+ "\n"
2055
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2056
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2057
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2058
+ msgstr ""
2059
+ "\n"
2060
+ "<h3>歡迎來到 {{site_name}}!</h3>\n"
2061
+ "<p>您的用戶名:{{username}} 密碼:{{password}}</p>\n"
2062
+ "<p>在您訪問您的帳號前,需要管理審批。您將會收郵件通知。</p>\n"
2063
+
2064
+ #: ../modules/email-customizer/user-email-customizer.php:132
2065
+ msgid "A new account has been created for you on {{site_name}}"
2066
+ msgstr "壹個新的帳號在您的 {{site_name}} 上建立"
2067
+
2068
+ #: ../modules/email-customizer/user-email-customizer.php:148
2069
+ msgid ""
2070
+ "\n"
2071
+ "<h3>Good News!</h3>\n"
2072
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2073
+ msgstr ""
2074
+ "\n"
2075
+ "<h3>好消息 !</h3>\n"
2076
+ "<p>管理員已經批準您的帳號: {{username}} 在 {{site_name}}.</p>\n"
2077
+
2078
+ #: ../modules/email-customizer/user-email-customizer.php:159
2079
+ msgid "Your account on {{site_name}} has been approved!"
2080
+ msgstr "您在 {{site_name}} 的帳號已經被通過!"
2081
+
2082
+ #: ../modules/email-customizer/user-email-customizer.php:170
2083
+ msgid "User Approval Notification"
2084
+ msgstr "用戶批準通知"
2085
+
2086
+ #: ../modules/email-customizer/user-email-customizer.php:175
2087
+ msgid ""
2088
+ "\n"
2089
+ "<h3>Hello,</h3>\n"
2090
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2091
+ msgstr ""
2092
+ "\n"
2093
+ "<h3>您好,</h3>\n"
2094
+ "<p>抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.</p>\n"
2095
+
2096
+ #: ../modules/email-customizer/user-email-customizer.php:187
2097
+ msgid "Your account on {{site_name}} has been unapproved!"
2098
+ msgstr "您在 {{site_name}} 的帳號被拒絕!"
2099
+
2100
+ #: ../modules/email-customizer/user-email-customizer.php:198
2101
+ msgid "Unapproved User Notification"
2102
+ msgstr "被拒絕的用戶通知"
2103
+
2104
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2105
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2106
+ msgid "Edit-profile Form"
2107
+ msgstr "編輯資料表單"
2108
+
2109
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2110
+ #: ../modules/multiple-forms/register-forms.php:13
2111
+ #: ../modules/user-listing/userlisting.php:13
2112
+ msgid "Add New"
2113
+ msgstr "新增加"
2114
+
2115
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2116
+ msgid "Add new Edit-profile Form"
2117
+ msgstr "添加新的編輯資料表單"
2118
+
2119
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2120
+ msgid "Edit the Edit-profile Forms"
2121
+ msgstr "編輯的編輯個人資料表單"
2122
+
2123
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2124
+ msgid "New Edit-profile Form"
2125
+ msgstr "新的編輯資料表單"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2129
+ msgid "Edit-profile Forms"
2130
+ msgstr "編輯資料表單"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2133
+ msgid "View the Edit-profile Form"
2134
+ msgstr "查看編輯資料表單"
2135
+
2136
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2137
+ msgid "Search the Edit-profile Forms"
2138
+ msgstr "搜索編輯資料表單"
2139
+
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2141
+ msgid "No Edit-profile Form found"
2142
+ msgstr "沒有編輯個人資料表單"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2145
+ msgid "No Edit-profile Forms found in trash"
2146
+ msgstr "在回收站中沒有編輯個人資料表單"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:135
2149
+ #: ../modules/multiple-forms/register-forms.php:138
2150
+ #: ../modules/user-listing/userlisting.php:1029
2151
+ msgid "Shortcode"
2152
+ msgstr "簡碼"
2153
+
2154
+ #: ../modules/multiple-forms/edit-profile-forms.php:155
2155
+ #: ../modules/multiple-forms/register-forms.php:159
2156
+ #: ../modules/user-listing/userlisting.php:1050
2157
+ msgid "(no title)"
2158
+ msgstr "(沒有標題)"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:175
2161
+ #: ../modules/multiple-forms/register-forms.php:178
2162
+ #: ../modules/user-listing/userlisting.php:1070
2163
+ msgid "The shortcode will be available after you publish this form."
2164
+ msgstr "簡碼將在您發布表單後可用。"
2165
+
2166
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
2167
+ #: ../modules/multiple-forms/register-forms.php:180
2168
+ #: ../modules/user-listing/userlisting.php:1072
2169
+ msgid "Use this shortcode on the page you want the form to be displayed:"
2170
+ msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
2171
+
2172
+ #: ../modules/multiple-forms/edit-profile-forms.php:181
2173
+ #: ../modules/multiple-forms/register-forms.php:184
2174
+ #: ../modules/user-listing/userlisting.php:1076
2175
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2176
+ msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
2177
+
2178
+ #: ../modules/multiple-forms/edit-profile-forms.php:187
2179
+ #: ../modules/multiple-forms/register-forms.php:190
2180
+ #: ../modules/user-listing/userlisting.php:1090
2181
+ msgid "Form Shortcode"
2182
+ msgstr "表單簡碼"
2183
+
2184
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2185
+ #: ../modules/multiple-forms/register-forms.php:230
2186
+ msgid "Whether to redirect the user to a specific page or not"
2187
+ msgstr "是否將用戶重定向到特定頁"
2188
+
2189
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2190
+ #: ../modules/multiple-forms/register-forms.php:231
2191
+ msgid "Display Messages"
2192
+ msgstr "顯示消息"
2193
+
2194
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2195
+ #: ../modules/multiple-forms/register-forms.php:231
2196
+ msgid "Allowed time to display any success messages (in seconds)"
2197
+ msgstr "允許用時間去顯示成功信息提示(秒)"
2198
+
2199
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2200
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
2201
+ msgstr "指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向<br/>使用這種格式: http://www.mysite.com"
2202
+
2203
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2204
+ msgid "After Profile Update..."
2205
+ msgstr "檔案更新後…"
2206
+
2207
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2208
+ #: ../modules/multiple-forms/register-forms.php:260
2209
+ msgid "Add New Field to the List"
2210
+ msgstr "添加新字段到列表"
2211
+
2212
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2213
+ #: ../modules/multiple-forms/register-forms.php:264
2214
+ msgid "Choose one of the supported fields you manage <a href=\""
2215
+ msgstr "選擇壹個支持字段去管理 <a href=\""
2216
+
2217
+ #: ../modules/multiple-forms/multiple-forms.php:407
2218
+ msgid "<pre>Title (Type)</pre>"
2219
+ msgstr "<pre>標題 (類型)</pre>"
2220
+
2221
+ #: ../modules/multiple-forms/multiple-forms.php:233
2222
+ msgid "You need to specify the title of the form before creating it"
2223
+ msgstr "妳需要在創建前指定表單的標題"
2224
+
2225
+ #: ../modules/multiple-forms/register-forms.php:11
2226
+ #: ../modules/multiple-forms/register-forms.php:12
2227
+ msgid "Registration Form"
2228
+ msgstr "註冊表單"
2229
+
2230
+ #: ../modules/multiple-forms/register-forms.php:14
2231
+ msgid "Add new Registration Form"
2232
+ msgstr "增加新的註冊表單"
2233
+
2234
+ #: ../modules/multiple-forms/register-forms.php:15
2235
+ msgid "Edit the Registration Forms"
2236
+ msgstr "編緝註冊表單"
2237
+
2238
+ #: ../modules/multiple-forms/register-forms.php:16
2239
+ msgid "New Registration Form"
2240
+ msgstr "新註冊表單"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:17
2243
+ #: ../modules/multiple-forms/register-forms.php:23
2244
+ msgid "Registration Forms"
2245
+ msgstr "註冊表單"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:18
2248
+ msgid "View the Registration Form"
2249
+ msgstr "查看註冊表單"
2250
+
2251
+ #: ../modules/multiple-forms/register-forms.php:19
2252
+ msgid "Search the Registration Forms"
2253
+ msgstr "搜索註冊表單"
2254
+
2255
+ #: ../modules/multiple-forms/register-forms.php:20
2256
+ msgid "No Registration Form found"
2257
+ msgstr "沒有找到註冊表單"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:21
2260
+ msgid "No Registration Forms found in trash"
2261
+ msgstr "在回收站沒有找到註冊表單"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:219
2264
+ msgid "Default Role"
2265
+ msgstr "默認角色"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:228
2268
+ msgid "Set Role"
2269
+ msgstr "設置角色"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:228
2272
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
2273
+ msgstr "選擇用戶註冊後的角色<br/>如無指定,將默認使用 WordPress 的設定"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:229
2276
+ msgid "Automatically Log In"
2277
+ msgstr "自動登錄"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:229
2280
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
2281
+ msgstr "是否記錄用戶新註冊 <br/> 只使用於單網站,並且沒有開啟 \"管理員審批\" 與 \"郵箱確認\" 功能 <br/>警告:緩存註冊表單會讓自動登錄不正常"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:232
2284
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
2285
+ msgstr "指定用戶註冊頁面地址將被重定向<br/>使用下列格式: http://www.mysite.com"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:238
2288
+ msgid "After Registration..."
2289
+ msgstr "註冊後…"
2290
+
2291
+ #: ../modules/user-listing/class-userlisting.php:458
2292
+ #: ../modules/user-listing/userlisting.php:624
2293
+ #: ../modules/user-listing/userlisting.php:842
2294
+ #: ../modules/user-listing/userlisting.php:885
2295
+ #: ../modules/user-listing/userlisting.php:1209
2296
+ msgid "Search Users by All Fields"
2297
+ msgstr "在所有字段中搜索用戶"
2298
+
2299
+ #: ../modules/user-listing/userlisting.php:14
2300
+ msgid "Add new User Listing"
2301
+ msgstr "增加新的用戶列表"
2302
+
2303
+ #: ../modules/user-listing/userlisting.php:15
2304
+ msgid "Edit the User Listing"
2305
+ msgstr "編輯用戶列表"
2306
+
2307
+ #: ../modules/user-listing/userlisting.php:16
2308
+ msgid "New User Listing"
2309
+ msgstr "新的用戶列表"
2310
+
2311
+ #: ../modules/user-listing/userlisting.php:18
2312
+ msgid "View the User Listing"
2313
+ msgstr "查看用戶列表"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:19
2316
+ msgid "Search the User Listing"
2317
+ msgstr "搜索用戶列表"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:20
2320
+ msgid "No User Listing found"
2321
+ msgstr "沒有找到用戶列表"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:21
2324
+ msgid "No User Listing found in trash"
2325
+ msgstr "沒有在回收站找到用戶列表"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:97
2328
+ msgid "Display name as"
2329
+ msgstr "顯示名稱為"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:110
2332
+ msgid "Url"
2333
+ msgstr "網址"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:118
2336
+ #: ../modules/user-listing/userlisting.php:1118
2337
+ msgid "Registration Date"
2338
+ msgstr "註冊日期"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:119
2341
+ #: ../modules/user-listing/userlisting.php:1122
2342
+ msgid "Number of Posts"
2343
+ msgstr "帖子數"
2344
+
2345
+ #: ../modules/user-listing/userlisting.php:123
2346
+ msgid "More Info"
2347
+ msgstr "更多信息"
2348
+
2349
+ #: ../modules/user-listing/userlisting.php:124
2350
+ msgid "More Info Url"
2351
+ msgstr "更多信息網址"
2352
+
2353
+ #: ../modules/user-listing/userlisting.php:125
2354
+ msgid "Avatar or Gravatar"
2355
+ msgstr "頭像或 Gravatar"
2356
+
2357
+ #: ../modules/user-listing/userlisting.php:153
2358
+ msgid "Meta Variables"
2359
+ msgstr "Meta 變量"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:159
2362
+ msgid "Sort Variables"
2363
+ msgstr "分類變量"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:163
2366
+ #: ../modules/user-listing/userlisting.php:190
2367
+ msgid "Extra Functions"
2368
+ msgstr "額外功能"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:165
2371
+ msgid "Pagination"
2372
+ msgstr "分頁"
2373
+
2374
+ #: ../modules/user-listing/userlisting.php:166
2375
+ msgid "Search all Fields"
2376
+ msgstr "搜索所有字段"
2377
+
2378
+ #: ../modules/user-listing/userlisting.php:192
2379
+ msgid "Go Back Link"
2380
+ msgstr "返回鏈接"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:210
2383
+ msgid "All-userlisting Template"
2384
+ msgstr "所有用戶列表模板"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:213
2387
+ msgid "Single-userlisting Template"
2388
+ msgstr "單用戶列表模板"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:330
2391
+ msgid "You do not have permission to view this user list"
2392
+ msgstr "您沒有權限查看該用戶列表"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:343
2395
+ msgid "You do not have the required user role to view this user list"
2396
+ msgstr "沒有所需的用戶權限查看用戶列表"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:519
2399
+ msgid "First/Lastname"
2400
+ msgstr "名字/姓氏"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:525
2403
+ msgid "Sign-up Date"
2404
+ msgstr "註冊日期"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:534
2407
+ #: ../modules/user-listing/userlisting.php:1121
2408
+ msgid "Display Name"
2409
+ msgstr "顯示名稱"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:543
2412
+ msgid "Posts"
2413
+ msgstr "帖子"
2414
+
2415
+ #: ../modules/user-listing/userlisting.php:546
2416
+ #: ../modules/user-listing/userlisting.php:1126
2417
+ msgid "Aim"
2418
+ msgstr "Aim"
2419
+
2420
+ #: ../modules/user-listing/userlisting.php:549
2421
+ #: ../modules/user-listing/userlisting.php:1127
2422
+ msgid "Yim"
2423
+ msgstr "Yim"
2424
+
2425
+ #: ../modules/user-listing/userlisting.php:552
2426
+ #: ../modules/user-listing/userlisting.php:1128
2427
+ msgid "Jabber"
2428
+ msgstr "Jabber"
2429
+
2430
+ #: ../modules/user-listing/userlisting.php:701
2431
+ msgid "Click here to see more information about this user"
2432
+ msgstr "點擊這裏查看此用戶的更多信息"
2433
+
2434
+ #: ../modules/user-listing/userlisting.php:701
2435
+ msgid "More..."
2436
+ msgstr "更多..."
2437
+
2438
+ #: ../modules/user-listing/userlisting.php:704
2439
+ msgid "Click here to see more information about this user."
2440
+ msgstr "點擊這裏查看此用戶的更多信息。"
2441
+
2442
+ #: ../modules/user-listing/userlisting.php:796
2443
+ #: ../modules/user-listing/userlisting.php:799
2444
+ msgid "Click here to go back"
2445
+ msgstr "點擊這裏返回"
2446
+
2447
+ #: ../modules/user-listing/userlisting.php:796
2448
+ msgid "Back"
2449
+ msgstr "返回"
2450
+
2451
+ #: ../modules/user-listing/userlisting.php:829
2452
+ msgid "&laquo;&laquo; First"
2453
+ msgstr "&laquo;&laquo; 首頁"
2454
+
2455
+ #: ../modules/user-listing/userlisting.php:830
2456
+ msgid "&laquo; Prev"
2457
+ msgstr "&laquo; 上壹頁"
2458
+
2459
+ #: ../modules/user-listing/userlisting.php:831
2460
+ msgid "Next &raquo; "
2461
+ msgstr "下壹頁 &raquo; "
2462
+
2463
+ #: ../modules/user-listing/userlisting.php:832
2464
+ msgid "Last &raquo;&raquo;"
2465
+ msgstr "最後 &raquo;&raquo;"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:861
2468
+ msgid "You don't have any pagination settings on this userlisting!"
2469
+ msgstr "您不需在用戶列表中設置分頁"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:902
2472
+ msgid "Search"
2473
+ msgstr "搜索"
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:903
2476
+ msgid "Clear Results"
2477
+ msgstr "清除結果"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:1079
2480
+ msgid "Extra shortcode parameters"
2481
+ msgstr "額外簡碼參數"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:1081
2484
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2485
+ msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:1082
2488
+ msgid "Example:"
2489
+ msgstr "例子:"
2490
+
2491
+ #: ../modules/user-listing/userlisting.php:1084
2492
+ msgid "Remember though, that the field-value combination must exist in the database."
2493
+ msgstr "記住,該字段值的組合必須存在於數據庫中。"
2494
+
2495
+ #: ../modules/user-listing/userlisting.php:1138
2496
+ msgid "Random (very slow on large databases > 10K user)"
2497
+ msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
2498
+
2499
+ #: ../modules/user-listing/userlisting.php:1151
2500
+ msgid "Roles to Display"
2501
+ msgstr "角色顯示:"
2502
+
2503
+ #: ../modules/user-listing/userlisting.php:1151
2504
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2505
+ msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
2506
+
2507
+ #: ../modules/user-listing/userlisting.php:1152
2508
+ msgid "Number of Users/Page"
2509
+ msgstr "用戶/頁面數"
2510
+
2511
+ #: ../modules/user-listing/userlisting.php:1153
2512
+ msgid "Default Sorting Criteria"
2513
+ msgstr "默認分類標準"
2514
+
2515
+ #: ../modules/user-listing/userlisting.php:1153
2516
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2517
+ msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
2518
+
2519
+ #: ../modules/user-listing/userlisting.php:1154
2520
+ msgid "Default Sorting Order"
2521
+ msgstr "默認排列順序"
2522
+
2523
+ #: ../modules/user-listing/userlisting.php:1154
2524
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2525
+ msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
2526
+
2527
+ #: ../modules/user-listing/userlisting.php:1155
2528
+ msgid "Avatar Size (All-userlisting)"
2529
+ msgstr "頭像大小(所有用戶列表)"
2530
+
2531
+ #: ../modules/user-listing/userlisting.php:1155
2532
+ msgid "Set the avatar size on the all-userlisting only"
2533
+ msgstr "設置在所有用戶列表的頭像大小"
2534
+
2535
+ #: ../modules/user-listing/userlisting.php:1156
2536
+ msgid "Avatar Size (Single-userlisting)"
2537
+ msgstr "頭像大小(單用戶列表)"
2538
+
2539
+ #: ../modules/user-listing/userlisting.php:1156
2540
+ msgid "Set the avatar size on the single-userlisting only"
2541
+ msgstr "設置在單用戶列表的頭像大小"
2542
+
2543
+ #: ../modules/user-listing/userlisting.php:1157
2544
+ msgid "Visible only to logged in users?"
2545
+ msgstr "只有登錄用戶可見的?"
2546
+
2547
+ #: ../modules/user-listing/userlisting.php:1157
2548
+ msgid "The userlisting will only be visible only to the logged in users"
2549
+ msgstr "用戶列表只有登錄用戶可見的"
2550
+
2551
+ #: ../modules/user-listing/userlisting.php:1158
2552
+ msgid "Visible to following Roles"
2553
+ msgstr "以下角色可見"
2554
+
2555
+ #: ../modules/user-listing/userlisting.php:1158
2556
+ msgid "The userlisting will only be visible to the following roles"
2557
+ msgstr "用戶列表只允許以下角色可見"
2558
+
2559
+ #: ../modules/user-listing/userlisting.php:1164
2560
+ msgid "Userlisting Settings"
2561
+ msgstr "用戶列表設置"
2562
+
2563
+ #: ../modules/user-listing/userlisting.php:1185
2564
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2565
+ msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
2566
+
2567
+ #: ../modules/user-listing/userlisting.php:1185
2568
+ msgid "You can find it in the Profile Builder menu."
2569
+ msgstr "妳可以在 Profile Builder 菜單中找到它。"
2570
+
2571
+ #: ../modules/user-listing/userlisting.php:1335
2572
+ msgid "No results found!"
2573
+ msgstr "無任何結果!"
translation/profilebuilder.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: profilebuilder\n"
4
- "POT-Creation-Date: 2014-10-30 16:33+0200\n"
5
- "PO-Revision-Date: 2014-10-30 16:34+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Cozmoslabs\n"
8
  "Language: en\n"
@@ -13,6 +13,7 @@ msgstr ""
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x;_n\n"
 
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
  #: ../admin/admin-bar.php:10
@@ -124,7 +125,7 @@ msgstr ""
124
  msgid "For Modern User Interaction"
125
  msgstr ""
126
 
127
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:75
128
  msgid "Login"
129
  msgstr ""
130
 
@@ -383,7 +384,7 @@ msgstr ""
383
  #: ../admin/general-settings.php:114
384
  #: ../modules/multiple-forms/register-forms.php:229
385
  #: ../modules/multiple-forms/register-forms.php:230
386
- #: ../modules/user-listing/userlisting.php:1150
387
  msgid "Yes"
388
  msgstr ""
389
 
@@ -470,14 +471,14 @@ msgstr ""
470
  #: ../modules/email-customizer/email-customizer.php:28
471
  #: ../modules/user-listing/userlisting.php:94
472
  #: ../modules/user-listing/userlisting.php:516
473
- #: ../modules/user-listing/userlisting.php:1107
474
  msgid "Username"
475
  msgstr ""
476
 
477
- #: ../admin/general-settings.php:145 ../front-end/login.php:134
478
  #: ../modules/email-customizer/email-customizer.php:29
479
  #: ../modules/user-listing/userlisting.php:522
480
- #: ../modules/user-listing/userlisting.php:1108
481
  msgid "Email"
482
  msgstr ""
483
 
@@ -737,7 +738,7 @@ msgstr ""
737
  msgid "Last Name"
738
  msgstr ""
739
 
740
- #: ../admin/manage-fields.php:136
741
  msgid "Nickname"
742
  msgstr ""
743
 
@@ -760,7 +761,7 @@ msgstr ""
760
  #: ../modules/email-customizer/email-customizer.php:31
761
  #: ../modules/user-listing/userlisting.php:103
762
  #: ../modules/user-listing/userlisting.php:537
763
- #: ../modules/user-listing/userlisting.php:1109
764
  msgid "Website"
765
  msgstr ""
766
 
@@ -782,7 +783,7 @@ msgstr ""
782
 
783
  #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
784
  #: ../modules/user-listing/userlisting.php:540
785
- #: ../modules/user-listing/userlisting.php:1110
786
  msgid "Biographical Info"
787
  msgstr ""
788
 
@@ -809,101 +810,104 @@ msgstr ""
809
  msgid "Type your password again. "
810
  msgstr ""
811
 
812
- #: ../admin/manage-fields.php:279 ../admin/manage-fields.php:406
813
  msgid "You must select a field\n"
814
  msgstr ""
815
 
816
- #: ../admin/manage-fields.php:289
817
  msgid ""
818
  "Please choose a different field type as this one already exists in your form "
819
  "(must be unique)\n"
820
  msgstr ""
821
 
822
- #: ../admin/manage-fields.php:300
823
  msgid "The entered avatar size is not between 20 and 200\n"
824
  msgstr ""
825
 
826
- #: ../admin/manage-fields.php:303
827
  msgid "The entered avatar size is not numerical\n"
828
  msgstr ""
829
 
830
- #: ../admin/manage-fields.php:311
831
  msgid "The entered row number is not numerical\n"
832
  msgstr ""
833
 
834
- #: ../admin/manage-fields.php:314
835
  msgid "You must enter a value for the row number\n"
836
  msgstr ""
837
 
838
- #: ../admin/manage-fields.php:322
839
  msgid "You must enter the public key\n"
840
  msgstr ""
841
 
842
- #: ../admin/manage-fields.php:324
843
  msgid "You must enter the private key\n"
844
  msgstr ""
845
 
846
- #: ../admin/manage-fields.php:332
847
  msgid "The entered value for the Datepicker is not a valid date-format\n"
848
  msgstr ""
849
 
850
- #: ../admin/manage-fields.php:335
851
  msgid "You must enter a value for the date-format\n"
852
  msgstr ""
853
 
854
- #: ../admin/manage-fields.php:356 ../admin/manage-fields.php:364
855
- #: ../admin/manage-fields.php:374
 
 
 
 
856
  msgid "That meta-name is already in use\n"
857
  msgstr ""
858
 
859
- #: ../admin/manage-fields.php:396
860
  #, php-format
861
  msgid ""
862
  "The following option(s) did not coincide with the ones in the options list: "
863
  "%s\n"
864
  msgstr ""
865
 
866
- #: ../admin/manage-fields.php:400
867
  #, php-format
868
  msgid ""
869
  "The following option did not coincide with the ones in the options list: %s\n"
870
  msgstr ""
871
 
872
- #: ../admin/manage-fields.php:413
873
  msgid "That field is already added in this form\n"
874
  msgstr ""
875
 
876
- #: ../admin/manage-fields.php:462
877
  msgid ""
878
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
879
  "required\">Required</pre>"
880
  msgstr ""
881
 
882
- #: ../admin/manage-fields.php:462
883
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:416
884
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
885
  #: ../features/functions.php:590 ../features/functions.php:597
886
- #: ../modules/multiple-forms/edit-profile-forms.php:267
887
  msgid "Edit"
888
  msgstr ""
889
 
890
- #: ../admin/manage-fields.php:462
891
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:416
892
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:503
893
  #: ../features/admin-approval/class-admin-approval.php:124
894
  #: ../features/admin-approval/class-admin-approval.php:235
895
  #: ../features/email-confirmation/class-email-confirmation.php:106
896
  #: ../features/email-confirmation/class-email-confirmation.php:202
897
  #: ../features/functions.php:583 ../features/functions.php:597
898
- #: ../modules/multiple-forms/edit-profile-forms.php:267
899
  msgid "Delete"
900
  msgstr ""
901
 
902
- #: ../admin/manage-fields.php:477
903
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
904
  msgstr ""
905
 
906
- #: ../admin/manage-fields.php:483
907
  msgid ""
908
  "If you're interested in displaying different fields in the registration and "
909
  "edit profile forms, please use the Multiple Registration & Edit Profile "
@@ -957,29 +961,31 @@ msgstr ""
957
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
958
  msgstr ""
959
 
960
- #: ../admin/register-version.php:216
961
  #, php-format
962
  msgid ""
963
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
964
- "missing. <br/>Please %1$sregister your copy%2$s of Profile Builder to "
965
- "receive access to automatic updates and support. Need a license key? "
966
- "%3$sPurchase one now%4$s</p>"
967
  msgstr ""
968
 
969
- #: ../admin/register-version.php:219
970
  #, php-format
971
  msgid ""
972
- "<p>Your <strong>Profile Builder</strong> licence has expired. <br/>Please "
973
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
974
- "support. %3$sPurchase one now%4$s %5$sDismiss%6$s</p>"
 
975
  msgstr ""
976
 
977
- #: ../admin/register-version.php:224
978
  #, php-format
979
  msgid ""
980
- "<p>Your <strong>Profile Builder</strong> serial number is about to expire on "
981
- "%5$s. <br/>Please %1$sRenew Your Licence%2$s to receive access to automatic "
982
- "updates and support. %3$sPurchase one now%4$s</p>"
 
983
  msgstr ""
984
 
985
  #: ../assets/lib/wck-api/fields/country select.php:14
@@ -1003,24 +1009,24 @@ msgstr ""
1003
  msgid "Upload "
1004
  msgstr ""
1005
 
1006
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:416
1007
  #: ../features/functions.php:597
1008
  msgid "Content"
1009
  msgstr ""
1010
 
1011
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
1012
  msgid "Edit this item"
1013
  msgstr ""
1014
 
1015
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:503
1016
  msgid "Delete this item"
1017
  msgstr ""
1018
 
1019
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:644
1020
  msgid "Please enter a value for the required field "
1021
  msgstr ""
1022
 
1023
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1009
1024
  msgid "Select File"
1025
  msgstr ""
1026
 
@@ -1150,13 +1156,13 @@ msgstr ""
1150
 
1151
  #: ../features/admin-approval/class-admin-approval.php:178
1152
  #: ../modules/user-listing/userlisting.php:528
1153
- #: ../modules/user-listing/userlisting.php:1112
1154
  msgid "Firstname"
1155
  msgstr ""
1156
 
1157
  #: ../features/admin-approval/class-admin-approval.php:179
1158
  #: ../modules/user-listing/userlisting.php:531
1159
- #: ../modules/user-listing/userlisting.php:1113
1160
  msgid "Lastname"
1161
  msgstr ""
1162
 
@@ -1322,47 +1328,47 @@ msgid ""
1322
  "After you activate it you will receive yet *another email* with your login."
1323
  msgstr ""
1324
 
1325
- #: ../features/email-confirmation/email-confirmation.php:387
1326
- #: ../front-end/register.php:67
1327
  msgid "Could not create user!"
1328
  msgstr ""
1329
 
1330
- #: ../features/email-confirmation/email-confirmation.php:390
1331
  msgid "That username is already activated!"
1332
  msgstr ""
1333
 
1334
- #: ../features/email-confirmation/email-confirmation.php:410
1335
  msgid "There was an error while trying to activate the user"
1336
  msgstr ""
1337
 
1338
- #: ../features/email-confirmation/email-confirmation.php:448
1339
  #: ../modules/email-customizer/admin-email-customizer.php:73
1340
  msgid "A new subscriber has (been) registered!"
1341
  msgstr ""
1342
 
1343
- #: ../features/email-confirmation/email-confirmation.php:451
1344
  #, php-format
1345
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1346
  msgstr ""
1347
 
1348
- #: ../features/email-confirmation/email-confirmation.php:456
1349
  msgid ""
1350
  "The \"Admin Approval\" feature was activated at the time of registration, so "
1351
  "please remember that you need to approve this user before he/she can log in!"
1352
  msgstr ""
1353
 
1354
- #: ../features/email-confirmation/email-confirmation.php:471
1355
  #, php-format
1356
  msgid "[%1$s] Your new account information"
1357
  msgstr ""
1358
 
1359
- #: ../features/email-confirmation/email-confirmation.php:474
1360
  #, php-format
1361
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1362
  msgstr ""
1363
 
1364
- #: ../features/email-confirmation/email-confirmation.php:479
1365
- #: ../front-end/register.php:93
1366
  msgid ""
1367
  "Before you can access your account, an administrator needs to approve it. "
1368
  "You will be notified via email."
@@ -1392,10 +1398,22 @@ msgstr ""
1392
  msgid "Minimum length of "
1393
  msgstr ""
1394
 
 
 
 
 
1395
  #: ../features/functions.php:576
1396
  msgid "Cancel"
1397
  msgstr ""
1398
 
 
 
 
 
 
 
 
 
1399
  #: ../features/login-widget/login-widget.php:10
1400
  msgid "This login widget lets you add a login form in the sidebar."
1401
  msgstr ""
@@ -1404,36 +1422,19 @@ msgstr ""
1404
  msgid "Profile Builder Login Widget"
1405
  msgstr ""
1406
 
1407
- #: ../features/login-widget/login-widget.php:40
1408
- #: ../front-end/class-formbuilder.php:274
1409
- msgid "Register"
1410
- msgstr ""
1411
-
1412
- #: ../features/login-widget/login-widget.php:41
1413
- msgid "Don't have an account?"
1414
- msgstr ""
1415
-
1416
- #: ../features/login-widget/login-widget.php:46
1417
- msgid "Lost Password"
1418
- msgstr ""
1419
-
1420
- #: ../features/login-widget/login-widget.php:46
1421
- msgid "Lost Your Password?"
1422
- msgstr ""
1423
-
1424
- #: ../features/login-widget/login-widget.php:79
1425
  msgid "Title:"
1426
  msgstr ""
1427
 
1428
- #: ../features/login-widget/login-widget.php:84
1429
  msgid "After login redirect URL (optional):"
1430
  msgstr ""
1431
 
1432
- #: ../features/login-widget/login-widget.php:89
1433
  msgid "Register page URL (optional):"
1434
  msgstr ""
1435
 
1436
- #: ../features/login-widget/login-widget.php:94
1437
  msgid "Password Recovery page URL (optional):"
1438
  msgstr ""
1439
 
@@ -1516,6 +1517,10 @@ msgstr ""
1516
  msgid "Add User"
1517
  msgstr ""
1518
 
 
 
 
 
1519
  #: ../front-end/class-formbuilder.php:277
1520
  msgid "Update"
1521
  msgstr ""
@@ -1688,8 +1693,8 @@ msgstr ""
1688
  msgid "Unknown error occurred"
1689
  msgstr ""
1690
 
1691
- #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:63
1692
- #: ../front-end/login.php:70 ../front-end/login.php:80
1693
  #: ../front-end/recover.php:17 ../front-end/recover.php:206
1694
  msgid "ERROR"
1695
  msgstr ""
@@ -1777,44 +1782,48 @@ msgstr ""
1777
  msgid "This field wasn't updated because an unknown error occured"
1778
  msgstr ""
1779
 
1780
- #: ../front-end/login.php:63
1781
  msgid "The password you entered is incorrect."
1782
  msgstr ""
1783
 
1784
- #: ../front-end/login.php:64 ../front-end/login.php:71
1785
  msgid "Password Lost and Found."
1786
  msgstr ""
1787
 
1788
- #: ../front-end/login.php:64 ../front-end/login.php:71
1789
  msgid "Lost your password"
1790
  msgstr ""
1791
 
1792
- #: ../front-end/login.php:70
1793
  msgid "Invalid username."
1794
  msgstr ""
1795
 
1796
- #: ../front-end/login.php:75
1797
  msgid "username"
1798
  msgstr ""
1799
 
1800
- #: ../front-end/login.php:75
1801
  msgid "email"
1802
  msgstr ""
1803
 
1804
- #: ../front-end/login.php:80
1805
  msgid "Both fields are empty."
1806
  msgstr ""
1807
 
1808
- #: ../front-end/login.php:173
 
 
 
 
1809
  #, php-format
1810
  msgid "You are currently logged in as %1$s. %2$s"
1811
  msgstr ""
1812
 
1813
- #: ../front-end/login.php:173
1814
  msgid "Log out of this account"
1815
  msgstr ""
1816
 
1817
- #: ../front-end/login.php:173
1818
  msgid "Log out"
1819
  msgstr ""
1820
 
@@ -1923,27 +1932,25 @@ msgstr ""
1923
  msgid "This username is now active!"
1924
  msgstr ""
1925
 
1926
- #: ../front-end/register.php:70
1927
  msgid "This username is already activated!"
1928
  msgstr ""
1929
 
1930
- #: ../front-end/register.php:92
1931
  msgid "Your email was successfully confirmed."
1932
  msgstr ""
1933
 
1934
- #: ../front-end/register.php:102
1935
  msgid "There was an error while trying to activate the user."
1936
  msgstr ""
1937
 
1938
- #: ../index.php:159
1939
- #, php-format
1940
  msgid ""
1941
- "<p style=\"position:relative;\">Halloween treat: 30&#37; OFF on all Profile "
1942
- "Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get "
1943
- "your discount code! %3$sDismiss%4$s</p>"
1944
  msgstr ""
1945
 
1946
- #: ../modules/class-mustache-templates/class-mustache-templates.php:239
1947
  msgid "Save"
1948
  msgstr ""
1949
 
@@ -2048,12 +2055,16 @@ msgid "Admin Email Customizer"
2048
  msgstr ""
2049
 
2050
  #: ../modules/email-customizer/admin-email-customizer.php:38
2051
- #: ../modules/email-customizer/user-email-customizer.php:38
2052
  msgid ""
2053
  "These settings are also replicated in the \"User Email Customizer\" settings-"
2054
  "page upon save."
2055
  msgstr ""
2056
 
 
 
 
 
 
2057
  #: ../modules/email-customizer/admin-email-customizer.php:41
2058
  #: ../modules/email-customizer/user-email-customizer.php:41
2059
  msgid "From (name)"
@@ -2064,6 +2075,13 @@ msgstr ""
2064
  msgid "From (reply-to email)"
2065
  msgstr ""
2066
 
 
 
 
 
 
 
 
2067
  #: ../modules/email-customizer/admin-email-customizer.php:57
2068
  #: ../modules/email-customizer/user-email-customizer.php:57
2069
  msgid "Common Settings"
@@ -2144,12 +2162,23 @@ msgstr ""
2144
  msgid "Activation Link"
2145
  msgstr ""
2146
 
 
 
 
 
 
2147
  #: ../modules/email-customizer/user-email-customizer.php:11
2148
  #: ../modules/email-customizer/user-email-customizer.php:12
2149
  #: ../modules/modules.php:125
2150
  msgid "User Email Customizer"
2151
  msgstr ""
2152
 
 
 
 
 
 
 
2153
  #: ../modules/email-customizer/user-email-customizer.php:64
2154
  msgid ""
2155
  "\n"
@@ -2286,31 +2315,31 @@ msgstr ""
2286
 
2287
  #: ../modules/multiple-forms/edit-profile-forms.php:135
2288
  #: ../modules/multiple-forms/register-forms.php:138
2289
- #: ../modules/user-listing/userlisting.php:1022
2290
  msgid "Shortcode"
2291
  msgstr ""
2292
 
2293
  #: ../modules/multiple-forms/edit-profile-forms.php:155
2294
  #: ../modules/multiple-forms/register-forms.php:159
2295
- #: ../modules/user-listing/userlisting.php:1043
2296
  msgid "(no title)"
2297
  msgstr ""
2298
 
2299
  #: ../modules/multiple-forms/edit-profile-forms.php:175
2300
  #: ../modules/multiple-forms/register-forms.php:178
2301
- #: ../modules/user-listing/userlisting.php:1063
2302
  msgid "The shortcode will be available after you publish this form."
2303
  msgstr ""
2304
 
2305
  #: ../modules/multiple-forms/edit-profile-forms.php:177
2306
  #: ../modules/multiple-forms/register-forms.php:180
2307
- #: ../modules/user-listing/userlisting.php:1065
2308
  msgid "Use this shortcode on the page you want the form to be displayed:"
2309
  msgstr ""
2310
 
2311
  #: ../modules/multiple-forms/edit-profile-forms.php:181
2312
  #: ../modules/multiple-forms/register-forms.php:184
2313
- #: ../modules/user-listing/userlisting.php:1069
2314
  msgid ""
2315
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
2316
  "the shortcode!"
@@ -2318,7 +2347,7 @@ msgstr ""
2318
 
2319
  #: ../modules/multiple-forms/edit-profile-forms.php:187
2320
  #: ../modules/multiple-forms/register-forms.php:190
2321
- #: ../modules/user-listing/userlisting.php:1083
2322
  msgid "Form Shortcode"
2323
  msgstr ""
2324
 
@@ -2357,14 +2386,26 @@ msgstr ""
2357
  msgid "Choose one of the supported fields you manage <a href=\""
2358
  msgstr ""
2359
 
2360
- #: ../modules/multiple-forms/edit-profile-forms.php:267
2361
- msgid "<pre>Title (Type)</pre>"
2362
  msgstr ""
2363
 
2364
  #: ../modules/multiple-forms/multiple-forms.php:233
2365
  msgid "You need to specify the title of the form before creating it"
2366
  msgstr ""
2367
 
 
 
 
 
 
 
 
 
 
 
 
 
2368
  #: ../modules/multiple-forms/register-forms.php:11
2369
  #: ../modules/multiple-forms/register-forms.php:12
2370
  msgid "Registration Form"
@@ -2443,11 +2484,11 @@ msgstr ""
2443
  msgid "After Registration..."
2444
  msgstr ""
2445
 
2446
- #: ../modules/user-listing/class-userlisting.php:454
2447
- #: ../modules/user-listing/userlisting.php:621
2448
- #: ../modules/user-listing/userlisting.php:835
2449
- #: ../modules/user-listing/userlisting.php:878
2450
- #: ../modules/user-listing/userlisting.php:1202
2451
  msgid "Search Users by All Fields"
2452
  msgstr ""
2453
 
@@ -2488,12 +2529,12 @@ msgid "Url"
2488
  msgstr ""
2489
 
2490
  #: ../modules/user-listing/userlisting.php:118
2491
- #: ../modules/user-listing/userlisting.php:1111
2492
  msgid "Registration Date"
2493
  msgstr ""
2494
 
2495
  #: ../modules/user-listing/userlisting.php:119
2496
- #: ../modules/user-listing/userlisting.php:1115
2497
  msgid "Number of Posts"
2498
  msgstr ""
2499
 
@@ -2559,7 +2600,7 @@ msgid "Sign-up Date"
2559
  msgstr ""
2560
 
2561
  #: ../modules/user-listing/userlisting.php:534
2562
- #: ../modules/user-listing/userlisting.php:1114
2563
  msgid "Display Name"
2564
  msgstr ""
2565
 
@@ -2568,177 +2609,177 @@ msgid "Posts"
2568
  msgstr ""
2569
 
2570
  #: ../modules/user-listing/userlisting.php:546
2571
- #: ../modules/user-listing/userlisting.php:1119
2572
  msgid "Aim"
2573
  msgstr ""
2574
 
2575
  #: ../modules/user-listing/userlisting.php:549
2576
- #: ../modules/user-listing/userlisting.php:1120
2577
  msgid "Yim"
2578
  msgstr ""
2579
 
2580
  #: ../modules/user-listing/userlisting.php:552
2581
- #: ../modules/user-listing/userlisting.php:1121
2582
  msgid "Jabber"
2583
  msgstr ""
2584
 
2585
- #: ../modules/user-listing/userlisting.php:698
2586
  msgid "Click here to see more information about this user"
2587
  msgstr ""
2588
 
2589
- #: ../modules/user-listing/userlisting.php:698
2590
  msgid "More..."
2591
  msgstr ""
2592
 
2593
- #: ../modules/user-listing/userlisting.php:701
2594
  msgid "Click here to see more information about this user."
2595
  msgstr ""
2596
 
2597
- #: ../modules/user-listing/userlisting.php:789
2598
- #: ../modules/user-listing/userlisting.php:792
2599
  msgid "Click here to go back"
2600
  msgstr ""
2601
 
2602
- #: ../modules/user-listing/userlisting.php:789
2603
  msgid "Back"
2604
  msgstr ""
2605
 
2606
- #: ../modules/user-listing/userlisting.php:822
2607
  msgid "&laquo;&laquo; First"
2608
  msgstr ""
2609
 
2610
- #: ../modules/user-listing/userlisting.php:823
2611
  msgid "&laquo; Prev"
2612
  msgstr ""
2613
 
2614
- #: ../modules/user-listing/userlisting.php:824
2615
  msgid "Next &raquo; "
2616
  msgstr ""
2617
 
2618
- #: ../modules/user-listing/userlisting.php:825
2619
  msgid "Last &raquo;&raquo;"
2620
  msgstr ""
2621
 
2622
- #: ../modules/user-listing/userlisting.php:854
2623
  msgid "You don't have any pagination settings on this userlisting!"
2624
  msgstr ""
2625
 
2626
- #: ../modules/user-listing/userlisting.php:895
2627
  msgid "Search"
2628
  msgstr ""
2629
 
2630
- #: ../modules/user-listing/userlisting.php:896
2631
  msgid "Clear Results"
2632
  msgstr ""
2633
 
2634
- #: ../modules/user-listing/userlisting.php:1072
2635
  msgid "Extra shortcode parameters"
2636
  msgstr ""
2637
 
2638
- #: ../modules/user-listing/userlisting.php:1074
2639
  msgid ""
2640
  "displays users having a certain meta-value within a certain (extra) meta-"
2641
  "field"
2642
  msgstr ""
2643
 
2644
- #: ../modules/user-listing/userlisting.php:1075
2645
  msgid "Example:"
2646
  msgstr ""
2647
 
2648
- #: ../modules/user-listing/userlisting.php:1077
2649
  msgid ""
2650
  "Remember though, that the field-value combination must exist in the database."
2651
  msgstr ""
2652
 
2653
- #: ../modules/user-listing/userlisting.php:1131
2654
  msgid "Random (very slow on large databases > 10K user)"
2655
  msgstr ""
2656
 
2657
- #: ../modules/user-listing/userlisting.php:1144
2658
  msgid "Roles to Display"
2659
  msgstr ""
2660
 
2661
- #: ../modules/user-listing/userlisting.php:1144
2662
  msgid ""
2663
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
2664
  "defaults to all existing roles"
2665
  msgstr ""
2666
 
2667
- #: ../modules/user-listing/userlisting.php:1145
2668
  msgid "Number of Users/Page"
2669
  msgstr ""
2670
 
2671
- #: ../modules/user-listing/userlisting.php:1145
2672
  msgid ""
2673
  "Set the number of users to be displayed on every paginated part of the all-"
2674
  "userlisting"
2675
  msgstr ""
2676
 
2677
- #: ../modules/user-listing/userlisting.php:1146
2678
  msgid "Default Sorting Criteria"
2679
  msgstr ""
2680
 
2681
- #: ../modules/user-listing/userlisting.php:1146
2682
  msgid ""
2683
  "Set the default sorting criteria<br/>This can temporarily be changed for "
2684
  "each new session"
2685
  msgstr ""
2686
 
2687
- #: ../modules/user-listing/userlisting.php:1147
2688
  msgid "Default Sorting Order"
2689
  msgstr ""
2690
 
2691
- #: ../modules/user-listing/userlisting.php:1147
2692
  msgid ""
2693
  "Set the default sorting order<br/>This can temporarily be changed for each "
2694
  "new session"
2695
  msgstr ""
2696
 
2697
- #: ../modules/user-listing/userlisting.php:1148
2698
  msgid "Avatar Size (All-userlisting)"
2699
  msgstr ""
2700
 
2701
- #: ../modules/user-listing/userlisting.php:1148
2702
  msgid "Set the avatar size on the all-userlisting only"
2703
  msgstr ""
2704
 
2705
- #: ../modules/user-listing/userlisting.php:1149
2706
  msgid "Avatar Size (Single-userlisting)"
2707
  msgstr ""
2708
 
2709
- #: ../modules/user-listing/userlisting.php:1149
2710
  msgid "Set the avatar size on the single-userlisting only"
2711
  msgstr ""
2712
 
2713
- #: ../modules/user-listing/userlisting.php:1150
2714
  msgid "Visible only to logged in users?"
2715
  msgstr ""
2716
 
2717
- #: ../modules/user-listing/userlisting.php:1150
2718
  msgid "The userlisting will only be visible only to the logged in users"
2719
  msgstr ""
2720
 
2721
- #: ../modules/user-listing/userlisting.php:1151
2722
  msgid "Visible to following Roles"
2723
  msgstr ""
2724
 
2725
- #: ../modules/user-listing/userlisting.php:1151
2726
  msgid "The userlisting will only be visible to the following roles"
2727
  msgstr ""
2728
 
2729
- #: ../modules/user-listing/userlisting.php:1157
2730
  msgid "Userlisting Settings"
2731
  msgstr ""
2732
 
2733
- #: ../modules/user-listing/userlisting.php:1178
2734
  msgid ""
2735
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2736
  msgstr ""
2737
 
2738
- #: ../modules/user-listing/userlisting.php:1178
2739
  msgid "You can find it in the Profile Builder menu."
2740
  msgstr ""
2741
 
2742
- #: ../modules/user-listing/userlisting.php:1328
2743
  msgid "No results found!"
2744
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: profilebuilder\n"
4
+ "POT-Creation-Date: 2014-11-17 15:27+0200\n"
5
+ "PO-Revision-Date: 2014-11-17 15:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Cozmoslabs\n"
8
  "Language: en\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x;_n\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #: ../admin/admin-bar.php:10
125
  msgid "For Modern User Interaction"
126
  msgstr ""
127
 
128
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
129
  msgid "Login"
130
  msgstr ""
131
 
384
  #: ../admin/general-settings.php:114
385
  #: ../modules/multiple-forms/register-forms.php:229
386
  #: ../modules/multiple-forms/register-forms.php:230
387
+ #: ../modules/user-listing/userlisting.php:1157
388
  msgid "Yes"
389
  msgstr ""
390
 
471
  #: ../modules/email-customizer/email-customizer.php:28
472
  #: ../modules/user-listing/userlisting.php:94
473
  #: ../modules/user-listing/userlisting.php:516
474
+ #: ../modules/user-listing/userlisting.php:1114
475
  msgid "Username"
476
  msgstr ""
477
 
478
+ #: ../admin/general-settings.php:145 ../front-end/login.php:144
479
  #: ../modules/email-customizer/email-customizer.php:29
480
  #: ../modules/user-listing/userlisting.php:522
481
+ #: ../modules/user-listing/userlisting.php:1115
482
  msgid "Email"
483
  msgstr ""
484
 
738
  msgid "Last Name"
739
  msgstr ""
740
 
741
+ #: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:555
742
  msgid "Nickname"
743
  msgstr ""
744
 
761
  #: ../modules/email-customizer/email-customizer.php:31
762
  #: ../modules/user-listing/userlisting.php:103
763
  #: ../modules/user-listing/userlisting.php:537
764
+ #: ../modules/user-listing/userlisting.php:1116
765
  msgid "Website"
766
  msgstr ""
767
 
783
 
784
  #: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
785
  #: ../modules/user-listing/userlisting.php:540
786
+ #: ../modules/user-listing/userlisting.php:1117
787
  msgid "Biographical Info"
788
  msgstr ""
789
 
810
  msgid "Type your password again. "
811
  msgstr ""
812
 
813
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
814
  msgid "You must select a field\n"
815
  msgstr ""
816
 
817
+ #: ../admin/manage-fields.php:318
818
  msgid ""
819
  "Please choose a different field type as this one already exists in your form "
820
  "(must be unique)\n"
821
  msgstr ""
822
 
823
+ #: ../admin/manage-fields.php:329
824
  msgid "The entered avatar size is not between 20 and 200\n"
825
  msgstr ""
826
 
827
+ #: ../admin/manage-fields.php:332
828
  msgid "The entered avatar size is not numerical\n"
829
  msgstr ""
830
 
831
+ #: ../admin/manage-fields.php:340
832
  msgid "The entered row number is not numerical\n"
833
  msgstr ""
834
 
835
+ #: ../admin/manage-fields.php:343
836
  msgid "You must enter a value for the row number\n"
837
  msgstr ""
838
 
839
+ #: ../admin/manage-fields.php:351
840
  msgid "You must enter the public key\n"
841
  msgstr ""
842
 
843
+ #: ../admin/manage-fields.php:353
844
  msgid "You must enter the private key\n"
845
  msgstr ""
846
 
847
+ #: ../admin/manage-fields.php:361
848
  msgid "The entered value for the Datepicker is not a valid date-format\n"
849
  msgstr ""
850
 
851
+ #: ../admin/manage-fields.php:364
852
  msgid "You must enter a value for the date-format\n"
853
  msgstr ""
854
 
855
+ #: ../admin/manage-fields.php:380
856
+ msgid "The meta-name cannot be empty\n"
857
+ msgstr ""
858
+
859
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
860
+ #: ../admin/manage-fields.php:410
861
  msgid "That meta-name is already in use\n"
862
  msgstr ""
863
 
864
+ #: ../admin/manage-fields.php:432
865
  #, php-format
866
  msgid ""
867
  "The following option(s) did not coincide with the ones in the options list: "
868
  "%s\n"
869
  msgstr ""
870
 
871
+ #: ../admin/manage-fields.php:436
872
  #, php-format
873
  msgid ""
874
  "The following option did not coincide with the ones in the options list: %s\n"
875
  msgstr ""
876
 
877
+ #: ../admin/manage-fields.php:451
878
  msgid "That field is already added in this form\n"
879
  msgstr ""
880
 
881
+ #: ../admin/manage-fields.php:500
882
  msgid ""
883
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
884
  "required\">Required</pre>"
885
  msgstr ""
886
 
887
+ #: ../admin/manage-fields.php:500
888
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
889
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
890
  #: ../features/functions.php:590 ../features/functions.php:597
891
+ #: ../modules/multiple-forms/multiple-forms.php:407
892
  msgid "Edit"
893
  msgstr ""
894
 
895
+ #: ../admin/manage-fields.php:500
896
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
897
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
898
  #: ../features/admin-approval/class-admin-approval.php:124
899
  #: ../features/admin-approval/class-admin-approval.php:235
900
  #: ../features/email-confirmation/class-email-confirmation.php:106
901
  #: ../features/email-confirmation/class-email-confirmation.php:202
902
  #: ../features/functions.php:583 ../features/functions.php:597
 
903
  msgid "Delete"
904
  msgstr ""
905
 
906
+ #: ../admin/manage-fields.php:515
907
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
908
  msgstr ""
909
 
910
+ #: ../admin/manage-fields.php:521
911
  msgid ""
912
  "If you're interested in displaying different fields in the registration and "
913
  "edit profile forms, please use the Multiple Registration & Edit Profile "
961
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
962
  msgstr ""
963
 
964
+ #: ../admin/register-version.php:219
965
  #, php-format
966
  msgid ""
967
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
968
+ "missing. <br/>Please %1$sregister your copy%2$s to receive access to "
969
+ "automatic updates and support. Need a license key? %3$sPurchase one now%4$s</"
970
+ "p>"
971
  msgstr ""
972
 
973
+ #: ../admin/register-version.php:222
974
  #, php-format
975
  msgid ""
976
+ "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
977
+ "%1$sRenew Your Licence%2$s to continue receiving access to product "
978
+ "downloads, automatic updates and support. %3$sRenew now and get 50&#37; off "
979
+ "%4$s %5$sDismiss%6$s</p>"
980
  msgstr ""
981
 
982
+ #: ../admin/register-version.php:227
983
  #, php-format
984
  msgid ""
985
+ "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
986
+ "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
987
+ "product downloads, automatic updates and support. %3$sRenew now and get "
988
+ "50&#37; off %4$s %6$sDismiss%7$s</p>"
989
  msgstr ""
990
 
991
  #: ../assets/lib/wck-api/fields/country select.php:14
1009
  msgid "Upload "
1010
  msgstr ""
1011
 
1012
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
1013
  #: ../features/functions.php:597
1014
  msgid "Content"
1015
  msgstr ""
1016
 
1017
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
1018
  msgid "Edit this item"
1019
  msgstr ""
1020
 
1021
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
1022
  msgid "Delete this item"
1023
  msgstr ""
1024
 
1025
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
1026
  msgid "Please enter a value for the required field "
1027
  msgstr ""
1028
 
1029
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
1030
  msgid "Select File"
1031
  msgstr ""
1032
 
1156
 
1157
  #: ../features/admin-approval/class-admin-approval.php:178
1158
  #: ../modules/user-listing/userlisting.php:528
1159
+ #: ../modules/user-listing/userlisting.php:1119
1160
  msgid "Firstname"
1161
  msgstr ""
1162
 
1163
  #: ../features/admin-approval/class-admin-approval.php:179
1164
  #: ../modules/user-listing/userlisting.php:531
1165
+ #: ../modules/user-listing/userlisting.php:1120
1166
  msgid "Lastname"
1167
  msgstr ""
1168
 
1328
  "After you activate it you will receive yet *another email* with your login."
1329
  msgstr ""
1330
 
1331
+ #: ../features/email-confirmation/email-confirmation.php:388
1332
+ #: ../front-end/register.php:68
1333
  msgid "Could not create user!"
1334
  msgstr ""
1335
 
1336
+ #: ../features/email-confirmation/email-confirmation.php:391
1337
  msgid "That username is already activated!"
1338
  msgstr ""
1339
 
1340
+ #: ../features/email-confirmation/email-confirmation.php:420
1341
  msgid "There was an error while trying to activate the user"
1342
  msgstr ""
1343
 
1344
+ #: ../features/email-confirmation/email-confirmation.php:458
1345
  #: ../modules/email-customizer/admin-email-customizer.php:73
1346
  msgid "A new subscriber has (been) registered!"
1347
  msgstr ""
1348
 
1349
+ #: ../features/email-confirmation/email-confirmation.php:461
1350
  #, php-format
1351
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1352
  msgstr ""
1353
 
1354
+ #: ../features/email-confirmation/email-confirmation.php:466
1355
  msgid ""
1356
  "The \"Admin Approval\" feature was activated at the time of registration, so "
1357
  "please remember that you need to approve this user before he/she can log in!"
1358
  msgstr ""
1359
 
1360
+ #: ../features/email-confirmation/email-confirmation.php:481
1361
  #, php-format
1362
  msgid "[%1$s] Your new account information"
1363
  msgstr ""
1364
 
1365
+ #: ../features/email-confirmation/email-confirmation.php:484
1366
  #, php-format
1367
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1368
  msgstr ""
1369
 
1370
+ #: ../features/email-confirmation/email-confirmation.php:489
1371
+ #: ../front-end/register.php:103
1372
  msgid ""
1373
  "Before you can access your account, an administrator needs to approve it. "
1374
  "You will be notified via email."
1398
  msgid "Minimum length of "
1399
  msgstr ""
1400
 
1401
+ #: ../features/functions.php:556
1402
+ msgid "This field is required"
1403
+ msgstr ""
1404
+
1405
  #: ../features/functions.php:576
1406
  msgid "Cancel"
1407
  msgstr ""
1408
 
1409
+ #: ../features/functions.php:607
1410
+ #, php-format
1411
+ msgid ""
1412
+ "To allow users to register for your website via Profile Builder, you first "
1413
+ "must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
1414
+ "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
1415
+ msgstr ""
1416
+
1417
  #: ../features/login-widget/login-widget.php:10
1418
  msgid "This login widget lets you add a login form in the sidebar."
1419
  msgstr ""
1422
  msgid "Profile Builder Login Widget"
1423
  msgstr ""
1424
 
1425
+ #: ../features/login-widget/login-widget.php:63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1426
  msgid "Title:"
1427
  msgstr ""
1428
 
1429
+ #: ../features/login-widget/login-widget.php:68
1430
  msgid "After login redirect URL (optional):"
1431
  msgstr ""
1432
 
1433
+ #: ../features/login-widget/login-widget.php:73
1434
  msgid "Register page URL (optional):"
1435
  msgstr ""
1436
 
1437
+ #: ../features/login-widget/login-widget.php:78
1438
  msgid "Password Recovery page URL (optional):"
1439
  msgstr ""
1440
 
1517
  msgid "Add User"
1518
  msgstr ""
1519
 
1520
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1521
+ msgid "Register"
1522
+ msgstr ""
1523
+
1524
  #: ../front-end/class-formbuilder.php:277
1525
  msgid "Update"
1526
  msgstr ""
1693
  msgid "Unknown error occurred"
1694
  msgstr ""
1695
 
1696
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1697
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1698
  #: ../front-end/recover.php:17 ../front-end/recover.php:206
1699
  msgid "ERROR"
1700
  msgstr ""
1782
  msgid "This field wasn't updated because an unknown error occured"
1783
  msgstr ""
1784
 
1785
+ #: ../front-end/login.php:72
1786
  msgid "The password you entered is incorrect."
1787
  msgstr ""
1788
 
1789
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1790
  msgid "Password Lost and Found."
1791
  msgstr ""
1792
 
1793
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1794
  msgid "Lost your password"
1795
  msgstr ""
1796
 
1797
+ #: ../front-end/login.php:79
1798
  msgid "Invalid username."
1799
  msgstr ""
1800
 
1801
+ #: ../front-end/login.php:84
1802
  msgid "username"
1803
  msgstr ""
1804
 
1805
+ #: ../front-end/login.php:84
1806
  msgid "email"
1807
  msgstr ""
1808
 
1809
+ #: ../front-end/login.php:89
1810
  msgid "Both fields are empty."
1811
  msgstr ""
1812
 
1813
+ #: ../front-end/login.php:178
1814
+ msgid "Lost your password?"
1815
+ msgstr ""
1816
+
1817
+ #: ../front-end/login.php:199
1818
  #, php-format
1819
  msgid "You are currently logged in as %1$s. %2$s"
1820
  msgstr ""
1821
 
1822
+ #: ../front-end/login.php:199
1823
  msgid "Log out of this account"
1824
  msgstr ""
1825
 
1826
+ #: ../front-end/login.php:199
1827
  msgid "Log out"
1828
  msgstr ""
1829
 
1932
  msgid "This username is now active!"
1933
  msgstr ""
1934
 
1935
+ #: ../front-end/register.php:71
1936
  msgid "This username is already activated!"
1937
  msgstr ""
1938
 
1939
+ #: ../front-end/register.php:102
1940
  msgid "Your email was successfully confirmed."
1941
  msgstr ""
1942
 
1943
+ #: ../front-end/register.php:112
1944
  msgid "There was an error while trying to activate the user."
1945
  msgstr ""
1946
 
1947
+ #: ../index.php:34
 
1948
  msgid ""
1949
+ " is also activated. You need to deactivate it before activating this version "
1950
+ "of the plugin."
 
1951
  msgstr ""
1952
 
1953
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1954
  msgid "Save"
1955
  msgstr ""
1956
 
2055
  msgstr ""
2056
 
2057
  #: ../modules/email-customizer/admin-email-customizer.php:38
 
2058
  msgid ""
2059
  "These settings are also replicated in the \"User Email Customizer\" settings-"
2060
  "page upon save."
2061
  msgstr ""
2062
 
2063
+ #: ../modules/email-customizer/admin-email-customizer.php:38
2064
+ #: ../modules/email-customizer/user-email-customizer.php:38
2065
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
2066
+ msgstr ""
2067
+
2068
  #: ../modules/email-customizer/admin-email-customizer.php:41
2069
  #: ../modules/email-customizer/user-email-customizer.php:41
2070
  msgid "From (name)"
2075
  msgid "From (reply-to email)"
2076
  msgstr ""
2077
 
2078
+ #: ../modules/email-customizer/admin-email-customizer.php:54
2079
+ #: ../modules/email-customizer/user-email-customizer.php:54
2080
+ msgid ""
2081
+ "Must be a valid email address or the tag {{reply_to}} which defaults to the "
2082
+ "administrator email"
2083
+ msgstr ""
2084
+
2085
  #: ../modules/email-customizer/admin-email-customizer.php:57
2086
  #: ../modules/email-customizer/user-email-customizer.php:57
2087
  msgid "Common Settings"
2162
  msgid "Activation Link"
2163
  msgstr ""
2164
 
2165
+ #: ../modules/email-customizer/email-customizer.php:265
2166
+ #: ../modules/email-customizer/email-customizer.php:272
2167
+ msgid "Your selected password at signup"
2168
+ msgstr ""
2169
+
2170
  #: ../modules/email-customizer/user-email-customizer.php:11
2171
  #: ../modules/email-customizer/user-email-customizer.php:12
2172
  #: ../modules/modules.php:125
2173
  msgid "User Email Customizer"
2174
  msgstr ""
2175
 
2176
+ #: ../modules/email-customizer/user-email-customizer.php:38
2177
+ msgid ""
2178
+ "These settings are also replicated in the \"Admin Email Customizer\" "
2179
+ "settings-page upon save."
2180
+ msgstr ""
2181
+
2182
  #: ../modules/email-customizer/user-email-customizer.php:64
2183
  msgid ""
2184
  "\n"
2315
 
2316
  #: ../modules/multiple-forms/edit-profile-forms.php:135
2317
  #: ../modules/multiple-forms/register-forms.php:138
2318
+ #: ../modules/user-listing/userlisting.php:1029
2319
  msgid "Shortcode"
2320
  msgstr ""
2321
 
2322
  #: ../modules/multiple-forms/edit-profile-forms.php:155
2323
  #: ../modules/multiple-forms/register-forms.php:159
2324
+ #: ../modules/user-listing/userlisting.php:1050
2325
  msgid "(no title)"
2326
  msgstr ""
2327
 
2328
  #: ../modules/multiple-forms/edit-profile-forms.php:175
2329
  #: ../modules/multiple-forms/register-forms.php:178
2330
+ #: ../modules/user-listing/userlisting.php:1070
2331
  msgid "The shortcode will be available after you publish this form."
2332
  msgstr ""
2333
 
2334
  #: ../modules/multiple-forms/edit-profile-forms.php:177
2335
  #: ../modules/multiple-forms/register-forms.php:180
2336
+ #: ../modules/user-listing/userlisting.php:1072
2337
  msgid "Use this shortcode on the page you want the form to be displayed:"
2338
  msgstr ""
2339
 
2340
  #: ../modules/multiple-forms/edit-profile-forms.php:181
2341
  #: ../modules/multiple-forms/register-forms.php:184
2342
+ #: ../modules/user-listing/userlisting.php:1076
2343
  msgid ""
2344
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
2345
  "the shortcode!"
2347
 
2348
  #: ../modules/multiple-forms/edit-profile-forms.php:187
2349
  #: ../modules/multiple-forms/register-forms.php:190
2350
+ #: ../modules/user-listing/userlisting.php:1090
2351
  msgid "Form Shortcode"
2352
  msgstr ""
2353
 
2386
  msgid "Choose one of the supported fields you manage <a href=\""
2387
  msgstr ""
2388
 
2389
+ #: ../modules/multiple-forms/edit-profile-forms.php:272
2390
+ msgid "This form is empty."
2391
  msgstr ""
2392
 
2393
  #: ../modules/multiple-forms/multiple-forms.php:233
2394
  msgid "You need to specify the title of the form before creating it"
2395
  msgstr ""
2396
 
2397
+ #: ../modules/multiple-forms/multiple-forms.php:407
2398
+ msgid "<pre>Title (Type)</pre>"
2399
+ msgstr ""
2400
+
2401
+ #: ../modules/multiple-forms/multiple-forms.php:407
2402
+ msgid "Delete all items"
2403
+ msgstr ""
2404
+
2405
+ #: ../modules/multiple-forms/multiple-forms.php:407
2406
+ msgid "Delete all"
2407
+ msgstr ""
2408
+
2409
  #: ../modules/multiple-forms/register-forms.php:11
2410
  #: ../modules/multiple-forms/register-forms.php:12
2411
  msgid "Registration Form"
2484
  msgid "After Registration..."
2485
  msgstr ""
2486
 
2487
+ #: ../modules/user-listing/class-userlisting.php:458
2488
+ #: ../modules/user-listing/userlisting.php:624
2489
+ #: ../modules/user-listing/userlisting.php:842
2490
+ #: ../modules/user-listing/userlisting.php:885
2491
+ #: ../modules/user-listing/userlisting.php:1209
2492
  msgid "Search Users by All Fields"
2493
  msgstr ""
2494
 
2529
  msgstr ""
2530
 
2531
  #: ../modules/user-listing/userlisting.php:118
2532
+ #: ../modules/user-listing/userlisting.php:1118
2533
  msgid "Registration Date"
2534
  msgstr ""
2535
 
2536
  #: ../modules/user-listing/userlisting.php:119
2537
+ #: ../modules/user-listing/userlisting.php:1122
2538
  msgid "Number of Posts"
2539
  msgstr ""
2540
 
2600
  msgstr ""
2601
 
2602
  #: ../modules/user-listing/userlisting.php:534
2603
+ #: ../modules/user-listing/userlisting.php:1121
2604
  msgid "Display Name"
2605
  msgstr ""
2606
 
2609
  msgstr ""
2610
 
2611
  #: ../modules/user-listing/userlisting.php:546
2612
+ #: ../modules/user-listing/userlisting.php:1126
2613
  msgid "Aim"
2614
  msgstr ""
2615
 
2616
  #: ../modules/user-listing/userlisting.php:549
2617
+ #: ../modules/user-listing/userlisting.php:1127
2618
  msgid "Yim"
2619
  msgstr ""
2620
 
2621
  #: ../modules/user-listing/userlisting.php:552
2622
+ #: ../modules/user-listing/userlisting.php:1128
2623
  msgid "Jabber"
2624
  msgstr ""
2625
 
2626
+ #: ../modules/user-listing/userlisting.php:701
2627
  msgid "Click here to see more information about this user"
2628
  msgstr ""
2629
 
2630
+ #: ../modules/user-listing/userlisting.php:701
2631
  msgid "More..."
2632
  msgstr ""
2633
 
2634
+ #: ../modules/user-listing/userlisting.php:704
2635
  msgid "Click here to see more information about this user."
2636
  msgstr ""
2637
 
2638
+ #: ../modules/user-listing/userlisting.php:796
2639
+ #: ../modules/user-listing/userlisting.php:799
2640
  msgid "Click here to go back"
2641
  msgstr ""
2642
 
2643
+ #: ../modules/user-listing/userlisting.php:796
2644
  msgid "Back"
2645
  msgstr ""
2646
 
2647
+ #: ../modules/user-listing/userlisting.php:829
2648
  msgid "&laquo;&laquo; First"
2649
  msgstr ""
2650
 
2651
+ #: ../modules/user-listing/userlisting.php:830
2652
  msgid "&laquo; Prev"
2653
  msgstr ""
2654
 
2655
+ #: ../modules/user-listing/userlisting.php:831
2656
  msgid "Next &raquo; "
2657
  msgstr ""
2658
 
2659
+ #: ../modules/user-listing/userlisting.php:832
2660
  msgid "Last &raquo;&raquo;"
2661
  msgstr ""
2662
 
2663
+ #: ../modules/user-listing/userlisting.php:861
2664
  msgid "You don't have any pagination settings on this userlisting!"
2665
  msgstr ""
2666
 
2667
+ #: ../modules/user-listing/userlisting.php:902
2668
  msgid "Search"
2669
  msgstr ""
2670
 
2671
+ #: ../modules/user-listing/userlisting.php:903
2672
  msgid "Clear Results"
2673
  msgstr ""
2674
 
2675
+ #: ../modules/user-listing/userlisting.php:1079
2676
  msgid "Extra shortcode parameters"
2677
  msgstr ""
2678
 
2679
+ #: ../modules/user-listing/userlisting.php:1081
2680
  msgid ""
2681
  "displays users having a certain meta-value within a certain (extra) meta-"
2682
  "field"
2683
  msgstr ""
2684
 
2685
+ #: ../modules/user-listing/userlisting.php:1082
2686
  msgid "Example:"
2687
  msgstr ""
2688
 
2689
+ #: ../modules/user-listing/userlisting.php:1084
2690
  msgid ""
2691
  "Remember though, that the field-value combination must exist in the database."
2692
  msgstr ""
2693
 
2694
+ #: ../modules/user-listing/userlisting.php:1138
2695
  msgid "Random (very slow on large databases > 10K user)"
2696
  msgstr ""
2697
 
2698
+ #: ../modules/user-listing/userlisting.php:1151
2699
  msgid "Roles to Display"
2700
  msgstr ""
2701
 
2702
+ #: ../modules/user-listing/userlisting.php:1151
2703
  msgid ""
2704
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
2705
  "defaults to all existing roles"
2706
  msgstr ""
2707
 
2708
+ #: ../modules/user-listing/userlisting.php:1152
2709
  msgid "Number of Users/Page"
2710
  msgstr ""
2711
 
2712
+ #: ../modules/user-listing/userlisting.php:1152
2713
  msgid ""
2714
  "Set the number of users to be displayed on every paginated part of the all-"
2715
  "userlisting"
2716
  msgstr ""
2717
 
2718
+ #: ../modules/user-listing/userlisting.php:1153
2719
  msgid "Default Sorting Criteria"
2720
  msgstr ""
2721
 
2722
+ #: ../modules/user-listing/userlisting.php:1153
2723
  msgid ""
2724
  "Set the default sorting criteria<br/>This can temporarily be changed for "
2725
  "each new session"
2726
  msgstr ""
2727
 
2728
+ #: ../modules/user-listing/userlisting.php:1154
2729
  msgid "Default Sorting Order"
2730
  msgstr ""
2731
 
2732
+ #: ../modules/user-listing/userlisting.php:1154
2733
  msgid ""
2734
  "Set the default sorting order<br/>This can temporarily be changed for each "
2735
  "new session"
2736
  msgstr ""
2737
 
2738
+ #: ../modules/user-listing/userlisting.php:1155
2739
  msgid "Avatar Size (All-userlisting)"
2740
  msgstr ""
2741
 
2742
+ #: ../modules/user-listing/userlisting.php:1155
2743
  msgid "Set the avatar size on the all-userlisting only"
2744
  msgstr ""
2745
 
2746
+ #: ../modules/user-listing/userlisting.php:1156
2747
  msgid "Avatar Size (Single-userlisting)"
2748
  msgstr ""
2749
 
2750
+ #: ../modules/user-listing/userlisting.php:1156
2751
  msgid "Set the avatar size on the single-userlisting only"
2752
  msgstr ""
2753
 
2754
+ #: ../modules/user-listing/userlisting.php:1157
2755
  msgid "Visible only to logged in users?"
2756
  msgstr ""
2757
 
2758
+ #: ../modules/user-listing/userlisting.php:1157
2759
  msgid "The userlisting will only be visible only to the logged in users"
2760
  msgstr ""
2761
 
2762
+ #: ../modules/user-listing/userlisting.php:1158
2763
  msgid "Visible to following Roles"
2764
  msgstr ""
2765
 
2766
+ #: ../modules/user-listing/userlisting.php:1158
2767
  msgid "The userlisting will only be visible to the following roles"
2768
  msgstr ""
2769
 
2770
+ #: ../modules/user-listing/userlisting.php:1164
2771
  msgid "Userlisting Settings"
2772
  msgstr ""
2773
 
2774
+ #: ../modules/user-listing/userlisting.php:1185
2775
  msgid ""
2776
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2777
  msgstr ""
2778
 
2779
+ #: ../modules/user-listing/userlisting.php:1185
2780
  msgid "You can find it in the Profile Builder menu."
2781
  msgstr ""
2782
 
2783
+ #: ../modules/user-listing/userlisting.php:1335
2784
  msgid "No results found!"
2785
  msgstr ""