User registration & user profile – Profile Builder - Version 3.4.2

Version Description

  • Fix: An issue where the Username field was not required
  • Misc: Add $form_name parameter to edit other users dropdown display and user role filters
  • Misc: Don't let users assign meta-names that begin or end with spaces
  • Misc: Removed the WooCommerce Shop page from the Private Page -> Allowed Pages dropdown. The Allowed Paths option should be used for this page
Download this release

Release Info

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

Code changes from version 3.4.1 to 3.4.2

admin/admin-functions.php CHANGED
@@ -193,22 +193,6 @@ function wppb_change_add_entry_button( $string, $meta ){
193
  return $string;
194
  }
195
 
196
- /* Add admin footer text for encouraging users to leave a review of the plugin on wordpress.org */
197
- function wppb_admin_rate_us( $footer_text ) {
198
- global $current_screen;
199
-
200
- if ($current_screen->parent_base == 'profile-builder'){
201
- $rate_text = sprintf( __( 'If you enjoy using <strong> %1$s </strong> please <a href="%2$s" target="_blank">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ', 'profile-builder' ),
202
- PROFILE_BUILDER,
203
- 'https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5#postform'
204
- );
205
- return '<span id="footer-thankyou">' .$rate_text . '</span>';
206
- } else {
207
- return $footer_text;
208
- }
209
- }
210
- add_filter('admin_footer_text','wppb_admin_rate_us');
211
-
212
  /**
213
  * add links on plugin page
214
  */
193
  return $string;
194
  }
195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  /**
197
  * add links on plugin page
198
  */
admin/manage-fields.php CHANGED
@@ -1200,6 +1200,14 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
1200
  $message .= __( "The meta-name cannot be empty\n", 'profile-builder' );
1201
  }
1202
 
 
 
 
 
 
 
 
 
1203
  // meta names that are reserved and cannot be used as part of other meta names
1204
  $reserved_meta_name_list_strict = apply_filters( 'wppb_unique_meta_name_list_strict', array( 'map' ) );
1205
  // skip meta name check for these fields
1200
  $message .= __( "The meta-name cannot be empty\n", 'profile-builder' );
1201
  }
1202
 
1203
+ //check if the meta-name starts or ends with a space
1204
+ if ( strpos( $posted_values['meta-name'], " " ) === 0 ) {
1205
+ $message .= __( "The meta-name cannot begin with a space\n", 'profile-builder' );
1206
+ }
1207
+ if ( strpos( $posted_values['meta-name'], " " ) === strlen( $posted_values['meta-name'] ) - 1 ) {
1208
+ $message .= __( "The meta-name cannot end with a space\n", 'profile-builder' );
1209
+ }
1210
+
1211
  // meta names that are reserved and cannot be used as part of other meta names
1212
  $reserved_meta_name_list_strict = apply_filters( 'wppb_unique_meta_name_list_strict', array( 'map' ) );
1213
  // skip meta name check for these fields
admin/private-website.php CHANGED
@@ -44,6 +44,9 @@ function wppb_private_website_content() {
44
  'posts_per_page' => -1
45
  );
46
 
 
 
 
47
  $all_pages = get_posts( $args );
48
  ?>
49
  <div class="wrap wppb-wrap wppb-private-website">
@@ -162,4 +165,4 @@ function wppb_private_website_content() {
162
 
163
  </div>
164
  <?php
165
- }
44
  'posts_per_page' => -1
45
  );
46
 
47
+ if( function_exists( 'wc_get_page_id' ) )
48
+ $args['exclude'] = wc_get_page_id( 'shop' );
49
+
50
  $all_pages = get_posts( $args );
51
  ?>
52
  <div class="wrap wppb-wrap wppb-private-website">
165
 
166
  </div>
167
  <?php
