User registration & user profile – Profile Builder - Version 3.5.8

Version Description

  • Fix: some incorrect translations which were causing errors
  • Fix: styling issues with Elementor widget
  • Fix: disable reCaptcha functionality in case of API credentials error
Download this release

Release Info

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

Code changes from version 3.5.7 to 3.5.8

admin/general-settings.php CHANGED
@@ -66,7 +66,8 @@ function wppb_generate_settings_tabs(){
66
  </nav>
67
  <?php
68
 
69
- $active_subpage = $active_tab;
 
70
 
71
  if( !empty( $pages['sub-pages'] ) ) {
72
  foreach ($pages['sub-pages'] as $parent_slug => $subpages) {
66
  </nav>
67
  <?php
68
 
69
+ // this is not always the same as the active tab
70
+ $active_subpage = sanitize_text_field($_GET['page']);
71
 
72
  if( !empty( $pages['sub-pages'] ) ) {
73
  foreach ($pages['sub-pages'] as $parent_slug => $subpages) {
assets/misc/elementor/widgets/class-pb-widget-rf-epf.php CHANGED
@@ -459,17 +459,17 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
459
  $targets['username'] = '';
460
  break;
461
  case 'Default - E-mail':
462
- $field_meta = 'default_email';
463
  $targets = $this->handle_placeholder_labels_active( $targets );
464
  $targets['input'] = '';
465
  break;
466
  case 'Default - Password':
467
- $field_meta = 'default_password';
468
  $targets = $this->handle_placeholder_labels_active( $targets );
469
  $targets['input'] = '';
470
  break;
471
  case 'Default - Repeat Password':
472
- $field_meta = 'default_password_repeat';
473
  $targets = $this->handle_placeholder_labels_active( $targets );
474
  $targets['input'] = '';
475
  break;
@@ -483,7 +483,7 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
483
  }
484
  break;
485
  case 'Default - Website':
486
- $field_meta = 'default_website';
487
  $targets = $this->handle_placeholder_labels_active( $targets );
488
  $targets['input'] = '';
489
  break;
459
  $targets['username'] = '';
460
  break;
461
  case 'Default - E-mail':
462
+ $field_meta = 'email';
463
  $targets = $this->handle_placeholder_labels_active( $targets );
464
  $targets['input'] = '';
465
  break;
466
  case 'Default - Password':
467
+ $field_meta = 'passw1';
468
  $targets = $this->handle_placeholder_labels_active( $targets );
469
  $targets['input'] = '';
470
  break;
471
  case 'Default - Repeat Password':
472
+ $field_meta = 'passw2';
473
  $targets = $this->handle_placeholder_labels_active( $targets );
474
  $targets['input'] = '';
475
  break;
483
  }
484
  break;
485
  case 'Default - Website':
486
+ $field_meta = 'website';
487
  $targets = $this->handle_placeholder_labels_active( $targets );
488
  $targets['input'] = '';
489
  break;
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -113,7 +113,8 @@ function wppb_recaptcha_script_footer(){
113
  }
114
  //the section below is properly escaped or the variables contain static strings
115
  // phpcs:disable
116
- echo '<script>
 
117
  var wppbRecaptchaCallback = function() {
118
  if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
119
  '.$callback_conditions.'.each(function(){
@@ -130,6 +131,18 @@ function wppb_recaptcha_script_footer(){
130
  /* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
131
  function wppbRecaptchaInitializationError(){
132
  window.wppbRecaptchaInitError = true;
 
 
 
 
 
 
 
 
 
 
 
 
133
  //add a captcha field so we do not just let the form submit if we do not have a captcha response
134
  jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
135
  }
@@ -165,17 +178,7 @@ function wppb_recaptcha_script_footer(){
165
  } else {
166
  jQuery(document).trigger( "wppb_invisible_recaptcha_success", jQuery( ".form-submit input[type=\'submit\']", elem.closest("form") ) )
167
  }
168
-
169
  }
170
-
171
- /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
172
- jQuery(document).ready(function(){
173
- if( window.wppbRecaptchaInitError === true ){
174
- jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).on("click", function(e){
175
- jQuery(this).closest("form").submit();
176
- });
177
- }
178
- });
179
  </script>';
180
  }
181
 
113
  }
114
  //the section below is properly escaped or the variables contain static strings
115
  // phpcs:disable
116
+ echo '
117
+ <script>
118
  var wppbRecaptchaCallback = function() {
119
  if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
120
  '.$callback_conditions.'.each(function(){
131
  /* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
132
  function wppbRecaptchaInitializationError(){
133
  window.wppbRecaptchaInitError = true;
134
+ ';
135
+
136
+ if( $field['recaptcha-type'] === 'invisible' ) {
137
+ echo '
138
+ /* make sure that if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
139
+ jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).on("click", function(e){
140
+ jQuery(this).closest("form").submit();
141
+ });
142
+ ';
143
+ }
144
+
145
+ echo '
146
  //add a captcha field so we do not just let the form submit if we do not have a captcha response
147
  jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
148
  }
178
  } else {
179
  jQuery(document).trigger( "wppb_invisible_recaptcha_success", jQuery( ".form-submit input[type=\'submit\']", elem.closest("form") ) )
180
  }
 
181
  }
 
 
 
 
 
 
 
 
 
182
  </script>';
183
  }
184
 
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.7
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.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__));
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.8
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.8' );
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.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -176,6 +176,11 @@ 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.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
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.8
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.8 =
180
+ * Fix: some incorrect translations which were causing errors
181
+ * Fix: styling issues with Elementor widget
182
+ * Fix: disable reCaptcha functionality in case of API credentials error
183
+
184
  = 3.5.7 =
185
  * Fix: Login form compatibility with LearnDash plugin which is hijacking the default 'wp_login_failed' hook
186
  * Fix: Issue with Multiple Admin Emails not sending in a case
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2021-08-12 14:26+0300\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,7 +16,7 @@ msgstr ""
16
 
17
  #: profile-builder-2.0/admin/general-settings.php:154
18
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
19
- msgstr "Du kannst über %1$Benutzer > Rollen Editor %2$s Benutzerrollen hinzufügen/bearbeiten."
20
 
21
  #: profile-builder-2.0/admin/general-settings.php:146
22
  msgid "\"Roles Editor\" Activated:"
@@ -101,7 +101,7 @@ msgstr "Blog Details"
101
 
102
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
103
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
104
- msgstr "Erlaube deinen Benutzern, <strong>bezahlte Konten mit Profil Builder /strong> zu haben. %1$sFinde heraus, wie>%2$s %3$sAusblenden %4$s"
105
 
106
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
107
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2021-11-02 09:07+0200\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
  #: profile-builder-2.0/admin/general-settings.php:154
18
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
19
+ msgstr "Du kannst über %1$sBenutzer > Rollen Editor%2$s Benutzerrollen hinzufügen/bearbeiten."
20
 
21
  #: profile-builder-2.0/admin/general-settings.php:146
22
  msgid "\"Roles Editor\" Activated:"
101
 
102
  #: profile-builder-2.0/admin/pms-cross-promotion.php:239
103
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
104
+ msgstr "Erlaube deinen Benutzern, <strong>bezahlte Konten mit Profil Builder</strong> zu haben. %1$sFinde heraus, wie>%2$s %3$sAusblenden%4$s"
105
 
106
  #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
107
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
translation/profile-builder.pot CHANGED
@@ -49,11 +49,11 @@ msgstr ""
49
  msgid "Replace bbPress Login form:"
50
  msgstr ""
51
 
52
- #: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, ../pb-add-on-social-connect/index.php:386, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:271, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, 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, features/content-restriction/content-restriction.php:88, features/two-factor-authentication/class-two-factor-authentication.php:124, admin/advanced-settings/includes/forms/placeholder-labels.php:136, assets/misc/elementor/widgets/class-pb-widget-l.php:76, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:180, assets/misc/elementor/widgets/class-pb-widget-ul.php:108
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:148, admin/general-settings.php:161, admin/general-settings.php:176, admin/general-settings.php:225, admin/general-settings.php:272, 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
 
@@ -701,7 +701,7 @@ msgstr ""
701
  msgid "Default Social Connect CSS in the Front-end"
702
  msgstr ""
703
 
704
- #: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:211, admin/general-settings.php:111, admin/general-settings.php:111
705
  msgid "Settings"
706
  msgstr ""
707
 
@@ -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: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
 
@@ -1569,19 +1569,19 @@ msgstr ""
1569
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1570
  msgstr ""
1571
 
1572
- #: admin/admin-functions.php:138, admin/general-settings.php:331
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
 
@@ -1993,123 +1993,123 @@ msgstr ""
1993
  msgid "Administrator Emails"
1994
  msgstr ""
1995
 
1996
- #: admin/general-settings.php:132
1997
  msgid "Profile Builder Settings"
1998
  msgstr ""
1999
 
2000
- #: admin/general-settings.php:145
2001
  msgid "Load Profile Builder's own CSS file in the front-end:"
2002
  msgstr ""
2003
 
2004
- #: admin/general-settings.php:150
2005
  msgid "You can find the default file here: %1$s"
2006
  msgstr ""
2007
 
2008
- #: admin/general-settings.php:157
2009
  msgid "Automatically Log In:"
2010
  msgstr ""
2011
 
2012
- #: admin/general-settings.php:165
2013
  msgid "Select \"Yes\" to automatically log in new users after successful registration."
2014
  msgstr ""
2015
 
2016
- #: admin/general-settings.php:172
2017
  msgid "\"Email Confirmation\" Activated:"
2018
  msgstr ""
2019
 
2020
- #: admin/general-settings.php:180
2021
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
2022
  msgstr ""
2023
 
2024
- #: admin/general-settings.php:182
2025
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2026
  msgstr ""
2027
 
2028
- #: admin/general-settings.php:190
2029
  msgid "\"Email Confirmation\" Landing Page:"
2030
  msgstr ""
2031
 
2032
- #: admin/general-settings.php:195
2033
  msgid "Existing Pages"
2034
  msgstr ""
2035
 
2036
- #: admin/general-settings.php:210
2037
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
2038
  msgstr ""
2039
 
2040
- #: admin/general-settings.php:221
2041
  msgid "\"Admin Approval\" Activated:"
2042
  msgstr ""
2043
 
2044
- #: admin/general-settings.php:229
2045
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2046
  msgstr ""
2047
 
2048
- #: admin/general-settings.php:236
2049
  msgid "\"Admin Approval\" on User Role:"
2050
  msgstr ""
2051
 
2052
- #: admin/general-settings.php:255
2053
  msgid "Select on what user roles to activate Admin Approval."
2054
  msgstr ""
2055
 
2056
- #: admin/general-settings.php:267
2057
  msgid "\"Roles Editor\" Activated:"
2058
  msgstr ""
2059
 
2060
- #: admin/general-settings.php:275
2061
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
2062
  msgstr ""
2063
 
2064
- #: admin/general-settings.php:286
2065
  msgid "\"Admin Approval\" Feature:"
2066
  msgstr ""
2067
 
2068
- #: admin/general-settings.php:289
2069
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
2070
  msgstr ""
2071
 
2072
- #: admin/general-settings.php:296
2073
  msgid "Allow Users to Log in With:"
2074
  msgstr ""
2075
 
2076
- #: admin/general-settings.php:300
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
 
2088
- #: admin/general-settings.php:305
2089
  msgid "\"Username and Email\" - users can Log In with either their Username or their Email."
2090
  msgstr ""
2091
 
2092
- #: admin/general-settings.php:306
2093
  msgid "\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms."
2094
  msgstr ""
2095
 
2096
- #: admin/general-settings.php:307
2097
  msgid "\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails."
2098
  msgstr ""
2099
 
2100
- #: admin/general-settings.php:314
2101
  msgid "Minimum Password Length:"
2102
  msgstr ""
2103
 
2104
- #: admin/general-settings.php:319
2105
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2106
  msgstr ""
2107
 
2108
- #: admin/general-settings.php:326
2109
  msgid "Minimum Password Strength:"
2110
  msgstr ""
2111
 
2112
- #: admin/general-settings.php:330
2113
  msgid "Disabled"
2114
  msgstr ""
2115
 
@@ -4577,7 +4577,7 @@ msgstr ""
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
 
@@ -7017,15 +7017,15 @@ msgstr ""
7017
  msgid "To use reCAPTCHA you must get an API key from"
7018
  msgstr ""
7019
 
7020
- #: front-end/default-fields/recaptcha/recaptcha.php:217
7021
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
7022
  msgstr ""
7023
 
7024
- #: front-end/default-fields/recaptcha/recaptcha.php:288
7025
  msgid "To use reCAPTCHA you must get an API public key from:"
7026
  msgstr ""
7027
 
7028
- #: front-end/default-fields/recaptcha/recaptcha.php:586
7029
  msgid "Click the BACK button on your browser, and try again."
7030
  msgstr ""
7031
 
49
  msgid "Replace bbPress Login form:"
50
  msgstr ""
51
 
52
+ #: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, ../pb-add-on-social-connect/index.php:386, admin/general-settings.php:163, admin/general-settings.php:178, admin/general-settings.php:227, admin/general-settings.php:272, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, 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, features/content-restriction/content-restriction.php:88, features/two-factor-authentication/class-two-factor-authentication.php:124, admin/advanced-settings/includes/forms/placeholder-labels.php:136, assets/misc/elementor/widgets/class-pb-widget-l.php:76, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:180, assets/misc/elementor/widgets/class-pb-widget-ul.php:108
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
 
701
  msgid "Default Social Connect CSS in the Front-end"
702
  msgstr ""
703
 
704
+ #: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:211, admin/general-settings.php:112, admin/general-settings.php:112
705
  msgid "Settings"
706
  msgstr ""
707
 
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
 
1569
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1570
  msgstr ""
1571
 
1572
+ #: admin/admin-functions.php:138, admin/general-settings.php:332
1573
  msgid "Very weak"
1574
  msgstr ""
1575
 
1576
+ #: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:768, features/functions.php:792
1577
  msgid "Weak"
1578
  msgstr ""
1579
 
1580
+ #: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:768, features/functions.php:792
1581
  msgid "Medium"
1582
  msgstr ""
1583
 
1584
+ #: admin/admin-functions.php:138, admin/general-settings.php:335, features/functions.php:768, features/functions.php:792
1585
  msgid "Strong"
1586
  msgstr ""
1587
 
1993
  msgid "Administrator Emails"
1994
  msgstr ""
1995
 
1996
+ #: admin/general-settings.php:133
1997
  msgid "Profile Builder Settings"
1998
  msgstr ""
1999
 
2000
+ #: admin/general-settings.php:146
2001
  msgid "Load Profile Builder's own CSS file in the front-end:"
2002
  msgstr ""
2003
 
2004
+ #: admin/general-settings.php:151
2005
  msgid "You can find the default file here: %1$s"
2006
  msgstr ""
2007
 
2008
+ #: admin/general-settings.php:158
2009
  msgid "Automatically Log In:"
2010
  msgstr ""
2011
 
2012
+ #: admin/general-settings.php:166
2013
  msgid "Select \"Yes\" to automatically log in new users after successful registration."
2014
  msgstr ""
2015
 
2016
+ #: admin/general-settings.php:173
2017
  msgid "\"Email Confirmation\" Activated:"
2018
  msgstr ""
2019
 
2020
+ #: admin/general-settings.php:181
2021
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
2022
  msgstr ""
2023
 
2024
+ #: admin/general-settings.php:183
2025
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2026
  msgstr ""
2027
 
2028
+ #: admin/general-settings.php:191
2029
  msgid "\"Email Confirmation\" Landing Page:"
2030
  msgstr ""
2031
 
2032
+ #: admin/general-settings.php:196
2033
  msgid "Existing Pages"
2034
  msgstr ""
2035
 
2036
+ #: admin/general-settings.php:211
2037
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
2038
  msgstr ""
2039
 
2040
+ #: admin/general-settings.php:222
2041
  msgid "\"Admin Approval\" Activated:"
2042
  msgstr ""
2043
 
2044
+ #: admin/general-settings.php:230
2045
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2046
  msgstr ""
2047
 
2048
+ #: admin/general-settings.php:237
2049
  msgid "\"Admin Approval\" on User Role:"
2050
  msgstr ""
2051
 
2052
+ #: admin/general-settings.php:256
2053
  msgid "Select on what user roles to activate Admin Approval."
2054
  msgstr ""
2055
 
2056
+ #: admin/general-settings.php:268
2057
  msgid "\"Roles Editor\" Activated:"
2058
  msgstr ""
2059
 
2060
+ #: admin/general-settings.php:276
2061
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
2062
  msgstr ""
2063
 
2064
+ #: admin/general-settings.php:287
2065
  msgid "\"Admin Approval\" Feature:"
2066
  msgstr ""
2067
 
2068
+ #: admin/general-settings.php:290
2069
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
2070
  msgstr ""
2071
 
2072
+ #: admin/general-settings.php:297
2073
  msgid "Allow Users to Log in With:"
2074
  msgstr ""
2075
 
2076
+ #: admin/general-settings.php:301
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
 
2088
+ #: admin/general-settings.php:306
2089
  msgid "\"Username and Email\" - users can Log In with either their Username or their Email."
2090
  msgstr ""
2091
 
2092
+ #: admin/general-settings.php:307
2093
  msgid "\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms."
2094
  msgstr ""
2095
 
2096
+ #: admin/general-settings.php:308
2097
  msgid "\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails."
2098
  msgstr ""
2099
 
2100
+ #: admin/general-settings.php:315
2101
  msgid "Minimum Password Length:"
2102
  msgstr ""
2103
 
2104
+ #: admin/general-settings.php:320
2105
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2106
  msgstr ""
2107
 
2108
+ #: admin/general-settings.php:327
2109
  msgid "Minimum Password Strength:"
2110
  msgstr ""
2111
 
2112
+ #: admin/general-settings.php:331
2113
  msgid "Disabled"
2114
  msgstr ""
2115
 
4577
  msgid "This field is required"
4578
  msgstr ""
4579
 
4580
+ #: features/functions.php:976, front-end/default-fields/recaptcha/recaptcha.php:533, front-end/default-fields/recaptcha/recaptcha.php:524, front-end/default-fields/recaptcha/recaptcha.php:589, front-end/default-fields/recaptcha/recaptcha.php:637
4581
  msgid "Please enter a (valid) reCAPTCHA value"
4582
  msgstr ""
4583
 
7017
  msgid "To use reCAPTCHA you must get an API key from"
7018
  msgstr ""
7019
 
7020
+ #: front-end/default-fields/recaptcha/recaptcha.php:220
7021
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
7022
  msgstr ""
7023
 
7024
+ #: front-end/default-fields/recaptcha/recaptcha.php:291
7025
  msgid "To use reCAPTCHA you must get an API public key from:"
7026
  msgstr ""
7027
 
7028
+ #: front-end/default-fields/recaptcha/recaptcha.php:589
7029
  msgid "Click the BACK button on your browser, and try again."
7030
  msgstr ""
7031