User registration & user profile – Profile Builder - Version 3.6.0

Version Description

  • Feature: Added an option to request Email Confirmation from the user when he changes his email address from the edit profile form. Can be activated from Advanced Settings
  • Fix: A notice regarding the Email Confirmation table that appeared in some cases
Download this release

Release Info

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

Code changes from version 3.5.9 to 3.6.0

admin/advanced-settings/includes/forms/confirm-user-email-change.php ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ add_filter( 'wppb_email_confirmation_on_user_email_change', '__return_true' );
4
+
5
+
6
+ // get transient check key
7
+ function wppb_toolbox_pending_email_change_request_transient_key() {
8
+ $current_user = wp_get_current_user();
9
+ $pending_change_request_data = get_user_meta($current_user->ID, '_wppb_pending_email_change_request', true);
10
+
11
+ if (isset( $pending_change_request_data['new_email'] ) )
12
+ $pending_new_email_address = $pending_change_request_data['new_email'];
13
+ else $pending_new_email_address = '';
14
+
15
+ $transient_check_key = Wordpress_Creation_Kit_PB::wck_generate_slug(sanitize_email($pending_new_email_address));
16
+
17
+ return $transient_check_key;
18
+ }
19
+ add_filter('wppb_pending_email_change_transient_key','wppb_toolbox_pending_email_change_request_transient_key');
20
+
21
+
22
+ // get new email address
23
+ function wppb_toolbox_pending_new_email_address() {
24
+ $current_user = wp_get_current_user();
25
+ $pending_change_request_data = get_user_meta($current_user->ID, '_wppb_pending_email_change_request', true);
26
+
27
+ if ( isset( $pending_change_request_data['new_email'] ))
28
+ $pending_new_email_address = $pending_change_request_data['new_email'];
29
+ else $pending_new_email_address = '';
30
+
31
+ return $pending_new_email_address;
32
+ }
33
+ add_filter('wppb_new_email_address','wppb_toolbox_pending_new_email_address');
34
+
35
+
36
+ // set email input status
37
+ function wppb_toolbox_check_pending_email() {
38
+ $current_user = wp_get_current_user();
39
+ $unapproved_email_address = wppb_user_meta_exists( $current_user->ID, '_wppb_epaa_email' );
40
+
41
+ if ( empty( $unapproved_email_address ) && !isset( $_GET['wppb_epaa_review_users'] )) {
42
+ $transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
43
+ $transient_check = get_transient('wppb_pending_email_change_request_exists_' . $transient_check_key);
44
+
45
+ if ( $transient_check !== false )
46
+ $input_status = 'disabled';
47
+ else $input_status = 'enabled';
48
+
49
+ } else $input_status = 'needs_approval';
50
+
51
+ return $input_status;
52
+ }
53
+ add_filter('wppb_set_input_status','wppb_toolbox_check_pending_email');
54
+
55
+
56
+ // check if approval is needed
57
+ function wppb_toolbox_check_approval() {
58
+ $approval_needed = 'no';
59
+ $all_fields = get_option( 'wppb_manage_fields' );
60
+
61
+ foreach ($all_fields as $field) {
62
+ if ($field['field'] === 'Default - E-mail') {
63
+ if ( isset( $field['edit-profile-approved-by-admin'] ) && $field['edit-profile-approved-by-admin'] === 'yes') {
64
+ $approval_needed = 'yes';
65
+ }
66
+ }
67
+ }
68
+
69
+ return $approval_needed;
70
+
71
+ }
72
+ add_filter('wppb_check_approval_activation','wppb_toolbox_check_approval');
73
+
74
+
75
+ // handle email change request notification (send if admin approval is not active)
76
+ function wppb_toolbox_handle_email_change_request( $input_email ) {
77
+ if( apply_filters( 'wppb_email_confirmation_on_user_email_change', false ) && is_user_logged_in() && !isset( $_GET['wppb_epaa_review_users'] )) {
78
+ $current_user = wp_get_current_user();
79
+ $user_current_email = $current_user->user_email;
80
+
81
+ // check if the email address entered into the input is different from the current email address
82
+ if ( $input_email != $user_current_email ) {
83
+
84
+ $transient_check_key = Wordpress_Creation_Kit_PB::wck_generate_slug( sanitize_email( $input_email ));
85
+ $transient_check = get_transient( 'wppb_pending_email_change_request_exists_'.$transient_check_key );
86
+ $needs_approval = apply_filters( 'wppb_check_approval_activation','' );
87
+
88
+ if ( !wppb_user_meta_exists( $current_user->ID, '_wppb_email_change_request_nonce' )) {
89
+ $pending_request_nonce = wp_create_nonce('wppb_email_change_action_nonce');
90
+ update_user_meta($current_user->ID, '_wppb_email_change_request_nonce', $pending_request_nonce);
91
+ }
92
+
93
+ // check if a pending change request exists
94
+ if ( $transient_check === false && $needs_approval === 'no') {
95
+
96
+ // send confirmation email to new email address
97
+ do_action('wppb_send_mail_address_change_request', $input_email);
98
+
99
+ $input_email = $user_current_email;
100
+
101
+ } elseif ( $needs_approval === 'yes' ) {
102
+ update_user_meta( $current_user->ID, '_wppb_pending_email_change_request_page_url', wppb_curpageurl() );
103
+ }
104
+ }
105
+ }
106
+ return $input_email;
107
+ }
108
+ add_filter( 'wppb_before_processing_email_from_forms', 'wppb_toolbox_handle_email_change_request' );
109
+
110
+
111
+ // edit content and send email change request notification
112
+ function wppb_toolbox_send_change_request_mail( $new_email_address ) {
113
+
114
+ $needs_approval = apply_filters( 'wppb_check_approval_activation','' );
115
+
116
+ if ( $needs_approval === 'no') {
117
+ $new_email = $new_email_address;
118
+ $current_user = wp_get_current_user();
119
+ $current_url = wppb_curpageurl();
120
+ }
121
+ elseif ( $needs_approval === 'yes' ) {
122
+ $new_email = $new_email_address['email'];
123
+ $current_user = get_user_by( 'id',$new_email_address['user_id'] );
124
+ $current_url = get_user_meta( $new_email_address['user_id'], '_wppb_pending_email_change_request_page_url', true );
125
+ }
126
+
127
+
128
+ $hash = md5( $new_email );
129
+ $new_user_email = array(
130
+ 'hash' => $hash,
131
+ 'new_email' => $new_email,
132
+ );
133
+
134
+ update_user_meta( $current_user->ID, '_wppb_pending_email_change_request', $new_user_email );
135
+
136
+ $pending_request_nonce = get_user_meta($current_user->ID,'_wppb_email_change_request_nonce',true);
137
+
138
+ $arr_params = array( 'wppb_email_change_action' => 'update_email_address' ,'wppb_new_user_email' => $hash, '_wpnonce' => $pending_request_nonce );
139
+
140
+ $confirmation_url = add_query_arg($arr_params, $current_url);
141
+
142
+ $change_request_subject = sprintf( __('Email address change request for %s', 'profile-builder'), $current_user->user_email );
143
+ $change_request_subject = apply_filters( 'wppb_user_email_change_request_notification_subject', $change_request_subject, $current_user );
144
+
145
+ $change_request_message = sprintf( __('Someone requested to change the email address for your account.<br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To update your account email address to the one requested (%1$s), visit the following link: %2$s', 'profile-builder'), $new_user_email['new_email'],'<a href="'.$confirmation_url.'">Change email address!</a>' );
146
+ $change_request_message = apply_filters( 'wppb_user_email_change_request_notification_content', $change_request_message, $current_user, $confirmation_url );
147
+
148
+ wppb_mail($new_email,$change_request_subject,$change_request_message);
149
+
150
+ // set transient
151
+ $transient_key = Wordpress_Creation_Kit_PB::wck_generate_slug( sanitize_email( $new_email ));
152
+ set_transient('wppb_pending_email_change_request_exists_' . $transient_key, true, WEEK_IN_SECONDS);
153
+ }
154
+ add_action('wppb_send_mail_address_change_request','wppb_toolbox_send_change_request_mail');
155
+
156
+
157
+ // update user email | delete transient | delete change request user meta
158
+ function wppb_toolbox_change_user_email_address() {
159
+
160
+ if( !isset( $_GET['wppb_new_user_email'] ) )
161
+ return;
162
+
163
+ $current_user = wp_get_current_user();
164
+ $new_email = get_user_meta( $current_user->ID, '_wppb_pending_email_change_request', true );
165
+
166
+ if ( $new_email && hash_equals( $new_email['hash'], $_GET['wppb_new_user_email'] ) ) {
167
+ $transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
168
+ $update_user_args = array(
169
+ 'ID' => $current_user->ID,
170
+ 'user_email' => esc_html( trim( $new_email['new_email'] ) )
171
+ );
172
+
173
+ wp_update_user( $update_user_args );
174
+
175
+ $remove_change_request_metas = array('_wppb_pending_email_change_request','_wppb_pending_email_change_request_page_url','_wppb_email_change_request_nonce');
176
+ foreach ( $remove_change_request_metas as $meta ) {
177
+ delete_user_meta( $current_user->ID, $meta );
178
+ }
179
+
180
+ delete_transient('wppb_pending_email_change_request_exists_' . $transient_check_key );
181
+ }
182
+
183
+ }
184
+
185
+
186
+ // cancel pending request (delete transient | delete change request user meta)
187
+ function wppb_toolbox_cancel_pending_user_email_change_request() {
188
+ $current_user = wp_get_current_user();
189
+ $transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
190
+
191
+ $unapproved_email_address = wppb_user_meta_exists($current_user->ID, '_wppb_epaa_email' );
192
+ if (!empty($unapproved_email_address)) {
193
+ delete_user_meta( $current_user->ID, '_wppb_epaa_email' );
194
+ }
195
+
196
+ $remove_change_request_metas = array( '_wppb_pending_email_change_request' , '_wppb_pending_email_change_request_page_url' , '_wppb_email_change_request_nonce' );
197
+ foreach ( $remove_change_request_metas as $meta ) {
198
+ delete_user_meta( $current_user->ID, $meta );
199
+ }
200
+
201
+ delete_transient('wppb_pending_email_change_request_exists_' . $transient_check_key );
202
+ }
203
+
204
+
205
+ function wppb_toolbox_handle_email_change() {
206
+ if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce(sanitize_text_field( $_GET['_wpnonce'] ), 'wppb_email_change_action_nonce' ) && isset( $_GET['wppb_email_change_action'] ) ) {
207
+ if ( $_GET['wppb_email_change_action'] == 'update_email_address' && isset( $_GET['wppb_new_user_email'] ) )
208
+ wppb_toolbox_change_user_email_address();
209
+ else if ( $_GET['wppb_email_change_action'] == 'cancel_pending_email_address_change' )
210
+ wppb_toolbox_cancel_pending_user_email_change_request();
211
+ }
212
+ }
213
+ add_action('init', 'wppb_toolbox_handle_email_change');
214
+
215
+
216
+ // if there is an email change request we don't update the email address until the confirmation link, sent to user by email, is clicked
217
+ function wppb_toolbox_remove_email_from_userdata_update( $userdata ) {
218
+ $transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
219
+ $transient_check = get_transient('wppb_pending_email_change_request_exists_' . $transient_check_key);
220
+
221
+ if ($transient_check !== false)
222
+ unset( $userdata['user_email'] );
223
+
224
+ return $userdata;
225
+ }
226
+ add_filter( 'wppb_build_userdata', 'wppb_toolbox_remove_email_from_userdata_update', 20, 3 );
admin/advanced-settings/includes/views/view-forms.php CHANGED
@@ -139,6 +139,24 @@
139
  </tr>
140
  <?php endif; ?>
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  <?php if ( is_plugin_active( 'pb-add-on-social-connect/index.php' ) ) : ?>
143
  <tr>
144
  <th><?php esc_html_e( 'Disable Email Confirmation for Social Connect registrations', 'profile-builder' ); ?></th>
139
  </tr>
140
  <?php endif; ?>
141
 
