User registration & user profile – Profile Builder - Version 3.5.7

Version Description

  • Fix: Login form compatibility with LearnDash plugin which is hijacking the default 'wp_login_failed' hook
  • Fix: Issue with Multiple Admin Emails not sending in a case
Download this release

Release Info

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

Code changes from version 3.5.6 to 3.5.7

admin/advanced-settings/includes/admin/multiple-admin-emails.php CHANGED
@@ -6,6 +6,7 @@ function wppb_as_overwrite_mail_to( $to, $context ){
6
  'email_admin_recover_success',
7
  'wppb_epaa_admin_email',
8
  'email_admin_approve',
 
9
  );
10
 
11
  if( isset( $wppb_toolbox_admin_settings['admin-emails'] ) &&
6
  'email_admin_recover_success',
7
  'wppb_epaa_admin_email',
8
  'email_admin_approve',
9
+ 'email_admin_new_subscriber'
10
  );
11
 
12
  if( isset( $wppb_toolbox_admin_settings['admin-emails'] ) &&
assets/misc/plugin-compatibilities.php CHANGED
@@ -381,3 +381,19 @@
381
  do_action( 'bbp_template_before_user_profile' );
382
  }
383
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  do_action( 'bbp_template_before_user_profile' );
382
  }
383
  }
384
+
385
+ /****************************************************
386
+ * Plugin Name: LearnDash LMS
387
+ * This plugin hijacks the 'wp_login_failed' hook not allowing the PB login form to show errors
388
+ ****************************************************/
389
+ if ( class_exists( 'Semper_Fi_Module' ) ){
390
+ add_action( 'wppb_process_login_start', 'wppb_learndash_compatibility_login_start' );
391
+ function wppb_learndash_compatibility_login_start (){
392
+ remove_action( 'wp_login_failed', 'learndash_login_failed', 1 );
393
+ }
394
+ add_action( 'wppb_process_login_end', 'wppb_learndash_compatibility_login_end' );
395
+ function wppb_learndash_compatibility_login_end (){
396
+ add_action( 'wp_login_failed', 'learndash_login_failed', 1, 1 );
397
+ }
398
+ }
399
+
features/functions.php CHANGED
@@ -539,13 +539,12 @@ function wppb_changeDefaultAvatarUrl( $url, $id_or_email, $args ){
539
  $customUserAvatar = get_user_meta( $my_user_id, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), true );
540
  if( !empty( $customUserAvatar ) ){
541
  if( is_numeric( $customUserAvatar ) ){
542
- $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'wppb-avatar-size-'.$args['size'] );
543
- if( $img_attr[3] === false ){
544
- $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'thumbnail' );
 
545
  $avatar_url = $img_attr[0];
546
  }
547
- else
548
- $avatar_url = $img_attr[0];;
549
  }
550
  else {
551
  $customUserAvatar = get_user_meta($my_user_id, 'resized_avatar_' . $avatar_field['id'], true);
539
  $customUserAvatar = get_user_meta( $my_user_id, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), true );
540
  if( !empty( $customUserAvatar ) ){
541
  if( is_numeric( $customUserAvatar ) ){
542
+ if( $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'wppb-avatar-size-'.$args['size'] ) ) {
543
+ if ( $img_attr[3] === false ) {
544
+ $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'thumbnail' );
545
+ }
546
  $avatar_url = $img_attr[0];
547
  }
 
 
548
  }
