User registration & user profile – Profile Builder - Version 2.6.7

Version Description

  • Added option in backend user new/edit screen to add multiple user roles when user roles module is active
  • Added user role multiple select for admin in front-end edit profile form when roles editor is active and select role field is in the form
  • Changed password reset success email
Download this release

Release Info

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

Code changes from version 2.6.6 to 2.6.7

features/email-confirmation/email-confirmation.php CHANGED
@@ -214,6 +214,12 @@ function wppb_add_meta_to_user_on_activation( $user_id, $password, $meta ){
214
  if( !empty( $meta[$value['meta-name']] ) ) {
215
  if (is_numeric($meta[$value['meta-name']])) {
216
  update_user_meta($user_id, $value['meta-name'], trim($meta[$value['meta-name']]));
 
 
 
 
 
 
217
  } else {
218
  $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
219
 
214
  if( !empty( $meta[$value['meta-name']] ) ) {
215
  if (is_numeric($meta[$value['meta-name']])) {
216
  update_user_meta($user_id, $value['meta-name'], trim($meta[$value['meta-name']]));
217
+
218
+ // use this to update the post author to the correct user
219
+ wp_update_post( array(
220
+ 'ID' => trim( $meta[$value['meta-name']] ),
221
+ 'post_author' => $user_id
222
+ ) );
223
  } else {
224
  $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
225
 
features/functions.php CHANGED
@@ -336,7 +336,7 @@ function wppb_changeDefaultAvatar( $avatar, $id_or_email, $size, $default, $alt
336
 
337
  if ( !empty( $avatar_field ) ){
338
 
339
- $customUserAvatar = get_user_meta( $my_user_id, $avatar_field['meta-name'], true );
340
  if( !empty( $customUserAvatar ) ){
341
  if( is_numeric( $customUserAvatar ) ){
342
  $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'wppb-avatar-size-'.$size );
@@ -423,7 +423,7 @@ function wppb_resize_avatar( $userID, $userlisting_size = null, $userlisting_cro
423
 
424
  $image = wp_get_image_editor( $avatar_directory_path );
425
  if ( !is_wp_error( $image ) ) {
426
- do_action( 'wppb_before_avatar_resizing', $image, $userID, $avatar_field['meta-name'], $avatar_field['avatar-size'] );
427
 
428
  $crop = apply_filters( 'wppb_avatar_crop_resize', ( !empty( $userlisting_crop ) ? $userlisting_crop : false ) );
429
 
336
 
337
  if ( !empty( $avatar_field ) ){
338
 
339
+ $customUserAvatar = get_user_meta( $my_user_id, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), true );
340
  if( !empty( $customUserAvatar ) ){
341
  if( is_numeric( $customUserAvatar ) ){
342
  $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'wppb-avatar-size-'.$size );
423
 
424
  $image = wp_get_image_editor( $avatar_directory_path );
425
  if ( !is_wp_error( $image ) ) {
426
+ do_action( 'wppb_before_avatar_resizing', $image, $userID, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), $avatar_field['avatar-size'] );
427
 
428
  $crop = apply_filters( 'wppb_avatar_crop_resize', ( !empty( $userlisting_crop ) ? $userlisting_crop : false ) );
429
 
features/roles-editor/roles-editor.php CHANGED
@@ -43,6 +43,10 @@ class WPPB_Roles_Editor {
43
  add_filter( 'enter_title_here', array( $this, 'change_title_text' ) );
44
  add_filter( 'post_updated_messages', array( $this, 'change_post_updated_messages' ) );
45
 
 
 
 
 
46
  }
47
 
48
  function scripts_admin() {
@@ -1045,6 +1049,219 @@ class WPPB_Roles_Editor {
1045
 
1046
  }
1047
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1048
  }
1049
 
1050
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
43
  add_filter( 'enter_title_here', array( $this, 'change_title_text' ) );
44
  add_filter( 'post_updated_messages', array( $this, 'change_post_updated_messages' ) );
45
 
46
+ // Add multiple roles checkbox to back-end Add / Edit User (as admin)
47
+ add_action( 'load-user-new.php', array( $this, 'actions_on_user_new' ) );
48
+ add_action( 'load-user-edit.php', array( $this, 'actions_on_user_edit' ) );
49
+
50
  }
51
 
52
  function scripts_admin() {
1049
 
1050
  }
1051
 
1052
+ // Add actions on Add User back-end page
1053
+ function actions_on_user_new() {
1054
+
1055
+ $this->scripts_and_styles_actions( 'user_new' );
1056
+
1057
+ add_action( 'user_new_form', array( $this, 'roles_field_user_new' ) );
1058
+
1059
+ add_action( 'user_register', array( $this, 'roles_update_user_new' ) );
1060
+
1061
+ }
1062
+
1063
+ // Add actions on Edit User back-end page
1064
+ function actions_on_user_edit() {
1065
+
1066
+ $this->scripts_and_styles_actions( 'user_edit' );
1067
+
1068
+ add_action( 'personal_options', array( $this, 'roles_field_user_edit' ) );
1069
+
1070
+ add_action( 'profile_update', array( $this, 'roles_update_user_edit' ), 10, 2 );
1071
+
1072
+ }
1073
+
1074
+ // Roles Edit checkboxes for Add User back-end page
1075
+ function roles_field_user_new() {
1076
+
1077
+ if( ! current_user_can( 'promote_users' ) ) {
1078
+ return;
1079
+ }
1080
+
1081
+ $user_roles = apply_filters( 'wppb_default_user_roles', array( get_option( 'default_role' ) ) );
1082
+
1083
+ if( isset( $_POST['createuser'] ) && ! empty( $_POST['wppb_re_user_roles'] ) ) {
1084
+ $user_roles = array_map( array( $this, 'sanitize_role' ), $_POST['wppb_re_user_roles'] );
1085
+ }
1086
+
1087
+ wp_nonce_field( 'new_user_roles', 'wppb_re_new_user_roles_nonce' );
1088
+
1089
+ $this->roles_field_display( $user_roles );
1090
+
1091
+ }
1092
+
1093
+ // Roles Edit checkboxes for Edit User back-end page
1094
+ function roles_field_user_edit( $user ) {
1095
+
1096
+ if( ! current_user_can( 'promote_users' ) || ! current_user_can( 'edit_user', $user->ID ) ) {
1097
+ return;
1098
+ }
1099
+
1100
+ $user_roles = (array) $user->roles;
1101
+
1102
+ wp_nonce_field( 'new_user_roles', 'wppb_re_new_user_roles_nonce' );
1103
+
1104
+ $this->roles_field_display( $user_roles );
1105
+
1106
+ }
1107
+
1108
+ // Output roles edit checkboxes
1109
+ function roles_field_display( $user_roles ) {
1110
+
1111
+ global $wp_roles;
1112
+
1113
+ ?>
1114
+ <table class="form-table">
1115
+ <tr class="wppb-re-edit-user">
1116
+ <th><?php esc_html_e( 'Edit User Roles', 'profile-builder' ); ?></th>
1117
+
1118
+ <td>
1119
+ <div>
1120
+ <ul style="margin: 5px 0;">
1121
+ <?php foreach( $wp_roles->role_names as $role_slug => $role_display_name ) { ?>
1122
+ <li>
1123
+ <label>
1124
+ <input type="checkbox" name="wppb_re_user_roles[]" value="<?php echo esc_attr( $role_slug ); ?>" <?php checked( in_array( $role_slug, $user_roles ) ); ?> />
1125
+ <?php echo esc_html( $role_display_name ); ?>
1126
+ </label>
1127
+ </li>
1128
+ <?php } ?>
1129
+ </ul>
1130
+ </div>
1131
+ </td>
1132
+ </tr>
1133
+ </table>
1134
+
1135
+ <?php
1136
+ }
1137
+
1138
+ function roles_update_user_edit( $user_id, $old_user_data ) {
1139
+
1140
+ if( ! current_user_can( 'promote_users' ) || ! current_user_can( 'edit_user', $user_id ) ) {
1141
+ return;
1142
+ }
1143
+
1144
+ if( ! isset( $_POST['wppb_re_new_user_roles_nonce'] ) || ! wp_verify_nonce( $_POST['wppb_re_new_user_roles_nonce'], 'new_user_roles' ) ) {
1145
+ return;
1146
+ }
1147
+
1148
+ $this->roles_update_user_new_and_edit( $old_user_data );
1149
+
1150
+ }
1151
+
1152
+ function roles_update_user_new( $user_id ) {
1153
+
1154
+ if( ! current_user_can( 'promote_users' ) ) {
1155
+ return;
1156
+ }
1157
+
1158
+ if( ! isset( $_POST['wppb_re_new_user_roles_nonce'] ) || ! wp_verify_nonce( $_POST['wppb_re_new_user_roles_nonce'], 'new_user_roles' ) ) {
1159
+ return;
1160
+ }
1161
+
1162
+ $user = new \WP_User( $user_id );
1163
+
1164
+ $this->roles_update_user_new_and_edit( $user );
1165
+
1166
+ }
1167
+
1168
+ function roles_update_user_new_and_edit( $user ) {
1169
+
1170
+ if( ! empty( $_POST['wppb_re_user_roles'] ) ) {
1171
+
1172
+ $old_roles = (array) $user->roles;
1173
+
1174
+ $new_roles = array_map( array( $this, 'sanitize_role' ), $_POST['wppb_re_user_roles'] );
1175
+
1176
+ foreach( $new_roles as $new_role ) {
1177
+ if( ! in_array( $new_role, (array) $user->roles ) ) {
1178
+ $user->add_role( $new_role );
1179
+ }
1180
+ }
1181
+
1182
+ foreach( $old_roles as $old_role ) {
1183
+ if( ! in_array( $old_role, $new_roles ) ) {
1184
+ $user->remove_role( $old_role );
1185
+ }
1186
+ }
1187
+ } else {
1188
+ foreach( (array) $user->roles as $old_role ) {
1189
+ $user->remove_role( $old_role );
1190
+ }
1191
+ }
1192
+
1193
+ }
1194
+
1195
+ function scripts_and_styles_actions( $location ) {
1196
+
1197
+ // Enqueue jQuery on both Add User and Edit User back-end pages
1198
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_jquery' ) );
1199
+
1200
+ // Actions for Add User back-end page
1201
+ if( $location == 'user_new' ) {
1202
+ add_action( 'admin_footer', array( $this, 'print_scripts_user_new' ), 25 );
1203
+ }
1204
+
1205
+ // Actions for Edit User back-end page
1206
+ if( $location == 'user_edit' ) {
1207
+ add_action( 'admin_head', array( $this, 'print_styles_user_edit' ) );
1208
+ add_action( 'admin_footer', array( $this, 'print_scripts_user_edit' ), 25 );
1209
+ }
1210
+
1211
+ }
1212
+
1213
+ // Enqueue jQuery where needed (use action)
1214
+ function enqueue_jquery() {
1215
+
1216
+ wp_enqueue_script( 'jquery' );
1217
+
1218
+ }
1219
+
1220
+ // Print scripts on Add User back-end page
1221
+ function print_scripts_user_new() {
1222
+
1223
+ ?>
1224
+ <script>
1225
+ jQuery( document ).ready( function() {
1226
+ // Remove WordPress default Role Select
1227
+ var roles_dropdown = jQuery( 'select#role' );
1228
+ roles_dropdown.closest( 'tr' ).remove();
1229
+ } );
1230
+ </script>
1231
+
1232
+ <?php
1233
+ }
1234
+
1235
+ // Print scripts on Edit User back-end page
1236
+ function print_scripts_user_edit() {
1237
+
1238
+ ?>
1239
+ <script>
1240
+ jQuery( document ).ready(
1241
+ // Remove WordPress default Role Select
1242
+ function() {
1243
+ jQuery( '.user-role-wrap' ).remove();
1244
+ }
1245
+ );
1246
+ </script>
1247
+
1248
+ <?php
1249
+ }
1250
+
1251
+ // Print scripts on Edit User back-end page
1252
+ function print_styles_user_edit() {
1253
+
1254
+ ?>
1255
+ <style type="text/css">
1256
+ /* Hide WordPress default Role Select */
1257
+ .user-role-wrap {
1258
+ display: none !important;
1259
+ }
1260
+ </style>
1261
+
1262
+ <?php
1263
+ }
1264
+
1265
  }
1266
 
1267
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
front-end/class-formbuilder.php CHANGED
@@ -272,9 +272,9 @@ class Profile_Builder_Form_Creator{
272
  $form_message_tpl_start = apply_filters( 'wppb_form_message_tpl_start', '<p class="alert" id="wppb_form_success_message">' );
273
  $form_message_tpl_end = apply_filters( 'wppb_form_message_tpl_end', '</p>' );
274
 
275
- if( isset( $_POST['custom_field_user_role'] ) ) {
276
  $user_role = sanitize_text_field($_POST['custom_field_user_role']);
277
- } elseif( isset( $this->args['role'] ) ) {
278
  $user_role = $this->args['role'];
279
  } else {
280
  $user_role = NULL;
@@ -529,6 +529,18 @@ class Profile_Builder_Form_Creator{
529
  if( isset( $userdata['user_pass'] ) && !empty( $userdata['user_pass'] ) ){
530
  unset($userdata['user_pass']);
531
  }
 
 
 
 
 
 
 
 
 
 
 
 
532
  wp_update_user( $userdata );
533
  }
534
 
@@ -536,7 +548,7 @@ class Profile_Builder_Form_Creator{
536
  foreach( $this->args['form_fields'] as $field ){
537
  do_action( 'wppb_save_form_field', $field, $user_id, $global_request, $this->args['form_type'] );
538
  }
539
-
540
  if ( $this->args['form_type'] == 'register' ){
541
  if ( !is_wp_error( $user_id ) ){
542
  $wppb_general_settings = get_option( 'wppb_general_settings' );
272
  $form_message_tpl_start = apply_filters( 'wppb_form_message_tpl_start', '<p class="alert" id="wppb_form_success_message">' );
273
  $form_message_tpl_end = apply_filters( 'wppb_form_message_tpl_end', '</p>' );
274
 
275
+ if( ! current_user_can( 'manage_options' ) && $this->args['form_type'] != 'edit_profile' && isset( $_POST['custom_field_user_role'] ) ) {
276
  $user_role = sanitize_text_field($_POST['custom_field_user_role']);
277
+ } elseif( ! current_user_can( 'manage_options' ) && $this->args['form_type'] != 'edit_profile' && isset( $this->args['role'] ) ) {
278
  $user_role = $this->args['role'];
279
  } else {
280
  $user_role = NULL;
529
  if( isset( $userdata['user_pass'] ) && !empty( $userdata['user_pass'] ) ){
530
  unset($userdata['user_pass']);
531
  }
532
+
533
+ if( current_user_can( 'manage_options' ) && isset( $userdata['role'] ) && is_array( $userdata['role'] ) ) {
534
+ $user_data = get_userdata( $user_id );
535
+ $user_data->remove_all_caps();
536
+
537
+ foreach( $userdata['role'] as $role ) {
538
+ $user_data->add_role( $role );
539
+ }
540
+
541
+ unset( $userdata['role'] );
542
+ }
543
+
544
  wp_update_user( $userdata );
545
  }
546
 
548
  foreach( $this->args['form_fields'] as $field ){
549
  do_action( 'wppb_save_form_field', $field, $user_id, $global_request, $this->args['form_type'] );
550
  }
551
+
552
  if ( $this->args['form_type'] == 'register' ){
553
  if ( !is_wp_error( $user_id ) ){
554
  $wppb_general_settings = get_option( 'wppb_general_settings' );
front-end/default-fields/user-role/user-role.php CHANGED
@@ -3,20 +3,34 @@
3
  function wppb_user_role_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
4
  if ( $field['field'] == 'Select (User Role)' ){
5
 
 
 
 
 
 
 
 
 
6
  $user_role = '';
 
7
  $user_can_manage_options = false;
8
 
9
  // Get user data, set user's role and check to see if user can manage options
10
  if( $user_id != 0 ) {
11
  $user_data = get_userdata( $user_id );
12
- $user_role = $user_data->roles[0];
 
 
 
 
13
 
14
  if( isset( $user_data->allcaps['manage_options'] ) && $user_data->allcaps['manage_options'] == 1 ) {
15
  $user_can_manage_options = true;
16
  }
17
  }
18
 
19
- $input_value = isset( $request_data['custom_field_user_role'] ) ? $request_data['custom_field_user_role'] : $user_role;
 
20
 
21
  $item_title = apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
22
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] );
@@ -49,18 +63,24 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
49
 
50
  $output = '
51
  <label for="custom_field_user_role">'.$item_title.$error_mark.'</label>
52
- <select name="custom_field_user_role" id="'.$field['meta-name'].'" class="custom_field_user_role '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" '. $extra_attr .'>';
53
 
54
  $extra_select_option = apply_filters( 'wppb_extra_select_option', '', $field, $item_title );
55
  if( ! empty( $extra_select_option ) ) {
56
  $output .= $extra_select_option;
57
  }
58
 
59
- if( !empty( $available_user_roles ) ) {
60
- foreach( $available_user_roles as $user_role ){
61
  $output .= '<option value="'. $user_role['slug'] .'"';
62
 
63
- $output .= selected( $input_value, $user_role['slug'], false );
 
 
 
 
 
 
64
 
65
  $output .= '>'. $user_role['name'] .'</option>';
66
  }
@@ -89,7 +109,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
89
 
90
  }
91
 
92
- return apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value );
93
  }
94
  }
95
  add_filter( 'wppb_output_form_field_select-user-role', 'wppb_user_role_handler', 10, 6 );
@@ -101,6 +121,14 @@ function wppb_check_user_role_value( $message, $field, $request_data, $form_loca
101
  if( $form_location == 'back_end' )
102
  return $message;
103
 
 
 
 
 
 
 
 
 
104
  $field['meta-name'] = 'custom_field_user_role';
105
 
106
  if( $field['field'] == 'Select (User Role)' ){
@@ -114,8 +142,16 @@ function wppb_check_user_role_value( $message, $field, $request_data, $form_loca
114
  if( isset( $field['user-roles'] ) && isset( $request_data['custom_field_user_role'] ) ) {
115
  $available_user_roles = explode(', ', $field['user-roles'] );
116
 
117
- if( !in_array( $request_data['custom_field_user_role'], $available_user_roles ) ) {
118
- return __( 'You cannot register this user role', 'profile-builder');
 
 
 
 
 
 
 
 
119
  }
120
  }
121
 
@@ -128,9 +164,23 @@ add_filter( 'wppb_check_form_field_select-user-role', 'wppb_check_user_role_valu
128
 
129
  /* handle field save */
130
  function wppb_userdata_add_user_role( $userdata, $global_request ){
 
 
 
 
 
 
 
131
 
132
- if ( isset( $global_request['custom_field_user_role'] ) )
133
- $userdata['role'] = sanitize_text_field( trim( $global_request['custom_field_user_role'] ) );
 
 
 
 
 
 
 
134
 
135
  return $userdata;
136
  }
3
  function wppb_user_role_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
4
  if ( $field['field'] == 'Select (User Role)' ){
5
 
6
+ $roles_editor_active = false;
7
+ $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
8
+ if( $wppb_generalSettings != 'not_found' ) {
9
+ if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' ) {
10
+ $roles_editor_active = true;
11
+ }
12
+ }
13
+
14
  $user_role = '';
15
+ $user_roles = '';
16
  $user_can_manage_options = false;
17
 
18
  // Get user data, set user's role and check to see if user can manage options
19
  if( $user_id != 0 ) {
20
  $user_data = get_userdata( $user_id );
21
+
22
+ if( ! empty( $user_data->roles ) ) {
23
+ $user_role = $user_data->roles[0];
24
+ $user_roles = $user_data->roles;
25
+ }
26
 
27
  if( isset( $user_data->allcaps['manage_options'] ) && $user_data->allcaps['manage_options'] == 1 ) {
28
  $user_can_manage_options = true;
29
  }
30
  }
31
 
32
+ $input_value = isset( $request_data['custom_field_user_role'] ) ? $request_data['custom_field_user_role'] : $user_role;
33
+ $input_value_multiple = isset( $request_data['custom_field_user_role'] ) ? $request_data['custom_field_user_role'] : $user_roles;
34
 
35
  $item_title = apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
36
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] );
63
 
64
  $output = '
65
  <label for="custom_field_user_role">'.$item_title.$error_mark.'</label>
66
+ <select name="custom_field_user_role'. ( $roles_editor_active ? '[]' : '' ) .'" id="'.$field['meta-name'].'" class="custom_field_user_role '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" '. $extra_attr . ( $roles_editor_active ? ' multiple="multiple"' : '' ) .'>';
67
 
68
  $extra_select_option = apply_filters( 'wppb_extra_select_option', '', $field, $item_title );
69
  if( ! empty( $extra_select_option ) ) {
70
  $output .= $extra_select_option;
71
  }
72
 
73
+ if( ! empty( $available_user_roles ) ) {
74
+ foreach( $available_user_roles as $user_role ) {
75
  $output .= '<option value="'. $user_role['slug'] .'"';
76
 
77
+ if( $roles_editor_active && is_array( $input_value_multiple ) ) {
78
+ if( in_array( $user_role['slug'], $input_value_multiple ) ) {
79
+ $output .= ' selected="selected" ';
80
+ }
81
+ } else {
82
+ $output .= selected( $input_value, $user_role['slug'], false );
83
+ }
84
 
85
  $output .= '>'. $user_role['name'] .'</option>';
86
  }
109
 
110
  }
111
 
112
+ return apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value, $input_value_multiple );
113
  }
114
  }
115
  add_filter( 'wppb_output_form_field_select-user-role', 'wppb_user_role_handler', 10, 6 );
121
  if( $form_location == 'back_end' )
122
  return $message;
123
 
124
+ $roles_editor_active = false;
125
+ $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
126
+ if( $wppb_generalSettings != 'not_found' ) {
127
+ if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' ) {
128
+ $roles_editor_active = true;
129
+ }
130
+ }
131
+
132
  $field['meta-name'] = 'custom_field_user_role';
133
 
134
  if( $field['field'] == 'Select (User Role)' ){
142
  if( isset( $field['user-roles'] ) && isset( $request_data['custom_field_user_role'] ) ) {
143
  $available_user_roles = explode(', ', $field['user-roles'] );
144
 
145
+ if( $roles_editor_active && is_array( $request_data['custom_field_user_role'] ) ) {
146
+ foreach( $request_data['custom_field_user_role'] as $key => $value ) {
147
+ if( ! in_array( $value, $available_user_roles ) ) {
148
+ return __( 'You cannot register this user role', 'profile-builder');
149
+ }
150
+ }
151
+ } else {
152
+ if( ! in_array( $request_data['custom_field_user_role'], $available_user_roles ) ) {
153
+ return __( 'You cannot register this user role', 'profile-builder');
154
+ }
155
  }
156
  }
157
 
164
 
165
  /* handle field save */
166
  function wppb_userdata_add_user_role( $userdata, $global_request ){
167
+ $roles_editor_active = false;
168
+ $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
169
+ if( $wppb_generalSettings != 'not_found' ) {
170
+ if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) ) {
171
+ $roles_editor_active = true;
172
+ }
173
+ }
174
 
175
+ if ( isset( $global_request['custom_field_user_role'] ) ) {
176
+ if( $roles_editor_active && is_array( $global_request['custom_field_user_role'] ) ) {
177
+ $user_roles = array_map( 'trim', $global_request['custom_field_user_role'] );
178
+ $user_roles = array_map( 'sanitize_text_field', $user_roles );
179
+ $userdata['role'] = $user_roles;
180
+ } else {
181
+ $userdata['role'] = sanitize_text_field( trim( $global_request['custom_field_user_role'] ) );
182
+ }
183
+ }
184
 
185
  return $userdata;
186
  }
front-end/recover.php CHANGED
@@ -289,7 +289,7 @@ function wppb_front_end_password_recovery(){
289
  $display_username_email = $user_info->user_email;
290
 
291
  //send secondary mail to the user containing the username and the new password
292
- $recoveruserMailMessage2 = sprintf( __( 'You have successfully reset your password to: %1$s', 'profile-builder' ), $new_pass );
293
  $recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $display_username_email, $new_pass, $userID );
294
 
295
  $recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
289
  $display_username_email = $user_info->user_email;
290
 
291
  //send secondary mail to the user containing the username and the new password
292
+ $recoveruserMailMessage2 = __( 'You have successfully reset your password.', 'profile-builder' );
293
  $recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $display_username_email, $new_pass, $userID );
294
 
295
  $recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.6.6
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.6.6' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.6.7
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.6.7' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
- Donate link: https://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form
5
- Requires at least: 3.1.0
6
  Tested up to: 4.8.1
7
- Stable tag: 2.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,9 +125,9 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
125
 
126
  == Frequently Asked Questions ==
127
 
128
- = I navigated away from Profile Builder and now I can't find it anymore; where is it? =
129
 
130
- Profile Builder can be found in the default menu of your WordPress installation below the Users menu item.
131
 
132
  = Why do the default WordPress user fields still show up in the back-end? =
133
 
@@ -153,6 +153,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
153
  12. Role Editor
154
 
155
  == Changelog ==
 
 
 
 
 
156
  = 2.6.6 =
157
  * Updated translation files
158
  * Added the wppb_fields_extra_css_class filter to default fields
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
+ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form
5
+ Requires at least: 3.1
6
  Tested up to: 4.8.1
7
+ Stable tag: 2.6.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
125
 
126
  == Frequently Asked Questions ==
127
 
128
+ = I navigated away from Profile Builder and now I cant find it anymore; where is it? =
129
 
130
+ Profile Builder can be found in the default menu of your WordPress installation below the Users menu item.
131
 
132
  = Why do the default WordPress user fields still show up in the back-end? =
133
 
153
  12. Role Editor
154
 
155
  == Changelog ==
156
+ = 2.6.7 =
157
+ * Added option in backend user new/edit screen to add multiple user roles when user roles module is active
158
+ * Added user role multiple select for admin in front-end edit profile form when roles editor is active and select role field is in the form
159
+ * Changed password reset success email
160
+
161
  = 2.6.6 =
162
  * Updated translation files
163
  * Added the wppb_fields_extra_css_class filter to default fields
translation/profile-builder-es_ES.mo CHANGED
Binary file
translation/profile-builder-es_ES.po CHANGED
@@ -1,14 +1,17 @@
1
- # Translation of Profile Builder in Spanish (Spain)
2
- # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-08-01 13:44:15+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
  #: profile-builder-2.0/admin/general-settings.php:154
14
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
@@ -27,15 +30,26 @@ msgid "Please enter your email address."
27
  msgstr ""
28
 
29
  #: profile-builder-2.0/admin/manage-fields.php:127
30
- 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, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
 
 
 
 
31
  msgstr ""
32
 
33
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
- msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
 
 
 
 
35
  msgstr ""
36
 
37
  #: profile-builder-2.0/admin/manage-fields.php:1217
38
- msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
 
 
 
39
  msgstr ""
40
 
41
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
@@ -43,45 +57,45 @@ msgid "Multiple Registration and Edit Profile form settings Redirects"
43
  msgstr ""
44
 
45
  #: profile-builder-2.0/admin/register-version.php:251
46
- 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 40&#37; off %4$s %6$sDismiss%7$s</p>"
 
 
 
 
47
  msgstr ""
48
 
49
  #: profile-builder-2.0/admin/register-version.php:246
50
- 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 40&#37; off %4$s %5$sDismiss%6$s</p>"
 
 
 
 
51
  msgstr ""
52
 
53
  #: profile-builder-2.0/front-end/recover.php:159
54
- msgid "You are already logged in. You can change your password on the edit profile form."
 
 
55
  msgstr ""
56
 
57
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
  msgid "Your site url will look like this:<br>"
59
  msgstr ""
60
 
61
- #: profile-builder-2.0/features/functions.php:909
62
- msgid "<br><br>You can visit your site at "
63
- msgstr "<br><br>Puedes visitar tu sitio en"
64
-
65
  #: profile-builder-2.0/features/functions.php:896
66
  msgid "<br><br>Also, you will be able to visit your site at "
67
  msgstr ""
68
 
69
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
- msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
 
 
71
  msgstr ""
72
 
73
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
- msgid "Site Title"
75
- msgstr "Título del sitio"
76
-
77
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
  msgid "Site URL slug"
79
  msgstr ""
80
 
81
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
- msgid "Yes, I'd like to create a new site"
83
- msgstr "Si, me gustaría crear un sitio nuevo"
84
-
85
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
  #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
  msgid "Blog URL"
@@ -96,17 +110,11 @@ msgid "Blog Details"
96
  msgstr ""
97
 
98
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
 
 
100
  msgstr ""
101
 
102
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
- msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Tu nombre de usuarui es:%2$s"
105
-
106
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
- msgid "View Map"
108
- msgstr "Ver mapa"
109
-
110
  #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
  #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
  #: pb-add-on-woocommerce/index.php:493
@@ -118,7 +126,9 @@ msgid "Billing Fields"
118
  msgstr ""
119
 
120
  #: pb-add-on-woocommerce/index.php:256
121
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
 
 
122
  msgstr ""
123
 
124
  #: pb-add-on-woocommerce/index.php:257
@@ -142,7 +152,9 @@ msgid "Shipping Fields"
142
  msgstr ""
143
 
144
  #: pb-add-on-woocommerce/index.php:275
145
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
 
 
146
  msgstr ""
147
 
148
  #: pb-add-on-woocommerce/index.php:276
@@ -193,14 +205,6 @@ msgstr ""
193
  msgid "Available in Hobbyist and Pro Versions"
194
  msgstr ""
195
 
196
- #: profile-builder-2.0/admin/add-ons.php:105
197
- msgid "Available in All Versions"
198
- msgstr "Disponible en todas las versiones"
199
-
200
- #: profile-builder-2.0/admin/add-ons.php:148
201
- msgid "Learn More"
202
- msgstr "Aprende más"
203
-
204
  #: profile-builder-2.0/admin/basic-info.php:99
205
  msgid "Timepicker"
206
  msgstr ""
@@ -213,37 +217,24 @@ msgstr ""
213
  msgid "Currency Select"
214
  msgstr ""
215
 
216
- #: profile-builder-2.0/admin/basic-info.php:109
217
- msgid "Number"
218
- msgstr "Número"
219
-
220
- #: profile-builder-2.0/admin/basic-info.php:114
221
- msgid "Validation"
222
- msgstr "Validación"
223
-
224
- #: profile-builder-2.0/admin/basic-info.php:115
225
- msgid "Map"
226
- msgstr "Mapa"
227
-
228
- #: profile-builder-2.0/admin/basic-info.php:116
229
- msgid "HTML"
230
- msgstr "HTML"
231
-
232
- #: profile-builder-2.0/admin/basic-info.php:162
233
- #: profile-builder-2.0/modules/modules.php:117
234
- msgid "Repeater Fields"
235
- msgstr "Campos repetitivos"
236
-
237
  #: profile-builder-2.0/admin/basic-info.php:163
238
- msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
 
 
239
  msgstr ""
240
 
241
  #: profile-builder-2.0/admin/general-settings.php:59
242
- msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
 
 
243
  msgstr ""
244
 
245
  #: profile-builder-2.0/admin/manage-fields.php:120
246
- msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
 
 
 
 
247
  msgstr ""
248
 
249
  #: profile-builder-2.0/admin/manage-fields.php:143
@@ -251,7 +242,9 @@ msgid "Show Currency Symbol"
251
  msgstr ""
252
 
253
  #: profile-builder-2.0/admin/manage-fields.php:143
254
- msgid "Whether the currency symbol should be displayed after the currency name in the select option."
 
 
255
  msgstr ""
256
 
257
  #: profile-builder-2.0/admin/manage-fields.php:144
@@ -267,7 +260,10 @@ msgid "Allowable Values"
267
  msgstr ""
268
 
269
  #: profile-builder-2.0/admin/manage-fields.php:145
270
- msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
 
 
 
271
  msgstr ""
272
 
273
  #: profile-builder-2.0/admin/manage-fields.php:146
@@ -287,11 +283,11 @@ msgid "Specify the time format."
287
  msgstr ""
288
 
289
  #: profile-builder-2.0/admin/manage-fields.php:148
290
- msgid "Google Maps API Key"
291
- msgstr "Clave de la API de Google Maps"
292
-
293
- #: profile-builder-2.0/admin/manage-fields.php:148
294
- msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
  msgstr ""
296
 
297
  #: profile-builder-2.0/admin/manage-fields.php:149
@@ -299,7 +295,8 @@ msgid "Default Latitude"
299
  msgstr ""
300
 
301
  #: profile-builder-2.0/admin/manage-fields.php:149
302
- msgid "The latitude at which the map should be displayed when no pins are attached."
 
303
  msgstr ""
304
 
305
  #: profile-builder-2.0/admin/manage-fields.php:150
@@ -307,7 +304,8 @@ msgid "Default Longitude"
307
  msgstr ""
308
 
309
  #: profile-builder-2.0/admin/manage-fields.php:150
310
- msgid "The longitude at which the map should be displayed when no pins are attached."
 
311
  msgstr ""
312
 
313
  #: profile-builder-2.0/admin/manage-fields.php:151
@@ -326,10 +324,6 @@ msgstr ""
326
  msgid "The height of the map."
327
  msgstr ""
328
 
329
- #: profile-builder-2.0/admin/manage-fields.php:154
330
- msgid "HTML Content"
331
- msgstr "Contenido HTML"
332
-
333
  #: profile-builder-2.0/admin/manage-fields.php:154
334
  msgid "Add your HTML (or text) content"
335
  msgstr ""
@@ -339,7 +333,9 @@ msgid "Phone Format"
339
  msgstr ""
340
 
341
  #: profile-builder-2.0/admin/manage-fields.php:155
342
- msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
 
 
343
  msgstr ""
344
 
345
  #: profile-builder-2.0/admin/manage-fields.php:155
@@ -358,36 +354,18 @@ msgstr ""
358
  msgid "Change heading field size on front-end forms"
359
  msgstr ""
360
 
361
- #: profile-builder-2.0/admin/manage-fields.php:157
362
- msgid "Min Number Value"
363
- msgstr "Valor mínimo"
364
-
365
  #: profile-builder-2.0/admin/manage-fields.php:157
366
  msgid "Min allowed number value (0 to allow only positive numbers)"
367
  msgstr ""
368
 
369
- #: profile-builder-2.0/admin/manage-fields.php:157
370
- msgid "Leave it empty for no min value"
371
- msgstr "Dejar vacío para ningún valor mínimo"
372
-
373
- #: profile-builder-2.0/admin/manage-fields.php:158
374
- msgid "Max Number Value"
375
- msgstr "Valor máximo"
376
-
377
- #: profile-builder-2.0/admin/manage-fields.php:158
378
- msgid "Max allowed number value (0 to allow only negative numbers)"
379
- msgstr "Valor máximo permitido (0 para permitir sólo números negativos)"
380
-
381
- #: profile-builder-2.0/admin/manage-fields.php:158
382
- msgid "Leave it empty for no max value"
383
- msgstr "Dejar vacío para ningún valor máximo"
384
-
385
  #: profile-builder-2.0/admin/manage-fields.php:159
386
  msgid "Number Step Value"
387
  msgstr ""
388
 
389
  #: profile-builder-2.0/admin/manage-fields.php:159
390
- msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
 
 
391
  msgstr ""
392
 
393
  #: profile-builder-2.0/admin/manage-fields.php:159
@@ -395,13 +373,11 @@ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
  msgstr ""
396
 
397
  #: profile-builder-2.0/admin/manage-fields.php:159
398
- msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
 
 
399
  msgstr ""
400
 
401
- #: profile-builder-2.0/admin/manage-fields.php:159
402
- msgid "Leave it empty for no restriction"
403
- msgstr "Déjalo vacío para ninguna restricción"
404
-
405
  #: profile-builder-2.0/admin/manage-fields.php:564
406
  msgid "Albania Lek"
407
  msgstr ""
@@ -666,10 +642,6 @@ msgstr ""
666
  msgid "Mauritius Rupee"
667
  msgstr ""
668
 
669
- #: profile-builder-2.0/admin/manage-fields.php:630
670
- msgid "Mexico Peso"
671
- msgstr "Peso mexicano"
672
-
673
  #: profile-builder-2.0/admin/manage-fields.php:631
674
  msgid "Mongolia Tughrik"
675
  msgstr ""
@@ -860,22 +832,15 @@ msgid "Zimbabwe Dollar"
860
  msgstr ""
861
 
862
  #: profile-builder-2.0/admin/manage-fields.php:1097
863
- msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
 
 
864
  msgstr ""
865
 
866
  #: profile-builder-2.0/admin/manage-fields.php:1314
867
  msgid "Search Location"
868
  msgstr ""
869
 
870
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
- msgid "You are not allowed to do this."
872
- msgstr "No se te permite hacer esto."
873
-
874
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
- msgid "Search Users"
877
- msgstr "Buscar usuarios"
878
-
879
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
  msgid "Conditional Logic"
881
  msgstr ""
@@ -888,27 +853,12 @@ msgstr ""
888
  msgid "This field has conditional logic enabled."
889
  msgstr ""
890
 
891
- #: profile-builder-2.0/features/functions.php:685
892
- msgid "Incorrect phone number"
893
- msgstr "Número de teléfono incorrecto"
894
-
895
  #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
- msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
 
 
897
  msgstr ""
898
 
899
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
- msgid "Please add the Google Maps API key for this field."
902
- msgstr "Añade la clave de la API de Google Maps para este campo."
903
-
904
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
- msgid "Something went wrong. Please try again."
906
- msgstr "Algo salió mal. Por favor inténtalo de nuevo."
907
-
908
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
- msgid "Please enter numbers only"
910
- msgstr "Por favor ingresa números solamente"
911
-
912
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
  msgid "Value must be a multiplier of %1$s"
914
  msgstr ""
@@ -1067,7 +1017,9 @@ msgid "Limit"
1067
  msgstr ""
1068
 
1069
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
- msgid "Enable limit to the number of fields to be generated by users in front end forms "
 
 
1071
  msgstr ""
1072
 
1073
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
@@ -1087,7 +1039,8 @@ msgid "The maximum number of fields has been reached."
1087
  msgstr ""
1088
 
1089
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
- msgid "The popup message to display when the limit of repeater groups is reached."
 
1091
  msgstr ""
1092
 
1093
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
@@ -1116,7 +1069,8 @@ msgstr ""
1116
 
1117
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
- msgid "Please enter a unique field title.\n"
 
1120
  msgstr ""
1121
 
1122
  #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
@@ -1136,22 +1090,6 @@ msgstr ""
1136
  msgid "User Count"
1137
  msgstr ""
1138
 
1139
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
- msgid "Show All"
1141
- msgstr "Mostrar todos"
1142
-
1143
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
- msgid "No options available"
1145
- msgstr "No hay opciones disponibles"
1146
-
1147
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
- msgid "Remove All Filters"
1149
- msgstr "Quitar todos los filtros"
1150
-
1151
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
- msgid "Label"
1153
- msgstr "Etiqueta"
1154
-
1155
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
  msgid "Choose the facet name that appears on the frontend"
1157
  msgstr ""
@@ -1172,10 +1110,6 @@ msgstr ""
1172
  msgid "Choose the meta field for the facet menu"
1173
  msgstr ""
1174
 
1175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
- msgid "Behaviour"
1177
- msgstr "Comportamiento"
1178
-
1179
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
  msgid "Narrow the results"
1181
  msgstr ""
@@ -1208,75 +1142,589 @@ msgstr ""
1208
  msgid "Search Settings"
1209
  msgstr ""
1210
 
1211
- #: pb-add-on-woocommerce/billing-fields.php:8
1212
- #: pb-add-on-woocommerce/shipping-fields.php:8
1213
- msgid "Company Name"
1214
- msgstr "Nombre de la empresa"
1215
 
1216
- #: pb-add-on-woocommerce/billing-fields.php:9
1217
- #: pb-add-on-woocommerce/shipping-fields.php:9
1218
- msgid "Address"
1219
- msgstr "Dirección"
1220
 
1221
- #: pb-add-on-woocommerce/billing-fields.php:5
1222
- #: pb-add-on-woocommerce/shipping-fields.php:5
1223
- msgid "Country"
1224
- msgstr "País"
1225
 
1226
- #: pb-add-on-woocommerce/billing-fields.php:11
1227
- #: pb-add-on-woocommerce/shipping-fields.php:11
1228
- msgid "Town / City"
1229
- msgstr "Ciudad"
1230
 
1231
- #: pb-add-on-woocommerce/billing-fields.php:12
1232
- #: pb-add-on-woocommerce/shipping-fields.php:12
1233
- msgid "State / County"
1234
- msgstr "Estado / Región"
1235
 
1236
- #: pb-add-on-woocommerce/billing-fields.php:13
1237
- #: pb-add-on-woocommerce/shipping-fields.php:13
1238
- msgid "Postcode / Zip"
1239
- msgstr "Código Postal"
 
 
1240
 
1241
- #: pb-add-on-woocommerce/billing-fields.php:14
1242
- msgid "Email Address"
1243
- msgstr "Correo electrónico"
 
 
 
1244
 
1245
- #: pb-add-on-woocommerce/billing-fields.php:15
1246
- msgid "Phone"
1247
- msgstr "Teléfono"
 
 
 
 
 
1248
 
1249
- #: pb-add-on-woocommerce/billing-fields.php:278
1250
- msgid "Ship to a different address?"
1251
- msgstr "¿Enviar a una dirección diferente?"
 
1252
 
1253
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
- msgid "Billing Address"
1255
- msgstr "Dirección de Facturación"
1256
 
1257
- #: pb-add-on-woocommerce/index.php:169
1258
- msgid "Displays customer billing fields in front-end. "
1259
- msgstr "Mostrar campos de facturación del cliente en el front-end"
 
1260
 
1261
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
- msgid "Shipping Address"
1263
- msgstr "Dirección de envío"
 
1264
 
1265
- #: pb-add-on-woocommerce/index.php:173
1266
- msgid "Displays customer shipping fields in front-end. "
1267
- msgstr "Mostrar campos de envío del cliente en el front-end"
1268
 
1269
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
- msgid "Display on WooCommerce Checkout"
1271
- msgstr "Mostrar en el Checkout de Woocommerce"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1272
 
1273
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
- msgstr "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no"
 
 
1276
 
1277
  #: pb-add-on-woocommerce/index.php:541
1278
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
- msgstr "WooCommerce necesita estar instalado y activado para que Profile Builder - WooCommerce Sync Add-on trabaje correctamente!"
 
 
 
 
1280
 
1281
  #: pb-add-on-woocommerce/woosync-page.php:23
1282
  #: pb-add-on-woocommerce/woosync-page.php:70
@@ -1285,29 +1733,41 @@ msgstr "WooCommerce Sync"
1285
 
1286
  #: pb-add-on-woocommerce/woosync-page.php:76
1287
  msgid "Choose Register form to display on My Account page:"
1288
- msgstr "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\""
 
1289
 
1290
  #: pb-add-on-woocommerce/woosync-page.php:81
1291
  msgid "Default Register"
1292
  msgstr "Registro por defecto"
1293
 
1294
  #: pb-add-on-woocommerce/woosync-page.php:103
1295
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
 
 
 
1296
  msgstr ""
1297
- "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi cuenta\" de WooCommerce.<br/>\n"
1298
- "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi cuenta\"."
 
 
1299
 
1300
  #: pb-add-on-woocommerce/woosync-page.php:110
1301
  msgid "Choose Edit Profile form to display on My Account page:"
1302
- msgstr "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi Cuenta:"
 
 
1303
 
1304
  #: pb-add-on-woocommerce/woosync-page.php:115
1305
  msgid "Default Edit Profile"
1306
  msgstr "Perfil de Editar Predeterminado"
1307
 
1308
  #: pb-add-on-woocommerce/woosync-page.php:137
1309
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1310
- msgstr "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar en la pagina Mi cuenta de WooComerce"
 
 
 
 
1311
 
1312
  #: profile-builder-2.0/admin/add-ons.php:190
1313
  msgid "Recommended Plugins"
@@ -1319,8 +1779,12 @@ msgid "Free"
1319
  msgstr "Gratis"
1320
 
1321
  #: profile-builder-2.0/admin/add-ons.php:221
1322
- msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1323
- msgstr "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliación"
 
 
 
 
1324
 
1325
  #: profile-builder-2.0/admin/add-ons.php:222
1326
  #: profile-builder-2.0/admin/pms-cross-promotion.php:105
@@ -1334,334 +1798,141 @@ msgstr "Mas detalles"
1334
  msgid "Plugin is <strong>inactive</strong>"
1335
  msgstr "Plugin <strong>desactivado</strong>"
1336
 
1337
- #: profile-builder-2.0/admin/add-ons.php:242
1338
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1339
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1340
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1341
- msgid "Plugin is <strong>active</strong>"
1342
- msgstr "Plugin <strong>activado</strong>"
1343
-
1344
- #: profile-builder-2.0/admin/add-ons.php:256
1345
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1346
- msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1347
- msgstr "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">instale manualmente</a>."
1348
-
1349
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1350
- msgid "Paid Accounts"
1351
- msgstr "Cuentas de Pago"
1352
-
1353
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1354
- msgid "Paid Member Subscriptions - a free WordPress plugin"
1355
- msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1356
-
1357
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1358
- msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1359
- msgstr "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga."
1360
-
1361
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1362
- msgid "Paid & Free Subscriptions"
1363
- msgstr "Suscripciones Gratuitas y de Pago."
1364
-
1365
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1366
- msgid "Restrict Content"
1367
- msgstr "Contenido restringido"
1368
-
1369
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1370
- msgid "Member Management"
1371
- msgstr "Gestion de Miembros"
1372
-
1373
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1374
- msgid "Email Templates"
1375
- msgstr "Plantillas de Correo Electronico"
1376
-
1377
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1378
- msgid "Account Management"
1379
- msgstr "Administrar cuenta"
1380
-
1381
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1382
- msgid "Subscription Management"
1383
- msgstr "Administrar suscripción"
1384
-
1385
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1386
- msgid "Payment Management"
1387
- msgstr "Administrar pago"
1388
-
1389
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1390
- msgid "Plugin is Active"
1391
- msgstr "El plugin está activado"
1392
-
1393
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1394
- msgid "Plugin has been activated"
1395
- msgstr "El plugin ha sido activado"
1396
-
1397
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1398
- msgid "Plugin has been deactivated."
1399
- msgstr "El plugin ha sido desactivado"
1400
-
1401
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1402
- msgid "Accept user payments, create subscription plans and restrict content on your website."
1403
- msgstr "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web."
1404
-
1405
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1406
- msgid "Step by Step Quick Setup"
1407
- msgstr "Configuración Rapida Paso a Paso"
1408
-
1409
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1410
- msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1411
- msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1412
-
1413
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1414
- msgid "After Login"
1415
- msgstr "Después de Iniciar sesión"
1416
-
1417
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1418
- msgid "After Logout"
1419
- msgstr "Después de Terminar sesión"
1420
-
1421
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1422
- msgid "After Registration"
1423
- msgstr "Después de Registrarse"
1424
-
1425
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1426
- msgid "After Edit Profile"
1427
- msgstr ""
1428
-
1429
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1430
- msgid "After Successful Email Confirmation"
1431
- msgstr ""
1432
-
1433
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1434
- msgid "After Successful Password Reset"
1435
- msgstr ""
1436
-
1437
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1438
- msgid "Dashboard (redirect users from accessing the dashboard)"
1439
- msgstr ""
1440
-
1441
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1442
- msgid "User ID"
1443
- msgstr "Identidicación del usuario"
1444
-
1445
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1446
- msgid "User ID or Username"
1447
- msgstr "ID o Nombre de Usuario"
1448
-
1449
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1450
- msgid "User ID / Username"
1451
- msgstr ""
1452
-
1453
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1454
- msgid "Please select and enter the ID or username of your user."
1455
- msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1456
-
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1458
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1459
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1460
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1461
- msgid "Redirect Type"
1462
- msgstr ""
1463
-
1464
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1466
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1467
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1468
- msgid "Redirect URL"
1469
- msgstr ""
1470
-
1471
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1472
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1473
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1474
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1475
- msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1476
- msgstr ""
1477
-
1478
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1479
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1480
- msgid "Individual User Redirects"
1481
- msgstr ""
1482
-
1483
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1484
- msgid "... Choose"
1485
- msgstr ""
1486
-
1487
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1488
- msgid "Select a user role."
1489
- msgstr "Selecciona un rol de usuario."
1490
-
1491
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1492
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1493
- msgid "User Role based Redirects"
1494
- msgstr ""
1495
-
1496
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1497
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1498
- msgid "Global Redirects"
1499
- msgstr ""
1500
-
1501
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1502
- msgid "Login ( wp_login.php )"
1503
- msgstr "Iniciar sesión ( wp_login.php )"
1504
-
1505
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1506
- msgid "Register ( wp-login.php?action=register )"
1507
- msgstr "Registrarse ( wp-login.php?action=register )"
1508
-
1509
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1510
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
1511
- msgstr "Perdí mi contraseña ( wp-login.php?action=lostpassword )"
1512
-
1513
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1514
- msgid "Author Archive ( http://sitename.com/author/admin )"
1515
- msgstr "Archivos del autor ( http://sitename.com/author/admin )"
1516
-
1517
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1518
- msgid "Redirect Default WordPress Forms and Pages"
1519
- msgstr ""
1520
-
1521
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1522
- msgid "How does this work?"
1523
- msgstr ""
1524
-
1525
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1526
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1527
- msgstr ""
1528
-
1529
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1530
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1531
- msgstr ""
1532
-
1533
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1534
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1535
- msgid "<pre>Redirect</pre><pre>URL</pre>"
1536
- msgstr ""
1537
-
1538
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1539
- msgid "These redirects happen after a successful action, like registration or after a successful login."
1540
- msgstr ""
1541
-
1542
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1543
- msgid "Which redirect happens depends on the following priority:"
1544
- msgstr ""
1545
-
1546
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1547
- msgid "Redirect Default WordPress forms and pages"
1548
- msgstr ""
1549
 
1550
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1551
- msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
 
 
 
1552
  msgstr ""
 
 
1553
 
1554
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1555
- msgid "Available tags for dynamic URLs"
1556
- msgstr ""
1557
 
1558
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1559
- msgid "You use the following tags in your URLs to redirect users to various pages."
1560
- msgstr ""
1561
 
1562
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1563
- msgid "generates a url of the current website homepage."
 
 
1564
  msgstr ""
 
 
1565
 
1566
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1567
- msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1568
- msgstr ""
1569
 
1570
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1571
- msgid "the ID of the user"
1572
- msgstr ""
1573
 
1574
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1575
- msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1576
- msgstr ""
1577
 
1578
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1579
- msgid "the URL of the previously visited page"
1580
- msgstr ""
1581
 
1582
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1583
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1584
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1585
- msgid "You can't add duplicate redirects!"
1586
- msgstr ""
1587
 
1588
- #: profile-builder-2.0/admin/admin-functions.php:41
1589
- msgid "Display name publicly as - only appears on the Edit Profile page!"
1590
- msgstr ""
1591
 
1592
- #: profile-builder-2.0/admin/basic-info.php:37
1593
- msgid "Friction-less login using %s shortcode or a widget."
1594
- msgstr ""
1595
 
1596
- #: profile-builder-2.0/admin/basic-info.php:41
1597
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
1598
- msgstr ""
1599
 
1600
- #: profile-builder-2.0/admin/basic-info.php:45
1601
- msgid "Straight forward edit profile forms using %s shortcode."
1602
- msgstr ""
1603
 
1604
- #: profile-builder-2.0/admin/basic-info.php:58
1605
- msgid "Allow users to recover their password in the front-end using the %s."
1606
- msgstr ""
1607
 
1608
- #: profile-builder-2.0/admin/basic-info.php:140
1609
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
 
 
1610
  msgstr ""
 
 
1611
 
1612
- #: profile-builder-2.0/admin/general-settings.php:115
1613
- msgid "\"Admin Approval\" on User Role:"
1614
- msgstr ""
1615
 
1616
- #: profile-builder-2.0/admin/general-settings.php:134
1617
- msgid "Select on what user roles to activate Admin Approval."
 
 
1618
  msgstr ""
 
 
1619
 
1620
- #: profile-builder-2.0/admin/manage-fields.php:133
1621
- msgid "Display on PB forms"
1622
- msgstr ""
1623
 
1624
- #: profile-builder-2.0/admin/manage-fields.php:133
1625
- msgid "PB Login"
1626
- msgstr ""
1627
 
1628
- #: profile-builder-2.0/admin/manage-fields.php:133
1629
- msgid "PB Register"
1630
- msgstr ""
1631
 
1632
- #: profile-builder-2.0/admin/manage-fields.php:133
1633
- msgid "PB Recover Password"
1634
- msgstr ""
1635
 
1636
- #: profile-builder-2.0/admin/manage-fields.php:133
1637
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
1638
- msgstr ""
1639
 
1640
- #: profile-builder-2.0/admin/manage-fields.php:134
1641
- msgid "Display on default WP forms"
1642
- msgstr ""
1643
 
1644
- #: profile-builder-2.0/admin/manage-fields.php:134
1645
- msgid "Default WP Login"
1646
- msgstr ""
1647
 
1648
- #: profile-builder-2.0/admin/manage-fields.php:134
1649
- msgid "Default WP Register"
1650
- msgstr ""
1651
 
1652
- #: profile-builder-2.0/admin/manage-fields.php:134
1653
- msgid "Default WP Recover Password"
1654
- msgstr ""
1655
 
1656
- #: profile-builder-2.0/admin/manage-fields.php:134
1657
- msgid "Select on which default WP forms to display reCAPTCHA"
1658
- msgstr ""
1659
 
1660
- #: profile-builder-2.0/admin/manage-fields.php:140
1661
- #: profile-builder-2.0/admin/manage-fields.php:141
1662
- #: profile-builder-2.0/admin/manage-fields.php:142
1663
- msgid "Default option of the field"
1664
- msgstr ""
1665
 
1666
  #: profile-builder-2.0/admin/manage-fields.php:282
1667
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
@@ -2882,35 +3153,17 @@ msgstr "Zambia"
2882
  msgid "Zimbabwe"
2883
  msgstr "Zimbabwe"
2884
 
2885
- #: profile-builder-2.0/admin/manage-fields.php:1219
2886
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2887
- msgstr ""
2888
-
2889
  #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2890
- msgid "Your account has to be confirmed by an administrator before you can log in."
2891
- msgstr "Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte."
 
 
 
2892
 
2893
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2894
  msgid "Your account has been successfully created!"
2895
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
2896
 
2897
- #: profile-builder-2.0/features/functions.php:678
2898
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2899
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2900
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2901
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2902
- msgid "Please enter a (valid) reCAPTCHA value"
2903
- msgstr ""
2904
-
2905
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2906
- msgid "Click the BACK button on your browser, and try again."
2907
- msgstr ""
2908
-
2909
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2910
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2911
- msgid "Sorry, you cannot upload this file type for this field."
2912
- msgstr ""
2913
-
2914
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2915
  msgid "An error occurred, please try again later."
2916
  msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
@@ -2919,14 +3172,6 @@ msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
2919
  msgid "More"
2920
  msgstr "Más"
2921
 
2922
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2923
- msgid "You do not have permission to view this user list."
2924
- msgstr ""
2925
-
2926
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2927
- msgid "You do not have the required user role to view this user list."
2928
- msgstr ""
2929
-
2930
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2931
  msgid "Ascending"
2932
  msgstr "Ascendente"
@@ -2942,41 +3187,23 @@ msgstr "Descendente"
2942
  msgid "Download Now"
2943
  msgstr "Descargar"
2944
 
2945
- #: profile-builder-2.0/admin/admin-functions.php:200
2946
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2947
- msgstr ""
2948
-
2949
  #: profile-builder-2.0/admin/manage-fields.php:82
2950
  msgid "Choose one of the supported field types"
2951
  msgstr "Escoja uno de los campos disponibles"
2952
 
2953
- #: profile-builder-2.0/admin/manage-fields.php:84
2954
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2955
- msgstr ""
2956
-
2957
  #: profile-builder-2.0/admin/manage-fields.php:131
2958
  msgid "Site Key"
2959
  msgstr "Sitio clave"
2960
 
2961
- #: profile-builder-2.0/admin/manage-fields.php:131
2962
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2963
- msgstr ""
2964
-
2965
  #: profile-builder-2.0/admin/manage-fields.php:132
2966
  msgid "Secret Key"
2967
  msgstr "Clave secreta"
2968
 
2969
- #: profile-builder-2.0/admin/manage-fields.php:132
2970
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2971
- msgstr ""
2972
-
2973
  #: profile-builder-2.0/admin/manage-fields.php:1023
2974
- msgid "You must enter the site key\n"
2975
- msgstr "Debes ingresar la clave del sitio\n"
2976
-
2977
- #: profile-builder-2.0/admin/manage-fields.php:1025
2978
- msgid "You must enter the secret key\n"
2979
  msgstr ""
 
2980
 
2981
  #: profile-builder-2.0/admin/add-ons.php:10
2982
  #: profile-builder-2.0/admin/add-ons.php:32
@@ -3015,74 +3242,32 @@ msgstr "El Add-On ha sido activado"
3015
  msgid "Retry Install"
3016
  msgstr "Reintentar Instalación"
3017
 
3018
- #: profile-builder-2.0/admin/add-ons.php:43
3019
- #: profile-builder-2.0/admin/add-ons.php:140
3020
- msgid "Add-On is <strong>active</strong>"
3021
- msgstr ""
3022
-
3023
- #: profile-builder-2.0/admin/add-ons.php:44
3024
- #: profile-builder-2.0/admin/add-ons.php:138
3025
- msgid "Add-On is <strong>inactive</strong>"
3026
- msgstr ""
3027
-
3028
- #: profile-builder-2.0/admin/add-ons.php:46
3029
- #: profile-builder-2.0/admin/add-ons.php:133
3030
- #: profile-builder-2.0/admin/add-ons.php:235
3031
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3032
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3033
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3034
- msgid "Deactivate"
3035
- msgstr "Desactivar"
3036
-
3037
- #: profile-builder-2.0/admin/add-ons.php:47
3038
- msgid "Add-On has been deactivated."
3039
- msgstr ""
3040
-
3041
- #: profile-builder-2.0/admin/add-ons.php:59
3042
- msgid "Something went wrong, we could not connect to the server. Please try again later."
3043
- msgstr "Algo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de nuevo."
3044
-
3045
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3046
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3047
- msgid "Install Now"
3048
- msgstr "Instalar ahora"
3049
-
3050
- #: profile-builder-2.0/admin/add-ons.php:153
3051
- #: profile-builder-2.0/admin/add-ons.php:251
3052
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3053
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3054
- msgid "Compatible with your version of Profile Builder."
3055
- msgstr ""
3056
-
3057
- #: profile-builder-2.0/admin/add-ons.php:162
3058
- msgid "Upgrade Profile Builder"
3059
- msgstr ""
3060
-
3061
- #: profile-builder-2.0/admin/add-ons.php:163
3062
- msgid "Not compatible with Profile Builder"
3063
- msgstr ""
3064
-
3065
- #: profile-builder-2.0/admin/add-ons.php:171
3066
- msgid "Not compatible with your version of Profile Builder."
3067
- msgstr ""
3068
 
3069
- #: profile-builder-2.0/admin/add-ons.php:172
3070
- msgid "Minimum required Profile Builder version:"
 
 
3071
  msgstr ""
 
 
3072
 
3073
- #: profile-builder-2.0/admin/add-ons.php:177
3074
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3075
- msgstr ""
 
3076
 
3077
  #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3078
  msgid "You must enter a valid email address."
3079
  msgstr "Debe ingresar una dirección válida de email"
3080
 
3081
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3082
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3083
- msgid "This username is invalid because it uses illegal characters."
3084
- msgstr ""
3085
-
3086
  #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3087
  #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3088
  msgid "Please enter a valid username."
@@ -3091,45 +3276,14 @@ msgstr "Por favor ingrese un nombre de usuario válido"
3091
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3092
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3093
  msgid "Only administrators can see this field on edit profile forms."
3094
- msgstr "Sólo administradores pueden ver este campo en el editor de formularios de perfiles"
 
 
3095
 
3096
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3097
  msgid "As an administrator you cannot change your role."
3098
  msgstr "Como administrador, no puedes cambiar tu Rol"
3099
 
3100
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3101
- msgid ""
3102
- "\n"
3103
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3104
- "<p>His/her new password is: {{password}}</p>\n"
3105
- msgstr ""
3106
-
3107
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3108
- msgid "Admin Notification for User Password Reset"
3109
- msgstr ""
3110
-
3111
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3112
- msgid "Reset Key"
3113
- msgstr ""
3114
-
3115
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3116
- msgid "Reset Url"
3117
- msgstr ""
3118
-
3119
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3120
- msgid "Reset Link"
3121
- msgstr ""
3122
-
3123
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3124
- msgid ""
3125
- "\n"
3126
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3127
- "Username: {{username}}</p>\n"
3128
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3129
- "<p>To reset your password, visit the following address:<br/>\n"
3130
- "{{{reset_link}}}</p>\n"
3131
- msgstr ""
3132
-
3133
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3134
  msgid "[{{site_name}}] Password Reset"
3135
  msgstr "[{{site_name}}] Restaurar Contraseña"
@@ -3146,14 +3300,6 @@ msgstr ""
3146
  "\n"
3147
  "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
3148
 
3149
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3150
- msgid "[{{site_name}}] Password Reset Successfully"
3151
- msgstr ""
3152
-
3153
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3154
- msgid "Password Reset Success Email"
3155
- msgstr ""
3156
-
3157
  #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3158
  msgid "User Nicename"
3159
  msgstr "Nicename del Usuario"
@@ -3165,12 +3311,18 @@ msgid "None"
3165
  msgstr "Ninguno"
3166
 
3167
  #: profile-builder-2.0/admin/admin-functions.php:132
3168
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3169
- msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
 
 
 
 
3170
 
3171
  #: profile-builder-2.0/admin/admin-functions.php:148
3172
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3173
- msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
 
 
3174
 
3175
  #: profile-builder-2.0/admin/general-settings.php:179
3176
  msgid "Username and Email"
@@ -3178,31 +3330,49 @@ msgstr "Usuario o Email"
3178
 
3179
  #: profile-builder-2.0/admin/general-settings.php:184
3180
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3181
- msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
 
 
3182
 
3183
  #: profile-builder-2.0/admin/general-settings.php:185
3184
  msgid "\"Username\" - users can Log In only with Username."
3185
- msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
 
 
3186
 
3187
  #: profile-builder-2.0/admin/general-settings.php:186
3188
  msgid "\"Email\" - users can Log In only with Email."
3189
  msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
3190
 
3191
  #: profile-builder-2.0/admin/manage-fields.php:124
3192
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3193
- msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
 
 
 
 
 
3194
 
3195
  #: profile-builder-2.0/admin/manage-fields.php:125
3196
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3197
- msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)"
 
 
 
 
 
 
3198
 
3199
  #: profile-builder-2.0/admin/manage-fields.php:135
3200
  msgid "User Roles"
3201
  msgstr "Roles de Usuario"
3202
 
3203
  #: profile-builder-2.0/admin/manage-fields.php:135
3204
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3205
- msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
 
 
 
3206
 
3207
  #: profile-builder-2.0/admin/manage-fields.php:136
3208
  msgid "User Roles Order"
@@ -3210,11 +3380,14 @@ msgstr "Orden de Roles de Usuario"
3210
 
3211
  #: profile-builder-2.0/admin/manage-fields.php:136
3212
  msgid "Save the user role order from the user roles checkboxes"
3213
- msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
 
3214
 
3215
  #: profile-builder-2.0/admin/manage-fields.php:1128
3216
- msgid "Please select at least one user role\n"
3217
- msgstr "Por favor seleccione al menos un rol de usuario\n"
 
 
3218
 
3219
  #: profile-builder-2.0/admin/register-version.php:22
3220
  msgid "Profile Builder Register"
@@ -3225,8 +3398,11 @@ msgid "The serial number is about to expire soon!"
3225
  msgstr "¡El número de serie está a punto de expirar!"
3226
 
3227
  #: profile-builder-2.0/admin/register-version.php:81
3228
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3229
- msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
 
 
 
3230
 
3231
  #: profile-builder-2.0/admin/register-version.php:83
3232
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
@@ -3241,8 +3417,16 @@ msgid "show"
3241
  msgstr "mostrar"
3242
 
3243
  #: profile-builder-2.0/features/functions.php:736
3244
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3245
- msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
 
 
 
 
 
 
 
 
3246
 
3247
  #: profile-builder-2.0/front-end/class-formbuilder.php:659
3248
  msgid "User to edit:"
@@ -3289,11 +3473,14 @@ msgstr "Ver todos los parámetros de código corto adicionales"
3289
 
3290
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3291
  msgid "displays only the users that you specified the user_id for"
3292
- msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
 
3293
 
3294
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3295
  msgid "displays all users except the ones you specified the user_id for"
3296
- msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
 
 
3297
 
3298
  #: profile-builder-2.0/features/functions.php:566
3299
  msgid "Minimum length of %d characters"
@@ -3314,24 +3501,46 @@ msgid "Valid tags {{reply_to}} and {{site_name}}"
3314
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3315
 
3316
  #: profile-builder-2.0/admin/admin-bar.php:48
3317
- msgid "Choose which user roles view the admin bar in the front-end of the website."
3318
- msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
 
 
 
3319
 
3320
  #: profile-builder-2.0/admin/manage-fields.php:129
3321
- 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"
3322
- msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
 
 
 
 
 
 
3323
 
3324
  #: profile-builder-2.0/admin/manage-fields.php:1055
3325
- msgid "The meta-name cannot be empty\n"
3326
- msgstr "El meta-nombre no puede ser vacío\n"
 
 
3327
 
3328
  #: profile-builder-2.0/admin/register-version.php:69
3329
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3330
- msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibió"
 
 
 
 
3331
 
3332
  #: profile-builder-2.0/admin/register-version.php:243
3333
- 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>"
3334
- msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
 
 
 
 
 
 
 
3335
 
3336
  #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3337
  #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
@@ -3360,8 +3569,15 @@ msgid "Cancel"
3360
  msgstr "Cancelar"
3361
 
3362
  #: profile-builder-2.0/features/functions.php:740
3363
- 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"
3364
- msgstr "Para permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
 
 
 
 
 
 
 
3365
 
3366
  #: profile-builder-2.0/front-end/login.php:144
3367
  msgid "Invalid username."
@@ -3381,13 +3597,21 @@ msgid "Lost your password?"
3381
  msgstr "¿Perdió su contraseña?"
3382
 
3383
  #: profile-builder-2.0/index.php:34
3384
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3385
- msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
 
 
 
 
3386
 
3387
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3388
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3389
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3390
- msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
 
 
 
 
3391
 
3392
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3393
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
@@ -3398,8 +3622,12 @@ msgid "Your selected password at signup"
3398
  msgstr "Su contraseña seleccionada al inscribirse"
3399
 
3400
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3401
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3402
- msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
 
 
 
 
3403
 
3404
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3405
  msgid "This form is empty."
@@ -3418,8 +3646,12 @@ msgid "Choose..."
3418
  msgstr "Escoger..."
3419
 
3420
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3421
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3422
- msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
 
 
 
 
3423
 
3424
  #: profile-builder-2.0/admin/admin-bar.php:10
3425
  msgid "Show/Hide the Admin Bar on the Front-End"
@@ -3463,8 +3695,13 @@ msgid "Save Changes"
3463
  msgstr "Salvar Cambios"
3464
 
3465
  #: profile-builder-2.0/admin/admin-functions.php:37
3466
- 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 )"
3467
- msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
 
 
 
 
 
3468
 
3469
  #: profile-builder-2.0/admin/admin-functions.php:37
3470
  #: profile-builder-2.0/admin/general-settings.php:10
@@ -3517,8 +3754,11 @@ msgid "<strong>Profile Builder </strong>"
3517
  msgstr "<strong>Profile Builder </strong>"
3518
 
3519
  #: profile-builder-2.0/admin/basic-info.php:31
3520
- msgid "The best way to add front-end registration, edit profile and login forms."
3521
- msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
 
 
 
3522
 
3523
  #: profile-builder-2.0/admin/basic-info.php:33
3524
  msgid "For Modern User Interaction"
@@ -3543,8 +3783,12 @@ msgid "Extra Features"
3543
  msgstr "Características extras."
3544
 
3545
  #: profile-builder-2.0/admin/basic-info.php:52
3546
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3547
- msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
 
 
 
 
3548
 
3549
  #: profile-builder-2.0/admin/basic-info.php:53
3550
  msgid "Enable extra features"
@@ -3559,44 +3803,66 @@ msgid "Admin Approval (*)"
3559
  msgstr "Aprobación del Admin (*)"
3560
 
3561
  #: profile-builder-2.0/admin/basic-info.php:62
3562
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3563
- msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
 
 
 
 
 
3564
 
3565
  #: profile-builder-2.0/admin/basic-info.php:65
3566
  msgid "Email Confirmation"
3567
  msgstr "Confirmación de Email"
3568
 
3569
  #: profile-builder-2.0/admin/basic-info.php:66
3570
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3571
- msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
 
 
 
 
 
3572
 
3573
  #: profile-builder-2.0/admin/basic-info.php:69
3574
  msgid "Minimum Password Length and Strength Meter"
3575
  msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3576
 
3577
  #: profile-builder-2.0/admin/basic-info.php:70
3578
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3579
- msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
 
 
 
 
3580
 
3581
  #: profile-builder-2.0/admin/basic-info.php:73
3582
  msgid "Login with Email or Username"
3583
  msgstr "Autenticación con Email o Nombre de Usuario"
3584
 
3585
  #: profile-builder-2.0/admin/basic-info.php:74
3586
- msgid "Allow users to log in with their email or username when accessing your site."
3587
- msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
 
 
 
3588
 
3589
  #: profile-builder-2.0/admin/basic-info.php:87
3590
  msgid "Customize Your Forms The Way You Want (*)"
3591
  msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3592
 
3593
  #: profile-builder-2.0/admin/basic-info.php:88
3594
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3595
- msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
 
 
 
 
3596
 
3597
  #: profile-builder-2.0/admin/basic-info.php:90
3598
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3599
- msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
 
3600
 
3601
  #: profile-builder-2.0/admin/basic-info.php:92
3602
  msgid "Get started with extra fields"
@@ -3655,8 +3921,12 @@ msgid "Powerful Modules (**)"
3655
  msgstr "Módulos Potentes (**)"
3656
 
3657
  #: profile-builder-2.0/admin/basic-info.php:126
3658
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3659
- msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
 
 
 
 
3660
 
3661
  #: profile-builder-2.0/admin/basic-info.php:128
3662
  msgid "Enable your modules"
@@ -3676,16 +3946,26 @@ msgid "User Listing"
3676
  msgstr "Listado de Usuario"
3677
 
3678
  #: profile-builder-2.0/admin/basic-info.php:138
3679
- 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."
3680
- msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
 
 
 
 
 
 
3681
 
3682
  #: profile-builder-2.0/admin/basic-info.php:144
3683
  msgid "Email Customizer"
3684
  msgstr "Personalizador de Email"
3685
 
3686
  #: profile-builder-2.0/admin/basic-info.php:145
3687
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3688
- msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
 
 
 
 
3689
 
3690
  #: profile-builder-2.0/admin/basic-info.php:148
3691
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
@@ -3695,8 +3975,13 @@ msgid "Custom Redirects"
3695
  msgstr "Redirecciones Personalizadas"
3696
 
3697
  #: profile-builder-2.0/admin/basic-info.php:149
3698
- 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."
3699
- msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
 
 
 
 
 
3700
 
3701
  #: profile-builder-2.0/admin/basic-info.php:154
3702
  #: profile-builder-2.0/modules/modules.php:75
@@ -3704,8 +3989,13 @@ msgid "Multiple Registration Forms"
3704
  msgstr "Formas de Registro Múltiple"
3705
 
3706
  #: profile-builder-2.0/admin/basic-info.php:155
3707
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3708
- msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
 
 
 
 
 
3709
 
3710
  #: profile-builder-2.0/admin/basic-info.php:158
3711
  #: profile-builder-2.0/modules/modules.php:82
@@ -3713,8 +4003,13 @@ msgid "Multiple Edit-profile Forms"
3713
  msgstr "Formas de Edición de Múltiples Perfiles"
3714
 
3715
  #: profile-builder-2.0/admin/basic-info.php:159
3716
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3717
- msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
 
 
 
 
 
3718
 
3719
  #: profile-builder-2.0/admin/basic-info.php:187
3720
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
@@ -3757,8 +4052,12 @@ msgid "No"
3757
  msgstr "No"
3758
 
3759
  #: profile-builder-2.0/admin/general-settings.php:61
3760
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3761
- msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
 
 
 
 
3762
 
3763
  #: profile-builder-2.0/admin/general-settings.php:69
3764
  msgid "\"Email Confirmation\" Landing Page:"
@@ -3769,24 +4068,41 @@ msgid "Existing Pages"
3769
  msgstr "Páginas Existentes"
3770
 
3771
  #: profile-builder-2.0/admin/general-settings.php:89
3772
- 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."
3773
- msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
 
 
 
 
 
 
 
3774
 
3775
  #: profile-builder-2.0/admin/general-settings.php:100
3776
  msgid "\"Admin Approval\" Activated:"
3777
  msgstr "\"Aprobación del Admin\" Activada:"
3778
 
3779
  #: profile-builder-2.0/admin/general-settings.php:108
3780
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3781
- msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
 
 
 
3782
 
3783
  #: profile-builder-2.0/admin/general-settings.php:165
3784
  msgid "\"Admin Approval\" Feature:"
3785
  msgstr "Característica \"Aprobación del Admin\":"
3786
 
3787
  #: profile-builder-2.0/admin/general-settings.php:168
3788
- 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."
3789
- msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
 
 
 
 
 
 
 
3790
 
3791
  #: profile-builder-2.0/admin/general-settings.php:175
3792
  msgid "Allow Users to Log in With:"
@@ -3821,8 +4137,12 @@ msgid "Minimum Password Length:"
3821
  msgstr "Tamaño Mínimo de Contraseña:"
3822
 
3823
  #: profile-builder-2.0/admin/general-settings.php:198
3824
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3825
- msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
 
 
 
 
3826
 
3827
  #: profile-builder-2.0/admin/general-settings.php:205
3828
  msgid "Minimum Password Strength:"
@@ -3871,23 +4191,35 @@ msgstr "ID"
3871
  #: profile-builder-2.0/admin/manage-fields.php:121
3872
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3873
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3874
- 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"
3875
- msgstr "Un ID único y auto-generado para este campo particular<br/> Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita<br/>No puede ser editado"
 
 
 
 
 
 
3876
 
3877
  #: profile-builder-2.0/admin/manage-fields.php:122
3878
  msgid "Description"
3879
  msgstr "Descripción"
3880
 
3881
  #: profile-builder-2.0/admin/manage-fields.php:122
3882
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3883
- msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
 
 
 
 
3884
 
3885
  #: profile-builder-2.0/admin/manage-fields.php:123
3886
  msgid "Row Count"
3887
  msgstr "Cantidad de Filas"
3888
 
3889
  #: profile-builder-2.0/admin/manage-fields.php:123
3890
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
 
 
3891
  msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
3892
 
3893
  #: profile-builder-2.0/admin/manage-fields.php:124
@@ -3903,8 +4235,12 @@ msgid "Avatar Size"
3903
  msgstr "Tamaño del Avatar"
3904
 
3905
  #: profile-builder-2.0/admin/manage-fields.php:126
3906
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3907
- msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
 
 
 
 
3908
 
3909
  #: profile-builder-2.0/admin/manage-fields.php:127
3910
  msgid "Date-format"
@@ -3915,8 +4251,14 @@ msgid "Terms of Agreement"
3915
  msgstr "Términos del Acuerdo"
3916
 
3917
  #: profile-builder-2.0/admin/manage-fields.php:128
3918
- 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;"
3919
- msgstr "Entrar una descripción detallada de los términos del acuerdo para que el usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
 
 
 
 
 
 
3920
 
3921
  #: profile-builder-2.0/admin/manage-fields.php:129
3922
  msgid "Options"
@@ -3928,7 +4270,8 @@ msgstr "Etiquetas"
3928
 
3929
  #: profile-builder-2.0/admin/manage-fields.php:130
3930
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3931
- msgstr "Entrar una lista separada por coma de etiquetas<br/>Visible para los usuarios"
 
3932
 
3933
  #: profile-builder-2.0/admin/manage-fields.php:137
3934
  msgid "Default Value"
@@ -3954,8 +4297,12 @@ msgid "Default Option(s)"
3954
  msgstr "Opción(es) Por Defecto"
3955
 
3956
  #: profile-builder-2.0/admin/manage-fields.php:139
3957
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3958
- msgstr "Especificar la opción que debería ser seleccionada por defecto<br/>Si hay valores múltiples, separarlos con una ',' (coma)"
 
 
 
 
3959
 
3960
  #: profile-builder-2.0/admin/manage-fields.php:153
3961
  msgid "Default Content"
@@ -3979,8 +4326,14 @@ msgid "Overwrite Existing"
3979
  msgstr "Sobrescribir Existente"
3980
 
3981
  #: profile-builder-2.0/admin/manage-fields.php:161
3982
- 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"
3983
- msgstr "Seleccionar '' adicionará el campo a la lista, pero sobrescribirá cualquier otro campo en la base de datos que tiene el mismo meta-nombre<br/>Usar esto bajo su propio riesgo "
 
 
 
 
 
 
3984
 
3985
  #: profile-builder-2.0/admin/manage-fields.php:167
3986
  msgid "Field Properties"
@@ -4064,8 +4417,12 @@ msgid "Biographical Info"
4064
  msgstr "Información Biográfica"
4065
 
4066
  #: profile-builder-2.0/admin/manage-fields.php:218
4067
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4068
- msgstr "Compartir una pequeña información biográfica para llenar su perfil. Esto puede mostrarse públicamente. "
 
 
 
 
4069
 
4070
  #: profile-builder-2.0/admin/manage-fields.php:219
4071
  #: profile-builder-2.0/front-end/recover.php:73
@@ -4088,58 +4445,90 @@ msgstr "Escriba su contraseña nuevamente."
4088
 
4089
  #: profile-builder-2.0/admin/manage-fields.php:980
4090
  #: profile-builder-2.0/admin/manage-fields.php:1137
4091
- msgid "You must select a field\n"
4092
- msgstr "Tiene que seleccionar un campo\n"
 
 
4093
 
4094
  #: profile-builder-2.0/admin/manage-fields.php:990
4095
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4096
- msgstr "Por favor escoja un tipo de campo diferente dado que este solo existe en su forma (debe ser único)\n"
 
 
 
 
4097
 
4098
  #: profile-builder-2.0/admin/manage-fields.php:1001
4099
- msgid "The entered avatar size is not between 20 and 200\n"
4100
- msgstr "El tamaño del avatar entrado no está entre 20 y 200\n"
 
 
4101
 
4102
  #: profile-builder-2.0/admin/manage-fields.php:1004
4103
- msgid "The entered avatar size is not numerical\n"
4104
- msgstr "El tamaño del avatar entrado no es numérico\n"
 
 
4105
 
4106
  #: profile-builder-2.0/admin/manage-fields.php:1012
4107
- msgid "The entered row number is not numerical\n"
4108
- msgstr "El número de la fila entrado no es numérico\n"
 
 
4109
 
4110
  #: profile-builder-2.0/admin/manage-fields.php:1015
4111
- msgid "You must enter a value for the row number\n"
4112
- msgstr "Usted tiene que entrar un valor para el número de la fila\n"
 
 
4113
 
4114
  #: profile-builder-2.0/admin/manage-fields.php:1036
4115
- msgid "The entered value for the Datepicker is not a valid date-format\n"
4116
- msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
 
 
4117
 
4118
  #: profile-builder-2.0/admin/manage-fields.php:1039
4119
- msgid "You must enter a value for the date-format\n"
4120
- msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
 
 
4121
 
4122
  #: profile-builder-2.0/admin/manage-fields.php:1067
4123
  #: profile-builder-2.0/admin/manage-fields.php:1075
4124
  #: profile-builder-2.0/admin/manage-fields.php:1086
4125
- msgid "That meta-name is already in use\n"
4126
- msgstr "Ese meta nombre ya está en uso\n"
 
 
4127
 
4128
  #: profile-builder-2.0/admin/manage-fields.php:1117
4129
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4130
- msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
 
 
 
 
4131
 
4132
  #: profile-builder-2.0/admin/manage-fields.php:1121
4133
- msgid "The following option did not coincide with the ones in the options list: %s\n"
4134
- msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
 
 
4135
 
4136
  #: profile-builder-2.0/admin/manage-fields.php:1144
4137
- msgid "That field is already added in this form\n"
4138
- msgstr "Ese campo ya está añadido en esta forma\n"
 
 
4139
 
4140
  #: profile-builder-2.0/admin/manage-fields.php:1193
4141
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4142
- msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
 
 
 
 
4143
 
4144
  #: profile-builder-2.0/admin/manage-fields.php:1193
4145
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
@@ -4173,19 +4562,28 @@ msgstr "Editar"
4173
 
4174
  #: profile-builder-2.0/admin/manage-fields.php:1208
4175
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4176
- msgstr "Usar estos códigos cortos en las páginas en las que quiere que las formas se muestren:"
 
 
4177
 
4178
  #: profile-builder-2.0/admin/register-version.php:14
4179
  msgid "Register Your Version"
4180
- msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
 
 
 
4181
 
4182
  #: profile-builder-2.0/admin/register-version.php:14
4183
  msgid "Register Version"
4184
  msgstr "Registre la Versión"
4185
 
4186
  #: profile-builder-2.0/admin/register-version.php:70
4187
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4188
- msgstr "Si usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico."
 
 
 
 
4189
 
4190
  #: profile-builder-2.0/admin/register-version.php:72
4191
  msgid " Serial Number:"
@@ -4204,8 +4602,13 @@ msgid "The serial number couldn't be validated because it expired!"
4204
  msgstr "¡El número de serie no ha podido ser validado porque expiró!"
4205
 
4206
  #: profile-builder-2.0/admin/register-version.php:85
4207
- 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!"
4208
- msgstr "El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! "
 
 
 
 
 
4209
 
4210
  #: profile-builder-2.0/admin/register-version.php:87
4211
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
@@ -4241,7 +4644,9 @@ msgstr "Eliminar"
4241
 
4242
  #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4243
  msgid "You can add the information for the %s after you add a entry"
4244
- msgstr "Usted puede adicionar la información para el %s luego de que adicione una entrada"
 
 
4245
 
4246
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4247
  #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
@@ -4305,7 +4710,8 @@ msgstr "¿Usted desea"
4305
 
4306
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4307
  msgid "Your session has expired! Please refresh the page and try again"
4308
- msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
 
4309
 
4310
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4311
  msgid "User successfully approved!"
@@ -4327,7 +4733,8 @@ msgstr "¡Usted o no tiene permiso para esa acción o hubo un error"
4327
 
4328
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4329
  msgid "Your session has expired! Please refresh the page and try again."
4330
- msgstr "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente."
 
4331
 
4332
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4333
  msgid "Users successfully approved!"
@@ -4368,12 +4775,20 @@ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4368
  msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)."
4369
 
4370
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4371
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4372
- msgstr "<strong>ERROR</strong>: Su cuenta tiene que ser confirmada por un administrador antes de que pueda autenticarse."
 
 
 
 
4373
 
4374
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4375
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4376
- msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Recuperar Contraseña\""
 
 
 
 
4377
 
4378
  #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4379
  msgid "delete this user?"
@@ -4493,7 +4908,8 @@ msgstr "Los usuarios seleccionados han sido activados"
4493
 
4494
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4495
  msgid "The selected users have had their activation emails resent"
4496
- msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
 
4497
 
4498
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4499
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
@@ -4536,11 +4952,18 @@ msgstr "¡Un nuevo suscriptor ha sido registrado!"
4536
 
4537
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4538
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4539
- msgstr "Nuevo suscriptor el %1$s.<br/><br/>Nombre de Usuario:%2$s<br/>E-mail:%3$s<br/>"
 
 
4540
 
4541
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4542
- 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!"
4543
- msgstr "La característica \"Aprobación del Admin\" fue activada en el tiempo de registro, ¡por favor recuerde que necesita aprobar a este usuario antes de que él/ella pueda autenticarse!"
 
 
 
 
 
4544
 
4545
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4546
  msgid "[%1$s] Your new account information"
@@ -4548,16 +4971,24 @@ msgstr "[%1$s] La información de su nueva cuenta"
4548
 
4549
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4550
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4551
- msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Su nombre de usuario es:%2$s y contraseña:%3$s"
 
 
4552
 
4553
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4554
  #: profile-builder-2.0/front-end/register.php:125
4555
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4556
- msgstr "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. Usted será notificado via email."
 
 
 
 
4557
 
4558
  #: profile-builder-2.0/features/login-widget/login-widget.php:10
4559
  msgid "This login widget lets you add a login form in the sidebar."
4560
- msgstr "El widget de autenticación le permite añadir una forma de autenticación en la barra lateral."
 
 
4561
 
4562
  #: profile-builder-2.0/features/login-widget/login-widget.php:15
4563
  msgid "Profile Builder Login Widget"
@@ -4596,15 +5027,23 @@ msgstr "Solamente un administrador puede adicionar nuevos usuarios."
4596
 
4597
  #: profile-builder-2.0/front-end/class-formbuilder.php:146
4598
  msgid "Users can register themselves or you can manually create users here."
4599
- msgstr "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear usuarios aquí."
 
 
4600
 
4601
  #: profile-builder-2.0/front-end/class-formbuilder.php:149
4602
- msgid "Users cannot currently register themselves, but you can manually create users here."
4603
- msgstr "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted puede crear usuarios manualmente aquí."
 
 
 
 
4604
 
4605
  #: profile-builder-2.0/front-end/class-formbuilder.php:169
4606
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4607
- msgstr "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. %2s"
 
 
4608
 
4609
  #: profile-builder-2.0/front-end/class-formbuilder.php:169
4610
  msgid "Log out of this account."
@@ -4623,8 +5062,12 @@ msgid "here"
4623
  msgstr "aquí"
4624
 
4625
  #: profile-builder-2.0/features/functions.php:995
4626
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4627
- msgstr "Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s"
 
 
 
 
4628
 
4629
  #: profile-builder-2.0/front-end/class-formbuilder.php:315
4630
  #: profile-builder-2.0/front-end/class-formbuilder.php:322
@@ -4633,12 +5076,21 @@ msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
4633
 
4634
  #: profile-builder-2.0/front-end/class-formbuilder.php:318
4635
  #: profile-builder-2.0/front-end/class-formbuilder.php:328
4636
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4637
- msgstr "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación."
 
 
 
 
 
4638
 
4639
  #: profile-builder-2.0/front-end/class-formbuilder.php:324
4640
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4641
- msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
 
 
 
 
4642
 
4643
  #: profile-builder-2.0/front-end/class-formbuilder.php:347
4644
  msgid "Your profile has been successfully updated!"
@@ -4702,8 +5154,12 @@ msgid "Log out"
4702
  msgstr "Salir"
4703
 
4704
  #: profile-builder-2.0/front-end/recover.php:17
4705
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4706
- msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Resetear Contraseña\"."
 
 
 
 
4707
 
4708
  #: profile-builder-2.0/front-end/recover.php:94
4709
  msgid "Reset Password"
@@ -4738,8 +5194,14 @@ msgid "Check your e-mail for the confirmation link."
4738
  msgstr "Chequee su e-mail para el enlace de confirmación."
4739
 
4740
  #: profile-builder-2.0/front-end/recover.php:235
4741
- 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"
4742
- msgstr "Alguien pidió que la contraseña sea reseteada para la siguiente cuenta:<b>%1$s</b><br/>Si esto fue un error, solamente ignore este email y nada ocurrirá.<br/>Para resetear su contraseña, visite el siguiente enlace:%2$s"
 
 
 
 
 
 
4743
 
4744
  #: profile-builder-2.0/front-end/recover.php:238
4745
  msgid "Password Reset from \"%1$s\""
@@ -4747,7 +5209,8 @@ msgstr "Reseteo de Contraseña desde \"%1$s\""
4747
 
4748
  #: profile-builder-2.0/front-end/recover.php:245
4749
  msgid "There was an error while trying to send the activation link to %1$s!"
4750
- msgstr "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!"
 
4751
 
4752
  #: profile-builder-2.0/front-end/recover.php:207
4753
  msgid "The email address entered wasn't found in the database!"
@@ -4771,8 +5234,12 @@ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4771
  msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\""
4772
 
4773
  #: profile-builder-2.0/front-end/recover.php:303
4774
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4775
- msgstr "%1$s ha pedido un cambio de contraseña via la característica de reseteo de contraseña.<br/>Su nueva contraseña es:%2$s"
 
 
 
 
4776
 
4777
  #: profile-builder-2.0/front-end/recover.php:320
4778
  msgid "The entered passwords don't match!"
@@ -4804,7 +5271,7 @@ msgstr "Su email fue confirmado satisfactoriamente."
4804
 
4805
  #: profile-builder-2.0/front-end/register.php:153
4806
  msgid "There was an error while trying to activate the user."
4807
- msgstr "Hubo un error mientras se trataba de activar el usuario."
4808
 
4809
  #: pb-add-on-woocommerce/index.php:393
4810
  #: profile-builder-2.0/front-end/default-fields/email/email.php:47
@@ -4873,11 +5340,13 @@ msgstr "Para utilizar reCAPTCHA usted tiene que obtener la llave de API desde"
4873
 
4874
  #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4875
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4876
- msgstr "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!"
 
4877
 
4878
  #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4879
  msgid "To use reCAPTCHA you must get an API public key from:"
4880
- msgstr "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
 
4881
 
4882
  #: profile-builder-2.0/modules/modules.php:11
4883
  #: profile-builder-2.0/modules/modules.php:58
@@ -4885,8 +5354,11 @@ msgid "Modules"
4885
  msgstr "Módulos"
4886
 
4887
  #: profile-builder-2.0/modules/modules.php:59
4888
- msgid "Here you can activate / deactivate available modules for Profile Builder."
4889
- msgstr "Aquí usted puede activar/desactivar los módulos disponibles para Profile Builder."
 
 
 
4890
 
4891
  #: profile-builder-2.0/modules/modules.php:69
4892
  msgid "Name/Description"
@@ -4944,8 +5416,12 @@ msgid "URL"
4944
  msgstr "URL"
4945
 
4946
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4947
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4948
- msgstr "Estos ajustes están también replicados en la página de ajustes de \"Personalizador de Email de Usuario\" al salvar."
 
 
 
 
4949
 
4950
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4951
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
@@ -4998,14 +5474,17 @@ msgid ""
4998
  "<p>Username:{{username}}</p>\n"
4999
  "<p>E-mail:{{user_email}}</p>\n"
5000
  "<p>The Admin Approval feature was activated at the time of registration,\n"
5001
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
 
5002
  msgstr ""
5003
  "\n"
5004
  "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
5005
  "<p>Nombre de Usuario:{{username}}</p>\n"
5006
  "<p>E-mail:{{user_email}}</p>\n"
5007
- "<p>La característica de Aprobación del Admin fue activada en el tiempo de registro,\n"
5008
- "así que por favor recuerde que ¡necesita aprobar a este usuario antes de que pueda autenticarse!</p>\n"
 
 
5009
 
5010
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5011
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
@@ -5069,10 +5548,12 @@ msgid ""
5069
  "\n"
5070
  "<p>To activate your user, please click the following link:<br/>\n"
5071
  "{{{activation_link}}}</p>\n"
5072
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
 
5073
  msgstr ""
5074
  "\n"
5075
- "<p>Para activar su usuario, por favor haga clic en el enlace siguiente:<br/>\n"
 
5076
  "{{{activation_link}}}</p>\n"
5077
  "<p>Luego de activar, recibirá otro email con sus credenciales.</p>\n"
5078
 
@@ -5089,12 +5570,14 @@ msgid ""
5089
  "\n"
5090
  "<h3>Welcome to {{site_name}}!</h3>\n"
5091
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5092
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
 
5093
  msgstr ""
5094
  "\n"
5095
  "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
5096
  "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
5097
- "<p>Antes de que pueda acceder a su cuenta, un administrador necesita aprobarla. Usted será notificado via email..</p>\n"
 
5098
 
5099
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5100
  msgid "A new account has been created for you on {{site_name}}"
@@ -5104,11 +5587,13 @@ msgstr "Una nueva cuenta ha sido creada para usted en {{site_name}}"
5104
  msgid ""
5105
  "\n"
5106
  "<h3>Good News!</h3>\n"
5107
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
 
5108
  msgstr ""
5109
  "\n"
5110
  "<h3>¡Buenas Noticias!</h3>\n"
5111
- "<p>Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
 
5112
 
5113
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5114
  msgid "Your account on {{site_name}} has been approved!"
@@ -5122,11 +5607,13 @@ msgstr "Notificación de Aprobación de Usuario"
5122
  msgid ""
5123
  "\n"
5124
  "<h3>Hello,</h3>\n"
5125
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
 
5126
  msgstr ""
5127
  "\n"
5128
  "<h3>Hola,</h3>\n"
5129
- "<p>Desafortunadamente un administrador ha desaprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
 
5130
 
5131
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5132
  msgid "Your account on {{site_name}} has been unapproved!"
@@ -5202,13 +5689,19 @@ msgstr "El código corto estará disponible luego de que publique esta forma."
5202
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5203
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5204
  msgid "Use this shortcode on the page you want the form to be displayed:"
5205
- msgstr "Utilice este código corto en la página en la que desea que la forma se muestre:"
 
 
5206
 
5207
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5208
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5209
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5210
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5211
- msgstr "<span style=\"color:red;\">Nota:</span> ¡cambiar el título de la forma también cambia el código corto!"
 
 
 
 
5212
 
5213
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5214
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
@@ -5229,11 +5722,17 @@ msgstr "Mostrar Mensajes"
5229
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5230
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5231
  msgid "Allowed time to display any success messages (in seconds)"
5232
- msgstr "Tiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)"
 
5233
 
5234
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5235
- 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"
5236
- msgstr "Especificar la URL de la página a la que los usuarios serán redireccionados una vez que actualizaron su perfil usando esta forma<br/>Utilizar el siguiente formato: http://www.mysite.com"
 
 
 
 
 
5237
 
5238
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5239
  msgid "After Profile Update..."
@@ -5304,20 +5803,39 @@ msgid "Set Role"
5304
  msgstr "Establecer Rol"
5305
 
5306
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5307
- 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"
5308
- msgstr "Escoger qué rol el usuario va a tener luego de que se registra<br/>Si no se especifica, se le asigna por defecto el rol establecido en los ajustes de WordPress"
 
 
 
 
 
5309
 
5310
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5311
  msgid "Automatically Log In"
5312
  msgstr "Autenticarse Automáticamente"
5313
 
5314
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5315
- 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"
5316
- msgstr "Cuando autenticarse automáticamente en el nuevo usuario registrado o no<br/>Solamente funciona en sitios simples sin las características \"Aprobación de Admin\" y \"Confirmación por Email\" activadas<br/>ADVERTENCIA: Hacer caché en la forma de registro va a hacer que la autenticación automática no funcione"
 
 
 
 
 
 
 
 
 
5317
 
5318
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5319
- 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"
5320
- msgstr "Especificar la URL de la página a la que los usuarios serán redirigidos una vez registrados usando esta forma<br/>Utilice el siguiente formato: http://www.mysite.com"
 
 
 
 
 
5321
 
5322
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5323
  msgid "After Registration..."
@@ -5498,16 +6016,23 @@ msgid "Extra shortcode parameters"
5498
  msgstr "Parámetros de código corto adicionales"
5499
 
5500
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5501
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5502
- msgstr "muestra usuarios que tienen cierto meta valor en un cierto meta campo (adicional)"
 
 
 
 
5503
 
5504
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5505
  msgid "Example:"
5506
  msgstr "Ejemplo:"
5507
 
5508
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5509
- msgid "Remember though, that the field-value combination must exist in the database."
5510
- msgstr "Recuerde sin embargo, que la combinación campo-valor tiene que existir en la base de datos."
 
 
 
5511
 
5512
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5513
  msgid "Random (very slow on large databases > 10K user)"
@@ -5518,8 +6043,12 @@ msgid "Roles to Display"
5518
  msgstr "Roles a Mostrar"
5519
 
5520
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5521
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5522
- msgstr "Restringir la lista de usuario solamente a los roles seleccionados<br/>Si no se especifica, se amplía a todos los roles existentes"
 
 
 
 
5523
 
5524
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5525
  msgid "Number of Users/Page"
@@ -5530,16 +6059,24 @@ msgid "Default Sorting Criteria"
5530
  msgstr "Criterio de Ordenamiento Por Defecto"
5531
 
5532
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5533
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5534
- msgstr "Establecer el criterio de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
 
 
 
 
5535
 
5536
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5537
  msgid "Default Sorting Order"
5538
  msgstr "Orden de Ordenamiento Por Defecto"
5539
 
5540
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5541
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5542
- msgstr "Establecer el orden de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
 
 
 
 
5543
 
5544
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5545
  msgid "Avatar Size (All-userlisting)"
@@ -5578,8 +6115,11 @@ msgid "Userlisting Settings"
5578
  msgstr "Ajustes de Userlisting "
5579
 
5580
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5581
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5582
- msgstr "¡Usted necesita activar la característica de Userlisting en la pestaña \"Módulos\"!"
 
 
 
5583
 
5584
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5585
  msgid "You can find it in the Profile Builder menu."
@@ -5587,4 +6127,4 @@ msgstr "Usted puede encontrarla en el menú de Profile Builder"
5587
 
5588
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5589
  msgid "No results found!"
5590
- msgstr "¡No se encontraron resultados!"
 
 
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2017-08-11 10:55+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
8
+ "X-Generator: Loco - https://localise.biz/\n"
9
  "Project-Id-Version: Profile Builder\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2017-08-11 10:54+0000\n"
12
+ "Last-Translator: bubico aa <localpbdev@mailinator.com>\n"
13
+ "Language-Team: Spanish (Spain)\n"
14
+ "Language: es-ES"
15
 
16
  #: profile-builder-2.0/admin/general-settings.php:154
17
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
30
  msgstr ""
31
 
32
  #: profile-builder-2.0/admin/manage-fields.php:127
33
+ msgid ""
34
+ "Specify the format of the date when using Datepicker<br/>Valid options: "
35
+ "mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-"
36
+ "dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, "
37
+ "defaults to mm/dd/yy"
38
  msgstr ""
39
 
40
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
41
+ msgid ""
42
+ "Individual redirects defined in shortcodes; <strong><em>"
43
+ "redirect_priority=\"top\"</em></strong> parameter can be added in any "
44
+ "shortcode, then that shortcode redirect will have priority over all other "
45
+ "redirects."
46
  msgstr ""
47
 
48
  #: profile-builder-2.0/admin/manage-fields.php:1217
49
+ msgid ""
50
+ "If you're interested in displaying different fields in the registration and "
51
+ "edit profile forms, please use the Multiple Registration & Edit Profile "
52
+ "Forms Modules."
53
  msgstr ""
54
 
55
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
57
  msgstr ""
58
 
59
  #: profile-builder-2.0/admin/register-version.php:251
60
+ msgid ""
61
+ "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
62
+ "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
63
+ "product downloads, automatic updates and support. %3$sRenew now and get "
64
+ "40&#37; off %4$s %6$sDismiss%7$s</p>"
65
  msgstr ""
66
 
67
  #: profile-builder-2.0/admin/register-version.php:246
68
+ msgid ""
69
+ "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
70
+ "%1$sRenew Your Licence%2$s to continue receiving access to product downloads,"
71
+ " automatic updates and support. %3$sRenew now and get 40&#37; off %4$s "
72
+ "%5$sDismiss%6$s</p>"
73
  msgstr ""
74
 
75
  #: profile-builder-2.0/front-end/recover.php:159
76
+ msgid ""
77
+ "You are already logged in. You can change your password on the edit profile "
78
+ "form."
79
  msgstr ""
80
 
81
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
82
  msgid "Your site url will look like this:<br>"
83
  msgstr ""
84
 
 
 
 
 
85
  #: profile-builder-2.0/features/functions.php:896
86
  msgid "<br><br>Also, you will be able to visit your site at "
87
  msgstr ""
88
 
89
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
90
+ msgid ""
91
+ "Privacy: I would like my site to appear in search engines, and in public "
92
+ "listings around this network."
93
  msgstr ""
94
 
 
 
 
 
95
  #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
96
  msgid "Site URL slug"
97
  msgstr ""
98
 
 
 
 
 
99
  #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
100
  #: profile-builder-2.0/modules/user-listing/userlisting.php:118
101
  msgid "Blog URL"
110
  msgstr ""
111
 
112
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
113
+ msgid ""
114
+ "Allow your users to have <strong>paid accounts with Profile Builder</strong>."
115
+ " %1$sFind out how >%2$s %3$sDismiss%4$s"
116
  msgstr ""
117
 
 
 
 
 
 
 
 
 
118
  #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
119
  #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
120
  #: pb-add-on-woocommerce/index.php:493
126
  msgstr ""
127
 
128
  #: pb-add-on-woocommerce/index.php:256
129
+ msgid ""
130
+ "Select which WooCommerce Billing fields to display to the user ( drag and "
131
+ "drop to re-order ) and which should be required"
132
  msgstr ""
133
 
134
  #: pb-add-on-woocommerce/index.php:257
152
  msgstr ""
153
 
154
  #: pb-add-on-woocommerce/index.php:275
155
+ msgid ""
156
+ "Select which WooCommerce Shipping fields to display to the user ( drag and "
157
+ "drop to re-order ) and which should be required"
158
  msgstr ""
159
 
160
  #: pb-add-on-woocommerce/index.php:276
205
  msgid "Available in Hobbyist and Pro Versions"
206
  msgstr ""
207
 
 
 
 
 
 
 
 
 
208
  #: profile-builder-2.0/admin/basic-info.php:99
209
  msgid "Timepicker"
210
  msgstr ""
217
  msgid "Currency Select"
218
  msgstr ""
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  #: profile-builder-2.0/admin/basic-info.php:163
221
+ msgid ""
222
+ "Set up a repeating group of fields on register and edit profile forms. Limit "
223
+ "the number of repeated groups for each user role."
224
  msgstr ""
225
 
226
  #: profile-builder-2.0/admin/general-settings.php:59
227
+ msgid ""
228
+ "This works with front-end forms only. Recommended to redirect WP default "
229
+ "registration to a Profile Builder one using \"Custom Redirects\" module."
230
  msgstr ""
231
 
232
  #: profile-builder-2.0/admin/manage-fields.php:120
233
+ msgid ""
234
+ "Use this in conjunction with WordPress functions to display the value in the "
235
+ "page of your choosing<br/>Auto-completed but in some cases editable (in "
236
+ "which case it must be unique)<br/>Changing this might take long in case of a "
237
+ "very big user-count"
238
  msgstr ""
239
 
240
  #: profile-builder-2.0/admin/manage-fields.php:143
242
  msgstr ""
243
 
244
  #: profile-builder-2.0/admin/manage-fields.php:143
245
+ msgid ""
246
+ "Whether the currency symbol should be displayed after the currency name in "
247
+ "the select option."
248
  msgstr ""
249
 
250
  #: profile-builder-2.0/admin/manage-fields.php:144
260
  msgstr ""
261
 
262
  #: profile-builder-2.0/admin/manage-fields.php:145
263
+ msgid ""
264
+ "Enter a comma separated list of possible values. Upon registration if the "
265
+ "value provided by the user does not match one of these values, the user will "
266
+ "not be registered."
267
  msgstr ""
268
 
269
  #: profile-builder-2.0/admin/manage-fields.php:146
283
  msgstr ""
284
 
285
  #: profile-builder-2.0/admin/manage-fields.php:148
286
+ msgid ""
287
+ "Enter your Google Maps API key ( <a href=\"https://console.developers.google."
288
+ "com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API "
289
+ "key</a> ). If more than one map fields are added to a form the API key from "
290
+ "the first map displayed will be used."
291
  msgstr ""
292
 
293
  #: profile-builder-2.0/admin/manage-fields.php:149
295
  msgstr ""
296
 
297
  #: profile-builder-2.0/admin/manage-fields.php:149
298
+ msgid ""
299
+ "The latitude at which the map should be displayed when no pins are attached."
300
  msgstr ""
301
 
302
  #: profile-builder-2.0/admin/manage-fields.php:150
304
  msgstr ""
305
 
306
  #: profile-builder-2.0/admin/manage-fields.php:150
307
+ msgid ""
308
+ "The longitude at which the map should be displayed when no pins are attached."
309
  msgstr ""
310
 
311
  #: profile-builder-2.0/admin/manage-fields.php:151
324
  msgid "The height of the map."
325
  msgstr ""
326
 
 
 
 
 
327
  #: profile-builder-2.0/admin/manage-fields.php:154
328
  msgid "Add your HTML (or text) content"
329
  msgstr ""
333
  msgstr ""
334
 
335
  #: profile-builder-2.0/admin/manage-fields.php:155
336
+ msgid ""
337
+ "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and "
338
+ "spaces."
339
  msgstr ""
340
 
341
  #: profile-builder-2.0/admin/manage-fields.php:155
354
  msgid "Change heading field size on front-end forms"
355
  msgstr ""
356
 
 
 
 
 
357
  #: profile-builder-2.0/admin/manage-fields.php:157
358
  msgid "Min allowed number value (0 to allow only positive numbers)"
359
  msgstr ""
360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  #: profile-builder-2.0/admin/manage-fields.php:159
362
  msgid "Number Step Value"
363
  msgstr ""
364
 
365
  #: profile-builder-2.0/admin/manage-fields.php:159
366
+ msgid ""
367
+ "Step value 1 to allow only integers, 0.1 to allow integers and numbers with "
368
+ "1 decimal"
369
  msgstr ""
370
 
371
  #: profile-builder-2.0/admin/manage-fields.php:159
373
  msgstr ""
374
 
375
  #: profile-builder-2.0/admin/manage-fields.php:159
376
+ msgid ""
377
+ "You can also use step value to specify the legal number intervals (eg. step "
378
+ "value 2 will allow only -4, -2, 0, 2 and so on)"
379
  msgstr ""
380
 
 
 
 
 
381
  #: profile-builder-2.0/admin/manage-fields.php:564
382
  msgid "Albania Lek"
383
  msgstr ""
642
  msgid "Mauritius Rupee"
643
  msgstr ""
644
 
 
 
 
 
645
  #: profile-builder-2.0/admin/manage-fields.php:631
646
  msgid "Mongolia Tughrik"
647
  msgstr ""
832
  msgstr ""
833
 
834
  #: profile-builder-2.0/admin/manage-fields.php:1097
835
+ msgid ""
836
+ "The meta-name can only contain lowercase letters, numbers, _ , - and no "
837
+ "spaces.\n"
838
  msgstr ""
839
 
840
  #: profile-builder-2.0/admin/manage-fields.php:1314
841
  msgid "Search Location"
842
  msgstr ""
843
 
 
 
 
 
 
 
 
 
 
844
  #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
845
  msgid "Conditional Logic"
846
  msgstr ""
853
  msgid "This field has conditional logic enabled."
854
  msgstr ""
855
 
 
 
 
 
856
  #: profile-builder-2.0/front-end/class-formbuilder.php:124
857
+ msgid ""
858
+ "The role of the created user set to the default role. Only an administrator "
859
+ "can register a user with the role assigned to this form."
860
  msgstr ""
861
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862
  #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
863
  msgid "Value must be a multiplier of %1$s"
864
  msgstr ""
1017
  msgstr ""
1018
 
1019
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1020
+ msgid ""
1021
+ "Enable limit to the number of fields to be generated by users in front end "
1022
+ "forms "
1023
  msgstr ""
1024
 
1025
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1039
  msgstr ""
1040
 
1041
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1042
+ msgid ""
1043
+ "The popup message to display when the limit of repeater groups is reached."
1044
  msgstr ""
1045
 
1046
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1069
 
1070
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1071
  #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1072
+ msgid ""
1073
+ "Please enter a unique field title.\n"
1074
  msgstr ""
1075
 
1076
  #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1090
  msgid "User Count"
1091
  msgstr ""
1092
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1093
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1094
  msgid "Choose the facet name that appears on the frontend"
1095
  msgstr ""
1110
  msgid "Choose the meta field for the facet menu"
1111
  msgstr ""
1112
 
 
 
 
 
1113
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1114
  msgid "Narrow the results"
1115
  msgstr ""
1142
  msgid "Search Settings"
1143
  msgstr ""
1144
 
1145
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1146
+ msgid "After Edit Profile"
1147
+ msgstr ""
 
1148
 
1149
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1150
+ msgid "After Successful Email Confirmation"
1151
+ msgstr ""
 
1152
 
1153
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1154
+ msgid "After Successful Password Reset"
1155
+ msgstr ""
 
1156
 
1157
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1158
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1159
+ msgstr ""
 
1160
 
1161
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1162
+ msgid "User ID / Username"
1163
+ msgstr ""
 
1164
 
1165
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1166
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1167
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1168
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1169
+ msgid "Redirect Type"
1170
+ msgstr ""
1171
 
1172
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1173
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1174
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1175
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1176
+ msgid "Redirect URL"
1177
+ msgstr ""
1178
 
1179
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1180
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1181
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1182
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1183
+ msgid ""
1184
+ "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}},"
1185
+ " {{user_nicename}}, {{http_referer}}"
1186
+ msgstr ""
1187
 
1188
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1189
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1190
+ msgid "Individual User Redirects"
1191
+ msgstr ""
1192
 
1193
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1194
+ msgid "... Choose"
1195
+ msgstr ""
1196
 
1197
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1198
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1199
+ msgid "User Role based Redirects"
1200
+ msgstr ""
1201
 
1202
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1203
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1204
+ msgid "Global Redirects"
1205
+ msgstr ""
1206
 
1207
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1208
+ msgid "Redirect Default WordPress Forms and Pages"
1209
+ msgstr ""
1210
 
1211
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1212
+ msgid "How does this work?"
1213
+ msgstr ""
1214
+
1215
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1216
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1217
+ msgstr ""
1218
+
1219
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1220
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1221
+ msgstr ""
1222
+
1223
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1224
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1225
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1226
+ msgstr ""
1227
+
1228
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1229
+ msgid ""
1230
+ "These redirects happen after a successful action, like registration or after "
1231
+ "a successful login."
1232
+ msgstr ""
1233
+
1234
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1235
+ msgid "Which redirect happens depends on the following priority:"
1236
+ msgstr ""
1237
+
1238
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1239
+ msgid "Redirect Default WordPress forms and pages"
1240
+ msgstr ""
1241
+
1242
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1243
+ msgid ""
1244
+ "With these you can redirect various WordPress forms and pages to pages "
1245
+ "created with profile builder."
1246
+ msgstr ""
1247
+
1248
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1249
+ msgid "Available tags for dynamic URLs"
1250
+ msgstr ""
1251
+
1252
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1253
+ msgid ""
1254
+ "You use the following tags in your URLs to redirect users to various pages."
1255
+ msgstr ""
1256
+
1257
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1258
+ msgid "generates a url of the current website homepage."
1259
+ msgstr ""
1260
+
1261
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1262
+ msgid ""
1263
+ "in WordPress the <a target='_blank' href='https://codex.wordpress."
1264
+ "org/Function_Reference/site_url'>site url</a> can be different then the home "
1265
+ "url"
1266
+ msgstr ""
1267
+
1268
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1269
+ msgid "the ID of the user"
1270
+ msgstr ""
1271
+
1272
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1273
+ msgid ""
1274
+ "the URL sanitized version of the username, the user nicename can be safely "
1275
+ "used in URLs since it can't contain special characters or spaces."
1276
+ msgstr ""
1277
+
1278
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1279
+ msgid "the URL of the previously visited page"
1280
+ msgstr ""
1281
+
1282
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1283
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1284
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1285
+ msgid "You can't add duplicate redirects!"
1286
+ msgstr ""
1287
+
1288
+ #: profile-builder-2.0/admin/admin-functions.php:41
1289
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1290
+ msgstr ""
1291
+
1292
+ #: profile-builder-2.0/admin/basic-info.php:37
1293
+ msgid "Friction-less login using %s shortcode or a widget."
1294
+ msgstr ""
1295
+
1296
+ #: profile-builder-2.0/admin/basic-info.php:41
1297
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1298
+ msgstr ""
1299
+
1300
+ #: profile-builder-2.0/admin/basic-info.php:45
1301
+ msgid "Straight forward edit profile forms using %s shortcode."
1302
+ msgstr ""
1303
+
1304
+ #: profile-builder-2.0/admin/basic-info.php:58
1305
+ msgid "Allow users to recover their password in the front-end using the %s."
1306
+ msgstr ""
1307
+
1308
+ #: profile-builder-2.0/admin/basic-info.php:140
1309
+ msgid ""
1310
+ "To create a page containing the users registered to this current site/blog, "
1311
+ "insert the following shortcode in a page of your chosing: %s."
1312
+ msgstr ""
1313
+
1314
+ #: profile-builder-2.0/admin/general-settings.php:115
1315
+ msgid "\"Admin Approval\" on User Role:"
1316
+ msgstr ""
1317
+
1318
+ #: profile-builder-2.0/admin/general-settings.php:134
1319
+ msgid "Select on what user roles to activate Admin Approval."
1320
+ msgstr ""
1321
+
1322
+ #: profile-builder-2.0/admin/manage-fields.php:133
1323
+ msgid "Display on PB forms"
1324
+ msgstr ""
1325
+
1326
+ #: profile-builder-2.0/admin/manage-fields.php:133
1327
+ msgid "PB Login"
1328
+ msgstr ""
1329
+
1330
+ #: profile-builder-2.0/admin/manage-fields.php:133
1331
+ msgid "PB Register"
1332
+ msgstr ""
1333
+
1334
+ #: profile-builder-2.0/admin/manage-fields.php:133
1335
+ msgid "PB Recover Password"
1336
+ msgstr ""
1337
+
1338
+ #: profile-builder-2.0/admin/manage-fields.php:133
1339
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1340
+ msgstr ""
1341
+
1342
+ #: profile-builder-2.0/admin/manage-fields.php:134
1343
+ msgid "Display on default WP forms"
1344
+ msgstr ""
1345
+
1346
+ #: profile-builder-2.0/admin/manage-fields.php:134
1347
+ msgid "Default WP Login"
1348
+ msgstr ""
1349
+
1350
+ #: profile-builder-2.0/admin/manage-fields.php:134
1351
+ msgid "Default WP Register"
1352
+ msgstr ""
1353
+
1354
+ #: profile-builder-2.0/admin/manage-fields.php:134
1355
+ msgid "Default WP Recover Password"
1356
+ msgstr ""
1357
+
1358
+ #: profile-builder-2.0/admin/manage-fields.php:134
1359
+ msgid "Select on which default WP forms to display reCAPTCHA"
1360
+ msgstr ""
1361
+
1362
+ #: profile-builder-2.0/admin/manage-fields.php:140
1363
+ #: profile-builder-2.0/admin/manage-fields.php:141
1364
+ #: profile-builder-2.0/admin/manage-fields.php:142
1365
+ msgid "Default option of the field"
1366
+ msgstr ""
1367
+
1368
+ #: profile-builder-2.0/admin/manage-fields.php:1219
1369
+ msgid ""
1370
+ "With Profile Builder Pro v2 you can display different fields in the "
1371
+ "registration and edit profile forms, using the Multiple Registration & Edit "
1372
+ "Profile Forms module."
1373
+ msgstr ""
1374
+
1375
+ #: profile-builder-2.0/features/functions.php:678
1376
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
1377
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
1378
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
1379
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
1380
+ msgid "Please enter a (valid) reCAPTCHA value"
1381
+ msgstr ""
1382
+
1383
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
1384
+ msgid "Click the BACK button on your browser, and try again."
1385
+ msgstr ""
1386
+
1387
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
1388
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
1389
+ msgid "Sorry, you cannot upload this file type for this field."
1390
+ msgstr ""
1391
+
1392
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:376
1393
+ msgid "You do not have permission to view this user list."
1394
+ msgstr ""
1395
+
1396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:389
1397
+ msgid "You do not have the required user role to view this user list."
1398
+ msgstr ""
1399
+
1400
+ #: profile-builder-2.0/admin/admin-functions.php:200
1401
+ msgid ""
1402
+ "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" "
1403
+ "target=\"_blank\">rate us on WordPress.org</a>. More happy users means more "
1404
+ "features, less bugs and better support for everyone. "
1405
+ msgstr ""
1406
+
1407
+ #: profile-builder-2.0/admin/manage-fields.php:84
1408
+ msgid ""
1409
+ ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
1410
+ "versions</a>."
1411
+ msgstr ""
1412
+
1413
+ #: profile-builder-2.0/admin/manage-fields.php:131
1414
+ msgid ""
1415
+ "The site key from Google, <a href=\"http://www.google.com/recaptcha\" "
1416
+ "target=\"_blank\">www.google.com/recaptcha</a>"
1417
+ msgstr ""
1418
+
1419
+ #: profile-builder-2.0/admin/manage-fields.php:132
1420
+ msgid ""
1421
+ "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
1422
+ "target=\"_blank\">www.google.com/recaptcha</a>"
1423
+ msgstr ""
1424
+
1425
+ #: profile-builder-2.0/admin/manage-fields.php:1025
1426
+ msgid ""
1427
+ "You must enter the secret key\n"
1428
+ msgstr ""
1429
+
1430
+ #: profile-builder-2.0/admin/add-ons.php:43
1431
+ #: profile-builder-2.0/admin/add-ons.php:140
1432
+ msgid "Add-On is <strong>active</strong>"
1433
+ msgstr ""
1434
+
1435
+ #: profile-builder-2.0/admin/add-ons.php:44
1436
+ #: profile-builder-2.0/admin/add-ons.php:138
1437
+ msgid "Add-On is <strong>inactive</strong>"
1438
+ msgstr ""
1439
+
1440
+ #: profile-builder-2.0/admin/add-ons.php:47
1441
+ msgid "Add-On has been deactivated."
1442
+ msgstr ""
1443
+
1444
+ #: profile-builder-2.0/admin/add-ons.php:153
1445
+ #: profile-builder-2.0/admin/add-ons.php:251
1446
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
1447
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
1448
+ msgid "Compatible with your version of Profile Builder."
1449
+ msgstr ""
1450
+
1451
+ #: profile-builder-2.0/admin/add-ons.php:162
1452
+ msgid "Upgrade Profile Builder"
1453
+ msgstr ""
1454
+
1455
+ #: profile-builder-2.0/admin/add-ons.php:163
1456
+ msgid "Not compatible with Profile Builder"
1457
+ msgstr ""
1458
+
1459
+ #: profile-builder-2.0/admin/add-ons.php:171
1460
+ msgid "Not compatible with your version of Profile Builder."
1461
+ msgstr ""
1462
+
1463
+ #: profile-builder-2.0/admin/add-ons.php:172
1464
+ msgid "Minimum required Profile Builder version:"
1465
+ msgstr ""
1466
+
1467
+ #: profile-builder-2.0/admin/add-ons.php:177
1468
+ msgid ""
1469
+ "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
1470
+ "manually</a>."
1471
+ msgstr ""
1472
+
1473
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
1474
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
1475
+ msgid "This username is invalid because it uses illegal characters."
1476
+ msgstr ""
1477
+
1478
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
1479
+ msgid ""
1480
+ "\n"
1481
+ "<p>{{username}} has requested a password change via the password reset "
1482
+ "feature.</p>\n"
1483
+ "<p>His/her new password is: {{password}}</p>\n"
1484
+ msgstr ""
1485
+
1486
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
1487
+ msgid "Admin Notification for User Password Reset"
1488
+ msgstr ""
1489
+
1490
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
1491
+ msgid "Reset Key"
1492
+ msgstr ""
1493
+
1494
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
1495
+ msgid "Reset Url"
1496
+ msgstr ""
1497
+
1498
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
1499
+ msgid "Reset Link"
1500
+ msgstr ""
1501
+
1502
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
1503
+ msgid ""
1504
+ "\n"
1505
+ "<p>Someone requested that the password be reset for the following account: "
1506
+ "{{site_name}}<br/>\n"
1507
+ "Username: {{username}}</p>\n"
1508
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>"
1509
+ "\n"
1510
+ "<p>To reset your password, visit the following address:<br/>\n"
1511
+ "{{{reset_link}}}</p>\n"
1512
+ msgstr ""
1513
+
1514
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
1515
+ msgid "[{{site_name}}] Password Reset Successfully"
1516
+ msgstr ""
1517
+
1518
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
1519
+ msgid "Password Reset Success Email"
1520
+ msgstr ""
1521
+
1522
+ #: profile-builder-2.0/features/functions.php:909
1523
+ msgid "<br><br>You can visit your site at "
1524
+ msgstr "<br><br>Puedes visitar tu sitio en"
1525
+
1526
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
1527
+ msgid "Site Title"
1528
+ msgstr "Título del sitio"
1529
+
1530
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
1531
+ msgid "Yes, I'd like to create a new site"
1532
+ msgstr "Si, me gustaría crear un sitio nuevo"
1533
+
1534
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
1535
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
1536
+ msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Tu nombre de usuarui es:%2$s"
1537
+
1538
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
1539
+ msgid "View Map"
1540
+ msgstr "Ver mapa"
1541
+
1542
+ #: profile-builder-2.0/admin/add-ons.php:105
1543
+ msgid "Available in All Versions"
1544
+ msgstr "Disponible en todas las versiones"
1545
+
1546
+ #: profile-builder-2.0/admin/add-ons.php:148
1547
+ msgid "Learn More"
1548
+ msgstr "Aprende más"
1549
+
1550
+ #: profile-builder-2.0/admin/basic-info.php:109
1551
+ msgid "Number"
1552
+ msgstr "Número"
1553
+
1554
+ #: profile-builder-2.0/admin/basic-info.php:114
1555
+ msgid "Validation"
1556
+ msgstr "Validación"
1557
+
1558
+ #: profile-builder-2.0/admin/basic-info.php:115
1559
+ msgid "Map"
1560
+ msgstr "Mapa"
1561
+
1562
+ #: profile-builder-2.0/admin/basic-info.php:116
1563
+ msgid "HTML"
1564
+ msgstr "HTML"
1565
+
1566
+ #: profile-builder-2.0/admin/basic-info.php:162
1567
+ #: profile-builder-2.0/modules/modules.php:117
1568
+ msgid "Repeater Fields"
1569
+ msgstr "Campos repetitivos"
1570
+
1571
+ #: profile-builder-2.0/admin/manage-fields.php:148
1572
+ msgid "Google Maps API Key"
1573
+ msgstr "Clave de la API de Google Maps"
1574
+
1575
+ #: profile-builder-2.0/admin/manage-fields.php:154
1576
+ msgid "HTML Content"
1577
+ msgstr "Contenido HTML"
1578
+
1579
+ #: profile-builder-2.0/admin/manage-fields.php:157
1580
+ msgid "Min Number Value"
1581
+ msgstr "Valor mínimo"
1582
+
1583
+ #: profile-builder-2.0/admin/manage-fields.php:157
1584
+ msgid "Leave it empty for no min value"
1585
+ msgstr "Dejar vacío para ningún valor mínimo"
1586
+
1587
+ #: profile-builder-2.0/admin/manage-fields.php:158
1588
+ msgid "Max Number Value"
1589
+ msgstr "Valor máximo"
1590
+
1591
+ #: profile-builder-2.0/admin/manage-fields.php:158
1592
+ msgid "Max allowed number value (0 to allow only negative numbers)"
1593
+ msgstr "Valor máximo permitido (0 para permitir sólo números negativos)"
1594
+
1595
+ #: profile-builder-2.0/admin/manage-fields.php:158
1596
+ msgid "Leave it empty for no max value"
1597
+ msgstr "Dejar vacío para ningún valor máximo"
1598
+
1599
+ #: profile-builder-2.0/admin/manage-fields.php:159
1600
+ msgid "Leave it empty for no restriction"
1601
+ msgstr "Déjalo vacío para ninguna restricción"
1602
+
1603
+ #: profile-builder-2.0/admin/manage-fields.php:630
1604
+ msgid "Mexico Peso"
1605
+ msgstr "Peso mexicano"
1606
+
1607
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
1608
+ msgid "You are not allowed to do this."
1609
+ msgstr "No se te permite hacer esto."
1610
+
1611
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
1612
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
1613
+ msgid "Search Users"
1614
+ msgstr "Buscar usuarios"
1615
+
1616
+ #: profile-builder-2.0/features/functions.php:685
1617
+ msgid "Incorrect phone number"
1618
+ msgstr "Número de teléfono incorrecto"
1619
+
1620
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
1621
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
1622
+ msgid "Please add the Google Maps API key for this field."
1623
+ msgstr "Añade la clave de la API de Google Maps para este campo."
1624
+
1625
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
1626
+ msgid "Something went wrong. Please try again."
1627
+ msgstr "Algo salió mal. Por favor inténtalo de nuevo."
1628
+
1629
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
1630
+ msgid "Please enter numbers only"
1631
+ msgstr "Por favor ingresa números solamente"
1632
+
1633
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1634
+ msgid "Show All"
1635
+ msgstr "Mostrar todos"
1636
+
1637
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1638
+ msgid "No options available"
1639
+ msgstr "No hay opciones disponibles"
1640
+
1641
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1642
+ msgid "Remove All Filters"
1643
+ msgstr "Quitar todos los filtros"
1644
+
1645
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1646
+ msgid "Label"
1647
+ msgstr "Etiqueta"
1648
+
1649
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1650
+ msgid "Behaviour"
1651
+ msgstr "Comportamiento"
1652
+
1653
+ #: pb-add-on-woocommerce/billing-fields.php:8
1654
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1655
+ msgid "Company Name"
1656
+ msgstr "Nombre de la empresa"
1657
+
1658
+ #: pb-add-on-woocommerce/billing-fields.php:9
1659
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1660
+ msgid "Address"
1661
+ msgstr "Dirección"
1662
+
1663
+ #: pb-add-on-woocommerce/billing-fields.php:5
1664
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1665
+ msgid "Country"
1666
+ msgstr "País"
1667
+
1668
+ #: pb-add-on-woocommerce/billing-fields.php:11
1669
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1670
+ msgid "Town / City"
1671
+ msgstr "Ciudad"
1672
+
1673
+ #: pb-add-on-woocommerce/billing-fields.php:12
1674
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1675
+ msgid "State / County"
1676
+ msgstr "Estado / Región"
1677
+
1678
+ #: pb-add-on-woocommerce/billing-fields.php:13
1679
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1680
+ msgid "Postcode / Zip"
1681
+ msgstr "Código Postal"
1682
+
1683
+ #: pb-add-on-woocommerce/billing-fields.php:14
1684
+ msgid "Email Address"
1685
+ msgstr "Correo electrónico"
1686
+
1687
+ #: pb-add-on-woocommerce/billing-fields.php:15
1688
+ msgid "Phone"
1689
+ msgstr "Teléfono"
1690
+
1691
+ #: pb-add-on-woocommerce/billing-fields.php:278
1692
+ msgid "Ship to a different address?"
1693
+ msgstr "¿Enviar a una dirección diferente?"
1694
+
1695
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1696
+ msgid "Billing Address"
1697
+ msgstr "Dirección de Facturación"
1698
+
1699
+ #: pb-add-on-woocommerce/index.php:169
1700
+ msgid "Displays customer billing fields in front-end. "
1701
+ msgstr "Mostrar campos de facturación del cliente en el front-end"
1702
+
1703
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1704
+ msgid "Shipping Address"
1705
+ msgstr "Dirección de envío"
1706
+
1707
+ #: pb-add-on-woocommerce/index.php:173
1708
+ msgid "Displays customer shipping fields in front-end. "
1709
+ msgstr "Mostrar campos de envío del cliente en el front-end"
1710
+
1711
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1712
+ msgid "Display on WooCommerce Checkout"
1713
+ msgstr "Mostrar en el Checkout de Woocommerce"
1714
 
1715
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1716
+ msgid ""
1717
+ "Whether the field should be added to the WooCommerce checkout form or not"
1718
+ msgstr ""
1719
+ "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no"
1720
 
1721
  #: pb-add-on-woocommerce/index.php:541
1722
+ msgid ""
1723
+ "WooCommerce needs to be installed and activated for Profile Builder - "
1724
+ "WooCommerce Sync Add-on to work!"
1725
+ msgstr ""
1726
+ "WooCommerce necesita estar instalado y activado para que Profile Builder - "
1727
+ "WooCommerce Sync Add-on trabaje correctamente!"
1728
 
1729
  #: pb-add-on-woocommerce/woosync-page.php:23
1730
  #: pb-add-on-woocommerce/woosync-page.php:70
1733
 
1734
  #: pb-add-on-woocommerce/woosync-page.php:76
1735
  msgid "Choose Register form to display on My Account page:"
1736
+ msgstr ""
1737
+ "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\""
1738
 
1739
  #: pb-add-on-woocommerce/woosync-page.php:81
1740
  msgid "Default Register"
1741
  msgstr "Registro por defecto"
1742
 
1743
  #: pb-add-on-woocommerce/woosync-page.php:103
1744
+ msgid ""
1745
+ "Select which Profile Builder Register form to display on My Account page "
1746
+ "from WooCommerce. <br/> This will also add the Profile Builder Login form to "
1747
+ "MyAccount page."
1748
  msgstr ""
1749
+ "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi "
1750
+ "cuenta\" de WooCommerce.<br/>\n"
1751
+ "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi "
1752
+ "cuenta\"."
1753
 
1754
  #: pb-add-on-woocommerce/woosync-page.php:110
1755
  msgid "Choose Edit Profile form to display on My Account page:"
1756
+ msgstr ""
1757
+ "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi "
1758
+ "Cuenta:"
1759
 
1760
  #: pb-add-on-woocommerce/woosync-page.php:115
1761
  msgid "Default Edit Profile"
1762
  msgstr "Perfil de Editar Predeterminado"
1763
 
1764
  #: pb-add-on-woocommerce/woosync-page.php:137
1765
+ msgid ""
1766
+ "Select which Profile Builder Edit-profile form to display on My Account page "
1767
+ "from WooCommerce."
1768
+ msgstr ""
1769
+ "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar "
1770
+ "en la pagina Mi cuenta de WooComerce"
1771
 
1772
  #: profile-builder-2.0/admin/add-ons.php:190
1773
  msgid "Recommended Plugins"
1779
  msgstr "Gratis"
1780
 
1781
  #: profile-builder-2.0/admin/add-ons.php:221
1782
+ msgid ""
1783
+ "Accept user payments, create subscription plans and restrict content on your "
1784
+ "membership site."
1785
+ msgstr ""
1786
+ "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el "
1787
+ "contenido en tu sitio de afiliación"
1788
 
1789
  #: profile-builder-2.0/admin/add-ons.php:222
1790
  #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1798
  msgid "Plugin is <strong>inactive</strong>"
1799
  msgstr "Plugin <strong>desactivado</strong>"
1800
 
1801
+ #: profile-builder-2.0/admin/add-ons.php:242
1802
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1803
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1804
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1805
+ msgid "Plugin is <strong>active</strong>"
1806
+ msgstr "Plugin <strong>activado</strong>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1807
 
1808
+ #: profile-builder-2.0/admin/add-ons.php:256
1809
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1810
+ msgid ""
1811
+ "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
1812
+ "manually</a>."
1813
  msgstr ""
1814
+ "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">"
1815
+ "instale manualmente</a>."
1816
 
1817
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1818
+ msgid "Paid Accounts"
1819
+ msgstr "Cuentas de Pago"
1820
 
1821
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1822
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1823
+ msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1824
 
1825
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1826
+ msgid ""
1827
+ "With the new Subscriptions Field in Profile Builder, your registration forms "
1828
+ "will allow your users to sign up for paid accounts."
1829
  msgstr ""
1830
+ "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de "
1831
+ "registro le permitirán a tus usuario registrarse en cuentas de paga."
1832
 
1833
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1834
+ msgid "Paid & Free Subscriptions"
1835
+ msgstr "Suscripciones Gratuitas y de Pago."
1836
 
1837
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1838
+ msgid "Restrict Content"
1839
+ msgstr "Contenido restringido"
1840
 
1841
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1842
+ msgid "Member Management"
1843
+ msgstr "Gestion de Miembros"
1844
 
1845
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1846
+ msgid "Email Templates"
1847
+ msgstr "Plantillas de Correo Electronico"
1848
 
1849
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1850
+ msgid "Account Management"
1851
+ msgstr "Administrar cuenta"
 
 
1852
 
1853
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1854
+ msgid "Subscription Management"
1855
+ msgstr "Administrar suscripción"
1856
 
1857
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1858
+ msgid "Payment Management"
1859
+ msgstr "Administrar pago"
1860
 
1861
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1862
+ msgid "Plugin is Active"
1863
+ msgstr "El plugin está activado"
1864
 
1865
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1866
+ msgid "Plugin has been activated"
1867
+ msgstr "El plugin ha sido activado"
1868
 
1869
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1870
+ msgid "Plugin has been deactivated."
1871
+ msgstr "El plugin ha sido desactivado"
1872
 
1873
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1874
+ msgid ""
1875
+ "Accept user payments, create subscription plans and restrict content on your "
1876
+ "website."
1877
  msgstr ""
1878
+ "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el "
1879
+ "contenido de su página web."
1880
 
1881
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1882
+ msgid "Step by Step Quick Setup"
1883
+ msgstr "Configuración Rapida Paso a Paso"
1884
 
1885
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1886
+ msgid ""
1887
+ "To activate your user, please click the following link:<br><br>%s%s%s<br><br>"
1888
+ "After you activate it you will receive yet *another email* with your login."
1889
  msgstr ""
1890
+ "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>"
1891
+ "%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1892
 
1893
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1894
+ msgid "After Login"
1895
+ msgstr "Después de Iniciar sesión"
1896
 
1897
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1898
+ msgid "After Logout"
1899
+ msgstr "Después de Terminar sesión"
1900
 
1901
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1902
+ msgid "After Registration"
1903
+ msgstr "Después de Registrarse"
1904
 
1905
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1906
+ msgid "User ID"
1907
+ msgstr "Identidicación del usuario"
1908
 
1909
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1910
+ msgid "User ID or Username"
1911
+ msgstr "ID o Nombre de Usuario"
1912
 
1913
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1914
+ msgid "Please select and enter the ID or username of your user."
1915
+ msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1916
 
1917
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1918
+ msgid "Select a user role."
1919
+ msgstr "Selecciona un rol de usuario."
1920
 
1921
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1922
+ msgid "Login ( wp_login.php )"
1923
+ msgstr "Iniciar sesión ( wp_login.php )"
1924
 
1925
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1926
+ msgid "Register ( wp-login.php?action=register )"
1927
+ msgstr "Registrarse ( wp-login.php?action=register )"
1928
 
1929
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1930
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1931
+ msgstr "Perdí mi contraseña ( wp-login.php?action=lostpassword )"
1932
 
1933
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1934
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1935
+ msgstr "Archivos del autor ( http://sitename.com/author/admin )"
 
 
1936
 
1937
  #: profile-builder-2.0/admin/manage-fields.php:282
1938
  #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3153
  msgid "Zimbabwe"
3154
  msgstr "Zimbabwe"
3155
 
 
 
 
 
3156
  #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
3157
+ msgid ""
3158
+ "Your account has to be confirmed by an administrator before you can log in."
3159
+ msgstr ""
3160
+ "Tu cuenta debe ser confirmada por un administrador antes de que puedas "
3161
+ "loggearte."
3162
 
3163
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
3164
  msgid "Your account has been successfully created!"
3165
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
3166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3167
  #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
3168
  msgid "An error occurred, please try again later."
3169
  msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
3172
  msgid "More"
3173
  msgstr "Más"
3174
 
 
 
 
 
 
 
 
 
3175
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
3176
  msgid "Ascending"
3177
  msgstr "Ascendente"
3187
  msgid "Download Now"
3188
  msgstr "Descargar"
3189
 
 
 
 
 
3190
  #: profile-builder-2.0/admin/manage-fields.php:82
3191
  msgid "Choose one of the supported field types"
3192
  msgstr "Escoja uno de los campos disponibles"
3193
 
 
 
 
 
3194
  #: profile-builder-2.0/admin/manage-fields.php:131
3195
  msgid "Site Key"
3196
  msgstr "Sitio clave"
3197
 
 
 
 
 
3198
  #: profile-builder-2.0/admin/manage-fields.php:132
3199
  msgid "Secret Key"
3200
  msgstr "Clave secreta"
3201
 
 
 
 
 
3202
  #: profile-builder-2.0/admin/manage-fields.php:1023
3203
+ msgid ""
3204
+ "You must enter the site key\n"
 
 
 
3205
  msgstr ""
3206
+ "Debes ingresar la clave del sitio\n"
3207
 
3208
  #: profile-builder-2.0/admin/add-ons.php:10
3209
  #: profile-builder-2.0/admin/add-ons.php:32
3242
  msgid "Retry Install"
3243
  msgstr "Reintentar Instalación"
3244
 
3245
+ #: profile-builder-2.0/admin/add-ons.php:46
3246
+ #: profile-builder-2.0/admin/add-ons.php:133
3247
+ #: profile-builder-2.0/admin/add-ons.php:235
3248
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3249
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3250
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3251
+ msgid "Deactivate"
3252
+ msgstr "Desactivar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3253
 
3254
+ #: profile-builder-2.0/admin/add-ons.php:59
3255
+ msgid ""
3256
+ "Something went wrong, we could not connect to the server. Please try again "
3257
+ "later."
3258
  msgstr ""
3259
+ "Algo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de "
3260
+ "nuevo."
3261
 
3262
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3263
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3264
+ msgid "Install Now"
3265
+ msgstr "Instalar ahora"
3266
 
3267
  #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3268
  msgid "You must enter a valid email address."
3269
  msgstr "Debe ingresar una dirección válida de email"
3270
 
 
 
 
 
 
3271
  #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3272
  #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3273
  msgid "Please enter a valid username."
3276
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3277
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3278
  msgid "Only administrators can see this field on edit profile forms."
3279
+ msgstr ""
3280
+ "Sólo administradores pueden ver este campo en el editor de formularios de "
3281
+ "perfiles"
3282
 
3283
  #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3284
  msgid "As an administrator you cannot change your role."
3285
  msgstr "Como administrador, no puedes cambiar tu Rol"
3286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3287
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3288
  msgid "[{{site_name}}] Password Reset"
3289
  msgstr "[{{site_name}}] Restaurar Contraseña"
3300
  "\n"
3301
  "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
3302
 
 
 
 
 
 
 
 
 
3303
  #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3304
  msgid "User Nicename"
3305
  msgstr "Nicename del Usuario"
3311
  msgstr "Ninguno"
3312
 
3313
  #: profile-builder-2.0/admin/admin-functions.php:132
3314
+ msgid ""
3315
+ "<strong>ERROR</strong>: The password must have the minimum length of %s "
3316
+ "characters"
3317
+ msgstr ""
3318
+ "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s "
3319
+ "caracteres"
3320
 
3321
  #: profile-builder-2.0/admin/admin-functions.php:148
3322
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3323
+ msgstr ""
3324
+ "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima "
3325
+ "de %s"
3326
 
3327
  #: profile-builder-2.0/admin/general-settings.php:179
3328
  msgid "Username and Email"
3330
 
3331
  #: profile-builder-2.0/admin/general-settings.php:184
3332
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3333
+ msgstr ""
3334
+ "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con "
3335
+ "el Nombre de Usuario como con el Email."
3336
 
3337
  #: profile-builder-2.0/admin/general-settings.php:185
3338
  msgid "\"Username\" - users can Log In only with Username."
3339
+ msgstr ""
3340
+ "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de "
3341
+ "Usuario."
3342
 
3343
  #: profile-builder-2.0/admin/general-settings.php:186
3344
  msgid "\"Email\" - users can Log In only with Email."
3345
  msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
3346
 
3347
  #: profile-builder-2.0/admin/manage-fields.php:124
3348
+ msgid ""
3349
+ "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
3350
+ "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3351
+ msgstr ""
3352
+ "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:."
3353
+ "ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,."
3354
+ "png (.*)"
3355
 
3356
  #: profile-builder-2.0/admin/manage-fields.php:125
3357
+ msgid ""
3358
+ "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
3359
+ "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
3360
+ "extensions (.*)"
3361
+ msgstr ""
3362
+ "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:."
3363
+ "ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las "
3364
+ "extensiones de archivos permitidas por WordPress (.*)"
3365
 
3366
  #: profile-builder-2.0/admin/manage-fields.php:135
3367
  msgid "User Roles"
3368
  msgstr "Roles de Usuario"
3369
 
3370
  #: profile-builder-2.0/admin/manage-fields.php:135
3371
+ msgid ""
3372
+ "Select which user roles to show to the user ( drag and drop to re-order )"
3373
+ msgstr ""
3374
+ "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte "
3375
+ "para reorganizar)"
3376
 
3377
  #: profile-builder-2.0/admin/manage-fields.php:136
3378
  msgid "User Roles Order"
3380
 
3381
  #: profile-builder-2.0/admin/manage-fields.php:136
3382
  msgid "Save the user role order from the user roles checkboxes"
3383
+ msgstr ""
3384
+ "Salvar el orden de roles de usuario de las casillas de roles de usuario"
3385
 
3386
  #: profile-builder-2.0/admin/manage-fields.php:1128
3387
+ msgid ""
3388
+ "Please select at least one user role\n"
3389
+ msgstr ""
3390
+ "Por favor seleccione al menos un rol de usuario\n"
3391
 
3392
  #: profile-builder-2.0/admin/register-version.php:22
3393
  msgid "Profile Builder Register"
3398
  msgstr "¡El número de serie está a punto de expirar!"
3399
 
3400
  #: profile-builder-2.0/admin/register-version.php:81
3401
+ msgid ""
3402
+ " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3403
+ msgstr ""
3404
+ "Su número de serie está a punto de expirar, por favor %1$s Renueve Su "
3405
+ "Licencia%2$s."
3406
 
3407
  #: profile-builder-2.0/admin/register-version.php:83
3408
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3417
  msgstr "mostrar"
3418
 
3419
  #: profile-builder-2.0/features/functions.php:736
3420
+ msgid ""
3421
+ "To allow users to register for your website via Profile Builder, you first "
3422
+ "must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
3423
+ "Registration Settings make sure to check “User accounts may be registered”. "
3424
+ "%3$sDismiss%4$s"
3425
+ msgstr ""
3426
+ "Para permitir a los usuarios registrarse en su sitio web via Profile Builder,"
3427
+ " usted tiene primero que habilitar el registro de usuario. Vaya a "
3428
+ "%1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar "
3429
+ "“Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
3430
 
3431
  #: profile-builder-2.0/front-end/class-formbuilder.php:659
3432
  msgid "User to edit:"
3473
 
3474
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3475
  msgid "displays only the users that you specified the user_id for"
3476
+ msgstr ""
3477
+ "muestra solamente los usuarios para los que usted ha especificado el user_id"
3478
 
3479
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3480
  msgid "displays all users except the ones you specified the user_id for"
3481
+ msgstr ""
3482
+ "muestra todos los usuarios excepto aquellos para los que usted ha "
3483
+ "especificado el user_id"
3484
 
3485
  #: profile-builder-2.0/features/functions.php:566
3486
  msgid "Minimum length of %d characters"
3501
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3502
 
3503
  #: profile-builder-2.0/admin/admin-bar.php:48
3504
+ msgid ""
3505
+ "Choose which user roles view the admin bar in the front-end of the website."
3506
+ msgstr ""
3507
+ "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio "
3508
+ "web."
3509
 
3510
  #: profile-builder-2.0/admin/manage-fields.php:129
3511
+ msgid ""
3512
+ "Enter a comma separated list of values<br/>This can be anything, as it is "
3513
+ "hidden from the user, but should not contain special characters or "
3514
+ "apostrophes"
3515
+ msgstr ""
3516
+ "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier "
3517
+ "cosa, como está oculto al usuario, pero no debería contener caracteres "
3518
+ "especiales o apóstrofes"
3519
 
3520
  #: profile-builder-2.0/admin/manage-fields.php:1055
3521
+ msgid ""
3522
+ "The meta-name cannot be empty\n"
3523
+ msgstr ""
3524
+ "El meta-nombre no puede ser vacío\n"
3525
 
3526
  #: profile-builder-2.0/admin/register-version.php:69
3527
+ msgid ""
3528
+ "Now that you acquired a copy of %s, you should take the time and register it "
3529
+ "with the serial number you received"
3530
+ msgstr ""
3531
+ "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y "
3532
+ "registrarlo con el número de serie que recibió"
3533
 
3534
  #: profile-builder-2.0/admin/register-version.php:243
3535
+ msgid ""
3536
+ "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing."
3537
+ " <br/>Please %1$sregister your copy%2$s to receive access to automatic "
3538
+ "updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3539
+ msgstr ""
3540
+ "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no "
3541
+ "se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a "
3542
+ "actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? "
3543
+ "%3$sCompre una ahora%4$s</p>"
3544
 
3545
  #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3546
  #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3569
  msgstr "Cancelar"
3570
 
3571
  #: profile-builder-2.0/features/functions.php:740
3572
+ msgid ""
3573
+ "To allow users to register for your website via Profile Builder, you first "
3574
+ "must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
3575
+ "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3576
+ msgstr ""
3577
+ "Para permitir a los usuarios registrarse para su sitio web via Profile "
3578
+ "Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la "
3579
+ "pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de "
3580
+ "seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
3581
 
3582
  #: profile-builder-2.0/front-end/login.php:144
3583
  msgid "Invalid username."
3597
  msgstr "¿Perdió su contraseña?"
3598
 
3599
  #: profile-builder-2.0/index.php:34
3600
+ msgid ""
3601
+ " is also activated. You need to deactivate it before activating this version "
3602
+ "of the plugin."
3603
+ msgstr ""
3604
+ "está también activado. Necesita desactivarlo antes de activar está versión "
3605
+ "del plugin."
3606
 
3607
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3608
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3609
+ msgid ""
3610
+ "Must be a valid email address or the tag {{reply_to}} which defaults to the "
3611
+ "administrator email"
3612
+ msgstr ""
3613
+ "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que "
3614
+ "tiene por defecto el email del administrador"
3615
 
3616
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3617
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3622
  msgstr "Su contraseña seleccionada al inscribirse"
3623
 
3624
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3625
+ msgid ""
3626
+ "These settings are also replicated in the \"Admin Email Customizer\" "
3627
+ "settings-page upon save."
3628
+ msgstr ""
3629
+ "Estos ajustes también se replican en la página de ajustes de "
3630
+ "\"Personalizador de Email de Admin\" al salvar."
3631
 
3632
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3633
  msgid "This form is empty."
3646
  msgstr "Escoger..."
3647
 
3648
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3649
+ msgid ""
3650
+ "Set the number of users to be displayed on every paginated part of the all-"
3651
+ "userlisting"
3652
+ msgstr ""
3653
+ "Establecer el número de usuarios a mostrarse en cada parte paginada del all-"
3654
+ "userlisting"
3655
 
3656
  #: profile-builder-2.0/admin/admin-bar.php:10
3657
  msgid "Show/Hide the Admin Bar on the Front-End"
3695
  msgstr "Salvar Cambios"
3696
 
3697
  #: profile-builder-2.0/admin/admin-functions.php:37
3698
+ msgid ""
3699
+ "Login is set to be done using the E-mail. This field will NOT appear in the "
3700
+ "front-end! ( you can change these settings under the \"%s\" tab )"
3701
+ msgstr ""
3702
+ "La Autenticación está establecida para realizarse usando el E-mail. ¡Este "
3703
+ "campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes "
3704
+ "en la pestaña \"%s\") "
3705
 
3706
  #: profile-builder-2.0/admin/admin-functions.php:37
3707
  #: profile-builder-2.0/admin/general-settings.php:10
3754
  msgstr "<strong>Profile Builder </strong>"
3755
 
3756
  #: profile-builder-2.0/admin/basic-info.php:31
3757
+ msgid ""
3758
+ "The best way to add front-end registration, edit profile and login forms."
3759
+ msgstr ""
3760
+ "La mejor forma de adicionar el registro en la vista pública, editar el "
3761
+ "perfil y las formas de autenticación."
3762
 
3763
  #: profile-builder-2.0/admin/basic-info.php:33
3764
  msgid "For Modern User Interaction"
3783
  msgstr "Características extras."
3784
 
3785
  #: profile-builder-2.0/admin/basic-info.php:52
3786
+ msgid ""
3787
+ "Features that give you more control over your users, increased security and "
3788
+ "help you fight user registration spam."
3789
+ msgstr ""
3790
+ "Características que le dan más control sobre sus usuarios, incrementando la "
3791
+ "seguridad y ayudándolo a evitar los registros spams de usuarios."
3792
 
3793
  #: profile-builder-2.0/admin/basic-info.php:53
3794
  msgid "Enable extra features"
3803
  msgstr "Aprobación del Admin (*)"
3804
 
3805
  #: profile-builder-2.0/admin/basic-info.php:62
3806
+ msgid ""
3807
+ "You decide who is a user on your website. Get notified via email or approve "
3808
+ "multiple users at once from the WordPress UI."
3809
+ msgstr ""
3810
+ "Usted decide quién es un usuario en su sitio web. Obtenga notificación via "
3811
+ "email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de "
3812
+ "WordPress."
3813
 
3814
  #: profile-builder-2.0/admin/basic-info.php:65
3815
  msgid "Email Confirmation"
3816
  msgstr "Confirmación de Email"
3817
 
3818
  #: profile-builder-2.0/admin/basic-info.php:66
3819
+ msgid ""
3820
+ "Make sure users sign up with genuine emails. On registration users will "
3821
+ "receive a notification to confirm their email address."
3822
+ msgstr ""
3823
+ "Esté seguro que los usuarios se autentican con emails genuinos. En el "
3824
+ "registro los usuarios recibirán una notificación para confirmar sus "
3825
+ "direcciones de email."
3826
 
3827
  #: profile-builder-2.0/admin/basic-info.php:69
3828
  msgid "Minimum Password Length and Strength Meter"
3829
  msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3830
 
3831
  #: profile-builder-2.0/admin/basic-info.php:70
3832
+ msgid ""
3833
+ "Eliminate weak passwords altogether by setting a minimum password length and "
3834
+ "enforcing a certain password strength."
3835
+ msgstr ""
3836
+ "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y "
3837
+ "forzando una cierta fortaleza de contraseña."
3838
 
3839
  #: profile-builder-2.0/admin/basic-info.php:73
3840
  msgid "Login with Email or Username"
3841
  msgstr "Autenticación con Email o Nombre de Usuario"
3842
 
3843
  #: profile-builder-2.0/admin/basic-info.php:74
3844
+ msgid ""
3845
+ "Allow users to log in with their email or username when accessing your site."
3846
+ msgstr ""
3847
+ "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se "
3848
+ "accede al sitio."
3849
 
3850
  #: profile-builder-2.0/admin/basic-info.php:87
3851
  msgid "Customize Your Forms The Way You Want (*)"
3852
  msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3853
 
3854
  #: profile-builder-2.0/admin/basic-info.php:88
3855
+ msgid ""
3856
+ "With Extra Profile Fields you can create the exact registration form your "
3857
+ "project needs."
3858
+ msgstr ""
3859
+ "Con Campos Extras del Perfil usted puede crear la forma exacta de registro "
3860
+ "de sus necesidades del proyecto."
3861
 
3862
  #: profile-builder-2.0/admin/basic-info.php:90
3863
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3864
+ msgstr ""
3865
+ "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
3866
 
3867
  #: profile-builder-2.0/admin/basic-info.php:92
3868
  msgid "Get started with extra fields"
3921
  msgstr "Módulos Potentes (**)"
3922
 
3923
  #: profile-builder-2.0/admin/basic-info.php:126
3924
+ msgid ""
3925
+ "Everything you will need to manage your users is probably already available "
3926
+ "using the Pro Modules."
3927
+ msgstr ""
3928
+ "Todo lo que necesite para gestionar sus usuarios está probablemente "
3929
+ "disponible utilizando el Pro Modules. "
3930
 
3931
  #: profile-builder-2.0/admin/basic-info.php:128
3932
  msgid "Enable your modules"
3946
  msgstr "Listado de Usuario"
3947
 
3948
  #: profile-builder-2.0/admin/basic-info.php:138
3949
+ msgid ""
3950
+ "Easy to edit templates for listing your website users as well as creating "
3951
+ "single user pages. Shortcode based, offering many options to customize your "
3952
+ "listings."
3953
+ msgstr ""
3954
+ "Plantillas fácil de editar para listar sus usuarios del sitio web así como "
3955
+ "crear páginas de un usuario simple. Basado en código corto, ofrece muchas "
3956
+ "opciones para personalizar sus listados."
3957
 
3958
  #: profile-builder-2.0/admin/basic-info.php:144
3959
  msgid "Email Customizer"
3960
  msgstr "Personalizador de Email"
3961
 
3962
  #: profile-builder-2.0/admin/basic-info.php:145
3963
+ msgid ""
3964
+ "Personalize all emails sent to your users or admins. On registration, email "
3965
+ "confirmation, admin approval / un-approval."
3966
+ msgstr ""
3967
+ "Personalice todos los emails enviados a sus usuarios o administradores. En "
3968
+ "el registro, la confirmación de email y la aprobación/desaprobación de admin."
3969
 
3970
  #: profile-builder-2.0/admin/basic-info.php:148
3971
  #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3975
  msgstr "Redirecciones Personalizadas"
3976
 
3977
  #: profile-builder-2.0/admin/basic-info.php:149
3978
+ msgid ""
3979
+ "Keep your users out of the WordPress dashboard, redirect them to the front-"
3980
+ "page after login or registration, everything is just a few clicks away."
3981
+ msgstr ""
3982
+ "Mantenga sus usuarios fuera del panel de control de WordPRess, "
3983
+ "redirecciónelos a la vista pública luego de la autenticación o registro, "
3984
+ "todo está a unos clics."
3985
 
3986
  #: profile-builder-2.0/admin/basic-info.php:154
3987
  #: profile-builder-2.0/modules/modules.php:75
3989
  msgstr "Formas de Registro Múltiple"
3990
 
3991
  #: profile-builder-2.0/admin/basic-info.php:155
3992
+ msgid ""
3993
+ "Set up multiple registration forms with different fields for certain user "
3994
+ "roles. Capture different information from different types of users."
3995
+ msgstr ""
3996
+ "Establecer formas de registro múltiples con diferentes campos para ciertos "
3997
+ "roles de usuario. Capturar diferentes informaciones de diferentes tipos de "
3998
+ "usuarios."
3999
 
4000
  #: profile-builder-2.0/admin/basic-info.php:158
4001
  #: profile-builder-2.0/modules/modules.php:82
4003
  msgstr "Formas de Edición de Múltiples Perfiles"
4004
 
4005
  #: profile-builder-2.0/admin/basic-info.php:159
4006
+ msgid ""
4007
+ "Allow different user roles to edit their specific information. Set up "
4008
+ "multiple edit-profile forms with different fields for certain user roles."
4009
+ msgstr ""
4010
+ "Permite a diferentes roles de usuario editar sus informaciones específicas. "
4011
+ "Establezca las formas de edición de múltiples perfiles con diferentes campos "
4012
+ "para ciertos roles de usuario."
4013
 
4014
  #: profile-builder-2.0/admin/basic-info.php:187
4015
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
4052
  msgstr "No"
4053
 
4054
  #: profile-builder-2.0/admin/general-settings.php:61
4055
+ msgid ""
4056
+ "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
4057
+ "Email Confirmation%2$s."
4058
+ msgstr ""
4059
+ "Usted puede encontrar una lista de direcciones de email no confirmadas "
4060
+ "%1$sUsers > All Users > Email Confirmation%2$s."
4061
 
4062
  #: profile-builder-2.0/admin/general-settings.php:69
4063
  msgid "\"Email Confirmation\" Landing Page:"
4068
  msgstr "Páginas Existentes"
4069
 
4070
  #: profile-builder-2.0/admin/general-settings.php:89
4071
+ msgid ""
4072
+ "Specify the page where the users will be directed when confirming the email "
4073
+ "account. This page can differ from the register page(s) and can be changed "
4074
+ "at any time. If none selected, a simple confirmation page will be displayed "
4075
+ "for the user."
4076
+ msgstr ""
4077
+ "Especificar la página donde los usuarios serán redirigidos cuando se "
4078
+ "confirma la cuenta de email. Esta página puede ser diferente a la(s) "
4079
+ "página(s) de registro y puede ser cambiada en cualquier momento."
4080
 
4081
  #: profile-builder-2.0/admin/general-settings.php:100
4082
  msgid "\"Admin Approval\" Activated:"
4083
  msgstr "\"Aprobación del Admin\" Activada:"
4084
 
4085
  #: profile-builder-2.0/admin/general-settings.php:108
4086
+ msgid ""
4087
+ "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
4088
+ msgstr ""
4089
+ "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin "
4090
+ "Approval%2$s."
4091
 
4092
  #: profile-builder-2.0/admin/general-settings.php:165
4093
  msgid "\"Admin Approval\" Feature:"
4094
  msgstr "Característica \"Aprobación del Admin\":"
4095
 
4096
  #: profile-builder-2.0/admin/general-settings.php:168
4097
+ msgid ""
4098
+ "You decide who is a user on your website. Get notified via email or approve "
4099
+ "multiple users at once from the WordPress UI. Enable Admin Approval by "
4100
+ "upgrading to %1$sHobbyist or PRO versions%2$s."
4101
+ msgstr ""
4102
+ "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a "
4103
+ "través de email o apruebe múltiples usuarios a la vez desde la Interfaz de "
4104
+ "Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las "
4105
+ "%1$sversiones Hobbyist o Pro%2$s."
4106
 
4107
  #: profile-builder-2.0/admin/general-settings.php:175
4108
  msgid "Allow Users to Log in With:"
4137
  msgstr "Tamaño Mínimo de Contraseña:"
4138
 
4139
  #: profile-builder-2.0/admin/general-settings.php:198
4140
+ msgid ""
4141
+ "Enter the minimum characters the password should have. Leave empty for no "
4142
+ "minimum limit"
4143
+ msgstr ""
4144
+ "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco "
4145
+ "para no límite mínimo."
4146
 
4147
  #: profile-builder-2.0/admin/general-settings.php:205
4148
  msgid "Minimum Password Strength:"
4191
  #: profile-builder-2.0/admin/manage-fields.php:121
4192
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
4193
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
4194
+ msgid ""
4195
+ "A unique, auto-generated ID for this particular field<br/>You can use this "
4196
+ "in conjuction with filters to target this element if needed<br/>Can't be "
4197
+ "edited"
4198
+ msgstr ""
4199
+ "Un ID único y auto-generado para este campo particular<br/> Usted puede usar "
4200
+ "esto en conjunción con filtros para apuntar a este elemento si se "
4201
+ "necesita<br/>No puede ser editado"
4202
 
4203
  #: profile-builder-2.0/admin/manage-fields.php:122
4204
  msgid "Description"
4205
  msgstr "Descripción"
4206
 
4207
  #: profile-builder-2.0/admin/manage-fields.php:122
4208
+ msgid ""
4209
+ "Enter a (detailed) description of the option for end users to read<br/>"
4210
+ "Optional"
4211
+ msgstr ""
4212
+ "Entre una descripción (detallada) de la opción para que los usuarios finales "
4213
+ "lean<br/>Opcional"
4214
 
4215
  #: profile-builder-2.0/admin/manage-fields.php:123
4216
  msgid "Row Count"
4217
  msgstr "Cantidad de Filas"
4218
 
4219
  #: profile-builder-2.0/admin/manage-fields.php:123
4220
+ msgid ""
4221
+ "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
4222
+ "defaults to 5"
4223
  msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
4224
 
4225
  #: profile-builder-2.0/admin/manage-fields.php:124
4235
  msgstr "Tamaño del Avatar"
4236
 
4237
  #: profile-builder-2.0/admin/manage-fields.php:126
4238
+ msgid ""
4239
+ "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
4240
+ "specified, defaults to 100"
4241
+ msgstr ""
4242
+ "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se "
4243
+ "especifica, deja por defecto 100"
4244
 
4245
  #: profile-builder-2.0/admin/manage-fields.php:127
4246
  msgid "Date-format"
4251
  msgstr "Términos del Acuerdo"
4252
 
4253
  #: profile-builder-2.0/admin/manage-fields.php:128
4254
+ msgid ""
4255
+ "Enter a detailed description of the temrs of agreement for the user to read."
4256
+ "<br/>Links can be inserted by using standard HTML syntax: &lt;a "
4257
+ "href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
4258
+ msgstr ""
4259
+ "Entrar una descripción detallada de los términos del acuerdo para que el "
4260
+ "usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML "
4261
+ "estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
4262
 
4263
  #: profile-builder-2.0/admin/manage-fields.php:129
4264
  msgid "Options"
4270
 
4271
  #: profile-builder-2.0/admin/manage-fields.php:130
4272
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
4273
+ msgstr ""
4274
+ "Entrar una lista separada por coma de etiquetas<br/>Visible para los usuarios"
4275
 
4276
  #: profile-builder-2.0/admin/manage-fields.php:137
4277
  msgid "Default Value"
4297
  msgstr "Opción(es) Por Defecto"
4298
 
4299
  #: profile-builder-2.0/admin/manage-fields.php:139
4300
+ msgid ""
4301
+ "Specify the option which should be checked by default<br/>If there are "
4302
+ "multiple values, separate them with a ',' (comma)"
4303
+ msgstr ""
4304
+ "Especificar la opción que debería ser seleccionada por defecto<br/>Si hay "
4305
+ "valores múltiples, separarlos con una ',' (coma)"
4306
 
4307
  #: profile-builder-2.0/admin/manage-fields.php:153
4308
  msgid "Default Content"
4326
  msgstr "Sobrescribir Existente"
4327
 
4328
  #: profile-builder-2.0/admin/manage-fields.php:161
4329
+ msgid ""
4330
+ "Selecting 'Yes' will add the field to the list, but will overwrite any other "
4331
+ "field in the database that has the same meta-name<br/>Use this at your own "
4332
+ "risk"
4333
+ msgstr ""
4334
+ "Seleccionar 'Sí' adicionará el campo a la lista, pero sobrescribirá "
4335
+ "cualquier otro campo en la base de datos que tiene el mismo meta-nombre<br/>"
4336
+ "Usar esto bajo su propio riesgo "
4337
 
4338
  #: profile-builder-2.0/admin/manage-fields.php:167
4339
  msgid "Field Properties"
4417
  msgstr "Información Biográfica"
4418
 
4419
  #: profile-builder-2.0/admin/manage-fields.php:218
4420
+ msgid ""
4421
+ "Share a little biographical information to fill out your profile. This may "
4422
+ "be shown publicly."
4423
+ msgstr ""
4424
+ "Compartir una pequeña información biográfica para llenar su perfil. Esto "
4425
+ "puede mostrarse públicamente. "
4426
 
4427
  #: profile-builder-2.0/admin/manage-fields.php:219
4428
  #: profile-builder-2.0/front-end/recover.php:73
4445
 
4446
  #: profile-builder-2.0/admin/manage-fields.php:980
4447
  #: profile-builder-2.0/admin/manage-fields.php:1137
4448
+ msgid ""
4449
+ "You must select a field\n"
4450
+ msgstr ""
4451
+ "Tiene que seleccionar un campo\n"
4452
 
4453
  #: profile-builder-2.0/admin/manage-fields.php:990
4454
+ msgid ""
4455
+ "Please choose a different field type as this one already exists in your form "
4456
+ "(must be unique)\n"
4457
+ msgstr ""
4458
+ "Por favor escoja un tipo de campo diferente dado que este solo existe en su "
4459
+ "forma (debe ser único)\n"
4460
 
4461
  #: profile-builder-2.0/admin/manage-fields.php:1001
4462
+ msgid ""
4463
+ "The entered avatar size is not between 20 and 200\n"
4464
+ msgstr ""
4465
+ "El tamaño del avatar entrado no está entre 20 y 200\n"
4466
 
4467
  #: profile-builder-2.0/admin/manage-fields.php:1004
4468
+ msgid ""
4469
+ "The entered avatar size is not numerical\n"
4470
+ msgstr ""
4471
+ "El tamaño del avatar entrado no es numérico\n"
4472
 
4473
  #: profile-builder-2.0/admin/manage-fields.php:1012
4474
+ msgid ""
4475
+ "The entered row number is not numerical\n"
4476
+ msgstr ""
4477
+ "El número de la fila entrado no es numérico\n"
4478
 
4479
  #: profile-builder-2.0/admin/manage-fields.php:1015
4480
+ msgid ""
4481
+ "You must enter a value for the row number\n"
4482
+ msgstr ""
4483
+ "Usted tiene que entrar un valor para el número de la fila\n"
4484
 
4485
  #: profile-builder-2.0/admin/manage-fields.php:1036
4486
+ msgid ""
4487
+ "The entered value for the Datepicker is not a valid date-format\n"
4488
+ msgstr ""
4489
+ "El valor entrado para el Datepicker no es un formato de fecha válido\n"
4490
 
4491
  #: profile-builder-2.0/admin/manage-fields.php:1039
4492
+ msgid ""
4493
+ "You must enter a value for the date-format\n"
4494
+ msgstr ""
4495
+ "Usted tiene que entrar un valor para el formato de fecha\n"
4496
 
4497
  #: profile-builder-2.0/admin/manage-fields.php:1067
4498
  #: profile-builder-2.0/admin/manage-fields.php:1075
4499
  #: profile-builder-2.0/admin/manage-fields.php:1086
4500
+ msgid ""
4501
+ "That meta-name is already in use\n"
4502
+ msgstr ""
4503
+ "Ese meta nombre ya está en uso\n"
4504
 
4505
  #: profile-builder-2.0/admin/manage-fields.php:1117
4506
+ msgid ""
4507
+ "The following option(s) did not coincide with the ones in the options list: "
4508
+ "%s\n"
4509
+ msgstr ""
4510
+ "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de "
4511
+ "opciones:%s\n"
4512
 
4513
  #: profile-builder-2.0/admin/manage-fields.php:1121
4514
+ msgid ""
4515
+ "The following option did not coincide with the ones in the options list: %s\n"
4516
+ msgstr ""
4517
+ "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
4518
 
4519
  #: profile-builder-2.0/admin/manage-fields.php:1144
4520
+ msgid ""
4521
+ "That field is already added in this form\n"
4522
+ msgstr ""
4523
+ "Ese campo ya está añadido en esta forma\n"
4524
 
4525
  #: profile-builder-2.0/admin/manage-fields.php:1193
4526
+ msgid ""
4527
+ "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
4528
+ "required\">Required</pre>"
4529
+ msgstr ""
4530
+ "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-"
4531
+ "head-required\">Requerido</pre>"
4532
 
4533
  #: profile-builder-2.0/admin/manage-fields.php:1193
4534
  #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4562
 
4563
  #: profile-builder-2.0/admin/manage-fields.php:1208
4564
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4565
+ msgstr ""
4566
+ "Usar estos códigos cortos en las páginas en las que quiere que las formas se "
4567
+ "muestren:"
4568
 
4569
  #: profile-builder-2.0/admin/register-version.php:14
4570
  msgid "Register Your Version"
4571
+ msgstr ""
4572
+ "Si está interesado en mostrar diferentes campos en las formas de edición del "
4573
+ "perfil y el registro, por favor use El Addon Multiple Registration & Edit "
4574
+ "Profile Forms."
4575
 
4576
  #: profile-builder-2.0/admin/register-version.php:14
4577
  msgid "Register Version"
4578
  msgstr "Registre la Versión"
4579
 
4580
  #: profile-builder-2.0/admin/register-version.php:70
4581
+ msgid ""
4582
+ "If you register this version of Profile Builder, you'll receive information "
4583
+ "regarding upgrades, patches, and technical support."
4584
+ msgstr ""
4585
+ "Si usted registra esta versión de Profile Builder, recibirá información "
4586
+ "referente a actualizaciones, parches, y soporte técnico."
4587
 
4588
  #: profile-builder-2.0/admin/register-version.php:72
4589
  msgid " Serial Number:"
4602
  msgstr "¡El número de serie no ha podido ser validado porque expiró!"
4603
 
4604
  #: profile-builder-2.0/admin/register-version.php:85
4605
+ msgid ""
4606
+ "The serial number couldn't be validated because process timed out. This is "
4607
+ "possible due to the server being down. Please try again later!"
4608
+ msgstr ""
4609
+ "El número de serie no ha podido ser validado porque el proceso sobrepasó el "
4610
+ "tiempo de espera. Esto es posible debido a que el server está caido.¡ Por "
4611
+ "favor intente luego! "
4612
 
4613
  #: profile-builder-2.0/admin/register-version.php:87
4614
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4644
 
4645
  #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4646
  msgid "You can add the information for the %s after you add a entry"
4647
+ msgstr ""
4648
+ "Usted puede adicionar la información para el %s luego de que adicione una "
4649
+ "entrada"
4650
 
4651
  #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4652
  #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4710
 
4711
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4712
  msgid "Your session has expired! Please refresh the page and try again"
4713
+ msgstr ""
4714
+ "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
4715
 
4716
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4717
  msgid "User successfully approved!"
4733
 
4734
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4735
  msgid "Your session has expired! Please refresh the page and try again."
4736
+ msgstr ""
4737
+ "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente."
4738
 
4739
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4740
  msgid "Users successfully approved!"
4775
  msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)."
4776
 
4777
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4778
+ msgid ""
4779
+ "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
4780
+ "before you can log in."
4781
+ msgstr ""
4782
+ "<strong>ERROR</strong>: Su cuenta tiene que ser confirmada por un "
4783
+ "administrador antes de que pueda autenticarse."
4784
 
4785
  #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4786
+ msgid ""
4787
+ "Your account has to be confirmed by an administrator before you can use the "
4788
+ "\"Password Recovery\" feature."
4789
+ msgstr ""
4790
+ "Su cuenta tiene que ser confirmada por un administrador antes de que pueda "
4791
+ "usar la característica \"Recuperar Contraseña\""
4792
 
4793
  #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4794
  msgid "delete this user?"
4908
 
4909
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4910
  msgid "The selected users have had their activation emails resent"
4911
+ msgstr ""
4912
+ "Los usuarios seleccionados han tenido sus email de activación reenviados"
4913
 
4914
  #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4915
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4952
 
4953
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4954
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4955
+ msgstr ""
4956
+ "Nuevo suscriptor el %1$s.<br/><br/>Nombre de Usuario:%2$s<br/>E-mail:"
4957
+ "%3$s<br/>"
4958
 
4959
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4960
+ msgid ""
4961
+ "The \"Admin Approval\" feature was activated at the time of registration, so "
4962
+ "please remember that you need to approve this user before he/she can log in!"
4963
+ msgstr ""
4964
+ "La característica \"Aprobación del Admin\" fue activada en el tiempo de "
4965
+ "registro, ¡por favor recuerde que necesita aprobar a este usuario antes de "
4966
+ "que él/ella pueda autenticarse!"
4967
 
4968
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4969
  msgid "[%1$s] Your new account information"
4971
 
4972
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4973
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4974
+ msgstr ""
4975
+ "¡Bienvenido a %1$s!<br/><br/><br/>Su nombre de usuario es:%2$s y contraseña:"
4976
+ "%3$s"
4977
 
4978
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4979
  #: profile-builder-2.0/front-end/register.php:125
4980
+ msgid ""
4981
+ "Before you can access your account, an administrator needs to approve it. "
4982
+ "You will be notified via email."
4983
+ msgstr ""
4984
+ "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. "
4985
+ "Usted será notificado via email."
4986
 
4987
  #: profile-builder-2.0/features/login-widget/login-widget.php:10
4988
  msgid "This login widget lets you add a login form in the sidebar."
4989
+ msgstr ""
4990
+ "El widget de autenticación le permite añadir una forma de autenticación en "
4991
+ "la barra lateral."
4992
 
4993
  #: profile-builder-2.0/features/login-widget/login-widget.php:15
4994
  msgid "Profile Builder Login Widget"
5027
 
5028
  #: profile-builder-2.0/front-end/class-formbuilder.php:146
5029
  msgid "Users can register themselves or you can manually create users here."
5030
+ msgstr ""
5031
+ "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear "
5032
+ "usuarios aquí."
5033
 
5034
  #: profile-builder-2.0/front-end/class-formbuilder.php:149
5035
+ msgid ""
5036
+ "Users cannot currently register themselves, but you can manually create "
5037
+ "users here."
5038
+ msgstr ""
5039
+ "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted "
5040
+ "puede crear usuarios manualmente aquí."
5041
 
5042
  #: profile-builder-2.0/front-end/class-formbuilder.php:169
5043
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
5044
+ msgstr ""
5045
+ "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. "
5046
+ "%2s"
5047
 
5048
  #: profile-builder-2.0/front-end/class-formbuilder.php:169
5049
  msgid "Log out of this account."
5062
  msgstr "aquí"
5063
 
5064
  #: profile-builder-2.0/features/functions.php:995
5065
+ msgid ""
5066
+ "You will soon be redirected automatically. If you see this page for more "
5067
+ "than %1$d seconds, please click %2$s.%3$s"
5068
+ msgstr ""
5069
+ "Usted pronto será redirigido automáticamente. Si ve esta página por más de "
5070
+ "%1$d segundos, por favor haga clic en %2$s.%3$s"
5071
 
5072
  #: profile-builder-2.0/front-end/class-formbuilder.php:315
5073
  #: profile-builder-2.0/front-end/class-formbuilder.php:322
5076
 
5077
  #: profile-builder-2.0/front-end/class-formbuilder.php:318
5078
  #: profile-builder-2.0/front-end/class-formbuilder.php:328
5079
+ msgid ""
5080
+ "Before you can access your account %1s, you need to confirm your email "
5081
+ "address. Please check your inbox and click the activation link."
5082
+ msgstr ""
5083
+ "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección "
5084
+ "de email. Por favor chequee su bandeja de entrada y haga clic en el enlace "
5085
+ "de activación."
5086
 
5087
  #: profile-builder-2.0/front-end/class-formbuilder.php:324
5088
+ msgid ""
5089
+ "Before you can access your account %1s, an administrator has to approve it. "
5090
+ "You will be notified via email."
5091
+ msgstr ""
5092
+ "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que "
5093
+ "aprobarla. Usted será notificado via email."
5094
 
5095
  #: profile-builder-2.0/front-end/class-formbuilder.php:347
5096
  msgid "Your profile has been successfully updated!"
5154
  msgstr "Salir"
5155
 
5156
  #: profile-builder-2.0/front-end/recover.php:17
5157
+ msgid ""
5158
+ "Your account has to be confirmed by an administrator before you can use the "
5159
+ "\"Password Reset\" feature."
5160
+ msgstr ""
5161
+ "Su cuenta tiene que ser confirmada por un administrador antes de que pueda "
5162
+ "usar la característica \"Resetear Contraseña\"."
5163
 
5164
  #: profile-builder-2.0/front-end/recover.php:94
5165
  msgid "Reset Password"
5194
  msgstr "Chequee su e-mail para el enlace de confirmación."
5195
 
5196
  #: profile-builder-2.0/front-end/recover.php:235
5197
+ msgid ""
5198
+ "Someone requested that the password be reset for the following account: <b>"
5199
+ "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
5200
+ "happen.<br/>To reset your password, visit the following link:%2$s"
5201
+ msgstr ""
5202
+ "Alguien pidió que la contraseña sea reseteada para la siguiente cuenta:<b>"
5203
+ "%1$s</b><br/>Si esto fue un error, solamente ignore este email y nada "
5204
+ "ocurrirá.<br/>Para resetear su contraseña, visite el siguiente enlace:%2$s"
5205
 
5206
  #: profile-builder-2.0/front-end/recover.php:238
5207
  msgid "Password Reset from \"%1$s\""
5209
 
5210
  #: profile-builder-2.0/front-end/recover.php:245
5211
  msgid "There was an error while trying to send the activation link to %1$s!"
5212
+ msgstr ""
5213
+ "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!"
5214
 
5215
  #: profile-builder-2.0/front-end/recover.php:207
5216
  msgid "The email address entered wasn't found in the database!"
5234
  msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\""
5235
 
5236
  #: profile-builder-2.0/front-end/recover.php:303
5237
+ msgid ""
5238
+ "%1$s has requested a password change via the password reset feature.<br/>"
5239
+ "His/her new password is:%2$s"
5240
+ msgstr ""
5241
+ "%1$s ha pedido un cambio de contraseña via la característica de reseteo de "
5242
+ "contraseña.<br/>Su nueva contraseña es:%2$s"
5243
 
5244
  #: profile-builder-2.0/front-end/recover.php:320
5245
  msgid "The entered passwords don't match!"
5271
 
5272
  #: profile-builder-2.0/front-end/register.php:153
5273
  msgid "There was an error while trying to activate the user."
5274
+ msgstr "Hubo un error mientras se trataba de activar el usuario. ##"
5275
 
5276
  #: pb-add-on-woocommerce/index.php:393
5277
  #: profile-builder-2.0/front-end/default-fields/email/email.php:47
5340
 
5341
  #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
5342
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
5343
+ msgstr ""
5344
+ "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!"
5345
 
5346
  #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
5347
  msgid "To use reCAPTCHA you must get an API public key from:"
5348
+ msgstr ""
5349
+ "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
5350
 
5351
  #: profile-builder-2.0/modules/modules.php:11
5352
  #: profile-builder-2.0/modules/modules.php:58
5354
  msgstr "Módulos"
5355
 
5356
  #: profile-builder-2.0/modules/modules.php:59
5357
+ msgid ""
5358
+ "Here you can activate / deactivate available modules for Profile Builder."
5359
+ msgstr ""
5360
+ "Aquí usted puede activar/desactivar los módulos disponibles para Profile "
5361
+ "Builder."
5362
 
5363
  #: profile-builder-2.0/modules/modules.php:69
5364
  msgid "Name/Description"
5416
  msgstr "URL"
5417
 
5418
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
5419
+ msgid ""
5420
+ "These settings are also replicated in the \"User Email Customizer\" settings-"
5421
+ "page upon save."
5422
+ msgstr ""
5423
+ "Estos ajustes están también replicados en la página de ajustes de "
5424
+ "\"Personalizador de Email de Usuario\" al salvar."
5425
 
5426
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
5427
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
5474
  "<p>Username:{{username}}</p>\n"
5475
  "<p>E-mail:{{user_email}}</p>\n"
5476
  "<p>The Admin Approval feature was activated at the time of registration,\n"
5477
+ "so please remember that you need to approve this user before he/she can log "
5478
+ "in!</p>\n"
5479
  msgstr ""
5480
  "\n"
5481
  "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
5482
  "<p>Nombre de Usuario:{{username}}</p>\n"
5483
  "<p>E-mail:{{user_email}}</p>\n"
5484
+ "<p>La característica de Aprobación del Admin fue activada en el tiempo de "
5485
+ "registro,\n"
5486
+ "así que por favor recuerde que ¡necesita aprobar a este usuario antes de que "
5487
+ "pueda autenticarse!</p>\n"
5488
 
5489
  #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5490
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5548
  "\n"
5549
  "<p>To activate your user, please click the following link:<br/>\n"
5550
  "{{{activation_link}}}</p>\n"
5551
+ "<p>After you activate, you will receive another email with your credentials."
5552
+ "</p>\n"
5553
  msgstr ""
5554
  "\n"
5555
+ "<p>Para activar su usuario, por favor haga clic en el enlace siguiente:<br/>"
5556
+ "\n"
5557
  "{{{activation_link}}}</p>\n"
5558
  "<p>Luego de activar, recibirá otro email con sus credenciales.</p>\n"
5559
 
5570
  "\n"
5571
  "<h3>Welcome to {{site_name}}!</h3>\n"
5572
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5573
+ "<p>Before you can access your account, an administrator needs to approve it. "
5574
+ "You will be notified via email.</p>\n"
5575
  msgstr ""
5576
  "\n"
5577
  "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
5578
  "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
5579
+ "<p>Antes de que pueda acceder a su cuenta, un administrador necesita "
5580
+ "aprobarla. Usted será notificado via email..</p>\n"
5581
 
5582
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5583
  msgid "A new account has been created for you on {{site_name}}"
5587
  msgid ""
5588
  "\n"
5589
  "<h3>Good News!</h3>\n"
5590
+ "<p>An administrator has just approved your account: {{username}} on "
5591
+ "{{site_name}}.</p>\n"
5592
  msgstr ""
5593
  "\n"
5594
  "<h3>¡Buenas Noticias!</h3>\n"
5595
+ "<p>Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.</p>"
5596
+ "\n"
5597
 
5598
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5599
  msgid "Your account on {{site_name}} has been approved!"
5607
  msgid ""
5608
  "\n"
5609
  "<h3>Hello,</h3>\n"
5610
+ "<p>Unfortunatelly an administrator has just unapproved your account: "
5611
+ "{{username}} on {{site_name}}.</p>\n"
5612
  msgstr ""
5613
  "\n"
5614
  "<h3>Hola,</h3>\n"
5615
+ "<p>Desafortunadamente un administrador ha desaprobado su cuenta: {{username}}"
5616
+ " en {{site_name}}.</p>\n"
5617
 
5618
  #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5619
  msgid "Your account on {{site_name}} has been unapproved!"
5689
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5690
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5691
  msgid "Use this shortcode on the page you want the form to be displayed:"
5692
+ msgstr ""
5693
+ "Utilice este código corto en la página en la que desea que la forma se "
5694
+ "muestre:"
5695
 
5696
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5697
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5698
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5699
+ msgid ""
5700
+ "<span style=\"color:red;\">Note:</span> changing the form title also changes "
5701
+ "the shortcode!"
5702
+ msgstr ""
5703
+ "<span style=\"color:red;\">Nota:</span> ¡cambiar el título de la forma "
5704
+ "también cambia el código corto!"
5705
 
5706
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5707
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5722
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5723
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5724
  msgid "Allowed time to display any success messages (in seconds)"
5725
+ msgstr ""
5726
+ "Tiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)"
5727
 
5728
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5729
+ msgid ""
5730
+ "Specify the URL of the page users will be redirected once they updated their "
5731
+ "profile using this form<br/>Use the following format: http://www.mysite.com"
5732
+ msgstr ""
5733
+ "Especificar la URL de la página a la que los usuarios serán redireccionados "
5734
+ "una vez que actualizaron su perfil usando esta forma<br/>Utilizar el "
5735
+ "siguiente formato: http://www.mysite.com"
5736
 
5737
  #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5738
  msgid "After Profile Update..."
5803
  msgstr "Establecer Rol"
5804
 
5805
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5806
+ msgid ""
5807
+ "Choose what role the user will have after (s)he registered<br/>If not "
5808
+ "specified, defaults to the role set in the WordPress settings"
5809
+ msgstr ""
5810
+ "Escoger qué rol el usuario va a tener luego de que se registra<br/>Si no se "
5811
+ "especifica, se le asigna por defecto el rol establecido en los ajustes de "
5812
+ "WordPress"
5813
 
5814
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5815
  msgid "Automatically Log In"
5816
  msgstr "Autenticarse Automáticamente"
5817
 
5818
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5819
+ msgid ""
5820
+ "Whether to automatically log in the newly registered user or not<br/>Only "
5821
+ "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
5822
+ "features activated<br/>WARNING: Caching the registration form will make "
5823
+ "automatic login not work"
5824
+ msgstr ""
5825
+ "Cuando autenticarse automáticamente en el nuevo usuario registrado o no<br/>"
5826
+ "Solamente funciona en sitios simples sin las características \"Aprobación de "
5827
+ "Admin\" y \"Confirmación por Email\" activadas<br/>ADVERTENCIA: Hacer caché "
5828
+ "en la forma de registro va a hacer que la autenticación automática no "
5829
+ "funcione"
5830
 
5831
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5832
+ msgid ""
5833
+ "Specify the URL of the page users will be redirected once registered using "
5834
+ "this form<br/>Use the following format: http://www.mysite.com"
5835
+ msgstr ""
5836
+ "Especificar la URL de la página a la que los usuarios serán redirigidos una "
5837
+ "vez registrados usando esta forma<br/>Utilice el siguiente formato: http:"
5838
+ "//www.mysite.com"
5839
 
5840
  #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5841
  msgid "After Registration..."
6016
  msgstr "Parámetros de código corto adicionales"
6017
 
6018
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
6019
+ msgid ""
6020
+ "displays users having a certain meta-value within a certain (extra) meta-"
6021
+ "field"
6022
+ msgstr ""
6023
+ "muestra usuarios que tienen cierto meta valor en un cierto meta campo "
6024
+ "(adicional)"
6025
 
6026
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
6027
  msgid "Example:"
6028
  msgstr "Ejemplo:"
6029
 
6030
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
6031
+ msgid ""
6032
+ "Remember though, that the field-value combination must exist in the database."
6033
+ msgstr ""
6034
+ "Recuerde sin embargo, que la combinación campo-valor tiene que existir en la "
6035
+ "base de datos."
6036
 
6037
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
6038
  msgid "Random (very slow on large databases > 10K user)"
6043
  msgstr "Roles a Mostrar"
6044
 
6045
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
6046
+ msgid ""
6047
+ "Restrict the userlisting to these selected roles only<br/>If not specified, "
6048
+ "defaults to all existing roles"
6049
+ msgstr ""
6050
+ "Restringir la lista de usuario solamente a los roles seleccionados<br/>Si no "
6051
+ "se especifica, se amplía a todos los roles existentes"
6052
 
6053
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
6054
  msgid "Number of Users/Page"
6059
  msgstr "Criterio de Ordenamiento Por Defecto"
6060
 
6061
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
6062
+ msgid ""
6063
+ "Set the default sorting criteria<br/>This can temporarily be changed for "
6064
+ "each new session"
6065
+ msgstr ""
6066
+ "Establecer el criterio de ordenamiento por defecto<br/>Esto puede "
6067
+ "temporalmente ser cambiado para cada nueva sesión"
6068
 
6069
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
6070
  msgid "Default Sorting Order"
6071
  msgstr "Orden de Ordenamiento Por Defecto"
6072
 
6073
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
6074
+ msgid ""
6075
+ "Set the default sorting order<br/>This can temporarily be changed for each "
6076
+ "new session"
6077
+ msgstr ""
6078
+ "Establecer el orden de ordenamiento por defecto<br/>Esto puede temporalmente "
6079
+ "ser cambiado para cada nueva sesión"
6080
 
6081
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
6082
  msgid "Avatar Size (All-userlisting)"
6115
  msgstr "Ajustes de Userlisting "
6116
 
6117
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
6118
+ msgid ""
6119
+ "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6120
+ msgstr ""
6121
+ "¡Usted necesita activar la característica de Userlisting en la pestaña "
6122
+ "\"Módulos\"!"
6123
 
6124
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
6125
  msgid "You can find it in the Profile Builder menu."
6127
 
6128
  #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
6129
  msgid "No results found!"
6130
+ msgstr "¡No se encontraron resultados!"