168
+ }
admin/review.php ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class WPPB_Review_Request {
4
+
5
+ // Number of days to wait until review request is displayed
6
+ public $delay = 7;
7
+ public $wppb_review_cron_hook = 'wppb_review_check';
8
+ public $notificationId = 'wppb_review_request';
9
+ public $query_arg = 'wppb_dismiss_admin_notification';
10
+
11
+ public function __construct() {
12
+ $wppb_review_request_status = get_option( 'wppb_review_request_status', 'not_found' );
13
+
14
+ // Initialize the option that keeps track of the number of days elapsed
15
+ if ( $wppb_review_request_status === 'not_found' || !is_numeric( $wppb_review_request_status ) ) {
16
+ update_option( 'wppb_review_request_status', 0 );
17
+ }
18
+
19
+ // Handle the cron
20
+ if ( $wppb_review_request_status <= $this->delay ) {
21
+ if ( !wp_next_scheduled( $this->wppb_review_cron_hook ) ) {
22
+ wp_schedule_event( time(), 'daily', $this->wppb_review_cron_hook );
23
+ }
24
+
25
+ if ( !has_action( $this->wppb_review_cron_hook ) ) {
26
+ add_action( $this->wppb_review_cron_hook, array( $this, 'check_for_registration_shortcode' ) );
27
+ }
28
+ } else if ( wp_next_scheduled( $this->wppb_review_cron_hook ) ){
29
+ wp_clear_scheduled_hook( $this->wppb_review_cron_hook );
30
+ }
31
+
32
+ // Admin notice requesting review
33
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
34
+ add_action( 'admin_init', array( $this, 'dismiss_notification' ) );
35
+ // Footer text requesting review
36
+ add_filter('admin_footer_text', array( $this, 'admin_footer_rate_us' ) );
37
+ }
38
+
39
+ // Function that looks for the PB registration form shortcode and counts the number of days elapsed
40
+ public function check_for_registration_shortcode() {
41
+ global $wpdb;
42
+
43
+ $query = "SELECT ID, post_title, guid FROM ".$wpdb->posts." WHERE post_content LIKE '%[wppb-register%' AND post_status = 'publish'";
44
+
45
+ if ( !empty( $wpdb->get_results( $query ) ) ) {
46
+ $wppb_review_request_status = get_option( 'wppb_review_request_status', 'not_found' );
47
+
48
+ if ( $wppb_review_request_status !== 'not_found' && is_numeric( $wppb_review_request_status ) ) {
49
+ update_option( 'wppb_review_request_status', $wppb_review_request_status + 1 );
50
+ } else {
51
+ update_option( 'wppb_review_request_status', 1 );
52
+ }
53
+ }
54
+ }
55
+
56
+ // Function that displays the notice
57
+ public function admin_notices() {
58
+ $wppb_review_request_status = get_option( 'wppb_review_request_status' );
59
+
60
+ if ( is_numeric( $wppb_review_request_status ) && $wppb_review_request_status > $this->delay ) {
61
+ global $current_user;
62
+ global $pagenow;
63
+
64
+ $user_id = $current_user->ID;
65
+
66
+ if ( current_user_can( 'manage_options' ) ) {
67
+ // Check that the user hasn't already dismissed the message
68
+ if ( !get_user_meta( $user_id, $this->notificationId . '_dismiss_notification' ) ) {
69
+ do_action( $this->notificationId . '_before_notification_displayed', $current_user, $pagenow );
70
+ ?>
71
+ <div class="wppb-review-notice wppb-notice notice is-dismissible">
72
+ <p style="margin-top: 16px; font-size: 15px;">
73
+ <?php esc_html_e("Hello! Seems like you've been using Profile Builder to create front-end user forms. That's awesome!", 'profile-builder'); ?>
74
+ <br/>
75
+ <?php esc_html_e("If you can spare a few moments to rate it on WordPress.org, it would help us a lot (and boost my motivation).", 'profile-builder'); ?>
76
+ </p>
77
+ <p>
78
+ <?php esc_html_e("~ Paul, developer of Profile Builder", 'profile-builder'); ?>
79
+ </p>
80
+ <p></p>
81
+ <p>
82
+ <a href="https://wordpress.org/support/plugin/profile-builder/reviews/?filter=5#new-post"
83
+ target="_blank" rel="noopener" class="button-primary" style="margin-right: 20px">
84
+ <?php esc_html_e('Ok, I will gladly help!', 'profile-builder'); ?>
85
+ </a>
86
+ <a href="<?php echo add_query_arg(array($this->query_arg => $this->notificationId)) ?>"
87
+ class="button-secondary">
88
+ <?php esc_html_e('No, thanks.', 'profile-builder'); ?>
89
+ </a>
90
+ </p>
91
+ <a href="<?php echo add_query_arg(array($this->query_arg => $this->notificationId)) ?>"
92
+ type="button" class="notice-dismiss" style="text-decoration: none;">
93
+ <span class="screen-reader-text">
94
+ <?php esc_html_e('Dismiss this notice.', 'profile-builder'); ?>
95
+ </span>
96
+ </a>
97
+ </div>
98
+ <?php
99
+ do_action( $this->notificationId . '_after_notification_displayed', $current_user, $pagenow );
100
+ }
101
+ }
102
+ }
103
+ }
104
+
105
+ // Function that saves the notification dismissal to the user meta
106
+ public function dismiss_notification() {
107
+ global $current_user;
108
+
109
+ $user_id = $current_user->ID;
110
+
111
+ // If user clicks to ignore the notice, add that to their user meta
112
+ if ( isset( $_GET[$this->query_arg] ) && $this->notificationId === $_GET[$this->query_arg] ) {
113
+ do_action( $this->notificationId.'_before_notification_dismissed', $current_user );
114
+ add_user_meta($user_id, $this->notificationId . '_dismiss_notification', 'true', true);
115
+ do_action( $this->notificationId.'_after_notification_dismissed', $current_user );
116
+ }
117
+ }
118
+
119
+ // Function that adds admin footer text for encouraging users to leave a review of the plugin on wordpress.org
120
+ function admin_footer_rate_us( $footer_text ) {
121
+ global $current_screen;
122
+
123
+ if ( $current_screen->parent_base == 'profile-builder' ){
124
+ $rate_text = sprintf( __( 'If you enjoy using <strong> %1$s </strong> please <a href="%2$s" target="_blank">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ', 'profile-builder' ),
125
+ PROFILE_BUILDER,
126
+ 'https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5#postform'
127
+ );
128
+ return '<span id="footer-thankyou">' .$rate_text . '</span>';
129
+ } else {
130
+ return $footer_text;
131
+ }
132
+ }
133
+ }
features/functions.php CHANGED
@@ -1102,6 +1102,11 @@ add_filter( 'wppb_woo_extra_attribute', 'wppb_add_html_tag_required_to_woo_field
1102
  function wppb_manage_required_attribute() {
1103
  global $wppb_shortcode_on_front;
1104
  if ($wppb_shortcode_on_front) {
 
 
 
 
 
1105
  ?>
1106
  <script type="text/javascript">
1107
  jQuery(document).on( "wppbAddRequiredAttributeEvent", wppbAddRequired );
1102
  function wppb_manage_required_attribute() {
1103
  global $wppb_shortcode_on_front;
1104
  if ($wppb_shortcode_on_front) {
1105
+ //check if jquery has been loaded yet because we need it at this point
1106
+ // we're checking if it's not admin because it brakes elementor otherwise.
1107
+ if( !wp_script_is('jquery', 'done') && !is_admin() ){
1108
+ wp_print_scripts('jquery');
1109
+ }
1110
  ?>
1111
  <script type="text/javascript">
1112
  jQuery(document).on( "wppbAddRequiredAttributeEvent", wppbAddRequired );
front-end/class-formbuilder.php CHANGED
@@ -704,7 +704,7 @@ class Profile_Builder_Form_Creator{
704
 
705
  static function wppb_edit_profile_select_user_to_edit( $form_name, $id, $form_type, $is_elementor_edit_mode ){
706
 
707
- $display_edit_users_dropdown = apply_filters( 'wppb_display_edit_other_users_dropdown', true );
708
  if( !$display_edit_users_dropdown || $is_elementor_edit_mode )
709
  return;
710
 
@@ -719,7 +719,7 @@ class Profile_Builder_Form_Creator{
719
  $selected = get_current_user_id();
720
 
721
  $query_args['fields'] = array( 'ID', 'user_login', 'display_name' );
722
- $query_args['role'] = apply_filters( 'wppb_edit_profile_user_dropdown_role', '' );
723
  $users = get_users( apply_filters( 'wppb_edit_other_users_dropdown_query_args', $query_args ) );
724
  if( !empty( $users ) ) {
725
 
@@ -728,7 +728,7 @@ class Profile_Builder_Form_Creator{
728
  wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
729
  wp_add_inline_script( 'wppb_select2_js', '
730
  jQuery("select").filter(function() {
731
- if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
732
  return this;
733
  }
734
  }).on("change", function () {
@@ -736,7 +736,7 @@ class Profile_Builder_Form_Creator{
736
  });
737
  jQuery(function(){
738
  jQuery("select").filter(function() {
739
- if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
740
  return this;
741
  }
742
  }).select2().on("select2:open", function(){
704
 
705
  static function wppb_edit_profile_select_user_to_edit( $form_name, $id, $form_type, $is_elementor_edit_mode ){
706
 
707
+ $display_edit_users_dropdown = apply_filters( 'wppb_display_edit_other_users_dropdown', true, $form_name );
708
  if( !$display_edit_users_dropdown || $is_elementor_edit_mode )
709
  return;
710
 
719
  $selected = get_current_user_id();
720
 
721
  $query_args['fields'] = array( 'ID', 'user_login', 'display_name' );
722
+ $query_args['role'] = apply_filters( 'wppb_edit_profile_user_dropdown_role', '', $form_name );
723
  $users = get_users( apply_filters( 'wppb_edit_other_users_dropdown_query_args', $query_args ) );
724
  if( !empty( $users ) ) {
725
 
728
  wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
729
  wp_add_inline_script( 'wppb_select2_js', '
730
  jQuery("select").filter(function() {
731
+ if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
732
  return this;
733
  }
734
  }).on("change", function () {
736
  });
737
  jQuery(function(){
738
  jQuery("select").filter(function() {
739
+ if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
740
  return this;
741
  }
742
  }).select2().on("select2:open", function(){
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.4.1
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.4.1' );
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__));
@@ -81,6 +81,12 @@ function wppb_free_plugin_init() {
81
  if (file_exists(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php'))
82
  include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php');
83
 
 
 
 
 
 
 
84
  if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php'))
85
  define('PROFILE_BUILDER', 'Profile Builder Pro');
86
  elseif (file_exists(WPPB_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php'))
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.4.2
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.4.2' );
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__));
81
  if (file_exists(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php'))
82
  include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php');
83
 
84
+ /* include review class */
85
+ if (file_exists(WPPB_PLUGIN_DIR . '/admin/review.php')){
86
+ include_once(WPPB_PLUGIN_DIR . '/admin/review.php');
87
+ $wppb_review_request = new WPPB_Review_Request ();
88
+ }
89
+
90
  if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php'))
91
  define('PROFILE_BUILDER', 'Profile Builder Pro');
92
  elseif (file_exists(WPPB_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php'))
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
- Stable tag: 3.4.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -170,6 +170,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
170
  15. Edit or Add New User Role
171
 
172
  == Changelog ==
 
 
 
 
 
 
173
  = 3.4.1 =
174
  * Fix: An issue with the Simple Upload field not saving when Email Confirmation was enabled
175
  * Fix: A warning regarding the Elementor integration
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
+ Stable tag: 3.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
170
  15. Edit or Add New User Role
171
 
172
  == Changelog ==
173
+ = 3.4.2 =
174
+ * Fix: An issue where the Username field was not required
175
+ * Misc: Add $form_name parameter to edit other users dropdown display and user role filters
176
+ * Misc: Don't let users assign meta-names that begin or end with spaces
177
+ * Misc: Removed the WooCommerce Shop page from the Private Page -> Allowed Pages dropdown. The Allowed Paths option should be used for this page
178
+
179
  = 3.4.1 =
180
  * Fix: An issue with the Simple Upload field not saving when Email Confirmation was enabled
181
  * Fix: A warning regarding the Elementor integration
translation/profile-builder.catalog.php CHANGED
@@ -387,7 +387,6 @@
387
  <?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
388
  <?php __("Save Settings", "profile-builder"); ?>
389
  <?php __("Add Field", "profile-builder"); ?>
390
- <?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
391
  <?php __("View Profile Builder documentation", "profile-builder"); ?>
392
  <?php __("Docs", "profile-builder"); ?>
393
  <?php __("All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>", "profile-builder"); ?>
@@ -1026,6 +1025,8 @@
1026
  <?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
1027
  <?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
1028
  <?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
 
 
1029
  <?php __("That meta-name is already in use\n", "profile-builder"); ?>
1030
  <?php __("That meta-name can't be used, please choose another\n", "profile-builder"); ?>
1031
  <?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
@@ -1103,6 +1104,12 @@
1103
  <?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
1104
  <?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>", "profile-builder"); ?>
1105
  <?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
 
 
 
 
 
 
1106
  <?php __("GDPR Checkbox", "profile-builder"); ?>
1107
  <?php __("I allow the website to collect and store the data I submit through this form.", "profile-builder"); ?>
1108
  <?php __("Strength indicator", "profile-builder"); ?>
@@ -1487,6 +1494,7 @@
1487
  <?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
1488
  <?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
1489
  <?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
 
1490
  <?php __("All Users", "profile-builder"); ?>
1491
  <?php __("Conditional Logic", "profile-builder"); ?>
1492
  <?php __("Conditional Rules", "profile-builder"); ?>
387
  <?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
388
  <?php __("Save Settings", "profile-builder"); ?>
389
  <?php __("Add Field", "profile-builder"); ?>
 
390
  <?php __("View Profile Builder documentation", "profile-builder"); ?>
391
  <?php __("Docs", "profile-builder"); ?>
392
  <?php __("All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>", "profile-builder"); ?>
1025
  <?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
1026
  <?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
1027
  <?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
1028
+ <?php __("The meta-name cannot begin with a space\n", "profile-builder"); ?>
1029
+ <?php __("The meta-name cannot end with a space\n", "profile-builder"); ?>
1030
  <?php __("That meta-name is already in use\n", "profile-builder"); ?>
1031
  <?php __("That meta-name can't be used, please choose another\n", "profile-builder"); ?>
1032
  <?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
1104
  <?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
1105
  <?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>", "profile-builder"); ?>
1106
  <?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
1107
+ <?php __("Hello! Seems like you've been using Profile Builder to create front-end user forms. That's awesome!", "profile-builder"); ?>
1108
+ <?php __("If you can spare a few moments to rate it on WordPress.org, it would help us a lot (and boost my motivation).", "profile-builder"); ?>
1109
+ <?php __("~ Paul, developer of Profile Builder", "profile-builder"); ?>
1110
+ <?php __("Ok, I will gladly help!", "profile-builder"); ?>
1111
+ <?php __("No, thanks.", "profile-builder"); ?>
1112
+ <?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
1113
  <?php __("GDPR Checkbox", "profile-builder"); ?>
1114
  <?php __("I allow the website to collect and store the data I submit through this form.", "profile-builder"); ?>
1115
  <?php __("Strength indicator", "profile-builder"); ?>
1494
  <?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
1495
  <?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
1496
  <?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
1497
+ <?php __("Pending", "profile-builder"); ?>
1498
  <?php __("All Users", "profile-builder"); ?>
1499
  <?php __("Conditional Logic", "profile-builder"); ?>
1500
  <?php __("Conditional Rules", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -405,11 +405,11 @@ msgstr ""
405
  msgid "This field requires approval by an administrator"
406
  msgstr ""
407
 
408
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:346
409
  msgid "Unapproved"
410
  msgstr ""
411
 
412
- #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:344
413
  msgid "Approved"
414
  msgstr ""
415
 
@@ -685,7 +685,7 @@ msgstr ""
685
  msgid "Default Social Connect CSS in the Front-end"
686
  msgstr ""
687
 
688
- #: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:227, admin/general-settings.php:106, admin/general-settings.php:106
689
  msgid "Settings"
690
  msgstr ""
691
 
@@ -697,11 +697,11 @@ msgstr ""
697
  msgid "Display Social Connect buttons:"
698
  msgstr ""
699
 
700
- #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, 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:2444, features/content-restriction/content-restriction.php:89, 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-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:261, admin/advanced-settings/includes/views/view-fields.php:279, 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:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, 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
701
  msgid "Yes"
702
  msgstr ""
703
 
704
- #: ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/general-settings.php:340, admin/private-website.php:66, admin/private-website.php:133, admin/private-website.php:148, 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, admin/advanced-settings/includes/forms/placeholder-labels.php:136
705
  msgid "No"
706
  msgstr ""
707
 
@@ -741,7 +741,7 @@ msgstr ""
741
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
742
  msgstr ""
743
 
744
- #: ../pb-add-on-social-connect/index.php:392, features/admin-approval/admin-approval.php:181
745
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
746
  msgstr ""
747
 
@@ -749,7 +749,7 @@ msgstr ""
749
  msgid "You will be redirected in 5 seconds. If not, click %%."
750
  msgstr ""
751
 
752
- #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1261
753
  msgid "here"
754
  msgstr ""
755
 
@@ -1570,31 +1570,27 @@ msgstr ""
1570
  msgid "Add Field"
1571
  msgstr ""
1572
 
1573
- #: admin/admin-functions.php:201
1574
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1575
- msgstr ""
1576
-
1577
- #: admin/admin-functions.php:241
1578
  msgid "View Profile Builder documentation"
1579
  msgstr ""
1580
 
1581
- #: admin/admin-functions.php:241
1582
  msgid "Docs"
1583
  msgstr ""
1584
 
1585
- #: admin/admin-functions.php:260
1586
  msgid "All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>"
1587
  msgstr ""
1588
 
1589
- #: admin/admin-functions.php:262, admin/admin-functions.php:274
1590
  msgid "See details"
1591
  msgstr ""
1592
 
1593
- #: admin/admin-functions.php:263, admin/admin-functions.php:275
1594
  msgid "Dismiss this notice."
1595
  msgstr ""
1596
 
1597
- #: admin/admin-functions.php:272
1598
  msgid "You can now style %s forms from the %s interface. To get started, add a form widget to a page through %s and go to the <strong>Style</strong> tab."
1599
  msgstr ""
1600
 
@@ -2042,11 +2038,11 @@ msgstr ""
2042
  msgid "Username and Email"
2043
  msgstr ""
2044
 
2045
- #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:416, 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:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2398, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2046
  msgid "Username"
2047
  msgstr ""
2048
 
2049
- #: admin/general-settings.php:297, front-end/login.php:413, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2399, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2050
  msgid "Email"
2051
  msgstr ""
2052
 
@@ -4078,13 +4074,13 @@ msgstr ""
4078
  msgid "Zimbabwe Dollar"
4079
  msgstr ""
4080
 
4081
- #: admin/manage-fields.php:1299
4082
  msgid ""
4083
  "That field is already added in this form\n"
4084
  ""
4085
  msgstr ""
4086
 
4087
- #: admin/manage-fields.php:1292, admin/manage-fields.php:1114
4088
  msgid ""
4089
  "You must select a field\n"
4090
  ""
@@ -4150,67 +4146,79 @@ msgid ""
4150
  ""
4151
  msgstr ""
4152
 
4153
- #: admin/manage-fields.php:1230, admin/manage-fields.php:1241
 
 
 
 
 
 
 
 
 
 
 
 
4154
  msgid ""
4155
  "That meta-name is already in use\n"
4156
  ""
4157
  msgstr ""
4158
 
4159
- #: admin/manage-fields.php:1222
4160
  msgid ""
4161
  "That meta-name can't be used, please choose another\n"
4162
  ""
4163
  msgstr ""
4164
 
4165
- #: admin/manage-fields.php:1252
4166
  msgid ""
4167
  "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
4168
  ""
4169
  msgstr ""
4170
 
4171
- #: admin/manage-fields.php:1276
4172
  msgid ""
4173
  "The following option did not coincide with the ones in the options list: %s\n"
4174
  ""
4175
  msgstr ""
4176
 
4177
- #: admin/manage-fields.php:1272
4178
  msgid ""
4179
  "The following option(s) did not coincide with the ones in the options list: %s\n"
4180
  ""
4181
  msgstr ""
4182
 
4183
- #: admin/manage-fields.php:1283
4184
  msgid ""
4185
  "Please select at least one user role\n"
4186
  ""
4187
  msgstr ""
4188
 
4189
- #: admin/manage-fields.php:1351
4190
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4191
  msgstr ""
4192
 
4193
- #: admin/manage-fields.php:1351, features/functions.php:969, features/functions.php:976, 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:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
4194
  msgid "Edit"
4195
  msgstr ""
4196
 
4197
- #: admin/manage-fields.php:1351, features/functions.php:962, features/functions.php:976, 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:113, 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:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4198
  msgid "Delete"
4199
  msgstr ""
4200
 
4201
- #: admin/manage-fields.php:1366
4202
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4203
  msgstr ""
4204
 
4205
- #: admin/manage-fields.php:1377
4206
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4207
  msgstr ""
4208
 
4209
- #: admin/manage-fields.php:1375
4210
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4211
  msgstr ""
4212
 
4213
- #: admin/manage-fields.php:1476
4214
  msgid "Search Location"
4215
  msgstr ""
4216
 
@@ -4326,71 +4334,71 @@ msgstr ""
4326
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
4327
  msgstr ""
4328
 
4329
- #: admin/private-website.php:50
4330
  msgid "Private Website Settings"
4331
  msgstr ""
4332
 
4333
- #: admin/private-website.php:63
4334
  msgid "Enable Private Website"
4335
  msgstr ""
4336
 
4337
- #: admin/private-website.php:70
4338
  msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
4339
  msgstr ""
4340
 
4341
- #: admin/private-website.php:76
4342
  msgid "Redirect to"
4343
  msgstr ""
4344
 
4345
- #: admin/private-website.php:79
4346
  msgid "Default WordPress login page"
4347
  msgstr ""
4348
 
4349
- #: admin/private-website.php:92
4350
  msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
4351
  msgstr ""
4352
 
4353
- #: admin/private-website.php:93, add-ons/custom-redirects/custom_redirects_admin.php:253
4354
  msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
4355
  msgstr ""
4356
 
4357
- #: admin/private-website.php:99
4358
  msgid "Allowed Pages"
4359
  msgstr ""
4360
 
4361
- #: admin/private-website.php:114
4362
  msgid "Allow these pages to be accessed even if you are not logged in"
4363
  msgstr ""
4364
 
4365
- #: admin/private-website.php:120
4366
  msgid "Allowed Paths"
4367
  msgstr ""
4368
 
4369
- #: admin/private-website.php:124
4370
  msgid "Allow these paths to be accessed even if you are not logged in (supports wildcard at the end of the path). For example to exclude https://example.com/some/path/ you can either use the rule /some/path/ or /some/* Enter each rule on it's own line"
4371
  msgstr ""
4372
 
4373
- #: admin/private-website.php:130
4374
  msgid "Hide all Menus"
4375
  msgstr ""
4376
 
4377
- #: admin/private-website.php:137
4378
  msgid "Hide all menu items if you are not logged in."
4379
  msgstr ""
4380
 
4381
- #: admin/private-website.php:138
4382
  msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
4383
  msgstr ""
4384
 
4385
- #: admin/private-website.php:144
4386
  msgid "Disable REST-API"
4387
  msgstr ""
4388
 
4389
- #: admin/private-website.php:151
4390
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4391
  msgstr ""
4392
 
4393
- #: admin/private-website.php:159, features/functions.php:948, features/content-restriction/content-restriction.php:162, 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:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4394
  msgid "Save Changes"
4395
  msgstr ""
4396
 
@@ -4470,6 +4478,30 @@ msgstr ""
4470
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
4471
  msgstr ""
4472
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4473
  #: features/functions.php:326
4474
  msgid "GDPR Checkbox"
4475
  msgstr ""
@@ -4510,23 +4542,23 @@ msgstr ""
4510
  msgid "Content"
4511
  msgstr ""
4512
 
4513
- #: features/functions.php:1159
4514
  msgid "<br><br>Also, you will be able to visit your site at "
4515
  msgstr ""
4516
 
4517
- #: features/functions.php:1172
4518
  msgid "<br><br>You can visit your site at "
4519
  msgstr ""
4520
 
4521
- #: features/functions.php:1262
4522
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4523
  msgstr ""
4524
 
4525
- #: features/functions.php:1416
4526
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4527
  msgstr ""
4528
 
4529
- #: features/functions.php:1457
4530
  msgid "You are not currently logged in."
4531
  msgstr ""
4532
 
@@ -5512,7 +5544,7 @@ msgstr ""
5512
  msgid "Display name as"
5513
  msgstr ""
5514
 
5515
- #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:870, add-ons/user-listing/userlisting.php:2408, features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256
5516
  msgid "Role"
5517
  msgstr ""
5518
 
@@ -5588,7 +5620,7 @@ msgstr ""
5588
  msgid "Avatar"
5589
  msgstr ""
5590
 
5591
- #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2403, features/admin-approval/class-admin-approval.php:167
5592
  msgid "Firstname"
5593
  msgstr ""
5594
 
@@ -5632,7 +5664,7 @@ msgstr ""
5632
  msgid "Display Name"
5633
  msgstr ""
5634
 
5635
- #: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2404, features/admin-approval/class-admin-approval.php:168
5636
  msgid "Lastname"
5637
  msgstr ""
5638
 
@@ -5928,91 +5960,91 @@ msgstr ""
5928
  msgid "Your account has to be confirmed by an administrator before you can log in."
5929
  msgstr ""
5930
 
5931
- #: features/admin-approval/admin-approval.php:15, features/admin-approval/class-admin-approval.php:460, features/admin-approval/class-admin-approval.php:528
5932
  msgid "Admin Approval"
5933
  msgstr ""
5934
 
5935
- #: features/admin-approval/admin-approval.php:29, features/email-confirmation/email-confirmation.php:60
5936
  msgid "Do you want to"
5937
  msgstr ""
5938
 
5939
- #: features/admin-approval/admin-approval.php:52, features/admin-approval/admin-approval.php:100
5940
  msgid "Your session has expired! Please refresh the page and try again."
5941
  msgstr ""
5942
 
5943
- #: features/admin-approval/admin-approval.php:89, features/admin-approval/admin-approval.php:135, features/email-confirmation/email-confirmation.php:134
5944
  msgid "You either don't have permission for that action or there was an error!"
5945
  msgstr ""
5946
 
5947
- #: features/admin-approval/admin-approval.php:84
5948
  msgid "User successfully deleted!"
5949
  msgstr ""
5950
 
5951
- #: features/admin-approval/admin-approval.php:78
5952
  msgid "User successfully unapproved!"
5953
  msgstr ""
5954
 
5955
- #: features/admin-approval/admin-approval.php:68, features/admin-approval/admin-approval.php:344
5956
  msgid "User successfully approved!"
5957
  msgstr ""
5958
 
5959
- #: features/admin-approval/admin-approval.php:131
5960
  msgid "Users successfully deleted!"
5961
  msgstr ""
5962
 
5963
- #: features/admin-approval/admin-approval.php:123
5964
  msgid "Users successfully unapproved!"
5965
  msgstr ""
5966
 
5967
- #: features/admin-approval/admin-approval.php:113
5968
  msgid "Users successfully approved!"
5969
  msgstr ""
5970
 
5971
- #: features/admin-approval/admin-approval.php:159
5972
  msgid "Your account on %1$s has been unapproved!"
5973
  msgstr ""
5974
 
5975
- #: features/admin-approval/admin-approval.php:160, features/admin-approval/admin-approval.php:163
5976
  msgid "unapproved"
5977
  msgstr ""
5978
 
5979
- #: features/admin-approval/admin-approval.php:162
5980
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
5981
  msgstr ""
5982
 
5983
- #: features/admin-approval/admin-approval.php:151
5984
  msgid "Your account on %1$s has been approved!"
5985
  msgstr ""
5986
 
5987
- #: features/admin-approval/admin-approval.php:152, features/admin-approval/admin-approval.php:155
5988
  msgid "approved"
5989
  msgstr ""
5990
 
5991
- #: features/admin-approval/admin-approval.php:154
5992
  msgid "An administrator has just approved your account on %1$s (%2$s)."
5993
  msgstr ""
5994
 
5995
- #: features/admin-approval/admin-approval.php:193
5996
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
5997
  msgstr ""
5998
 
5999
- #: features/admin-approval/admin-approval.php:228
6000
  msgid "Your account has been successfully created!"
6001
  msgstr ""
6002
 
6003
- #: features/admin-approval/admin-approval.php:302
6004
  msgid "Something went wrong!"
6005
  msgstr ""
6006
 
6007
- #: features/admin-approval/admin-approval.php:298
6008
  msgid "User not approved!"
6009
  msgstr ""
6010
 
6011
- #: features/admin-approval/admin-approval.php:283
6012
  msgid "Do you wish to approve the registration?"
6013
  msgstr ""
6014
 
6015
- #: features/admin-approval/admin-approval.php:323
6016
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6017
  msgstr ""
6018
 
@@ -6020,47 +6052,51 @@ msgstr ""
6020
  msgid "delete this user?"
6021
  msgstr ""
6022
 
6023
- #: features/admin-approval/class-admin-approval.php:118
6024
  msgid "approve this user?"
6025
  msgstr ""
6026
 
6027
- #: features/admin-approval/class-admin-approval.php:118, features/admin-approval/class-admin-approval.php:222
6028
  msgid "Approve"
6029
  msgstr ""
6030
 
6031
- #: features/admin-approval/class-admin-approval.php:116
6032
  msgid "unapprove this user?"
6033
  msgstr ""
6034
 
6035
- #: features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:223
6036
  msgid "Unapprove"
6037
  msgstr ""
6038
 
6039
- #: features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:170
6040
  msgid "Registered"
6041
  msgstr ""
6042
 
6043
- #: features/admin-approval/class-admin-approval.php:172
6044
  msgid "User-status"
6045
  msgstr ""
6046
 
6047
- #: features/admin-approval/class-admin-approval.php:274, features/email-confirmation/class-email-confirmation.php:279
6048
  msgid "Sorry, but you don't have permission to do that!"
6049
  msgstr ""
6050
 
6051
- #: features/admin-approval/class-admin-approval.php:266
6052
  msgid "Do you want to bulk delete the selected users?"
6053
  msgstr ""
6054
 
6055
- #: features/admin-approval/class-admin-approval.php:260
6056
  msgid "Do you want to bulk unapprove the selected users?"
6057
  msgstr ""
6058
 
6059
- #: features/admin-approval/class-admin-approval.php:252
6060
  msgid "Do you want to bulk approve the selected users?"
6061
  msgstr ""
6062
 
6063
- #: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461
 
 
 
 
6064
  msgid "All Users"
6065
  msgstr ""
6066
 
405
  msgid "This field requires approval by an administrator"
406
  msgstr ""
407
 
408
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:352
409
  msgid "Unapproved"
410
  msgstr ""
411
 
412
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:350
413
  msgid "Approved"
414
  msgstr ""
415
 
685
  msgid "Default Social Connect CSS in the Front-end"
686
  msgstr ""
687
 
688
+ #: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:211, admin/general-settings.php:106, admin/general-settings.php:106
689
  msgid "Settings"
690
  msgstr ""
691
 
697
  msgid "Display Social Connect buttons:"
698
  msgstr ""
699
 
700
+ #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, 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:2444, features/content-restriction/content-restriction.php:89, 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-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:261, admin/advanced-settings/includes/views/view-fields.php:279, 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:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, 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
701
  msgid "Yes"
702
  msgstr ""
703
 
704
+ #: ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/general-settings.php:340, 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, admin/advanced-settings/includes/forms/placeholder-labels.php:136
705
  msgid "No"
706
  msgstr ""
707
 
741
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
742
  msgstr ""
743
 
744
+ #: ../pb-add-on-social-connect/index.php:392, features/admin-approval/admin-approval.php:193
745
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
746
  msgstr ""
747
 
749
  msgid "You will be redirected in 5 seconds. If not, click %%."
750
  msgstr ""
751
 
752
+ #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1266
753
  msgid "here"
754
  msgstr ""
755
 
1570
  msgid "Add Field"
1571
  msgstr ""
1572
 
1573
+ #: admin/admin-functions.php:225
 
 
 
 
1574
  msgid "View Profile Builder documentation"
1575
  msgstr ""
1576
 
1577
+ #: admin/admin-functions.php:225
1578
  msgid "Docs"
1579
  msgstr ""
1580
 
1581
+ #: admin/admin-functions.php:244
1582
  msgid "All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>"
1583
  msgstr ""
1584
 
1585
+ #: admin/admin-functions.php:246, admin/admin-functions.php:258
1586
  msgid "See details"
1587
  msgstr ""
1588
 
1589
+ #: admin/admin-functions.php:247, admin/admin-functions.php:259, admin/review.php:94
1590
  msgid "Dismiss this notice."
1591
  msgstr ""
1592
 
1593
+ #: admin/admin-functions.php:256
1594
  msgid "You can now style %s forms from the %s interface. To get started, add a form widget to a page through %s and go to the <strong>Style</strong> tab."
1595
  msgstr ""
1596
 
2038
  msgid "Username and Email"
2039
  msgstr ""
2040
 
2041
+ #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:416, 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:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2398, features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2042
  msgid "Username"
2043
  msgstr ""
2044
 
2045
+ #: admin/general-settings.php:297, front-end/login.php:413, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2399, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2046
  msgid "Email"
2047
  msgstr ""
2048
 
4074
  msgid "Zimbabwe Dollar"
4075
  msgstr ""
4076
 
4077
+ #: admin/manage-fields.php:1307
4078
  msgid ""
4079
  "That field is already added in this form\n"
4080
  ""
4081
  msgstr ""
4082
 
4083
+ #: admin/manage-fields.php:1300, admin/manage-fields.php:1114
4084
  msgid ""
4085
  "You must select a field\n"
4086
  ""
4146
  ""
4147
  msgstr ""
4148
 
4149
+ #: admin/manage-fields.php:1205
4150
+ msgid ""
4151
+ "The meta-name cannot begin with a space\n"
4152
+ ""
4153
+ msgstr ""
4154
+
4155
+ #: admin/manage-fields.php:1208
4156
+ msgid ""
4157
+ "The meta-name cannot end with a space\n"
4158
+ ""
4159
+ msgstr ""
4160
+
4161
+ #: admin/manage-fields.php:1238, admin/manage-fields.php:1249
4162
  msgid ""
4163
  "That meta-name is already in use\n"
4164
  ""
4165
  msgstr ""
4166
 
4167
+ #: admin/manage-fields.php:1230
4168
  msgid ""
4169
  "That meta-name can't be used, please choose another\n"
4170
  ""
4171
  msgstr ""
4172
 
4173
+ #: admin/manage-fields.php:1260
4174
  msgid ""
4175
  "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
4176
  ""
4177
  msgstr ""
4178
 
4179
+ #: admin/manage-fields.php:1284
4180
  msgid ""
4181
  "The following option did not coincide with the ones in the options list: %s\n"
4182
  ""
4183
  msgstr ""
4184
 
4185
+ #: admin/manage-fields.php:1280
4186
  msgid ""
4187
  "The following option(s) did not coincide with the ones in the options list: %s\n"
4188
  ""
4189
  msgstr ""
4190
 
4191
+ #: admin/manage-fields.php:1291
4192
  msgid ""
4193
  "Please select at least one user role\n"
4194
  ""
4195
  msgstr ""
4196
 
4197
+ #: admin/manage-fields.php:1359
4198
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4199
  msgstr ""
4200
 
4201
+ #: admin/manage-fields.php:1359, features/functions.php:969, features/functions.php:976, 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:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
4202
  msgid "Edit"
4203
  msgstr ""
4204
 
4205
+ #: admin/manage-fields.php:1359, features/functions.php:962, features/functions.php:976, 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:113, 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:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4206
  msgid "Delete"
4207
  msgstr ""
4208
 
4209
+ #: admin/manage-fields.php:1374
4210
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4211
  msgstr ""
4212
 
4213
+ #: admin/manage-fields.php:1385
4214
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4215
  msgstr ""
4216
 
4217
+ #: admin/manage-fields.php:1383
4218
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4219
  msgstr ""
4220
 
4221
+ #: admin/manage-fields.php:1484
4222
  msgid "Search Location"
4223
  msgstr ""
4224
 
4334
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
4335
  msgstr ""
4336
 
4337
+ #: admin/private-website.php:53
4338
  msgid "Private Website Settings"
4339
  msgstr ""
4340
 
4341
+ #: admin/private-website.php:66
4342
  msgid "Enable Private Website"
4343
  msgstr ""
4344
 
4345
+ #: admin/private-website.php:73
4346
  msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
4347
  msgstr ""
4348
 
4349
+ #: admin/private-website.php:79
4350
  msgid "Redirect to"
4351
  msgstr ""
4352
 
4353
+ #: admin/private-website.php:82
4354
  msgid "Default WordPress login page"
4355
  msgstr ""
4356
 
4357
+ #: admin/private-website.php:95
4358
  msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
4359
  msgstr ""
4360
 
4361
+ #: admin/private-website.php:96, add-ons/custom-redirects/custom_redirects_admin.php:253
4362
  msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
4363
  msgstr ""
4364
 
4365
+ #: admin/private-website.php:102
4366
  msgid "Allowed Pages"
4367
  msgstr ""
4368
 
4369
+ #: admin/private-website.php:117
4370
  msgid "Allow these pages to be accessed even if you are not logged in"
4371
  msgstr ""
4372
 
4373
+ #: admin/private-website.php:123
4374
  msgid "Allowed Paths"
4375
  msgstr ""
4376
 
4377
+ #: admin/private-website.php:127
4378
  msgid "Allow these paths to be accessed even if you are not logged in (supports wildcard at the end of the path). For example to exclude https://example.com/some/path/ you can either use the rule /some/path/ or /some/* Enter each rule on it's own line"
4379
  msgstr ""
4380
 
4381
+ #: admin/private-website.php:133
4382
  msgid "Hide all Menus"
4383
  msgstr ""
4384
 
4385
+ #: admin/private-website.php:140
4386
  msgid "Hide all menu items if you are not logged in."
4387
  msgstr ""
4388
 
4389
+ #: admin/private-website.php:141
4390
  msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
4391
  msgstr ""
4392
 
4393
+ #: admin/private-website.php:147
4394
  msgid "Disable REST-API"
4395
  msgstr ""
4396
 
4397
+ #: admin/private-website.php:154
4398
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4399
  msgstr ""
4400
 
4401
+ #: admin/private-website.php:162, features/functions.php:948, features/content-restriction/content-restriction.php:162, 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:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4402
  msgid "Save Changes"
4403
  msgstr ""
4404
 
4478
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
4479
  msgstr ""
4480
 
4481
+ #: admin/review.php:73
4482
+ msgid "Hello! Seems like you've been using Profile Builder to create front-end user forms. That's awesome!"
4483
+ msgstr ""
4484
+
4485
+ #: admin/review.php:75
4486
+ msgid "If you can spare a few moments to rate it on WordPress.org, it would help us a lot (and boost my motivation)."
4487
+ msgstr ""
4488
+
4489
+ #: admin/review.php:78
4490
+ msgid "~ Paul, developer of Profile Builder"
4491
+ msgstr ""
4492
+
4493
+ #: admin/review.php:84
4494
+ msgid "Ok, I will gladly help!"
4495
+ msgstr ""
4496
+
4497
+ #: admin/review.php:88
4498
+ msgid "No, thanks."
4499
+ msgstr ""
4500
+
4501
+ #: admin/review.php:124
4502
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
4503
+ msgstr ""
4504
+
4505
  #: features/functions.php:326
4506
  msgid "GDPR Checkbox"
4507
  msgstr ""
4542
  msgid "Content"
4543
  msgstr ""
4544
 
4545
+ #: features/functions.php:1164
4546
  msgid "<br><br>Also, you will be able to visit your site at "
4547
  msgstr ""
4548
 
4549
+ #: features/functions.php:1177
4550
  msgid "<br><br>You can visit your site at "
4551
  msgstr ""
4552
 
4553
+ #: features/functions.php:1267
4554
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4555
  msgstr ""
4556
 
4557
+ #: features/functions.php:1421
4558
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4559
  msgstr ""
4560
 
4561
+ #: features/functions.php:1462
4562
  msgid "You are not currently logged in."
4563
  msgstr ""
4564
 
5544
  msgid "Display name as"
5545
  msgstr ""
5546
 
5547
+ #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:870, add-ons/user-listing/userlisting.php:2408, features/admin-approval/class-admin-approval.php:175, features/roles-editor/roles-editor.php:256
5548
  msgid "Role"
5549
  msgstr ""
5550
 
5620
  msgid "Avatar"
5621
  msgstr ""
5622
 
5623
+ #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2403, features/admin-approval/class-admin-approval.php:172
5624
  msgid "Firstname"
5625
  msgstr ""
5626
 
5664
  msgid "Display Name"
5665
  msgstr ""
5666
 
5667
+ #: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2404, features/admin-approval/class-admin-approval.php:173
5668
  msgid "Lastname"
5669
  msgstr ""
5670
 
5960
  msgid "Your account has to be confirmed by an administrator before you can log in."
5961
  msgstr ""
5962
 
5963
+ #: features/admin-approval/admin-approval.php:27, features/admin-approval/class-admin-approval.php:469, features/admin-approval/class-admin-approval.php:537
5964
  msgid "Admin Approval"
5965
  msgstr ""
5966
 
5967
+ #: features/admin-approval/admin-approval.php:41, features/email-confirmation/email-confirmation.php:60
5968
  msgid "Do you want to"
5969
  msgstr ""
5970
 
5971
+ #: features/admin-approval/admin-approval.php:64, features/admin-approval/admin-approval.php:112
5972
  msgid "Your session has expired! Please refresh the page and try again."
5973
  msgstr ""
5974
 
5975
+ #: features/admin-approval/admin-approval.php:101, features/admin-approval/admin-approval.php:147, features/email-confirmation/email-confirmation.php:134
5976
  msgid "You either don't have permission for that action or there was an error!"
5977
  msgstr ""
5978
 
5979
+ #: features/admin-approval/admin-approval.php:96
5980
  msgid "User successfully deleted!"
5981
  msgstr ""
5982
 
5983
+ #: features/admin-approval/admin-approval.php:90
5984
  msgid "User successfully unapproved!"
5985
  msgstr ""
5986
 
5987
+ #: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:356
5988
  msgid "User successfully approved!"
5989
  msgstr ""
5990
 
5991
+ #: features/admin-approval/admin-approval.php:143
5992
  msgid "Users successfully deleted!"
5993
  msgstr ""
5994
 
5995
+ #: features/admin-approval/admin-approval.php:135
5996
  msgid "Users successfully unapproved!"
5997
  msgstr ""
5998
 
5999
+ #: features/admin-approval/admin-approval.php:125
6000
  msgid "Users successfully approved!"
6001
  msgstr ""
6002
 
6003
+ #: features/admin-approval/admin-approval.php:171
6004
  msgid "Your account on %1$s has been unapproved!"
6005
  msgstr ""
6006
 
6007
+ #: features/admin-approval/admin-approval.php:172, features/admin-approval/admin-approval.php:175
6008
  msgid "unapproved"
6009
  msgstr ""
6010
 
6011
+ #: features/admin-approval/admin-approval.php:174
6012
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
6013
  msgstr ""
6014
 
6015
+ #: features/admin-approval/admin-approval.php:163
6016
  msgid "Your account on %1$s has been approved!"
6017
  msgstr ""
6018
 
6019
+ #: features/admin-approval/admin-approval.php:164, features/admin-approval/admin-approval.php:167
6020
  msgid "approved"
6021
  msgstr ""
6022
 
6023
+ #: features/admin-approval/admin-approval.php:166
6024
  msgid "An administrator has just approved your account on %1$s (%2$s)."
6025
  msgstr ""
6026
 
6027
+ #: features/admin-approval/admin-approval.php:205
6028
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
6029
  msgstr ""
6030
 
6031
+ #: features/admin-approval/admin-approval.php:240
6032
  msgid "Your account has been successfully created!"
6033
  msgstr ""
6034
 
6035
+ #: features/admin-approval/admin-approval.php:314
6036
  msgid "Something went wrong!"
6037
  msgstr ""
6038
 
6039
+ #: features/admin-approval/admin-approval.php:310
6040
  msgid "User not approved!"
6041
  msgstr ""
6042
 
6043
+ #: features/admin-approval/admin-approval.php:295
6044
  msgid "Do you wish to approve the registration?"
6045
  msgstr ""
6046
 
6047
+ #: features/admin-approval/admin-approval.php:335
6048
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6049
  msgstr ""
6050
 
6052
  msgid "delete this user?"
6053
  msgstr ""
6054
 
6055
+ #: features/admin-approval/class-admin-approval.php:121, features/admin-approval/class-admin-approval.php:119
6056
  msgid "approve this user?"
6057
  msgstr ""
6058
 
6059
+ #: features/admin-approval/class-admin-approval.php:121, features/admin-approval/class-admin-approval.php:119, features/admin-approval/class-admin-approval.php:227
6060
  msgid "Approve"
6061
  msgstr ""
6062
 
6063
+ #: features/admin-approval/class-admin-approval.php:122, features/admin-approval/class-admin-approval.php:117
6064
  msgid "unapprove this user?"
6065
  msgstr ""
6066
 
6067
+ #: features/admin-approval/class-admin-approval.php:122, features/admin-approval/class-admin-approval.php:117, features/admin-approval/class-admin-approval.php:228
6068
  msgid "Unapprove"
6069
  msgstr ""
6070
 
6071
+ #: features/admin-approval/class-admin-approval.php:176, features/email-confirmation/class-email-confirmation.php:170
6072
  msgid "Registered"
6073
  msgstr ""
6074
 
6075
+ #: features/admin-approval/class-admin-approval.php:177
6076
  msgid "User-status"
6077
  msgstr ""
6078
 
6079
+ #: features/admin-approval/class-admin-approval.php:279, features/email-confirmation/class-email-confirmation.php:279
6080
  msgid "Sorry, but you don't have permission to do that!"
6081
  msgstr ""
6082
 
6083
+ #: features/admin-approval/class-admin-approval.php:271
6084
  msgid "Do you want to bulk delete the selected users?"
6085
  msgstr ""
6086
 
6087
+ #: features/admin-approval/class-admin-approval.php:265
6088
  msgid "Do you want to bulk unapprove the selected users?"
6089
  msgstr ""
6090
 
6091
+ #: features/admin-approval/class-admin-approval.php:257
6092
  msgid "Do you want to bulk approve the selected users?"
6093
  msgstr ""
6094
 
6095
+ #: features/admin-approval/class-admin-approval.php:354
6096
+ msgid "Pending"
6097
+ msgstr ""
6098
+
6099
+ #: features/admin-approval/class-admin-approval.php:472, features/email-confirmation/class-email-confirmation.php:461
6100
  msgid "All Users"
6101
  msgstr ""
6102