549
  else {
550
  $customUserAvatar = get_user_meta($my_user_id, 'resized_avatar_' . $avatar_field['id'], true);
front-end/login.php CHANGED
@@ -9,6 +9,7 @@ function wppb_process_login(){
9
 
10
  do_action( 'login_init' );
11
  do_action( "login_form_login" );
 
12
 
13
  $secure_cookie = '';
14
  // If the user wants ssl but the session is not ssl, force a secure cookie.
@@ -48,6 +49,8 @@ function wppb_process_login(){
48
  */
49
  $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
50
 
 
 
51
  if ( !is_wp_error($user) ) {
52
  if ( $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) {
53
  // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
@@ -356,12 +359,18 @@ if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['logi
356
  function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
357
  // custom redirect after login on default wp login form
358
  if( ! isset( $_POST['wppb_login'] ) && ! is_wp_error( $user ) ) {
 
 
359
  // we don't have an error make sure to remove the error from the query arg
360
  $redirect_to = remove_query_arg( 'loginerror', $redirect_to );
361
 
362
  // CHECK FOR REDIRECT
363
  $redirect_to = wppb_get_redirect_url( 'normal', 'after_login', $redirect_to, $user );
364
  $redirect_to = apply_filters( 'wppb_after_login_redirect_url', $redirect_to );
 
 
 
 
365
  }
366
 
367
  // if login action initialized by our form
9
 
10
  do_action( 'login_init' );
11
  do_action( "login_form_login" );
12
+ do_action( 'wppb_process_login_start' );
13
 
14
  $secure_cookie = '';
15
  // If the user wants ssl but the session is not ssl, force a secure cookie.
49
  */
50
  $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
51
 
52
+ do_action( 'wppb_process_login_end' );
53
+
54
  if ( !is_wp_error($user) ) {
55
  if ( $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) {
56
  // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
359
  function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
360
  // custom redirect after login on default wp login form
361
  if( ! isset( $_POST['wppb_login'] ) && ! is_wp_error( $user ) ) {
362
+ $original_redirect_to = $redirect_to;
363
+
364
  // we don't have an error make sure to remove the error from the query arg
365
  $redirect_to = remove_query_arg( 'loginerror', $redirect_to );
366
 
367
  // CHECK FOR REDIRECT
368
  $redirect_to = wppb_get_redirect_url( 'normal', 'after_login', $redirect_to, $user );
369
  $redirect_to = apply_filters( 'wppb_after_login_redirect_url', $redirect_to );
370
+
371
+ if ( $redirect_to === '' ){
372
+ $redirect_to = $original_redirect_to;
373
+ }
374
  }
375
 
376
  // if login action initialized by our form
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.6
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.6' );
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.5.7
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.5.7' );
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
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
3
  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.0
7
- Stable tag: 3.5.6
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.6 =
180
  * Fix: issue with 2FA settings tab incorrectly appearing for free version users
181
  * Misc: added filter over the Display Name field select options
3
  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.7
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.5.7 =
180
+ * Fix: Login form compatibility with LearnDash plugin which is hijacking the default 'wp_login_failed' hook
181
+ * Fix: Issue with Multiple Admin Emails not sending in a case
182
+
183
  = 3.5.6 =
184
  * Fix: issue with 2FA settings tab incorrectly appearing for free version users
185
  * Misc: added filter over the Display Name field select options
translation/profile-builder.pot CHANGED
@@ -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:566, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
@@ -757,7 +757,7 @@ msgstr ""
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
- #: ../pb-add-on-social-connect/index.php:396, features/functions.php:1338
761
  msgid "here"
762
  msgstr ""
763
 
@@ -1065,7 +1065,7 @@ msgstr ""
1065
  msgid "Edit this item"
1066
  msgstr ""
1067
 
1068
- #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1027, features/roles-editor/roles-editor.php:181, assets/lib/wck-api/wordpress-creation-kit.php:406
1069
  msgid "Cancel"
1070
  msgstr ""
1071
 
@@ -1549,7 +1549,7 @@ msgstr ""
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
1552
- #: admin/admin-bar.php:92, admin/general-settings.php:345, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1020, 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
 
@@ -1573,15 +1573,15 @@ msgstr ""
1573
  msgid "Very weak"
1574
  msgstr ""
1575
 
1576
- #: admin/admin-functions.php:138, admin/general-settings.php:332, features/functions.php:769, features/functions.php:793
1577
  msgid "Weak"
1578
  msgstr ""
1579
 
1580
- #: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:769, features/functions.php:793
1581
  msgid "Medium"
1582
  msgstr ""
1583
 
1584
- #: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:769, features/functions.php:793
1585
  msgid "Strong"
1586
  msgstr ""
1587
 
@@ -2077,11 +2077,11 @@ msgstr ""
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
- #: admin/general-settings.php:301, admin/manage-fields.php:333, front-end/login.php:328, front-end/login.php:342, front-end/login.php:520, 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:302, front-end/login.php:517, 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
 
@@ -2637,7 +2637,7 @@ msgstr ""
2637
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2638
  msgstr ""
2639
 
2640
- #: admin/manage-fields.php:351, front-end/login.php:113, front-end/recover.php:72, add-ons/email-customizer/email-customizer.php:30
2641
  msgid "Password"
2642
  msgstr ""
2643
 
@@ -4241,11 +4241,11 @@ msgstr ""
4241
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4242
  msgstr ""
4243
 
4244
- #: admin/manage-fields.php:1362, features/functions.php:1041, features/functions.php:1048, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:411, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:869, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:548
4245
  msgid "Edit"
4246
  msgstr ""
4247
 
4248
- #: admin/manage-fields.php:1362, features/functions.php:1034, features/functions.php:1048, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:232, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:907, features/roles-editor/roles-editor.php:896, features/roles-editor/roles-editor.php:887, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:549, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4249
  msgid "Delete"
4250
  msgstr ""
4251
 
@@ -4557,63 +4557,63 @@ msgstr ""
4557
  msgid "Honeypot"
4558
  msgstr ""
4559
 
4560
- #: features/functions.php:743
4561
  msgid "Strength indicator"
4562
  msgstr ""
4563
 
4564
- #: features/functions.php:769, features/functions.php:793
4565
  msgid "Very Weak"
4566
  msgstr ""
4567
 
4568
- #: features/functions.php:783
4569
  msgid "Minimum length of %d characters."
4570
  msgstr ""
4571
 
4572
- #: features/functions.php:794, front-end/recover.php:384, front-end/default-fields/password/password.php:59
4573
  msgid "The password must have a minimum strength of %s"
4574
  msgstr ""
4575
 
4576
- #: features/functions.php:939
4577
  msgid "This field is required"
4578
  msgstr ""
4579
 
4580
- #: features/functions.php:977, front-end/default-fields/recaptcha/recaptcha.php:530, front-end/default-fields/recaptcha/recaptcha.php:521, front-end/default-fields/recaptcha/recaptcha.php:586, front-end/default-fields/recaptcha/recaptcha.php:634
4581
  msgid "Please enter a (valid) reCAPTCHA value"
4582
  msgstr ""
4583
 
4584
- #: features/functions.php:984
4585
  msgid "Incorrect phone number"
4586
  msgstr ""
4587
 
4588
- #: features/functions.php:1048, assets/lib/wck-api/wordpress-creation-kit.php:447
4589
  msgid "Content"
4590
  msgstr ""
4591
 
4592
- #: features/functions.php:1236
4593
  msgid "<br><br>Also, you will be able to visit your site at "
4594
  msgstr ""
4595
 
4596
- #: features/functions.php:1249
4597
  msgid "<br><br>You can visit your site at "
4598
  msgstr ""
4599
 
4600
- #: features/functions.php:1339
4601
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4602
  msgstr ""
4603
 
4604
- #: features/functions.php:1515
4605
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4606
  msgstr ""
4607
 
4608
- #: features/functions.php:1556
4609
  msgid "You are not currently logged in."
4610
  msgstr ""
4611
 
4612
- #: features/functions.php:1593
4613
  msgid "Profile Builder"
4614
  msgstr ""
4615
 
4616
- #: features/functions.php:1611, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
4617
  msgid "User Meta"
4618
  msgstr ""
4619
 
@@ -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:624, assets/lib/wck-api/wordpress-creation-kit.php:786
4653
  msgid "You are not allowed to do this."
4654
  msgstr ""
4655
 
@@ -4702,95 +4702,95 @@ msgid "Something went wrong. Please try again!"
4702
  msgstr ""
4703
 
4704
  #. translators: 1: Browser cookie documentation URL, 2: Support forums URL
4705
- #: front-end/login.php:40
4706
  msgid "<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href=\"%1$s\">this documentation</a> or try the <a href=\"%2$s\">support forums</a>."
4707
  msgstr ""
4708
 
4709
- #: front-end/login.php:112
4710
  msgid "Username or Email Address"
4711
  msgstr ""
4712
 
4713
- #: front-end/login.php:114
4714
  msgid "Remember Me"
4715
  msgstr ""
4716
 
4717
- #: front-end/login.php:115
4718
  msgid "Log In"
4719
  msgstr ""
4720
 
4721
- #: front-end/login.php:274
4722
  msgid "SUCCESS"
4723
  msgstr ""
4724
 
4725
- #: front-end/login.php:274
4726
  msgid "Activation email sent to %s"
4727
  msgstr ""
4728
 
4729
- #: front-end/login.php:307, front-end/login.php:393, front-end/login.php:431, 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:307
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:397
4738
  msgid "The password field is empty."
4739
  msgstr ""
4740
 
4741
- #: front-end/login.php:401
4742
  msgid "The password you entered is incorrect."
4743
  msgstr ""
4744
 
4745
- #: front-end/login.php:410
4746
  msgid "The username field is empty"
4747
  msgstr ""
4748
 
4749
- #: front-end/login.php:408
4750
  msgid "The username/email field is empty"
4751
  msgstr ""
4752
 
4753
- #: front-end/login.php:406
4754
  msgid "The email field is empty."
4755
  msgstr ""
4756
 
4757
- #: front-end/login.php:419
4758
  msgid "Invalid username."
4759
  msgstr ""
4760
 
4761
- #: front-end/login.php:417
4762
  msgid "Invalid username or email."
4763
  msgstr ""
4764
 
4765
- #: front-end/login.php:415
4766
  msgid "Invalid email."
4767
  msgstr ""
4768
 
4769
- #: front-end/login.php:425
4770
  msgid "Password Lost and Found."
4771
  msgstr ""
4772
 
4773
- #: front-end/login.php:425, front-end/login.php:572
4774
  msgid "Lost your password?"
4775
  msgstr ""
4776
 
4777
- #: front-end/login.php:431
4778
  msgid "Both fields are empty."
4779
  msgstr ""
4780
 
4781
- #: front-end/login.php:611, front-end/logout.php:38
4782
  msgid "Log out of this account"
4783
  msgstr ""
4784
 
4785
- #: front-end/login.php:611, front-end/logout.php:25
4786
  msgid "Log out &raquo;"
4787
  msgstr ""
4788
 
4789
- #: front-end/login.php:612
4790
  msgid "You are currently logged in as %1$s. %2$s"
4791
  msgstr ""
4792
 
4793
- #: front-end/login.php:524, front-end/recover.php:122
4794
  msgid "Username or Email"
4795
  msgstr ""
4796
 
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
 
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
+ #: ../pb-add-on-social-connect/index.php:396, features/functions.php:1337
761
  msgid "here"
762
  msgstr ""
763
 
1065
  msgid "Edit this item"
1066
  msgstr ""
1067
 
1068
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1026, features/roles-editor/roles-editor.php:181, assets/lib/wck-api/wordpress-creation-kit.php:406
1069
  msgid "Cancel"
1070
  msgstr ""
1071
 
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
1552
+ #: admin/admin-bar.php:92, admin/general-settings.php:345, 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
 
1573
  msgid "Very weak"
1574
  msgstr ""
1575
 
1576
+ #: admin/admin-functions.php:138, admin/general-settings.php:332, features/functions.php:768, features/functions.php:792
1577
  msgid "Weak"
1578
  msgstr ""
1579
 
1580
+ #: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:768, features/functions.php:792
1581
  msgid "Medium"
1582
  msgstr ""
1583
 
1584
+ #: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:768, features/functions.php:792
1585
  msgid "Strong"
1586
  msgstr ""
1587
 
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
+ #: admin/general-settings.php:301, 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:302, 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
 
2637
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2638
  msgstr ""
2639
 
2640
+ #: admin/manage-fields.php:351, front-end/login.php:116, front-end/recover.php:72, add-ons/email-customizer/email-customizer.php:30
2641
  msgid "Password"
2642
  msgstr ""
2643
 
4241
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4242
  msgstr ""
4243
 
4244
+ #: admin/manage-fields.php:1362, features/functions.php:1040, features/functions.php:1047, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:411, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:869, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:548
4245
  msgid "Edit"
4246
  msgstr ""
4247
 
4248
+ #: admin/manage-fields.php:1362, features/functions.php:1033, features/functions.php:1047, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:232, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:907, features/roles-editor/roles-editor.php:896, features/roles-editor/roles-editor.php:887, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:549, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4249
  msgid "Delete"
4250
  msgstr ""
4251
 
4557
  msgid "Honeypot"
4558
  msgstr ""
4559
 
4560
+ #: features/functions.php:742
4561
  msgid "Strength indicator"
4562
  msgstr ""
4563
 
4564
+ #: features/functions.php:768, features/functions.php:792
4565
  msgid "Very Weak"
4566
  msgstr ""
4567
 
4568
+ #: features/functions.php:782
4569
  msgid "Minimum length of %d characters."
4570
  msgstr ""
4571
 
4572
+ #: features/functions.php:793, front-end/recover.php:384, front-end/default-fields/password/password.php:59
4573
  msgid "The password must have a minimum strength of %s"
4574
  msgstr ""
4575
 
4576
+ #: features/functions.php:938
4577
  msgid "This field is required"
4578
  msgstr ""
4579
 
4580
+ #: features/functions.php:976, front-end/default-fields/recaptcha/recaptcha.php:530, front-end/default-fields/recaptcha/recaptcha.php:521, front-end/default-fields/recaptcha/recaptcha.php:586, front-end/default-fields/recaptcha/recaptcha.php:634
4581
  msgid "Please enter a (valid) reCAPTCHA value"
4582
  msgstr ""
4583
 
4584
+ #: features/functions.php:983
4585
  msgid "Incorrect phone number"
4586
  msgstr ""
4587
 
4588
+ #: features/functions.php:1047, assets/lib/wck-api/wordpress-creation-kit.php:447
4589
  msgid "Content"
4590
  msgstr ""
4591
 
4592
+ #: features/functions.php:1235
4593
  msgid "<br><br>Also, you will be able to visit your site at "
4594
  msgstr ""
4595
 
4596
+ #: features/functions.php:1248
4597
  msgid "<br><br>You can visit your site at "
4598
  msgstr ""
4599
 
4600
+ #: features/functions.php:1338
4601
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4602
  msgstr ""
4603
 
4604
+ #: features/functions.php:1514
4605
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4606
  msgstr ""
4607
 
4608
+ #: features/functions.php:1555
4609
  msgid "You are not currently logged in."
4610
  msgstr ""
4611
 
4612
+ #: features/functions.php:1592
4613
  msgid "Profile Builder"
4614
  msgstr ""
4615
 
4616
+ #: features/functions.php:1610, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
4617
  msgid "User Meta"
4618
  msgstr ""
4619
 
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
 
4702
  msgstr ""
4703
 
4704
  #. translators: 1: Browser cookie documentation URL, 2: Support forums URL
4705
+ #: front-end/login.php:41
4706
  msgid "<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href=\"%1$s\">this documentation</a> or try the <a href=\"%2$s\">support forums</a>."
4707
  msgstr ""
4708
 
4709
+ #: front-end/login.php:115
4710
  msgid "Username or Email Address"
4711
  msgstr ""
4712
 
4713
+ #: front-end/login.php:117
4714
  msgid "Remember Me"
4715
  msgstr ""
4716
 
4717
+ #: front-end/login.php:118
4718
  msgid "Log In"
4719
  msgstr ""
4720
 
4721
+ #: front-end/login.php:277
4722
  msgid "SUCCESS"
4723
  msgstr ""
4724
 
4725
+ #: front-end/login.php:277
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