142
+
143
+ <tr>
144
+ <th><?php esc_html_e( '“Email confirmation” when changing user email address', 'profile-builder' ); ?></th>
145
+
146
+ <td>
147
+ <label><input type="checkbox" name="wppb_toolbox_forms_settings[confirm-user-email-change]"<?php echo ( ( isset( $settings['confirm-user-email-change'] ) && ( $settings['confirm-user-email-change'] == 'yes' ) ) ? ' checked' : '' ); ?> value="yes">
148
+ <?php esc_html_e( 'Yes', 'profile-builder' ); ?>
149
+ </label>
150
+
151
+ <ul>
152
+ <li class="description">
153
+ <?php esc_html_e( 'If checked, an activation email is sent for the new email address.', 'profile-builder' ); ?>
154
+ </li>
155
+ </ul>
156
+ </td>
157
+ </tr>
158
+
159
+
160
  <?php if ( is_plugin_active( 'pb-add-on-social-connect/index.php' ) ) : ?>
161
  <tr>
162
  <th><?php esc_html_e( 'Disable Email Confirmation for Social Connect registrations', 'profile-builder' ); ?></th>
assets/css/style-back-end.css CHANGED
@@ -110,8 +110,6 @@
110
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-limit,
111
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-behaviour,
112
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-limit,
113
- #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-behaviour,
114
- #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-limit,
115
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-behaviour,
116
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-limit{
117
  display:block;
110
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-limit,
111
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-behaviour,
112
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-limit,
 
 
113
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-behaviour,
114
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-limit{
115
  display:block;
assets/css/style-front-end.css CHANGED
@@ -666,10 +666,6 @@ ul.wppb-faceted-list .hide-this{
666
  padding: 5px 0;
667
  }
668
 
669
- .wppb-userlisting-container .wppb-facet-select-multiple{
670
- height:auto;
671
- }
672
-
673
  .wppb-userlisting-container:after {
674
  visibility: hidden;
675
  display: block;
666
  padding: 5px 0;
667
  }
668
 
 
 
 
 
669
  .wppb-userlisting-container:after {
670
  visibility: hidden;
671
  display: block;
assets/js/jquery-pb-sitewide.js CHANGED
@@ -91,7 +91,8 @@ jQuery( function(){
91
  if( jQuery(this).val() == 'checkboxes' ){
92
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
93
  }else if( jQuery(this).val() == 'select_multiple' ){
94
- jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
 
95
  }
96
  else{
97
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide();
91
  if( jQuery(this).val() == 'checkboxes' ){
92
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
93
  }else if( jQuery(this).val() == 'select_multiple' ){
94
+ jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide();
95
+ jQuery( '.row-facet-behaviour #facet-behaviour', jQuery(this).parent().parent().parent()).val('expand');
96
  }
97
  else{
98
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide();
front-end/default-fields/email/email.php CHANGED
@@ -24,12 +24,29 @@ function wppb_email_handler( $output, $form_location, $field, $user_id, $field_c
24
 
25
  $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
26
 
 
 
27
  $output = '
28
  <label for="email">'.$item_title.$error_mark.'</label>
29
- <input class="text-input default_field_email '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="email" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="email" id="email" value="'. esc_attr( $input_value ) .'" '. $extra_attr .' />';
30
  if( !empty( $item_description ) )
31
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
34
 
35
  return apply_filters( 'wppb_'.$form_location.'_email', $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
24
 
25
  $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
26
 
27
+ $email_input_status = apply_filters( 'wppb_set_input_status', '' );
28
+
29
  $output = '
30
  <label for="email">'.$item_title.$error_mark.'</label>
31
+ <input class="text-input default_field_email '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="email" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="email" id="email" value="'. esc_attr( $input_value ) .'" '. $extra_attr .' '. $email_input_status .' />';
32
  if( !empty( $item_description ) )
33
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
34
 
35
+ if ( $email_input_status == 'enabled' && is_user_logged_in() ) {
36
+ $output .= '<span class="wppb-description-delimiter">' . __('If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>', 'profile-builder') . '</span>';
37
+ }
38
+ else if ( $email_input_status == 'disabled' ) {
39
+ $current_url = wppb_curpageurl();
40
+ $pending_request_nonce = wp_create_nonce( 'wppb_email_change_action_nonce' );
41
+ $arr_params = array( 'wppb_email_change_action' => 'cancel_pending_email_address_change','_wpnonce' => $pending_request_nonce );
42
+ $cancel_request_url = add_query_arg($arr_params, $current_url);
43
+ $pending_new_email_address = apply_filters('wppb_new_email_address','');
44
+
45
+ $output .= '<span class="wppb-description-delimiter">'. sprintf( __('There is a pending change request of your email to: %s', 'profile-builder'), '<strong>'. $pending_new_email_address .'</strong>' );
46
+ $output .= '<a style="float: right;" href="'. esc_url( $cancel_request_url ) .'">'. __('Cancel request', 'profile-builder') .'</a></span>';
47
+ }
48
+
49
+
50
  }
51
 
52
  return apply_filters( 'wppb_'.$form_location.'_email', $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
front-end/login.php CHANGED
@@ -288,17 +288,20 @@ function wppb_resend_confirmation_email() {
288
  add_action('init', 'wppb_resend_confirmation_email');
289
 
290
  function wppb_change_error_message($error_message) {
291
-
292
  if( isset( $_REQUEST['log'] ) ){
293
  global $wpdb;
294
  $check_user = sanitize_text_field( $_REQUEST['log'] );
295
-
296
- if ( is_email($check_user) )
297
- $sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $check_user )), ARRAY_A );
298
- else {
299
- $sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_login = %s", sanitize_user( $check_user )), ARRAY_A );
300
- if ( $sql_result )
301
- $check_user = $sql_result['user_email'];
 
 
 
302
  }
303
 
304
  // if the email address exists in wp_signups table, display message and link to resend Confirmation Email
288
  add_action('init', 'wppb_resend_confirmation_email');
289
 
290
  function wppb_change_error_message($error_message) {
291
+
292
  if( isset( $_REQUEST['log'] ) ){
293
  global $wpdb;
294
  $check_user = sanitize_text_field( $_REQUEST['log'] );
295
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
296
+
297
+ if ( !empty( $wppb_generalSettings['emailConfirmation'] ) && $wppb_generalSettings['emailConfirmation'] === 'yes' ) {
298
+ if ( is_email( $check_user ))
299
+ $sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $check_user )), ARRAY_A );
300
+ else {
301
+ $sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_login = %s", sanitize_user( $check_user )), ARRAY_A );
302
+ if ( $sql_result )
303
+ $check_user = $sql_result['user_email'];
304
+ }
305
  }
306
 
307
  // if the email address exists in wp_signups table, display message and link to resend Confirmation Email
front-end/register.php CHANGED
@@ -78,24 +78,10 @@ function wppb_activate_signup( $key ) {
78
 
79
  wppb_add_meta_to_user_on_activation( $user_id, '', $meta );
80
 
81
- // if admin approval is activated, then block the user untill he gets approved
82
  $wppb_generalSettings = get_option('wppb_general_settings');
83
  if( wppb_get_admin_approval_option_value() === 'yes' ){
84
- $user_data = get_userdata( $user_id );
85
-
86
- if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) {
87
- foreach( $user_data->roles as $role ) {
88
- if( in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) {
89
- wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
90
- clean_object_term_cache( $user_id, 'user_status' );
91
- } else {
92
- add_filter( 'wppb_register_success_message', 'wppb_noAdminApproval_successMessage' );
93
- }
94
- }
95
- } else {
96
- wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
97
- clean_object_term_cache( $user_id, 'user_status' );
98
- }
99
  }
100
 
101
  if ( !isset( $wppb_generalSettings['adminApproval'] ) )
78
 
79
  wppb_add_meta_to_user_on_activation( $user_id, '', $meta );
80
 
81
+ // if admin approval is activated, then block the user until he gets approved
82
  $wppb_generalSettings = get_option('wppb_general_settings');
83
  if( wppb_get_admin_approval_option_value() === 'yes' ){
84
+ wppb_update_user_status_to_pending( $user_id, $wppb_generalSettings );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  }
86
 
87
  if ( !isset( $wppb_generalSettings['adminApproval'] ) )
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 choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 3.5.9
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
70
  *
71
  *
72
  */
73
- define('PROFILE_BUILDER_VERSION', '3.5.9' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
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 choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.6.0
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.6.0' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 5.8.1
7
- Stable tag: 3.5.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -176,6 +176,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
176
  15. Edit or Add New User Role
177
 
178
  == Changelog ==
 
 
 
 
179
  = 3.5.9 =
180
  * Fix: Allow HTML in the register success messages
181
  * Misc: Added a filter that allows adding extra attributes to the login form password field: wppb_login_password_extra_attributes
4
  Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 5.8.1
7
+ Stable tag: 3.6.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
176
  15. Edit or Add New User Role
177
 
178
  == Changelog ==
179
+ = 3.6.0 =
180
+ * Feature: Added an option to request Email Confirmation from the user when he changes his email address from the edit profile form. Can be activated from Advanced Settings
181
+ * Fix: A notice regarding the Email Confirmation table that appeared in some cases
182
+
183
  = 3.5.9 =
184
  * Fix: Allow HTML in the register success messages
185
  * Misc: Added a filter that allows adding extra attributes to the login form password field: wppb_login_password_extra_attributes
translation/profile-builder.catalog.php CHANGED
@@ -1295,6 +1295,7 @@
1295
  <?php __("Reset Key", "profile-builder"); ?>
1296
  <?php __("Reset Url", "profile-builder"); ?>
1297
  <?php __("Reset Link", "profile-builder"); ?>
 
1298
  <?php __("Approve User Url", "profile-builder"); ?>
1299
  <?php __("Approve User Link", "profile-builder"); ?>
1300
  <?php __("Unapprove User Url", "profile-builder"); ?>
@@ -1326,6 +1327,9 @@
1326
  <?php __("<p>You have successfully reset your password.</p>\n", "profile-builder"); ?>
1327
  <?php __("[{{site_name}}] Password Reset Successfully", "profile-builder"); ?>
1328
  <?php __("Password Reset Success Email", "profile-builder"); ?>
 
 
 
1329
  <?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
1330
  <?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
1331
  <?php __("Changed Email Address Notification", "profile-builder"); ?>
@@ -1434,6 +1438,7 @@
1434
  <?php __("Last &raquo;&raquo;", "profile-builder"); ?>
1435
  <?php __("Show All", "profile-builder"); ?>
1436
  <?php __("Choose...", "profile-builder"); ?>
 
1437
  <?php __("No options available", "profile-builder"); ?>
1438
  <?php __("Remove All Filters", "profile-builder"); ?>
1439
  <?php __("Search", "profile-builder"); ?>
@@ -1715,6 +1720,9 @@
1715
  <?php __("Site URL slug", "profile-builder"); ?>
1716
  <?php __("Site Title", "profile-builder"); ?>
1717
  <?php __("Privacy: I would like my site to appear in search engines, and in public listings around this network.", "profile-builder"); ?>
 
 
 
1718
  <?php __("You must enter a valid email address.", "profile-builder"); ?>
1719
  <?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
1720
  <?php __("Please try a different one!", "profile-builder"); ?>
@@ -1752,6 +1760,8 @@
1752
  <?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
1753
  <?php __("An error occurred, please try again later.", "profile-builder"); ?>
1754
  <?php __("This display name is already in use. Please choose another one.", "profile-builder"); ?>
 
 
1755
  <?php __("Placeholder Labels", "profile-builder"); ?>
1756
  <?php __("Replace labels with placeholders:", "profile-builder"); ?>
1757
  <?php __("Resend activation email", "profile-builder"); ?>
@@ -1812,6 +1822,8 @@
1812
  <?php __("You should add only the domain in the list from above. eg.: gmail.com", "profile-builder"); ?>
1813
  <?php __("Forms that should bypass Email Confirmation", "profile-builder"); ?>
1814
  <?php __("Users registering through any of the selected forms will not need to confirm their email address.", "profile-builder"); ?>
 
 
1815
  <?php __("Disable Email Confirmation for Social Connect registrations", "profile-builder"); ?>
1816
  <?php __("If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature.", "profile-builder"); ?>
1817
  <?php __("Remember me checked by default", "profile-builder"); ?>
1295
  <?php __("Reset Key", "profile-builder"); ?>
1296
  <?php __("Reset Url", "profile-builder"); ?>
1297
  <?php __("Reset Link", "profile-builder"); ?>
1298
+ <?php __("Change Email Address Link", "profile-builder"); ?>
1299
  <?php __("Approve User Url", "profile-builder"); ?>
1300
  <?php __("Approve User Link", "profile-builder"); ?>
1301
  <?php __("Unapprove User Url", "profile-builder"); ?>
1327
  <?php __("<p>You have successfully reset your password.</p>\n", "profile-builder"); ?>
1328
  <?php __("[{{site_name}}] Password Reset Successfully", "profile-builder"); ?>
1329
  <?php __("Password Reset Success Email", "profile-builder"); ?>
1330
+ <?php __("<h3>Hi {{username}},</h3>\n<p>There is an email address change request on {{site_name}}.</p>\n<p>To change your email address click on: {{{user_email_change_link}}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
1331
+ <?php __("[{{site_name}}] Notice of Email Change Request", "profile-builder"); ?>
1332
+ <?php __("Change Email Address Request Notification", "profile-builder"); ?>
1333
  <?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
1334
  <?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
1335
  <?php __("Changed Email Address Notification", "profile-builder"); ?>
1438
  <?php __("Last &raquo;&raquo;", "profile-builder"); ?>
1439
  <?php __("Show All", "profile-builder"); ?>
1440
  <?php __("Choose...", "profile-builder"); ?>
1441
+ <?php __("Choose or type in an option...", "profile-builder"); ?>
1442
  <?php __("No options available", "profile-builder"); ?>
1443
  <?php __("Remove All Filters", "profile-builder"); ?>
1444
  <?php __("Search", "profile-builder"); ?>
1720
  <?php __("Site URL slug", "profile-builder"); ?>
1721
  <?php __("Site Title", "profile-builder"); ?>
1722
  <?php __("Privacy: I would like my site to appear in search engines, and in public listings around this network.", "profile-builder"); ?>
1723
+ <?php __("There is a pending change request of your email to: %s", "profile-builder"); ?>
1724
+ <?php __("Cancel request", "profile-builder"); ?>
1725
+ <?php __("If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>", "profile-builder"); ?>
1726
  <?php __("You must enter a valid email address.", "profile-builder"); ?>
1727
  <?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
1728
  <?php __("Please try a different one!", "profile-builder"); ?>
1760
  <?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
1761
  <?php __("An error occurred, please try again later.", "profile-builder"); ?>
1762
  <?php __("This display name is already in use. Please choose another one.", "profile-builder"); ?>
1763
+ <?php __("Email address change request for %s", "profile-builder"); ?>
1764
+ <?php __("Someone requested to change the email address for your account.<br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To update your account email address to the one requested (%1$s), visit the following link: %2$s", "profile-builder"); ?>
1765
  <?php __("Placeholder Labels", "profile-builder"); ?>
1766
  <?php __("Replace labels with placeholders:", "profile-builder"); ?>
1767
  <?php __("Resend activation email", "profile-builder"); ?>
1822
  <?php __("You should add only the domain in the list from above. eg.: gmail.com", "profile-builder"); ?>
1823
  <?php __("Forms that should bypass Email Confirmation", "profile-builder"); ?>
1824
  <?php __("Users registering through any of the selected forms will not need to confirm their email address.", "profile-builder"); ?>
1825
+ <?php __("“Email confirmation” when changing user email address", "profile-builder"); ?>
1826
+ <?php __("If checked, an activation email is sent for the new email address.", "profile-builder"); ?>
1827
  <?php __("Disable Email Confirmation for Social Connect registrations", "profile-builder"); ?>
1828
  <?php __("If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature.", "profile-builder"); ?>
1829
  <?php __("Remember me checked by default", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -53,7 +53,7 @@ msgstr ""
53
  msgid "No"
54
  msgstr ""
55
 
56
- #: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, ../pb-add-on-social-connect/index.php:385, admin/general-settings.php:149, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:273, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2513, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:253, admin/advanced-settings/includes/views/view-forms.php:274, admin/advanced-settings/includes/views/view-forms.php:294, admin/advanced-settings/includes/views/view-forms.php:316, admin/advanced-settings/includes/views/view-forms.php:338, admin/advanced-settings/includes/views/view-forms.php:358, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
57
  msgid "Yes"
58
  msgstr ""
59
 
@@ -377,7 +377,7 @@ msgstr ""
377
  msgid "Edit Profile"
378
  msgstr ""
379
 
380
- #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:575, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
@@ -397,79 +397,79 @@ msgstr ""
397
  msgid "Width (px)"
398
  msgstr ""
399
 
400
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:201
401
  msgid "Requires Admin Approval on Edit Profile"
402
  msgstr ""
403
 
404
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:201
405
  msgid "Choose if this field requires an administrator to approve any modifications on the edit profile forms"
406
  msgstr ""
407
 
408
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:302
409
  msgid "This field requires admin approval on edit profile"
410
  msgstr ""
411
 
412
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:371
413
  msgid "Finish Review and Send Notifications"
414
  msgstr ""
415
 
416
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:372
417
  msgid "Approve All"
418
  msgstr ""
419
 
420
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:390
421
  msgid "This field requires approval by an administrator"
422
  msgstr ""
423
 
424
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:355
425
  msgid "Unapproved"
426
  msgstr ""
427
 
428
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:353
429
  msgid "Approved"
430
  msgstr ""
431
 
432
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:759, ../pb-add-on-edit-profile-approved-by-admin/index.php:789
433
  msgid "Your profile has been reviewed by an administrator"
434
  msgstr ""
435
 
436
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:781
437
  msgid "Approved fields:%s"
438
  msgstr ""
439
 
440
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:785
441
  msgid "Unapproved fields:%s"
442
  msgstr ""
443
 
444
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:808
445
  msgid "Field %1$s changed from %2$s to %3$s"
446
  msgstr ""
447
 
448
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:816
449
  msgid "The user %1$s has updated their profile and some of the fields require admin approval:<br><br> %2$s"
450
  msgstr ""
451
 
452
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:818
453
  msgid "Access this link to approve changes: %1$s"
454
  msgstr ""
455
 
456
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:821
457
  msgid "A user has updated their profile. Some fields need approval"
458
  msgstr ""
459
 
460
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:841
461
  msgid "Field %1$s requires approval from an administrator"
462
  msgstr ""
463
 
464
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:916
465
  msgid "Show users that require review"
466
  msgstr ""
467
 
468
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:918
469
  msgid "Show reviewed users with unapproved fields"
470
  msgstr ""
471
 
472
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:921
473
  msgid "Exit Review Mode"
474
  msgstr ""
475
 
@@ -957,7 +957,7 @@ msgstr ""
957
  msgid "Click to edit "
958
  msgstr ""
959
 
960
- #: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:50
961
  msgid "The email you entered is not a valid email address."
962
  msgstr ""
963
 
@@ -1549,7 +1549,7 @@ msgstr ""
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
1552
- #: admin/admin-bar.php:92, admin/general-settings.php:346, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1019, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:374, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
1553
  msgid "Save Changes"
1554
  msgstr ""
1555
 
@@ -2077,11 +2077,11 @@ msgstr ""
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
- #: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:331, front-end/login.php:345, front-end/login.php:529, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2467, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2081
  msgid "Username"
2082
  msgstr ""
2083
 
2084
- #: admin/general-settings.php:303, front-end/login.php:526, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2468, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2085
  msgid "Email"
2086
  msgstr ""
2087
 
@@ -2601,7 +2601,7 @@ msgstr ""
2601
  msgid "Usernames cannot be changed."
2602
  msgstr ""
2603
 
2604
- #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:916, add-ons/user-listing/userlisting.php:2475
2605
  msgid "Nickname"
2606
  msgstr ""
2607
 
@@ -2613,7 +2613,7 @@ msgstr ""
2613
  msgid "E-mail"
2614
  msgstr ""
2615
 
2616
- #: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:898, add-ons/user-listing/userlisting.php:2469
2617
  msgid "Website"
2618
  msgstr ""
2619
 
@@ -2629,7 +2629,7 @@ msgstr ""
2629
  msgid "Jabber / Google Talk"
2630
  msgstr ""
2631
 
2632
- #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:901, add-ons/user-listing/userlisting.php:2470
2633
  msgid "Biographical Info"
2634
  msgstr ""
2635
 
@@ -4649,7 +4649,7 @@ msgstr ""
4649
  msgid "Only an administrator can add new users."
4650
  msgstr ""
4651
 
4652
- #: front-end/class-formbuilder.php:302, front-end/login.php:633, assets/lib/wck-api/wordpress-creation-kit.php:786
4653
  msgid "You are not allowed to do this."
4654
  msgstr ""
4655
 
@@ -4726,71 +4726,71 @@ msgstr ""
4726
  msgid "Activation email sent to %s"
4727
  msgstr ""
4728
 
4729
- #: front-end/login.php:310, front-end/login.php:402, front-end/login.php:440, front-end/recover.php:18, front-end/recover.php:324, features/two-factor-authentication/class-two-factor-authentication.php:574, front-end/extra-fields/extra-fields.php:95
4730
  msgid "ERROR"
4731
  msgstr ""
4732
 
4733
- #: front-end/login.php:310
4734
  msgid "You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s"
4735
  msgstr ""
4736
 
4737
- #: front-end/login.php:406
4738
  msgid "The password field is empty."
4739
  msgstr ""
4740
 
4741
- #: front-end/login.php:410
4742
  msgid "The password you entered is incorrect."
4743
  msgstr ""
4744
 
4745
- #: front-end/login.php:419
4746
  msgid "The username field is empty"
4747
  msgstr ""
4748
 
4749
- #: front-end/login.php:417
4750
  msgid "The username/email field is empty"
4751
  msgstr ""
4752
 
4753
- #: front-end/login.php:415
4754
  msgid "The email field is empty."
4755
  msgstr ""
4756
 
4757
- #: front-end/login.php:428
4758
  msgid "Invalid username."
4759
  msgstr ""
4760
 
4761
- #: front-end/login.php:426
4762
  msgid "Invalid username or email."
4763
  msgstr ""
4764
 
4765
- #: front-end/login.php:424
4766
  msgid "Invalid email."
4767
  msgstr ""
4768
 
4769
- #: front-end/login.php:434
4770
  msgid "Password Lost and Found."
4771
  msgstr ""
4772
 
4773
- #: front-end/login.php:434, front-end/login.php:581
4774
  msgid "Lost your password?"
4775
  msgstr ""
4776
 
4777
- #: front-end/login.php:440
4778
  msgid "Both fields are empty."
4779
  msgstr ""
4780
 
4781
- #: front-end/login.php:620, front-end/logout.php:38
4782
  msgid "Log out of this account"
4783
  msgstr ""
4784
 
4785
- #: front-end/login.php:620, front-end/logout.php:25
4786
  msgid "Log out &raquo;"
4787
  msgstr ""
4788
 
4789
- #: front-end/login.php:621
4790
  msgid "You are currently logged in as %1$s. %2$s"
4791
  msgstr ""
4792
 
4793
- #: front-end/login.php:533, front-end/recover.php:122
4794
  msgid "Username or Email"
4795
  msgstr ""
4796
 
@@ -4906,15 +4906,15 @@ msgstr ""
4906
  msgid "This username is now active!"
4907
  msgstr ""
4908
 
4909
- #: front-end/register.php:153
4910
  msgid "There was an error while trying to activate the user."
4911
  msgstr ""
4912
 
4913
- #: front-end/register.php:124
4914
  msgid "Your email was successfully confirmed."
4915
  msgstr ""
4916
 
4917
- #: front-end/register.php:125, features/email-confirmation/email-confirmation.php:669
4918
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4919
  msgstr ""
4920
 
@@ -5146,7 +5146,7 @@ msgid ""
5146
  ""
5147
  msgstr ""
5148
 
5149
- #: add-ons/email-customizer/admin-email-customizer.php:80, add-ons/email-customizer/admin-email-customizer.php:111, add-ons/email-customizer/admin-email-customizer.php:142, add-ons/email-customizer/admin-email-customizer.php:182, add-ons/email-customizer/user-email-customizer.php:83, add-ons/email-customizer/user-email-customizer.php:114, add-ons/email-customizer/user-email-customizer.php:146, add-ons/email-customizer/user-email-customizer.php:177, add-ons/email-customizer/user-email-customizer.php:209, add-ons/email-customizer/user-email-customizer.php:241, add-ons/email-customizer/user-email-customizer.php:273, add-ons/email-customizer/user-email-customizer.php:307, add-ons/email-customizer/user-email-customizer.php:346
5150
  msgid "Email Subject"
5151
  msgstr ""
5152
 
@@ -5154,7 +5154,7 @@ msgstr ""
5154
  msgid "A new subscriber has (been) registered!"
5155
  msgstr ""
5156
 
5157
- #: add-ons/email-customizer/admin-email-customizer.php:87, add-ons/email-customizer/admin-email-customizer.php:118, add-ons/email-customizer/admin-email-customizer.php:149, add-ons/email-customizer/admin-email-customizer.php:189, add-ons/email-customizer/user-email-customizer.php:90, add-ons/email-customizer/user-email-customizer.php:121, add-ons/email-customizer/user-email-customizer.php:153, add-ons/email-customizer/user-email-customizer.php:184, add-ons/email-customizer/user-email-customizer.php:216, add-ons/email-customizer/user-email-customizer.php:248, add-ons/email-customizer/user-email-customizer.php:280, add-ons/email-customizer/user-email-customizer.php:314, add-ons/email-customizer/user-email-customizer.php:353
5158
  msgid "Enable email"
5159
  msgstr ""
5160
 
@@ -5260,42 +5260,46 @@ msgid "Reset Link"
5260
  msgstr ""
5261
 
5262
  #: add-ons/email-customizer/email-customizer.php:53
 
 
 
 
5263
  msgid "Approve User Url"
5264
  msgstr ""
5265
 
5266
- #: add-ons/email-customizer/email-customizer.php:54
5267
  msgid "Approve User Link"
5268
  msgstr ""
5269
 
5270
- #: add-ons/email-customizer/email-customizer.php:55
5271
  msgid "Unapprove User Url"
5272
  msgstr ""
5273
 
5274
- #: add-ons/email-customizer/email-customizer.php:56
5275
  msgid "Unapprove User Link"
5276
  msgstr ""
5277
 
5278
- #: add-ons/email-customizer/email-customizer.php:60
5279
  msgid "Approved Fields"
5280
  msgstr ""
5281
 
5282
- #: add-ons/email-customizer/email-customizer.php:61
5283
  msgid "Unapproved Fields"
5284
  msgstr ""
5285
 
5286
- #: add-ons/email-customizer/email-customizer.php:65
5287
  msgid "Modified Fields"
5288
  msgstr ""
5289
 
5290
- #: add-ons/email-customizer/email-customizer.php:66
5291
  msgid "Approval URL"
5292
  msgstr ""
5293
 
5294
- #: add-ons/email-customizer/email-customizer.php:577
5295
  msgid "The users selected password at signup"
5296
  msgstr ""
5297
 
5298
- #: add-ons/email-customizer/email-customizer.php:585, add-ons/email-customizer/email-customizer.php:592, add-ons/email-customizer/email-customizer.php:606, features/email-confirmation/email-confirmation.php:600
5299
  msgid "Your selected password at signup"
5300
  msgstr ""
5301
 
@@ -5411,6 +5415,24 @@ msgstr ""
5411
  #: add-ons/email-customizer/user-email-customizer.php:303
5412
  msgid ""
5413
  "<h3>Hi {{username}},</h3>\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5414
  "<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
5415
  "<p>If you did not change your email, please contact the Site Administrator at %s</p>\n"
5416
  "<p>This email has been sent to {{user_email}}</p>\n"
@@ -5419,15 +5441,15 @@ msgid ""
5419
  "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5420
  msgstr ""
5421
 
5422
- #: add-ons/email-customizer/user-email-customizer.php:311
5423
  msgid "[{{site_name}}] Notice of Email Change"
5424
  msgstr ""
5425
 
5426
- #: add-ons/email-customizer/user-email-customizer.php:329
5427
  msgid "Changed Email Address Notification"
5428
  msgstr ""
5429
 
5430
- #: add-ons/email-customizer/user-email-customizer.php:342
5431
  msgid ""
5432
  "<p>Your profile has been reviewed by an administrator:</p>\n"
5433
  "<br>\n"
@@ -5436,11 +5458,11 @@ msgid ""
5436
  ""
5437
  msgstr ""
5438
 
5439
- #: add-ons/email-customizer/user-email-customizer.php:350
5440
  msgid "[{{site_name}}] Your profile has been reviewed by an administrator"
5441
  msgstr ""
5442
 
5443
- #: add-ons/email-customizer/user-email-customizer.php:368
5444
  msgid "User Notification for Edit Profile Approved by Admin"
5445
  msgstr ""
5446
 
@@ -5484,27 +5506,27 @@ msgstr ""
5484
  msgid "No Edit-profile Forms found in trash"
5485
  msgstr ""
5486
 
5487
- #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2363
5488
  msgid "Shortcode"
5489
  msgstr ""
5490
 
5491
- #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2384
5492
  msgid "(no title)"
5493
  msgstr ""
5494
 
5495
- #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2406
5496
  msgid "Use this shortcode on the page you want the form to be displayed:"
5497
  msgstr ""
5498
 
5499
- #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2410
5500
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5501
  msgstr ""
5502
 
5503
- #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2404
5504
  msgid "The shortcode will be available after you publish this form."
5505
  msgstr ""
5506
 
5507
- #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2443
5508
  msgid "Form Shortcode"
5509
  msgstr ""
5510
 
@@ -5668,7 +5690,7 @@ msgstr ""
5668
  msgid "Display name as"
5669
  msgstr ""
5670
 
5671
- #: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:919, add-ons/user-listing/userlisting.php:2477, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5672
  msgid "Role"
5673
  msgstr ""
5674
 
@@ -5676,11 +5698,11 @@ msgstr ""
5676
  msgid "Role Slug"
5677
  msgstr ""
5678
 
5679
- #: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:2471
5680
  msgid "Registration Date"
5681
  msgstr ""
5682
 
5683
- #: add-ons/user-listing/userlisting.php:170, add-ons/user-listing/userlisting.php:2476
5684
  msgid "Number of Posts"
5685
  msgstr ""
5686
 
@@ -5708,7 +5730,7 @@ msgstr ""
5708
  msgid "Search all Fields"
5709
  msgstr ""
5710
 
5711
- #: add-ons/user-listing/userlisting.php:222, add-ons/user-listing/userlisting.php:2555
5712
  msgid "Faceted Menus"
5713
  msgstr ""
5714
 
@@ -5744,7 +5766,7 @@ msgstr ""
5744
  msgid "Avatar"
5745
  msgstr ""
5746
 
5747
- #: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:2472, features/admin-approval/class-admin-approval.php:175
5748
  msgid "Firstname"
5749
  msgstr ""
5750
 
@@ -5772,19 +5794,19 @@ msgstr ""
5772
  msgid "User not found"
5773
  msgstr ""
5774
 
5775
- #: add-ons/user-listing/userlisting.php:913, add-ons/user-listing/userlisting.php:2483
5776
  msgid "Jabber"
5777
  msgstr ""
5778
 
5779
- #: add-ons/user-listing/userlisting.php:910, add-ons/user-listing/userlisting.php:2482
5780
  msgid "Yim"
5781
  msgstr ""
5782
 
5783
- #: add-ons/user-listing/userlisting.php:907, add-ons/user-listing/userlisting.php:2481
5784
  msgid "Aim"
5785
  msgstr ""
5786
 
5787
- #: add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2474
5788
  msgid "Display Name"
5789
  msgstr ""
5790
 
@@ -5792,7 +5814,7 @@ msgstr ""
5792
  msgid "First/Lastname"
5793
  msgstr ""
5794
 
5795
- #: add-ons/user-listing/userlisting.php:1205, add-ons/user-listing/userlisting.php:1697, add-ons/user-listing/userlisting.php:2190, add-ons/user-listing/userlisting.php:2675
5796
  msgid "Search Users by All Fields"
5797
  msgstr ""
5798
 
@@ -5852,203 +5874,207 @@ msgstr ""
5852
  msgid "Choose..."
5853
  msgstr ""
5854
 
5855
- #: add-ons/user-listing/userlisting.php:1937
 
 
 
 
5856
  msgid "No options available"
5857
  msgstr ""
5858
 
5859
- #: add-ons/user-listing/userlisting.php:2092
5860
  msgid "Remove All Filters"
5861
  msgstr ""
5862
 
5863
- #: add-ons/user-listing/userlisting.php:2207
5864
  msgid "Search"
5865
  msgstr ""
5866
 
5867
- #: add-ons/user-listing/userlisting.php:2208
5868
  msgid "Clear Results"
5869
  msgstr ""
5870
 
5871
- #: add-ons/user-listing/userlisting.php:2413, add-ons/user-listing/userlisting.php:2417
5872
  msgid "Extra shortcode parameters"
5873
  msgstr ""
5874
 
5875
- #: add-ons/user-listing/userlisting.php:2415
5876
  msgid "View all extra shortcode parameters"
5877
  msgstr ""
5878
 
5879
- #: add-ons/user-listing/userlisting.php:2420
5880
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5881
  msgstr ""
5882
 
5883
- #: add-ons/user-listing/userlisting.php:2421
5884
  msgid "Example:"
5885
  msgstr ""
5886
 
5887
- #: add-ons/user-listing/userlisting.php:2423
5888
  msgid "Remember though, that the field-value combination must exist in the database."
5889
  msgstr ""
5890
 
5891
- #: add-ons/user-listing/userlisting.php:2429
5892
  msgid "displays only the users that you specified the user_id for"
5893
  msgstr ""
5894
 
5895
- #: add-ons/user-listing/userlisting.php:2435
5896
  msgid "displays all users except the ones you specified the user_id for"
5897
  msgstr ""
5898
 
5899
- #: add-ons/user-listing/userlisting.php:2473, features/admin-approval/class-admin-approval.php:176
5900
  msgid "Lastname"
5901
  msgstr ""
5902
 
5903
- #: add-ons/user-listing/userlisting.php:2498
5904
  msgid "Random (very slow on large databases > 10K user)"
5905
  msgstr ""
5906
 
5907
- #: add-ons/user-listing/userlisting.php:2501
5908
  msgid "Ascending"
5909
  msgstr ""
5910
 
5911
- #: add-ons/user-listing/userlisting.php:2502
5912
  msgid "Descending"
5913
  msgstr ""
5914
 
5915
- #: add-ons/user-listing/userlisting.php:2507
5916
  msgid "Roles to Display"
5917
  msgstr ""
5918
 
5919
- #: add-ons/user-listing/userlisting.php:2507
5920
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5921
  msgstr ""
5922
 
5923
- #: add-ons/user-listing/userlisting.php:2508
5924
  msgid "Number of Users/Page"
5925
  msgstr ""
5926
 
5927
- #: add-ons/user-listing/userlisting.php:2508
5928
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5929
  msgstr ""
5930
 
5931
- #: add-ons/user-listing/userlisting.php:2509
5932
  msgid "Default Sorting Criteria"
5933
  msgstr ""
5934
 
5935
- #: add-ons/user-listing/userlisting.php:2509
5936
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5937
  msgstr ""
5938
 
5939
- #: add-ons/user-listing/userlisting.php:2510
5940
  msgid "Default Sorting Order"
5941
  msgstr ""
5942
 
5943
- #: add-ons/user-listing/userlisting.php:2510
5944
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5945
  msgstr ""
5946
 
5947
- #: add-ons/user-listing/userlisting.php:2511
5948
  msgid "Avatar Size (All-userlisting)"
5949
  msgstr ""
5950
 
5951
- #: add-ons/user-listing/userlisting.php:2511
5952
  msgid "Set the avatar size on the all-userlisting only"
5953
  msgstr ""
5954
 
5955
- #: add-ons/user-listing/userlisting.php:2512
5956
  msgid "Avatar Size (Single-userlisting)"
5957
  msgstr ""
5958
 
5959
- #: add-ons/user-listing/userlisting.php:2512
5960
  msgid "Set the avatar size on the single-userlisting only"
5961
  msgstr ""
5962
 
5963
- #: add-ons/user-listing/userlisting.php:2513
5964
  msgid "Visible only to logged in users?"
5965
  msgstr ""
5966
 
5967
- #: add-ons/user-listing/userlisting.php:2513
5968
  msgid "The userlisting will only be visible only to the logged in users"
5969
  msgstr ""
5970
 
5971
- #: add-ons/user-listing/userlisting.php:2514
5972
  msgid "Visible to following Roles"
5973
  msgstr ""
5974
 
5975
- #: add-ons/user-listing/userlisting.php:2514
5976
  msgid "The userlisting will only be visible to the following roles"
5977
  msgstr ""
5978
 
5979
- #: add-ons/user-listing/userlisting.php:2520
5980
  msgid "Userlisting Settings"
5981
  msgstr ""
5982
 
5983
- #: add-ons/user-listing/userlisting.php:2545
5984
  msgid "Label"
5985
  msgstr ""
5986
 
5987
- #: add-ons/user-listing/userlisting.php:2545
5988
  msgid "Choose the facet name that appears on the frontend"
5989
  msgstr ""
5990
 
5991
- #: add-ons/user-listing/userlisting.php:2546
5992
  msgid "Facet Type"
5993
  msgstr ""
5994
 
5995
- #: add-ons/user-listing/userlisting.php:2546
5996
  msgid "Choose the facet menu type"
5997
  msgstr ""
5998
 
5999
- #: add-ons/user-listing/userlisting.php:2547
6000
  msgid "Facet Meta"
6001
  msgstr ""
6002
 
6003
- #: add-ons/user-listing/userlisting.php:2547
6004
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
6005
  msgstr ""
6006
 
6007
- #: add-ons/user-listing/userlisting.php:2548
6008
  msgid "Behaviour"
6009
  msgstr ""
6010
 
6011
- #: add-ons/user-listing/userlisting.php:2548
6012
  msgid "Narrow the results"
6013
  msgstr ""
6014
 
6015
- #: add-ons/user-listing/userlisting.php:2548
6016
  msgid "Expand the results"
6017
  msgstr ""
6018
 
6019
- #: add-ons/user-listing/userlisting.php:2548
6020
  msgid "Choose how multiple selections affect the results"
6021
  msgstr ""
6022
 
6023
- #: add-ons/user-listing/userlisting.php:2549
6024
  msgid "Visible choices"
6025
  msgstr ""
6026
 
6027
- #: add-ons/user-listing/userlisting.php:2549
6028
  msgid "Show a toggle link after this many choices. Leave blank for all"
6029
  msgstr ""
6030
 
6031
- #: add-ons/user-listing/userlisting.php:2574
6032
  msgid "Search Fields"
6033
  msgstr ""
6034
 
6035
- #: add-ons/user-listing/userlisting.php:2574
6036
  msgid "Choose the fields in which the Search Field will look in"
6037
  msgstr ""
6038
 
6039
- #: add-ons/user-listing/userlisting.php:2579
6040
  msgid "Search Settings"
6041
  msgstr ""
6042
 
6043
- #: add-ons/user-listing/userlisting.php:2651
6044
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6045
  msgstr ""
6046
 
6047
- #: add-ons/user-listing/userlisting.php:2651
6048
  msgid "You can find it in the Profile Builder menu."
6049
  msgstr ""
6050
 
6051
- #: add-ons/user-listing/userlisting.php:2814
6052
  msgid "No results found!"
6053
  msgstr ""
6054
 
@@ -6088,7 +6114,7 @@ msgstr ""
6088
  msgid "Your account has to be confirmed by an administrator before you can log in."
6089
  msgstr ""
6090
 
6091
- #: features/admin-approval/admin-approval.php:27, features/admin-approval/admin-approval.php:392, features/admin-approval/admin-approval.php:376, features/admin-approval/class-admin-approval.php:472, features/admin-approval/class-admin-approval.php:545
6092
  msgid "Admin Approval"
6093
  msgstr ""
6094
 
@@ -6108,11 +6134,11 @@ msgstr ""
6108
  msgid "User successfully deleted!"
6109
  msgstr ""
6110
 
6111
- #: features/admin-approval/admin-approval.php:90, features/admin-approval/admin-approval.php:390
6112
  msgid "User successfully unapproved!"
6113
  msgstr ""
6114
 
6115
- #: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:374
6116
  msgid "User successfully approved!"
6117
  msgstr ""
6118
 
@@ -6156,39 +6182,39 @@ msgstr ""
6156
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
6157
  msgstr ""
6158
 
6159
- #: features/admin-approval/admin-approval.php:242
6160
  msgid "Your account has been successfully created!"
6161
  msgstr ""
6162
 
6163
- #: features/admin-approval/admin-approval.php:329
6164
  msgid "Something went wrong!"
6165
  msgstr ""
6166
 
6167
- #: features/admin-approval/admin-approval.php:331
6168
  msgid "Admin Approval Error"
6169
  msgstr ""
6170
 
6171
- #: features/admin-approval/admin-approval.php:325
6172
  msgid "User not approved!"
6173
  msgstr ""
6174
 
6175
- #: features/admin-approval/admin-approval.php:327
6176
  msgid "Admin Approval Declined"
6177
  msgstr ""
6178
 
6179
- #: features/admin-approval/admin-approval.php:305
6180
  msgid "Do you wish to unapprove the registration?"
6181
  msgstr ""
6182
 
6183
- #: features/admin-approval/admin-approval.php:303
6184
  msgid "Do you wish to approve the registration?"
6185
  msgstr ""
6186
 
6187
- #: features/admin-approval/admin-approval.php:350
6188
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6189
  msgstr ""
6190
 
6191
- #: features/admin-approval/admin-approval.php:353
6192
  msgid "Admin Approval Unsuccessful"
6193
  msgstr ""
6194
 
@@ -6981,19 +7007,31 @@ msgstr ""
6981
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
6982
  msgstr ""
6983
 
6984
- #: front-end/default-fields/email/email.php:54, front-end/extra-fields/input-email/input-email.php:70
 
 
 
 
 
 
 
 
 
 
 
 
6985
  msgid "You must enter a valid email address."
6986
  msgstr ""
6987
 
6988
- #: front-end/default-fields/email/email.php:69, front-end/default-fields/email/email.php:63
6989
  msgid "This email is already reserved to be used soon."
6990
  msgstr ""
6991
 
6992
- #: front-end/default-fields/email/email.php:69, front-end/default-fields/email/email.php:63, front-end/default-fields/email/email.php:79, front-end/default-fields/email/email.php:99, front-end/default-fields/username/username.php:51, front-end/default-fields/username/username.php:67
6993
  msgid "Please try a different one!"
6994
  msgstr ""
6995
 
6996
- #: front-end/default-fields/email/email.php:79, front-end/default-fields/email/email.php:99
6997
  msgid "This email is already in use."
6998
  msgstr ""
6999
 
@@ -7129,6 +7167,14 @@ msgstr ""
7129
  msgid "This display name is already in use. Please choose another one."
7130
  msgstr ""
7131
 
 
 
 
 
 
 
 
 
7132
  #: admin/advanced-settings/includes/forms/placeholder-labels.php:106, admin/advanced-settings/includes/forms/placeholder-labels.php:110
7133
  msgid "Placeholder Labels"
7134
  msgstr ""
@@ -7370,134 +7416,142 @@ msgid "Users registering through any of the selected forms will not need to conf
7370
  msgstr ""
7371
 
7372
  #: admin/advanced-settings/includes/views/view-forms.php:144
7373
- msgid "Disable Email Confirmation for Social Connect registrations"
7374
  msgstr ""
7375
 
7376
  #: admin/advanced-settings/includes/views/view-forms.php:153
 
 
 
 
 
 
 
 
7377
  msgid "If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature."
7378
  msgstr ""
7379
 
7380
- #: admin/advanced-settings/includes/views/view-forms.php:161
7381
  msgid "Remember me checked by default"
7382
  msgstr ""
7383
 
7384
- #: admin/advanced-settings/includes/views/view-forms.php:170
7385
  msgid "Check the 'Remember Me' checkbox on Login forms, by default."
7386
  msgstr ""
7387
 
7388
- #: admin/advanced-settings/includes/views/view-forms.php:176
7389
  msgid "Remove validation from back-end profile page"
7390
  msgstr ""
7391
 
7392
- #: admin/advanced-settings/includes/views/view-forms.php:185
7393
  msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute"
7394
  msgstr ""
7395
 
7396
- #: admin/advanced-settings/includes/views/view-forms.php:196
7397
  msgid "Always show edit other users dropdown"
7398
  msgstr ""
7399
 
7400
- #: admin/advanced-settings/includes/views/view-forms.php:205
7401
  msgid "For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again."
7402
  msgstr ""
7403
 
7404
- #: admin/advanced-settings/includes/views/view-forms.php:213
7405
  msgid "Consider 'Anyone can Register' WordPress option"
7406
  msgstr ""
7407
 
7408
- #: admin/advanced-settings/includes/views/view-forms.php:223
7409
  msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it."
7410
  msgstr ""
7411
 
7412
- #: admin/advanced-settings/includes/views/view-forms.php:223
7413
  msgid "setting"
7414
  msgstr ""
7415
 
7416
- #: admin/advanced-settings/includes/views/view-forms.php:231
7417
  msgid "Modify default Redirect Delay timer"
7418
  msgstr ""
7419
 
7420
- #: admin/advanced-settings/includes/views/view-forms.php:238
7421
  msgid "This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen."
7422
  msgstr ""
7423
 
7424
- #: admin/advanced-settings/includes/views/view-forms.php:241
7425
  msgid "The default is 3 seconds. Leave empty if you do not want to change it."
7426
  msgstr ""
7427
 
7428
- #: admin/advanced-settings/includes/views/view-forms.php:249
7429
  msgid "Save Admin Approval status in usermeta"
7430
  msgstr ""
7431
 
7432
- #: admin/advanced-settings/includes/views/view-forms.php:258
7433
  msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user."
7434
  msgstr ""
7435
 
7436
- #: admin/advanced-settings/includes/views/view-forms.php:261
7437
  msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name."
7438
  msgstr ""
7439
 
7440
- #: admin/advanced-settings/includes/views/view-forms.php:270
7441
  msgid "Redirect '/author' page if user is not approved"
7442
  msgstr ""
7443
 
7444
- #: admin/advanced-settings/includes/views/view-forms.php:279
7445
  msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible."
7446
  msgstr ""
7447
 
7448
- #: admin/advanced-settings/includes/views/view-forms.php:282
7449
  msgid "Using this option you can redirect these pages, sending users who try to access them to your home page."
7450
  msgstr ""
7451
 
7452
- #: admin/advanced-settings/includes/views/view-forms.php:290
7453
  msgid "Save 'Last Login' date in usermeta"
7454
  msgstr ""
7455
 
7456
- #: admin/advanced-settings/includes/views/view-forms.php:299
7457
  msgid "By checking this option, each time a user logins, the date and time will be saved in the database."
7458
  msgstr ""
7459
 
7460
- #: admin/advanced-settings/includes/views/view-forms.php:302
7461
  msgid "The meta name for the field will be <strong>last_login_date</strong>."
7462
  msgstr ""
7463
 
7464
- #: admin/advanced-settings/includes/views/view-forms.php:305, admin/advanced-settings/includes/views/view-forms.php:327
7465
  msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms."
7466
  msgstr ""
7467
 
7468
- #: admin/advanced-settings/includes/views/view-forms.php:312
7469
  msgid "Save 'Last Profile Update' date in usermeta"
7470
  msgstr ""
7471
 
7472
- #: admin/advanced-settings/includes/views/view-forms.php:321
7473
  msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database."
7474
  msgstr ""
7475
 
7476
- #: admin/advanced-settings/includes/views/view-forms.php:324
7477
  msgid "The meta name for the field will be <strong>last_profile_update_date</strong>."
7478
  msgstr ""
7479
 
7480
- #: admin/advanced-settings/includes/views/view-forms.php:334
7481
  msgid "Disable automatic scrolling after submit"
7482
  msgstr ""
7483
 
7484
- #: admin/advanced-settings/includes/views/view-forms.php:343
7485
  msgid "By default, after each form submission the page will automatically scroll to the form message."
7486
  msgstr ""
7487
 
7488
- #: admin/advanced-settings/includes/views/view-forms.php:346
7489
  msgid "If you check this option, automatic scrolling will be disabled."
7490
  msgstr ""
7491
 
7492
- #: admin/advanced-settings/includes/views/view-forms.php:354
7493
  msgid "Use ajax on conditional fields:"
7494
  msgstr ""
7495
 
7496
- #: admin/advanced-settings/includes/views/view-forms.php:362
7497
  msgid "For large conditional forms."
7498
  msgstr ""
7499
 
7500
- #: admin/advanced-settings/includes/views/view-forms.php:365
7501
  msgid "Select \"Yes\" for improved page performance."
7502
  msgstr ""
7503
 
53
  msgid "No"
54
  msgstr ""
55
 
56
+ #: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, ../pb-add-on-social-connect/index.php:385, admin/general-settings.php:149, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:273, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2556, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:166, admin/advanced-settings/includes/views/view-forms.php:183, admin/advanced-settings/includes/views/view-forms.php:198, admin/advanced-settings/includes/views/view-forms.php:218, admin/advanced-settings/includes/views/view-forms.php:235, admin/advanced-settings/includes/views/view-forms.php:271, admin/advanced-settings/includes/views/view-forms.php:292, admin/advanced-settings/includes/views/view-forms.php:312, admin/advanced-settings/includes/views/view-forms.php:334, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
57
  msgid "Yes"
58
  msgstr ""
59
 
377
  msgid "Edit Profile"
378
  msgstr ""
379
 
380
+ #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:578, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
397
  msgid "Width (px)"
398
  msgstr ""
399
 
400
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:209
401
  msgid "Requires Admin Approval on Edit Profile"
402
  msgstr ""
403
 
404
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:209
405
  msgid "Choose if this field requires an administrator to approve any modifications on the edit profile forms"
406
  msgstr ""
407
 
408
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:310
409
  msgid "This field requires admin approval on edit profile"
410
  msgstr ""
411
 
412
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:379
413
  msgid "Finish Review and Send Notifications"
414
  msgstr ""
415
 
416
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:380
417
  msgid "Approve All"
418
  msgstr ""
419
 
420
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:398
421
  msgid "This field requires approval by an administrator"
422
  msgstr ""
423
 
424
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:427, features/admin-approval/class-admin-approval.php:355
425
  msgid "Unapproved"
426
  msgstr ""
427
 
428
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:427, features/admin-approval/class-admin-approval.php:353
429
  msgid "Approved"
430
  msgstr ""
431
 
432
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:767, ../pb-add-on-edit-profile-approved-by-admin/index.php:797
433
  msgid "Your profile has been reviewed by an administrator"
434
  msgstr ""
435
 
436
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:789
437
  msgid "Approved fields:%s"
438
  msgstr ""
439
 
440
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:793
441
  msgid "Unapproved fields:%s"
442
  msgstr ""
443
 
444
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:816
445
  msgid "Field %1$s changed from %2$s to %3$s"
446
  msgstr ""
447
 
448
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:824
449
  msgid "The user %1$s has updated their profile and some of the fields require admin approval:<br><br> %2$s"
450
  msgstr ""
451
 
452
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:826
453
  msgid "Access this link to approve changes: %1$s"
454
  msgstr ""
455
 
456
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:829
457
  msgid "A user has updated their profile. Some fields need approval"
458
  msgstr ""
459
 
460
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:849
461
  msgid "Field %1$s requires approval from an administrator"
462
  msgstr ""
463
 
464
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:924
465
  msgid "Show users that require review"
466
  msgstr ""
467
 
468
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:926
469
  msgid "Show reviewed users with unapproved fields"
470
  msgstr ""
471
 
472
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:929
473
  msgid "Exit Review Mode"
474
  msgstr ""
475
 
957
  msgid "Click to edit "
958
  msgstr ""
959
 
960
+ #: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:67
961
  msgid "The email you entered is not a valid email address."
962
  msgstr ""
963
 
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
1552
+ #: admin/admin-bar.php:92, admin/general-settings.php:346, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1019, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:392, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
1553
  msgid "Save Changes"
1554
  msgstr ""
1555
 
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
+ #: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:334, front-end/login.php:348, front-end/login.php:532, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2510, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2081
  msgid "Username"
2082
  msgstr ""
2083
 
2084
+ #: admin/general-settings.php:303, front-end/login.php:529, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2511, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2085
  msgid "Email"
2086
  msgstr ""
2087
 
2601
  msgid "Usernames cannot be changed."
2602
  msgstr ""
2603
 
2604
+ #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:916, add-ons/user-listing/userlisting.php:2518
2605
  msgid "Nickname"
2606
  msgstr ""
2607
 
2613
  msgid "E-mail"
2614
  msgstr ""
2615
 
2616
+ #: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:898, add-ons/user-listing/userlisting.php:2512
2617
  msgid "Website"
2618
  msgstr ""
2619
 
2629
  msgid "Jabber / Google Talk"
2630
  msgstr ""
2631
 
2632
+ #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:901, add-ons/user-listing/userlisting.php:2513
2633
  msgid "Biographical Info"
2634
  msgstr ""
2635
 
4649
  msgid "Only an administrator can add new users."
4650
  msgstr ""
4651
 
4652
+ #: front-end/class-formbuilder.php:302, front-end/login.php:636, assets/lib/wck-api/wordpress-creation-kit.php:786
4653
  msgid "You are not allowed to do this."
4654
  msgstr ""
4655
 
4726
  msgid "Activation email sent to %s"
4727
  msgstr ""
4728
 
4729
+ #: front-end/login.php:313, front-end/login.php:405, front-end/login.php:443, front-end/recover.php:18, front-end/recover.php:324, features/two-factor-authentication/class-two-factor-authentication.php:574, front-end/extra-fields/extra-fields.php:95
4730
  msgid "ERROR"
4731
  msgstr ""
4732
 
4733
+ #: front-end/login.php:313
4734
  msgid "You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s"
4735
  msgstr ""
4736
 
4737
+ #: front-end/login.php:409
4738
  msgid "The password field is empty."
4739
  msgstr ""
4740
 
4741
+ #: front-end/login.php:413
4742
  msgid "The password you entered is incorrect."
4743
  msgstr ""
4744
 
4745
+ #: front-end/login.php:422
4746
  msgid "The username field is empty"
4747
  msgstr ""
4748
 
4749
+ #: front-end/login.php:420
4750
  msgid "The username/email field is empty"
4751
  msgstr ""
4752
 
4753
+ #: front-end/login.php:418
4754
  msgid "The email field is empty."
4755
  msgstr ""
4756
 
4757
+ #: front-end/login.php:431
4758
  msgid "Invalid username."
4759
  msgstr ""
4760
 
4761
+ #: front-end/login.php:429
4762
  msgid "Invalid username or email."
4763
  msgstr ""
4764
 
4765
+ #: front-end/login.php:427
4766
  msgid "Invalid email."
4767
  msgstr ""
4768
 
4769
+ #: front-end/login.php:437
4770
  msgid "Password Lost and Found."
4771
  msgstr ""
4772
 
4773
+ #: front-end/login.php:437, front-end/login.php:584
4774
  msgid "Lost your password?"
4775
  msgstr ""
4776
 
4777
+ #: front-end/login.php:443
4778
  msgid "Both fields are empty."
4779
  msgstr ""
4780
 
4781
+ #: front-end/login.php:623, front-end/logout.php:38
4782
  msgid "Log out of this account"
4783
  msgstr ""
4784
 
4785
+ #: front-end/login.php:623, front-end/logout.php:25
4786
  msgid "Log out &raquo;"
4787
  msgstr ""
4788
 
4789
+ #: front-end/login.php:624
4790
  msgid "You are currently logged in as %1$s. %2$s"
4791
  msgstr ""
4792
 
4793
+ #: front-end/login.php:536, front-end/recover.php:122
4794
  msgid "Username or Email"
4795
  msgstr ""
4796
 
4906
  msgid "This username is now active!"
4907
  msgstr ""
4908
 
4909
+ #: front-end/register.php:139
4910
  msgid "There was an error while trying to activate the user."
4911
  msgstr ""
4912
 
4913
+ #: front-end/register.php:110
4914
  msgid "Your email was successfully confirmed."
4915
  msgstr ""
4916
 
4917
+ #: front-end/register.php:111, features/email-confirmation/email-confirmation.php:669
4918
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4919
  msgstr ""
4920
 
5146
  ""
5147
  msgstr ""
5148
 
5149
+ #: add-ons/email-customizer/admin-email-customizer.php:80, add-ons/email-customizer/admin-email-customizer.php:111, add-ons/email-customizer/admin-email-customizer.php:142, add-ons/email-customizer/admin-email-customizer.php:182, add-ons/email-customizer/user-email-customizer.php:83, add-ons/email-customizer/user-email-customizer.php:114, add-ons/email-customizer/user-email-customizer.php:146, add-ons/email-customizer/user-email-customizer.php:177, add-ons/email-customizer/user-email-customizer.php:209, add-ons/email-customizer/user-email-customizer.php:241, add-ons/email-customizer/user-email-customizer.php:273, add-ons/email-customizer/user-email-customizer.php:307, add-ons/email-customizer/user-email-customizer.php:341, add-ons/email-customizer/user-email-customizer.php:380
5150
  msgid "Email Subject"
5151
  msgstr ""
5152
 
5154
  msgid "A new subscriber has (been) registered!"
5155
  msgstr ""
5156
 
5157
+ #: add-ons/email-customizer/admin-email-customizer.php:87, add-ons/email-customizer/admin-email-customizer.php:118, add-ons/email-customizer/admin-email-customizer.php:149, add-ons/email-customizer/admin-email-customizer.php:189, add-ons/email-customizer/user-email-customizer.php:90, add-ons/email-customizer/user-email-customizer.php:121, add-ons/email-customizer/user-email-customizer.php:153, add-ons/email-customizer/user-email-customizer.php:184, add-ons/email-customizer/user-email-customizer.php:216, add-ons/email-customizer/user-email-customizer.php:248, add-ons/email-customizer/user-email-customizer.php:280, add-ons/email-customizer/user-email-customizer.php:314, add-ons/email-customizer/user-email-customizer.php:348, add-ons/email-customizer/user-email-customizer.php:387
5158
  msgid "Enable email"
5159
  msgstr ""
5160
 
5260
  msgstr ""
5261
 
5262
  #: add-ons/email-customizer/email-customizer.php:53
5263
+ msgid "Change Email Address Link"
5264
+ msgstr ""
5265
+
5266
+ #: add-ons/email-customizer/email-customizer.php:57
5267
  msgid "Approve User Url"
5268
  msgstr ""
5269
 
5270
+ #: add-ons/email-customizer/email-customizer.php:58
5271
  msgid "Approve User Link"
5272
  msgstr ""
5273
 
5274
+ #: add-ons/email-customizer/email-customizer.php:59
5275
  msgid "Unapprove User Url"
5276
  msgstr ""
5277
 
5278
+ #: add-ons/email-customizer/email-customizer.php:60
5279
  msgid "Unapprove User Link"
5280
  msgstr ""
5281
 
5282
+ #: add-ons/email-customizer/email-customizer.php:64
5283
  msgid "Approved Fields"
5284
  msgstr ""
5285
 
5286
+ #: add-ons/email-customizer/email-customizer.php:65
5287
  msgid "Unapproved Fields"
5288
  msgstr ""
5289
 
5290
+ #: add-ons/email-customizer/email-customizer.php:69
5291
  msgid "Modified Fields"
5292
  msgstr ""
5293
 
5294
+ #: add-ons/email-customizer/email-customizer.php:70
5295
  msgid "Approval URL"
5296
  msgstr ""
5297
 
5298
+ #: add-ons/email-customizer/email-customizer.php:607
5299
  msgid "The users selected password at signup"
5300
  msgstr ""
5301
 
5302
+ #: add-ons/email-customizer/email-customizer.php:615, add-ons/email-customizer/email-customizer.php:622, add-ons/email-customizer/email-customizer.php:636, features/email-confirmation/email-confirmation.php:600
5303
  msgid "Your selected password at signup"
5304
  msgstr ""
5305
 
5415
  #: add-ons/email-customizer/user-email-customizer.php:303
5416
  msgid ""
5417
  "<h3>Hi {{username}},</h3>\n"
5418
+ "<p>There is an email address change request on {{site_name}}.</p>\n"
5419
+ "<p>To change your email address click on: {{{user_email_change_link}}}</p>\n"
5420
+ "<p>Regards,<br>\n"
5421
+ "All at {{site_name}}<br>\n"
5422
+ "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5423
+ msgstr ""
5424
+
5425
+ #: add-ons/email-customizer/user-email-customizer.php:311
5426
+ msgid "[{{site_name}}] Notice of Email Change Request"
5427
+ msgstr ""
5428
+
5429
+ #: add-ons/email-customizer/user-email-customizer.php:329
5430
+ msgid "Change Email Address Request Notification"
5431
+ msgstr ""
5432
+
5433
+ #: add-ons/email-customizer/user-email-customizer.php:337
5434
+ msgid ""
5435
+ "<h3>Hi {{username}},</h3>\n"
5436
  "<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
5437
  "<p>If you did not change your email, please contact the Site Administrator at %s</p>\n"
5438
  "<p>This email has been sent to {{user_email}}</p>\n"
5441
  "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5442
  msgstr ""
5443
 
5444
+ #: add-ons/email-customizer/user-email-customizer.php:345
5445
  msgid "[{{site_name}}] Notice of Email Change"
5446
  msgstr ""
5447
 
5448
+ #: add-ons/email-customizer/user-email-customizer.php:363
5449
  msgid "Changed Email Address Notification"
5450
  msgstr ""
5451
 
5452
+ #: add-ons/email-customizer/user-email-customizer.php:376
5453
  msgid ""
5454
  "<p>Your profile has been reviewed by an administrator:</p>\n"
5455
  "<br>\n"
5458
  ""
5459
  msgstr ""
5460
 
5461
+ #: add-ons/email-customizer/user-email-customizer.php:384
5462
  msgid "[{{site_name}}] Your profile has been reviewed by an administrator"
5463
  msgstr ""
5464
 
5465
+ #: add-ons/email-customizer/user-email-customizer.php:402
5466
  msgid "User Notification for Edit Profile Approved by Admin"
5467
  msgstr ""
5468
 
5506
  msgid "No Edit-profile Forms found in trash"
5507
  msgstr ""
5508
 
5509
+ #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2406
5510
  msgid "Shortcode"
5511
  msgstr ""
5512
 
5513
+ #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2427
5514
  msgid "(no title)"
5515
  msgstr ""
5516
 
5517
+ #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2449
5518
  msgid "Use this shortcode on the page you want the form to be displayed:"
5519
  msgstr ""
5520
 
5521
+ #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2453
5522
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5523
  msgstr ""
5524
 
5525
+ #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2447
5526
  msgid "The shortcode will be available after you publish this form."
5527
  msgstr ""
5528
 
5529
+ #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2486
5530
  msgid "Form Shortcode"
5531
  msgstr ""
5532
 
5690
  msgid "Display name as"
5691
  msgstr ""
5692
 
5693
+ #: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:919, add-ons/user-listing/userlisting.php:2520, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5694
  msgid "Role"
5695
  msgstr ""
5696
 
5698
  msgid "Role Slug"
5699
  msgstr ""
5700
 
5701
+ #: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:2514
5702
  msgid "Registration Date"
5703
  msgstr ""
5704
 
5705
+ #: add-ons/user-listing/userlisting.php:170, add-ons/user-listing/userlisting.php:2519
5706
  msgid "Number of Posts"
5707
  msgstr ""
5708
 
5730
  msgid "Search all Fields"
5731
  msgstr ""
5732
 
5733
+ #: add-ons/user-listing/userlisting.php:222, add-ons/user-listing/userlisting.php:2598
5734
  msgid "Faceted Menus"
5735
  msgstr ""
5736
 
5766
  msgid "Avatar"
5767
  msgstr ""
5768
 
5769
+ #: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:2515, features/admin-approval/class-admin-approval.php:175
5770
  msgid "Firstname"
5771
  msgstr ""
5772
 
5794
  msgid "User not found"
5795
  msgstr ""
5796
 
5797
+ #: add-ons/user-listing/userlisting.php:913, add-ons/user-listing/userlisting.php:2526
5798
  msgid "Jabber"
5799
  msgstr ""
5800
 
5801
+ #: add-ons/user-listing/userlisting.php:910, add-ons/user-listing/userlisting.php:2525
5802
  msgid "Yim"
5803
  msgstr ""
5804
 
5805
+ #: add-ons/user-listing/userlisting.php:907, add-ons/user-listing/userlisting.php:2524
5806
  msgid "Aim"
5807
  msgstr ""
5808
 
5809
+ #: add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2517
5810
  msgid "Display Name"
5811
  msgstr ""
5812
 
5814
  msgid "First/Lastname"
5815
  msgstr ""
5816
 
5817
+ #: add-ons/user-listing/userlisting.php:1205, add-ons/user-listing/userlisting.php:1697, add-ons/user-listing/userlisting.php:2233, add-ons/user-listing/userlisting.php:2718
5818
  msgid "Search Users by All Fields"
5819
  msgstr ""
5820
 
5874
  msgid "Choose..."
5875
  msgstr ""
5876
 
5877
+ #: add-ons/user-listing/userlisting.php:1877
5878
+ msgid "Choose or type in an option..."
5879
+ msgstr ""
5880
+
5881
+ #: add-ons/user-listing/userlisting.php:1980
5882
  msgid "No options available"
5883
  msgstr ""
5884
 
5885
+ #: add-ons/user-listing/userlisting.php:2135
5886
  msgid "Remove All Filters"
5887
  msgstr ""
5888
 
5889
+ #: add-ons/user-listing/userlisting.php:2250
5890
  msgid "Search"
5891
  msgstr ""
5892
 
5893
+ #: add-ons/user-listing/userlisting.php:2251
5894
  msgid "Clear Results"
5895
  msgstr ""
5896
 
5897
+ #: add-ons/user-listing/userlisting.php:2456, add-ons/user-listing/userlisting.php:2460
5898
  msgid "Extra shortcode parameters"
5899
  msgstr ""
5900
 
5901
+ #: add-ons/user-listing/userlisting.php:2458
5902
  msgid "View all extra shortcode parameters"
5903
  msgstr ""
5904
 
5905
+ #: add-ons/user-listing/userlisting.php:2463
5906
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5907
  msgstr ""
5908
 
5909
+ #: add-ons/user-listing/userlisting.php:2464
5910
  msgid "Example:"
5911
  msgstr ""
5912
 
5913
+ #: add-ons/user-listing/userlisting.php:2466
5914
  msgid "Remember though, that the field-value combination must exist in the database."
5915
  msgstr ""
5916
 
5917
+ #: add-ons/user-listing/userlisting.php:2472
5918
  msgid "displays only the users that you specified the user_id for"
5919
  msgstr ""
5920
 
5921
+ #: add-ons/user-listing/userlisting.php:2478
5922
  msgid "displays all users except the ones you specified the user_id for"
5923
  msgstr ""
5924
 
5925
+ #: add-ons/user-listing/userlisting.php:2516, features/admin-approval/class-admin-approval.php:176
5926
  msgid "Lastname"
5927
  msgstr ""
5928
 
5929
+ #: add-ons/user-listing/userlisting.php:2541
5930
  msgid "Random (very slow on large databases > 10K user)"
5931
  msgstr ""
5932
 
5933
+ #: add-ons/user-listing/userlisting.php:2544
5934
  msgid "Ascending"
5935
  msgstr ""
5936
 
5937
+ #: add-ons/user-listing/userlisting.php:2545
5938
  msgid "Descending"
5939
  msgstr ""
5940
 
5941
+ #: add-ons/user-listing/userlisting.php:2550
5942
  msgid "Roles to Display"
5943
  msgstr ""
5944
 
5945
+ #: add-ons/user-listing/userlisting.php:2550
5946
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5947
  msgstr ""
5948
 
5949
+ #: add-ons/user-listing/userlisting.php:2551
5950
  msgid "Number of Users/Page"
5951
  msgstr ""
5952
 
5953
+ #: add-ons/user-listing/userlisting.php:2551
5954
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5955
  msgstr ""
5956
 
5957
+ #: add-ons/user-listing/userlisting.php:2552
5958
  msgid "Default Sorting Criteria"
5959
  msgstr ""
5960
 
5961
+ #: add-ons/user-listing/userlisting.php:2552
5962
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5963
  msgstr ""
5964
 
5965
+ #: add-ons/user-listing/userlisting.php:2553
5966
  msgid "Default Sorting Order"
5967
  msgstr ""
5968
 
5969
+ #: add-ons/user-listing/userlisting.php:2553
5970
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5971
  msgstr ""
5972
 
5973
+ #: add-ons/user-listing/userlisting.php:2554
5974
  msgid "Avatar Size (All-userlisting)"
5975
  msgstr ""
5976
 
5977
+ #: add-ons/user-listing/userlisting.php:2554
5978
  msgid "Set the avatar size on the all-userlisting only"
5979
  msgstr ""
5980
 
5981
+ #: add-ons/user-listing/userlisting.php:2555
5982
  msgid "Avatar Size (Single-userlisting)"
5983
  msgstr ""
5984
 
5985
+ #: add-ons/user-listing/userlisting.php:2555
5986
  msgid "Set the avatar size on the single-userlisting only"
5987
  msgstr ""
5988
 
5989
+ #: add-ons/user-listing/userlisting.php:2556
5990
  msgid "Visible only to logged in users?"
5991
  msgstr ""
5992
 
5993
+ #: add-ons/user-listing/userlisting.php:2556
5994
  msgid "The userlisting will only be visible only to the logged in users"
5995
  msgstr ""
5996
 
5997
+ #: add-ons/user-listing/userlisting.php:2557
5998
  msgid "Visible to following Roles"
5999
  msgstr ""
6000
 
6001
+ #: add-ons/user-listing/userlisting.php:2557
6002
  msgid "The userlisting will only be visible to the following roles"
6003
  msgstr ""
6004
 
6005
+ #: add-ons/user-listing/userlisting.php:2563
6006
  msgid "Userlisting Settings"
6007
  msgstr ""
6008
 
6009
+ #: add-ons/user-listing/userlisting.php:2588
6010
  msgid "Label"
6011
  msgstr ""
6012
 
6013
+ #: add-ons/user-listing/userlisting.php:2588
6014
  msgid "Choose the facet name that appears on the frontend"
6015
  msgstr ""
6016
 
6017
+ #: add-ons/user-listing/userlisting.php:2589
6018
  msgid "Facet Type"
6019
  msgstr ""
6020
 
6021
+ #: add-ons/user-listing/userlisting.php:2589
6022
  msgid "Choose the facet menu type"
6023
  msgstr ""
6024
 
6025
+ #: add-ons/user-listing/userlisting.php:2590
6026
  msgid "Facet Meta"
6027
  msgstr ""
6028
 
6029
+ #: add-ons/user-listing/userlisting.php:2590
6030
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
6031
  msgstr ""
6032
 
6033
+ #: add-ons/user-listing/userlisting.php:2591
6034
  msgid "Behaviour"
6035
  msgstr ""
6036
 
6037
+ #: add-ons/user-listing/userlisting.php:2591
6038
  msgid "Narrow the results"
6039
  msgstr ""
6040
 
6041
+ #: add-ons/user-listing/userlisting.php:2591
6042
  msgid "Expand the results"
6043
  msgstr ""
6044
 
6045
+ #: add-ons/user-listing/userlisting.php:2591
6046
  msgid "Choose how multiple selections affect the results"
6047
  msgstr ""
6048
 
6049
+ #: add-ons/user-listing/userlisting.php:2592
6050
  msgid "Visible choices"
6051
  msgstr ""
6052
 
6053
+ #: add-ons/user-listing/userlisting.php:2592
6054
  msgid "Show a toggle link after this many choices. Leave blank for all"
6055
  msgstr ""
6056
 
6057
+ #: add-ons/user-listing/userlisting.php:2617
6058
  msgid "Search Fields"
6059
  msgstr ""
6060
 
6061
+ #: add-ons/user-listing/userlisting.php:2617
6062
  msgid "Choose the fields in which the Search Field will look in"
6063
  msgstr ""
6064
 
6065
+ #: add-ons/user-listing/userlisting.php:2622
6066
  msgid "Search Settings"
6067
  msgstr ""
6068
 
6069
+ #: add-ons/user-listing/userlisting.php:2694
6070
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6071
  msgstr ""
6072
 
6073
+ #: add-ons/user-listing/userlisting.php:2694
6074
  msgid "You can find it in the Profile Builder menu."
6075
  msgstr ""
6076
 
6077
+ #: add-ons/user-listing/userlisting.php:2857
6078
  msgid "No results found!"
6079
  msgstr ""
6080
 
6114
  msgid "Your account has to be confirmed by an administrator before you can log in."
6115
  msgstr ""
6116
 
6117
+ #: features/admin-approval/admin-approval.php:27, features/admin-approval/admin-approval.php:395, features/admin-approval/admin-approval.php:379, features/admin-approval/class-admin-approval.php:472, features/admin-approval/class-admin-approval.php:545
6118
  msgid "Admin Approval"
6119
  msgstr ""
6120
 
6134
  msgid "User successfully deleted!"
6135
  msgstr ""
6136
 
6137
+ #: features/admin-approval/admin-approval.php:90, features/admin-approval/admin-approval.php:393
6138
  msgid "User successfully unapproved!"
6139
  msgstr ""
6140
 
6141
+ #: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:377
6142
  msgid "User successfully approved!"
6143
  msgstr ""
6144
 
6182
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
6183
  msgstr ""
6184
 
6185
+ #: features/admin-approval/admin-approval.php:245
6186
  msgid "Your account has been successfully created!"
6187
  msgstr ""
6188
 
6189
+ #: features/admin-approval/admin-approval.php:332
6190
  msgid "Something went wrong!"
6191
  msgstr ""
6192
 
6193
+ #: features/admin-approval/admin-approval.php:334
6194
  msgid "Admin Approval Error"
6195
  msgstr ""
6196
 
6197
+ #: features/admin-approval/admin-approval.php:328
6198
  msgid "User not approved!"
6199
  msgstr ""
6200
 
6201
+ #: features/admin-approval/admin-approval.php:330
6202
  msgid "Admin Approval Declined"
6203
  msgstr ""
6204
 
6205
+ #: features/admin-approval/admin-approval.php:308
6206
  msgid "Do you wish to unapprove the registration?"
6207
  msgstr ""
6208
 
6209
+ #: features/admin-approval/admin-approval.php:306
6210
  msgid "Do you wish to approve the registration?"
6211
  msgstr ""
6212
 
6213
+ #: features/admin-approval/admin-approval.php:353
6214
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6215
  msgstr ""
6216
 
6217
+ #: features/admin-approval/admin-approval.php:356
6218
  msgid "Admin Approval Unsuccessful"
6219
  msgstr ""
6220
 
7007
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
7008
  msgstr ""
7009
 
7010
+ #: front-end/default-fields/email/email.php:45
7011
+ msgid "There is a pending change request of your email to: %s"
7012
+ msgstr ""
7013
+
7014
+ #: front-end/default-fields/email/email.php:46
7015
+ msgid "Cancel request"
7016
+ msgstr ""
7017
+
7018
+ #: front-end/default-fields/email/email.php:36
7019
+ msgid "If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>"
7020
+ msgstr ""
7021
+
7022
+ #: front-end/default-fields/email/email.php:71, front-end/extra-fields/input-email/input-email.php:70
7023
  msgid "You must enter a valid email address."
7024
  msgstr ""
7025
 
7026
+ #: front-end/default-fields/email/email.php:86, front-end/default-fields/email/email.php:80
7027
  msgid "This email is already reserved to be used soon."
7028
  msgstr ""
7029
 
7030
+ #: front-end/default-fields/email/email.php:86, front-end/default-fields/email/email.php:80, front-end/default-fields/email/email.php:96, front-end/default-fields/email/email.php:116, front-end/default-fields/username/username.php:51, front-end/default-fields/username/username.php:67
7031
  msgid "Please try a different one!"
7032
  msgstr ""
7033
 
7034
+ #: front-end/default-fields/email/email.php:96, front-end/default-fields/email/email.php:116
7035
  msgid "This email is already in use."
7036
  msgstr ""
7037
 
7167
  msgid "This display name is already in use. Please choose another one."
7168
  msgstr ""
7169
 
7170
+ #: admin/advanced-settings/includes/forms/confirm-user-email-change.php:142
7171
+ msgid "Email address change request for %s"
7172
+ msgstr ""
7173
+
7174
+ #: admin/advanced-settings/includes/forms/confirm-user-email-change.php:145
7175
+ msgid "Someone requested to change the email address for your account.<br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To update your account email address to the one requested (%1$s), visit the following link: %2$s"
7176
+ msgstr ""
7177
+
7178
  #: admin/advanced-settings/includes/forms/placeholder-labels.php:106, admin/advanced-settings/includes/forms/placeholder-labels.php:110
7179
  msgid "Placeholder Labels"
7180
  msgstr ""
7416
  msgstr ""
7417
 
7418
  #: admin/advanced-settings/includes/views/view-forms.php:144
7419
+ msgid "Email confirmation” when changing user email address"
7420
  msgstr ""
7421
 
7422
  #: admin/advanced-settings/includes/views/view-forms.php:153
7423
+ msgid "If checked, an activation email is sent for the new email address."
7424
+ msgstr ""
7425
+
7426
+ #: admin/advanced-settings/includes/views/view-forms.php:162
7427
+ msgid "Disable Email Confirmation for Social Connect registrations"
7428
+ msgstr ""
7429
+
7430
+ #: admin/advanced-settings/includes/views/view-forms.php:171
7431
  msgid "If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature."
7432
  msgstr ""
7433
 
7434
+ #: admin/advanced-settings/includes/views/view-forms.php:179
7435
  msgid "Remember me checked by default"
7436
  msgstr ""
7437
 
7438
+ #: admin/advanced-settings/includes/views/view-forms.php:188
7439
  msgid "Check the 'Remember Me' checkbox on Login forms, by default."
7440
  msgstr ""
7441
 
7442
+ #: admin/advanced-settings/includes/views/view-forms.php:194
7443
  msgid "Remove validation from back-end profile page"
7444
  msgstr ""
7445
 
7446
+ #: admin/advanced-settings/includes/views/view-forms.php:203
7447
  msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute"
7448
  msgstr ""
7449
 
7450
+ #: admin/advanced-settings/includes/views/view-forms.php:214
7451
  msgid "Always show edit other users dropdown"
7452
  msgstr ""
7453
 
7454
+ #: admin/advanced-settings/includes/views/view-forms.php:223
7455
  msgid "For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again."
7456
  msgstr ""
7457
 
7458
+ #: admin/advanced-settings/includes/views/view-forms.php:231
7459
  msgid "Consider 'Anyone can Register' WordPress option"
7460
  msgstr ""
7461
 
7462
+ #: admin/advanced-settings/includes/views/view-forms.php:241
7463
  msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it."
7464
  msgstr ""
7465
 
7466
+ #: admin/advanced-settings/includes/views/view-forms.php:241
7467
  msgid "setting"
7468
  msgstr ""
7469
 
7470
+ #: admin/advanced-settings/includes/views/view-forms.php:249
7471
  msgid "Modify default Redirect Delay timer"
7472
  msgstr ""
7473
 
7474
+ #: admin/advanced-settings/includes/views/view-forms.php:256
7475
  msgid "This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen."
7476
  msgstr ""
7477
 
7478
+ #: admin/advanced-settings/includes/views/view-forms.php:259
7479
  msgid "The default is 3 seconds. Leave empty if you do not want to change it."
7480
  msgstr ""
7481
 
7482
+ #: admin/advanced-settings/includes/views/view-forms.php:267
7483
  msgid "Save Admin Approval status in usermeta"
7484
  msgstr ""
7485
 
7486
+ #: admin/advanced-settings/includes/views/view-forms.php:276
7487
  msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user."
7488
  msgstr ""
7489
 
7490
+ #: admin/advanced-settings/includes/views/view-forms.php:279
7491
  msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name."
7492
  msgstr ""
7493
 
7494
+ #: admin/advanced-settings/includes/views/view-forms.php:288
7495
  msgid "Redirect '/author' page if user is not approved"
7496
  msgstr ""
7497
 
7498
+ #: admin/advanced-settings/includes/views/view-forms.php:297
7499
  msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible."
7500
  msgstr ""
7501
 
7502
+ #: admin/advanced-settings/includes/views/view-forms.php:300
7503
  msgid "Using this option you can redirect these pages, sending users who try to access them to your home page."
7504
  msgstr ""
7505
 
7506
+ #: admin/advanced-settings/includes/views/view-forms.php:308
7507
  msgid "Save 'Last Login' date in usermeta"
7508
  msgstr ""
7509
 
7510
+ #: admin/advanced-settings/includes/views/view-forms.php:317
7511
  msgid "By checking this option, each time a user logins, the date and time will be saved in the database."
7512
  msgstr ""
7513
 
7514
+ #: admin/advanced-settings/includes/views/view-forms.php:320
7515
  msgid "The meta name for the field will be <strong>last_login_date</strong>."
7516
  msgstr ""
7517
 
7518
+ #: admin/advanced-settings/includes/views/view-forms.php:323, admin/advanced-settings/includes/views/view-forms.php:345
7519
  msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms."
7520
  msgstr ""
7521
 
7522
+ #: admin/advanced-settings/includes/views/view-forms.php:330
7523
  msgid "Save 'Last Profile Update' date in usermeta"
7524
  msgstr ""
7525
 
7526
+ #: admin/advanced-settings/includes/views/view-forms.php:339
7527
  msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database."
7528
  msgstr ""
7529
 
7530
+ #: admin/advanced-settings/includes/views/view-forms.php:342
7531
  msgid "The meta name for the field will be <strong>last_profile_update_date</strong>."
7532
  msgstr ""
7533
 
7534
+ #: admin/advanced-settings/includes/views/view-forms.php:352
7535
  msgid "Disable automatic scrolling after submit"
7536
  msgstr ""
7537
 
7538
+ #: admin/advanced-settings/includes/views/view-forms.php:361
7539
  msgid "By default, after each form submission the page will automatically scroll to the form message."
7540
  msgstr ""
7541
 
7542
+ #: admin/advanced-settings/includes/views/view-forms.php:364
7543
  msgid "If you check this option, automatic scrolling will be disabled."
7544
  msgstr ""
7545
 
7546
+ #: admin/advanced-settings/includes/views/view-forms.php:372
7547
  msgid "Use ajax on conditional fields:"
7548
  msgstr ""
7549
 
7550
+ #: admin/advanced-settings/includes/views/view-forms.php:380
7551
  msgid "For large conditional forms."
7552
  msgstr ""
7553
 
7554
+ #: admin/advanced-settings/includes/views/view-forms.php:383
7555
  msgid "Select \"Yes\" for improved page performance."
7556
  msgstr ""
7557